- Timestamp:
- 2008-03-21T00:27:24Z (17 years ago)
- Branches:
- master
- Children:
- a83442a
- Parents:
- 6612cc9
- Location:
- debian
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
debian/README.Debian
r6612cc9 r379c08a 1 *** NEWS (Version 1. 1and later) ***1 *** NEWS (Version 1.2 and later) *** 2 2 3 Starting from version 1. 1, BitlBee has a forking daemon mode. The Debian3 Starting from version 1.2, BitlBee has a forking daemon mode. The Debian 4 4 package now uses this mode by default, instead of inetd mode. If you don't 5 5 want to use this, you can disable the init scripts (best way to do this is -
debian/changelog
r6612cc9 r379c08a 1 bitlbee (1.1.1dev-0pre) unstable; urgency=low 2 1 bitlbee (1.2-1) unstable; urgency=low 2 3 * New upstream release. (Closes: #325017, #386914, #437515) 4 * With hopefully completely sane charset handling (Closes: #296145) 3 5 * Switched to the new forking daemon mode. Added /etc/default/bitlbee 4 6 file, an init script. People who want to stick with inetd can do so, see 5 7 the defaults file. 8 (Closes: #460741, #466171, #294585, #345038, #306452, #392682) 6 9 * Got rid of debconf Woody compatibility stuff. 7 10 * No more MPL code in BitlBee, thanks to the Jabber module rewrite! 8 9 -- Wilmer van der Gaast <wilmer@gaast.net> Fri, 06 Jul 2007 09:09:36 +0100 11 * Added Italian translation, sorry for taking so long! (Closes: #448238) 12 * Added libevent dependency (more reliable event handling). 13 * Removed GLib 1.x dependency because BitlBee really requires GLib >=2.4. 14 15 -- Wilmer van der Gaast <wilmer@gaast.net> Tue, 18 Mar 2008 23:44:19 +0000 16 17 bitlbee (1.0.4-2) unstable; urgency=low 18 19 * Removed $DEB_BUILD_OPTIONS because apparently buildds fill it with crap. 20 (Closes: #458717) 21 22 -- Wilmer van der Gaast <wilmer@gaast.net> Mon, 11 Feb 2008 19:15:33 +0000 23 24 bitlbee (1.0.4-1) unstable; urgency=low 25 26 * New upstream release. 27 * Changed libnss-dev dependency. (Closes: #370442) 28 * Added build-indep rule to debian/rules. (Closes: #395673) 29 30 -- Wilmer van der Gaast <wilmer@gaast.net> Wed, 29 Aug 2007 20:24:28 +0100 10 31 11 32 bitlbee (1.0.3-1.3) unstable; urgency=low -
debian/control
r6612cc9 r379c08a 4 4 Maintainer: Wilmer van der Gaast <wilmer@gaast.net> 5 5 Standards-Version: 3.5.9 6 Build-Depends: libglib2.0-dev | libglib-dev, libgnutls-dev | libnss-dev (>= 1.6), debconf-2.0, po-debconf6 Build-Depends: libglib2.0-dev (>= 2.4), libevent-dev, libgnutls-dev | libnss-dev (>= 1.6), debconf-2.0, po-debconf 7 7 8 8 Package: bitlbee -
debian/postinst
r6612cc9 r379c08a 16 16 [ -r /etc/default/bitlbee ] && source /etc/default/bitlbee 17 17 18 if [ "$BITLBEE_DISABLED" = "0" ] ; then18 if [ "$BITLBEE_DISABLED" = "0" ] && expr "$2" : '0\..*' > /dev/null || expr "$2" : '1\.0\..*' > /dev/null; then 19 19 ## In case it's still there (if we're upgrading right now) 20 20 update-inetd --remove '.*/usr/sbin/bitlbee' 21 if grep -q /usr/sbin/bitlbee /etc/inetd.conf 2> /dev/null; then 22 # Thanks for breaking update-inetd! (bugs.debian.org/311111) 23 # I hope that it works at least with xinetd, because this 24 # emergency hack doesn't: 25 perl -pi -e 's:^[^#].*/usr/sbin/bitlbee$:## Now using daemon mode\: # $&:' /etc/inetd.conf 26 killall -HUP inetd 27 fi 21 28 fi 22 29 -
debian/postrm
r6612cc9 r379c08a 9 9 10 10 update-rc.d bitlbee remove > /dev/null 2>&1 || true 11 deluser --remove-home bitlbee || true 11 deluser --system --remove-home bitlbee || true 12 rm -f /etc/default/bitlbee -
debian/rules
r6612cc9 r379c08a 3 3 DEBUG ?= 0 4 4 5 ifdef BITLBEE_VERSION 6 BITLBEE_FORCE_VERSION=1 7 else 5 8 # Want to use the full package version number instead of just the release. 6 9 BITLBEE_VERSION ?= "$(shell dpkg-parsechangelog | grep ^Version: | awk '{print $$2}')" 7 10 export BITLBEE_VERSION 8 11 endif 9 12 10 13 build-arch: build-arch-stamp 11 14 build-arch-stamp: 12 15 if [ ! -d debian ]; then exit 1; fi 13 ./configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee $(DEB_BUILD_OPTIONS)16 ./configure --debug=$(DEBUG) --prefix=/usr --etcdir=/etc/bitlbee --events=libevent $(DEB_BUILD_OPTIONS) 14 17 $(MAKE) 15 18 # $(MAKE) -C doc/ all … … 66 69 find usr -type f -exec md5sum {} \; > DEBIAN/md5sums 67 70 dpkg-shlibdeps -Tdebian/bitlbee.substvars -dDepends debian/bitlbee/usr/sbin/bitlbee 68 ifdef BITLBEE_ VERSION71 ifdef BITLBEE_FORCE_VERSION 69 72 dpkg-gencontrol -ldebian/changelog -isp -pbitlbee -Tdebian/bitlbee.substvars -Pdebian/bitlbee -v1:$(BITLBEE_VERSION)-0 -V'debconf-depends=debconf (>= 1.2.0) | debconf-2.0' 70 73 else
Note: See TracChangeset
for help on using the changeset viewer.