Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (6)
debhelper 11
· 31b200d2
Andreas Tille
authored
Aug 24, 2018
31b200d2
Point Vcs fields to salsa.debian.org
· 761bf055
Andreas Tille
authored
Aug 24, 2018
761bf055
Standards-Version: 4.2.0
· 1dc9a442
Andreas Tille
authored
Aug 24, 2018
1dc9a442
Fix perl interpreter
· fdd5ed72
Andreas Tille
authored
Aug 24, 2018
fdd5ed72
do not parse d/changelog
· 73f4f0cf
Andreas Tille
authored
Aug 24, 2018
73f4f0cf
Upload to unstable
· e06a49f3
Andreas Tille
authored
Aug 24, 2018
e06a49f3
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
e06a49f3
radiant (2.7+dfsg-2) unstable; urgency=medium
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.2.0
* d/rules:
- Fix perl interpreter
- do not parse d/changelog
-- Andreas Tille <tille@debian.org> Fri, 24 Aug 2018 16:07:45 +0200
radiant (2.7+dfsg-1) unstable; urgency=medium
* Initial release (Closes: #832613)
...
...
debian/compat
View file @
e06a49f3
9
11
debian/control
View file @
e06a49f3
...
...
@@ -3,10 +3,10 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>=
9
)
Standards-Version:
3.9.8
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med/kronatools.gi
t
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med/kronatools
.git
Build-Depends: debhelper (>=
11~
)
Standards-Version:
4.2.0
Vcs-Browser: https://
salsa
.debian.org/
med-team/radian
t
Vcs-Git: https://
salsa
.debian.org/
med-team/radiant
.git
Homepage: https://github.com/marbl/Krona/wiki
Package: radiant
...
...
debian/rules
View file @
e06a49f3
...
...
@@ -2,11 +2,10 @@
# DH_VERBOSE := 1
DEBPKGNAME := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')
DEBVERS := $(shell dpkg-parsechangelog | awk '/^Version:/ {print $$2}')
VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/^[0-9]*://' -e 's/-.*//')
MANDIR=$(CURDIR)/debian/$(DEBPKGNAME)/usr/share/man/man1/
HELP2MAN = help2man --no-info --version-string="$(VERSION)" --no-discard-stderr --help-option=" "
include /usr/share/dpkg/default.mk
MANDIR=$(CURDIR)/debian/$(DEB_SOURCE)/usr/share/man/man1/
HELP2MAN = help2man --no-info --version-string="$(DEB_VERSION_UPSTREAM)" --no-discard-stderr --help-option=" "
# --help-option=" -h" # does not work in all cases
%:
...
...
@@ -14,13 +13,16 @@ HELP2MAN = help2man --no-info --version-string="$(VERSION)" --no-discard-stderr
override_dh_install:
dh_install
debian/install.pl -prefix debian/$(DEBPKGNAME)/usr -taxonomy /var/lib/$(DEBPKGNAME)/taxonomy -scriptpath "../share/perl5/KronaTools/scripts"
debian/install.pl -prefix debian/$(DEB_SOURCE)/usr -taxonomy /var/lib/$(DEB_SOURCE)/taxonomy -scriptpath "../share/perl5/KronaTools/scripts"
for pl in `find debian -name "*.pl"` ; do \
sed -i '1s?^#!/usr/bin/env.*perl?#!/usr/bin/perl?' $${pl} ; \
done
override_dh_installman_does_not_work__giving_up:
dh_installman
mkdir -p $(MANDIR)
set -x ; \
for script in debian/$(DEB
PKGNAM
E)/usr/bin/* ; do \
for script in debian/$(DEB
_SOURC
E)/usr/bin/* ; do \
name=`basename $${script}` ; \
pscript=`echo $${name} | sed 's:^kt\(.*\):\1.pl:'` ; \
pl="KronaTools/scripts/$${pscript}" ; \
...
...