--- tclap-1.2.1.orig/debian/watch +++ tclap-1.2.1/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts=uversionmangle=s/\.(tar.*|tgz|zip|gz|bz2)$//i,dversionmangle=s/[-.+~]?(cvs|svn|git|snapshot|pre|hg)(.*)$//i,pasv \ +http://sf.net/tclap/tclap-?_?([\d+\.]+|\d+)\.(tar.*|tgz|zip|gz|bz2|) debian uupdate --- tclap-1.2.1.orig/debian/compat +++ tclap-1.2.1/debian/compat @@ -0,0 +1 @@ +7 --- tclap-1.2.1.orig/debian/changelog +++ tclap-1.2.1/debian/changelog @@ -0,0 +1,38 @@ +tclap (1.2.1-1) unstable; urgency=low + + * New upstream release + + * debian/control: Set Standards-Version: to current version + + -- Dirk Eddelbuettel Fri, 10 Jun 2011 17:27:10 -0500 + +tclap (1.2.0-1) unstable; urgency=low + + * New upstream release + + * debian/control: Set Standards-Version: to current version + + -- Dirk Eddelbuettel Thu, 04 Mar 2010 10:11:45 -0600 + +tclap (1.1.0-2) unstable; urgency=low + + * include/tclap/{MultiArg.h,ValueArg.h}: Add missing #include so + that EOF is defined for g++ 4.4. Thanks to Martin Michlmayr for running + early g++ 4.4 regression tests. (Closes: #504854) + + * debian/control: Update Standards-Version: to current version + * debian/control: Changed Section: to libdevel + * debian/rules: Switched to debhelper (>= 7) one-line format + * debian/ru;es: Increased Build-Depends: on debhelper to (>= 7) + * debian/libtclap-dev.{examples,docs}: Added to support debhelper + * debian/compat: Changed debhelper compatibility level to 7 + * debian/watch: Added watch file from dehs.alioth.debian.org + + -- Dirk Eddelbuettel Sat, 08 Nov 2008 09:09:57 -0600 + +tclap (1.1.0-1) unstable; urgency=low + + * Initial Debian upload (Closes: #399958) + + -- Dirk Eddelbuettel Fri, 1 Dec 2006 20:38:34 -0600 + --- tclap-1.2.1.orig/debian/rules +++ tclap-1.2.1/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# debian/rules file for the Debian/GNU Linux tclap package + +%: + dh $@ + +override_dh_installdocs: + dh_installdocs + # edd 10 Jun 2011 prune CVS directory + find debian/ -name CVS -type d | xargs rm -rf + --- tclap-1.2.1.orig/debian/libtclap-dev.docs +++ tclap-1.2.1/debian/libtclap-dev.docs @@ -0,0 +1,5 @@ +AUTHORS +NEWS +README +docs/ +tests/ --- tclap-1.2.1.orig/debian/libtclap-dev.examples +++ tclap-1.2.1/debian/libtclap-dev.examples @@ -0,0 +1,2 @@ +examples/Makefile.* +examples/test*.cpp --- tclap-1.2.1.orig/debian/copyright +++ tclap-1.2.1/debian/copyright @@ -0,0 +1,34 @@ +This is the Debian GNU/Linux tclap package, a templated command-line +parsing library which was written by Michael Smoot. + +This package was created by Dirk Eddelbuettel . +The sources were downloaded from + http://tclap.sf.net/ + +Tclap is copyright Michael E. Smoot and released under the following +MIT-style license (copied verbatime from the file COPYING, and +indented three spaces): + + Copyright (c) 2003 Michael E. Smoot + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + + --- tclap-1.2.1.orig/debian/control +++ tclap-1.2.1/debian/control @@ -0,0 +1,16 @@ +Source: tclap +Section: devel +Priority: optional +Maintainer: Dirk Eddelbuettel +Standards-Version: 3.9.1 +Build-Depends: debhelper (>= 7.0.50~), autotools-dev + +Package: libtclap-dev +Section: libdevel +Depends: ${misc:Depends} +Architecture: any +Description: Templatized command-line argument parser for C++ + This package provides a simple C++ library that facilitates + parsing command-line arguments in a type-independent manner. + The functionality is provided via template header files, so + no actual library is included.