This is an automated email from the git hooks/post-receive script. tille pushed a commit to branch master in repository libvcflib.
commit ae71e5c8ca2fe90a4074612938e72cf64a6bad0f Author: Andreas Tille <[email protected]> Date: Sun Feb 1 12:02:42 2015 +0100 Add some description --- debian/control | 22 ++++++++++++++++++---- debian/inject-into-alioth-git | 18 ------------------ debian/rules | 4 ++++ 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/debian/control b/debian/control index 83b10f1..8f95c85 100644 --- a/debian/control +++ b/debian/control @@ -3,14 +3,28 @@ Section: science Priority: optional Maintainer: Debian Med Packaging Team <[email protected]> Uploaders: Andreas Tille <[email protected]> -Build-Depends: debhelper (>= 9) +Build-Depends: debhelper (>= 9), + python-markdown Standards-Version: 3.9.6 Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/libvcflib.git Vcs-Git: git://anonscm.debian.org/debian-med/libvcflib.git -Homepage: <homepage> +Homepage: https://github.com/ekg/vcflib Package: libvcflib Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Description: <short_description> - <long_description> +Description: C++ library for parsing and manipulating VCF files + The Variant Call Format (VCF) is a flat-file, tab-delimited textual format + intended to concisely describe reference-indexed variations between + individuals. VCF provides a common interchange format for the description of + variation in individuals and populations of samples, and has become the defacto + standard reporting format for a wide array of genomic variant detectors. + . + vcflib provides methods to manipulate and interpret sequence variation as it + can be described by VCF. It is both: + . + * an API for parsing and operating on records of genomic variation as it can + be described by the VCF format, + * and a collection of command-line utilities for executing complex + manipulations on VCF files. + diff --git a/debian/inject-into-alioth-git b/debian/inject-into-alioth-git deleted file mode 100755 index 02c2222..0000000 --- a/debian/inject-into-alioth-git +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh -e - -echo "Please verify whether this script is obsoleted by gbp-create-remote-repo !" - -# This script implements the "Git tips" given here -# http://debian-med.alioth.debian.org/docs/policy.html#git-tips -# Use it with caution since it is less testet - -DEBPKGNAME=`dpkg-parsechangelog | awk '/^Source:/ {print $2}'` -SHORTDESC=`grep "^Description: " debian/control | head -n 1 | sed 's/^Description: //'` -VCSGIT=`grep "^Vcs-Git: " debian/control | sed -e 's/^Vcs-Git: //' -e 's#git://anonscm.debian.org/#ssh://git.debian.org/git/#'` -DIRatALIOTH=`echo $VCSGIT | sed -e 's#ssh://git.debian.org/git/#/git/#' -e 's#/[^/]\+\.git##'` - -ssh git.debian.org "cd $DIRatALIOTH; ./setup-repository $DEBPKGNAME '$SHORTDESC'" -git remote add origin $VCSGIT -git push origin master -git push --all --set-upstream -git push --tags diff --git a/debian/rules b/debian/rules index 58ec00b..1d086d0 100755 --- a/debian/rules +++ b/debian/rules @@ -19,5 +19,9 @@ %: dh $@ +override_dh_auto_build: + dh_auto_build + markdown_py -f README.html README.md + #get-orig-source: # . debian/get-orig-source -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/libvcflib.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
