Re: Go (golang) packaging, part 2

2013-02-07 Thread Joachim Breitner
Hi, Am Mittwoch, den 06.02.2013, 16:31 -0800 schrieb Russ Allbery: Normal versioning problems that we just take for granted in C, such as allowing the coexistence of two versions of the same library with different ABIs on the system at the same time without doing the equivalent of static

Re: socket-based activation has unmaintainable security?

2013-02-07 Thread Philipp Kern
On Thu, Feb 07, 2013 at 10:28:28AM +1100, Russell Coker wrote: Such capabilities allow the process to bind to all low ports, which usually isn't what you desire. If you want to permit a daemon to bind to exactly one reserved port and no others then it seems that the options are systemd (if

Re: Go (golang) packaging, part 2

2013-02-07 Thread Florian Weimer
* Hilko Bengen: I drew a different conclusion from Ian's messages the thread you mentioned (see the quotes below). Apparently, one *can* build shared libraries using gccgo, but they are not currently usable using dlopen(). My impression was that this means that regular use of shared libraries

Re: socket-based activation has unmaintainable security?

2013-02-07 Thread Simon McVittie
On 07/02/13 09:39, Philipp Kern wrote: If you want to permit a daemon to bind to exactly one reserved port and no others then it seems that the options are systemd (if the daemon supports socket based activation) and SE Linux. (x)inetd, no? For completeness: the systemd socket-activation

Re: socket-based activation has unmaintainable security?

2013-02-07 Thread Florian Weimer
* Thomas Goirand: Which would be the wrong way of doing things / wrong reason for using root as running user, since you can set the CAP_NET_BIND_SERVICE capability... (man capabilities ...) This allows to bind to all lower ports, which in some cases is equivalent to root privileges. A more

Re: socket-based activation has unmaintainable security?

2013-02-07 Thread Salvo Tomaselli
On Thursday 07 February 2013 10.39.59 Philipp Kern wrote: On Thu, Feb 07, 2013 at 10:28:28AM +1100, Russell Coker wrote: Such capabilities allow the process to bind to all low ports, which usually isn't what you desire. If you want to permit a daemon to bind to exactly one reserved port

Re: socket-based activation has unmaintainable security?

2013-02-07 Thread Edward Allcutt
On Thu, 7 Feb 2013, Salvo Tomaselli wrote: Yes but the xinetd process keeps the socket open, then on new connection forks and gives the service the fd of the new connection, retaining the fd for the listener part. Which means that on every connection it has to fork (and that's extremely slow).

Re: Go (golang) packaging, part 2

2013-02-07 Thread Steve Langasek
On Wed, Feb 06, 2013 at 04:31:55PM -0800, Russ Allbery wrote: I keep being tempted to go off on a rant about how we have all of these modern, sophisticated, much more expressive programming languages, and yet still none of them handle ABI versioning as well as C does. Normal versioning

Re: Go (golang) packaging, part 2

2013-02-07 Thread Steve Langasek
On Thu, Feb 07, 2013 at 08:54:32AM +0800, Paul Wise wrote: Why did Debian have to invent /usr/share/pyshared and symlink farms in /usr/lib/pythonX.Y instead of upstream having something like that in the default install and search paths? This is all resolved now in python3. There is no more

Bug#700028: ITP: qtweetlib -- qtweetlib is a QT library for talking to twitter

2013-02-07 Thread rm
Package: wnpp Severity: wishlist Owner: rm jonas.erlands...@gmail.com * Package name: qtweetlib Version : 1.0.0 Upstream Author : Jonas Erlandsson jonas.erlands...@gmail.com * URL : https://github.com/minimoog/QTweetLib.git * License : LGPL Programming Lang:

Bug#700031: ITP: libjreen -- A powerful Jabber/XMPP library implemented in Qt/C++

2013-02-07 Thread rm
Package: wnpp Severity: wishlist Owner: rm jonas.erlands...@gmail.com * Package name: libjreen Version : 1.1.1 Upstream Author : Jonas Erlandsson jonas.erlands...@gmail.com * URL : http://qutim.org/jreen/ * License : GPL2 Programming Lang: C++/QT

Re: Go (golang) packaging, part 2

2013-02-07 Thread Florian Weimer
* Steve Langasek: Actually, if you look closely, you'll find that the traditional Java .jar linking resolver precisely mirrors the behavior of the C linker on Solaris from the same era (allows you to link dynamically, but requires top-level objects to be linked at build time with all the

RFC declarative built-using field generation

2013-02-07 Thread Joey Hess
The Built-Using field required[1] by recent policy results in some problems for maintainers: 1. It needs to indicate the exact version of the source package used in the build. So this has to be kept up-to-date, or dynamically generated. Updating it manually is busywork and won't reflect

NDEBUG when building packages?

2013-02-07 Thread Daniel Pocock
I notice some upstreams hack NDEBUG into their Makefile, while others leave it at the discretion of the user Is there any distribution policy for this? Should I be adding something into debian/rules to set -DNDEBUG when I prepare a package for release? -- To UNSUBSCRIBE, email to

Bug#700044: ITP: bbswitch-dkms -- Kernel module for toggling power of nVidia Optimus

2013-02-07 Thread Maximiliano Curia
Package: wnpp Severity: wishlist Owner: Maximiliano Curia m...@debian.org * Package name: bbswitch-dkms Version : 0.5-1 Upstream Author : Peter Lekensteyn lekenst...@gmail.com * URL : https://github.com/Bumblebee-Project/bbswitch * License : GPL Programming

Re: Go (golang) packaging, part 2

2013-02-07 Thread Matthew Woodcraft
Russ Allbery r...@debian.org writes: I keep being tempted to go off on a rant about how we have all of these modern, sophisticated, much more expressive programming languages, and yet still none of them handle ABI versioning as well as C does. Normal versioning problems that we just take for

Re: Bug#700031: ITP: libjreen -- A powerful Jabber/XMPP library implemented in Qt/C++

2013-02-07 Thread Lisandro Damián Nicanor Pérez Meyer
On Thu 07 Feb 2013 14:02:53 rm escribió: Package: wnpp Severity: wishlist Owner: rm jonas.erlands...@gmail.com * Package name: libjreen Version : 1.1.1 Upstream Author : Jonas Erlandsson jonas.erlands...@gmail.com * URL : http://qutim.org/jreen/ * License

Re: RFC declarative built-using field generation

2013-02-07 Thread Ansgar Burchardt
Joey Hess jo...@debian.org writes: We can take advantage of the architecture specification in Build-Depends being fairly wide-open. So this should not break existing parsers: Build-Depends: foo [any built-using], bar [i386 amd64 built-using] [...] Alternatively, a package named built-using

Re: RFC declarative built-using field generation

2013-02-07 Thread Charles Plessy
Le Thu, Feb 07, 2013 at 03:09:07PM -0400, Joey Hess a écrit : The Built-Using field required[1] by recent policy results in some problems for maintainers: [1] Or at least encouraged, depending on how policy and the intent of policy is interpreted. Hi Joey, in section 5.3, that lists

Re: Go (golang) packaging, part 2

2013-02-07 Thread Neil Williams
On Thu, 7 Feb 2013 20:16:18 + Matthew Woodcraft matt...@woodcraft.me.uk wrote: I don't think it's as clear-cut as that. Debian handles multiple versions of C libraries at _runtime_ well, but I think its support for C libraries still leaves a good deal to be desired: it doesn't let you

Re: RFC declarative built-using field generation

2013-02-07 Thread Ben Hutchings
On Thu, 2013-02-07 at 15:09 -0400, Joey Hess wrote: The Built-Using field required[1] by recent policy results in some problems for maintainers: 1. It needs to indicate the exact version of the source package used in the build. So this has to be kept up-to-date, or dynamically

Bug#700060: ITP: ITP: growlight -- Disk manipulation and system preparation tool -- Disk manipulation and system preparation tool

2013-02-07 Thread Nick Black
Package: wnpp Severity: wishlist Owner: Nick Black nick.bl...@sprezzatech.com * Package name: growlight -- Disk manipulation and system preparation tool Version : 1.0.4.5 Upstream Author : Nick Black nick.bl...@sprezzatech.com * URL :

Re: Go (golang) packaging, part 2

2013-02-07 Thread Russ Allbery
Neil Williams codeh...@debian.org writes: Matthew Woodcraft matt...@woodcraft.me.uk wrote: I don't think it's as clear-cut as that. Debian handles multiple versions of C libraries at _runtime_ well, but I think its support for C libraries still leaves a good deal to be desired: it doesn't

Work-needing packages report for Feb 8, 2013

2013-02-07 Thread wnpp
The following is a listing of packages for which help has been requested through the WNPP (Work-Needing and Prospective Packages) system in the last week. Total number of orphaned packages: 526 (new: 3) Total number of packages offered up for adoption: 142 (new: 1) Total number of packages

Re: RFC declarative built-using field generation

2013-02-07 Thread Joey Hess
Ben Hutchings wrote: Or 'source', short for 'the build-dependency's source code should be treated as part of my source code'. This is already reserved as a special architecture name for use in changes file. Hmm, if it's reserved, what use it is reserved for? Wouldn't want to step on toes. I

Re: RFC declarative built-using field generation

2013-02-07 Thread Ben Hutchings
On Thu, 2013-02-07 at 20:51 -0400, Joey Hess wrote: Ben Hutchings wrote: Or 'source', short for 'the build-dependency's source code should be treated as part of my source code'. This is already reserved as a special architecture name for use in changes file. Hmm, if it's reserved, what

Re: Go (golang) packaging, part 2

2013-02-07 Thread Chow Loong Jin
On 07/02/2013 09:16, Steve Langasek wrote: Debian's Python build helper tools are still breeding like rabbits, there is a new one in experimental. I guess because the current ones dh_python2/dh_python3 don't handle packages that contain only code that runs on both python2 and python3

Re: Go (golang) packaging, part 2

2013-02-07 Thread Russ Allbery
Chow Loong Jin hyper...@debian.org writes: Well, relative to other languages, I think Python's had the most changes with regards to build helper tools -- there was dh_pycentral, and dh_pysupport in the past which did more or less the same thing in different ways, and now we have dh_python2,

Re: Go (golang) packaging, part 2

2013-02-07 Thread Steve Langasek
On Fri, Feb 08, 2013 at 10:00:47AM +0800, Chow Loong Jin wrote: On 07/02/2013 09:16, Steve Langasek wrote: Debian's Python build helper tools are still breeding like rabbits, there is a new one in experimental. I guess because the current ones dh_python2/dh_python3 don't handle packages

Re: Go (golang) packaging, part 2

2013-02-07 Thread Chow Loong Jin
On 08/02/2013 10:07, Steve Langasek wrote: On Fri, Feb 08, 2013 at 10:00:47AM +0800, Chow Loong Jin wrote: [...] Well, relative to other languages, I think Python's had the most changes with regards to build helper tools -- there was dh_pycentral, and dh_pysupport in the past which did more

Re: RFC declarative built-using field generation

2013-02-07 Thread Joey Hess
Ben Hutchings wrote: What I mean is that a changes file for a sourceful upload has 'source' (and maybe some real architecture names) in the Architecture field. Therefore 'source' cannot be assigned as the name of a real architecture. Ah, sure. However, source in Build-Depends could be taken

Re: RFC declarative built-using field generation

2013-02-07 Thread Raphael Hertzog
On Thu, 07 Feb 2013, Joey Hess wrote: Ben Hutchings wrote: What I mean is that a changes file for a sourceful upload has 'source' (and maybe some real architecture names) in the Architecture field. Therefore 'source' cannot be assigned as the name of a real architecture. Ah, sure.

Accepted eglibc 2.17-0experimental2 (all amd64 source)

2013-02-07 Thread Adam Conrad
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Wed, 06 Feb 2013 22:41:23 -0700 Source: eglibc Binary: libc-bin libc-dev-bin glibc-doc eglibc-source locales locales-all nscd multiarch-support libc6 libc6-dev libc6-dbg libc6-prof libc6-pic libc6-udeb libc6.1 libc6.1-dev

Accepted tracker 0.14.5-1 (source amd64 all)

2013-02-07 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 07 Feb 2013 09:25:21 +0100 Source: tracker Binary: tracker libtracker-sparql-0.14-0 libtracker-sparql-0.14-dev libtracker-sparql-doc libtracker-miner-0.14-0 libtracker-miner-0.14-dev libtracker-miner-doc

Accepted zabbix 1:2.0.4+dfsg-3 (source amd64 all)

2013-02-07 Thread Dmitry Smirnov
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 16:58:09 +1100 Source: zabbix Binary: zabbix-agent zabbix-frontend-php zabbix-proxy-mysql zabbix-proxy-pgsql zabbix-proxy-sqlite3 zabbix-server-mysql zabbix-server-pgsql Architecture: source amd64 all Version:

Accepted edfbrowser 1.49-1 (source amd64)

2013-02-07 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 09:33:57 +0100 Source: edfbrowser Binary: edfbrowser Architecture: source amd64 Version: 1.49-1 Distribution: experimental Urgency: low Maintainer: Debian Med Packaging Team

Accepted gnutls28 3.0.22-3 (source all i386)

2013-02-07 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Format: 1.8 Date: Thu, 07 Feb 2013 10:19:02 +0100 Source: gnutls28 Binary: libgnutls28-dev libgnutls28 libgnutls28-dbg gnutls-bin gnutls-doc guile-gnutls libgnutlsxx28 Architecture: source all i386 Version: 3.0.22-3 Distribution: unstable

Accepted gwc 0.21.19~dfsg0-1 (source amd64)

2013-02-07 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 10:31:33 + Source: gwc Binary: gwc gwc-dbg Architecture: source amd64 Version: 0.21.19~dfsg0-1 Distribution: experimental Urgency: low Maintainer: Debian Multimedia Maintainers

Accepted irker 1.17+dfsg-1 (source all)

2013-02-07 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 12:26:45 +0100 Source: irker Binary: irker Architecture: source all Version: 1.17+dfsg-1 Distribution: unstable Urgency: low Maintainer: Daniel Baumann daniel.baum...@progress-technologies.net Changed-By: Daniel

Accepted postgresql-9.1 9.1.8-1 (source amd64 all)

2013-02-07 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 05 Feb 2013 14:15:33 +0100 Source: postgresql-9.1 Binary: libpq-dev libpq5 libecpg6 libecpg-dev libecpg-compat3 libpgtypes3 postgresql-9.1 postgresql-9.1-dbg postgresql-client-9.1 postgresql-server-dev-9.1 postgresql-doc-9.1

Accepted mobyle-programs 4.0-2 (source all)

2013-02-07 Thread Olivier Sallou
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 25 Jun 2012 18:07:19 +0200 Source: mobyle-programs Binary: mobyle-programs Architecture: source all Version: 4.0-2 Distribution: unstable Urgency: low Maintainer: Debian Med Packaging Team

Accepted muse 2.1.1-1 (source amd64)

2013-02-07 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 31 Jan 2013 10:21:39 + Source: muse Binary: muse Architecture: source amd64 Version: 2.1.1-1 Distribution: unstable Urgency: low Maintainer: Debian Multimedia Maintainers pkg-multimedia-maintain...@lists.alioth.debian.org

Accepted postgresql-9.2 9.2.3-1 (source amd64 all)

2013-02-07 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 05 Feb 2013 10:01:28 +0100 Source: postgresql-9.2 Binary: libpq-dev libpq5 libecpg6 libecpg-dev libecpg-compat3 libpgtypes3 postgresql-9.2 postgresql-9.2-dbg postgresql-client-9.2 postgresql-server-dev-9.2 postgresql-doc-9.2

Accepted yui 2.9.0.dfsg.0.1-0.1 (source all)

2013-02-07 Thread Dominic Hargreaves
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 03 Feb 2013 11:54:19 + Source: yui Binary: libjs-yui libjs-yui-doc Architecture: source all Version: 2.9.0.dfsg.0.1-0.1 Distribution: unstable Urgency: low Maintainer: Debian Javascript Maintainers

Accepted lxc 0.9.0~alpha2-8 (source i386)

2013-02-07 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 13:14:35 +0100 Source: lxc Binary: lxc lxc-dbg lxc-dev Architecture: source i386 Version: 0.9.0~alpha2-8 Distribution: unstable Urgency: low Maintainer: Daniel Baumann daniel.baum...@progress-technologies.net

Accepted flashgot 1.5.4+dfsg-1 (source all)

2013-02-07 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 13:28:21 +0100 Source: flashgot Binary: xul-ext-flashgot Architecture: source all Version: 1.5.4+dfsg-1 Distribution: unstable Urgency: low Maintainer: Debian Mozilla Extension Maintainers

Accepted pymecavideo 6.1-1 (source all)

2013-02-07 Thread Georges Khaznadar
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 13:18:24 +0100 Source: pymecavideo Binary: python-mecavideo Architecture: source all Version: 6.1-1 Distribution: unstable Urgency: low Maintainer: Georges Khaznadar georg...@debian.org Changed-By: Georges Khaznadar

Accepted horizon 2012.1.1-10 (source all)

2013-02-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 17:50:55 +0800 Source: horizon Binary: python-django-horizon openstack-dashboard openstack-dashboard-apache Architecture: source all Version: 2012.1.1-10 Distribution: unstable Urgency: low Maintainer: PKG OpenStack

Accepted cinnamon 1.6.7-2 (source amd64 all)

2013-02-07 Thread Nicolas Bourdaud
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 13:40:30 +0100 Source: cinnamon Binary: cinnamon cinnamon-common cinnamon-dbg Architecture: source amd64 all Version: 1.6.7-2 Distribution: unstable Urgency: low Maintainer: Nicolas Bourdaud

Accepted lxc 0.9.0~alpha2-9 (source i386)

2013-02-07 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 14:33:35 +0100 Source: lxc Binary: lxc lxc-dbg lxc-dev Architecture: source i386 Version: 0.9.0~alpha2-9 Distribution: unstable Urgency: low Maintainer: Daniel Baumann daniel.baum...@progress-technologies.net

Accepted ibus 1.5.1-1 (source amd64 all)

2013-02-07 Thread Aron Xu
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sat, 02 Feb 2013 00:36:51 +0800 Source: ibus Binary: ibus libibus-1.0-5 libibus-1.0-dev ibus-gtk ibus-gtk3 python-ibus ibus-doc gir1.2-ibus-1.0 Architecture: source amd64 all Version: 1.5.1-1 Distribution: unstable Urgency: low

Accepted ibus-table 1.5.0-1 (source all)

2013-02-07 Thread Aron Xu
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:25:22 +0800 Source: ibus-table Binary: ibus-table Architecture: source all Version: 1.5.0-1 Distribution: unstable Urgency: low Maintainer: IME Packaging Team pkg-ime-de...@lists.alioth.debian.org Changed-By: Aron

Accepted ibus-el 0.3.2-1 (source all)

2013-02-07 Thread Aron Xu
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 23:08:04 +0800 Source: ibus-el Binary: ibus-el Architecture: source all Version: 0.3.2-1 Distribution: unstable Urgency: low Maintainer: IME Packaging Team pkg-ime-de...@lists.alioth.debian.org Changed-By: Aron Xu

Accepted bitcoin 0.7.2-3 (source i386)

2013-02-07 Thread Scott Howard
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 10:49:50 -0500 Source: bitcoin Binary: bitcoind bitcoin-qt Architecture: source i386 Version: 0.7.2-3 Distribution: unstable Urgency: low Maintainer: Debian Bitcoin Packaging Team

Accepted kali 3.1-12 (source i386)

2013-02-07 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 07 Feb 2013 15:59:34 + Source: kali Binary: kali Architecture: source i386 Version: 3.1-12 Distribution: unstable Urgency: low Maintainer: Colin Watson cjwat...@debian.org Changed-By: Colin Watson cjwat...@debian.org

Accepted xserver-xorg-video-nouveau 1:1.0.1-5 (source i386)

2013-02-07 Thread Sven Joachim
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Thu, 07 Feb 2013 18:14:24 +0100 Source: xserver-xorg-video-nouveau Binary: xserver-xorg-video-nouveau xserver-xorg-video-nouveau-dbg Architecture: source i386 Version: 1:1.0.1-5 Distribution: unstable Urgency: low Maintainer:

Accepted enigmail 2:1.5.1+id17-1 (source amd64)

2013-02-07 Thread Willi Mann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 07 Feb 2013 18:29:55 +0100 Source: enigmail Binary: enigmail Architecture: source amd64 Version: 2:1.5.1+id17-1 Distribution: experimental Urgency: low Maintainer: Alexander Sack a...@debian.org Changed-By: Willi Mann

Accepted postgresql-8.4 8.4.16-1 (source amd64)

2013-02-07 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Tue, 05 Feb 2013 15:47:29 +0100 Source: postgresql-8.4 Binary: postgresql-plperl-8.4 Architecture: source amd64 Version: 8.4.16-1 Distribution: unstable Urgency: low Maintainer: Debian PostgreSQL Maintainers

Accepted tmux 1.8~git20130207-1 (amd64 source)

2013-02-07 Thread Romain Francoise
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 07 Feb 2013 18:39:44 +0100 Source: tmux Binary: tmux Architecture: amd64 source Version: 1.8~git20130207-1 Distribution: experimental Urgency: low Maintainer: Karl Ferdinand Ebert kfeb...@gmail.com Changed-By: Romain Francoise

Accepted git-annex 3.20130207 (amd64 i386 source)

2013-02-07 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 07 Feb 2013 12:45:25 -0400 Source: git-annex Binary: git-annex Architecture: amd64 i386 source Version: 3.20130207 Distribution: unstable Urgency: low Maintainer: Joey Hess jo...@debian.org Changed-By: Joey Hess

Accepted exfat-utils 1.0.1-1 (source amd64)

2013-02-07 Thread Sven Hoexter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 07 Feb 2013 20:24:34 +0100 Source: exfat-utils Binary: exfat-utils Architecture: source amd64 Version: 1.0.1-1 Distribution: unstable Urgency: low Maintainer: Sven Hoexter hoex...@debian.org Changed-By: Sven Hoexter

Accepted libgo-perl 0.13-2 (source all)

2013-02-07 Thread Laszlo Kajan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 19:24:51 +0100 Source: libgo-perl Binary: libgo-perl Architecture: source all Version: 0.13-2 Distribution: unstable Urgency: low Maintainer: Debian Med Packaging Team debian-med-packag...@lists.alioth.debian.org

Accepted fuse-exfat 1.0.1-1 (source amd64)

2013-02-07 Thread Sven Hoexter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 07 Feb 2013 20:47:49 +0100 Source: fuse-exfat Binary: exfat-fuse Architecture: source amd64 Version: 1.0.1-1 Distribution: unstable Urgency: low Maintainer: Sven Hoexter hoex...@debian.org Changed-By: Sven Hoexter

Accepted haskell-aeson 0.6.1.0-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 20:25:34 +0100 Source: haskell-aeson Binary: libghc-aeson-dev libghc-aeson-prof libghc-aeson-doc Architecture: source all amd64 Version: 0.6.1.0-1 Distribution: experimental Urgency: low Maintainer: Debian Haskell

Accepted haskell-attoparsec 0.10.4.0-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 20:29:31 +0100 Source: haskell-attoparsec Binary: libghc-attoparsec-dev libghc-attoparsec-prof libghc-attoparsec-doc Architecture: source all amd64 Version: 0.10.4.0-1 Distribution: experimental Urgency: low

Accepted haskell-binary-shared 0.8.2-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 19:32:26 +0100 Source: haskell-binary-shared Binary: libghc-binary-shared-dev libghc-binary-shared-prof libghc-binary-shared-doc Architecture: source all amd64 Version: 0.8.2-1 Distribution: experimental Urgency:

Accepted haskell-case-insensitive 1.0-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 20:34:37 +0100 Source: haskell-case-insensitive Binary: libghc-case-insensitive-dev libghc-case-insensitive-prof libghc-case-insensitive-doc Architecture: source all amd64 Version: 1.0-1 Distribution: experimental

Accepted haskell-ghc-events 0.4.2.0-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 02 Dec 2012 21:54:33 +0100 Source: haskell-ghc-events Binary: libghc-ghc-events-dev libghc-ghc-events-prof libghc-ghc-events-doc Architecture: source all amd64 Version: 0.4.2.0-1 Distribution: experimental Urgency: low

Accepted haskell-haxr 3000.9.0.1-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 19:30:02 +0100 Source: haskell-haxr Binary: libghc-haxr-dev libghc-haxr-prof libghc-haxr-doc Architecture: source all amd64 Version: 3000.9.0.1-1 Distribution: experimental Urgency: low Maintainer: Debian Haskell

Accepted haskell-hsh 2.1.0-1 (source amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 21:39:37 +0100 Source: haskell-hsh Binary: libghc-hsh-dev libghc-hsh-prof libghc-hsh-doc Architecture: source amd64 Version: 2.1.0-1 Distribution: experimental Urgency: low Maintainer: Debian Haskell Group

Accepted haskell-hsp 0.8.0-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 21:02:38 +0100 Source: haskell-hsp Binary: libghc-hsp-dev libghc-hsp-prof libghc-hsp-doc Architecture: source all amd64 Version: 0.8.0-1 Distribution: experimental Urgency: low Maintainer: Debian Haskell Group

Accepted haskell-http-conduit 1.8.7.1-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 20:56:38 +0100 Source: haskell-http-conduit Binary: libghc-http-conduit-dev libghc-http-conduit-prof libghc-http-conduit-doc Architecture: source all amd64 Version: 1.8.7.1-1 Distribution: experimental Urgency: low

Accepted haskell-http-types 0.8.0-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 20:48:58 +0100 Source: haskell-http-types Binary: libghc-http-types-dev libghc-http-types-prof libghc-http-types-doc Architecture: source all amd64 Version: 0.8.0-1 Distribution: experimental Urgency: low Maintainer:

Accepted haskell-warp 1.3.7.2-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 21:00:55 +0100 Source: haskell-warp Binary: libghc-warp-dev libghc-warp-prof libghc-warp-doc Architecture: source all amd64 Version: 1.3.7.2-1 Distribution: experimental Urgency: low Maintainer: Debian Haskell Group

Accepted haskelldb-hdbc-odbc 2.1.2-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 19:49:31 +0100 Source: haskelldb-hdbc-odbc Binary: libghc-haskelldb-hdbc-odbc-dev libghc-haskelldb-hdbc-odbc-prof libghc-haskelldb-hdbc-odbc-doc Architecture: source all amd64 Version: 2.1.2-1 Distribution:

Accepted haskelldb-hdbc-postgresql 2.1.2-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 19:50:08 +0100 Source: haskelldb-hdbc-postgresql Binary: libghc-haskelldb-hdbc-postgresql-dev libghc-haskelldb-hdbc-postgresql-prof libghc-haskelldb-hdbc-postgresql-doc Architecture: source all amd64 Version:

Accepted haskelldb-hdbc-sqlite3 2.1.2-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 19:50:53 +0100 Source: haskelldb-hdbc-sqlite3 Binary: libghc-haskelldb-hdbc-sqlite3-dev libghc-haskelldb-hdbc-sqlite3-prof libghc-haskelldb-hdbc-sqlite3-doc Architecture: source all amd64 Version: 2.1.2-1

Accepted hdbc-odbc 2.3.1.1-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 20:19:54 +0100 Source: hdbc-odbc Binary: libghc-hdbc-odbc-dev libghc-hdbc-odbc-prof libghc-hdbc-odbc-doc Architecture: source all amd64 Version: 2.3.1.1-1 Distribution: experimental Urgency: low Maintainer: Debian

Accepted libgo-perl 0.13-3 (source all)

2013-02-07 Thread Laszlo Kajan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 21:10:13 +0100 Source: libgo-perl Binary: libgo-perl Architecture: source all Version: 0.13-3 Distribution: unstable Urgency: low Maintainer: Debian Med Packaging Team debian-med-packag...@lists.alioth.debian.org

Accepted minicom 2.6.2-1 (source amd64)

2013-02-07 Thread Martin A. Godisch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:02:34 +0100 Source: minicom Binary: minicom Architecture: source amd64 Version: 2.6.2-1 Distribution: unstable Urgency: low Maintainer: Martin A. Godisch godi...@debian.org Changed-By: Martin A. Godisch

Accepted imview 1.1.9c-11 (source amd64)

2013-02-07 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:06:57 +0100 Source: imview Binary: imview Architecture: source amd64 Version: 1.1.9c-11 Distribution: unstable Urgency: low Maintainer: Debian Science Maintainers

Accepted polarssl 1.1.4-2 (source amd64)

2013-02-07 Thread Roland Stigge
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:08:26 +0100 Source: polarssl Binary: libpolarssl-dev libpolarssl-runtime libpolarssl0 Architecture: source amd64 Version: 1.1.4-2 Distribution: unstable Urgency: high Maintainer: Roland Stigge sti...@antcom.de

Accepted python-numpy 1:1.7.0~rc2-1 (source amd64 all)

2013-02-07 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 21:48:46 +0100 Source: python-numpy Binary: python-numpy python-numpy-dbg python3-numpy python3-numpy-dbg python-numpy-doc Architecture: source amd64 all Version: 1:1.7.0~rc2-1 Distribution: experimental Urgency:

Accepted haskell-pcap 0.4.5.2-3 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:24:01 +0100 Source: haskell-pcap Binary: libghc-pcap-dev libghc-pcap-prof libghc-pcap-doc Architecture: source all amd64 Version: 0.4.5.2-3 Distribution: experimental Urgency: low Maintainer: Debian Haskell Group

Accepted haskell-strict 0.3.2-5 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:31:46 +0100 Source: haskell-strict Binary: libghc-strict-dev libghc-strict-prof libghc-strict-doc Architecture: source all amd64 Version: 0.3.2-5 Distribution: experimental Urgency: low Maintainer: Debian Haskell

Accepted haskell-tagsoup 0.12.8-1 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:35:48 +0100 Source: haskell-tagsoup Binary: libghc-tagsoup-dev libghc-tagsoup-prof libghc-tagsoup-doc Architecture: source all amd64 Version: 0.12.8-1 Distribution: experimental Urgency: low Maintainer: Debian

Accepted haskell-threads 0.5.0.1-2 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:37:58 +0100 Source: haskell-threads Binary: libghc-threads-dev libghc-threads-prof libghc-threads-doc Architecture: source all amd64 Version: 0.5.0.1-2 Distribution: experimental Urgency: low Maintainer: Debian

Accepted eric 4.5.8-1 (source all)

2013-02-07 Thread Gudjon I. Gudjonsson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sat, 19 Jan 2013 19:59:53 + Source: eric Binary: eric eric-api-files Architecture: source all Version: 4.5.8-1 Distribution: experimental Urgency: low Maintainer: Gudjon I. Gudjonsson gud...@gudjon.org Changed-By: Gudjon I.

Accepted evolution-data-server 3.4.4-2 (source all amd64)

2013-02-07 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Thu, 07 Feb 2013 22:42:17 +0100 Source: evolution-data-server Binary: evolution-data-server evolution-data-server-common evolution-data-server-dev evolution-data-server-dbg evolution-data-server-doc libedataserver-1.2-16

Accepted haskell-time-compat 0.1.0.1-2 (source all amd64)

2013-02-07 Thread Joachim Breitner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:58:44 +0100 Source: haskell-time-compat Binary: libghc-time-compat-dev libghc-time-compat-prof libghc-time-compat-doc Architecture: source all amd64 Version: 0.1.0.1-2 Distribution: experimental Urgency: low

Accepted xnbd 0.1.0-pre-hg20-e75b93a47722-3 (source amd64 all)

2013-02-07 Thread Arno Töll
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 22:45:10 +0100 Source: xnbd Binary: xnbd-server xnbd-client xnbd-common Architecture: source amd64 all Version: 0.1.0-pre-hg20-e75b93a47722-3 Distribution: unstable Urgency: medium Maintainer: Arno Töll

Accepted trafficserver 3.2.4-1 (source amd64)

2013-02-07 Thread Arno Töll
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 23:37:35 +0100 Source: trafficserver Binary: trafficserver trafficserver-dev Architecture: source amd64 Version: 3.2.4-1 Distribution: unstable Urgency: low Maintainer: Arno Töll a...@debian.org Changed-By: Arno Töll

Accepted icedtea-web 1.3.1-2.1 (source amd64 all)

2013-02-07 Thread Andreas Beckmann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sat, 02 Feb 2013 13:09:09 +0100 Source: icedtea-web Binary: icedtea-netx icedtea6-plugin icedtea-plugin icedtea-netx-common icedtea-6-plugin icedtea-7-plugin Architecture: source amd64 all Version: 1.3.1-2.1 Distribution: unstable

Accepted sisu 4.0.6-1 (source all)

2013-02-07 Thread Ralph Amissah
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Thu, 07 Feb 2013 19:12:55 -0500 Source: sisu Binary: sisu sisu-complete sisu-pdf sisu-postgresql sisu-sqlite Architecture: source all Version: 4.0.6-1 Distribution: experimental Urgency: low Maintainer: SiSU Project

Accepted sysvinit 2.88dsf-41 (source amd64 all)

2013-02-07 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Thu, 07 Feb 2013 23:32:12 + Source: sysvinit Binary: sysvinit sysvinit-utils sysv-rc initscripts bootlogd Architecture: source amd64 all Version: 2.88dsf-41 Distribution: unstable Urgency: low Maintainer: Debian sysvinit

Accepted mobile-atlas-creator 1.9.10-1 (source all)

2013-02-07 Thread PaulLiu
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 08 Feb 2013 08:46:15 +0800 Source: mobile-atlas-creator Binary: mobile-atlas-creator Architecture: source all Version: 1.9.10-1 Distribution: unstable Urgency: low Maintainer: Ying-Chun Liu (PaulLiu) paul...@debian.org

Accepted rstatd 4.0.1-8 (source amd64)

2013-02-07 Thread Anibal Monsalve Salazar
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 08 Feb 2013 11:53:00 +1100 Source: rstatd Binary: rstatd rstat-client Architecture: source amd64 Version: 4.0.1-8 Distribution: unstable Urgency: low Maintainer: Anibal Monsalve Salazar ani...@debian.org Changed-By: Anibal

Accepted sheepdog 0.5.6-1 (source amd64)

2013-02-07 Thread YunQiang Su
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Fri, 08 Feb 2013 11:04:58 +0800 Source: sheepdog Binary: sheepdog Architecture: source amd64 Version: 0.5.6-1 Distribution: unstable Urgency: low Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org Changed-By:

Accepted thailatex 0.5.1-1 (source all)

2013-02-07 Thread Theppitak Karoonboonyanan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Fri, 08 Feb 2013 12:51:10 +0700 Source: thailatex Binary: thailatex Architecture: source all Version: 0.5.1-1 Distribution: experimental Urgency: low Maintainer: Theppitak Karoonboonyanan t...@debian.org Changed-By: Theppitak