Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
debhelper 11
· 041a213c
Andreas Tille
authored
Sep 27, 2018
041a213c
Point Vcs fields to salsa.debian.org
· 3317c989
Andreas Tille
authored
Sep 27, 2018
3317c989
Standards-Version: 4.2.1
· 1c6c94a1
Andreas Tille
authored
Sep 27, 2018
1c6c94a1
Fix Perl interpreter path, Fix permissions
· 5cce9cc2
Andreas Tille
authored
Sep 27, 2018
5cce9cc2
Upload to unstable
· 94c8f56f
Andreas Tille
authored
Sep 27, 2018
94c8f56f
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
94c8f56f
pirs (2.0.2+dfsg-7) unstable; urgency=medium
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.2.1
* Fix Perl interpreter path
* Fix permissions
-- Andreas Tille <tille@debian.org> Thu, 27 Sep 2018 21:35:39 +0200
pirs (2.0.2+dfsg-6) unstable; urgency=medium
* Do not disable PIE (thanks for the patch to Adrian Bunk <bunk@debian.org>)
...
...
debian/compat
View file @
94c8f56f
1
0
1
1
debian/control
View file @
94c8f56f
...
...
@@ -3,13 +3,13 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
0
),
Build-Depends: debhelper (>= 1
1~
),
libboost-dev,
zlib1g-dev,
libgzstream-dev
Standards-Version: 4.
1.0
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/pirs
.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/pirs.git
Standards-Version: 4.
2.1
Vcs-Browser: https://
salsa
.debian.org/
med-team
/pirs
Vcs-Git: https://
salsa
.debian.org/
med-team
/pirs.git
Homepage: https://github.com/galaxy001/pirs
Package: pirs
...
...
debian/rules
View file @
94c8f56f
...
...
@@ -44,7 +44,10 @@ override_dh_install:
mkdir -p $(PERLDIR)
find src -name "*.pl" -exec cp -a \{\} $(PERLDIR) \;
rm -f $(PERLDIR)/autobam.pl
sed -i 's:#!/bin/env:#!/usr/bin/env:' $(PERLDIR)/*.pl
# Fix perl interpreter path
for pl in `grep -Rl '#![/usr]*/bin/env[[:space:]]\+perl' debian/*/usr/*` ; do \
sed -i '1s?^#![/usr]*/bin/env[[:space:]]\+perl?#!/usr/bin/perl?' $${pl} ; \
done
override_dh_link-arch:
dh_link -a
...
...
@@ -59,3 +62,7 @@ override_dh_installchangelogs:
override_dh_installdocs-arch:
dh_installdocs -a
cp -a src/stator/readme.txt debian/$(DEB_SOURCE)/usr/share/doc/$(DEB_SOURCE)/strator_readme.txt
override_dh_fixperms:
dh_fixperms
find debian/*/usr/lib -name "*.pl" -exec chmod +x \{\} \;