Bug#666838: marked as done (libapache2-mod-auth-plain: sourceful transition towards Apache 2.4)
Your message dated Tue, 09 Jul 2013 11:47:57 + with message-id and subject line Bug#666838: fixed in libapache2-mod-auth-plain 2.0.52 has caused the Debian Bug report #666838, regarding libapache2-mod-auth-plain: sourceful transition towards Apache 2.4 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 this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 666838: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=666838 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: libapache2-mod-auth-plain Severity: important User: debian-apa...@lists.debian.org Usertags: apache24transition Dear maintainer, your package libapache2-mod-auth-plain is provding an Apache2 web server module. We're upgrading Apache to the new upstream version 2.4 [1] (tracked as transition bug #661958). This requires all modules to be rebuilt due to ABI changes. Thus, you need to rebuild and reupload your Apache2 module package in a version compatible to our new package available in experimental [2]. Please note it is not enough to simply rebuild the module - it needs some adaptions in the module package metadata. We have written packaging guidelines for our reverse dependencies [3]. Please read it carefully, it should be able to answer most of your questions. Do also look at dh_apache2 (available through the dh-apache2 package) which can simplify packaging Apache2 modules. In short, we want to highlight these changes you need to be aware of. * APIs changed for some cases [3]. Chances are your module needs some adaptions, please get in touch with upstream or us if you need help to port your module to Apache 2.4. * MPM packages are gone. You cannot depend or conflict with a particular MPM anymore. If your module does not work with a particular module, make sure to make it abort with an error if loaded together with an incompatible MPM. You can use our apache2-maintscript-helper [4] to switch to the MPM of your choice in your maintainer scripts. * Do not build-depend on apache2-threaded-dev or apache2-prefork-dev anymore. Just like MPMs are gone, are our MPM -dev packages as well. All modules need to simply build-depend on apache2-dev. * Do NOT depend on apache2, apache2-common or any other real apache2 package in your binary module package. Depend on our virtual apache2-api-20120211 package only! * Do NOT call a2enmod/a2dismod in your maintainer scripts. Use our apache2-maintscript-helper [3] instead. This is required to get a uniform and stateful handling of all Apache2 modules. You can look at our Apache 2.4 packaging hints [5] for hands-on tutorials. Please note: This bug is filed as "important" for now. As the time goes by we plan make it a release critical severity. In the consequences your module either needs an update or is going to be removed from Wheezy. For the time being please tag the bug as pending as soon as you have a package ready. We strongly recommend that at least maintainers of complex module packages make an upload to experimental as well. Of course, uploading simple modules to experimental is welcome, too. [1] https://lists.debian.org/debian-devel-announce/2012/03/msg00013.html [2] http://packages.debian.org/search?keywords=apache2&searchon=sourcenames&exact=1&suite=all§ion=all [3] http://anonscm.debian.org/gitweb/?p=pkg-apache/apache2.git;a=blob;f=debian/PACKAGING;hb=next [4] http://httpd.apache.org/docs/2.4/developer/new_api_2_4.html [5] http://wiki.debian.org/Apache/PackagingFor24 --- End Message --- --- Begin Message --- Source: libapache2-mod-auth-plain Source-Version: 2.0.52 We believe that the bug you reported is fixed in the latest version of libapache2-mod-auth-plain, which is due to be installed in the Debian FTP archive. 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 666...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Colin Watson (supplier of updated libapache2-mod-auth-plain 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 ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 08 Jul 2013 18:36:49 +0100 Source: libapache2-mod-auth-plain Binary: libapache2-mod-auth-plain Architecture: source i386 Version: 2.0.52 Distribution: unstable Urgency: low Maintainer: Debian QA Group Changed-By: Co
Bug#619408: marked as done (apache2.2-common: mod_authnz_ldap require directives unrecognized if loaded after mod_authnz_default)
Your message dated Tue, 09 Jul 2013 11:47:57 + with message-id and subject line Bug#619408: fixed in libapache2-mod-auth-plain 2.0.52 has caused the Debian Bug report #619408, regarding apache2.2-common: mod_authnz_ldap require directives unrecognized if loaded after mod_authnz_default 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 this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 619408: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=619408 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: apache2.2-common Version: 2.2.16-6 Severity: normal In the default configuration mod_authnz_ldap.load is symlinked from mods-available to mods-enabled but that orders it (lexicographically) after the symlink to load mod_authnz_default. This causes a number of ldap specific arguments to the Require definition to be unrecognized and logged as follows: [Wed Mar 23 11:04:48 2011] [error] [client 10.10.10.10] access to /auth failed, reason: unknown require directive:"ldap-user bpktest bpkroth" [Wed Mar 23 11:04:48 2011] [error] [client 10.10.10.10] access to /auth failed, reason: unknown require directive:"ldap-group cn=bpk-test,ou=Group,o=ORG" [Wed Mar 23 11:04:48 2011] [error] [client 10.10.10.10] access to /auth failed, reason: unknown require directive:"ldap-attribute myacl=unix" [Wed Mar 23 11:04:48 2011] [error] [client 10.10.10.10] access to /auth failed, reason: user bpktest not allowed access The relevant tidbits from my .htaccess file are as follows: # Allow authenticated access AuthType Basic AuthName "Restricted Access" AuthBasicProvider ldap AuthzLDAPAuthoritative on AuthLDAPURL "ldap://ldapauth.mydomain.com:389/ou=People,o=ORG?uid"; STARTTLS AuthLDAPRemoteUserIsDN Off AuthLDAPGroupAttribute memberUid AuthLDAPGroupAttributeIsDN off Require ldap-user bpktest bpkroth Require ldap-group cn=bpk-test,ou=Group,o=ORG Require ldap-attribute myacl=unix Adding another symlink to mod_authnz_ldap.load in mods-enabled as 01-mod_authnz_ldap.load corrects this behavior, albeit with a warning message on startup (probably avoidable with an if statement around the load). Let me know if you need anything else. Thanks, Brian -- Package-specific info: List of /etc/apache2/mods-enabled/*.load: 01-authnz_ldap alias auth_basic auth_kerb auth_pam auth_plain auth_sys_group authn_file authnz_ldap authz_default authz_groupfile authz_host authz_user autoindex cgi deflate dir env include info ldap mime mod-security negotiation php5 reqtimeout rewrite rpaf setenvif ssl status unique_id vhost_alias wsgi List of enabled php5 extensions: adodb apc curl ffmpeg gd geoip gmp idn imagick interbase lasso ldap mcrypt memcache ming mssql mysql mysqli odbc pam_auth pdo pdo_dblib pdo_mysql pdo_odbc pdo_pgsql pdo_sqlite pgsql ps pspell radius recode redland sasl snmp sqlite sqlite3 ssh2 suhosin tidy uuid xmlrpc xsl -- System Information: Debian Release: 6.0 APT prefers stable APT policy: (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages apache2.2-common depends on: ii apache2-utils 2.2.16-6 utility programs for webservers ii apache2.2-bin 2.2.16-6 Apache HTTP Server common binary f ii libmagic1 5.04-5 File type determination library us ii lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip ii mime-support3.48-1 MIME files 'mime.types' & 'mailcap ii perl5.10.1-17Larry Wall's Practical Extraction ii procps 1:3.2.8-9/proc file system utilities Versions of packages apache2.2-common recommends: pn ssl-cert (no description available) Versions of packages apache2.2-common suggests: pn apache2-doc(no description available) pn apache2-suexec | apache2-su(no description available) ii lynx-cur [www-browser] 2.8.8dev.5-1 Text-mode WWW Browser with NLS sup Versions of packages apache2.2-common is related to: pn apache2-mpm-event (no description available) pn apache2-mpm-itk(no description available) ii apache2-mpm-prefork 2.2.16-6 Apache HTTP Server - traditional n pn apache2-mpm-worker (no description available) -- Configuration Files: /etc/apache2/mods-available/authnz_ldap.load changed: # NOTE: This must be loaded before mod_authnz_default to avoid messages like this: # un
Processing of libapache2-mod-auth-plain_2.0.52_i386.changes
libapache2-mod-auth-plain_2.0.52_i386.changes uploaded successfully to localhost along with the files: libapache2-mod-auth-plain_2.0.52.dsc libapache2-mod-auth-plain_2.0.52.tar.gz libapache2-mod-auth-plain_2.0.52_i386.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1uwwli-0005ef...@franck.debian.org
libapache2-mod-auth-plain_2.0.52_i386.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 08 Jul 2013 18:36:49 +0100 Source: libapache2-mod-auth-plain Binary: libapache2-mod-auth-plain Architecture: source i386 Version: 2.0.52 Distribution: unstable Urgency: low Maintainer: Debian QA Group Changed-By: Colin Watson Description: libapache2-mod-auth-plain - Module for Apache2 which provides plaintext authentication Closes: 619408 666838 Changes: libapache2-mod-auth-plain (2.0.52) unstable; urgency=low . * QA upload. * Port to the Apache 2.2 authentication provider interface (closes: #619408). * Port to Apache 2.4 (closes: #666838). Checksums-Sha1: 5137951c5b1f1e74f0ca1f79eec677b304180de9 1584 libapache2-mod-auth-plain_2.0.52.dsc 8d50efb9e20121dd1a73ce9b1edc7faf9ce281c6 9574 libapache2-mod-auth-plain_2.0.52.tar.gz 9498b52250f38fdabf838f93c1f8af99095e3832 9428 libapache2-mod-auth-plain_2.0.52_i386.deb Checksums-Sha256: fb0dc9631f4e0115a0c8e3159dbafdb5bc687ba8f52e49b8348ff5345bb528f9 1584 libapache2-mod-auth-plain_2.0.52.dsc 9a76d98e56e013bb5fcce9566b1702adbae6c4dd8acb6551a6da8ad2c14558a6 9574 libapache2-mod-auth-plain_2.0.52.tar.gz 904641a865dc8d42a08057c17241c078233b0c91cebb10d520a7e92881cb79e2 9428 libapache2-mod-auth-plain_2.0.52_i386.deb Files: 586786a7226ccdfde547165ee60c6085 1584 web extra libapache2-mod-auth-plain_2.0.52.dsc 4661caf1f25b86a099d4b0edcd783a45 9574 web extra libapache2-mod-auth-plain_2.0.52.tar.gz 0f1b64f9c6410c3d40787af335a7f73d 9428 web extra libapache2-mod-auth-plain_2.0.52_i386.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Colin Watson -- Debian developer iQIVAwUBUdv2mzk1h9l9hlALAQg+yg/9G1CyiSXDMJw/t5FbdQJ4GwCGDcK1oWAS MMPS+B4oczxQe+xXJ5HLdrbJK1shcErcrYjd0WzH/wmRXnbxD5MHo1aPB+tHqtkj mqT4+N/vn09fCTUI6vpdN8omAkQwcd91zXJPI7XDlUXBoOvSQ+LIuJDsL6npcOhz vFkC+HLspHz6xt0KRIroZj2FW852S4+mc5swLi/BG+QvxqjAk/thGE9IrdaOZ0u5 AzhhkQHphklLHTBtN7CgRK/55X43C+vATXC0to2JoYZ2m//3m9qT6CEPV4xpGBLD EBkb/Sxm2iR9NS6K3fgqYfOwE/zqaBm7nVW7oePYgiBfHMER7f34IyMfelxW1L9I AyBKAFBpCG8HsWi7sefJc9V5OXkDJNvBXvLSfwC0CR3Upcik5pmN7GjkmZDmS5yC HlY0vGFuImsFWxl3c5Sm3YAmUSiPD88Fm0c5x5Uh2Bjowm/8dSwfQuKtqNH9tx/N 4UX+7KAMo5SxY1lIqssjE/e9Mwl62sj0/4I/crLBea+myK8KUVFEU78SB2eijc/o FyGfJvV9bsFidkeN32rqUQv21gpB4MwXn3Nkv0W3QWxPQbqQqgliKqBcM7Mmud+n f1CletV/rVaxIkm8QiLxhJZBkHXywkztxFYi2opdrR/ef6z7nNrH0rZHIX7sK/Xz 68G+UC8AsGk= =nsjy -END PGP SIGNATURE- Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1uwwoj-0005qa...@franck.debian.org
Bug#295965: marked as done (no fish on my Gnome desktop)
Your message dated Wed, 10 Jul 2013 00:36:13 +0300 with message-id <20130709213613.ga22...@ieval.ro> and subject line Closing bug has caused the Debian Bug report #295965, regarding no fish on my Gnome desktop 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 this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 295965: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=295965 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: xfishtank Version: 2.2-23 Hi, I run Debian Sarge and just wanted to try xfishtank. The screen flashes but no fish appears. I run Gnome with Metacity. I tried different wallpapers (no wallpaper, a transparent one...) Nothing works. Launching xfishtank in a terminal does not show any error. Maybe it is a similar bug than the #283390 and #224077 xsnow bugs. Note that xpenguins 2.1.1 works fine. n. --- End Message --- --- Begin Message --- As this bug is not caused by fishtank, and there has been no activity for over 5 years, I'm closing this bug now as INVALID. -- Marius Gavrilescu (love) Love is an irresistible desire to be irresistibly desired --Robert Frost signature.asc Description: Digital signature --- End Message ---
Processed: Bug forwarded
Processing control commands: > forwarded -1 https://github.com/jim-rees/xfishtank/issues/4 Bug #645128 [xfishtank] xfishtank does not honor "-p file" command line parameter Set Bug forwarded-to-address to 'https://github.com/jim-rees/xfishtank/issues/4'. > severity -1 wishlist Bug #645128 [xfishtank] xfishtank does not honor "-p file" command line parameter Severity set to 'wishlist' from 'normal' -- 645128: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645128 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.u645128.137340774415280.transcr...@bugs.debian.org