Skip to content
Commits on Source (4)
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
......
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Format: https://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".
#!/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}"
#!/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