--- tclap-1.1.0.orig/debian/compat +++ tclap-1.1.0/debian/compat @@ -0,0 +1 @@ +7 --- tclap-1.1.0.orig/debian/changelog +++ tclap-1.1.0/debian/changelog @@ -0,0 +1,22 @@ +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.1.0.orig/debian/libtclap-dev.examples +++ tclap-1.1.0/debian/libtclap-dev.examples @@ -0,0 +1,2 @@ +examples/Makefile.* +examples/test*.cpp --- tclap-1.1.0.orig/debian/libtclap-dev.docs +++ tclap-1.1.0/debian/libtclap-dev.docs @@ -0,0 +1,5 @@ +AUTHORS +NEWS +README +docs/ +tests/ --- tclap-1.1.0.orig/debian/rules +++ tclap-1.1.0/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# debian/rules file for the Debian/GNU Linux tclap package + +%: + dh $@ + --- tclap-1.1.0.orig/debian/copyright +++ tclap-1.1.0/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.1.0.orig/debian/watch +++ tclap-1.1.0/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.1.0.orig/debian/control +++ tclap-1.1.0/debian/control @@ -0,0 +1,14 @@ +Source: tclap +Section: libdevel +Priority: optional +Maintainer: Dirk Eddelbuettel +Standards-Version: 3.8.0 +Build-Depends: debhelper (>= 7), autotools-dev + +Package: libtclap-dev +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. --- tclap-1.1.0.orig/include/tclap/ValueArg.h +++ tclap-1.1.0/include/tclap/ValueArg.h @@ -23,6 +23,7 @@ #ifndef TCLAP_VALUE_ARGUMENT_H #define TCLAP_VALUE_ARGUMENT_H +#include #include #include --- tclap-1.1.0.orig/include/tclap/MultiArg.h +++ tclap-1.1.0/include/tclap/MultiArg.h @@ -23,6 +23,7 @@ #ifndef TCLAP_MULTIPLE_ARGUMENT_H #define TCLAP_MULTIPLE_ARGUMENT_H +#include #include #include