Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Commits on Source (7)
debhelper 11
· c52b6fe9
Andreas Tille
authored
Jul 13, 2018
c52b6fe9
Point Vcs fields to salsa.debian.org
· c2477f9e
Andreas Tille
authored
Jul 13, 2018
c2477f9e
Standards-Version: 4.1.5
· 4d91853d
Andreas Tille
authored
Jul 13, 2018
4d91853d
Remove unneeded get-orig-source target
· d4eb5dcd
Andreas Tille
authored
Jul 13, 2018
d4eb5dcd
do not parse d/changelog
· fd8391b5
Andreas Tille
authored
Jul 13, 2018
fd8391b5
Leave date in proper format at the expense of parsing changelog date
· 4f3ec2b5
Andreas Tille
authored
Jul 13, 2018
4f3ec2b5
Upload to unstable
· 77bcd450
Andreas Tille
authored
Jul 13, 2018
77bcd450
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
77bcd450
cain (1.10+dfsg-3)
UNRELEASED
; urgency=medium
cain (1.10+dfsg-3)
unstable
; urgency=medium
[ Steffen Moeller ]
* debian/upstream/metadata:
- Added references to registries
- yamllint cleanliness
-- Steffen Moeller <moeller@debian.org> Thu, 14 Sep 2017 09:58:47 +0200
[ Andreas Tille ]
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.1.5
* Remove unneeded get-orig-source target
* d/rules: do not parse d/changelog where possible
-- Andreas Tille <tille@debian.org> Fri, 13 Jul 2018 17:12:44 +0200
cain (1.10+dfsg-2) unstable; urgency=medium
...
...
debian/compat
View file @
77bcd450
9
11
debian/control
View file @
77bcd450
...
...
@@ -4,14 +4,14 @@ Uploaders: Ivo Maintz <ivo@maintz.de>,
Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>=
9
),
Build-Depends: debhelper (>=
11~
),
python-all-dev,
python (<< 3.0),
libeigen3-dev,
zip
Standards-Version:
3.9.8
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/cain
.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/cain.git
Standards-Version:
4.1.5
Vcs-Browser: https://
salsa
.debian.org/
med-team
/cain
Vcs-Git: https://
salsa
.debian.org/
med-team
/cain.git
Homepage: http://cain.sourceforge.net
Package: cain
...
...
debian/rules
View file @
77bcd450
...
...
@@ -5,10 +5,9 @@
SRC_TMP=$(CURDIR)/SRC_TMP
debtmp := $(CURDIR)/debian/tmp
pkg := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p')
VERSION := $(shell dpkg-parsechangelog | grep Version | cut -d\ -f2 | cut -d- -f1)
UVERSION := $(shell dpkg-parsechangelog | grep Version | cut -d\ -f2 | cut -d- -f1 | sed 's/\./_/g')
include /usr/share/dpkg/default.mk
BUILD_DATE := $(shell dpkg-parsechangelog | grep Date: | cut -d' ' -f2-7)
export TZ=UTC
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
...
...
@@ -25,22 +24,17 @@ override_dh_auto_build:
override_dh_install-indep:
dh_install
rm -rf debian/$(
pkg
)/usr/share/cain/help/* debian/$(
pkg
)/usr/share/cain/gui/help.htm*
rm -rf debian/$(
DEB_SOURCE
)/usr/share/cain/help/* debian/$(
DEB_SOURCE
)/usr/share/cain/gui/help.htm*
find help -type d | xargs chmod 755
find help -type f | xargs chmod 644
find help | xargs touch --no-dereference --date='$(BUILD_DATE)'
cd help && (find . -type f -not \( -name "*.htb" -or -name "*.htd" \) -print0 | \
LC_ALL=C sort -z | \
xargs -0 zip ../debian/$(
pkg
)/usr/share/cain/help/cain.htb -X -r -q)
touch --no-dereference --date='$(BUILD_DATE)' debian/$(
pkg
)/usr/share/cain/help/cain.htb
if [ -d debian/$(
pkg
)/usr/share/cain/ ] ; then \
find debian/$(
pkg
)/usr/share/cain/ -type f -executable -exec chmod 644 {} + ; \
xargs -0 zip ../debian/$(
DEB_SOURCE
)/usr/share/cain/help/cain.htb -X -r -q)
touch --no-dereference --date='$(BUILD_DATE)' debian/$(
DEB_SOURCE
)/usr/share/cain/help/cain.htb
if [ -d debian/$(
DEB_SOURCE
)/usr/share/cain/ ] ; then \
find debian/$(
DEB_SOURCE
)/usr/share/cain/ -type f -executable -exec chmod 644 {} + ; \
fi
override_dh_auto_test:
echo "no tests implemented"
get-orig-source:
uscan --verbose --force-download --repack --compression xz
# find $(SRC_TMP) -type f -exec chmod 644 {} +
# find $(SRC_TMP) -type d -exec chmod 755 {} +