summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorAndrew O. Shadoura <bugzilla@tut.by>2010-10-10 11:13:52 +0300
committerAndrew O. Shadoura <bugzilla@tut.by>2010-10-10 11:13:52 +0300
commitaba9c2b9398052555cabf4567d4daf7abe3034de (patch)
treed0a5378b60ba380970641233023d6ef3acb79cb6 /debian
parentcece48595785ebfb2232ff27605f311256dca8ba (diff)
initial packaging
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control40
-rw-r--r--debian/copyright51
-rw-r--r--debian/libguess-dev.install3
-rw-r--r--debian/libguess-examples.examples1
-rw-r--r--debian/libguess1.docs1
-rw-r--r--debian/libguess1.install1
-rwxr-xr-xdebian/rules7
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch11
11 files changed, 122 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..9491191
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libguess (1.0-1) unstable; urgency=low
+
+ * Initial release (Closes: #xxxxxx)
+
+ -- Andrew O. Shadoura <bugzilla@tut.by> Fri, 07 Oct 2010 18:08:23 +0300
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..611b6ea
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: libguess
+Priority: extra
+Maintainer: Andrew O. Shadoura <bugzilla@tut.by>
+Build-Depends: debhelper (>= 7.0.50~), autotools-dev, autoconf, automake, libtool, libmowgli-dev (>= 0.7.0)
+Standards-Version: 3.9.1
+Section: libs
+Homepage: http://hg.atheme.org/libguess/
+Vcs-git: http://hg.debian.org/collab-maint/libguess
+Vcs-Browser: http://hg.debian.org/collab-maint/libguess/summary
+
+Package: libguess-dev
+Section: libdevel
+Architecture: any
+Depends: libguess0 (= ${binary:Version}), ${misc:Depends}
+Description: a high-speed character set detection library (development)
+ libguess employs discrete-finite automata to deduce the character set of the
+ input buffer. The advantage of this is that all character sets can be checked
+ in parallel, and quickly.
+ .
+ This package contains files needed for development with natspec.
+
+Package: libguess-examples
+Section: devel
+Architecture: any
+Depends: libguess-dev (= ${binary:Version}), ${misc:Depends}
+Description: a high-speed character set detection library (examples)
+ libguess employs discrete-finite automata to deduce the character set of the
+ input buffer. The advantage of this is that all character sets can be checked
+ in parallel, and quickly.
+ .
+ This package contains source code of some examples of using natspec.
+
+Package: libguess1
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: a high-speed character set detection library
+ libguess employs discrete-finite automata to deduce the character set of the
+ input buffer. The advantage of this is that all character sets can be checked
+ in parallel, and quickly.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..c343d39
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,51 @@
+This package was initially debianized by Andrew O. Shadoura <bugzilla@tut.by>
+on Fri, 07 Oct 2010 18:08:23. It was downloaded from
+http://www.atheme.org/project/libguess
+
+Upstream Authors:
+
+ Shiro Kawai <shiro@lava.net>
+ Yoshiki Yazawa <yaz@cc.rim.or.jp>
+ William Pitcock <nenolod@atheme.org>
+
+Copyright:
+
+ Copyright (C) 2000-2003 Shiro Kawai
+ Copyright (C) 2005-2010 Yoshiki Yazawa
+ Copyright (C) 2007-2010 William Pitcock
+
+License: BSD
+
+ 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 authors 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 COPYRIGHT HOLDERS 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 COPYRIGHT
+ OWNER 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.
+
+The Debian packaging for this package is:
+
+ Copyright (C) 2010 Andrew O. Shadoura <bugzilla@tut.by>
+
+and is licensed under the same license as the upstream project.
+
diff --git a/debian/libguess-dev.install b/debian/libguess-dev.install
new file mode 100644
index 0000000..bf00211
--- /dev/null
+++ b/debian/libguess-dev.install
@@ -0,0 +1,3 @@
+usr/include/*
+usr/lib/pkgconfig/*
+usr/lib/*.so
diff --git a/debian/libguess-examples.examples b/debian/libguess-examples.examples
new file mode 100644
index 0000000..c404289
--- /dev/null
+++ b/debian/libguess-examples.examples
@@ -0,0 +1 @@
+src/examples/*
diff --git a/debian/libguess1.docs b/debian/libguess1.docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/libguess1.docs
@@ -0,0 +1 @@
+README
diff --git a/debian/libguess1.install b/debian/libguess1.install
new file mode 100644
index 0000000..d0dbfd1
--- /dev/null
+++ b/debian/libguess1.install
@@ -0,0 +1 @@
+usr/lib/lib*.so.*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..568cdca
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+%:
+ dh --with-autotools-dev --with-autoreconf $@
+
+override_dh_auto_configure:
+ test -f configure || sh autogen.sh
+ dh_auto_configure
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..43ab380
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,11 @@
+# Watch control file for uscan
+# You can run the "uscan" command
+# to check for upstream updates and more.
+# See uscan(1) for format
+
+# Compulsory line, this is a version 3 file
+version=3
+
+# Find new files on sourceforge, for devscripts >= 2.9
+http://http://distfiles.atheme.org/libguess-(.*)\.tbz2
+