Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Apply cme fix dpkg, bump Policy to 4.1.4, fix VCS-* fields, use https
· 6efba8b1
Alexandre Mestiashvili
authored
May 31, 2018
6efba8b1
Update d/rules, drop get-orig-source target
· 5f5de498
Alexandre Mestiashvili
authored
May 31, 2018
5f5de498
Remove d/get-orig-source script
· a0dca5e8
Alexandre Mestiashvili
authored
May 31, 2018
a0dca5e8
Update uploader's email
· deb6b1fa
Alexandre Mestiashvili
authored
May 31, 2018
deb6b1fa
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
deb6b1fa
Source: transtermhp
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Alex Mestiashvili <
alex@biotec.tu-dresden.de
>,
Uploaders: Alex Mestiashvili <
mestia@debian.org
>,
Andreas Tille <tille@debian.org>,
Fabian Klötzl <kloetzl@evolbio.mpg.de>
Section: science
Priority: optional
Build-Depends: debhelper (>= 9)
Standards-Version:
3.9.7
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/transtermhp
.git/
Vcs-Git:
git://anonscm
.debian.org/
debian-med
/transtermhp.git
Standards-Version:
4.1.4
Vcs-Browser: https://
salsa
.debian.org/
med-team
/transtermhp
Vcs-Git:
https://salsa
.debian.org/
med-team
/transtermhp.git
Homepage: http://transterm.cbcb.umd.edu/
Package: transtermhp
...
...
debian/copyright
View file @
deb6b1fa
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: transterm_hp
Source: http://transterm.cbcb.umd.edu/index.php
Files-Excluded:
...
...
@@ -37,4 +37,3 @@ License: GPL-2.0+
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
debian/get-orig-source
deleted
100644 → 0
View file @
d12d6b08
#!/bin/sh
# script to download and repack source package of transtermhp
# this is needed because it is in ZIP format.
# Once we are repackaging we can also strip useless binaries.
PKG
=
`
dpkg-parsechangelog |
awk
'/^Source/ { print $2 }'
`
VERSION
=
`
uscan
--verbose
--force-download
|
\
grep
"Newest version on remote site is .* local version is .*"
|
\
head
-n
1 |
\
sed
"s/Newest version on remote site is
\(
[-0-9.]
\+\)
,.*/
\1
/"
`
mkdir
-p
../tarballs
cd
../tarballs
UPSTREAMNAME
=
transterm_hp
UPSTREAMDIR
=
"
${
UPSTREAMNAME
}
_v
${
VERSION
}
"
unzip ../
${
UPSTREAMDIR
}
.zip
# Once we need to repack the zip archive anyway we can remove useless
# binaries which are included
rm
-f
${
UPSTREAMDIR
}
/2ndscore
${
UPSTREAMDIR
}
/transterm
GZIP
=
"--best --no-name"
tar
-czf
"
$PKG
"
_
"
$VERSION
"
.orig.tar.gz
"
${
UPSTREAMDIR
}
"
rm
-rf
"
${
UPSTREAMDIR
}
"
debian/rules
View file @
deb6b1fa
#!/usr/bin/make -f
# debian/rules for transtermhp
# Author: Alex Mestiashvili <alex@biotec.tu-dresden.de>
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
...
...
@@ -19,6 +17,3 @@ override_dh_auto_test:
override_dh_installchangelogs:
dh_installchangelogs RELEASE-NOTES.txt
get-orig-source:
. debian/get-orig-source