File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
- scikit-learn (0.10.0~pre1 -1) unstable; urgency=low
1
+ scikit-learn (0.10.0-1) unstable; urgency=low
2
2
3
3
* Snapshot of upstream release branch
4
4
- Python 2.5 compatibility dropped
@@ -8,8 +8,11 @@ scikit-learn (0.10.0~pre1-1) unstable; urgency=low
8
8
* Adjusted dfsg and other rules to operate on sklearn directory
9
9
* Dropping cherry-picked fix up_release_sv_coef_memory
10
10
* Operate on 'requested' not all supported Python versions
11
+ * Added 'set -e' to composite cmdline constructs in debian/rules to
12
+ prevent swallowing errors. Thanks to Jakub Wilk for citing me the relevant
13
+ exerpt from Debian policy ;-)
11
14
12
- -- Yaroslav Halchenko <debian@onerussian.com> Tue, 10 Jan 2012 17:52:27 -0500
15
+ -- Yaroslav Halchenko <debian@onerussian.com> Thu, 12 Jan 2012 22:42:03 -0500
13
16
14
17
scikit-learn (0.9.0.dfsg-1) unstable; urgency=low
15
18
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ override_dh_installchangelogs:
57
57
# # move binary libraries into -lib
58
58
override_dh_pysupport :
59
59
: # Move platform-specific libraries into -lib
60
+ set -e; \
60
61
for lib in $$ (find $( PACKAGE_ROOT_DIR) /usr -name ' *.so' ); do \
61
62
sdir=$$(dirname $$lib ) ; \
62
63
tdir=$(PACKAGE_ROOT_DIR ) -lib/$$ {sdir#* $(PACKAGE_NAME ) /} ; \
@@ -68,6 +69,7 @@ override_dh_pysupport:
68
69
: # Prune scikits/__init__.py to avoid conflicts
69
70
find debian -wholename \* scikits/__init__.py -delete
70
71
: # Move scikits. space into a compatibility package
72
+ set -e; \
71
73
find debian -wholename \* scikits -type d | while read skd; do \
72
74
skbd=$$(dirname $$skd ) ; \
73
75
skbd_=$$(echo $$skbd | sed -e 's/sklearn/scikits-learn/g' ) ; \
You can’t perform that action at this time.
0 commit comments