diff options
| -rwxr-xr-x | debian/bitlbee.init | 10 | ||||
| -rw-r--r-- | debian/changelog | 50 | ||||
| -rwxr-xr-x | debian/config | 20 | ||||
| -rw-r--r-- | debian/control | 2 | ||||
| -rw-r--r-- | debian/patches/bitlbee.conf.diff | 19 | ||||
| -rw-r--r-- | debian/po/POTFILES.in | 2 | ||||
| -rw-r--r-- | debian/po/ru.po | 47 | ||||
| -rwxr-xr-x | debian/postinst | 9 | ||||
| -rwxr-xr-x | debian/prerm | 2 | 
9 files changed, 129 insertions, 32 deletions
| diff --git a/debian/bitlbee.init b/debian/bitlbee.init index 1ab1bc43..4c224ffc 100755 --- a/debian/bitlbee.init +++ b/debian/bitlbee.init @@ -40,15 +40,7 @@ d_start() {  	touch /var/run/bitlbee.pid  	chown bitlbee: /var/run/bitlbee.pid -	# Clean up after the bug between 1.2-5 and 1.2.1-2 where BitlBee ran -	# as root. (#494656 and #495877) Fixing this in the postinst script -	# is not enough since the user will restart his BitlBee after up- -	# grading the package, and the BitlBee running as root will then -	# save its settings, re-setting ownership of the file to root. -	# TODO: Remove this after a few revisions. -	find /var/lib/bitlbee -uid 0 -name '*.xml' -exec chown bitlbee: {} \; - -	start-stop-daemon --start --quiet \ +	start-stop-daemon --start --quiet --pidfile $PIDFILE \  		--exec $DAEMON -- -p $BITLBEE_PORT -P $PIDFILE $BITLBEE_OPTS  } diff --git a/debian/changelog b/debian/changelog index a11a67b8..f969b410 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,53 @@ +bitlbee (1.2.5-1) unstable; urgency=low + +  * New upstream version. +  * Fixed issues with server-side MSN nickname corruption. (Closes: #538756) +  * Debconf translation fixes/additions. (Closes: #541754, #563504) + + -- Wilmer van der Gaast <wilmer@gaast.net>  Wed, 17 Mar 2010 14:59:27 +0000 + +bitlbee (1.2.4-2) unstable; urgency=low + +  * Merging in some changes from bzr-head: +  * Use libresolv.so where possible. (Closes: #551775) +  * Some include file changes that make the bitlbee-dev package useful again. + + -- Wilmer van der Gaast <wilmer@gaast.net>  Thu, 19 Nov 2009 23:02:43 +0000 + +bitlbee (1.2.4-1) unstable; urgency=low + +  * New upstream version. +  * Fixed issues with Yahoo! (Closes: #536178) + + -- Wilmer van der Gaast <wilmer@gaast.net>  Sat, 17 Oct 2009 18:12:45 +0100 + +bitlbee (1.2.3-2) unstable; urgency=low + +  * Fixed bitblee typo in prerm (introduced by NMU 1.2.1-1.1). +    (Closes: #531287) +  * Fixed bitlbee.deb dep in bitlbee-dev to deal with binary NMUs. +    (Closes: #531219) +  * Fixed free port detection code in debian/config which was a bit limited +    and also buggy. +  * Removing code that edits bitlbee.conf from postinst (and chown code in +    the init script), it's not really necessary anymore; bitlbee may only +    still run as root if the admin doesn't read conffile diffs. +    (Closes: #514572) +  * No longer overwriting port number info in /etc/default/bitlbee with +    what's in debconf. (Closes: #514148) +  * Added notes about the above two changes to bitlbee.conf. + + -- Wilmer van der Gaast <wilmer@gaast.net>  Sun, 07 Jun 2009 21:17:39 +0100 + +bitlbee (1.2.3-1) unstable; urgency=critical + +  * New upstream version. +  * Fixes another account hijacking issue. (Closes: #498159) +  * Restored --pidfile argument to start-stop-daemon, otherwise the init +    script fails to restart BitlBee when users are connected. + + -- Wilmer van der Gaast <wilmer@gaast.net>  Sun, 07 Sep 2008 18:53:04 +0100 +  bitlbee (1.2.2-1) unstable; urgency=critical    * New upstream version. diff --git a/debian/config b/debian/config index 3a04813d..9bb78237 100755 --- a/debian/config +++ b/debian/config @@ -1,17 +1,23 @@  #!/bin/sh -e  . /usr/share/debconf/confmodule +[ -f /etc/default/bitlbee ] && . /etc/default/bitlbee  db_title BitlBee -db_get bitlbee/serveport -if [ "$RET" = "stillhavetoask" ]; then -	if netstat -ltn | grep ':6667' 2> /dev/null > /dev/null; then -		port=6668; -	else -		port=6667; +if [ -n "$BITLBEE_PORT" ]; then +	db_set bitlbee/serveport "$BITLBEE_PORT" +else +	db_get bitlbee/serveport +	if [ "$RET" = "stillhavetoask" ]; then +		listens=$(netstat -ltn | awk '{print $4}') +		for port in 6667 6666 6668 6669; do +			if [ $(expr "$listens " : ".*:$port\s") = "0" ]; then +				break +			fi +		done +		db_set bitlbee/serveport $port;  	fi -	db_set bitlbee/serveport $port;  fi  if db_input medium bitlbee/serveport; then diff --git a/debian/control b/debian/control index e6302c13..86488c8a 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Description: An IRC to other chat networks gateway  Package: bitlbee-dev  Architecture: all -Depends: bitlbee (= ${binary:Version}) +Depends: bitlbee (>= ${source:Version}), bitlbee (<< ${source:Version}.1~)  Description: An IRC to other chat networks gateway   This program can be used as an IRC server which forwards everything you   say to people on other chat networks: Jabber, ICQ, AIM, MSN and Yahoo. diff --git a/debian/patches/bitlbee.conf.diff b/debian/patches/bitlbee.conf.diff index b80bcb4c..c98fa546 100644 --- a/debian/patches/bitlbee.conf.diff +++ b/debian/patches/bitlbee.conf.diff @@ -1,13 +1,22 @@ -=== modified file 'bitlbee.conf' ---- debian/bitlbee/etc/bitlbee/bitlbee.conf	2008-08-26 22:33:54 +0000 -+++ debian/bitlbee/etc/bitlbee/bitlbee.conf	2008-08-27 23:18:13 +0000 -@@ -23,7 +23,7 @@ +--- debian/bitlbee/etc/bitlbee/bitlbee.conf	2009-06-01 00:20:24.000000000 +0100 ++++ debian/bitlbee/etc/bitlbee/bitlbee.conf	2009-06-07 21:16:19.000000000 +0100 +@@ -23,13 +23,18 @@   ## If BitlBee is started by root as a daemon, it can drop root privileges,   ## and change to the specified user.   ##  -# User = bitlbee ++## DEBIAN NOTE: Without this, BitlBee will run as root! ++##  +User = bitlbee   ## DaemonPort/DaemonInterface:   ## - + ## For daemon mode, you can specify on what interface and port the daemon + ## should be listening for connections. + ## ++## DEBIAN NOTE: The init script passes the -p flag to use the port number ++## set using debconf, this overrides the DaemonPort setting here. ++## + # DaemonInterface = 0.0.0.0 + # DaemonPort = 6667 +  diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in index f17ddcfe..cef83a34 100644 --- a/debian/po/POTFILES.in +++ b/debian/po/POTFILES.in @@ -1 +1 @@ -[type: gettext/rfc822deb] bitlbee.templates.master +[type: gettext/rfc822deb] templates diff --git a/debian/po/ru.po b/debian/po/ru.po new file mode 100644 index 00000000..4e448133 --- /dev/null +++ b/debian/po/ru.po @@ -0,0 +1,47 @@ +# translation of ru.po to Russian +# +#    Translators, if you are not familiar with the PO format, gettext +#    documentation is worth reading, especially sections dedicated to +#    this format, e.g. by running: +#         info -n '(gettext)PO Files' +#         info -n '(gettext)Header Entry' +#    Some information specific to po-debconf are available at +#            /usr/share/doc/po-debconf/README-trans +#         or http://www.debian.org/intl/l10n/po-debconf/README-trans# +#    Developers do not need to manually edit POT or PO files. +# +# Yuri Kozlov <yuray@komyakino.ru>, 2009. +msgid "" +msgstr "" +"Project-Id-Version: bitlbee 1.2.3-2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-09-25 18:12+0200\n" +"PO-Revision-Date: 2009-08-05 20:43+0400\n" +"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" +"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: string +#. Description +#: ../bitlbee.templates.master:4 +msgid "On what TCP port should BitlBee listen for connections?" +msgstr "Номер порта TCP, на котором BitlBee должен ожидать подключений:" + +#. Type: string +#. Description +#: ../bitlbee.templates.master:4 +msgid "" +"BitlBee normally listens on the regular IRC port, 6667. This might not be a " +"very good idea when you're running a real IRC daemon as well. 6668 might be " +"a good alternative. Leaving this value blank means that BitlBee will not be " +"run automatically." +msgstr "" +"Обычно, BitlBee прослушивает штатный порт IRC, 6667. Это может быть " +"не лучшим решением, если у вас также запущена служба IRC. Хорошей " +"альтернативой является номер 6668. Если оставить поле пустым, то " +"BitlBee не будет запускаться автоматически." + diff --git a/debian/postinst b/debian/postinst index db324b65..db541f6c 100755 --- a/debian/postinst +++ b/debian/postinst @@ -32,7 +32,7 @@ fi  cat<<EOF>/etc/default/bitlbee  ## /etc/default/bitlbee: Auto-generated/updated script.  ## -## Don't edit this line, use dpkg-reconfigure bitlbee +## If running in (fork)daemon mode, listen on this TCP port.  BITLBEE_PORT="$PORT"  ## Use single-process or forking daemon mode? Can't be changed from debconf, @@ -63,13 +63,6 @@ if [ -e /usr/share/bitlbee/help.upgrading ]; then  	fi  fi -if ! grep -qi '^User *= *' /etc/bitlbee/bitlbee.conf; then -	echo 'Updating configuration file, enabling User-setting...' -	if ! sed -i -e 's/# *User *= *.*/User = bitlbee/i' /etc/bitlbee/bitlbee.conf; then -		echo 'Failed! BitlBee may run as root now, please check your configs.' -	fi -fi -  if [ -n "$2" -a "$BITLBEE_UPGRADE_DONT_RESTART" != "1" ]; then  	if which invoke-rc.d >/dev/null 2>&1; then  		invoke-rc.d bitlbee restart diff --git a/debian/prerm b/debian/prerm index 8426ab3a..687c2cc1 100755 --- a/debian/prerm +++ b/debian/prerm @@ -10,7 +10,7 @@ if [ "$1" = "upgrade" ]; then  	fi  else  	if which invoke-rc.d >/dev/null 2>&1; then -		invoke-rc.d bitblee stop || exit 0 +		invoke-rc.d bitlbee stop || exit 0  	else  		/etc/init.d/bitlbee stop || exit 0  	fi | 
