Skip to content
Commits on Source (7)
hilive (1.1-2) unstable; urgency=medium
* Fix Homepage
* Delete debian/get-orig-source since project moved from SF to Gitlab
* Drop redundant debian/gbp.conf
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.3.0
* Remove trailing whitespace in debian/changelog
-- Andreas Tille <tille@debian.org> Mon, 07 Jan 2019 13:28:52 +0100
hilive (1.1-1) unstable; urgency=medium
* New upstream version
......
......@@ -13,10 +13,10 @@ Build-Depends: debhelper (>= 11~),
zlib1g-dev,
liblz4-dev,
chrpath
Standards-Version: 4.1.3
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/hilive.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/hilive.git
Homepage: https://sourceforge.net/projects/hilive/
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/hilive
Vcs-Git: https://salsa.debian.org/med-team/hilive.git
Homepage: https://gitlab.com/SimonHTausch/HiLive
Package: hilive
Architecture: any
......
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: HiLive
Source: https://sourceforge.net/projects/hilive/
Source: https://gitlab.com/SimonHTausch/HiLive
Files: *
Copyright: 2015 Martin S. Lindner <marzin@mail-lindner.de>
......
[DEFAULT]
pristine-tar = True
#!/bin/sh -e
COMPRESS=xz
NAME=`dpkg-parsechangelog | awk '/^Source/ { print $2 }'`
MVERSION=`dpkg-parsechangelog | awk '/^Version:/ { print $2 }' | sed 's/^\([0-9\.]\+\)[+~][-0-9]\+$/\1/'`
mkdir -p ../tarballs
cd ../tarballs
# need to clean up the tarballs dir first because upstream tarball might
# contain a directory with unpredictable name
rm -rf *
set -x
git clone --quiet http://git.code.sf.net/p/hilive/code $NAME
cd $NAME
VERSION=${MVERSION}+`date -d @$(git show --format="%at" | head -n1) +%Y%m%d`
# for esthetical reasons set file timestamps (if git-restore-mtime is installed)
git restore-mtime || true
cd ..
TARDIR=${NAME}-${VERSION}
mv ${NAME} ${TARDIR}
rm -rf ${TARDIR}/.git*
GZIP="--best --no-name" tar --owner=root --group=root --mode=a+rX -caf "$NAME"_"$VERSION".orig.tar.${COMPRESS} "${TARDIR}"
rm -rf ${TARDIR}