Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (7)
debhelper 11
· 7197ba17
Andreas Tille
authored
Oct 16, 2018
7197ba17
Point Vcs fields to salsa.debian.org
· 68c4c577
Andreas Tille
authored
Oct 16, 2018
68c4c577
Standards-Version: 4.2.1
· 8d4f525f
Andreas Tille
authored
Oct 16, 2018
8d4f525f
Autobuild: yes
· c782019a
Andreas Tille
authored
Oct 16, 2018
c782019a
Fix interpreter path
· 22ab5c96
Andreas Tille
authored
Oct 16, 2018
22ab5c96
hardening=+all
· 8850a3bb
Andreas Tille
authored
Oct 16, 2018
8850a3bb
Add Disclaimer
· 757a7ea9
Andreas Tille
authored
Oct 16, 2018
757a7ea9
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
757a7ea9
ffp (3.19-1) UNRELEASED; urgency=low
* Initial release (Closes: #<bug>)
* Moved packaging from SVN to Git
-- Andreas Tille <tille@debian.org> Thu, 26 Nov 2015 17:09:45 +0100
debian/compat
View file @
757a7ea9
1
0
1
1
debian/control
View file @
757a7ea9
...
...
@@ -2,14 +2,15 @@ Source: ffp
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Andreas Tille <tille@debian.org>
Section: non-free/science
XS-Autobuild: yes
Priority: optional
Build-Depends: debhelper (>= 1
0
),
Build-Depends: debhelper (>= 1
1~
),
perl-tk,
ghostscript,
groff
Standards-Version:
3.9.6
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med/ffp.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/ffp.git
Standards-Version:
4.2.1
Vcs-Browser: https://
salsa
.debian.org/
med-team/ffp
Vcs-Git: https://
salsa
.debian.org/
med-team
/ffp.git
Homepage: http://sourceforge.net/projects/ffp-phylogeny/
Package: ffp
...
...
debian/copyright
View file @
757a7ea9
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Format: http
s
://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: FFP
Upstream-Contact: Gregory E. Sims <gsims1997@yahoo.com>
Source: http://sourceforge.net/projects/ffp-phylogeny/files/
Disclaimer: There is an ongoing discussion about the license which started here
https://lists.debian.org/debian-med/2018/02/msg00006.html
There were promising but unclear responses here
https://lists.debian.org/debian-med/2018/08/msg00052.html
Files: *
Copyright: 2009-2012 gsims1997@yahoo.com
...
...
@@ -14,7 +18,7 @@ License: non-free
please contact the authors.
Files: debian/*
Copyright: 2015 Andreas Tille <tille@debian.org>
Copyright: 2015
-2018
Andreas Tille <tille@debian.org>
License: GPL-3+
On Debian systems you can find the full text of GPL at
/usr/share/common-licenses/GPL.
debian/rules
View file @
757a7ea9
...
...
@@ -2,10 +2,16 @@
# DH_VERBOSE := 1
DEBPKGNAME := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
%:
dh $@
override_dh_compress:
dh_compress --exclude=README
override_dh_install:
dh_install
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