israndom (1.0.7-3) debian-dir only changes

Summary

 debian/changelog         |   23 ++++++++++++++++++++
 debian/compat            |    1 
 debian/control           |   23 ++++++++++++++++++++
 debian/copyright         |   40 ++++++++++++++++++++++++++++++++++++
 debian/israndom.install  |    1 
 debian/israndom.manpages |    1 
 debian/rules             |   52 +++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch             |    2 +
 8 files changed, 143 insertions(+)

    
download this patch

Patch contents

--- israndom-1.0.7.orig/debian/control
+++ israndom-1.0.7/debian/control
@@ -0,0 +1,23 @@
+Source: israndom
+Priority: optional
+Maintainer: Rudi Cilibrasi <cilibrar@debian.org>
+Build-Depends: debhelper (>= 5.0.0), libcomplearn-dev, g++-4.3
+Standards-Version: 3.8.2
+Vcs-Browser: http://hg.debian.org/hg/private/cilibrar/pkg-israndom
+Vcs-Hg: http://hg.debian.org/hg/private/cilibrar/pkg-israndom
+Section: science
+
+Package: israndom
+Section: science
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Architecture: any
+Description: nonclassical randomness test using data compressors
+ israndom tests a sequence of symbols for randomness.  israndom tries to
+ determine if a given sequence of trials could reasonably be assumed  to
+ be  from  a  random  uniform distribution over a fixed-size alphabet of
+ 2-256 symbols.  It uses mathematical results from Kolmogorov Complexity
+ theory and Shannon entropy (in classical information theory) in order to
+ determine if a given sequence is effectively random or not.  It does this
+ by bounding the Kolmogorov complexity function from above using compressors.
+ .
+
--- israndom-1.0.7.orig/debian/rules
+++ israndom-1.0.7/debian/rules
@@ -0,0 +1,52 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	./configure --prefix=/usr && $(MAKE)
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	dh_clean
+	rm -rf debian/tmp
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_installdirs
+
+	$(MAKE) DESTDIR=`pwd`/debian/tmp install install-man
+
+# 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
+	dh_installdocs
+	dh_installexamples
+	dh_install
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- israndom-1.0.7.orig/debian/israndom.manpages
+++ israndom-1.0.7/debian/israndom.manpages
@@ -0,0 +1 @@
+debian/tmp/usr/share/man/man1/israndom.1
--- israndom-1.0.7.orig/debian/copyright
+++ israndom-1.0.7/debian/copyright
@@ -0,0 +1,40 @@
+This package was debianized by Rudi Cilibrasi <cilibrar@debian.org> on
+Mon, 24 Dec 2007 12:37:31 -0800
+
+It was downloaded from: http://cilibrar.com/
+
+Upstream Authors: Rudi Cilibrasi
+
+Copyright: 2007 - 2008 Rudi Cilibrasi
+
+All rights reserved.
+
+The Debian packaging is available under the same BSD-like license as the rest
+of the source code.
+
+License:
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted provided that the following conditions
+    are met:
+    1. Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+    2. Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in the
+       documentation and/or other materials provided with the distribution.
+    3. Neither the name of the software nor the names of its contributors
+       may be used to endorse or promote products derived from this software
+       without specific prior written permission.
+    
+    THIS SOFTWARE IS PROVIDED BY THE RULERS AND CONTRIBUTORS ``AS IS'' AND
+    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+    ARE DISCLAIMED.  IN NO EVENT SHALL THE RULERS OR CONTRIBUTORS BE LIABLE
+    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+    SUCH DAMAGE.
+
--- israndom-1.0.7.orig/debian/israndom.install
+++ israndom-1.0.7/debian/israndom.install
@@ -0,0 +1 @@
+debian/tmp/usr/bin/israndom usr/bin/
--- israndom-1.0.7.orig/debian/watch
+++ israndom-1.0.7/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://complearn.org/download.html .*/israndom-(.*)\.tar\.gz
--- israndom-1.0.7.orig/debian/compat
+++ israndom-1.0.7/debian/compat
@@ -0,0 +1 @@
+5
--- israndom-1.0.7.orig/debian/changelog
+++ israndom-1.0.7/debian/changelog
@@ -0,0 +1,23 @@
+israndom (1.0.7-3) unstable; urgency=low
+
+  * Bumped compiler, debhelper, and standards versions. (Closes: #533787)
+
+ -- Rudi Cilibrasi <cilibrar@debian.org>  Sun, 21 Jun 2009 19:19:52 -0700
+
+israndom (1.0.7-2) unstable; urgency=low
+
+  * Added watch and Vcs.
+
+ -- Rudi Cilibrasi <cilibrar@debian.org>  Fri, 01 Feb 2008 15:47:21 -0800
+
+israndom (1.0.7-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Rudi Cilibrasi <cilibrar@debian.org>  Thu, 10 Jan 2008 20:37:52 -0800
+
+israndom (1.0.6-1) unstable; urgency=low
+
+  * Initial release. (Closes: #457922)
+
+ -- Rudi Cilibrasi <cilibrar@debian.org>  Thu, 27 Dec 2007 01:04:07 -0800