mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 19:22:45 +01:00
Debianization of supybot
This commit is contained in:
parent
ee6107d016
commit
96568b3d64
6
debian/changelog
vendored
Normal file
6
debian/changelog
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
supybot (0.76.1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* Initial Release.
|
||||||
|
|
||||||
|
-- Jonathan Hseu <vomjom@debian.org> Tue, 3 Feb 2004 21:45:46 -0600
|
||||||
|
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
4
|
14
debian/control
vendored
Normal file
14
debian/control
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
Source: supybot
|
||||||
|
Section: net
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Jonathan Hseu <vomjom@debian.org>
|
||||||
|
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: <insert up to 60 chars description>
|
||||||
|
<insert long description, indented with spaces>
|
25
debian/copyright
vendored
Normal file
25
debian/copyright
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
This package was debianized by Jonathan Hseu <vomjom@debian.org> 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
|
1
debian/dirs
vendored
Normal file
1
debian/dirs
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
usr/bin
|
8
debian/docs
vendored
Normal file
8
debian/docs
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
BUGS
|
||||||
|
DEVS
|
||||||
|
LICENSE
|
||||||
|
README
|
||||||
|
RELNOTES
|
||||||
|
TODO
|
||||||
|
docs/CAPABILITIES
|
||||||
|
docs/GETTING_STARTED
|
87
debian/rules
vendored
Executable file
87
debian/rules
vendored
Executable file
@ -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
|
Loading…
Reference in New Issue
Block a user