Re: .deb package for a library generation

2010-08-10 Thread Yves-Alexis Perez
I won't comment on the main issue since other people gave you the solution. On dim., 2010-08-08 at 16:45 +0300, Zvi Dubitzky wrote: I need to generate a Debian package for a library As an exercise I tried it with libvirt . Note that libvirt is already packaged so you can inspire you of the

Re: It's realy working,

2010-08-10 Thread maria
Hi thanks For forwarding this mail which help many people to earn if it is not fake could You please send some proofs so that we can ensure that the company is paying and tell us how to make a use of it and the whole process . Maria

why are there /bin and /usr/bin...

2010-08-10 Thread Bruce Sass
/sbin and /usr/sbin, /lib and /usr/lib directories? AFAICT, the reason is so that a minimal but functional system is guaranteed to exist so long as a local HDD with a root filesystem is available (which doesn't necessarily include /usr); and that is a good thing to have because it gives

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Stanislav Maslovski
On Tue, Aug 10, 2010 at 03:15:35AM -0600, Bruce Sass wrote: /sbin and /usr/sbin, /lib and /usr/lib directories? AFAICT, the reason is so that a minimal but functional system is guaranteed to exist so long as a local HDD with a root filesystem is available (which doesn't necessarily include

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Simon McVittie
On Tue, 10 Aug 2010 at 03:15:35 -0600, Bruce Sass wrote: AFAICT, the reason is so that a minimal but functional system is guaranteed to exist so long as a local HDD with a root filesystem is available The fact that you can use it for troubleshooting/repairs is a nice (and desirable)

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Mario 'BitKoenig' Holbe
Simon McVittie s...@debian.org wrote: The FHS says mkfs.* have to be on the root filesystem. I'm not entirely clear why this is. Well, I personally believe this holds for at least two of the purposes listed in FHS Chapter 3: * To enable recovery and/or repair of a system * To restore a system

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Bruce Sass
On August 10, 2010 04:18:10 am Stanislav Maslovski wrote: On Tue, Aug 10, 2010 at 03:15:35AM -0600, Bruce Sass wrote: /sbin and /usr/sbin, /lib and /usr/lib directories? AFAICT, the reason is so that a minimal but functional system is guaranteed to exist so long as a local HDD with a root

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Bruce Sass
On August 10, 2010 04:25:07 am Simon McVittie wrote: On Tue, 10 Aug 2010 at 03:15:35 -0600, Bruce Sass wrote: AFAICT, the reason is so that a minimal but functional system is guaranteed to exist so long as a local HDD with a root filesystem is available The fact that you can use it for

Is Jonas Genannt MIA?

2010-08-10 Thread Ernesto Hernández-Novich
I am particularly interested in liblog-dispatch-perl [1] because it's blocking other things I need to fix in webgui. Regardless, his QA page shows little activity. Has anyone seen any sign of him? [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576912 -- Ernesto Hernández-Novich - @iamemhn

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Russ Allbery
Simon McVittie s...@debian.org writes: It might be worth having a Lintian check for the situation you describe, since missing libraries will generally prevent the executable from starting up at all, whereas missing bits of /usr/share or /var might not be so important. Unfortunately, there

Re: More advanced home directory creation in Debian?

2010-08-10 Thread Ian Jackson
Petter Reinholdtsen writes (More advanced home directory creation in Debian?): It would be nice if all the tools copying /etc/skel/ also had a common location for their post-creating scripts, making sure users created by for example adduser, lwat, libpam-mkhomedir and libpam-mklocaluser get

Re: chromium-browser from experimental has included h.264 by default?

2010-08-10 Thread Adam D. Barratt
On Tue, 2010-05-11 at 20:55 +0200, Moritz Muehlenhoff wrote: On 2010-05-11, Reinhard Tartler siret...@debian.org wrote: Surely not. Chromium ships a *private* copy of ffmpeg, more precisely, a fork of ffmpeg called ffmpeg-mt. Debian does not include ffmpeg-mt because of bug #575600 (tagged

Usage of /var/lib for databases not properly described in policy

2010-08-10 Thread Andreas Tille
Hi, I just tried to give some advise about proper placement of database files in a Debian package and I was sure I could simply link to the relevant paragraph in policy but there is none. Is the usage of /var/lib/pkgname just a reasonable habit which is shared by postgresql, mysql and probably

Sprints (Was: (seasoned) bits from the DPL: comm, derivatives, delegations, money)

2010-08-10 Thread Andreas Tille
On Tue, Aug 10, 2010 at 04:30:14PM +0200, Stefano Zacchiroli wrote: - I've been contacting (thanks to Sune Vuorela and Michael Prokop) people from the KDE e.V. board about their incredibly successful sprint program [11]. I'm still fleshing out details (ATM we have significantly less

Re: Usage of /var/lib for databases not properly described in policy

2010-08-10 Thread Don Armstrong
On Tue, 10 Aug 2010, Andreas Tille wrote: I just tried to give some advise about proper placement of database files in a Debian package and I was sure I could simply link to the relevant paragraph in policy but there is none. Is the usage of /var/lib/pkgname just a reasonable habit which is

Re: More advanced home directory creation in Debian?

2010-08-10 Thread Petter Reinholdtsen
[Ian Jackson] So while it doesn't use run-parts, it's halfway there already. I use adduser.local on chiark. Definitely useful, but not enought, as the debian-edu-config package would break policy if it included a file in /usr/local/, and only one package can provide this script at the time

Re: Usage of /var/lib for databases not properly described in policy

2010-08-10 Thread Steve Langasek
On Tue, Aug 10, 2010 at 10:29:39PM +0200, Andreas Tille wrote: I just tried to give some advise about proper placement of database files in a Debian package and I was sure I could simply link to the relevant paragraph in policy but there is none. Is the usage of /var/lib/pkgname just a

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Goswin von Brederlow
Bruce Sass bms...@shaw.ca writes: I was curious so... $ for f in /bin/* /sbin/*; do if [ `file $f | grep ELF` != ] ; then if [ `ldd $f | grep /usr` != ] ; then echo `dpkg -S $f`; ldd $f; fi; fi; done iputils-ping: /bin/ping6 linux-gate.so.1 = (0xb770d000)

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Steve Langasek
On Tue, Aug 10, 2010 at 11:53:10PM +0200, Goswin von Brederlow wrote: Bruce Sass bms...@shaw.ca writes: Note that there is /lib/libcrypt* (at least here). This is just the more optimized flavour the ld.so picks when the cpu supports it. libcrypt != libcrypto. -- Steve Langasek

Re: why are there /bin and /usr/bin...

2010-08-10 Thread brian m. carlson
On Tue, Aug 10, 2010 at 11:53:10PM +0200, Goswin von Brederlow wrote: Bruce Sass bms...@shaw.ca writes: I was curious so... $ for f in /bin/* /sbin/*; do if [ `file $f | grep ELF` != ] ; then if [ `ldd $f | grep /usr` != ] ; then echo `dpkg -S $f`; ldd $f; fi; fi; done

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Bruce Sass
On August 10, 2010 03:53:10 pm Goswin von Brederlow wrote: Bruce Sass bms...@shaw.ca writes: I was curious so... $ for f in /bin/* /sbin/*; do if [ `file $f | grep ELF` != ] ; then if [ `ldd $f | grep /usr` != ] ; then echo `dpkg -S $f`; ldd $f; fi; fi; done iputils-ping: /bin/ping6

Re: why are there /bin and /usr/bin...

2010-08-10 Thread Steve Langasek
On Tue, Aug 10, 2010 at 03:15:35AM -0600, Bruce Sass wrote: iputils-ping: /bin/ping6 linux-gate.so.1 = (0xb770d000) libresolv.so.2 = /lib/i686/cmov/libresolv.so.2 (0x472dc000) libcrypto.so.0.9.8 = /usr/lib/i686/cmov/libcrypto.so.0.9.8 (0x4882b000) libc.so.6

Re: doc-base is hugely unloved; bug mass-filing needed?

2010-08-10 Thread Ian Zimmerman
Steve Langasek vorlon at debian.org writes: But again, as Thomas points out, you can address this use case with much less per-package effort. A centralized ten-line shell script would be enough to locate all the installed packages on the system that ship files under /usr/share/doc not

Notes from the DebConf Source Format BoF

2010-08-10 Thread Russ Allbery
After a discussion on IRC, I organized a BoF at DebConf10 to discuss new source formats, specifically 3.0 (git). Below are the notes from that discussion. I tried to take reasonably comprehensive notes, but I'm sure that I missed things. Other participants, please add any additional bits that I

Bug#592572: ITP: Marave -- A text editor that helps you focus on writing.

2010-08-10 Thread Chris Silva
Package: wnpp Severity: wishlist Owner: Chris Silva rac...@makeworld.com * Package name: Marave Version : 0.7 Upstream Author : Roberto Alsina rals...@netmanagers.com.ar * URL : http://code.google.com/p/marave/ * License : GPL-2+ Programming Lang: Python

Re: doc-base is hugely unloved; bug mass-filing needed?

2010-08-10 Thread brian m. carlson
On Tue, Aug 10, 2010 at 06:08:50PM +, Ian Zimmerman wrote: PDFs have titles too, and they can't be snarfed in any way I know of. pdftk will dump the info dictionary for PDFs, but if you want something a little less heavyweight, try: lakeview ok % zgrep -a '^/Title'

Accepted autoconf-nonfree 2.67-1 (source all)

2010-08-10 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 09 Aug 2010 23:13:03 -0700 Source: autoconf-nonfree Binary: autoconf-doc Architecture: source all Version: 2.67-1 Distribution: unstable Urgency: low Maintainer: Russ Allbery r...@debian.org Changed-By: Russ Allbery

Accepted imsniff 0.04-6 (source i386)

2010-08-10 Thread Juan Angulo Moreno
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Format: 1.8 Date: Mon, 09 Aug 2010 16:41:13 -0430 Source: imsniff Binary: imsniff Architecture: source i386 Version: 0.04-6 Distribution: unstable Urgency: low Maintainer: Juan Angulo Moreno j...@apuntale.com Changed-By: Juan Angulo Moreno

Accepted motion 3.2.12-2 (source i386)

2010-08-10 Thread Juan Angulo Moreno
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Format: 1.8 Date: Sun, 08 Aug 2010 17:20:01 -0430 Source: motion Binary: motion Architecture: source i386 Version: 3.2.12-2 Distribution: unstable Urgency: low Maintainer: Juan Angulo Moreno j...@apuntale.com Changed-By: Juan Angulo Moreno

Accepted poppler 0.12.4-1.1 (source amd64)

2010-08-10 Thread Michael Gilbert
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Fri, 06 Aug 2010 18:51:54 -0400 Source: poppler Binary: libpoppler5 libpoppler-dev libpoppler-glib4 libpoppler-glib-dev libpoppler-qt2 libpoppler-qt-dev libpoppler-qt4-3 libpoppler-qt4-dev poppler-utils poppler-dbg Architecture:

Accepted spectacle 0.18+git19+4768025-1 (source all)

2010-08-10 Thread Fathi Boudra
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 08 Aug 2010 20:01:42 +0300 Source: spectacle Binary: spectacle Architecture: source all Version: 0.18+git19+4768025-1 Distribution: unstable Urgency: low Maintainer: Fathi Boudra f...@debian.org Changed-By: Fathi Boudra

Accepted kdebase-workspace 4:4.4.5-3 (source all amd64)

2010-08-10 Thread Debian Qt/KDE Maintainers
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 02 Aug 2010 23:23:41 +0200 Source: kdebase-workspace Binary: kdebase-workspace plasma-desktop plasma-netbook kdebase-workspace-bin kdebase-workspace-data kdebase-workspace-dev plasma-dataengines-workspace

Accepted ejabberd-mod-shared-roster-ldap 0.5.1-1 (source all)

2010-08-10 Thread Thorsten Glaser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA384 Format: 1.8 Date: Mon, 09 Aug 2010 16:14:16 +0200 Source: ejabberd-mod-shared-roster-ldap Binary: ejabberd-mod-shared-roster-ldap Architecture: source all Version: 0.5.1-1 Distribution: experimental Urgency: low Maintainer: Thorsten Glaser

Accepted ibus-table-others 1.3.0.20100528-1 (source all)

2010-08-10 Thread LI Daobing
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 09 Aug 2010 22:23:53 +0800 Source: ibus-table-others Binary: ibus-table-compose ibus-table-ipa-x-sampa ibus-table-translit ibus-table-translit-ua ibus-table-rustrad ibus-table-yawerty ibus-table-thai ibus-table-viqr

Accepted libaudio-ecasound-perl 1.01-1 (source amd64)

2010-08-10 Thread Joel Roth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sat, 07 Aug 2010 12:36:04 -1000 Source: libaudio-ecasound-perl Binary: libaudio-ecasound-perl Architecture: source amd64 Version: 1.01-1 Distribution: unstable Urgency: low Maintainer: Debian Perl Group

Accepted libdevice-usb-perl 0.35-1 (source amd64)

2010-08-10 Thread Tim Retout
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 03:31:28 +0100 Source: libdevice-usb-perl Binary: libdevice-usb-perl Architecture: source amd64 Version: 0.35-1 Distribution: unstable Urgency: low Maintainer: Debian Perl Group

Accepted libdigest-jhash-perl 0.06-1 (source i386)

2010-08-10 Thread USB
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Format: 1.8 Date: Mon, 09 Aug 2010 18:50:49 -0430 Source: libdigest-jhash-perl Binary: libdigest-jhash-perl Architecture: source i386 Version: 0.06-1 Distribution: unstable Urgency: low Maintainer: Debian Perl Group

Accepted libencode-jis2k-perl 0.02-1 (source amd64)

2010-08-10 Thread Nicholas Bamber
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Wed, 28 Jul 2010 11:12:46 +0100 Source: libencode-jis2k-perl Binary: libencode-jis2k-perl Architecture: source amd64 Version: 0.02-1 Distribution: unstable Urgency: low Maintainer: Debian Perl Group

Accepted libhash-moreutils-perl 0.02-1 (source all)

2010-08-10 Thread USB
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Format: 1.8 Date: Mon, 09 Aug 2010 18:51:36 -0430 Source: libhash-moreutils-perl Binary: libhash-moreutils-perl Architecture: source all Version: 0.02-1 Distribution: unstable Urgency: low Maintainer: Debian Perl Group

Accepted meego-packaging-tools 0.5.1-1 (source all)

2010-08-10 Thread Fathi Boudra
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sat, 07 Aug 2010 10:25:47 +0300 Source: meego-packaging-tools Binary: meego-packaging-tools Architecture: source all Version: 0.5.1-1 Distribution: unstable Urgency: low Maintainer: Fathi Boudra f...@debian.org Changed-By: Fathi

Accepted wordpress-shibboleth 1.3-1 (source all)

2010-08-10 Thread Dominic Hargreaves
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 09 Aug 2010 16:17:07 +0100 Source: wordpress-shibboleth Binary: wordpress-shibboleth Architecture: source all Version: 1.3-1 Distribution: unstable Urgency: low Maintainer: Dominic Hargreaves d...@earth.li Changed-By: Dominic

Accepted imagej 1.44e-1 (source all)

2010-08-10 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 09:14:17 +0200 Source: imagej Binary: imagej Architecture: source all Version: 1.44e-1 Distribution: unstable Urgency: low Maintainer: Debian Med Packaging Team debian-med-packag...@lists.alioth.debian.org

Accepted thinkfan 0.7.1-2 (source amd64)

2010-08-10 Thread Evgeni Golov
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 11:55:10 +0200 Source: thinkfan Binary: thinkfan Architecture: source amd64 Version: 0.7.1-2 Distribution: unstable Urgency: high Maintainer: Evgeni Golov evg...@debian.org Changed-By: Evgeni Golov evg...@debian.org

Accepted mono-addins 0.4-8 (source all)

2010-08-10 Thread Jo Shields
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 10 Aug 2010 13:43:50 +0100 Source: mono-addins Binary: libmono-addins0.2-cil libmono-addins-cil-dev libmono-addins-gui0.2-cil libmono-addins-gui-cil-dev mono-addins-utils Architecture: source all Version: 0.4-8 Distribution:

Accepted gnustep-base 1.20.1-2 (source all i386)

2010-08-10 Thread Yavor Doganov
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 14:02:25 +0300 Source: gnustep-base Binary: gnustep-base-common gnustep-base-runtime libgnustep-base1.20 libgnustep-base-dev libgnustep-base1.20-dbg gnustep-base-examples gnustep-base-doc Architecture: source all

Accepted mozplugger 1.14.1-1~exp1 (source amd64)

2010-08-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 15:09:53 +0200 Source: mozplugger Binary: mozplugger Architecture: source amd64 Version: 1.14.1-1~exp1 Distribution: experimental Urgency: low Maintainer: Alessio Treglia ales...@debian.org Changed-By: Alessio

Accepted bzr-rewrite 0.6.1-1 (source all)

2010-08-10 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 16:08:21 +0200 Source: bzr-rewrite Binary: bzr-rewrite bzr-rebase Architecture: source all Version: 0.6.1-1 Distribution: unstable Urgency: low Maintainer: Debian Bazaar Maintainers

Accepted font-manager 0.5.6-1 (source i386)

2010-08-10 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 15:59:35 +0200 Source: font-manager Binary: font-manager Architecture: source i386 Version: 0.5.6-1 Distribution: unstable Urgency: low Maintainer: Alessio Treglia ales...@debian.org Changed-By: Alessio Treglia

Accepted pyxplot 0.8.2-1 (source all amd64)

2010-08-10 Thread Stuart Prescott
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sat, 07 Aug 2010 18:33:29 +0100 Source: pyxplot Binary: pyxplot pyxplot-doc Architecture: source amd64 all Version: 0.8.2-1 Distribution: unstable Urgency: low Maintainer: Stuart Prescott stuart+deb...@nanonanonano.net Changed-By:

Accepted fsl 4.1.6-3 (source all amd64)

2010-08-10 Thread Michael Hanke
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 08 Aug 2010 12:20:38 -0400 Source: fsl Binary: fsl fsl-4.1 fsl-doc-4.1 Architecture: source amd64 all Version: 4.1.6-3 Distribution: unstable Urgency: low Maintainer: NeuroDebian Team t...@neuro.debian.net Changed-By: Michael

Accepted software-center 2.0.7debian4 (source all)

2010-08-10 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Format: 1.8 Date: Tue, 10 Aug 2010 17:31:39 +0200 Source: software-center Binary: software-center gnome-app-install Architecture: source all Version: 2.0.7debian4 Distribution: unstable Urgency: low Maintainer: Julian Andres Klode j...@debian.org

Accepted bugzilla 3.6.2.0-1 (source all)

2010-08-10 Thread Raphael Bossek
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 08 Aug 2010 15:38:06 +0200 Source: bugzilla Binary: bugzilla3 bugzilla3-doc Architecture: source all Version: 3.6.2.0-1 Distribution: unstable Urgency: low Maintainer: Raphael Bossek boss...@debian.org Changed-By: Raphael Bossek

Accepted gnash 0.8.8~bzr20100810.1427-1 (source amd64)

2010-08-10 Thread Miriam Ruiz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 14 Aug 2010 14:27:00 +0200 Source: gnash Binary: gnash-common gnash-common-opengl gnash gnash-opengl klash klash-opengl gnash-tools gnash-cygnal mozilla-plugin-gnash konqueror-plugin-gnash Architecture: source amd64 Version:

Accepted knowledgeroot 0.9.9.5-5 (source all)

2010-08-10 Thread Frank Habermann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 08 Aug 2010 22:14:00 +0200 Source: knowledgeroot Binary: knowledgeroot Architecture: source all Version: 0.9.9.5-5 Distribution: unstable Urgency: low Maintainer: Frank Habermann lordla...@lordlamer.de Changed-By: Frank

Accepted phonefsod 0.1+git20100802-2 (source amd64)

2010-08-10 Thread Sebastian Reichel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 17:29:27 +0200 Source: phonefsod Binary: phonefsod Architecture: source amd64 Version: 0.1+git20100802-2 Distribution: unstable Urgency: low Maintainer: Debian freesmartphone.org Team

Accepted commons-daemon 1.0.3-1 (source all amd64)

2010-08-10 Thread Damien Raude-Morvan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 05 Aug 2010 18:00:06 +0200 Source: commons-daemon Binary: libcommons-daemon-java jsvc Architecture: source all amd64 Version: 1.0.3-1 Distribution: unstable Urgency: low Maintainer: Debian Java Maintainers

Accepted zendframework 1.10.7-1 (source all)

2010-08-10 Thread Frank Habermann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 08 Aug 2010 22:01:00 +0200 Source: zendframework Binary: zendframework zendframework-bin Architecture: source all Version: 1.10.7-1 Distribution: unstable Urgency: low Maintainer: Frank Habermann lordla...@lordlamer.de

Accepted liburcu 0.4.6-2 (source amd64)

2010-08-10 Thread Jon Bernard
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 13:11:59 -0400 Source: liburcu Binary: liburcu-dev liburcu0 Architecture: source amd64 Version: 0.4.6-2 Distribution: unstable Urgency: low Maintainer: Jon Bernard jbern...@debian.org Changed-By: Jon Bernard

Accepted illuminator 0.11.0-7 (source all amd64)

2010-08-10 Thread Adam C. Powell, IV
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 11:05:35 -0400 Source: illuminator Binary: libluminate-dev libluminate7 illuminator-doc illuminator-demo Architecture: source all amd64 Version: 0.11.0-7 Distribution: unstable Urgency: low Maintainer: Debian Science

Accepted coq 8.3~rc1+dfsg-1 (source all amd64)

2010-08-10 Thread Stéphane Glondu
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 10 Aug 2010 19:22:15 +0200 Source: coq Binary: coq coqide coq-theories libcoq-ocaml libcoq-ocaml-dev Architecture: source amd64 all Version: 8.3~rc1+dfsg-1 Distribution: experimental Urgency: low Maintainer: Debian OCaml

Accepted pstack 1.2-2 (source i386)

2010-08-10 Thread Thomas Preud'homme
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 10 Aug 2010 01:05:59 +0200 Source: pstack Binary: pstack Architecture: source i386 Version: 1.2-2 Distribution: unstable Urgency: low Maintainer: Thomas Preud'homme robo...@celest.fr Changed-By: Thomas Preud'homme

Accepted tcc 0.9.25-4 (source amd64)

2010-08-10 Thread Thomas Preud'homme
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 10 Aug 2010 00:10:30 +0200 Source: tcc Binary: tcc libtcc-dev Architecture: source amd64 Version: 0.9.25-4 Distribution: unstable Urgency: low Maintainer: Aurélien GÉRÔME a...@debian.org Changed-By: Thomas Preud'homme

Accepted zsh-beta 4.3.10-dev-2+20100810-1 (source all)

2010-08-10 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 10 Aug 2010 14:27:03 -0400 Source: zsh-beta Binary: zsh-beta zsh-beta-doc zsh-beta-static Architecture: source all Version: 4.3.10-dev-2+20100810-1 Distribution: unstable Urgency: low Maintainer: Clint Adams sch...@debian.org

Accepted libetpan 1.0-2 (source all i386)

2010-08-10 Thread Nikita V. Youshchenko
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 22:45:55 +0400 Source: libetpan Binary: libetpan15 libetpan-dev libetpan-doc libetpan-dbg Architecture: source all i386 Version: 1.0-2 Distribution: experimental Urgency: low Maintainer: Nikita V. Youshchenko

Accepted zsh 4.3.10-15 (source all)

2010-08-10 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 10 Aug 2010 14:58:58 -0400 Source: zsh Binary: zsh zsh-doc zsh-static zsh-dev zsh-dbg Architecture: source all Version: 4.3.10-15 Distribution: unstable Urgency: low Maintainer: Clint Adams sch...@debian.org Changed-By: Clint

Accepted eina 0.9.9.49898-2 (source all amd64)

2010-08-10 Thread Albin Tonnerre
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 10 Aug 2010 21:17:25 +0200 Source: eina Binary: libeina-svn-06 libeina-dev libeina-doc libeina-dbg Architecture: source all amd64 Version: 0.9.9.49898-2 Distribution: unstable Urgency: low Maintainer: Debian Pkg-e Team

Accepted stackapplet 1.2.0-2 (source all)

2010-08-10 Thread Luke Faraone
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 15:45:13 -0400 Source: stackapplet Binary: stackapplet Architecture: source all Version: 1.2.0-2 Distribution: unstable Urgency: low Maintainer: Luke Faraone lfara...@debian.org Changed-By: Luke Faraone

Accepted sugar-toolkit-0.84 0.84.12-1 (source amd64)

2010-08-10 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 10 Aug 2010 11:15:38 -0400 Source: sugar-toolkit-0.84 Binary: python-sugar-toolkit-0.84 Architecture: source amd64 Version: 0.84.12-1 Distribution: unstable Urgency: low Maintainer: Debian OLPC

Accepted mercurial 1.6.2-1 (source all amd64)

2010-08-10 Thread Javi Merino
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 06 Aug 2010 10:43:06 +0200 Source: mercurial Binary: mercurial-common mercurial Architecture: all amd64 source Version: 1.6.2-1 Distribution: unstable Urgency: low Maintainer: Python Applications Packaging Team

Accepted shorewall 4.4.11.2-1 (source all)

2010-08-10 Thread Roberto C. Sanchez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 09 Aug 2010 21:05:05 -0400 Source: shorewall Binary: shorewall shorewall-shell shorewall-perl shorewall-common Architecture: source all Version: 4.4.11.2-1 Distribution: unstable Urgency: low Maintainer: Roberto C. Sanchez

Accepted shorewall-init 4.4.11.2-1 (source all)

2010-08-10 Thread Roberto C. Sanchez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 09 Aug 2010 21:06:50 -0400 Source: shorewall-init Binary: shorewall-init Architecture: source all Version: 4.4.11.2-1 Distribution: unstable Urgency: low Maintainer: Roberto C. Sanchez robe...@connexer.com Changed-By: Roberto C.

Accepted shorewall-lite 4.4.11.2-1 (source all)

2010-08-10 Thread Roberto C. Sanchez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 09 Aug 2010 21:07:10 -0400 Source: shorewall-lite Binary: shorewall-lite Architecture: source all Version: 4.4.11.2-1 Distribution: unstable Urgency: low Maintainer: Roberto C. Sanchez robe...@connexer.com Changed-By: Roberto C.

Accepted shorewall6 4.4.11.2-1 (source all)

2010-08-10 Thread Roberto C. Sanchez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 09 Aug 2010 21:07:58 -0400 Source: shorewall6 Binary: shorewall6 Architecture: source all Version: 4.4.11.2-1 Distribution: unstable Urgency: low Maintainer: Roberto C. Sanchez robe...@connexer.com Changed-By: Roberto C. Sanchez

Accepted shorewall6-lite 4.4.11.2-1 (source all)

2010-08-10 Thread Roberto C. Sanchez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 09 Aug 2010 21:07:32 -0400 Source: shorewall6-lite Binary: shorewall6-lite Architecture: source all Version: 4.4.11.2-1 Distribution: unstable Urgency: low Maintainer: Roberto C. Sanchez robe...@connexer.com Changed-By: Roberto

Accepted jbossas4 4.2.3.GA-4 (source all)

2010-08-10 Thread Miguel Landaeta
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 08 Aug 2010 11:52:03 -0430 Source: jbossas4 Binary: jbossas4 libjboss-test-java libjboss-jmx-java libjboss-system-java libjboss-j2ee-java libjboss-ejb3-java libjboss-ejb3x-java libjboss-naming-java libjboss-deployment-java

Accepted sensors-applet 2.2.7-2 (source amd64)

2010-08-10 Thread Sam Morris
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 22:20:53 +0100 Source: sensors-applet Binary: sensors-applet libsensors-applet-plugin0 libsensors-applet-plugin-dev Architecture: source amd64 Version: 2.2.7-2 Distribution: unstable Urgency: low Maintainer: Sam

Accepted libgpod 0.7.93-0.2 (source i386 all)

2010-08-10 Thread Hideki Yamane
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Wed, 11 Aug 2010 07:46:28 +0900 Source: libgpod Binary: libgpod-nogtk-dev libgpod4-nogtk libgpod-dev libgpod4 libgpod-common libgpod-doc python-gpod Architecture: source i386 all Version: 0.7.93-0.2 Distribution: unstable Urgency:

Accepted deskbar-applet 2.30.1-2 (source i386)

2010-08-10 Thread Emilio Pozuelo Monfort
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Wed, 11 Aug 2010 01:14:22 +0200 Source: deskbar-applet Binary: deskbar-applet Architecture: source i386 Version: 2.30.1-2 Distribution: unstable Urgency: low Maintainer: Debian GNOME Maintainers

Accepted ethtool 1:2.6.34-3 (source i386)

2010-08-10 Thread Ben Hutchings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Wed, 11 Aug 2010 00:37:27 +0100 Source: ethtool Binary: ethtool Architecture: i386 source Version: 1:2.6.34-3 Distribution: unstable Urgency: low Maintainer: Anibal Monsalve Salazar ani...@debian.org Changed-By: Ben Hutchings

Accepted control-center 1:2.30.1-2 (source all i386)

2010-08-10 Thread Emilio Pozuelo Monfort
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Wed, 11 Aug 2010 01:37:07 +0200 Source: control-center Binary: gnome-control-center capplets-data libgnome-window-settings1 libgnome-window-settings-dev gnome-control-center-dev Architecture: source all i386 Version: 1:2.30.1-2

Accepted webkit 1.2.3-2 (source all amd64)

2010-08-10 Thread Gustavo Noronha Silva
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 10 Aug 2010 20:04:20 -0300 Source: webkit Binary: libwebkit-1.0-2 libwebkit-dev libwebkit-1.0-common libwebkit-1.0-2-dbg gir1.0-webkit-1.0 Architecture: source all amd64 Version: 1.2.3-2 Distribution: unstable Urgency: low

Accepted orville-write 2.55-2.3 (source i386)

2010-08-10 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 03 Aug 2010 14:53:12 -0400 Source: orville-write Binary: orville-write Architecture: source i386 Version: 2.55-2.3 Distribution: unstable Urgency: low Maintainer: Shane Wegner sh...@debian.org Changed-By: Christian Perrier

Accepted fprint-demo 20080303git-5 (source amd64)

2010-08-10 Thread dererk
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 10 Aug 2010 21:20:44 -0300 Source: fprint-demo Binary: fprint-demo Architecture: source amd64 Version: 20080303git-5 Distribution: unstable Urgency: low Maintainer: FingerForce Team fingerforce-de...@lists.alioth.debian.org

Accepted gnuserv 3.12.8-2 (source amd64)

2010-08-10 Thread Mike O'Connor
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 10 Aug 2010 20:19:20 -0400 Source: gnuserv Binary: gnuserv Architecture: source amd64 Version: 3.12.8-2 Distribution: unstable Urgency: low Maintainer: Mike O'Connor s...@debian.org Changed-By: Mike O'Connor s...@debian.org

Accepted freetype 2.4.2-1 (source amd64)

2010-08-10 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 10 Aug 2010 00:19:04 -0700 Source: freetype Binary: libfreetype6 libfreetype6-dev freetype2-demos libfreetype6-udeb Architecture: source amd64 Version: 2.4.2-1 Distribution: unstable Urgency: high Maintainer: Steve Langasek

Accepted pius 2.0.7-2 (source all)

2010-08-10 Thread Luke Cycon
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 08 Aug 2010 23:04:01 -0700 Source: pius Binary: pius Architecture: source all Version: 2.0.7-2 Distribution: unstable Urgency: low Maintainer: Luke Cycon lcy...@gmail.com Changed-By: Luke Cycon lcy...@gmail.com Description:

Accepted smbnetfs 0.5.3-1 (source amd64)

2010-08-10 Thread Mikhail Kshevetskiy
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sat, 07 Aug 2010 04:20:18 +0400 Source: smbnetfs Binary: smbnetfs Architecture: source amd64 Version: 0.5.3-1 Distribution: unstable Urgency: low Maintainer: Mikhail Kshevetskiy mikhail.kshevets...@gmail.com Changed-By: Mikhail

Accepted fortunes-ru 1.52-2 (source all)

2010-08-10 Thread Simon Fondrie-Teitler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Tue, 10 Aug 2010 17:31:39 -0400 Source: fortunes-ru Binary: fortunes-ru Architecture: source all Version: 1.52-2 Distribution: unstable Urgency: low Maintainer: Debian QA Group packa...@qa.debian.org Changed-By: Simon Fondrie-Teitler

Accepted tzdata 2010k-1 (source all)

2010-08-10 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 10 Aug 2010 23:50:20 -0400 Source: tzdata Binary: tzdata tzdata-java Architecture: source all Version: 2010k-1 Distribution: unstable Urgency: low Maintainer: GNU Libc Maintainers debian-gl...@lists.debian.org Changed-By:

Accepted nbd 1:2.9.16-3 (source amd64)

2010-08-10 Thread Wouter Verhelst
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Mon, 09 Aug 2010 10:53:04 -0400 Source: nbd Binary: nbd-server nbd-client nbd-client-udeb Architecture: source amd64 Version: 1:2.9.16-3 Distribution: unstable Urgency: low Maintainer: Wouter Verhelst wou...@debian.org Changed-By:

Accepted pidgin 2.7.3-1 (source all amd64)

2010-08-10 Thread Ari Pollak
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Format: 1.8 Date: Wed, 11 Aug 2010 00:42:09 -0400 Source: pidgin Binary: libpurple0 pidgin pidgin-data pidgin-dev pidgin-dbg finch finch-dev libpurple-dev libpurple-bin Architecture: source all amd64 Version: 2.7.3-1 Distribution: unstable