--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock
Please unblock package seer
The upload fixes #858430.
Question: I followed freeze policy for minimum changes. Usually I'd
like to provide manpages for new executables in /usr/bin and I would
probably also have patched the usage hint to match the actual script
name (usage contains wrong path and .pl extension). Would it be in line
with the freeze policy to add this polishing which would add quite some
diff that is not totally necessary to fix the bug.
unblock seer/1.1.2-2
-- System Information:
Debian Release: 8.7
APT prefers stable-updates
APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru seer-1.1.2/debian/changelog seer-1.1.2/debian/changelog
--- seer-1.1.2/debian/changelog 2016-12-07 23:05:02.000000000 +0100
+++ seer-1.1.2/debian/changelog 2017-03-22 11:43:16.000000000 +0100
@@ -1,3 +1,10 @@
+seer (1.1.2-2) unstable; urgency=medium
+
+ * Install all available scripts in scripts/ dir into binary package
+ Closes: #858430
+
+ -- Andreas Tille <tille@debian.org> Wed, 22 Mar 2017 11:43:16 +0100
+
seer (1.1.2-1) unstable; urgency=medium
* New upstream version
diff -Nru seer-1.1.2/debian/rules seer-1.1.2/debian/rules
--- seer-1.1.2/debian/rules 2016-12-07 23:05:02.000000000 +0100
+++ seer-1.1.2/debian/rules 2017-03-22 11:43:16.000000000 +0100
@@ -13,7 +13,9 @@
override_dh_auto_install:
dh_auto_install -- PREFIX=$(CURDIR)/debian/$(DEBPKGNAME)/usr
- cp -a scripts/blast_top_hits.pl $(CURDIR)/debian/$(DEBPKGNAME)/usr/bin/blast_top_hits
+ for pl in scripts/*.pl ; do \
+ cp -a $${pl} $(CURDIR)/debian/$(DEBPKGNAME)/usr/bin/`basename $${pl} .pl` ; \
+ done
%:
dh $@
--- End Message ---