diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 000000000..cd1c61d38 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +supybot (0.76.1-1) unstable; urgency=low + + * Initial Release. + + -- Jonathan Hseu Tue, 3 Feb 2004 21:45:46 -0600 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 000000000..b8626c4cf --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 000000000..9ee16f9f7 --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: supybot +Section: net +Priority: optional +Maintainer: Jonathan Hseu +Build-Depends: debhelper (>= 4.0.0), python (>= 2.3) +Standards-Version: 3.6.0 + +Package: supybot +Architecture: any +Depends: python (>= 2.3) +Recommends: python-sqlite +Suggests: python-twisted +Description: + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 000000000..ec88eb242 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Jonathan Hseu on +Tue, 3 Feb 2004 21:45:46 -0600. + +It was downloaded from http://supybot.sf.net/ + +Upstream Authors: + +/usr/share/doc/supybot/DEVS includes the names and descriptions of the +developers. + +Copyright: + +A BSD-style license which you can find in: +/usr/share/doc/supybot/LICENSE + +Files located in /usr/lib/python2.3/site-packages/supybot/others/ have their +own respective licenses, which are either commented at the top of the file, or +are held in the __license__ variable. + +The licenses in that directory are either: +BSD-style, GPL, or the Python License +The first two can be found in /usr/share/common-licenses/ + +The Python License can be found in: +/usr/share/doc/python/copyright diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 000000000..e77248175 --- /dev/null +++ b/debian/dirs @@ -0,0 +1 @@ +usr/bin diff --git a/debian/docs b/debian/docs new file mode 100644 index 000000000..bc6641cc3 --- /dev/null +++ b/debian/docs @@ -0,0 +1,8 @@ +BUGS +DEVS +LICENSE +README +RELNOTES +TODO +docs/CAPABILITIES +docs/GETTING_STARTED diff --git a/debian/rules b/debian/rules new file mode 100755 index 000000000..0791cb6b1 --- /dev/null +++ b/debian/rules @@ -0,0 +1,87 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# GNU copyright 1997 to 1999 by Joey Hess. +# Modified for supybot by Jonathan Hseu + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + +CFLAGS = -Wall -g + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + python setup.py clean --all + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/supybot. + python setup.py install --prefix=$(CURDIR)/debian/supybot/usr + + +# 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_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# 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 configure