This is an automated email from the git hooks/post-receive script. tille pushed a commit to branch master in repository yaggo.
commit e3d5bc79b6c390ad30e4c1724336496193baa632 Author: Andreas Tille <[email protected]> Date: Mon Oct 6 11:34:20 2014 +0000 Inject yaggo which is a precondition for upgrading jellyfish --- debian/changelog | 5 +++++ debian/clean | 1 + debian/compat | 1 + debian/control | 23 +++++++++++++++++++++++ debian/copyright | 15 +++++++++++++++ debian/docs | 1 + debian/install | 2 ++ debian/rules | 15 +++++++++++++++ debian/source/format | 1 + debian/watch | 2 ++ 10 files changed, 66 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1a2a75a --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +yaggo (1.5.4-1) UNRELEASED; urgency=low + + * Initial release (Closes: #<bug>) + + -- Andreas Tille <[email protected]> Mon, 06 Oct 2014 12:13:09 +0200 diff --git a/debian/clean b/debian/clean new file mode 100644 index 0000000..19d4f94 --- /dev/null +++ b/debian/clean @@ -0,0 +1 @@ +yaggo diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..b0b2d0b --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: yaggo +Section: misc +Priority: optional +Maintainer: Debian Med Packaging Team <[email protected]> +Uploaders: Andreas Tille <[email protected]> +Build-Depends: debhelper (>= 9), + ruby, + help2man +Standards-Version: 3.9.6 +Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/yaggo/trunk/ +Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/yaggo/trunk/ +Homepage: https://github.com/gmarcais/yaggo + +Package: yaggo +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter +Description: generate command line parser using getopt_long + Yaggo is a tool to generate command line parsers for C++. Yaggo stands + for "Yet Another GenGetOpt" and is inspired by GNU Gengetopt. + . + It reads a configuration file describing the switches and argument for + a C++ program and it generates one header file that parses the command + line using getopt_long(3). diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..9b76add --- /dev/null +++ b/debian/copyright @@ -0,0 +1,15 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: yaggo +Source: https://github.com/gmarcais/yaggo/releases + +Files: * +Copyright: © 2012-2014 Guillaume Marçais <[email protected]> +License: GPL-3+ + +Files: debian/* +Copyright: © 2014 Andreas Tille <[email protected]> +License: GPL-3+ + +License: GPL-3+ + On Debian systems you can find the full text of the GNU General Public + License version 3 at /usr/share/common-licenses/GPL-3. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README.md diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..f17862a --- /dev/null +++ b/debian/install @@ -0,0 +1,2 @@ +yaggo usr/bin + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b5d0797 --- /dev/null +++ b/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f + +pkg := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p') +version=$(shell dpkg-parsechangelog | grep Version: | cut -f2 -d' ' | cut -f1 -d- ) +mandir=$(CURDIR)/debian/$(pkg)/usr/share/man/man1/ +HELP2MAN = help2man --no-info --version-string="$(version)" + +%: + dh $@ + +override_dh_installman: + mkdir -p $(mandir) + $(HELP2MAN) \ + --name='generate command line parser using getopt_long' \ + $(CURDIR)/$(pkg) > $(mandir)/$(pkg).1 diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..266b54a --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://github.com/gmarcais/yaggo/releases .*/archive/v(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/yaggo.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
