[med-svn] r18225 - in trunk/packages: . yaggo yaggo/trunk yaggo/trunk/debian yaggo/trunk/debian/source

Andreas Tille tille at moszumanska.debian.org
Mon Oct 6 11:34:21 UTC 2014


Author: tille
Date: 2014-10-06 11:34:20 +0000 (Mon, 06 Oct 2014)
New Revision: 18225

Added:
   trunk/packages/yaggo/
   trunk/packages/yaggo/trunk/
   trunk/packages/yaggo/trunk/debian/
   trunk/packages/yaggo/trunk/debian/changelog
   trunk/packages/yaggo/trunk/debian/clean
   trunk/packages/yaggo/trunk/debian/compat
   trunk/packages/yaggo/trunk/debian/control
   trunk/packages/yaggo/trunk/debian/copyright
   trunk/packages/yaggo/trunk/debian/docs
   trunk/packages/yaggo/trunk/debian/install
   trunk/packages/yaggo/trunk/debian/rules
   trunk/packages/yaggo/trunk/debian/source/
   trunk/packages/yaggo/trunk/debian/source/format
   trunk/packages/yaggo/trunk/debian/watch
Log:
Inject yaggo which is a precondition for upgrading jellyfish


Added: trunk/packages/yaggo/trunk/debian/changelog
===================================================================
--- trunk/packages/yaggo/trunk/debian/changelog	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/changelog	2014-10-06 11:34:20 UTC (rev 18225)
@@ -0,0 +1,5 @@
+yaggo (1.5.4-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #<bug>)
+
+ -- Andreas Tille <tille at debian.org>  Mon, 06 Oct 2014 12:13:09 +0200

Added: trunk/packages/yaggo/trunk/debian/clean
===================================================================
--- trunk/packages/yaggo/trunk/debian/clean	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/clean	2014-10-06 11:34:20 UTC (rev 18225)
@@ -0,0 +1 @@
+yaggo

Added: trunk/packages/yaggo/trunk/debian/compat
===================================================================
--- trunk/packages/yaggo/trunk/debian/compat	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/compat	2014-10-06 11:34:20 UTC (rev 18225)
@@ -0,0 +1 @@
+9

Added: trunk/packages/yaggo/trunk/debian/control
===================================================================
--- trunk/packages/yaggo/trunk/debian/control	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/control	2014-10-06 11:34:20 UTC (rev 18225)
@@ -0,0 +1,23 @@
+Source: yaggo
+Section: misc
+Priority: optional
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Andreas Tille <tille at debian.org>
+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).

Added: trunk/packages/yaggo/trunk/debian/copyright
===================================================================
--- trunk/packages/yaggo/trunk/debian/copyright	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/copyright	2014-10-06 11:34:20 UTC (rev 18225)
@@ -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 <gmarcais at umd.edu>
+License: GPL-3+
+
+Files: debian/*
+Copyright: © 2014 Andreas Tille <tille at debian.org>
+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.

Added: trunk/packages/yaggo/trunk/debian/docs
===================================================================
--- trunk/packages/yaggo/trunk/debian/docs	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/docs	2014-10-06 11:34:20 UTC (rev 18225)
@@ -0,0 +1 @@
+README.md

Added: trunk/packages/yaggo/trunk/debian/install
===================================================================
--- trunk/packages/yaggo/trunk/debian/install	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/install	2014-10-06 11:34:20 UTC (rev 18225)
@@ -0,0 +1,2 @@
+yaggo	usr/bin
+

Added: trunk/packages/yaggo/trunk/debian/rules
===================================================================
--- trunk/packages/yaggo/trunk/debian/rules	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/rules	2014-10-06 11:34:20 UTC (rev 18225)
@@ -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


Property changes on: trunk/packages/yaggo/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/packages/yaggo/trunk/debian/source/format
===================================================================
--- trunk/packages/yaggo/trunk/debian/source/format	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/source/format	2014-10-06 11:34:20 UTC (rev 18225)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: trunk/packages/yaggo/trunk/debian/watch
===================================================================
--- trunk/packages/yaggo/trunk/debian/watch	                        (rev 0)
+++ trunk/packages/yaggo/trunk/debian/watch	2014-10-06 11:34:20 UTC (rev 18225)
@@ -0,0 +1,2 @@
+version=3
+https://github.com/gmarcais/yaggo/releases .*/archive/v(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz)




More information about the debian-med-commit mailing list