--- skstream-0.3.5.orig/debian/compat +++ skstream-0.3.5/debian/compat @@ -0,0 +1 @@ +4 --- skstream-0.3.5.orig/debian/watch +++ skstream-0.3.5/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://heanet.dl.sourceforge.net/sourceforge/worldforge/skstream-([\d\.]*)\.tar\.gz debian uupdate --- skstream-0.3.5.orig/debian/control +++ skstream-0.3.5/debian/control @@ -0,0 +1,40 @@ +Source: skstream +Priority: optional +Section: libs +Maintainer: Michael Koch +Build-Depends: debhelper (>> 4.0.0), libcppunit-dev +Standards-Version: 3.6.2 + +Package: libskstream-0.3-dev +Section: libdevel +Architecture: any +Depends: libskstream-0.3-3 (= ${Source-Version}) +Description: Isostream C++ socket library - development files + skstream implements an isostream C++ socket library. TCP- and UDP-sockets are + available as C++ classes. + . + This package contains the development files. + +Package: libskstream-0.3-3-dbg +Section: libdevel +Priority: extra +Architecture: any +Depends: libskstream-0.3-3 +Description: Isostream C++ socket library - debugging libs + skstream implements an isostream C++ socket library. TCP- and UDP-sockets are + available as C++ classes. + . + This package contains the unstripped shared libraries. It is provided primarily + to provide a backtrace with names in a debugger, this makes it somewhat easier + to interpret core dumps. The library is installed in /usr/lib/debug and can be + used by placing the directory in LD_LIBRARY_PATH. + . + Most people will not need this package. + +Package: libskstream-0.3-3 +Section: libs +Architecture: any +Depends: ${shlibs:Depends} +Description: Isostream C++ socket library + skstream implements an isostream C++ socket library. TCP- and UDP-sockets are + available as C++ classes. --- skstream-0.3.5.orig/debian/rules +++ skstream-0.3.5/debian/rules @@ -0,0 +1,84 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS=-g + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O2 +else + CFLAGS += -O0 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +config.status: configure + dh_testdir + CFLAGS="$(CFLAGS)" LDFLAGS=-lstdc++ ./configure \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + --disable-dependency-tracking \ + --disable-debug + +build: build-stamp +build-stamp: config.status + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) distclean +# -test -r /usr/share/misc/config.sub && \ +# cp -f /usr/share/misc/config.sub config.sub +# -test -r /usr/share/misc/config.guess && \ +# cp -f /usr/share/misc/config.guess config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + + mkdir $(CURDIR)/debian/tmp/usr/lib/debug + cp $(CURDIR)/debian/tmp/usr/lib/libskstream-0.3.so.3 $(CURDIR)/debian/tmp/usr/lib/debug/ + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_install --sourcedir=debian/tmp --list-missing + dh_installdocs + dh_installman + dh_installchangelogs ChangeLog + dh_link + dh_strip -Xdebug + dh_compress + dh_fixperms + dh_makeshlibs -plibskstream-0.3-3 -V 'libskstream-0.3-3 (>= 0.3.5)' + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- skstream-0.3.5.orig/debian/copyright +++ skstream-0.3.5/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Michael Koch on +Wed, 24 Apr 2002 22:01:41 +0200. + +It was downloaded from ftp://ftp.worldforge.org/pub/worldforge/libs/skstream + +Upstream Author: Al Riddoch + +Copyright: + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems you can find a ful copy of the GNU General Public License, +version 2, in the file /usr/share/common-licenses/GPL-2. + --- skstream-0.3.5.orig/debian/changelog +++ skstream-0.3.5/debian/changelog @@ -0,0 +1,214 @@ +skstream (0.3.5-1) unstable; urgency=low + + * New upstream release + * Removed Build-Depends alternative on cppunit + * Renamed libskstream-0.3-1c2 to libskstream-0.3-3 + * Renamed libskstream-0.3-1c2-dbg to libskstream-0.3-3-dbg + * Fixed arguments to dh_makeshlibs in debian/rules + * Fixed copying of library with debug symbols in debian/rules + * Fixed watch file + + -- Michael Koch Sat, 17 Sep 2005 11:02:08 +0000 + +skstream (0.3.3-4) unstable; urgency=low + + * libskstream-0.3-1c2: Added Conflicts and Replaces on libskstream-0.3-1 + (Closes: #326393) + * libststream-0.3-1c2-dbg: Added Conflicts and Replaces on + libskstream-0.3-1-dbg + * debian/copyright: Updated address of FSF + + -- Michael Koch Sat, 3 Sep 2005 08:15:57 +0000 + +skstream (0.3.3-3) unstable; urgency=low + + * Build-Depend on libcppunit-dev first and then on cppunit as + alternative + * Upload sponsored by Norbert Tretkowski + + -- Michael Koch Mon, 29 Aug 2005 05:41:48 +0000 + +skstream (0.3.3-2) unstable; urgency=low + + * Renamed binary packages due to the C++ transition + * Build-Depends on cppunit (>= 1.6.1) | libcppunit-dev + * Upload to unstable (Closes: #297169). + * Updated Standards-Version to 3.6.2 + * * Sponsored by Petter Reinholdtsen + + -- Michael Koch Sat, 27 Aug 2005 10:14:45 +0000 + +skstream (0.3.3-1) experimental; urgency=low + + * New upstream release (Closes: #297169) + * Renamed packages because of new SONAME + * Added autoupdate to debian/watch file + * Include static library for real + + -- Michael Koch Tue, 1 Mar 2005 10:09:08 +0000 + +skstream (0.3.2-1) unstable; urgency=low + + * New upstream release + + -- Michael Koch Thu, 30 Sep 2004 06:23:56 +0000 + +skstream (0.3.1-4) unstable; urgency=high + + * debian/copyright: Fixed to show correct license + * debian/watch: New file. + + -- Michael Koch Wed, 8 Sep 2004 06:21:16 +0000 + +skstream (0.3.1-3) unstable; urgency=low + + * Include some files in packages + + -- Michael Koch Sun, 16 May 2004 09:06:05 +0200 + +skstream (0.3.1-2) unstable; urgency=low + + * Upload to unstable. + + -- Michael Koch Fri, 14 May 2004 15:45:29 +0200 + +skstream (0.3.1-1) experimental; urgency=low + + * New upstream release + * Updated SONAME version + * Updated file lists, removed manpage for skstream-config + * Updated package description for libskstream-0.3-dbg + * Make libskstream-0.3-dbg depend on libskstream-0.3 + * Rename libskstream-dev to libskstream-0.3-dev + * Use debian/compat and update compatibility level to 4 + * Use dh_install instead of dh_movefiles + * Updated Standards-Version to 3.6.1 + + -- Michael Koch Fri, 5 Mar 2004 14:46:37 +0100 + +skstream (0.2.5-1) unstable; urgency=low + + * New upstream release. + * Renamed package names to match library version. + * Moved libskstream-0.2-dbg to libdevel section. + * Fixed debian/*.files. + * Updated Standards-Version to 3.5.9. + + -- Michael Koch Thu, 24 Apr 2003 10:29:45 +0000 + +skstream (0.2.4-13) unstable; urgency=low + + * Regenerated build files (Closes: #179111). + + -- Michael Koch Fri, 21 Mar 2003 14:37:02 +0100 + +skstream (0.2.4-12) unstable; urgency=low + + * c102 transition. + * Support "noopt" build option. + * debian/rules cleaned up. + + -- Michael Koch Fri, 10 Jan 2003 13:32:05 +0100 + +skstream (0.2.4-11) unstable; urgency=low + + * Bumped Standards-Version to 3.5.8. + * debian/control: Fixed libskstream3 description. + + -- Michael Koch Thu, 12 Dec 2002 16:31:21 +0100 + +skstream (0.2.4-10) unstable; urgency=low + + * Excluded sasproto.h, its not supported by skstream (Closes: #159920). + + -- Michael Koch Sat, 7 Sep 2002 08:22:36 +0200 + +skstream (0.2.4-9) unstable; urgency=low + + * Changed Standards-Version to 3.5.7 + * Changed priority back to optional + * priority of libstream3-dbg is now explicitely extra + * link in libstdc++ explicitely to get correct dependencies + * dont Build-depend on libstdc++-dev its a indirect dependency of + build-essential + + -- Michael Koch Mon, 2 Sep 2002 18:26:35 +0200 + +skstream (0.2.4-8) unstable; urgency=low + + * Updated Standard-Version to 3.5.6.1. + + -- Michael Koch Tue, 27 Aug 2002 15:36:50 +0200 + +skstream (0.2.4-7) unstable; urgency=low + + * Changed priority to extra. + * Removed unneeded Build-Depends on libc6-dev. + + -- Michael Koch Mon, 26 Aug 2002 21:56:26 +0200 + +skstream (0.2.4-6) unstable; urgency=low + + * include updated COPYING from CVS in sources + + -- Michael Koch Fri, 23 Aug 2002 15:18:24 +0200 + +skstream (0.2.4-5) unstable; urgency=low + + * include TODO + * fixed debian/copyright + + -- Michael Koch Sat, 3 Aug 2002 21:24:36 +0200 + +skstream (0.2.4-4) unstable; urgency=low + + * added package with libs with debugging symbols + + -- Michael Koch Wed, 31 Jul 2002 12:53:34 +0200 + +skstream (0.2.4-3) unstable; urgency=low + + * dont install headers into /usr/include/sksream/skstream + + -- Michael Koch Tue, 30 Jul 2002 10:46:35 +0200 + +skstream (0.2.4-2) unstable; urgency=low + + * Added patch from CVS to fix passing of sockaddr_in + + -- Michael Koch Mon, 22 Jul 2002 21:41:57 +0200 + +skstream (0.2.4-1) unstable; urgency=low + + * New upstream release + * renamed packages to include interface version + * reworked debian/rules + * reworked debian/control + * added link to license on debian/copyright + + -- Michael Koch Sun, 21 Jul 2002 19:33:26 +0200 + +skstream (0.2.2-4) unstable; urgency=low + + * add shlibs version + + -- Michael Koch Fri, 21 Jun 2002 22:22:38 +0200 + +skstream (0.2.2-3) unstable; urgency=low + + * moved headers into usr/include/skstream + + -- Michael Koch Thu, 20 Jun 2002 08:59:23 +0200 + +skstream (0.2.2-2) unstable; urgency=low + + * Fixed dependencies + + -- Michael Koch Sun, 9 Jun 2002 12:08:43 +0200 + +skstream (0.2.2-1) unstable; urgency=low + + * Initial Release. + + -- Michael Koch Wed, 24 Apr 2002 22:01:41 +0200 + --- skstream-0.3.5.orig/debian/docs +++ skstream-0.3.5/debian/docs @@ -0,0 +1,3 @@ +NEWS +README +TODO --- skstream-0.3.5.orig/debian/libskstream-0.3-dev.install +++ skstream-0.3.5/debian/libskstream-0.3-dev.install @@ -0,0 +1,11 @@ +usr/include/skstream-0.3/skstream/sasproto.h +usr/include/skstream-0.3/skstream/skpoll.h +usr/include/skstream-0.3/skstream/skserver.h +usr/include/skstream-0.3/skstream/skserver_unix.h +usr/include/skstream-0.3/skstream/skstream.h +usr/include/skstream-0.3/skstream/skstream_unix.h +usr/lib/libskstream-0.3.la +usr/lib/libskstream-0.3.so +usr/lib/pkgconfig/skstream-0.3.pc +usr/lib/pkgconfig/skstream-unix-0.3.pc +usr/lib/skstream-0.3/include/skstream/skstreamconfig.h --- skstream-0.3.5.orig/debian/libskstream-0.3-3.install +++ skstream-0.3.5/debian/libskstream-0.3-3.install @@ -0,0 +1,2 @@ +usr/lib/libskstream-0.3.so.3 +usr/lib/libskstream-0.3.so.3.0.0 --- skstream-0.3.5.orig/debian/libskstream-0.3-3-dbg.install +++ skstream-0.3.5/debian/libskstream-0.3-3-dbg.install @@ -0,0 +1 @@ +usr/lib/debug/libskstream-0.3.so.3