Your message dated Mon, 16 Jan 2006 23:47:04 -0800 with message-id <[EMAIL PROTECTED]> and subject line Bug#347840: fixed in albatross 1.33-2 has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 12 Jan 2006 23:06:53 +0000 >From [EMAIL PROTECTED] Thu Jan 12 15:06:53 2006 Return-path: <[EMAIL PROTECTED]> Received: from 14.5.233.220.exetel.com.au ([220.233.5.14] helo=enervated.wedontsleep.org) by spohr.debian.org with esmtp (Exim 4.50) id 1ExBWu-0003TO-Mh for [EMAIL PROTECTED]; Thu, 12 Jan 2006 15:06:53 -0800 Received: from broken.inside.wedontsleep.org ([192.168.7.2] helo=localhost.localdomain) by enervated.wedontsleep.org with esmtp (Exim 4.54) id 1ExBWj-0002Gz-FP for [EMAIL PROTECTED]; Fri, 13 Jan 2006 10:06:45 +1100 Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by localhost.localdomain (Postfix) with ESMTP id 376DF13060C for <[EMAIL PROTECTED]>; Fri, 13 Jan 2006 10:06:21 +1100 (EST) Date: Fri, 13 Jan 2006 10:06:20 +1100 Message-ID: <[EMAIL PROTECTED]> From: Steve Kowalik <[EMAIL PROTECTED]> To: Debian Bug Tracking System <[EMAIL PROTECTED]> X-Debbugs-CC: Steve Kowalik <[EMAIL PROTECTED]> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) XEmacs/21.4 (Social Property) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/mixed; boundary="Multipart_Fri_Jan_13_10:06:20_2006-1" X-SA-Exim-Connect-IP: 192.168.7.2 X-SA-Exim-Mail-From: [EMAIL PROTECTED] Subject: albatross: Albatross FTBFS when not root X-SA-Exim-Version: 4.2 (built Thu, 03 Mar 2005 10:27:35 +0000) X-SA-Exim-Scanned: Yes (on enervated.wedontsleep.org) Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-11.0 required=4.0 tests=BAYES_00,HAS_PACKAGE, X_DEBBUGS_CC autolearn=ham version=2.60-bugs.debian.org_2005_01_02 --Multipart_Fri_Jan_13_10:06:20_2006-1 Content-Type: text/plain; charset=US-ASCII Package: albatross Severity: serious Tags: patch Hi, This package fails to build from source when your uid isn't root. It fails since starting the session server tries to write a file underneath /var/log. Additionally, python-albatross-common misses a dependancy on adduser, and python2.{3,4}-albtross both include ${shlibs:Depends} and ${misc:Depends} which are entirely unneeded. Attached is a patch that corrects the issue. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15-1-k7-smp Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) -- Steve "I'm a doctor, not a doorstop" - EMH, USS Enterprise --Multipart_Fri_Jan_13_10:06:20_2006-1 Content-Type: text/plain; type=patch; charset=US-ASCII Content-Disposition: attachment; filename="albatross_ftbfs.patch" Content-Transfer-Encoding: 7bit diff -u albatross-1.33/debian/control albatross-1.33/debian/control --- albatross-1.33/debian/control +++ albatross-1.33/debian/control @@ -25,7 +25,7 @@ Package: python-albatross-common Architecture: all -Depends: python2.4-albatross | python2.3-albatross +Depends: python2.4-albatross | python2.3-albatross, adduser Suggests: python Description: Toolkit for Stateful Web Applications (common files) Albatross is a small and flexible Python toolkit for developing highly @@ -35,7 +35,7 @@ Package: python2.3-albatross Architecture: all -Depends: python-albatross-common, ${shlibs:Depends}, ${misc:Depends}, python2.3 +Depends: python-albatross-common, python2.3 Description: Toolkit for Stateful Web Applications (Python 2.3) Albatross is a small and flexible Python toolkit for developing highly stateful web applications. It includes, among other things: @@ -53,7 +53,7 @@ Package: python2.4-albatross Architecture: all -Depends: python-albatross-common, ${shlibs:Depends}, ${misc:Depends}, python2.4 (>= 2.4.1) +Depends: python-albatross-common, python2.4 (>= 2.4.1) Description: Toolkit for Stateful Web Applications (Python 2.4) Albatross is a small and flexible Python toolkit for developing highly stateful web applications. It includes, among other things: diff -u albatross-1.33/debian/rules albatross-1.33/debian/rules --- albatross-1.33/debian/rules +++ albatross-1.33/debian/rules @@ -13,15 +13,17 @@ # The versions of python currently supported PYVERS=$(subst -dev,,$(subst python,,$(filter python%-dev,$(shell sed -n '/^Build-Depends/s/,//gp' debian/control)))) +export MY_DIR=$(shell mktemp -d) + # Targets for running unit tests test-build: test-build-stamp test-build-stamp: # run the session server - PYTHONPATH=`pwd` session-server/al-session-daemon start + PYTHONPATH=`pwd` session-server/al-session-daemon -k $$MY_DIR/sess.pid -l $$MY_DIR/log start # run the tests make -C test all # stop the session server - PYTHONPATH=`pwd` session-server/al-session-daemon stop + PYTHONPATH=`pwd` session-server/al-session-daemon -k $$MY_DIR/sess.pid -l $$MY_DIR/log stop touch $@ # Targets for building with a certain python version --Multipart_Fri_Jan_13_10:06:20_2006-1-- --------------------------------------- Received: (at 347840-close) by bugs.debian.org; 17 Jan 2006 07:50:28 +0000 >From [EMAIL PROTECTED] Mon Jan 16 23:50:28 2006 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 4.50) id 1EylYW-0002Og-Nv; Mon, 16 Jan 2006 23:47:04 -0800 From: Fabian Fagerholm <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.65 $ Subject: Bug#347840: fixed in albatross 1.33-2 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Mon, 16 Jan 2006 23:47:04 -0800 X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 Source: albatross Source-Version: 1.33-2 We believe that the bug you reported is fixed in the latest version of albatross, which is due to be installed in the Debian FTP archive: albatross_1.33-2.diff.gz to pool/main/a/albatross/albatross_1.33-2.diff.gz albatross_1.33-2.dsc to pool/main/a/albatross/albatross_1.33-2.dsc python-albatross-common_1.33-2_all.deb to pool/main/a/albatross/python-albatross-common_1.33-2_all.deb python-albatross-doc_1.33-2_all.deb to pool/main/a/albatross/python-albatross-doc_1.33-2_all.deb python-albatross_1.33-2_all.deb to pool/main/a/albatross/python-albatross_1.33-2_all.deb python2.3-albatross_1.33-2_all.deb to pool/main/a/albatross/python2.3-albatross_1.33-2_all.deb python2.4-albatross_1.33-2_all.deb to pool/main/a/albatross/python2.4-albatross_1.33-2_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Fabian Fagerholm <[EMAIL PROTECTED]> (supplier of updated albatross package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Fri, 13 Jan 2006 09:08:06 +0200 Source: albatross Binary: python-albatross python2.3-albatross python-albatross-common python-albatross-doc python2.4-albatross Architecture: source all Version: 1.33-2 Distribution: unstable Urgency: low Maintainer: Fabian Fagerholm <[EMAIL PROTECTED]> Changed-By: Fabian Fagerholm <[EMAIL PROTECTED]> Description: python-albatross - Toolkit for Stateful Web Applications (default) python-albatross-common - Toolkit for Stateful Web Applications (common files) python-albatross-doc - documentation for the Albatross Web Toolkit python2.3-albatross - Toolkit for Stateful Web Applications (Python 2.3) python2.4-albatross - Toolkit for Stateful Web Applications (Python 2.4) Closes: 347840 Changes: albatross (1.33-2) unstable; urgency=low . * debian/control: add dependency on adduser for python-albatross-common * debian/control: drop unneccessary ${shlibs:Depends} and ${misc:Depends} * debian/rules: FTBFS - ensure the session server can start as non-root when running the test suite at build time by specifying explicit locations for pidfile and log (Closes: #347840) * Thanks to Steve Kowalik for his patch. Files: e780a69a5f9bdbf94a57b6803032d271 821 web optional albatross_1.33-2.dsc 6fde24157253b76980f22478a2f20d54 9188 web optional albatross_1.33-2.diff.gz 121da1e5e20b26359d8b8c5f6766571b 39376 web optional python-albatross_1.33-2_all.deb 7744c334ea100adf02dbfc76298fea0b 46532 web optional python-albatross-common_1.33-2_all.deb 98800bd8b606f990d9ce497b6a5b6021 71626 web optional python2.3-albatross_1.33-2_all.deb 1a513a5f72fa6505bab03b16a2f33a90 71638 web optional python2.4-albatross_1.33-2_all.deb d68da89bc57872ad50c2af6d9a03bd61 633348 doc optional python-albatross-doc_1.33-2_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDzJ3i76VUNpZBmeIRAv5lAJ95ZVEBnXCm5gaN5CKK5t5Op5EQfwCdGHG4 a+0Gv4K3vkPdR/zPN7ox8mA= =2pAk -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]