libcoyotl (3.1.0-4.1) debian-dir only changes

Summary

 debian/changelog               |   64 +++++++++++++++++++++
 debian/compat                  |    1 
 debian/control                 |   72 +++++++++++++++++++++++
 debian/copyright               |   26 ++++++++
 debian/dirs                    |    2 
 debian/docs                    |    6 +
 debian/libcoyotl-3.1-4.dirs    |    1 
 debian/libcoyotl-3.1-4.install |    2 
 debian/libcoyotl-dev.dirs      |    4 +
 debian/libcoyotl-dev.install   |    7 ++
 debian/rules                   |  124 +++++++++++++++++++++++++++++++++++++++++
 debian/shlibs                  |    1 
 12 files changed, 310 insertions(+)

    
download this patch

Patch contents

--- libcoyotl-3.1.0.orig/debian/copyright
+++ libcoyotl-3.1.0/debian/copyright
@@ -0,0 +1,26 @@
+This package was debianized by Al Stone <ahs3@debian.org> on
+Fri, 22 Oct 2004 18:28:19 -0600.
+
+It was downloaded from http://www.coyotegulch.com/products/acovea/
+
+Copyright: 1992-2004 by Scott Robert Ladd
+
+Upstream Author: Scott Robert Ladd <scott.ladd@coyotegulch.com>
+
+License:
+
+  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.
+
+  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 with the Debian GNU/Linux distribution in file
+  /usr/share/common-licenses/GPL; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
+  USA
+
--- libcoyotl-3.1.0.orig/debian/libcoyotl-dev.install
+++ libcoyotl-3.1.0/debian/libcoyotl-dev.install
@@ -0,0 +1,7 @@
+debian/tmp/usr/include/* usr/include
+debian/tmp/usr/lib/lib*.a usr/lib
+debian/tmp/usr/lib/lib*.so usr/lib
+debian/tmp/usr/lib/*.la usr/lib
+debian/tmp/usr/bin/* usr/share/doc/libcoyotl-dev/test
+debian/tmp/usr/share/doc/libcoyotl-dev/test/* usr/share/doc/libcoyotl-dev/test
+debian/tmp/usr/share/doc/libcoyotl-dev/html/* usr/share/doc/libcoyotl-dev/html
--- libcoyotl-3.1.0.orig/debian/dirs
+++ libcoyotl-3.1.0/debian/dirs
@@ -0,0 +1,2 @@
+usr/lib
+usr/share/doc
--- libcoyotl-3.1.0.orig/debian/docs
+++ libcoyotl-3.1.0/debian/docs
@@ -0,0 +1,6 @@
+AUTHORS
+NEWS
+README
+LICENSE.NON-FREE
+LICENSE.POLICY
+ChangeLog
--- libcoyotl-3.1.0.orig/debian/shlibs
+++ libcoyotl-3.1.0/debian/shlibs
@@ -0,0 +1 @@
+libcoyotl-3.1 4 libcoyotl-3.1-4
--- libcoyotl-3.1.0.orig/debian/control
+++ libcoyotl-3.1.0/debian/control
@@ -0,0 +1,72 @@
+Source: libcoyotl
+Priority: optional
+Maintainer: Al Stone <ahs3@debian.org>
+Build-Depends: debhelper (>= 4.0.0), libpng12-dev, c++abi2-dev, doxygen
+Standards-Version: 3.7.2
+
+Package: libcoyotl-dev
+Section: libdevel
+Architecture: any
+Depends: libcoyotl-3.1-4 (= ${binary:Version})
+Description: portable C++ classes used by acovea -- development files
+ This package provides the files needed to develop code that uses the
+ libcoyotl library.
+ .
+ The classes provided here do not easily fit into a single category; in
+ essence, these are tools that the author of the acovea package has found
+ useful in a variety of applications.
+ .
+ Among the algorithms included:
+ .
+   - a polymorphic collection of the best pseudorandom number generators,
+     including the Mersenne Twister and Marsaglia's favorites.
+ .
+   - utilities for working with real numbers, including additional functions
+     for trigonometry, least common multiple, greatest common denominator,
+     rounding, and other purposes.
+ .
+   - a simple cross-platform command-line parser.
+ .
+   - a framework for generating rectangular mazes.
+ .
+   - a template for fixed-point math based on different integer sizes and
+     decimal point locations.
+ .
+   - templatized sorting utilities (designed before standard C++'s use
+     of <algorithms>, but still useful).
+ .
+   - validation tools for "Design by Contract" programming.
+ 
+
+Package: libcoyotl-3.1-4
+Section: libs
+Architecture: any
+Conflicts: libcoyotl3c2
+Replaces: libcoyotl3c2
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: portable C++ classes used by acovea
+ The classes provided here do not easily fit into a single category; in
+ essence, these are tools that the author of the acovea package has found
+ useful in a variety of applications.
+ .
+ Among the algorithms included:
+ .
+   - a polymorphic collection of the best pseudorandom number generators,
+     including the Mersenne Twister and Marsaglia's favorites.
+ .
+   - utilities for working with real numbers, including additional functions
+     for trigonometry, least common multiple, greatest common denominator,
+     rounding, and other purposes.
+ .
+   - a simple cross-platform command-line parser.
+ .
+   - a framework for generating rectangular mazes.
+ .
+   - a template for fixed-point math based on different integer sizes and
+     decimal point locations.
+ .
+   - templatized sorting utilities (designed before standard C++'s use
+     of <algorithms>, but still useful).
+ .
+   - validation tools for "Design by Contract" programming.
+ 
--- libcoyotl-3.1.0.orig/debian/libcoyotl-3.1-4.install
+++ libcoyotl-3.1.0/debian/libcoyotl-3.1-4.install
@@ -0,0 +1,2 @@
+debian/tmp/usr/lib/lib*.so.* usr/lib
+debian/shlibs DEBIAN
--- libcoyotl-3.1.0.orig/debian/rules
+++ libcoyotl-3.1.0/debian/rules
@@ -0,0 +1,124 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	INSTALL_PROGRAM += -s
+endif
+
+# shared library versions, option 1
+version=2.0.5
+major=2
+# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
+#version=`ls src/.libs/lib*.so.* | \
+# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
+#major=`ls src/.libs/lib*.so.* | \
+# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+	CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+
+
+build: build-stamp
+build-stamp:  config.status
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	# Add here commands to clean up after the build process.
+	[ ! -f Makefile ] || $(MAKE) distclean
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp
+	DESTDIR=$(CURDIR)/debian/tmp $(MAKE) install 
+	mkdir -p $(CURDIR)/debian/tmp/usr/share/doc/libcoyotl-dev/html
+	cp -r docs/html/* $(CURDIR)/debian/tmp/usr/share/doc/libcoyotl-dev/html
+	mkdir -p $(CURDIR)/debian/tmp/usr/share/doc/libcoyotl-dev/test
+	cp -r test/* $(CURDIR)/debian/tmp/usr/share/doc/libcoyotl-dev/test
+	rm -f $(CURDIR)/debian/tmp/usr/share/doc/libcoyotl-dev/test/*.o
+	rm -f $(CURDIR)/debian/tmp/usr/share/doc/libcoyotl-dev/test/test_maze
+	rm -f $(CURDIR)/debian/tmp/usr/share/doc/libcoyotl-dev/test/test_prng
+	rm -rf $(CURDIR)/debian/tmp/usr/bin
+	rm -f $(CURDIR)/debian/libcoyotl-dev/usr/share/doc/libcoyotl-dev/test/test_maze
+	rm -f $(CURDIR)/debian/libcoyotl-dev/usr/share/doc/libcoyotl-dev/test/test_prng
+	rm -f $(CURDIR)/debian/libcoyotl-dev/usr/share/doc/libcoyotl-dev/test/*.o
+	rm -rf $(CURDIR)/debian/libcoyotl-dev/usr/share/doc/libcoyotl-dev/test/bin
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installexamples
+#	dh_installdebconf	
+	dh_installman
+	dh_install
+	dh_link
+	dh_makeshlibs
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_python
+	dh_installdeb
+	install -m644 debian/shlibs debian/libcoyotl-3.1-4/DEBIAN
+	rm -f debian/libcoyotl-dev/DEBIAN/shlibs
+	dh_shlibdeps -plibcoyotl-3.1-4
+	dh_shlibdeps -plibcoyotl-dev
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- libcoyotl-3.1.0.orig/debian/libcoyotl-dev.dirs
+++ libcoyotl-3.1.0/debian/libcoyotl-dev.dirs
@@ -0,0 +1,4 @@
+usr/lib
+usr/include
+usr/share/doc/libcoyotl-dev/test
+usr/share/doc/libcoyotl-dev/html
--- libcoyotl-3.1.0.orig/debian/compat
+++ libcoyotl-3.1.0/debian/compat
@@ -0,0 +1 @@
+4
--- libcoyotl-3.1.0.orig/debian/libcoyotl-3.1-4.dirs
+++ libcoyotl-3.1.0/debian/libcoyotl-3.1-4.dirs
@@ -0,0 +1 @@
+usr/lib
--- libcoyotl-3.1.0.orig/debian/changelog
+++ libcoyotl-3.1.0/debian/changelog
@@ -0,0 +1,64 @@
+libcoyotl (3.1.0-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix g++-4.3 FTBFS Thanks to Cyril Brulebois (Closes: 455274).
+
+ -- Pierre Habouzit <madcoder@debian.org>  Sun, 16 Mar 2008 21:04:50 +0000
+
+libcoyotl (3.1.0-4) unstable; urgency=low
+
+  * Closes: bug#417075 -- FTBS with GCC 4.3 
+  * Lintian cleanup
+
+ -- Al Stone <ahs3@debian.org>  Sun, 25 Nov 2007 16:34:51 -0700
+
+libcoyotl (3.1.0-3) unstable; urgency=low
+
+  * Corrected shlibs file and use of dh_shlibdeps 
+
+ -- Al Stone <ahs3@debian.org>  Sat, 26 Nov 2005 18:06:43 -0700
+
+libcoyotl (3.1.0-2) unstable; urgency=low
+
+  * Clean up shlibs file.
+  * Clean up changelog typo
+
+ -- Al Stone <ahs3@debian.org>  Mon, 21 Nov 2005 21:27:32 -0700
+
+libcoyotl (3.1.0-1) unstable; urgency=low
+
+  * Upgraded to latest upstream.
+  * Closes: bug#339200 -- library package needs to be renamed (libstdc++
+    allocator change)
+
+ -- Al Stone <ahs3@debian.org>  Mon, 21 Nov 2005 15:55:19 -0700
+
+libcoyotl (3.0.2-2) unstable; urgency=low
+
+  * Was not adding in the right shlib links in libcoyotl-dev 
+
+ -- Al Stone <ahs3@debian.org>  Mon, 24 Oct 2005 21:32:36 -0600
+
+libcoyotl (3.0.2-1) unstable; urgency=low
+
+  * New upstream version: ABI was updated, documentation added
+  * Update Debian standards version
+  * Closes: bug#333976 -- Please undergo C++ 'c2' transition
+
+ -- Al Stone <ahs3@debian.org>  Sun, 23 Oct 2005 14:48:25 -0600
+
+libcoyotl (3.0.1-2) unstable; urgency=low
+
+  * Remove unneeded dependence on g++ package that's in build-essential 
+
+ -- Al Stone <ahs3@debian.org>  Tue,  7 Dec 2004 21:41:47 -0700
+
+libcoyotl (3.0.1-1) unstable; urgency=low
+
+  * Initial Release.
+  * Part of the set of packages that close bug#275425, the RFP/ITP
+    for acovea
+  * Added proper copyright text in test/test_prng.cpp
+
+ -- Al Stone <ahs3@debian.org>  Fri, 22 Oct 2004 18:28:19 -0600
+