Bug#186029: Grouping questions in netcfg -- but which ones?
Quoting Matthew Palmer (mpal...@debian.org): > tag 186029 +moreinfo > thanks > > Hi, > > I'm triaging netcfg bugs. Bear with me on this archaeological endeavour. > > Like Joey Hess, I'm having trouble identifying questions that can be grouped > together. Even the IP address/netmask questions aren't groupable any more, > as there's changes in the works to make the netmask question optional if you > provide a CIDR netmask in the IP address. > > If you have any ideas on questions in netcfg that can be grouped, please let > me know. Otherwise, I'll close off this bug report. Several bug submitters often don't see that questions that seem "obvious" for them to be grouped are (sometimes onlyin some cases) interdependent. We have the same situation in user-setup (some LWN articles have featured remarks like "Debian developers should group together questions about root password and user password"ignoring that, in some situations, one depends on another. So, I'd say that, if you don't really see what questions can be grouped, then it's likely that they really can't. One should also consider that grouping questions in a single debconf screen often leaves less room for explanations... signature.asc Description: Digital signature
Bug#610646: missing attachment
# German translation of iptables-persistent. # This file is distributed under the same license as the # iptables-persistent package. # Chris Leick , 2011. # msgid "" msgstr "" "Project-Id-Version: iptables-persistent 0.6\n" "Report-Msgid-Bugs-To: iptables-persist...@packages.debian.org\n" "POT-Creation-Date: 2011-01-15 20:39+\n" "PO-Revision-Date: 2011-01-16 11:11+0100\n" "Last-Translator: Chris Leick \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../iptables-persistent.templates:2001 msgid "Save current IPv4 rules?" msgstr "Aktuelle IPv4-Regeln speichern?" #. Type: boolean #. Description #: ../iptables-persistent.templates:2001 msgid "" "Current iptables rules can be saved to the configuration file /etc/iptables/" "rules.v4. These rules will then be loaded automatically during system " "startup." msgstr "" "Aktuelle Iptables-Regeln können in der Konfigurationsdatei " "/etc/iptables/rules.v4 gespeichert werden. Diese Regeln werden dann beim " "Systemstart automatisch geladen." #. Type: boolean #. Description #: ../iptables-persistent.templates:2001 msgid "" "Rules are only saved automatically during package installation. See the " "manual page of iptables-save(8) for instructions on keeping the rules file " "up-to-date." msgstr "" "Regeln werden nur automatisch während der Paketinstallation gespeichert. " "Lesen Sie die Handbuchseite von iptables-save(8), um zu erfahren, wie die " "Regeln aktuell gehalten werden können." #. Type: boolean #. Description #: ../iptables-persistent.templates:3001 msgid "Save current IPv6 rules?" msgstr "Aktuelle IPv6-Regeln speichern?" #. Type: boolean #. Description #: ../iptables-persistent.templates:3001 msgid "" "Current iptables rules can be saved to the configuration file /etc/iptables/" "rules.v6. These rules will then be loaded automatically during system " "startup." msgstr "" "Aktuelle Iptables-Regeln können in der Konfigurationsdatei " "/etc/iptables/rules.v6 gespeichert werden. Diese Regeln werden dann beim " "Systemstart automatisch geladen." #. Type: boolean #. Description #: ../iptables-persistent.templates:3001 msgid "" "Rules are only saved automatically during package installation. See the " "manual page of ip6tables-save(8) for instructions on keeping the rules file " "up-to-date." msgstr "" "Regeln werden nur automatisch während der Paketinstallation gespeichert. " "Lesen Sie die Handbuchseite von ip6tables-save(8), um zu erfahren, wie die " "Regeln aktuell gehalten werden können."
Bug#610570: rebuildd exit in unittest with disk I/O error
On Fri, 2011-01-21 at 08:51 +0100, Julien Danjou wrote: > I don't know, but this is not a permission issue. I can reproduce it too > on my system, and that should not happen. > > I think rebuildd executes a wrong SQL statement, or something like that, > quickly looking at SQLObject code. > > Adding a debug flag on SQLObject to see what is done could help. If you > have some spare time to spend on this… :) There you go ... Attaching the full log as well. 'database_uri', 'sqlite:///tmp/rebuildd-tests.db?debug=1' Exception in thread Thread-1: Traceback (most recent call last): File "/usr/lib/python2.6/threading.py", line 532, in __bootstrap_inner self.run() File "../rebuildd/Job.py", line 106, in run for cmd, failed_status in ([Dists().get_dist(self.dist, self.arch).get_source_cmd(self.package), AttributeError: 'NoneType' object has no attribute 'get_source_cmd' test_build_failure_build (TestJob.TestJob) ... 1/Query : CREATE TABLE package ( id INTEGER PRIMARY KEY, name TEXT, version TEXT, priority TEXT ) 1/QueryR : CREATE TABLE package ( id INTEGER PRIMARY KEY, name TEXT, version TEXT, priority TEXT ) 1/COMMIT : auto 1/Query : CREATE TABLE job ( id INTEGER PRIMARY KEY, status INT, mailto TEXT, package_id INT CONSTRAINT package_id_exists REFERENCES package(id) ON DELETE CASCADE, dist TEXT, arch TEXT, creation_date TIMESTAMP, status_changed TIMESTAMP, build_start TIMESTAMP, build_end TIMESTAMP, host TEXT ) 1/QueryR : CREATE TABLE job ( id INTEGER PRIMARY KEY, status INT, mailto TEXT, package_id INT CONSTRAINT package_id_exists REFERENCES package(id) ON DELETE CASCADE, dist TEXT, arch TEXT, creation_date TIMESTAMP, status_changed TIMESTAMP, build_start TIMESTAMP, build_end TIMESTAMP, host TEXT ) 1/COMMIT : auto 1/Query : CREATE TABLE job_job ( joba INT NOT NULL, jobb INT NOT NULL ) 1/QueryR : CREATE TABLE job_job ( joba INT NOT NULL, jobb INT NOT NULL ) 1/COMMIT : auto 1/QueryIns: INSERT INTO package (priority, version, name) VALUES (NULL, '3.1dfsg-8', 'bash') 1/QueryR : INSERT INTO package (priority, version, name) VALUES (NULL, '3.1dfsg-8', 'bash') 1/COMMIT : auto 1/QueryOne: SELECT name, version, priority FROM package WHERE ((package.id) = (1)) 1/QueryR : SELECT name, version, priority FROM package WHERE ((package.id) = (1)) 1/COMMIT : auto 1/QueryIns: INSERT INTO job (status, mailto, dist, build_start, creation_date, host, package_id, status_changed, build_end, arch) VALUES (0, NULL, 'sid', NULL, '2011-01-21 08:30:26', NULL, 1, NULL, NULL, 'powerpc') 1/QueryR : INSERT INTO job (status, mailto, dist, build_start, creation_date, host, package_id, status_changed, build_end, arch) VALUES (0, NULL, 'sid', NULL, '2011-01-21 08:30:26', NULL, 1, NULL, NULL, 'powerpc') 1/COMMIT : auto 1/QueryOne: SELECT status, mailto, package_id, dist, arch, creation_date, status_changed, build_start, build_end, host FROM job WHERE ((job.id) = (1)) 1/QueryR : SELECT status, mailto, package_id, dist, arch, creation_date, status_changed, build_start, build_end, host FROM job WHERE ((job.id) = (1)) 1/COMMIT : auto 2/Query : UPDATE job SET build_start = ('2011-01-21 08:30:26') WHERE id = (1) 2/QueryR : UPDATE job SET build_start = ('2011-01-21 08:30:26') WHERE id = (1) 2/COMMIT : auto 2/Query : UPDATE job SET status_changed = ('2011-01-21 08:30:26') WHERE id = (1) 2/QueryR : UPDATE job SET status_changed = ('2011-01-21 08:30:26') WHERE id = (1) 2/COMMIT : auto 2/Query : UPDATE job SET status = (200) WHERE id = (1) 2/QueryR : UPDATE job SET status = (200) WHERE id = (1) 2/COMMIT : auto Exception in thread Thread-1: Traceback (most recent call last): File "/usr/lib/python2.6/threading.py", line 532, in __bootstrap_inner self.run() File "../rebuildd/Job.py", line 106, in run for cmd, failed_status in ([Dists().get_dist(self.dist, self.arch).get_source_cmd(self.package), AttributeError: 'NoneType' object has no attribute 'get_source_cmd' FAIL test_build_failure_post_build (TestJob.TestJob) ... 1/Query : CREATE TABLE package ( id INTEGER PRIMARY KEY, name TEXT, version TEXT, priority TEXT ) 1/QueryR : CREATE TABLE package ( id INTEGER PRIMARY KEY, name TEXT, version TEXT, priority TEXT ) 1/COMMIT : auto 1/QueryIns: INSERT INTO package (priority, version, name) VALUES (NULL, '3.1dfsg-8', 'bash') 1/QueryR : INSERT INTO package (priority, version, name) VALUES (NULL, '3.1dfsg-8', 'bash') 1/COMMIT : auto ERROR test_build_failure_source (TestJob.TestJob) ... 1/Query : CREATE TABLE package ( id INTEGER PRIMARY KEY, name TEXT, version TEXT, priority TEXT ) 1/QueryR : CREATE TABLE package ( id INTEGER PRIMARY KEY, name TEXT, version TEXT, priority TEXT ) 1/COMMIT : auto 1/QueryIns: INSERT INTO package (priority, version
Bug#610678: samba: FTBFS on hurd-i386
Package: samba Version: 2:3.5.6~dfsg-3 Severity: important Tags: patch User: debian-h...@lists.debian.org Usertags: hurd Hello, samba currently FTBFS because it's not happy with not having IOV_MAX or UIO_MAXIOV defined. These are indeed not defined on GNU/Hurd because there is no such limitation. And actually the samba code does not require it. Thus, please apply at least the attached patch. Samuel -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.37 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages samba depends on: ii adduser 3.112+nmu2 add and remove users and groups ii cdebconf [debconf-2.0] 0.153Debian Configuration Management Sy ii debconf [debconf-2.0] 1.5.36 Debian configuration management sy ii libacl1 2.2.49-4 Access control list shared library ii libattr11:2.4.44-2 Extended attribute shared library ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib ii libcap2 1:2.19-3 support for getting/setting POSIX. ii libcomerr2 1.41.12-2common error description library ii libcups21.4.4-7 Common UNIX Printing System(tm) - ii libgssapi-krb5-21.8.3+dfsg-4 MIT Kerberos runtime libraries - k ii libk5crypto31.8.3+dfsg-4 MIT Kerberos runtime libraries - C ii libkrb5-3 1.8.3+dfsg-4 MIT Kerberos runtime libraries ii libldap-2.4-2 2.4.23-7 OpenLDAP libraries ii libpam-modules 1.1.1-6.1Pluggable Authentication Modules f ii libpam-runtime 1.1.1-6.1Runtime support for the PAM librar ii libpam0g1.1.1-6.1Pluggable Authentication Modules l ii libpopt01.16-1 lib for parsing cmdline parameters ii libtalloc2 2.0.1-1 hierarchical pool based memory all ii libwbclient02:3.5.6~dfsg-3 Samba winbind client library ii lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip ii procps 1:3.2.8-9/proc file system utilities ii samba-common2:3.5.6~dfsg-3 common files used by both the Samb ii update-inetd4.38 inetd configuration file updater ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime Versions of packages samba recommends: ii logrotate 3.7.8-6Log rotation utility Versions of packages samba suggests: pn ctdb (no description available) pn ldb-tools (no description available) ii openbsd-inetd [inet-superse 0.20080125-6 The OpenBSD Internet Superserver pn smbldap-tools (no description available) -- debconf information excluded -- Samuel Thibault j'etais en train de nettoyer ma souris et le coup est parti... -+- s sur #ens-mim - et en plus c vrai... -+- --- ./lib/replace/system/network.h.original 2011-01-21 09:57:14.0 +0100 +++ ./lib/replace/system/network.h 2011-01-21 09:57:18.0 +0100 @@ -332,7 +332,7 @@ */ # define IOV_MAX 512 # else -# error IOV_MAX and UIO_MAXIOV undefined +# warning IOV_MAX and UIO_MAXIOV undefined # endif # endif #endif
Bug#455557: GPL Ghostscript SVN PRE-RELEASE 8.61: Unrecoverable error, exit code 1
retitle 47 ghostscript: Error: /undefined in eartomark tags 47 + upstream patch fixed-upstream forwarded 47 http://bugs.ghostscript.com/show_bug.cgi?id=689577 fixed 47 ghostscript/8.71~dfsg-1 quit Daniel Leidert wrote: > D [10/Dec/2007:22:13:28 +0100] [Job 531] foomatic-gswrapper: gs > '-sstdout=%stderr' '@s400a1.upp' '-dBATCH' '-dPARANOIDSAFER' '-dQUIET' > '-dNOPAUSE' '-sOutputFile=%stdout' '-' > D [10/Dec/2007:22:13:28 +0100] [Job 531] Copying page 2... > D [10/Dec/2007:22:13:28 +0100] [Job 531] pagew = 595.0, pagel = 842.0 > D [10/Dec/2007:22:13:28 +0100] [Job 531] bboxw = 595, bboxl = 842 > D [10/Dec/2007:22:13:28 +0100] [Job 531] PageLeft = 0.0, PageRight = 595.0 > D [10/Dec/2007:22:13:28 +0100] [Job 531] PageTop = 842.0, PageBottom = 0.0 > D [10/Dec/2007:22:13:28 +0100] [Job 531] PageWidth = 595.0, PageLength = 842.0 > D [10/Dec/2007:22:13:28 +0100] [Job 531] Error: /undefined in eartomark Fixed by r9989, I hope. commit 9e21729c4a5a5011bf6c4ec9d6680ee2c5907094 Author: Alex Cherepanov Date: Thu Aug 13 19:04:34 2009 + In hex form of eexec stream, break out of reading loop and try to interpret the accumulated data when a whitespace character is encountered. Skip whitespace characters when the control returns to /eexecDecode filter. Bug 689577. DETAILS: Normally, eexec stream is followed by a large number of 0's to compensate for read-ahead effects. The code fragment that Adobe Acrobat uses to prevent re-distilling of the file has no trailing 0's at all. This patch tries to guess the end of eexec stream after every whitespace character. DIFFERENCES: None. > I get several errors (see the subject) at different locations: > > 1) running dhelps weekly cron-script: > /etc/cron.weekly/dhelp: > GPL Ghostscript SVN PRE-RELEASE 8.61: Unrecoverable error, exit code 1 > GPL Ghostscript SVN PRE-RELEASE 8.61: Unrecoverable error, exit code 1 > > 2) I also get these errors in CUPS, when I try to print one of the > following PDFs: > http://rcswww.urz.tu-dresden.de/~bornmann/material/study_text.pdf > http://rcswww.urz.tu-dresden.de/~bornmann/material/tud.pdf If you have a chance to try, could you try again with current ghostscript and report back? Thanks for reporting, and sorry for the long delay in responding. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#587426: Change default permissions of /var/lib/mysql
On 21-1-2011 9:40, Davide Ferrari wrote: On Fri, 2011-01-21 at 00:50 +0100, Olaf van der Spek wrote: In my opinion this should changed to 770 as the mysql group should have free access to the MySQL data files too. What's the use case for that? Zabbix checks in my case Is monitoring the only case? Olaf -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610679: deutex: please log to /dev/null by default
Package: deutex Version: 4.4.902-12 Severity: wishlist Tags: patch deutex by default writes a copy of stdout/stderr to a file named "deutex.log" in the current directory. I wonder if you might consider disabling this, since you generally run it yourself from a terminal or via a Makefile, and can use shell redirection to capture its output (or, of course, an explicit "-log" option.) I think the log output by default is a bit of a DOSism, really, left over from the program's origins on that platform, since DOS doesn't have such good shell redirection capabilities and so forth. The easiest patch is, I think, to log to /dev/null: Index: deutex-4.4.902/src/deutex.c === --- deutex-4.4.902.orig/src/deutex.c2011-01-17 13:18:18.773051186 + +++ deutex-4.4.902/src/deutex.c 2011-01-17 13:19:07.337049340 + @@ -96,11 +96,14 @@ const char *debug_ident= NULL; int old_music_ident_method = 0; const char *palette_lump = "PLAYPAL"; +#if 0 #if defined DeuTex const char *logfile= "deutex.log"; #elif defined DeuSF const char *logfile= "deusf.log"; #endif +#endif +const char *logfile= "/dev/null"; static char anon[1]= { '\0' }; -- http://rjy.org.uk/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610575: RM: tth [alpha arm ia64 powerpc] -- ROM; tth copyright does not allow autobuilding
Hi! Am 20.01.2011 02:13, schrieb Ian Maclaine-cross: > Package tth is non-free due to an absence of complete source code so > has not been autobuilt for many years. The author's copyright license > does not explicitly permit autobuilding. Old ported versions prevent > the migration of the current 4.00-2 i386 version to testing. Done, with the exception of the arm binary, as we don't have that arch in unstable any more. Only arch left in unstable/non-free is i386. Best regards, Alexander -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610671: jedit crashes on startup
On Fri, Jan 21, 2011 at 4:28 AM, Tim Richardson wrote: > Package: jedit > Version: 4.3.2+dfsg-3 > Severity: important > > > this is the console output. > using KDE and sun-java is set as default. > > Exception in thread "main" java.lang.UnsatisfiedLinkError: Can't load > library: /usr/libk/jre/lib/i386/xawt/libmawt.so /usr/libk/ ? -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610680: sweethome: No frames on menus
Package: sweethome3d Version: 2.5+dfsg-1 Severity: minor File: sweethome The menus of Sweethome 3D has not frames or frames are invisible. -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages sweethome3d depends on: ii java-wrappers 0.1.16 wrappers for java executables ii java3ds-fileloader 1.2+dfsg-1 Java3D 3DS File Loader ii libfreehep-graphics 2.1.1-3 FreeHEP Scalable Vector Graphics D ii libitext-java 2.1.7-2 Java Library to create and manipul ii libjava3d-java 1.5.2+dfsg-5 Java 3D API (java library) ii libsunflow-java 0.07.2.svn396+dfsg-6 rendering system for photo-realist ii openjdk-6-jre 6b18-1.8.3-2 OpenJDK Java runtime, using Hotspo sweethome3d recommends no packages. sweethome3d suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610681: cellwriter: At first input, wrong inserted characters if not using 'us' keyboard layout
Package: cellwriter Version: 1.3.4-1 Severity: normal Hi! I am using celwwriter on a Lenovo X201 Tablet with a french key layout. The first row starts with AZERTY. When I write for example characters "azqwm" in the cells, they are recognized correctly. But if they were the first characters entered after the program started and if I then press the button "Enter", the characters sent to the screen are "qwaz;", as if I typed the characters on a us keyboard, thinking it was using a french layout. This problem disappears for the others sets of characters sent. Thanks! Cédric -- System Information: Debian Release: 6.0 APT prefers unstable APT policy: (990, 'unstable'), (700, 'experimental'), (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.36-trunk-amd64 (SMP w/4 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages cellwriter depends on: ii libatk1.0-01.30.0-1 The ATK accessibility toolkit ii libbonobo2-0 2.24.3-1 Bonobo CORBA interfaces library ii libc6 2.11.2-8 Embedded GNU C Library: Shared lib ii libcairo2 1.8.10-6 The Cairo 2D vector graphics libra ii libglib2.0-0 2.24.2-1 The GLib library of C routines ii libgnome2-02.30.0-1 The GNOME library - runtime files ii libgtk2.0-02.20.1-2 The GTK+ graphical user interface ii liborbit2 1:2.14.18-0.1 libraries for ORBit2 - a CORBA ORB ii libpango1.0-0 1.28.3-1 Layout and rendering of internatio ii libpopt0 1.16-1lib for parsing cmdline parameters ii libx11-6 2:1.3.3-4 X11 client-side library ii libxtst6 2:1.2.0-1 X11 Testing -- Record extension li cellwriter recommends no packages. cellwriter suggests no packages. -- no debconf information signature.asc Description: Digital signature
Bug#610682: apache2-mpm-prefork: apache2 -S does'nt read envvars
Package: apache2-mpm-prefork Version: 2.2.14-5 Severity: normal User and Group are defined so in apache2.conf: User ${APACHE_RUN_USER} Group ${APACHE_RUN_GROUP} in envvars we have export APACHE_RUN_USER=www-data export APACHE_RUN_GROUP=www-data and it works well. But when running apache2 -S the response is bad user name ${APACHE_RUN_USER} preventing it from printing the virtual hosts. -- Package-specific info: List of enabled modules from 'apache2 -M': alias auth_basic authn_file authz_default authz_groupfile authz_host authz_user autoindex cgi dav dir env mime negotiation php5 python rewrite setenvif status -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages apache2-mpm-prefork depends on: ii apache2.2-bin 2.2.14-5 Apache HTTP Server common binary f ii apache2.2-common 2.2.14-5 Apache HTTP Server common files apache2-mpm-prefork recommends no packages. apache2-mpm-prefork suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610683: replaces needed a tweak
tag 610683 - squeeze quit 'Replaces' in the version in experimental needs to be bumped to match the version which has gone into Squeeze - it matched the previous version before the change to cope with the removal of apt-cross from Squeeze. Fixed in SVN, new upload to experimental soon. This particular change doesn't affect squeeze per-se, it only happens when xapt from experimental is already installed. -- Neil Williams = http://www.data-freedom.org/ http://www.linux.codehelp.co.uk/ http://e-mail.is-not-s.ms/ pgpaS9y3Ulo16.pgp Description: PGP signature
Bug#610631: Needs a backport
There's now no chance of fixing this in Squeeze, it will need to be documented on the Multistrap wiki and the Emdebian website. Best option would be to provide replacement files and an example command to replace the pdebuild-cross-create, possibly advising to use a fixed version in the Emdebian repository. I'll then backport the changes to Squeeze. I'm not 100% sure that it is the wrong compiler version being brought in here, there's a reason why the Lenny toolchains were being selected. It needs more testing because the report also claims to not be able to find aptitude. -- Neil Williams = http://www.data-freedom.org/ http://www.linux.codehelp.co.uk/ http://e-mail.is-not-s.ms/ pgpbEztWPw5N8.pgp Description: PGP signature
Bug#610052: unblock: util-linux/2.17.2-6
On 19/01/2011 01:00, LaMont Jones wrote: On Tue, Jan 18, 2011 at 07:36:19PM +0100, Christian PERRIER wrote: Quoting Julien Cristau (jcris...@debian.org): Or grab the PO file from the BTS web interface Yeah - files grabbed, I need to build the debs and I'll get them uploaded. that should happen within the next 12-14 hours. (sleep is in there somehwere) That mail was sent a couple of days ago… any news here? Regards, -- Mehdi Dogguy مهدي الدڤي mehdi@{dogguy.org,debian.org} -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610560: gammu: FTBFS: needs python-sphinx 1.0+ from experimental
Hi Dne Wed, 19 Jan 2011 16:55:22 -0500 "Aaron M. Ucko" napsal(a): > Package: gammu > Version: 1.29.0-1 > Severity: serious > Justification: fails to build from source > > gammu is impossible to build in a pure-unstable environment because it > now build-depends on python-sphinx (>= 1.0), which is only available > from the experimental suite. (Testing and unstable are still at > 0.6.6-3.) > > Could you please look into supporting older versions of python-sphinx > for now? Unfortunately it does not seem to be possible. The documentation uses quite a lot domains, what is feature of sphinx 1.0. I should have noticed this earlier and do not update to unstable until new sphinx is there. The options for now seem to be either to disable documentation build or just ignore the failure till new sphinx is available. -- Michal Čihař | http://cihar.com | http://blog.cihar.com signature.asc Description: PGP signature
Bug#610684: python-librdf: Reports warning RedlandWarning: Model does not support contexts on example.py
Package: python-librdf Version: 1.0.10.1-2 Severity: normal Hi. I tried the provided example.py and get : :/usr/share/doc/python-librdf/examples$ python example.py found statement: {[http://www.dajobe.org/], [http://purl.org/dc/elements/1.1/creator], "Dave Beckett"} Parsing URI (file) dc.rdf Parsing added 3 statements Printing all statements Statement: {[http://www.dajobe.org/], [http://purl.org/dc/elements/1.1/description], "The generic home page of Dave Beckett."} Statement: {[http://www.dajobe.org/], [http://purl.org/dc/elements/1.1/title], "Dave Beckett's Home Page"} Statement: {[http://www.dajobe.org/], [http://purl.org/dc/elements/1.1/creator], "Dave Beckett"} Querying for dc:titles: /usr/lib/python2.6/dist-packages/RDF.py:1956: RedlandWarning: Model does not support contexts results = Redland.librdf_query_execute(self._query,model._model) { a = [http://www.dajobe.org/] c = Dave Beckett's Home Page } Dunno what's wrong with this RedlandWarning Hope this helps. Best regards, -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (900, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores) Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages python-librdf depends on: ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib ii libraptor1 1.4.21-2 Raptor RDF parser and serializer l ii librasqal2 0.9.20-1 Rasqal RDF query library ii librdf0 1.0.10-3 Redland Resource Description Frame ii python 2.6.6-3+squeeze5 interactive high-level object-orie ii python-central 0.6.16+nmu1 register and build utility for Pyt python-librdf recommends no packages. python-librdf suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#596903: temporal workaround (for launching kbackup as root)
(not a maintainer) > When running KBackup from the command line as root the program crashes Try to unset DBUS_SESSION_BUS_ADDRESS. I just tried it: after `su' kbackup fails to start with message similar to yours, but after running `unset DBUS_SESSION_BUS_ADDRESS' and reinvoking, it showed own main window. I think remaining will work as well. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#609762: amavisd-milter: Init script changes owner of current directory to 'amavis'
[Harald please CC: my address otherwise I could not see your responses] 2011/1/20 Harald Jenny : > I checked with other init scripts an in order to have a consistent coding > style > in the init script I replaced the && with if-clauses - could you take a look > at > it and tell me if this looks better to you? I had a look at the new patch and I have a few observations. 1) This construction is fine and simple as recommended in /etc/init.d/skeleton: # Read configuration variable file if it is present [ -r /etc/default/$NAME ] && . /etc/default/$NAME 2) This construction doesn't work if PIDFILE is empty (not defined): +if [ $PIDFILE != "/var/run/amavis/$NAME.pid" ]; then For all strings comparison you need to use "$VAR". 3) This seems to be valid but I've always used [ -n "$VAR" ] instead of: +if [ $MILTERSOCKET ]; then 4) This doesn't work if the directory has a space: + if [ ! -e $(dirname $PIDFILE) ]; then +mkdir $(dirname $PIDFILE) You need to use "$(dirname "$PIDFILE")". This is an issue if this variable can be defined to any custom value. 5) This has a mistake: and extra ) character at the end + chown $USER:$(id $USER -g -n) $(dirname $PIDFILE)) The correct execution would be: + chown $USER:$(id $USER -g -n) "$(dirname "$PIDFILE")" 6) I'm not sure this is working properly, I've always used [ -n "" -a.. ]. +if [ $MILTERSOCKET -a "`echo..." ]; then Also, there is no need to check if MILTERSOCKET is empty in this case. 7) You should probably add "-q" for all these executions to avoid unwanted strings during start/stop/restart. "`echo $MILTERSOCKET | grep -v ^inet`" 8) The same as #5 for this construction: + if [ ! -e $(dirname $MILTERSOCKET) ]; then +mkdir $(dirname $MILTERSOCKET) + fi + chown $USER $(dirname $MILTERSOCKET)) It is unclear to me why you need to change the owner of MILTERSOCKET. Let me know if you need some help to fix this bug. I'm not using amavisd anymore but I could help in this case. Thanks -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610610: postfixadmin: Mailbox postdeletion not sanitizing list of arguments
Norman, here's a bug report for you. * Paul Piscuc [2011-01-20 14:25]: > Package: postfixadmin > Version: 2.3.2 > Severity: grave > Justification: causes non-serious data loss > > After enabling the mailbox_postdeletion_script, and copying the script from > examples, one might try to test the script if it is able to run properly from > the command line. Running the script with no arguments will return no error, > and move the actual mail dir(basedir) to trash(trashbase), making postfix > unusable. To replicate the bug, set basedir=/home/vmail/ > trashbase=/home/vmail/trash, in visudo: www-data ALL=(vmail) NOPASSWD: > /usr/local/bin/postfixadmin-mailbox-postdeletion.sh , and run as www-data > sudo -v vmail /usr/local/bin/postfixadmin-mailbox-postdeletion.sh . It will > move /home/vmail/* to /home/vmail/date_/ . > > -- System Information: > Debian Release: 5.0.7 > APT prefers stable > APT policy: (500, 'stable') > Architecture: amd64 (x86_64) > > Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores) > Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) > Shell: /bin/sh linked to /bin/bash > > Versions of packages postfixadmin depends on: > ii apache22.2.9-10+lenny9 Apache HTTP Server metapackage > ii apache2-mpm-prefor 2.2.9-10+lenny9 Apache HTTP Server - traditional > n > ii dbconfig-common1.8.39common framework for packaging > dat > ii debconf1.5.24Debian configuration management > sy > ii libapache2-mod-php 5.2.6.dfsg.1-1+lenny9 server-side, HTML-embedded > scripti > ii mysql-client-5.0 [ 5.0.51a-24+lenny5 MySQL database client binaries > ii php5-imap 5.2.6.dfsg.1-1+lenny9 IMAP module for php5 > ii php5-mysql 5.2.6.dfsg.1-1+lenny9 MySQL module for php5 > ii wwwconfig-common 0.1.2 Debian web auto configuration > > Versions of packages postfixadmin recommends: > ii mysql-server 5.0.51a-24+lenny5 MySQL database server > (metapackage > ii mysql-server-5.0 [mysq 5.0.51a-24+lenny5 MySQL database server binaries > ii postfix-mysql 2.5.5-1.1 MySQL map support for Postfix > > Versions of packages postfixadmin suggests: > ii dovecot-common 1:1.0.15-2.3+lenny1 secure mail server that supports > m > pn squirrelmail-postfix (no description available) > > -- debconf information: > postfixadmin/pgsql/app-pass: (password omitted) > postfixadmin/pgsql/admin-pass: (password omitted) > postfixadmin/mysql/admin-pass: (password omitted) > postfixadmin/app-password-confirm: (password omitted) > postfixadmin/mysql/app-pass: (password omitted) > postfixadmin/password-confirm: (password omitted) > postfixadmin/remote/newhost: > postfixadmin/pgsql/method: unix socket > postfixadmin/db/app-user: postfixadmin > postfixadmin/purge: false > * postfixadmin/reconfigure-webserver: apache2 > postfixadmin/remote/port: > postfixadmin/pgsql/changeconf: false > * postfixadmin/dbconfig-install: true > * postfixadmin/database-type: mysql > postfixadmin/internal/reconfiguring: false > postfixadmin/remote/host: > postfixadmin/upgrade-error: abort > postfixadmin/missing-db-package-error: abort > postfixadmin/upgrade-backup: true > postfixadmin/pgsql/authmethod-user: > postfixadmin/mysql/admin-user: root > postfixadmin/dbconfig-remove: > postfixadmin/remove-error: abort > postfixadmin/db/basepath: > postfixadmin/passwords-do-not-match: > postfixadmin/db/dbname: postfixadmin > postfixadmin/install-error: abort > postfixadmin/pgsql/no-empty-passwords: > postfixadmin/dbconfig-reinstall: false > postfixadmin/internal/skip-preseed: false > postfixadmin/pgsql/admin-user: postgres > postfixadmin/pgsql/authmethod-admin: ident > postfixadmin/dbconfig-upgrade: true > postfixadmin/mysql/method: unix socket > postfixadmin/pgsql/manualconf: > -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#592752: coinor-libipopt-dev: Problems linking libipopt to a sequential program
Hi! I think that this might be the same problem reported in #592324. I am not sure, because 592324 is a problem during linking, and what I reported is a run-time problem. However, in the meantime I moved to a new computer, and now I run into 592324 as well. I can get the missing symbols MPI_Finalize, MPI_Comm_rank, MPI_Init by installing libmumps-4.9.2 and libmumps-seq-4.9.2, but not dmumps_c. Where is it? Thanks for your help, Oliver -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610674: reprepro: please add configuration option for exipiration of cryptographic signatures
* Daniel Kahn Gillmor [110121 06:30]: > Some repositories have a policy that they will make updates on a > regular basis (or that they will at least refresh the signatures on > the same static list of packages regularly). > > It would be nice for the maintainers of those archives to be able to > state that their archive signatures have an expiration date. > > Having an expiration date on an archive signature provides a quick way > for users to know that their mirror is out of date, and it prevents > the possibility of a version rollback (by replay of old metadata) by > an attacker in control of the network. Do you know the "ValidFor" option? That will create a Valid-Until header in the generated Release file, so that apt might no longer accept it after that time. > A configuration option that passes its value through to gpg's > --default-sig-expire argument would be great. An admin with a policy > to refresh the archive at least once every two weeks could do > something like: > > echo 'archive-sig-expire 2w' >> conf/options > > I think this would be currently doable (as a workaround) by archive > administrators willing to modify ~/.gnupg/gpg.conf, or to use an > alternate $GNUPGHOME for their reprepro invocations, but it would be > good to expose it as an explicit option. You do not know by chance a way to make libgpgme pass this option? I did not find anything in a quick glance over its documentation. Bernhard R. Link -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610671: jedit crashes on startup
On 21/01/11 20:33, Gabriele Giacone wrote: On Fri, Jan 21, 2011 at 4:28 AM, Tim Richardson wrote: Package: jedit Version: 4.3.2+dfsg-3 Severity: important this is the console output. using KDE and sun-java is set as default. Exception in thread "main" java.lang.UnsatisfiedLinkError: Can't load library: /usr/libk/jre/lib/i386/xawt/libmawt.so /usr/libk/ ? sorry, vim noise I think. I just crashed it again Exception in thread "main" java.lang.UnsatisfiedLinkError: Can't load library: /usr/lib/jvm/java-6-openjdk/jre/lib/i386/xawt/libmawt.so at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1649) at java.lang.Runtime.load0(Runtime.java:787) at java.lang.System.load(System.java:1022) at java.lang.ClassLoader$NativeLibrary.load(Native Method) at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1750) at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1667) at java.lang.Runtime.loadLibrary0(Runtime.java:840) at java.lang.System.loadLibrary(System.java:1047) at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:67) at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:47) at java.security.AccessController.doPrivileged(Native Method) at java.awt.Toolkit.loadLibraries(Toolkit.java:1614) at java.awt.Toolkit.(Toolkit.java:1636) at java.awt.Color.(Color.java:279) at javax.swing.plaf.metal.MetalTheme.(MetalTheme.java:76) at javax.swing.plaf.metal.MetalLookAndFeel.getCurrentTheme(MetalLookAndFeel.java:1681) at javax.swing.plaf.metal.MetalLookAndFeel.createDefaultTheme(MetalLookAndFeel.java:1576) at javax.swing.plaf.metal.MetalLookAndFeel.getDefaults(MetalLookAndFeel.java:1598) at javax.swing.UIManager.setLookAndFeel(UIManager.java:530) at javax.swing.UIManager.setLookAndFeel(UIManager.java:570) at javax.swing.UIManager.initializeDefaultLAF(UIManager.java:1320) at javax.swing.UIManager.initialize(UIManager.java:1407) at javax.swing.UIManager.maybeInitialize(UIManager.java:1395) at javax.swing.UIManager.getDefaults(UIManager.java:644) at javax.swing.filechooser.FileSystemView.getFileSystemView(FileSystemView.java:80) at org.gjt.sp.jedit.io.FileVFS.(FileVFS.java:684) at org.gjt.sp.jedit.io.VFSManager.(VFSManager.java:461) at org.gjt.sp.jedit.MiscUtilities.constructPath(MiscUtilities.java:348) at org.gjt.sp.jedit.jEdit.main(jEdit.java:241 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#343901: gs-esp's lx5000 driver runs into infinite loop with mozilla's postscript files
Hi Peter, I was trying to debug an old hang with ghostscript's lx5000 driver and am stuck. [1] has the original report and test file. Sebastian Schmidt wrote: > gs produced 94MB output after 10 seconds or so, but what's notable about > it is the following (hexdump -C): > 05d13f70 00 02 02 00 18 00 ec 19 13 e8 00 00 00 00 2b 70 |..ì..è+p| > 05d13f80 62 77 01 1b 2a 03 00 00 1b 2a 04 00 00 00 1a 00 |bw..**..| > 05d13f90 02 02 00 18 00 ec 19 13 e8 00 00 00 00 2b 70 62 |.ì..è+pb| > 05d13fa0 77 01 1b 2a 03 00 00 1b 2a 04 00 00 00 1a 00 02 |w..**...| > 05d13fb0 02 00 18 00 ec 19 13 e8 00 00 00 00 2b 70 62 77 |ì..è+pbw| > 05d13fc0 01 1b 2a 03 00 00 1b 2a 04 00 00 00 1a 00 02 02 |..**| > 05d13fd0 00 18 00 ec 19 13 e8 00 00 00 00 2b 70 62 77 01 |...ì..è+pbw.| > 05d13fe0 1b 2a 03 00 00 1b 2a 04 00 00 00 1a 00 02 02 00 |.**.| > 05d13ff0 18 00 ec 19 13 e8 00 00 00 00 2b 70 62 77 01 1b |..ì..è+pbw..| > [... and so on ...] > > This pattern gets repeated all the time. Using http://pbw.id.au/lexmark/protocol.html we can decode this. Starting at 05d13f83: VERTICAL MOVE (1b 2a 03) by 0 SWIPE PRINT (1b 2a 04) of length 26 (00 00 00 1a): unidirectional, 600x600 dpi (00 02) color (02 00) 192 nozzles (18) 00 padding 60441 columns (ec 19) first column = 5096 (13 e8) last column = 0 (00 00) --- huh? doesn't add up driver id = "+pbw" (2b 70 62 77) time for data (01) VERTICAL MOVE (1b 2a 03) by 0 SWIPE PRINT (1b 2a 04) of length 26 (00 00 00 1a): ... That's what FILL_SWIPE_HEADER writes (in contrib/gdevlx50.c), in printSwipe(). So printSwipe() is being called interspersed with feedPaper(), just as Sebastian described. The tried and true printf method reveals that nextLineToPrint very quickly gets the value of 16, which is much lower than 3300, and keeps that value. But at this point I'm stuck, since I'm not sure how this code is supposed to work. When is nextLineToPrint supposed to advance? It's also possible the postscript file is buggy, though it displays ok with the x11 driver, at least. The ps file came from an attempt to print something with a web browser. Ideas? Jonathan [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;bug=343901 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#609581: calibre: summary of upstreams
Package: calibre Followup-For: Bug #609581 fwiw, some background history and modern day reading.. - poppler is a fork of xpdf, which (apparently) at the time of forking was GPL2 only. thus poppler became GPL2 only as well. http://cgit.freedesktop.org/poppler/poppler/tree/README http://cgit.freedesktop.org/poppler/poppler/tree/README-XPDF - in the mean time, xpdf, under the same author/company, and in the advent of GPL3, has now become GPL2+. author contact: Derek B. Noonburg but that little "+" was missing at the time of poppler forking. http://packages.debian.org/changelogs/pool/main/x/xpdf/xpdf_3.02-12/xpdf.copyright - poppler asks that all contributions be given as GPL2+. so they are thinking about it. http://cgit.freedesktop.org/poppler/poppler/tree/README.contributors (contact info for poppler given on that page) so we have all actors and code moved to GPL2+ in principal, only the pedantic twists of copyright law to satisfy. I've seen worse. two easy ways out: - poppler sync to a newer GPL2+ release of xpdf (not suitable in squeeze timeframe) - someone, preferably a poppler dev, approach Derek and ask for a re/dual-license of his (c)2004 xpdf as GPL2+. Then poppler adjust their READMEs as needed, reissue a no-other-change tarball, the package gets rebuilt, and we can all get on with more productive pursuits. - as noted, calibre upstream has synced to GPL2+ as well. again, rebuild as needed against the 0-diff GPL2+ release of calibre, or just ask calibre upstream for a relicense/reissue of the older code used in the .deb under the GPL2+. I ack the problem, but it all seems a little academic.. I suppose the clearest path is for calibre to pressure poppler to prepare+release a clean & clear GPL2+ cut so this problem doesn't come up again in future. but easiest solution seems a few emails from the authors saying "+ is fine" appented to the shipped COPYING file(s). regards, Hamish -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610671: jedit crashes on startup
On Fri, Jan 21, 2011 at 12:20 PM, Tim Richardson wrote: > On 21/01/11 20:33, Gabriele Giacone wrote: >> >> On Fri, Jan 21, 2011 at 4:28 AM, Tim Richardson >> wrote: >>> >>> Package: jedit >>> Version: 4.3.2+dfsg-3 >>> Severity: important >>> >>> >>> this is the console output. >>> using KDE and sun-java is set as default. >>> >>> Exception in thread "main" java.lang.UnsatisfiedLinkError: Can't load >>> library: /usr/libk/jre/lib/i386/xawt/libmawt.so >> >> /usr/libk/ ? > > sorry, vim noise I think. > I just crashed it again Install openjdk-6-jre, probably you just installed openjdk-6-jre-headless which doesn't include libraries for graphic applications. Otherwise, given you set sun-java you might want to try java-wrappers 0.1.17 from experimental which also considers jvm set by java-alternatives. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610686: ITP: wxsqlite3 -- SQLite3 C++ wrapper for use in programs based on the wxWidgets
Package: wnpp Severity: wishlist Owner: Alessio Treglia * Package name: wxsqlite3 Version : 2.0.2 Upstream Author : Ulrich Telle * URL : http://wxcode.sourceforge.net/components/wxsqlite3/ * License : wxWindows licence Programming Lang: C++ Description : SQLite3 C++ wrapper for use in programs based on the wxWidgets wxSQLite3 is a C++ wrapper around the public domain SQLite 3.x database and is specifically designed for use in programs based on the wxWidgets 2.8 library. . wxSQLite3 does not try to hide the underlying database, in contrary almost all special features of the current SQLite3 version 3.7.4 are supported, like for example the creation of user defined scalar or aggregate functions. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610671: jedit crashes on startup
Install openjdk-6-jre, probably you just installed openjdk-6-jre-headless which doesn't include libraries for graphic applications. Otherwise, given you set sun-java you might want to try java-wrappers 0.1.17 from experimental which also considers jvm set by java-alternatives. installing openjdk-6-jre fixed the problem, thanks. I'll leave the report open, maybe you want to take some further action? Let me know if I can help. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610688: aircrack-ng is not built with sqlite support
Package: aircrack-ng Version: 1:1.1-1.1 Severity: important Tags: patch Due to the way make is called from debian/rules (overriding CFLAGS, rather than passing it in as an environment variable, some of the flags within the upstream build system such as -DHAVE_SQLITE are not used. Because of this, aircrack-ng complains that it was not built with sqlite support when the -r flag is used. -- System Information: Debian Release: squeeze/sid APT prefers maverick-updates APT policy: (500, 'maverick-updates'), (500, 'maverick-security'), (500, 'maverick-backports'), (500, 'maverick'), (400, 'maverick-proposed') Architecture: amd64 (x86_64) Kernel: Linux 2.6.37-ck1-hyper1 (SMP w/2 CPU cores; PREEMPT) Locale: LANG=en_SG.utf8, LC_CTYPE=en_SG.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages aircrack-ng depends on: ii iw 0.9.19-1tool for configuring Linux wireles ii libc62.12.1-0ubuntu10.1 Embedded GNU C Library: Shared lib ii libsqlite3-0 3.7.2-1ubuntu0.1SQLite 3 shared library ii libssl0.9.8 0.9.8o-1ubuntu4.3 SSL shared libraries ii wireless-tools 30~pre9-3ubuntu4Tools for manipulating Linux Wirel ii zlib1g 1:1.2.3.4.dfsg-3ubuntu1 compression library - runtime aircrack-ng recommends no packages. aircrack-ng suggests no packages. -- no debconf information --- aircrack-ng-1.1/debian/rules2010-06-01 05:22:05.0 +0800 +++ aircrack-ng-1.1/debian/rules2011-01-21 17:04:55.0 +0800 @@ -12,7 +12,7 @@ build: build-stamp build-stamp: dh_testdir - $(MAKE) CFLAGS="$(CFLAGS) -D_FILE_OFFSET_BITS=64 -D_REVISION=0 -Iinclude" SQLITE=true UNSTABLE=true + CFLAGS="$(CFLAGS) -D_FILE_OFFSET_BITS=64 -D_REVISION=0 -Iinclude" $(MAKE) SQLITE=true UNSTABLE=true touch build-stamp clean:
Bug#592752: coinor-libipopt-dev: Problems linking libipopt to a sequential program
Okay, nevermind, I figured that one out myself. You need to link against libdmumps-4.9.2 and libdmumps_seq-4.9.2 as well. Hang on. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610689: sbuild: cross support
Package: sbuild Version: 0.60.8-1 Severity: wishlist Hello, I would love sbuild to gain the ability to handle cross builds. What is a cross build? Well, it is a way to generate a binary which it is meant to run on a foreign architecture. For cross builds you need cross tools, which are not yet in Debian archive, but those are available via emdebian.org repositories. So basically, you need to add deb http://emdebian.org squeeze main into your sources.list, update and install, for example, linux-libc-dev-armel-cross, libc6-dev-armel-cross, gcc-4.3-arm-linux-gnueabi, .. Once you got the cross toolchain in place, you can try to cross compile hello application passing -a$arch option to dpkg-buildpackage and the package must support cross building, usually by adding a three liner [0] to the package build system file. (sid_amd64)zumbi@cat:/tmp/hello-2.6$ dpkg-buildpackage -us -uc -rfakeroot -aarmel [...] chown -R root:root debian/tmp chmod -R u+w,go=rX debian/tmp dpkg --build debian/tmp .. dpkg-deb: building package `hello' in `../hello_2.6-1_armel.deb'. dpkg-genchanges >../hello_2.6-1_armel.changes dpkg-genchanges: including full source code in upload dpkg-source --after-build hello-2.6 dpkg-buildpackage: full upload (original source is included) When trying sbuild to do it for me, $ sudo sbuild -d sid_amd64 --debbuildopt="-aarmel" hello_2.6-1 [...] chmod -R u+w,go=rX debian/tmp dpkg --build debian/tmp .. dpkg-deb: building package `hello' in `../hello_2.6-1_armel.deb'. dpkg-genchanges -B >../hello_2.6-1_armel.changes dpkg-genchanges: arch-specific upload - not including arch-independent packages dpkg-genchanges: binary-only upload - not including any source code dpkg-source --after-build hello-2.6 dpkg-buildpackage: binary only upload (no source included) Build finished at 20110121-1105 Can't find hello_2.6-1_amd64.changes -- can't dump info Package contents Finished Built successfully Purging /srv/chroot/sid_amd64/build/root-hello_2.6-1-amd64-D9WaOO Finished at 20110121-1105 Build needed 00:00:12, 4812k disc space Sbuild builds the package but it is unable to take it out of the chroot, because it is unable to find the right changes file for the right architecture. "Can't find hello_2.6-1_amd64.changes -- can't dump info" Doing a $nasty hack on Build.pm we are able to follow *_armel.changes file. $ sudo vi /usr/share/perl5/Sbuild/Build.pm +1944 # Figure out chroot architecture sub chroot_arch { my $self = shift; my $nasty = "armel"; ^ my $pipe = $self->get('Session')->pipe_command( { COMMAND => [$self->get_conf('DPKG'), '--print-architecture'], USER => $self->get_conf('USERNAME'), CHROOT => 1, PRIORITY => 0, DIR => '/' }) || return undef; chomp(my $chroot_arch = <$pipe>); close($pipe); die "Can't determine architecture of chroot: $!\n" if ($? || !defined($chroot_arch)); return $nasty; ^ # return $chroot_arch; } It seems that sbuild triggers dpkg --print-architecture to find out chroot architecture, but when doing cross it should try to follow dpkg-architecture's DEB_HOST_ARCH. Would it be possible to modify Build.pm in some way, either calling dpkg-architecture or autodetecting -a$arch has been passed and it should follow other architecture changes file? Have a very nice day! [0] http://wiki.debian.org/EmdebianGuide#Addingcross-builddetection Best regards, -- Héctor Orón -- System Information: Debian Release: 6.0 APT prefers unstable APT policy: (700, 'unstable'), (600, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages sbuild depends on: ii adduser 3.112+nmu2 add and remove users and groups ii libsbuild-perl0.60.8-1 Tool for building Debian binary pa ii perl 5.10.1-17 Larry Wall's Practical Extraction ii perl-modules 5.10.1-17 Core Perl modules Versions of packages sbuild recommends: ii debootstrap 1.0.26 Bootstrap a basic Debian system ii fakeroot 1.14.5-1 Gives a fake root environment Versions of packages sbuild suggests: pn deborphan (no description available) ii wget 1.12-2.1 retrieves files from the web -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610690: bup: Bup versions 0.21 available as of Jan 8th
Package: bup Version: 0.17b-2 Severity: normal Please consider wrapping up a new 0.21 package for sid -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.35-trunk-686 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages bup depends on: ii git [git-core] 1:1.7.2.3-2.2fast, scalable, distributed revisi ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib ii python 2.6.6-3+squeeze1 interactive high-level object-orie ii python-fuse 2:0.2.1-2+b1 Python bindings for FUSE (Filesyst ii python-tornado 1.0.1-1 scalable, non-blocking web server Versions of packages bup recommends: pn par2 (no description available) bup suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#568347: Should use upper case for encoding names
The observation is quite correct. However, Saxon 6.5.5 is a mature release (the last Saxon release on the XSLT 1.0 branch) and there are no plans to issue any further maintenance releases on this branch unless critical problems are found. This problem is not considered critical. Michael Kay Saxonica -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610691: add use Email::Simple;
Package: libemail-simple-perl Version: 2.100-1 Severity: wishlist File: /usr/share/man/man3/Email::Simple.3pm.gz Other man pages remember to say "use ..." at the top. Else: Can't locate object method "new" via package "Email::Simple" (perhaps you forgot to load "Email::Simple"?) at - line 1. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610692: apt: Wrong translation with es_ES.UTF-8 locale in apt commands
Package: apt Version: 0.8.10.1 Severity: normal With this locale settings: ~ # locale LANG=es_ES.UTF-8 LC_CTYPE="es_ES.UTF-8" LC_NUMERIC="es_ES.UTF-8" LC_TIME="es_ES.UTF-8" LC_COLLATE="es_ES.UTF-8" LC_MONETARY="es_ES.UTF-8" LC_MESSAGES="es_ES.UTF-8" LC_PAPER="es_ES.UTF-8" LC_NAME="es_ES.UTF-8" LC_ADDRESS="es_ES.UTF-8" LC_TELEPHONE="es_ES.UTF-8" LC_MEASUREMENT="es_ES.UTF-8" LC_IDENTIFICATION="es_ES.UTF-8" LC_ALL= Some characters are wrong ( ISO-8859-1??? ) [áéíóú] ~ # apt-get upgrade Leyendo lista de paquetes... Hecho Creando árbol de dependencias Leyendo la información de estado... Hecho 0 actualizados, 0 se instalarán, 0 para eliminar y 0 no actualizados. ~ # strace apt-get upgrade [] open("/usr/share/locale/es_ES.UTF-8/LC_MESSAGES/libapt-pkg4.10.mo", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/share/locale/es_ES.utf8/LC_MESSAGES/libapt-pkg4.10.mo", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/share/locale/es_ES/LC_MESSAGES/libapt-pkg4.10.mo", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/share/locale/es.UTF-8/LC_MESSAGES/libapt-pkg4.10.mo", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/share/locale/es.utf8/LC_MESSAGES/libapt-pkg4.10.mo", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/share/locale/es/LC_MESSAGES/libapt-pkg4.10.mo", O_RDONLY) = 5 fstat(5, {st_mode=S_IFREG|0644, st_size=37232, ...}) = 0 mmap(NULL, 37232, PROT_READ, MAP_PRIVATE, 5, 0) = 0x7f3d0fb61000 close(5)= 0 open("/usr/lib/gconv/ISO8859-1.so", O_RDONLY) = 5 [] apt-config fails too: ~ # apt-config apt 0.8.10.1 para amd64 compilado en Jan 17 2011 13:15:20 Uso: apt-config [opciones] orden apt-config es una herramienta para leer el archivo de configuración de APT. Comandos: shell - Modo shell dump - Muestra la configuración Opciones: -h Este texto de ayuda. -c=? Lee este archivo de configuración -o=? Establece una opción de configuración arbitraria, p. ej. -o dir:: cache=/tmp ~ # apt-cache show foopkg N: No se ha podido localizar el paquete foopkg E: No se encontró ningún paquete I just reinstalled Debian unstable yesterday. -- Package-specific info: -- apt-config dump -- APT ""; APT::Architecture "amd64"; APT::Build-Essential ""; APT::Build-Essential:: "build-essential"; APT::Install-Recommends "1"; APT::Install-Suggests "0"; APT::Acquire ""; APT::Acquire::Translation "environment"; APT::Authentication ""; APT::Authentication::TrustCDROM "true"; APT::NeverAutoRemove ""; APT::NeverAutoRemove:: "^firmware-linux.*"; APT::NeverAutoRemove:: "^linux-firmware$"; APT::NeverAutoRemove:: "^linux-image.*"; APT::NeverAutoRemove:: "^kfreebsd-image.*"; APT::NeverAutoRemove:: "^linux-restricted-modules.*"; APT::NeverAutoRemove:: "^linux-ubuntu-modules-.*"; APT::Never-MarkAuto-Sections ""; APT::Never-MarkAuto-Sections:: "metapackages"; APT::Never-MarkAuto-Sections:: "restricted/metapackages"; APT::Never-MarkAuto-Sections:: "universe/metapackages"; APT::Never-MarkAuto-Sections:: "multiverse/metapackages"; APT::Never-MarkAuto-Sections:: "oldlibs"; APT::Never-MarkAuto-Sections:: "restricted/oldlibs"; APT::Never-MarkAuto-Sections:: "universe/oldlibs"; APT::Never-MarkAuto-Sections:: "multiverse/oldlibs"; Dir "/"; Dir::State "var/lib/apt/"; Dir::State::lists "lists/"; Dir::State::cdroms "cdroms.list"; Dir::State::mirrors "mirrors/"; Dir::State::extended_states "extended_states"; Dir::State::status "/var/lib/dpkg/status"; Dir::Cache "var/cache/apt/"; Dir::Cache::archives "archives/"; Dir::Cache::srcpkgcache "srcpkgcache.bin"; Dir::Cache::pkgcache "pkgcache.bin"; Dir::Etc "etc/apt/"; Dir::Etc::sourcelist "sources.list"; Dir::Etc::sourceparts "sources.list.d"; Dir::Etc::vendorlist "vendors.list"; Dir::Etc::vendorparts "vendors.list.d"; Dir::Etc::main "apt.conf"; Dir::Etc::netrc "auth.conf"; Dir::Etc::parts "apt.conf.d"; Dir::Etc::preferences "preferences"; Dir::Etc::preferencesparts "preferences.d"; Dir::Etc::trusted "trusted.gpg"; Dir::Etc::trustedparts "trusted.gpg.d"; Dir::Bin ""; Dir::Bin::methods "/usr/lib/apt/methods"; Dir::Bin::dpkg "/usr/bin/dpkg"; Dir::Media ""; Dir::Media::MountPath "/media/apt"; Dir::Log "var/log/apt"; Dir::Log::Terminal "term.log"; Dir::Log::History "history.log"; Dir::Ignore-Files-Silently ""; Dir::Ignore-Files-Silently:: "~$"; Dir::Ignore-Files-Silently:: "\.disabled$"; Dir::Ignore-Files-Silently:: "\.bak$"; Dir::Ignore-Files-Silently:: "\.dpkg-[a-z]+$"; DPkg ""; DPkg::Pre-Install-Pkgs ""; DPkg::Pre-Install-Pkgs:: "/usr/bin/apt-listchanges --apt || test $? -ne 10"; DPkg::Pre-Install-Pkgs:: "/usr/sbin/dpkg-preconfigure --apt || true"; DPkg::Tools ""; DPkg::Tools::Options ""; DPkg::Tools::Options::/usr/bin/apt-listchanges ""; DPkg::Tools::Options::/usr/bin/apt-listchanges::Version "2"; Unattended-Upgrade ""; Unattended-Upgrade::Allowed-Origins ""; Unattended-Upgrade::Allowed-Origins:: "${distro_id} stable"; Unattended-Upgrade::Allowed-Origins:: "${distro_id}
Bug#609889: Fixed upstream
Hello I've fixed this bug upstream. A Debian package will be uploaded soon. All the best Dominique -- http://config-model.wiki.sourceforge.net/ -o- http://search.cpan.org/~ddumont/ http://www.ohloh.net/accounts/ddumont -o- http://ddumont.wordpress.com/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610693: xserver-xorg-video-via: KM400/KN400/P4M800 [S3 UniChrome] hangs KDE4 login
Package: xserver-xorg-video-via Version: 1:0.2.904+svn842-2 Severity: normal Tags: upstream I see related reports for other hardware. After updating to Squeeze (pre-release 2011-01-20) from Lenny with KDE desktop a board with onboard graphics reported as: KM400/KN400/P4M800 [S3 UniChrome] in Xorg.0.log hangs after displaying the "disk drive" icon during KDE login. The kdm login box is redisplayed but cursor is not blinking and num lock is unresponsive on keyboard. After some searching I saw references to disabling DRI, this worked. More careful inspection of the Xorg.0.log showed it was enabling GLX and AIGLX, and this card doesn't have hardware to accelerate those features, so enabling "DRI" and disabling "GLX" in the xorg.conf seems to have resolved the issue with less impact on performance. Last error in .xsession-errors was "Could not start ksmserver. Check your installation." which led me astray. Please advise if you require additional information. I believe this may duplicate similar bugs reported, but since the hardware is slightly different I opened an additional bug report. -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-486 Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xserver-xorg-video-via depends on: ii xserver-xorg-video-op 1:0.2.904+svn842-2 X.Org X server -- VIA display driv xserver-xorg-video-via recommends no packages. xserver-xorg-video-via suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#609762: amavisd-milter: Init script changes owner of current directory to 'amavis'
On Thu, Jan 20, 2011 at 10:19:28PM +0100, Harald Jenny wrote: > Hello Agustin Martin > > > Typical problems with those chained '&&' appear when 'set -e' is used, but > > amavisd-milter init script does not use it. > > Ah ok thanks will keep this info in mind. Note that ''||' chains are different, will only fail if all components fail. However, chaining too much also affects readability. > > When there are more that two elements in the chain, I usually find these > > if-clauses way more readable and so easier to debug. > > I checked with other init scripts an in order to have a consistent coding > style > in the init script I replaced the && with if-clauses - could you take a look > at > it and tell me if this looks better to you? It indeed looks better to me, thanks. While I did not test myself I think you may have problems with empty $MILTERSOCKET with dash as interpreter in if [ $MILTERSOCKET -a "`echo $MILTERSOCKET | grep -v ^inet`" ] as in e.g., 8< test #!/bin/sh bs="bs" if [ $as -a $bs ]; then echo "Hi" fi 8<--- end test $ dash test [: 5: -a: unexpected operator Quoting variables should help. Also I am not sure of full portability of -a there (although seems to not be a problem with dash). Maintainer scripts normally use chained '&&' in the if clause (note that this is different from standalone '&&' chains and is not a problem under 'set -e') I'd write above line as if [ "$MILTERSOCKET" ] && [ "`echo $MILTERSOCKET | grep -v ^inet`" ]; then but as Teodor points out (just read it), second check seems to be enough. Also, I'd do a more extensive variable quoting, if [ "$MILTERSOCKET" ]; then if [ "$AMAVISSOCKET" ]; then ... besides those Teodor points out. -- Agustin -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#598616: cuneiform: development package is needed
Version: 1.0.0+dfsg-1 I attach the trivial solution for the bug: the library header cuneiform.h is packaged as libcuneiform-dev.deb Please consider for inclusion. Perhaps it also makes sense to split "cuneiform" package into "cuneiform" (binary only) and "libcuneiform" (.so only) and update the dependencies. diff -du -ruN debian.orig/control debian/control --- debian.orig/control 2010-09-10 16:34:51.0 +0200 +++ debian/control 2011-01-21 11:13:21.0 +0100 @@ -33,3 +33,19 @@ Swedish, Turkish and Ukrainian. . This package contains the common files. + +Package: libcuneiform-dev +Architecture: any +Section: libdevel +Depends: ${misc:Depends}, cuneiform +Description: multi-language OCR system (headers) + Cuneiform is an OCR system. In addition to text recognition it also does layout + analysis and text format recognition. + . + The following languages are supported: Bulgarian, Croatian, Czech, Danish, + Dutch, English, Estonian, French, German, Hungarian, Italian, Latvian, + Lithuanian, Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Spanish, + Swedish, Turkish and Ukrainian. + . + This package contains the development header files. + diff -du -ruN debian.orig/libcuneiform-dev.install debian/libcuneiform-dev.install --- debian.orig/libcuneiform-dev.install1970-01-01 01:00:00.0 +0100 +++ debian/libcuneiform-dev.install 2011-01-21 10:56:38.0 +0100 @@ -0,0 +1 @@ +/usr/include/cuneiform.h
Bug#610694: nagios3-doc: Documentation not accessible when nagios3 is running in apache
Package: nagios3-doc Severity: normal Tags: patch - Install nagios3 and nagios3-doc (I did it in that order, altough i am not sure if the order is important) on squeeze. - Surf to http://YOURSYSTEM/nagios3/ - Click on the Documentation link in the left menu and you will get a message saying that this is not accessible This is because there is a wrong directory index for /nagios3/docs/ defined This is fixed by adding to following three lines to /etc/nagios3/apache2.conf: DirectoryIndex index.html PS: I am reporting as a bug against nagios3-doc, because I am not sure which of the nagios-related packages generates /etc/nagios3/apache2.conf -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-xen-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#608744: unblock: mercurial-server/1.1-1
2011/1/3 Mehdi Dogguy : > On 01/03/2011 11:31 AM, Teodor wrote: >> >> Please unblock package mercurial-server. The two RC bugs for this >> package were fixed so it should get back for inclussion in Debian 6.0 >> (squeeze). >> > > I think it's too late to get it back in Squeeze. I guess this would be the last chance to have mercurial-server in Debian 6.0. It is 26 days old [1] since the RC bugs were fixed and no more issues reported. Please accept it. Thanks -- [1] http://qa.debian.org/excuses.php?package=mercurial-server -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#609843: unblock: snort/2.8.5.2-7
On Tue, January 18, 2011 23:51, Javier Fernandez-Sanguino wrote: > 2011/1/18 Adam D. Barratt : >> On Thu, 2011-01-13 at 00:09 +0100, Javier Fernández-Sanguino Peña wrote: >>> Please unblock the snort package version 2.8.5.2-7. This package fixes >>> the >>> following RC bugs: #608590, #603428 and #566308 >> >> So, after having stared at it for a while, I think I've convinced myself >> that the configuration management code isn't entirely crazy, which is a >> good start; on the other hand, this, from each of >> snort{,-inline,-mysql,-pgsql}.prerm looks odd: >> >> + start-stop-daemon --stop --quiet --oknodo --exec >> /usr/sbin/nessusd > > That shouldn't be there. I don't know how or when this got in but I > will remove it as soon as possible. Thanks. Any estimate on when you'll have chance to make the new upload? Regards, Adam -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#609762: amavisd-milter: Init script changes owner of current directory to 'amavis'
2011/1/21 Agustin Martin : > if [ "$MILTERSOCKET" ] && [ "`echo $MILTERSOCKET | grep -v ^inet`" ]; then > > but as Teodor points out (just read it), second check seems to be enough. Only that I realized latter the intention of this construction. My previous suggestion was to use this construction on its own without "test": if echo "$MILTERSOCKET" | grep -q -v "^inet"; then ... fi (the return code is set by grep) This works too but there is an extra test for the empty string: if [ "$(echo $MILTERSOCKET | grep -v ^inet)" ]; then ... fi (the return code is set by 'test') Thanks -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610695: gnome-terminal from squeeze does not respect height and width options from gconf
Package: gnome-terminal Version: 2.30.2-1 Severity: normal gnome-terminal from the Debian squeeze does not use the 'default_size_columns' and 'default_size_rows' from the /apps/gnome-terminal/profiles/Default/ folder of gconf This is an important usability failure since user can't make default windows desired size and should be fixed as soon as possible. Please don't suggest to use command-line switch --geometry since it's not the same thing. -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (500, 'testing'), (450, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages gnome-terminal depends on: ii gnome-terminal-data 2.30.2-1 Data files for the GNOME terminal ii libatk1.0-0 1.30.0-1 The ATK accessibility toolkit ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib ii libdbus-glib-1-2 0.88-2.1 simple interprocess messaging syst ii libgconf2-4 2.28.1-6 GNOME configuration database syste ii libglib2.0-0 2.24.2-1 The GLib library of C routines ii libgtk2.0-0 2.20.1-2 The GTK+ graphical user interface ii libice6 2:1.0.6-2 X11 Inter-Client Exchange library ii libpango1.0-0 1.28.3-1 Layout and rendering of internatio ii libsm62:1.1.1-1 X11 Session Management library ii libvte9 1:0.24.3-2 Terminal emulator widget for GTK+ ii libx11-6 2:1.3.3-4 X11 client-side library Versions of packages gnome-terminal recommends: ii gvfs 1.6.4-3 userspace virtual filesystem - ser ii yelp 2.30.1+webkit-1 Help browser for GNOME gnome-terminal suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#603544:
I would agree if there was at least a way to disable that migration. to work-around this bug. That migration is actually not even needed at this moment, so IMO it should even be disabled by default as long as it is not working completely for everybody. I will have to put the slapd package on hold on all my systems before upgrading to squeeze because of this bug. On the systems where I upgraded the slapd already, I'm holding of installing or upgrading any package, because on every package update, my slapd servers breaks. That's definitely not a nice thing for a released product, even if it does not happen for everyone. -- Frederik Himpe Vrije Universiteit Brussel -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#561264: courier-mta: net/ipv6/bindv6only=1 still an issue
On 01/21/2011 08:11 AM, Mark Constable wrote: Package: courier-mta Version: 0.65.0-3 Severity: normal It seems this default setting may contradict RFC 3493. On 01/20/2011 03:31 PM, Sam Varshavchik wrote: Courier's code relies on being able to use IPv6 sockets to connect to either IPv4 or IPv6 addresses. There is no way to configure that an IPv4 socket be used for IPv4 addresses, and IPv6 sockets for IPv6 addresses. Doing something like this requires some code rewriting. Wouldn't the easiest fix be to use IPV6_V6ONLY mentioned in section 5.3 of RFC 3493? No, that's something that's unrelated. But RFC 3493 also serves as a clear counterexample to what Debian's doing. The language in section 3.7 is just as clear as day: Applications may use AF_INET6 sockets to open TCP connections to IPv4 nodes, or send UDP packets to IPv4 nodes, by simply encoding the destination's IPv4 address as an IPv4-mapped IPv6 address, and passing that address, within a sockaddr_in6 structure, in the connect() or sendto() call. The upstream author said this issue will be next on his "chopping block". Regards Racke -- LinuXia Systems => http://www.linuxia.de/ Expert Interchange Consulting and System Administration ICDEVGROUP => http://www.icdevgroup.org/ Interchange Development Team -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#466603: now fixed in 1.5.21
I can confirm this bug has been solved in version 1.5.21-2 in experimental. -- Regards, Aron Xu -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#603554: Bug#603552: Update theme SpaceFun and wiki page
On dim., 2011-01-16 at 08:49 +0100, Daniel Baumann wrote: > On 01/13/2011 10:52 PM, Adam D. Barratt wrote: > > Is there anything that still needs to happen on the syslinux side > > yes. > > > if so, could it either happen soon or for 6.0.1, please? :) > > like i said[0], after my vac[1]. > > [0] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604783#27 > [1] <4d025597.1090...@debian.org> on debian-private > Assuming your back from [VAC], is there any news from this? Regards, -- Yves-Alexis -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610696: udev: Udev changes device file ACLs and depends on consolekit
Package: udev Version: 164-3 Severity: normal Hi, udev contains support for consolekit. The rule file 70-acl.rules and /lib/udev/udev-acls change the ACLs of certain device files to give local users access. I consider this a serious security problem. I have a guest account to let others use my system. When they log in, they automatically gain access to these devices. And they can keep this access even after logout, if they so wish, by starting a background job that keeps the device open. Think: camera and microphone. Consolekit is broken by design and there is no way of fixing these security implications. The only real fix is, to not use consolekit, and stick with the traditional scheme of letting root decide who gets permissions for what. Consolekit takes away this control from root. In my opinion, root should always be in full control. I'd suggest to move 70-acl.rules to the consolekit package and remove the dependency to consolekit. This way, nothing changes for folks who value convenience over everything else. But those who value security and like to be in full control over their own system, would no longer be forced to use consolekit. In any case, it seems more logical to me, that consolekit specifica should be contained in the consolekit package. Cheers, harry -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.37-hb (SMP w/2 CPU cores) Locale: LANG=POSIX, LC_CTYPE=de_AT.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages udev depends on: ii debconf [debconf-2.0] 1.5.36 Debian configuration management sy ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib ii libselinux1 2.0.96-1 SELinux runtime shared libraries ii libudev0164-3libudev shared library ii libusb-0.1-42:0.1.12-16 userspace USB programming library ii lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip ii util-linux 2.17.2-5 Miscellaneous system utilities Versions of packages udev recommends: ii pciutils 1:3.1.7-6 Linux PCI Utilities ii usbutils 0.87-5 Linux USB utilities udev suggests no packages. -- Configuration Files: /etc/udev/udev.conf changed [not included] -- debconf information excluded -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#585559: Bug #58559: mutt: tokyocabinet is slower than gdbm
I confirm this problem affects me. I didn't do very precise benchmark, but with 4000+ mails in a Maildir, tokyocabinet takes ~90s to build the initial cache on my btrfs partition, but gdbm only takes ~50s to do the same thing. After building the initial cache, it will take about ~2s for tokyocabinet to read the cached headers before sorting mailbox, but gdbm can do that in a flash. -- Regards, Aron Xu -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#585559: Bug #58559: mutt: tokyocabinet is slower than gdbm
On Fri, Jan 21, 2011 at 21:52, Aron Xu wrote: > I confirm this problem affects me. > > I didn't do very precise benchmark, but with 4000+ mails in a Maildir, > tokyocabinet takes ~90s to build the initial cache on my btrfs > partition, but gdbm only takes ~50s to do the same thing. After > building the initial cache, it will take about ~2s for tokyocabinet to > read the cached headers before sorting mailbox, but gdbm can do that > in a flash. > I am using 1.5.21-2 from experimental. -- Regards, Aron Xu -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#603552: Bug#603554: Bug#603552: Update theme SpaceFun and wiki page
On 01/21/2011 02:32 PM, Yves-Alexis Perez wrote: > Assuming your back from [VAC], is there any news from this? like i said[0].. i'm on the last steps of testing and upload RSN. [0] http://lists.debian.org/debian-release/2011/01/msg00583.html -- Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist Email: daniel.baum...@progress-technologies.net Internet: http://people.progress-technologies.net/~daniel.baumann/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610697: grub-common: start windows XP from raw.qemu into EXT3 partition
Package: grub-common Version: 1.98+20100804-11 Severity: wishlist Hello I would like to use windows XP without emulation (so no wine, nor qmeu, or vmware or others) so directly to start with 100% power microsoft windows XP at normal speed and performances - well you would tell me : dual boot man ! - well ok, but I do not want to install a NTFS and keep the RAW image of my qmeu and use it from teh Boot Grub that launches it like dual booting but will write all those stuff into RAW image located into my ext3 please could you code that.,.. it is not that hard in principle, with using all today's tools. Thank you in advnance ! Kind regards Y. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages grub-common depends on: ii base-files 5.10 Debian base system miscellaneous f ii dpkg1.15.8.7 Debian package management system ii gettext-base0.18.1.1-3 GNU Internationalization utilities ii install-info4.13a.dfsg.1-6 Manage installed documentation in ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib ii libdevmapper1.02.1 2:1.02.48-4 The Linux Kernel Device Mapper use ii libfreetype62.4.2-2.1FreeType 2 font engine, shared lib ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime Versions of packages grub-common recommends: ii os-prober 1.42 utility to detect other OSes on a Versions of packages grub-common suggests: pn grub-emu (no description available) pn multiboot-doc (no description available) pn xorriso(no description available) -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#591756: udeb size increase for vconfig support in busybox
Matthew Palmer writes: > Just for the record, the difference between the size of the binary in > busybox-udeb 1.17.1-9 (as is currently in git) when built on i386 with and > without vconfig is 384 bytes. I wonder if you really need this after all. vconfig is deprecated, and even the current squueze RC1 busybox seems to understand # ip link add link eth0 name vlan10 type vlan id 10 although the operation itself fails. On my squeeze desktop, # modprobe dummy # ip link add link dummy0 name vlan type vlan id 10 works all right, and even # busybox ip link del vlan does its deed, but # busybox ip link add link dummy0 name vlan type vlan id 10 ip: RTNETLINK answers: Invalid argument So I guess the support is there in busybox right now, but unfortunately it's broken by some bug. -- Regards, Feri. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#583670: RSS feed for Debian news?
Hi Derrick! Am 21.01.2011 00:22, schrieb Derrick Gibelyou: > I was looking at the Debian news page, and would like to stay informed. I > saw the links to subscribe to the mailing lists, however I did not any > options to subscribe to an RSS feed. Although I am not worried about the > security of my email address with Debian, I think that it would be really > nice to have the option of subscribing to a feed. Are there any plans for > adding one? Indeed there are; they are tracked as bug #583670, which no one found time so far to take care of. However, I just looked at the situation, and it seems lot easier than originally thought, so I hope that we might provide you with an RSS feed soonish. Best regards, Alexander -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#604987: Acknowledgement (amarok: Classical music)
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#609535: psiconv: Patch for GraphicsMagick API change causing crash on startup
* Reuben Thomas , 2011-01-19, 19:05: you can always build against ImageMagick instead. I played a little bit more and unfortunately psiconv rebuilt against ImageMagick sometimes produces different images that the one from lenny. For examples/Clipart, the latter produces 71-page TIFF, while the former only a single-page image. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#584676: Info received (Bug#584676: kmail losing open compositions (autosave directory)))
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610698: Fix FTBFS with ld --no-add-needed
Package: gupnp-av Version: 0.6.3-1 Severity: important Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu natty ubuntu-patch User: peter.fritzs...@gmx.de Usertags: no-add-needed details at http://wiki.debian.org/ToolChain/DSOLinking patch at http://launchpadlibrarian.net/62555180/gupnp-av_0.6.3-1_0.6.3-1ubuntu1.diff.gz please have a look at #554759 and #554758 too. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#533178: w/a or Solution
I did more investigations and compared a System with Lenny installed from scratch (where it was working well) with my upgraded system. I fixed it as follows: backup your apt-proxy-v2.conf Find all installed twisted packages: dpkg -l | grep python-twisted purge all of them using apt-get remove --purge I needed to remove zope too: apt-get remove --purge python-zopeinterface Then install apt-proxy again: apt-get install apt-proxy replace the config-file and restart apt-proxy I now have this remaining complaints: /etc/init.d/apt-proxy start Starting apt-proxy:/usr/lib/python2.5/site-packages/twisted/manhole/telnet.py:8: DeprecationWarning: As of Twisted 2.1, twisted.protocols.telnet is deprecated. See twisted.conch.telnet for the current, supported API. from twisted.protocols import telnet None /usr/lib/python2.5/site-packages/twisted/manhole/telnet.py:8: DeprecationWarning: As of Twisted 2.1, twisted.protocols.telnet is deprecated. See twisted.conch.telnet for the current, supported API. from twisted.protocols import telnet None see 599180 -- Christian Hilgers ch...@familie-hilgers.com -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#583670: RSS feed for Debian news?
Hi! * Alexander Reichle-Schmehl [110121 15:07]: > However, I just looked at the situation, and it seems lot easier than > originally thought, so I hope that we might provide you with an RSS feed > soonish. Based on the RDF feeds in security are created, I just commited a News/news.rdf.in (revision 1.1) and some changes for template/debian/recent_list.wml (revision 1.135), which solve part of this bug. With these changes, you can go to english/News and run "wml -q -D CUR_YEAR=2011 -o UNDEFuEN:news.en.rdf@g+w -D CUR_LANG=English -D CUR_ISO_LANG=en -D CHARSET=iso-8859-1 ../../english/News/news.rdf.in" and it will result a news.en.rdf, which looks quite good. recent_list.wml is more or less copy pasted from the coresponding stuff done for security; I guess someone more knowledgeable in perl could merge those two and avoid the code duplication. However, what I did not completly understood is all the stuff in security/Makefile, so I couldn't copy them into News/Makfefile and activate them. Hope someone else knows how to do that. Best Regards, Alexander -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#590776: python-django-djblets -- Re-usable components for Django
Package: wnpp Severity: normal Hi, I'm interested in maintaining python-django-djblets. I'm an enthusiastic student and developer in the django community. I'd love to be able to contribute as a maintainer. -- Joe Cabrera signature.asc Description: This is a digitally signed message part
Bug#610116: Assigning to the right package
reassign 610116 grub-installer thanks -- Mathieu -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610699: org-mode: please add code from contrib/
Package: org-mode Severity: wishlist There are useful packages in the contrib/ subdirectory of org-mode, (such as org-checklist, which I use very frequently) putting those in the org-mode package would be neat, and make this package useful for me. -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (990, 'testing'), (500, 'karmic'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) (ignored: LC_ALL set to de_DE.utf8) Shell: /bin/sh linked to /bin/bash Versions of packages org-mode depends on: ii dpkg 1.15.8.8 Debian package management system ii emacs23 23.2+1-7 The GNU Emacs editor (with GTK+ us ii install-info 4.13a.dfsg.1-6 Manage installed documentation in org-mode recommends no packages. Versions of packages org-mode suggests: pn ditaa (no description available) pn easypg (no description available) pn remember-el(no description available) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610697: grub-common: start windows XP from raw.qemu into EXT3 partition
On 01/21/2011 02:52 PM, yellow wrote: > Package: grub-common > Version: 1.98+20100804-11 > Severity: wishlist > > Hello > > I would like to use windows XP without emulation (so no wine, nor qmeu, or > vmware or others) > so directly to start with 100% power microsoft windows XP at normal speed and > performances > > - well you would tell me : dual boot man ! > > - well ok, but I do not want to install a NTFS and keep the RAW image of my > qmeu and use it from teh Boot Grub > that launches it like dual booting but will write all those stuff into RAW > image located into my ext3 > > While it is possible to make bootmgr/ntldr/any other program using BIOS calls think that a given file is a real disk by intercepting int 13h, it won't get you far. The problem is that the moment windows/any other modern OS switches to its own device drivers it will fail to find its boot device and throw error/bluescreen/reboot. GNU/Linux is able to do such tricks only because by the means of initramfs one has complete control over from where to mount the root. No such luxury in m$ OSes. While this is feasible by writing special disk driver which will add this "virtual disk", I doubt this is the right place to find the people with both right knowledge and motivation > please could you code that.,.. it is not that hard in principle, with using > all today's tools. > > > Thank you in advnance ! > > Kind regards > Y. > > -- System Information: > Debian Release: squeeze/sid > APT prefers testing > APT policy: (500, 'testing') > Architecture: i386 (i686) > > Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores) > Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) > Shell: /bin/sh linked to /bin/dash > > Versions of packages grub-common depends on: > ii base-files 5.10 Debian base system miscellaneous > f > ii dpkg1.15.8.7 Debian package management system > ii gettext-base0.18.1.1-3 GNU Internationalization > utilities > ii install-info4.13a.dfsg.1-6 Manage installed documentation > in > ii libc6 2.11.2-7 Embedded GNU C Library: Shared > lib > ii libdevmapper1.02.1 2:1.02.48-4 The Linux Kernel Device Mapper > use > ii libfreetype62.4.2-2.1FreeType 2 font engine, shared > lib > ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime > > Versions of packages grub-common recommends: > ii os-prober 1.42 utility to detect other OSes on > a > > Versions of packages grub-common suggests: > pn grub-emu (no description available) > pn multiboot-doc (no description available) > pn xorriso(no description available) > > -- no debconf information > > > > ___ > Pkg-grub-devel mailing list > pkg-grub-de...@lists.alioth.debian.org > http://lists.alioth.debian.org/mailman/listinfo/pkg-grub-devel > > -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature
Bug#592752: coinor-libipopt-dev: Problems linking libipopt to a sequential program
I finished testing, and here's the result: I can link successfully by providing either -ldmumps_seq-4.9.2 or -ldmumps-4.9.2. However, in the latter case the programm aborts at run time with the same error message as in my original post. Additionally linking with libmpi does not help. Hence I come the same conclusion as the poster of 592324: MUMPS needs to be dependency, and a hint about the necessary libraries would be helpful. Support for pkg-config would still be greatly appreciated, but I acknowledge that it is probably to late for that in squeeze. Cheers, Oliver -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610700: initramfs-tools: settings from conf.d/* are not visible for hook scripts
Package: initramfs-tools Version: 0.98.7 Severity: normal As far as I understand, /etc/initramfs-tools/conf.d is a directory to configure intramfs-tools without touching the main configuration file initramfs-tools.conf. But there's some inconsistency here: it looks to me that only the settings from initramfs.conf are visible to hook scripts, whereas those from conf.d/* are not. It would be nice, for example, to check the BOOT setting from hook scripts and skip growing the initramfs uselessly if the selected boot method does not require some features. But currently this is not possible if a value is assigned to BOOT via a file in conf.d. -- Package-specific info: -- initramfs sizes -rw-r--r-- 1 root root 15M Jan 21 13:15 /boot/initrd.img-2.6.32-5-amd64 -- /proc/cmdline BOOT_IMAGE=/vmlinuz-2.6.32-5-amd64 root=/dev/mapper/mranderson-root ro quiet -- resume RESUME=/dev/mapper/mranderson-swap_crypt -- /proc/filesystems ext4 fuseblk ext2 ext3 reiserfs xfs jfs msdos vfat ntfs minix hfs hfsplus qnx4 ufs btrfs -- lsmod Module Size Used by nls_utf81208 0 nls_cp437 5817 0 btrfs 375670 0 zlib_deflate 17746 1 btrfs crc32c 2560 1 libcrc32c 1074 1 btrfs ufs56474 0 qnx46194 0 hfsplus65270 0 hfs37455 0 minix 21197 0 ntfs 162796 0 vfat7884 0 msdos 6202 0 fat40038 2 vfat,msdos jfs 140089 0 xfs 436941 0 exportfs3170 1 xfs reiserfs 194156 0 ext3 106518 0 jbd37085 1 ext3 ext2 52969 0 ecryptfs 79791 1 ip6table_filter 2384 0 ip6_tables 15075 1 ip6table_filter iptable_filter 2258 0 ip_tables 13899 1 iptable_filter ebtable_nat 1588 0 ebtables 13933 1 ebtable_nat x_tables 12845 3 ip6_tables,ip_tables,ebtables ppdev 5030 0 lp 7462 0 sco 7209 2 bnep9427 2 acpi_cpufreq5571 1 rfcomm 29597 8 cpufreq_userspace 1992 0 cpufreq_stats 2659 0 l2cap 24736 16 bnep,rfcomm cpufreq_conservative 5162 0 cpufreq_powersave902 0 kvm_intel 38146 0 uinput 6376 1 binfmt_misc 6431 1 kvm 214088 1 kvm_intel fuse 50625 1 sha256_generic 8692 2 aes_x86_64 7340 200 aes_generic25714 1 aes_x86_64 cbc 2539 197 loop 11799 0 firewire_sbp2 11514 0 dm_crypt 10664 1 snd_hda_codec_intelhdmi10695 1 snd_hda_codec_idt 42481 1 arc41274 2 snd_hda_intel 20019 3 snd_hda_codec 54244 3 snd_hda_codec_intelhdmi,snd_hda_codec_idt,snd_hda_intel ecb 1841 3 snd_hwdep 5380 1 snd_hda_codec snd_pcm60503 2 snd_hda_intel,snd_hda_codec iwlagn 73123 0 snd_seq42881 0 iwlcore77810 1 iwlagn snd_timer 15582 2 snd_pcm,snd_seq uvcvideo 52063 0 snd_seq_device 4493 1 snd_seq joydev 8459 0 videodev 29993 1 uvcvideo snd46446 15 snd_hda_codec_intelhdmi,snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_seq,snd_timer,snd_seq_device i2c_i8017830 0 btusb 9881 0 hid_microsoft 2695 0 v4l1_compat11442 2 uvcvideo,videodev bluetooth 41827 7 sco,bnep,rfcomm,l2cap,btusb mac80211 137340 2 iwlagn,iwlcore v4l2_compat_ioctl32 8474 1 videodev psmouse49777 0 dell_laptop 1985 0 soundcore 4598 1 snd cfg80211 101496 3 iwlagn,iwlcore,mac80211 parport_pc 18855 0 rfkill 13044 4 bluetooth,dell_laptop,cfg80211 snd_page_alloc 6249 2 snd_hda_intel,snd_pcm dcdbas 5048 1 dell_laptop parport27954 3 ppdev,lp,parport_pc serio_raw 3752 0 pcspkr 1699 0 container 2389 0 battery 4998 0 ac 2192 0 processor 29935 5 acpi_cpufreq wmi 4323 0 evdev 7352 31 usbhid 33292 0 hid63225 2 hid_microsoft,usbhid ext4 289033 6 mbcac
Bug#609581: calibre: summary of upstreams
* Hamish , 2011-01-22, 00:18: - in the mean time, xpdf, under the same author/company, and in the advent of GPL3, has now become GPL2+. Any references for this? As far as I can see, the last release of xpdf was 3.02 (in 2007), and its README doesn't say anything about later versions of GPL. There were a few security patches released since then, but they don't change licensing. http://packages.debian.org/changelogs/pool/main/x/xpdf/xpdf_3.02-12/xpdf.copyright This looks like a bug in debian/copyright. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610697: grub-common: start windows XP from raw.qemu into EXT3 partition
On 01/21/2011 03:28 PM, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > On 01/21/2011 02:52 PM, yellow wrote: > >> Package: grub-common >> Version: 1.98+20100804-11 >> Severity: wishlist >> >> Hello >> >> I would like to use windows XP without emulation (so no wine, nor qmeu, or >> vmware or others) >> so directly to start with 100% power microsoft windows XP at normal speed >> and performances >> >> - well you would tell me : dual boot man ! >> >> - well ok, but I do not want to install a NTFS and keep the RAW image of my >> qmeu and use it from teh Boot Grub >> that launches it like dual booting but will write all those stuff into RAW >> image located into my ext3 >> >> >> > While it is possible to make bootmgr/ntldr/any other program using BIOS > calls think that a given file is a real disk by intercepting int 13h, it > won't get you far. The problem is that the moment windows/any other > modern OS switches to its own device drivers it will fail to find its > boot device and throw error/bluescreen/reboot. GNU/Linux is able to do > such tricks only because by the means of initramfs one has complete > control over from where to mount the root. No such luxury in m$ OSes. > While this is feasible by writing special disk driver which will add > this "virtual disk", I doubt this is the right place to find the people > with both right knowledge and motivation > On the other hand many coders including myself are available for hire. >> please could you code that.,.. it is not that hard in principle, with using >> all today's tools. >> >> >> Can you please resurect this body? it is not that hard in principle, with using all today's tools. > >> Thank you in advnance ! >> >> Kind regards >> Y. >> >> -- System Information: >> Debian Release: squeeze/sid >> APT prefers testing >> APT policy: (500, 'testing') >> Architecture: i386 (i686) >> >> Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores) >> Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) >> Shell: /bin/sh linked to /bin/dash >> >> Versions of packages grub-common depends on: >> ii base-files 5.10 Debian base system >> miscellaneous f >> ii dpkg1.15.8.7 Debian package management system >> ii gettext-base0.18.1.1-3 GNU Internationalization >> utilities >> ii install-info4.13a.dfsg.1-6 Manage installed documentation >> in >> ii libc6 2.11.2-7 Embedded GNU C Library: Shared >> lib >> ii libdevmapper1.02.1 2:1.02.48-4 The Linux Kernel Device Mapper >> use >> ii libfreetype62.4.2-2.1FreeType 2 font engine, shared >> lib >> ii zlib1g 1:1.2.3.4.dfsg-3 compression library - runtime >> >> Versions of packages grub-common recommends: >> ii os-prober 1.42 utility to detect other OSes on >> a >> >> Versions of packages grub-common suggests: >> pn grub-emu (no description available) >> pn multiboot-doc (no description available) >> pn xorriso(no description available) >> >> -- no debconf information >> >> >> >> ___ >> Pkg-grub-devel mailing list >> pkg-grub-de...@lists.alioth.debian.org >> http://lists.alioth.debian.org/mailman/listinfo/pkg-grub-devel >> >> >> > > -- Regards Vladimir 'φ-coder/phcoder' Serbinenko signature.asc Description: OpenPGP digital signature
Bug#219650: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#567576: traceback
Package: bittornado Version: 0.3.18-10 Severity: normal Up to date Sid, just got this same error myself: $ btlaunchmanycurses --max_download_rate 100 --max_upload_rate 30 --minport 1 --maxport 10020 . /usr/lib/pymodules/python2.6/BitTornado/__init__.py:8: DeprecationWarning: the sha module is deprecated; use the hashlib module instead from sha import sha EXCEPTION: Traceback (most recent call last): File "/usr/lib/pymodules/python2.6/BitTornado/RawServer.py", line 144, in listen_forever self.sockethandler.handle_events(events) File "/usr/lib/pymodules/python2.6/BitTornado/SocketHandler.py", line 319, in handle_events s.handler.data_came_in(s, data) File "/usr/lib/pymodules/python2.6/BitTornado/BT1/Encrypter.py", line 394, in data_came_in self.read(s) File "/usr/lib/pymodules/python2.6/BitTornado/BTcrypto.py", line 92, in read self._read(self.decrypt(s)) File "/usr/lib/pymodules/python2.6/BitTornado/BT1/Encrypter.py", line 479, in _read2 x = self.next_func(m) File "/usr/lib/pymodules/python2.6/BitTornado/BT1/Encrypter.py", line 360, in read_message self.connecter.got_message(self, s) File "/usr/lib/pymodules/python2.6/BitTornado/BT1/Connecter.py", line 256, in got_message c.download.got_unchoke() File "/usr/lib/pymodules/python2.6/BitTornado/BT1/Downloader.py", line 127, in got_unchoke self._request_more(new_unchoke = True) File "/usr/lib/pymodules/python2.6/BitTornado/BT1/Downloader.py", line 237, in _request_more self.downloader.start_endgame() File "/usr/lib/pymodules/python2.6/BitTornado/BT1/Downloader.py", line 567, in start_endgame assert not self.endgamemode AssertionError -- System Information: Debian Release: 6.0 APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.36.2-corwin0.1 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages bittornado depends on: ii python 2.6.6-3+squeeze5 interactive high-level object-orie ii python-support 1.0.11 automated rebuilding support for P Versions of packages bittornado recommends: ii mime-support 3.51-1 MIME files 'mime.types' & 'mailcap ii python-crypto 2.1.0-2cryptographic algorithms and proto Versions of packages bittornado suggests: ii bittornado-gui0.3.18-10 bittorrent client with GUI interfa pn python-psyco (no description available) -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#520050: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610701: unblock: request-tracker3.8/3.8.8-7
Package: release.debian.org Severity: normal User: release.debian@packages.debian.org Usertags: freeze-exception Please unblock package request-tracker3.8 I sent an email yesterday[1] about the security fix made in 3.8.8-7 which I was planning to upload. I've now made this upload to unstable. The upload also includes: - two small documentation fixes - one Severity: important bugfix As I said in my previous message, I believe that these are all suitable for squeeze, but depending on how one reads the freeze exception policy may not be allowed (non-RC fixes in conjunction with an RC fix?). I would prefer if this version can be unblocked, but would understand if you would prefer another upload only fixing the security issue to t-p-u. The magic cut and paste line: unblock request-tracker3.8/3.8.8-7 Many thanks for continued work in the run-up to the release of squeeze! Best wishes, Dominic. [1] http://lists.debian.org/debian-release/2011/01/msg00593.html -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610692: Duplicate bug
Sorry, I found a closed bug that should be reopened: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607145 -- Greetings -- http://mariodebian.com signature.asc Description: This is a digitally signed message part
Bug#610702: libmpc2: copyright information is incorrect
Package: libmpc2 Version: 0.8.2-1+b1 Severity: serious Justification: Policy 2.3 Note: this copyright problem partly comes from upstream. /usr/share/doc/libmpc2/copyright says: Copyright: But though these are the authors of the software, they do not have the copyright, their employer (INRIA) has, according to the French law. -- System Information: Debian Release: 6.0 APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/8 CPU cores) Locale: LANG=POSIX, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages libmpc2 depends on: ii libc6 2.11.2-8 Embedded GNU C Library: Shared lib ii libgmp3c2 2:4.3.2+dfsg-1 Multiprecision arithmetic library ii libmpfr4 3.0.0-2multiple precision floating-point libmpc2 recommends no packages. libmpc2 suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#583670: RSS feed for Debian news?
Gosh, this even seems easy. I'll volunteer to take a crack at this. Is the mailing list the definitive source? Do we want Atom as well as RSS? - "Alexander Reichle-Schmehl" wrote: > Hi Derrick! > Am 21.01.2011 00:22, schrieb Derrick Gibelyou: > > I was looking at the Debian news page, and would like to stay informed. I > > saw the links to subscribe to the mailing lists, however I did not any > > options to subscribe to an RSS feed. Although I am not worried about the > > security of my email address with Debian, I think that it would be really > > nice to have the option of subscribing to a feed. Are there any plans for > > adding one? > Indeed there are; they are tracked as bug #583670, which no one found > time so far to take care of. > However, I just looked at the situation, and it seems lot easier than > originally thought, so I hope that we might provide you with an RSS feed > soonish. > Best regards, > Alexander > -- > To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org > with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org > Archive: http://lists.debian.org/4d399310@debian.org -- Ean Schuessler, CTO e...@brainfood.com 214-720-0700 x 315 Brainfood, Inc. http://www.brainfood.com
Bug#609581: calibre: summary of upstreams
On Friday 21 January 2011 12:18:26 Hamish wrote: > Package: calibre > Followup-For: Bug #609581 > > fwiw, some background history and modern day reading.. > > - poppler is a fork of xpdf, which (apparently) at the time of forking > was GPL2 only. thus poppler became GPL2 only as well. > http://cgit.freedesktop.org/poppler/poppler/tree/README > http://cgit.freedesktop.org/poppler/poppler/tree/README-XPDF true. > - in the mean time, xpdf, under the same author/company, and in the advent > of GPL3, has now become GPL2+. > author contact: Derek B. Noonburg > but that little "+" was missing at the time of poppler forking. > http://packages.debian.org/changelogs/pool/main/x/xpdf/xpdf_3.02-12/xpdf.co > pyright Erm? do you have any authorative souces for that? upstream homepage is very clear that it is gplv2only. I think that there is a bug in the xpdf copyright file. CC'ing xpdf > I ack the problem, but it all seems a little academic.. If your facts is correct, then I would agree. But I cannot find any sources to back up that claim. /Sune -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610703: bug webpages should use white-space: pre-wrap
Package: bugs.debian.org Bugs submitted via email from mailers like Apple Mail (starting in OSX 10.6.2+) show up as one long line in the bug archives, with a horizontal scrollbar. This is unfortunate. This started happening because they now just use long lines, and quoted-printable to wrap them into the mail payload when they're too long for SMTP, instead of format=flowed like they did before. And the bug archive software decodes quoted-printable, but didn't decode format=flowed. Here's an example of a rather unfortunate page: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560781 The solution is to add: pre { white-space: pre-wrap; } to /css/bugs.css James -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#591756: udeb size increase for vconfig support in busybox
Hi, On Fri Jan 21, 2011 at 15:02:30 +0100, Ferenc Wagner wrote: > Matthew Palmer writes: > > > Just for the record, the difference between the size of the binary in > > busybox-udeb 1.17.1-9 (as is currently in git) when built on i386 with and > > without vconfig is 384 bytes. > > I wonder if you really need this after all. vconfig is deprecated, and > even the current squueze RC1 busybox seems to understand > > # ip link add link eth0 name vlan10 type vlan id 10 > > although the operation itself fails. On my squeeze desktop, > > # modprobe dummy > # ip link add link dummy0 name vlan type vlan id 10 > > works all right, and even > > # busybox ip link del vlan > > does its deed, but > > # busybox ip link add link dummy0 name vlan type vlan id 10 > ip: RTNETLINK answers: Invalid argument > > So I guess the support is there in busybox right now, but unfortunately > it's broken by some bug. Are you sure the vlan kernel modules are loaded? I think we might miss the vlan modules (8021q garp stp) in d-i for that. Cheers, Martin -- Martin Zobel-Helas | Debian System Administrator Debian & GNU/Linux Developer | Debian Listmaster Public key http://zobel.ftbfs.de/5d64f870.asc - KeyID: 5D64 F870 GPG Fingerprint: 5DB3 1301 375A A50F 07E7 302F 493E FB8E 5D64 F870 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#224677: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#418113: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610704: rp-pppoe remotenumber patch
Package: rp-pppoe Version: 3.8 With the RADIUS plugin pppd sending Caller-Station-ID attribute to radius server. But it need to know the IP address of caller station. It use information from 'remotenumber' command line option. I created a very small patch, which add the 'remotenumber XX:XX:XX:XX:XX:XX' command line with MAC-address to pppd command line. Withowt it pppd don't send Caller-Station-ID attribute to radius server. I already using this path many years at my ISP platform. It working good ! It is very important for ISP to know remote user IP. Please, consider to include it in distribution (see attached file). I created this patch for rp-pppoe version 3.10, but it works with version 3.8 also. diff -ru rp-pppoe-3.10.orig/man/pppoe-server.8 rp-pppoe-3.10/man/pppoe-server.8 --- rp-pppoe-3.10.orig/man/pppoe-server.8 2008-06-30 17:00:42.0 +0300 +++ rp-pppoe-3.10/man/pppoe-server.8 2009-11-24 04:57:39.0 +0200 @@ -160,7 +160,7 @@ .nf nodetach noaccomp nobsdcom nodeflate nopcomp novj novjccomp -default-asyncmap +default-asyncmap remotenumber EE:EE:EE:EE:EE:EE .fi In addition, the local and remote IP address are set based on the diff -ru rp-pppoe-3.10.orig/src/pppoe-server.c rp-pppoe-3.10/src/pppoe-server.c --- rp-pppoe-3.10.orig/src/pppoe-server.c 2008-06-30 17:00:43.0 +0300 +++ rp-pppoe-3.10/src/pppoe-server.c 2009-11-24 04:59:12.0 +0200 @@ -1754,6 +1754,13 @@ sprintf(buffer, "%u", (unsigned int) (ntohs(session->sess) - 1 - SessOffset)); argv[c++] = buffer; } + +argv[c++] = "remotenumber"; +snprintf(buffer, SMALLBUF, "%02x:%02x:%02x:%02x:%02x:%02x", + session->eth[0], session->eth[1], session->eth[2], + session->eth[3], session->eth[4], session->eth[5]); +argv[c++] = strdup(buffer); + argv[c++] = NULL; execv(PPPD_PATH, argv);
Bug#610705: delegate IP-address configuration to pppd
Package: rp-pppoe When starting pppd, pppoe-server add local and remote address to it's command line. But when I'm using pppd configuration for address assigment (for ex. in pap-servrets or radius), then IP's specified in command line of pppd by pppoe-server prevents normal working of address configuration. There are no any way to turn off address assigment by pppoe-server. By analogy, pptpd daemon have configuration option 'delegate' which delegate address assigment to pppd. I created patch, which add new option "-D" to pppoe-server, which cause pppoe-server to skip adding addresses to pppd's command line and delegate it to pppd configuration (pap-secrets or radius server). This working fine for me many years and I think it will be very usefull to other ISP's like me. Please, consider to include this patch in distribution. diff -rubB rp-pppoe-3.10.orig/man/pppoe-server.8 rp-pppoe-3.10/man/pppoe-server.8 --- rp-pppoe-3.10.orig/man/pppoe-server.8 2008-06-30 17:00:42.0 +0300 +++ rp-pppoe-3.10/man/pppoe-server.8 2009-12-16 16:31:15.510557097 +0200 @@ -77,6 +77,11 @@ of 10.67.15.1 is used. .TP +.B \-D +Delegate the allocation of IP addresses to \fBpppd\fR. If specified, no +local and remote addresses passed to pppd. + +.TP .B \-N \fInum\fR Allows at most \fInum\fR concurrent PPPoE sessions. If not specified, the default is 64. diff -rubB rp-pppoe-3.10.orig/src/pppoe-server.c rp-pppoe-3.10/src/pppoe-server.c --- rp-pppoe-3.10.orig/src/pppoe-server.c 2008-06-30 17:00:43.0 +0300 +++ rp-pppoe-3.10/src/pppoe-server.c 2009-12-16 16:30:39.614556323 +0200 @@ -163,6 +163,9 @@ unsigned char LocalIP[IPV4ALEN] = {10, 0, 0, 1}; /* Counter optionally STARTS here */ unsigned char RemoteIP[IPV4ALEN] = {10, 67, 15, 1}; /* Counter STARTS here */ +/* Delegates the allocation of IP addresses to pppd (as the pptpd doing) */ +int DelegateIPAllocation = 0; + /* Do we increment local IP for each connection? */ int IncrLocalIP = 0; @@ -229,6 +232,7 @@ memset(&conn, 0, sizeof(conn)); conn.useHostUniq = 0; +if (!DelegateIPAllocation) { syslog(LOG_INFO, "Session %u closed for client " "%02x:%02x:%02x:%02x:%02x:%02x (%d.%d.%d.%d) on %s", @@ -238,6 +242,15 @@ (int) session->realpeerip[0], (int) session->realpeerip[1], (int) session->realpeerip[2], (int) session->realpeerip[3], session->ethif->name); +} else { + syslog(LOG_INFO, + "Session %u closed for client " + "%02x:%02x:%02x:%02x:%02x:%02x on %s", + (unsigned int) ntohs(session->sess), + session->eth[0], session->eth[1], session->eth[2], + session->eth[3], session->eth[4], session->eth[5], + session->ethif->name); +} memcpy(conn.myEth, session->ethif->mac, ETH_ALEN); conn.discoverySocket = session->ethif->sock; conn.session = session->sess; @@ -1044,6 +1057,7 @@ fprintf(stderr, " -L ip -- Set local IP address.\n"); fprintf(stderr, " -l -- Increment local IP address for each session.\n"); fprintf(stderr, " -R ip -- Set start address of remote IP pool.\n"); +fprintf(stderr, " -D -- Delegates the allocation of IP addresses to pppd.\n"); fprintf(stderr, " -S name-- Advertise specified service-name.\n"); fprintf(stderr, " -O fname -- Use PPPD options from specified file\n"); fprintf(stderr, " (default %s).\n", PPPOE_SERVER_OPTIONS); @@ -1103,9 +1117,9 @@ #endif #ifndef HAVE_LINUX_KERNEL_PPPOE -char *options = "x:hI:C:L:R:T:m:FN:f:O:o:sp:lrudPc:S:1"; +char *options = "x:hI:C:L:R:DT:m:FN:f:O:o:sp:lrudPc:S:1"; #else -char *options = "x:hI:C:L:R:T:m:FN:f:O:o:skp:lrudPc:S:1"; +char *options = "x:hI:C:L:R:DT:m:FN:f:O:o:skp:lrudPc:S:1"; #endif if (getuid() != geteuid() || @@ -1283,6 +1297,10 @@ } break; + case 'D': + DelegateIPAllocation = 1; + break; + case 'T': case 'm': /* These just get passed to pppoe */ @@ -1719,6 +1737,7 @@ argv[c++] = "file"; argv[c++] = pppoptfile; +if (!DelegateIPAllocation) { snprintf(buffer, SMALLBUF, "%d.%d.%d.%d:%d.%d.%d.%d", (int) session->myip[0], (int) session->myip[1], (int) session->myip[2], (int) session->myip[3], @@ -1734,6 +1753,16 @@ session->ethif->name, session->serviceName); argv[c++] = strdup(buffer); +} else { + syslog(LOG_INFO, + "Session %u created for client %02x:%02x:%02x:%02x:%02x:%02x on %s using Service-Name '%s'", + (unsigned int) ntohs(session->sess), + session->eth[0], session->eth[1], session->eth[2], + session->eth[3], session->eth[4], session->eth[5], + session->ethif->name, + session->serviceName); +} + if (!argv[c-1]) { /* TODO: Send a PADT */ exit(EXIT_FAILURE); @@ -1805,6 +1834,7 @@ argv[c++] = "file"; argv[c++] = pppoptfile; +if (!DelegateIPAllocation) { snprintf(buffer, SMALLBUF, "%d.%d.%d.%d:%d.%d.%d.%d",
Bug#493166: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610706: ark: crashes when opening/extracting rar-archives unsupported by unrar-free
Package: ark Version: 4:4.4.5-1 Severity: normal When trying to open or extract rar-archives that are not supported by unrar- free while using unrar-free to provide /usr/bin/unrar Ark crashes. This behaviour is not observed when either opening rar-archives that unrar-free can extract or when using unrar-nonfree to provide /usr/bin/unrar. What happens when you try to use unrar-free: $ unrar --extract file.rar Extracting from ~/file.rar Extracting archive.content Failed 1 Failed Opening the same file with ark leads to a crash. $ gdb ark GNU gdb (GDB) 7.0.1-debian [...] This GDB was configured as "i486-linux-gnu". [...] Reading symbols from /usr/bin/ark...(no debugging symbols found)...done. (gdb) run file.rar Starting program: /usr/bin/ark file.rar [Thread debugging using libthread_db enabled] [New Thread 0xb389cb70 (LWP 11334)] [New Thread 0xb2effb70 (LWP 11335)] Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0xb389cb70 (LWP 11334)] 0xb6a2b8d5 in QDateTimeParser::fromString(QString const&, QDate*, QTime*) const () from /usr/lib/libQtCore.so.4 There are no errors when opening files that unrar manages to extract or when using unrar-nonfree. It would be preferable for ark to give an error message stating that it cannot open or extract the archive and if possible explain in the message that this is due to the version of unrar being used. -- System Information: Debian Release: 6.0 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores) Locale: LANG=fi_FI.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages ark depends on: ii kdebase-runtime 4:4.4.5-1 runtime components from the offici ii libarchive1 2.8.4-1Single library to read/write tar, ii libc6 2.11.2-7 Embedded GNU C Library: Shared lib ii libkdecore5 4:4.4.5-2 the KDE Platform Core Library ii libkdeui5 4:4.4.5-2 the KDE Platform User Interface Li ii libkfile4 4:4.4.5-2 the File Selection Dialog Library ii libkhtml5 4:4.4.5-2 the KHTML Web Content Rendering En ii libkio5 4:4.4.5-2 the Network-enabled File Managemen ii libkonq5 4:4.4.5-2 core libraries for Konqueror ii libkparts44:4.4.5-2 the Framework for the KDE Platform ii libqt4-dbus 4:4.6.3-4 Qt 4 D-Bus module ii libqtcore44:4.6.3-4 Qt 4 core module ii libqtgui4 4:4.6.3-4 Qt 4 GUI module ii libstdc++64.4.5-8The GNU Standard C++ Library v3 Versions of packages ark recommends: ii bzip2 1.0.5-6 high-quality block-sorting file co ii p7zip-full 9.04~dfsg.1-1 7z and 7za file archivers with hig ii unzip 6.0-4 De-archiver for .zip files ii zip3.0-3 Archiver for .zip files Versions of packages ark suggests: pn rar(no description available) ii unrar-free 1:0.0.1+cvs20071127-1 Unarchiver for .rar files -- no debconf information Application: Ark (ark), signal: Segmentation fault [Current thread is 1 (Thread 0xb5422710 (LWP 11486))] Thread 3 (Thread 0xb2fb9b70 (LWP 11487)): [KCrash Handler] #6 QBasicAtomicInt::ref (this=0xb2fb8538, t=..., date=0x0, time=0xb2fb8708) at ../../include/QtCore/../../src/corelib/arch/qatomic_i386.h:120 #7 QString (this=0xb2fb8538, t=..., date=0x0, time=0xb2fb8708) at ../../include/QtCore/../../src/corelib/tools/qstring.h:715 #8 QDateTimeParser::fromString (this=0xb2fb8538, t=..., date=0x0, time=0xb2fb8708) at tools/qdatetime.cpp:5499 #9 0xb614a338 in QTime::fromString (string=..., format=...) at tools/qdatetime.cpp:1980 #10 0xb2fbcc2e in CliPlugin::readListLine (this=0xa1c29b0, line=...) at ../../../../ark/plugins/clirarplugin/cliplugin.cpp:150 #11 0xb76e12b0 in Kerfuffle::CliInterface::handleLine (this=0xa1c29b0, line=...) at ../../../ark/kerfuffle/cliinterface.cpp:523 #12 0xb76e1896 in Kerfuffle::CliInterface::readStdout (this=0xa1c29b0, handleAll=false) at ../../../ark/kerfuffle/cliinterface.cpp:468 #13 0xb76e1b83 in Kerfuffle::CliInterface::qt_metacall (this=0xa1c29b0, _c=QMetaObject::InvokeMetaMethod, _id=6, _a=0xb2fb89bc) at ./cliinterface.moc:80 #14 0xb2fbc7d2 in CliPlugin::qt_metacall (this=0xa1c29b0, _c=QMetaObject::InvokeMetaMethod, _id=6, _a=0xb2fb89bc) at ./cliplugin.moc:66 #15 0xb62327aa in QMetaObject::metacall (object=0xa1c29b0, cl=2992635905, idx=6, argv=0xb2fb89bc) at kernel/qmetaobject.cpp:237 #16 0xb62411bb in QMetaObject::activate (sender=0xa1cb710, m=0xb633f848, local_signal_index=5, argv=0x0) at kernel/qobject.cpp:3295 #17 0xb61c3627 in QProcess::readyReadStandardOutput (this=0xa1cb710) at .moc/releas
Bug#547664: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#274861: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#583670: RSS feed for Debian news?
Hi! Am 21.01.2011 15:53, schrieb Ean Schuessler: > Gosh, this even seems easy. I'll volunteer to take a crack at this. Very good! See my update in #583670; some work is already done, the last remaining bits are to tweak News/Makefile (based on the Makefile in security/) to actually build the RDF feed. Well, and to test, if it still works with other languages than en ;) > Is the mailing list the definitive source? Sorry, I don't understand that question. > Do we want Atom as well as RSS? I don't know the benefits of Atom over RDF, so leave that to the web masters to decide. If Atom is introduced for the News, it would certainly make sense to also create Atom for the security updates and the project News. Best regards, Alexander -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610560: gammu: FTBFS: needs python-sphinx 1.0+ from experimental
Michal Čihař writes: > The options for now seem to be either to disable documentation build or > just ignore the failure till new sphinx is available. Thanks for clarifying the situation. If the architecture-dependent packages don't need to ship any generated documentation, you could also mitigate the problem by moving python-sphinx to Build-Depends-Indep and adjusting debian/rules to cope with the possibility that it might be absent (or too old to be of interest). Although the unsatisfiable build dependency would still formally be a bug, it would at least no longer affect the autobuilders. (The only other practical impact of such a bug would be to hold up migration to testing, but that's in deep freeze at the moment anyway.) Could you please consider such a change? Thanks! -- Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org) http://www.mit.edu/~amu/ | http://stuff.mit.edu/cgi/finger/?a...@monk.mit.edu -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610524: Preseed: Debian Installer asks for keyboard-configuration/variant
Hello Samuel, Am 20.01.2011 18:47, schrieb Samuel Thibault: > Dennis Hoppe, le Thu 20 Jan 2011 09:57:32 +0100, a écrit : >> Am 20.01.2011 01:44, schrieb Samuel Thibault: >>> Christian PERRIER, le Wed 19 Jan 2011 18:29:33 +0100, a écrit : Quoting Dennis Hoppe (dennis.ho...@credativ.de): > the Debian Installer at the current daily squeeze build asks for the > parameter "keyboard-configuration/variant". > > I have added the following line to my preseed config, but it would be > nice if those changes would be mentioned at the preseed_example.txt on > http://www.debian.org/releases/testing/example-preseed.txt. > > keyboard-configuration keyboard-configuration/variant select Deutschland Yes, apparently, there's no example about keyboard-configuration in the pressed documentation in the Installation Guide. >>> >>> I have added some the other day. >>> >>> Dennis, can you confirm that >>> >>> d-i console-keymaps-at/keymap select us >>> d-i keyboard-configuration/xkb-keymap select us >>> >>> is enough? >> >> unfortunately that is not enough. The parmeter "d-i >> keyboard-configuration/variant select Deutschland" is necessary. >> >> The following config works for me. > > But the problem is that it shouldn't be needed, because xkb-keymap > provides a value for layout and sets it as seen. > > And it is indeed not needed for me in my tests. What I'm doing is > booting with the following parameter given on the kernel command line: > > keyboard-configuration/xkb-keymap=de > > I never get asked for the variant. Could you perhaps post your whole > preseed file (with passwords replaced with foobar), so I can test with > exactly the same parameters? of course. Here ist my little config. Regards, Dennis Contents of the preconfiguration file (for squeeze) ### Localization # Preseeding only locale sets language, country and locale. d-i debian-installer/locale string de_DE.UTF-8 # Bug: 610524 d-i keyboard-configuration/variant select Deutschland # The values can also be preseeded individually for greater flexibility. #d-i debian-installer/language string en #d-i debian-installer/country string NL #d-i debian-installer/locale string en_GB.UTF-8 # Optionally specify additional locales to be generated. #d-i localechooser/supported-locales en_US.UTF-8, nl_NL.UTF-8 # Keyboard selection. #d-i console-tools/archs select at d-i console-keymaps-at/keymap select de-latin1-nodeadkeys # Example for a different keyboard architecture #d-i console-keymaps-usb/keymap select mac-usb-us ### Network configuration # Disable network configuration entirely. This is useful for cdrom # installations on non-networked devices where the network questions, # warning and long timeouts are a nuisance. #d-i netcfg/enable boolean false # netcfg will choose an interface that has link if possible. This makes it # skip displaying a list if there is more than one interface. d-i netcfg/choose_interface select auto # To pick a particular interface instead: #d-i netcfg/choose_interface select eth1 # If you have a slow dhcp server and the installer times out waiting for # it, this might be useful. #d-i netcfg/dhcp_timeout string 60 # If you prefer to configure the network manually, uncomment this line and # the static network configuration below. #d-i netcfg/disable_dhcp boolean true # If you want the preconfiguration file to work on systems both with and # without a dhcp server, uncomment these lines and the static network # configuration below. #d-i netcfg/dhcp_failed note #d-i netcfg/dhcp_options select Configure network manually # Static network configuration. #d-i netcfg/get_nameservers string 192.168.1.1 #d-i netcfg/get_ipaddress string 192.168.1.42 #d-i netcfg/get_netmask string 255.255.255.0 #d-i netcfg/get_gateway string 192.168.1.1 #d-i netcfg/confirm_static boolean true # Any hostname and domain names assigned from dhcp take precedence over # values set here. However, setting the values still prevents the questions # from being shown, even if values come from dhcp. d-i netcfg/get_hostname string unassigned-hostname d-i netcfg/get_domain string unassigned-domain # Disable that annoying WEP key dialog. d-i netcfg/wireless_wep string # The wacky dhcp hostname that some ISPs use as a password of sorts. #d-i netcfg/dhcp_hostname string radish # If non-free firmware is needed for the network or other hardware, you can # configure the installer to always try to load it, without prompting. Or # change to false to disable asking. #d-i hw-detect/load_firmware boolean true ### Network console # Use the following settings if you wish to make use of the network-console # component for remote installation over SSH. This only makes sense if you # intend to perform the remainder of the installation manually. #d-i anna/choose_modules string network-console #d-i network-console/password password r00tme #d-i network-console/password-again password r00tme ### Mirror settings # If you select ftp, the
Bug#610707: RM: cuneiform/0.7.0+dfsg.1-1 -- RoM
Package: release.debian.org Severity: normal User: release.debian@packages.debian.org Usertags: rm I don't think cuneiform is mature enough to be shipped in a stable release. I'm not willing to support it for the squeeze lifetime. Please remove it from testing. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610702: Pointer to official texts
Indeed, and the law stating this can be found in english at [1]. It's the article L. 113-9 (last one on the page) [1] http://195.83.177.9/code/liste.phtml?lang=uk&c=36&r=2495#art9764 signature.asc Description: This is a digitally signed message part.
Bug#591756: udeb size increase for vconfig support in busybox
Martin Zobel-Helas writes: > On Fri Jan 21, 2011 at 15:02:30 +0100, Ferenc Wagner wrote: > >> Matthew Palmer writes: >> >>> Just for the record, the difference between the size of the binary in >>> busybox-udeb 1.17.1-9 (as is currently in git) when built on i386 with and >>> without vconfig is 384 bytes. >> >> I wonder if you really need this after all. vconfig is deprecated, and >> even the current squueze RC1 busybox seems to understand >> >> # ip link add link eth0 name vlan10 type vlan id 10 >> >> although the operation itself fails. On my squeeze desktop, >> >> # modprobe dummy >> # ip link add link dummy0 name vlan type vlan id 10 >> >> works all right, and even >> >> # busybox ip link del vlan >> >> does its deed, but >> >> # busybox ip link add link dummy0 name vlan type vlan id 10 >> ip: RTNETLINK answers: Invalid argument >> >> So I guess the support is there in busybox right now, but unfortunately >> it's broken by some bug. > > Are you sure the vlan kernel modules are loaded? I think we might miss > the vlan modules (8021q garp stp) in d-i for that. That was my first thought as well. But then I tried on a squeeze desktop, where iproute had no difficulty adding the tagged interface, but busybox still failed (although it could delete it beforehand). -- Cheers, Feri. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610526: Preseed: Debian Installer ignores hostname parameter
Hello Matthew, Am 20.01.2011 02:16, schrieb Matthew Palmer: > I'm having some trouble reproducing your bug report. > > Here are the exact steps I took: > > 1) Download the mini.iso from > http://mirror.internode.on.net/pub/debian/dists/lenny/main/installer-i386/20090123lenny8/images/netboot/ > (other mirrors should have the same; md5sum is > 1f497d52bb97c03810d3e87d8ecf5d94) > > 2) Boot the installer ISO in a KVM VM > > 3) At the graphical isolinux boot screen, press TAB and add 'hostname=basic' > to the end of the command line > > (I can't use priority=critical because I need to set a local Debian mirror, > and auto=true just asks for a preseed file -- which I don't have because you > haven't provided it) > > 4) Manually configure the network (I disabled my DHCP server so that it > wouldn't provide a hostname) with an IP address that doesn't reverse resolve > (to avoid hostname being overridden via rDNS) > > 5) When it asks to configure the mirror, drop into a console and verify that > the temporary environment has the right hostname with cat /etc/hostname > > 6) Let the installation proceed, automatically partitioning the disk and > setting up some dummy users > > 7) When it comes to installing grub, drop back to a console and verify that > the target environment has the right hostname with cat /target/etc/hostname > > 8) Complete the install, reboot, note that the booted system has the correct > hostname. > > Now, I know that a number of things are different between your report and my > method of reproduction, but they *should* (big emphasis there) be irrelevant > to how the hostname is preseeded. Obviously one of them isn't irrelevant, > so we need to work out what it is. > > Things to check: > > * The kernel and initrd you're booting with; can I get the md5sums of them > and where you got them from? i am using the file "debian-multi_5.0.7.iso" from one of the official Debian mirrors and have not changed the initrd. I only modified the file "isolinux/txt.cfg" to choose a specific preseed config. > * Booting without a preseed file... it's possible that your preseed file is > doing something hinky, so if you *must* test with a preseed file, we'll > need a copy of it. Of course. Here ist my little preseed config. But exact the same file worked with Debian 5.0.6 and also works with Debian 6.x.x. > * Dropping priority=critical for the purposes of testing would be > good, too, to keep things consistent and to rule it out (although early > testing showed that /etc/hostname had the right value in it). During the whole installation process the file "target/etc/hostname" hast the content "unassinged-hostname" and the dhcp of virtualbox does not offer any hostnames. Regards, Dennis Contents of the preconfiguration file (for lenny) ### Localization # Locale sets language and country. d-i debian-installer/locale string de_DE.UTF-8 # Keyboard selection. #d-i console-tools/archs select at d-i console-keymaps-at/keymap select de-latin1-nodeadkeys # Example for a different keyboard architecture #d-i console-keymaps-usb/keymap select mac-usb-us ### Network configuration # netcfg will choose an interface that has link if possible. This makes it # skip displaying a list if there is more than one interface. d-i netcfg/choose_interface select auto # To pick a particular interface instead: #d-i netcfg/choose_interface select eth1 # If you have a slow dhcp server and the installer times out waiting for # it, this might be useful. #d-i netcfg/dhcp_timeout string 60 # If you prefer to configure the network manually, uncomment this line and # the static network configuration below. #d-i netcfg/disable_dhcp boolean true # If you want the preconfiguration file to work on systems both with and # without a dhcp server, uncomment these lines and the static network # configuration below. #d-i netcfg/dhcp_failed note #d-i netcfg/dhcp_options select Configure network manually # Static network configuration. #d-i netcfg/get_nameservers string 192.168.1.1 #d-i netcfg/get_ipaddress string 192.168.1.42 #d-i netcfg/get_netmask string 255.255.255.0 #d-i netcfg/get_gateway string 192.168.1.1 #d-i netcfg/confirm_static boolean true # Any hostname and domain names assigned from dhcp take precedence over # values set here. However, setting the values still prevents the questions # from being shown, even if values come from dhcp. d-i netcfg/get_hostname string unassigned-hostname d-i netcfg/get_domain string unassigned-domain # Disable that annoying WEP key dialog. d-i netcfg/wireless_wep string # The wacky dhcp hostname that some ISPs use as a password of sorts. #d-i netcfg/dhcp_hostname string radish # If non-free firmware is needed for the network or other hardware, you can # configure the installer to always try to load it, without prompting. Or # change to false to disable asking. #d-i hw-detect/load_firmware boolean true ### Network console # Use the following settings if you wish to make use of
Bug#270887: xbase-clients: startx and xinit do not preserve client arguments
forwarded 270887 https://bugs.freedesktop.org//show_bug.cgi?id=2595 thanks The patch attached upstream is different but it looks as it's doing the exact same thing. I didn't test any of those patch though... Best Regards -- Julien Viard de Galbert http://silicone.homelinux.org/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610708: python-mecavideo: not installable due to missing dependency
Package: python-mecavideo Version: 5.3-8 Severity: grave User: trei...@debian.org Usertags: edos-uninstallable Hello, python-mecavideo is not installable on any architecture since it depends on ffmpeg (>= 5:0.6.1+svn20101128). However, the version of ffmpeg availabe in sid is only 4:0.5.2-6. -Ralf. -- Ralf Treinen Laboratoire Preuves, Programmes et Systèmes Université Paris Diderot, Paris, France. http://www.pps.jussieu.fr/~treinen/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#505481: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#503671: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#548543: close
close -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#610709: ftbfs with binutils-gold
Package: ddns3-client Version: 1.8-8 Severity: minor Tags: patch User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu natty ubuntu-patch *** /tmp/tmpklRtCq In Ubuntu, the attached patch was applied to achieve the following: Hi, the package fails building with bintuils-gold, using ld --no-add-needed, this pacth solve this problem. * Merge from debian unstable. Remaining changes: - debian/patches/fix-ld-as-needed: Fix FTBFS binutils-gold with ld --no-add-needed by declaring LIBS after object. Thanks for considering the patch. -- System Information: Debian Release: squeeze/sid APT prefers natty-updates APT policy: (500, 'natty-updates'), (500, 'natty-security'), (500, 'natty') Architecture: amd64 (x86_64) Kernel: Linux 2.6.37-8-generic (SMP w/1 CPU core) Locale: LANG=es_ES.utf8, LC_CTYPE=es_ES.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash diff -Nru ddns3-client-1.8/debian/patches/fix-ld-no-add-needed ddns3-client-1.8/debian/patches/fix-ld-no-add-needed --- ddns3-client-1.8/debian/patches/fix-ld-no-add-needed 1970-01-01 01:00:00.0 +0100 +++ ddns3-client-1.8/debian/patches/fix-ld-no-add-needed 2011-01-21 17:01:53.0 +0100 @@ -0,0 +1,15 @@ +Description: Fix ftbfs with ld --no-add-needed +Author: Mahyuddin Susanto +Bug-Ubuntu: https://launchpad.net/bugs/704868 + +--- ddns3-client-1.8.orig/GNUmakefile ddns3-client-1.8/GNUmakefile +@@ -19,7 +19,7 @@ LIBS=$(LINUX_LIBS) + all: ddns3 + + ddns3: ddns3.c libddns3.a +- $(CC) ${CFLAGS} $(LIBS) ddns3.c libddns3.a -o ddns3 ++ $(CC) ${CFLAGS} ddns3.c libddns3.a -o ddns3 $(LIBS) + + libddns3.a: sockio.o crypto.o auth.o md5.o ctx.o + $(AR) -cr libddns3.a *.o diff -Nru ddns3-client-1.8/debian/patches/series ddns3-client-1.8/debian/patches/series --- ddns3-client-1.8/debian/patches/series 2011-01-20 14:24:26.0 +0100 +++ ddns3-client-1.8/debian/patches/series 2011-01-21 17:01:30.0 +0100 @@ -1 +1,2 @@ debian-changes-1.8-8 +fix-ld-no-add-needed