Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
Point Vcs fields to salsa.debian.org
· 1f063f82
Andreas Tille
authored
Jan 07, 2019
1f063f82
Standards-Version: 4.3.0
· 00588453
Andreas Tille
authored
Jan 07, 2019
00588453
Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
· 5ad29575
Andreas Tille
authored
Jan 07, 2019
5ad29575
Remove unneeded get-orig-source script
· 571e4a56
Andreas Tille
authored
Jan 07, 2019
571e4a56
Upload to unstable
· ce83ed2a
Andreas Tille
authored
Jan 07, 2019
ce83ed2a
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
ce83ed2a
e-mem (1.0.1-2) unstable; urgency=medium
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.3.0
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Remove unneeded get-orig-source script
-- Andreas Tille <tille@debian.org> Mon, 07 Jan 2019 13:52:46 +0100
e-mem (1.0.1-1) unstable; urgency=medium
* New upstream version
...
...
debian/control
View file @
ce83ed2a
...
...
@@ -5,9 +5,9 @@ Section: science
Priority: optional
Build-Depends: debhelper (>= 11~),
libboost-dev
Standards-Version: 4.
1.3
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/e-mem
.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/e-mem.git
Standards-Version: 4.
3.0
Vcs-Browser: https://
salsa
.debian.org/
med-team
/e-mem
Vcs-Git: https://
salsa
.debian.org/
med-team
/e-mem.git
Homepage: http://www.csd.uwo.ca/~ilie/E-MEM/
Package: e-mem
...
...
debian/get-orig-source
deleted
100755 → 0
View file @
58c5472b
#!/bin/sh
set
-e
NAME
=
`
dpkg-parsechangelog |
awk
'/^Source/ { print $2 }'
`
DVERSION
=
`
dpkg-parsechangelog |
awk
'/^Version:/ { print $2 }'
|
sed
-e
's/^[0-9]*://'
-e
's/-.*//'
`
MVERSION
=
`
dpkg-parsechangelog |
awk
'/^Version:/ { print $2 }'
|
sed
's/^\([0-9\.]\+\)[+~][-0-9]\+$/\1/'
`
wget
-q
http://www.csd.uwo.ca/~ilie/E-MEM/e-mem.zip
unzip
-q
e-mem.zip
VERSION
=
${
MVERSION
}
+
`
find e-mem_2
-type
f
-printf
'%T@ %p\n'
|
sort
-n
|
tail
-1
|
sed
's/ .*//'
| gawk
'{print strftime("%Y%m%d", $0)}'
`
if
[
"
$DVERSION
"
=
"
$VERSION
"
]
;
then
echo
"No newer upstream version than
$DVERSION
available."
rm
-rf
e-mem_2 __MACOSX e-mem.zip
exit
fi
mk-origtargz
--repack
--compress
xz
--version
${
VERSION
}
e-mem.zip
rm
-rf
e-mem_2 __MACOSX e-mem.zip
debian/rules
View file @
ce83ed2a
...
...
@@ -8,7 +8,6 @@ export DEB_BUILD_MAINT_OPTIONS=hardening=+all
dh $@
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
PATH=.:$(PATH) ./run_example
get-orig-source:
. debian/get-orig-source
endif