Re: Using -Werror in CFLAGS for a debian package build

2011-05-23 Thread Simon McVittie
On Mon, 23 May 2011 at 01:44:03 +0200, Goswin von Brederlow wrote:
 Or the reverse
 
   gcc -Wformat=error

gcc -Wno-error -Wformat -Werror=format

You might also be interested in m4/tp-compiler-warnings.m4 in telepathy-glib.
Usage looks like this:

TP_COMPILER_WARNINGS([ERROR_CFLAGS],
  dnl Make warnings fatal if:
  [test x$official_release = xno],
  dnl Warn about these things:
  [all \
   extra \
   declaration-after-statement \
   shadow \
   strict-prototypes \
   missing-prototypes \
   sign-compare \
   nested-externs \
   pointer-arith \
   format-security \
   init-self],
  dnl But don't even warn about these things:
  [missing-field-initializers \
   unused-parameter])
AC_SUBST([ERROR_CFLAGS])


We switch off -Werror by default for each tarball release, and switch it back
on in git immediately after the release, so only developers get these fatal
warnings (that's what the test of $official_release is for).

S


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110523065419.ga5...@reptile.pseudorandom.co.uk



Re: bug reporting workflow is outdated

2011-05-23 Thread sean finney
On Mon, May 23, 2011 at 01:47:22AM +0200, Goswin von Brederlow wrote:
  I suggest that we can make an HTTP based bug reporting method.
 
 The only advantage of this would be for systems that firewall outgoing
 mail conections but allow http or have a http proxy but no smarthost.

and that's a pretty big advantage.  requiring that submissions be done
only via SMTP seems a bit silly and self-limiting if you ask me.  

HTTP would be able to provide a super-set of the features of SMTP
submission, would not prevent SMTP submission from remaining as an option,
and is more likely to work in diverse environments.


sean


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523071056.ga17...@cobija.connexer.com



Re: bug reporting workflow is outdated

2011-05-23 Thread Timo Juhani Lindfors
sean finney sean...@seanius.net writes:
 HTTP would be able to provide a super-set of the features of SMTP
 submission, would not prevent SMTP submission from remaining as an option,
 and is more likely to work in diverse environments.

HTTP could also provide faster feedback on syntax errors in control
messages.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/84y61xvq8t@sauna.l.org



Re: bug reporting workflow is outdated

2011-05-23 Thread Andrew O. Shadoura
Hello,

On Mon, 23 May 2011 11:58:06 +1000
Russell Coker russ...@coker.com.au wrote:

 I often use the -o option of reportbug and scp the file to somewhere
 I can send mail.

 It would be nice if there was a program that could take the output of 
 reportbug -o and send it via email.  Using cut/paste wastes a little
 time.

 Another option is to use ssh port redirection to tunnel SMTP over ssh.

Easier is to write a one-liner:

#!/bin/sh
ssh your-favourite-host-with-sendmail-set-up /usr/sbin/sendmail -f \
y...@email.org -t $@

and tell reportbug to use it.

-- 
WBR, Andrew


signature.asc
Description: PGP signature


Re: Changed ssh key on git.debian.org

2011-05-23 Thread Andrew O. Shadoura
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hello,

On Sun, 22 May 2011 17:24:37 +0100
Klaus Ethgen kl...@ethgen.de wrote:

 Now I got another problem. Well, it's not really a problem but a minor
 bug. When I push to a git repository I get a warning that was not
 there with alioth: bash: warning: setlocale: LC_ALL: cannot change
 locale (de_DE). It seems that not all locales are build on the
 system.

Yup. It doesn't even have en_GB.

- -- 
WBR, Andrew
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iQIcBAEBCAAGBQJN2hcsAAoJEG6k0jEaLSaNGWEP/jjBgZlUGbLIOv/PvAfzK54l
oO2oXrtoXK7MaNwF4nrxboh1jbJh6veYkT9XZZAxaeejdzAk81lk07VKZoEk2S7I
xfcO9jQ59mWsh0z3qoPIKZ7jnORicImV7T43tB1diXzhQxbIoo/MjQKaiXXiHxTs
L4sXfjhtlvR7w40xdOw4BFYv5VRBkGYUCZXZQY+bUalngDnOfbk2EiSrGEKRPizC
mACZEhF+yVJB2cBItF8eEIwKB6IMNL5I8S5Dak1H3jVX6ahJJMX8rgqeGxfeekMF
AG6K1bixq/qPbdaJWBTjRaWYlZQPiGwXstMKHEi4CK3FEctsOJyPDI5XgGRJpXbV
oN5oHsWDt9h6a20/TReApOb1oi2VmESrkdjQLUsP8+u+M0CySbGp8Bs4967obsKh
mUFVAbc7X+AGCsqr1CszKRExCLJy0/B4ZLTgVQjGzbfrstdyRwMOFlM2HJv0jypm
6ZZcUa4VB9+5PqPn3gmYFnAF4UT+ddXAmdu2p7NSJ1qie+Q8vqNZKg+iF9m5z94a
HWOnM93wW//9KDtGA1iIT6n4FWFnCAranzt2ufxtcpHUZ8J8EkXtyNWN0rdWoH17
twxWHFNm/pnFMzhY88fj87coKHHRZ0tT9Daz9j9wmwp/Sz05s3xtsJHg5Jf0z//q
H8cSfB88L6xOuDNzaqYQ
=ba6x
-END PGP SIGNATURE-


Re: bug reporting workflow is outdated

2011-05-23 Thread Paul Wise
On Mon, May 23, 2011 at 3:24 PM, Andrew O. Shadoura bugzi...@tut.by wrote:

 Easier is to write a one-liner:

 #!/bin/sh
 ssh your-favourite-host-with-sendmail-set-up /usr/sbin/sendmail -f \
    y...@email.org -t $@

 and tell reportbug to use it.

Aha, thanks. I'm now using something similar to dump reportbug mail
into my (unsupported by reportbug) desktop MUA's drafts folder.

Hmm, I wonder if I can use that to launch a compose screen somehow.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/banlktikspefg-nzrfcswgu9fpbszthb...@mail.gmail.com



Bug#627658: ITP: netzhack -- German-localized version of the game NetHack

2011-05-23 Thread Tony Crawford
Package: wnpp
Severity: wishlist
Owner: Tony Crawford t...@netzhack.de


* Package name: netzhack
  Version : 0.2.1
  Upstream Author : Tony Crawford t...@netzhack.de
* URL : http://www.netzhack.de/
* License : Nethack General Public License
  Programming Lang: C
  Description : German-localized version of the game NetHack

Localizing the role-playing game NetHack is non-trivial because
the morphology of English is hard-coded into it at every level.
But now there is an idiomatic German version.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523101545.7048.44247.reportbug@vinteuil



Bug#627659: ITP: pythonwebkit -- Python DOM (HTML5) Bindings to Webkit

2011-05-23 Thread lkcl
Package: wnpp
Severity: wishlist
Owner: lkcl l...@lkcl.net

* Package name: pythonwebkit
  Version : 1.0-1
  Upstream Author : GNU Project g...@fsf.org
* URL : http://www.gnu.org/software/pythonwebkit
* License : GPLv2, LGPLv2, LGPLv2+, BSD, MIT, MPL-1.1
  Programming Lang: C, C++, Perl, Python
  Description : Python DOM (HTML5) Bindings to Webkit

 WebKit is a web content engine, derived from KHTML and KJS from KDE, and
 used primarily in Apple's Safari browser.
 .
 It is able to display content such as HTML, SVG, XML, and others. It also
 supports DOM, XMLHttpRequest, XSLT, CSS, Javascript/ECMAscript and more.
 .
 This package contains a python module which provides a simple, single
 stand-alone window, where access to the full features of HTML5 are
 provided, directly, to python.  Features and functions which are normally
 the exclusive domain of javascript are made available in a 100% compatible
 way: Webkit javascript Timers, HTTPRequest, onmouseover and other callbacks,
 CSS properties, appendChild, getElementsByTagName: everything that can be
 expected to be accessed via javascript is made available to python
 programmers.
 .
 There are several ports of PythonWebkit: this module contains the GTK2
 version.  The PythonWebkit bindings are faster than the GObject bindings
 because they are direct; they are also feature-comparable to Javascript;
 they are also more stable than the GObject bindings.


-- System Information:
Debian Release: squeeze/sid
  APT prefers oldstable
  APT policy: (500, 'oldstable'), (500, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523101209.3883.34980.reportbug@localhost



Re: bug reporting workflow is outdated

2011-05-23 Thread Henrique de Moraes Holschuh
On Mon, 23 May 2011, Paul Wise wrote:
 On Mon, May 23, 2011 at 7:47 AM, Goswin von Brederlow goswin-...@web.de 
 wrote:
  The only advantage of this would be for systems that firewall outgoing
  mail conections but allow http or have a http proxy but no smarthost.
 
 There are a *lot* of ISPs that do this. My ISP does this so I have to
 send mail via SSH tunnel or webmail.

It is now a best-standard-practice for ISPs to block port 25 traffic across
home-user access network borders.  It is being done on purpose to leverage
packet-filtering hardware and the distributed architecture characteristics
of access/border network filtering (which is already there).  Its objectives
are: reduce the overhead on MTAs everywhere due to spambot connections, and
reduce the number of botnet-caused incident complaints.

Users are now supposed to use ESMTPSA over port 587 to submit email (that
would be ESMTP with TLS+SMTP AUTH) to any email provider (including his own
ISP).  Port 25 is now reserved for static MTA-MTA (i.e. MX) traffic.

From our (Debian) PoV, whether one agrees with port-25 blocking policy or
not doesn't matter.  It is already deployed to several million users
worldwide (which likely means at least several thousand Debian users), many
of which will not configure their local MTAs to forward email, and instead
just configure their MUAs.

We have to deal with it somehow.

Anyway, on this new port 587 world, to have reportbug reliably submit BTS
email on unconfigured local networks, it would have to use ESMTPS (or
deep-inspection firewalls will kill the tcp session off) over port 587.

And the receiving gateway would have to localy validate that the destination
are acceptable addresses (@bugs.debian.org), and also validate the sending
domain (to reduce spam and guarantee a return path for further bug
processing), etc.

Whether it is easier to do that or instead switch to a https application
gateway, I don't know.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523110124.ga10...@khazad-dum.debian.net



Re: bug reporting workflow is outdated

2011-05-23 Thread Timo Juhani Lindfors
Henrique de Moraes Holschuh h...@debian.org writes:
 guarantee a return path for further bug processing

Bugzilla and trac do this by allowing the user to register an account
and to keep the email address associated with that account up to
date. If somebody reopens an archived bug that I've reported a year ago
they can't ask me for more information if I've changed my email address.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/84hb8lver0@sauna.l.org



Re: 'Alioth' status update

2011-05-23 Thread Dominic Hargreaves
On Sun, May 22, 2011 at 11:27:45AM +0100, Stephen Gran wrote:
 Hi everybody,
 
 The host we knew and loved as alioth.debian.org is no more.
 
 We are now running on two hosts, vasks.debian.org and wagner.debian.org.
 
 The writable SCM repositories are hosted on vasks.debian.org, and DNS
 has been updated to reflect that.  The fingerprints for the two hosts
 are:
 
 2048 8c:c0:b8:9f:0a:79:ee:1c:77:c4:b8:a1:70:55:b7:31 vasks.debian.org (RSA)
 2048 36:24:36:e2:99:44:8d:39:e1:d5:36:0b:e4:1d:5d:bd wagner.debian.org (RSA)
 
 This information is also available in signed DNS, and also at
 /etc/ssh/ssh_known_hosts on any debian system.
 
 Some bits of the infrastructure are still being bolted back together,
 and we expect to send further status updates as they happen.

Dear Alioth admins,

Since we're now out of the time period originally announced as the
service downtime, (late afternoon (UK time) on Sunday, May 22nd.),
please could you send another update with any ETAs you have for the
restoration of the remaining alioth services? This will help everyone
plan work in the next couple of days.

The biggest downtime that matters to me personally is mailman and the
gitweb interfaces, but I'm sure there are others. Confirmation of
which services are known to be down and planned to be restored would
be welcome all round, I think.

One particular concern I can think of is that mail service
(for lists.alioth.debian.org, and does alioth.debian.org also have
a mail service?) is brought back up soon, because after 4 days we'll
start losing mail queued on remote servers.

Thanks for your work on this!

Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523135024.gn29...@urchin.earth.li



Re: Conditional Recommends

2011-05-23 Thread David Kalnischkies
On Sat, May 21, 2011 at 17:56, Carsten Hey cars...@debian.org wrote:
 With above exclamation mark syntax, we could also express weak
 conflicts, e.g.:

        Package: X
        Recommends: !Y

 Apt would remove Y by default if X gets installed, but users could
 overwrite this.


As a user i hate it then packages are removed just because the maintainer
is bored and wants to force it now. That forces the user in dist-upgrades
to distinguish between different remove-types and the package manager
can very seldomly help with that:
a) two packages do not work (well) together
b) package A is unmaintained
c) the maintainer of package B is bored
With my APT hat i can add that apt-get and friends do not like removes, too.

c) happens all the time in package renames without a good reason as this
could be done later by the user with autoremove or deborphan or whatever
at a time the user expects the need to decide between keeping a package
or not. At dist-upgrade time it's a big annoyance and can even prevent
upgrades as a user has to fear that with the 200 packages which are going
to be removed by the dist-upgrade a lot of features will be gone, too.
So he will delay it until more time is available for checking everything.
Beside that the 190 renames hide the 10 removes the user should
really have a look at…
Yet alone that these removes tend to cause unexpected results anyway
as the recent libtar to libtar0 rename did for example… Not that it would
be too unexpected that a package manager can decide against removing
a package, it's just that maintainers never expect that…


And no, the solution to this is not to downgrade c) to a weak conflict.
The solution is to help autoremove and deborphan detect A properly by
hinting that the package A is obsolete (section: oldlibs, debtags, …)
and handle it in a different step. It's just bad to try to do everything at
the same time…


Best regards

David Kalnischkies, who is already waiting for 'iceweasel recommends !chromium'


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/BANLkTik=jfoy-jaivm1i6wzmskm9tp-...@mail.gmail.com



Re: Conditional Recommends

2011-05-23 Thread David Kalnischkies
On Sun, May 22, 2011 at 16:07, Carsten Hey cars...@debian.org wrote:
  * Conflicts, Breaks, ..., Enhances:
   - satisfied if any of the clauses is true

Uhm, a Conflicts/Breaks is satisfied if all clauses are false.
That way you could say Conflicts = ! Pre-Depends.
(regarding …: Replaces doesn't fit to well in here…)
(Enhances are reverse-suggests so i really don't understand
 why it is in the same enumeration as Conflicts/Breaks…)


 If we allow logical 'and' in clauses of disjunctive fields and add
 a field similar to 'Enhances:', but for reverse recommendations instead,
 the above example could be written as:

        Package: A-plugin-B
        Depends: A, B
        Recommended-By: A  B

Such a plugin 'Enhances: A' and maybe only 'Depends: B'.
A plugin like xul-ext-firegpg (removed  discontinued upstream) enhances
iceweasel and depends on gpg. Still, i don't think it would be a good
idea to add something like 'Recommended-By: iceweasel  gpg'
as this promotes this plugin nearly to priority (desktop-)standard…



If you want to your package manager (front-end) to suggest you to install
the plugin if you have A, B or A  B installed then please go ahead and
implement it in your front-end.

I don't see a good reason why the installation of A should install
unconditional a bunch of plugins just because i happen to have B and C
installed as it generates a bunch of new problems even if we leave
the very simple fact aside that the current dependencies are already
misused and something like that doesn't help in making it simpler…

It will be for example interesting in stable to stable+1 upgrades:
The dependency trees are already now very long and big, it doesn't
help in any way if we add even more subtrees and make them
conditional… (you want an example? udev effected kde: #610991)

Also, just imagine for a second we have such a field, then exactly is
your package manager supposed to install A-plugin-B?
Remember: New Recommends of a package are installed on a
package upgrade - and i will come back to you at the time i am forced
to implement logic to decide if A  B is compared to A  B  C a new
Recommended-By clause or not…
(We have such a problem already for or-groups in recommends)
Beside that the notion of 'new' is interesting in case A-plugin-B is new
in the archive and package A or B are upgraded (new compared to the
last time the packages were upgraded) …


 To prevent problems with partial upgrades, a logical 'and' should only
 be allowed in fields that do not exist in Squeeze.  After Wheezy, they
 could be allowed in 'Enhances:' too and if there are according use
 cases, maybe even in Conflicts or Breaks.

Do you have just one usecase for a 'Conflicts: A  B' which shouldn't
be a 'Conflicts: A, B' instead? I always thought an ',' is already an 'and'.
And if i keep thinking this, the only reason for an '' would be to
write stuff like A | (BA  BB) | C, but in the end i properly need a
glue in between BA and BB which i could package as B… or if this glue is
really not needed i could use A | BA | C, A | BB | C and live on without
the introduction of (multi-level) nested and/or-groups in or-groups…

Similar thoughts for '!' - That 'Breaks' are already '! Depends' is clear,
so in which way does it help? With the current (mis)use of Breaks/Conflicts
i don't really want to imagine what 'Recommends: ! A' should tell me or
the package manager… KDE4 recommends !GNOME3… will be fun.

Beside that even if i could express 'Breaks' as '! Depends' i would prefer
to write them still as 'Breaks' as a small '!' easily gets lost between many
shared library dependencies. As a user its way easier to look for a Breaks
line instead of reading and parsing the complete Depends line…


Best regards

David Kalnischkies


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/BANLkTi=axhS12AZDTcZ1iSe-4US=ejc...@mail.gmail.com



Re: Conditional Recommends

2011-05-23 Thread David Kalnischkies
On Mon, May 23, 2011 at 06:50, Miles Bader mi...@gnu.org wrote:
 I've noticed many cases where packages recommend a bunch of stuff that,
 while it might be very nice for some users, really isn't of general
 interest.

So, because package maintainers don't read and understand the policy
which defines clearly for what 'Recommends' should be used
(hint: §7.2 in all but unusual installations != nice for some users)
we should give maintainers even more options they don't understand?



The idea of using it for l10n-packages hints already that conditions based
on packages are not enough, soon it will be 'tasks' or based on local
environment. I can already hear someone asking for
Package: libc6
Recommends: libc6-686 {arch::supports:cmov}
which soon evolves to a complete language in which you really need
all the funky stuff like  and | and ! together with hard/soft constraints…

So, in the end what we would need is a machine parseable reason why
a package is recommend/suggested by a maintainer so the machine
can evaluate if it should suggest this to the user.

And in that end, the user still has to decide what should be installed and
what should not, so maybe we should focus on making the massive amount
of information we already have easily available before we add even more…


Best regards

David Kalnischkies


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/BANLkTi=XXf=twazys6pmxctgxnfg+_d...@mail.gmail.com



Re: Conditional Recommends

2011-05-23 Thread Simon McVittie
On Mon, 23 May 2011 at 16:31:10 +0200, David Kalnischkies wrote:
 A plugin like xul-ext-firegpg (removed  discontinued upstream) enhances
 iceweasel and depends on gpg. Still, i don't think it would be a good
 idea to add something like 'Recommended-By: iceweasel  gpg'
 as this promotes this plugin nearly to priority (desktop-)standard…

I don't think this would be a good use of conditional recommendation either:
it's entirely likely that you have both iceweasel and gpg and don't want to
use them together.

However, consider gstreamer0.10-pulseaudio: it's a plugin for GStreamer
applications to output audio through the PulseAudio daemon. Neither GStreamer
nor PulseAudio should depend on the other: GStreamer applications can equally
well use ALSA, OSS or even ESD, while PulseAudio can be used for output by
plenty of non-GStreamer audio APIs.

However, if you do happen to have both GStreamer and Pulse installed, you
probably want the one to be able to output through the other.
Recommended-by: libgstreamer0.10-0  pulseaudio would express this, if it's
feasible to implement.

I suspect many of the use-cases for Recommended-by are also of the form
plugin to give abstraction layer A the ability to use backend B. The
alternative is typically to add an artificial recommendation or even
dependency in one direction or the other (e.g. A Recommends a-plugin-b which
Depends: B, effectively promoting the priority of both the plugin and B, or
vice versa), or to add an artificial recommendation or dependency to some
random third package (e.g. rhythmbox Depends: gstreamer0.10-pulseaudio, even
though it can use many other output plugins).

S


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110523164102.gd24...@reptile.pseudorandom.co.uk



Re: bug reporting workflow is outdated

2011-05-23 Thread Patrick Strasser
schrieb Pedro Larroy am 2011-05-22 22:44:
 Hi
 
 I think expecting having a working smtp on laptops, workstations, etc,
 is unreasonable these days.
 I suggest that we can make an HTTP based bug reporting method.

From my experience as a occasional bug reporter, some thoughts that came
to my mind:

It's easier to get the mail setup wrong than to get it right. The
current procedure assumes you have a working mail configuration at the
reporting machine. That assumption is too strong. I need to authenticate
to my mail server, and from time to time I'm in a different network that
needs a changed configuration that I have to get right before using
reportbug.

reportbug should default to the worst case, that is: I do not have a
clue how the message will get sent to BTS, just Do The Right Thing(tm).
If someone knows that his/her mail config is working it should be an
opt-in to use that. Sysamins or DD/DMs will likely know what to do,
others should not need to care.

Compare:
 Will reportbug often have direct Internet access? (You should answer yes to
 this question unless you know what you are doing and plan to check whether
 duplicate reports have been filed via some other channel.) [Y|n|q|?]? 

and

 Do you have a mail transport agent (MTA) like Exim, Postfix or SSMTP
 configured on this computer to send mail to the Internet? [Y|n|q|?]? 

This should default to No.

bug filed ;-)

If sending a report fails, the message is saved to /tmp, and no advice
is given how to send the message by other means. I'm not afraid of
sendmail-ish programs, but I guess most of the non-developer users even
don't know what it is, or what to do with the message draft.

I understand Pedro's suggestion to implement an additional transport
from bugreport to BTS. I do not see a big difference to the mail
transport system.

What is the advantage of having a mail-only BTS reporting mechanism? One
thing would be to have a quite reliably working mail adress of the
reporter. There is no difference to a HTTP base reporting system. One
can easily get the mail config wrong, intentionally or by accident. In
fact, reportbug asks you for your name and mail address. If you really
want to be shure you need a three way handshake to verify the mail
adress, either way.
One thing I can think of is spam. How is spam handled with mail
currently? What would be the difference to HTTP?

Finally, BTS has a web frontend to read bug report, which I assume is
the preferred way of access. Why prohibit this way of transport for the
other direction? It does not need to be a web frontend for reporting or
replacing reportbug as preferred way to report bugs, just HTTP transport.
No one would think if reportbug to rely on mail transport for getting
the bug list...

Regards

Patrick
-- 
Engineers motto: cheap, good, fast: choose any two
Patrick Strasser patrick dot strasser at student dot tugraz dot at
Student of Telemati_cs_, Techn. University Graz, Austria


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/ire3if$54t$1...@dough.gmane.org



Re: Anyone looking at darcs?

2011-05-23 Thread Gunnar Wolf
Sandro Tosi dijo [Thu, May 19, 2011 at 02:37:45PM +0200]:
  and where was rudeness?
 
  should I add flowers and kisses to emails?
  ^^^
  This.  This is rudeness.
 
 oh really? thanks for letting me know.
 
  Lose the sarcasm, if you wish to communicate more effectively.
 
 Thanks for the lecture, so sad I didn't ask for one.
 
 why not concentrating on doing something productive instead of mailing
 non-sense? (ah please avoid replying I'm doing it, since some else
 started the teach the stupid guy a lesson subthread.)

Sandro, we have collectively walked a long way towards making the
Debian ecosphere less harsh. There is no need to be gratuitously rude,
we only lose potential contributors. Please don't use that tone when
writing to Debian mailing lists.


signature.asc
Description: Digital signature


mcs maintainership

2011-05-23 Thread Andrew O. Shadoura
Hello,

Considering that Adam Cécile (Le_Vert) hasn't been doing much work on
the package in question (mcs), and that I have prepared a packaging
for the new and the last upstream version, I'd like to become a new
maintainer for the package at least for the time this package is still
in use by at least one another Debian package.

These are the changes I've made to the packaging:

  * New upstream release.
  * Use dh7 and DebSrc3.0:
- Drop dpatch.
- Drop README.source.
- Use dh_installdocs instead of *.links tricks.
  * debian/control:
- Depend on autotools-dev (= 20100122.1) which supports dh7.
- Update Standards-Version to 3.9.2.
- Updated the homepage.
- Updated the descriptions of the packages.
- Added Vcs-* fields.
- Purged KConfig backend.
  * Ship *.symbols and *.doc-base files.
  * Link with --as-needed.
  * Don't output ANSI codes during the build process.
  * Ship doxygened documentation (Closes: #521010):
- Run Doxygen on build.
- Also depend on LaTeX/TeXLive and Ghostscript.

Jakub Wilk agreed to sponsor this package if there will be no
objections from the current maintainer.

-- 
WBR, Andrew


signature.asc
Description: PGP signature


Re: 'Alioth' status update

2011-05-23 Thread Yaroslav Halchenko
I would also really appreciate any information on the status/future of
lists.a.d.o. 

With best regards,
Yaroslav

On Mon, 23 May 2011, Dominic Hargreaves wrote:

 One particular concern I can think of is that mail service
 (for lists.alioth.debian.org, and does alioth.debian.org also have
 a mail service?) is brought back up soon, because after 4 days we'll
 start losing mail queued on remote servers.

-- 
=--=
Keep in touch www.onerussian.com
Yaroslav Halchenko www.ohloh.net/accounts/yarikoptic


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523182844.gb16...@onerussian.com



Re: Conditional Recommends

2011-05-23 Thread David Kalnischkies
On Mon, May 23, 2011 at 18:41, Simon McVittie s...@debian.org wrote:
 However, consider gstreamer0.10-pulseaudio: it's a plugin for GStreamer
 applications to output audio through the PulseAudio daemon. Neither GStreamer
 nor PulseAudio should depend on the other: GStreamer applications can equally
 well use ALSA, OSS or even ESD, while PulseAudio can be used for output by
 plenty of non-GStreamer audio APIs.

Package: gstreamer0.10-pulseaudio
Provides: gstreamer0.10-audiosink

Package: rhythmbox
Depends: gstreamer0.10-audiosink


In that situation you want to choose the best provides based on certain
rules which is a different problem as the output plugin is not optional,
you can just choose one out of many, but at least one is needed to be able
to hear something…
(Not really limited to provides through, its the same for simple or-groups.)


Using something like Recommended-By here feels like a trick as you don't
want to recommend the installation of gstreamer0.10-pulseaudio at install
time of gstreamer0.10 or pulseaudio, but at the time a package needs an
audiosink for gstreamer0.10 you want one installed (not just recommend one).
(arguable, in this specific case the difference isn't very big)


Best regards

David Kalnischkies


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/banlktikkt6j9papdu14fhryid4+al-h...@mail.gmail.com



Re: Conditional Recommends

2011-05-23 Thread Carsten Hey
* David Kalnischkies [2011-05-23 16:31 +0200]:
 On Sun, May 22, 2011 at 16:07, Carsten Hey cars...@debian.org wrote:
   * Conflicts, Breaks, ..., Enhances:
    - satisfied if any of the clauses is true

 Uhm, a Conflicts/Breaks is satisfied if all clauses are false.

This misunderstanding is caused by the unclear definition of when
a Conflicts/Breaks is satisfied, it is (depending on the definition)
either satisfied if a package can be installed, or if a package can not
be installed.

According to De Morgen's law, the following are equal:

Given that no installed package conflicts with or breaks package X,

… package X conflicting with A, B , C can be installed if all are
false, otherwise it can not be installed.

… package X conflicting with A, B , C can not be installed if any
is true, otherwise it can be installed.


 That way you could say Conflicts = ! Pre-Depends.
 (regarding …: Replaces doesn't fit to well in here…)
 (Enhances are reverse-suggests so i really don't understand
  why it is in the same enumeration as Conflicts/Breaks…)

Depends: A, B, C | D is equivalent to Depends: A  B  (C | D),
although the latter is not a valid syntax in Debian.  The commas in
'Depends:' fields can be read as 'and'.

Conflicts: A, B, C is equivalent to Conflicts: A | B | C and the
commas in 'Conflicts:' fields can be read as 'or'.  Alternatively, it
could also be read as Pre-Depends: !A  !B  !C - which would be very
similar to a Conflicts/Breaks is satisfied if all clauses are false.

Enhances: A, B, C is equivalent to Enhances: A | B | C (the package
is suggested if A, B or C is installed).  Given that the package with
the 'Enhances:' control field is X, Suggests: X in packages A, B and
C would do the same.


'Conflicts:' and 'Enhances:' both do somehow the opposite of
'Pre-Depends:' or 'Suggests:' and are both in DNF.  'Depends:' et al.
are in CNF.

Also being in DNF is the reason I put 'Enhances:' into the same
enumeration as Conflicts/Breaks.


  If we allow logical 'and' in clauses of disjunctive fields and add
  a field similar to 'Enhances:', but for reverse recommendations instead,
  the above example could be written as:
 
         Package: A-plugin-B
         Depends: A, B
         Recommended-By: A  B

 Such a plugin 'Enhances: A' and maybe only 'Depends: B'.
 A plugin like xul-ext-firegpg (removed  discontinued upstream) enhances
 iceweasel and depends on gpg. Still, i don't think it would be a good
 idea to add something like 'Recommended-By: iceweasel  gpg'
 as this promotes this plugin nearly to priority (desktop-)standard…

Using a field 'Depends-Alternatively:' instead of alternative
dependencies via pipe symbols in the 'Depends:' field would be
a less sane solution, e.g.:

Package: foo
Depends: libc6 (= 2.3.4)
Depends-Alternatively: debconf, cdebconf

… instead of:

Package: foo
Depends: libc6 (= 2.3.4), debconf | cdebconf


The above would have been a very similar way to express things as the
proposed 'Recommends-When:'.  The main point of my mail was to propose
a more consistent alternative to 'Recommends-When:'.  I don't know the
details why gnome needs this or what exactly is planned for tdeps and
thus can't judge if 'Recommends-When:' or my alternative is a good idea
at all.


 If you want to your package manager (front-end) to suggest you to install
 the plugin if you have A, B or A  B installed then please go ahead and
 implement it in your front-end.

This would be even more wrong than implementing DPkg::Pre-Invoke and
DPkg::Post-Invoke in apt instead of dpkg.


 It will be for example interesting in stable to stable+1 upgrades:
 The dependency trees are already now very long and big, it doesn't
 help in any way if we add even more subtrees and make them
 conditional… (you want an example? udev effected kde: #610991)

I needed to upgrade epiphany-browser (or alternatively remove packages
I did not want to remove) to be able to upgrade to apt/squeeze because
of some python-libraries.


 Also, just imagine for a second we have such a field, then exactly is
 your package manager supposed to install A-plugin-B?
 Remember: New Recommends of a package are installed on a
 package upgrade - and i will come back to you at the time i am forced
 to implement logic to decide if A  B is compared to A  B  C a new
 Recommended-By clause or not…

 (We have such a problem already for or-groups in recommends)
 Beside that the notion of 'new' is interesting in case A-plugin-B is new
 in the archive and package A or B are upgraded (new compared to the
 last time the packages were upgraded) …

Yes, this could be interesting :)


  To prevent problems with partial upgrades, a logical 'and' should only
  be allowed in fields that do not exist in Squeeze.  After Wheezy, they
  could be allowed in 'Enhances:' too and if there are according use
  cases, maybe even in Conflicts or Breaks.

 Do you have just one usecase for a 'Conflicts: A  B' which 

Bug#627723: ITP: ocaml-mm -- Multimedia library for OCaml

2011-05-23 Thread Romain Beauxis
Package: wnpp
Severity: wishlist
Owner: Romain Beauxis to...@rastageeks.org

* Package name: ocaml-mm
  Version : 0.1.0
  Upstream Author : The Savonet Team
* URL : http://savonet.sf.net/
* License : LGPL+link exception
  Programming Lang: OCaml
  Description : Multimedia library for OCaml

ocaml-mm is a toolkit for audio and video processing
in OCaml. It provides a standard interface and various
usual manipulations on audio data, images and video data.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523212447.2623.96385.reportbug@leonard



Bug#627724: ITP: ocaml-voaacenc -- Voaacenc bindings for OCaml

2011-05-23 Thread Romain Beauxis
Package: wnpp
Severity: wishlist
Owner: Romain Beauxis to...@rastageeks.org

* Package name: ocaml-voaacenc
  Version : 0.1.0
  Upstream Author : The Savonet Team
* URL : http://savonet.sf.net/
* License : CPL
  Programming Lang: OCaml
  Description : OCaml bindings for the voaacenc AAC encoder

ocaml-voaacenc is a binding for libvoaacenc, which provides
AAC audio encoding.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523212713.2799.39378.reportbug@leonard



Re: Alioth status update, take 3

2011-05-23 Thread Francesco Poli
On Mon, 23 May 2011 22:35:00 +0200 Roland Mas wrote:

[...]
   Status update for the Alioth situation:
[...]
 - read/write access to the repositories through SSH happen on
   vasks.debian.org; the repositories have adresses that look like
   $scm.debian.org/$scm/$project, for $scm in arch bzr cvs darcs git hg
   svn;
 
 - anonymous read-only access to the repositories is available by HTTP
   from wagner, at URLs that look like
   http://anonscm.debian.org/$scm/$project for $scm in arch bzr darcs git
   hg;
 
 - Git and Subversion also allow anonymous read-only access to the
   repositories through a dedicated protocol, with URLs such as
   git://anonscm.debian.org/$project/$project.git and
   svn://anonscm.debian.org/$project/; I can't seem to get the equivalent
   for CVS (pserver) to work right now;
 
 - repository browsers for the major SCM tools are also available from
   wagner, see http://anonscm.debian.org/ for the links.

I apologize in advance if this is a naive question, but: does this mean
that _all_ Vcs-* control fields in _all_ packages (that have them) have
to be changed?
Does this mean that _all_ existing personal repository clones (I am
thinking about git repository clones, for instance) have to change
their remote URLs (both for read-only access via specific protocol,
such as git://, and for write access via ssh://)?

I hope that some appropriate re-directions may be set up real soon now,
so that previous URLs can continue to work as before...


P.S.: Please keep me in Cc: on replies, since I am not subscribed to
debian-devel. Thanks!

-- 
 http://www.inventati.org/frx/frx-gpg-key-transition-2010.txt
 New GnuPG key, see the transition document!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgpBxVaTB4vU5.pgp
Description: PGP signature


Re: Conditional Recommends

2011-05-23 Thread Carsten Hey
* Eugene V. Lyubimkin [2011-05-22 18:08 +0300]:
 On 2011-05-22 16:07, Carsten Hey wrote:
  'Enhances:', 'Provides', 'Conflicts' and 'Breaks' also require extensive
  scanning in the package database.

 Conflicts and Breaks do not. So, yes, partly true. I personally don't
 want one more reverse-field to handle;

Two remain, good enough ;)


  Anyway, this subthread is all about reverse recommendations, even with
  negations you would need to scan the whole repository for implications
  in 'Recommends:' fields, or they would neither solve the tdep problem
  nor the original problem (see the end of this mail).

 I did not spot further statements about this in the end of your mail.

The point I had in mind is that forward recommendations, i.e.,
'Recommends:' require more effort to maintain than backward
recommendations for tdeps and similar packages.  Below mentioned is just
one way to implement the package relationships for tdeps, IIRC somewhere
in this thread the real plans to do so are mentioned.


tdeps with backward recommendations:

Package: hexahop

Package: hexahop-l10n-$LANGUAGE
Recommended-By: hexahop  translations-$LANGUAGE

The above is all the would be needed, additional to either a real
package translations-$LANGUAGE or a virtual package with this name
provided by hexahop-l10n-$LANGUAGE.


tdeps with forward recommendations:

Package: hexahop
Recommends: !translations-da | hexahop-l10n-da,
!translations-de | hexahop-l10n-de,
!translations-es | hexahop-l10n-es,
...


tdeps with forward recommendations and indirection:

Package: hexahop
Recommends: hexahop-translations

Package: hexahop-translations
Recommends: !translations-da | hexahop-l10n-da,
!translations-de | hexahop-l10n-de,
!translations-es | hexahop-l10n-es,
...

The third example with indirections would have advantages if one l10n
package contains the translations for multiple packages (which seems to
be planned).


Additionally, tdeps could be some kind of leaf packages, as mentioned in
http://lists.debian.org/debian-project/2011/03/msg00039.html or just
depend on the according package they provide translations for.


 So, no, this subthread is not about reverse recommendations, it's about
 conditional recommendations. I don't need to rescan the whole repository
 to satisfy '!A | B-plugin-A' given I scanned it once for Provides.

If apt and cupt don't (which would be correct, on a second thought),
installing translations for new languages would be all but easy for
users, unless package managers provides a clever way to do this.


Regards
Carsten


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523215906.gb22...@furrball.stateful.de



Re: Alioth status update, take 3

2011-05-23 Thread Stig Sandbeck Mathisen
Francesco Poli invernom...@paranoici.org writes:

 I hope that some appropriate re-directions may be set up real soon now,
 so that previous URLs can continue to work as before...

If you have a specific example of something that does not work, it can
be fixed.

-- 
Stig Sandbeck Mathisen
  ooo, shiny!


pgpS25Sqtp03c.pgp
Description: PGP signature


Anonymous read-only access and Vcs-* [Re: Alioth status update, take 3]

2011-05-23 Thread Michael Biebl
Am 23.05.2011 22:35, schrieb Roland Mas:
 - anonymous read-only access to the repositories is available by HTTP
   from wagner, at URLs that look like
   http://anonscm.debian.org/$scm/$project for $scm in arch bzr darcs git
   hg;
 
 - Git and Subversion also allow anonymous read-only access to the
   repositories through a dedicated protocol, with URLs such as
   git://anonscm.debian.org/$project/$project.git and
   svn://anonscm.debian.org/$project/; I can't seem to get the equivalent
   for CVS (pserver) to work right now;
   We should now be in the phase where we pretend it's done, wait for the
 complaints, and fix the problems as they are reported

It looks like

git://git.debian.org/ and
svn://svn.debian.org/

no longer work for anonymous access. That basically means that existing Vcs-*
fields are broken. I hope the old URLs still continue to work, or do you expect
maintainers to update debian/control to use the new URL scheme?

Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Re: Anyone looking at darcs?

2011-05-23 Thread Erik de Castro Lopo
Sandro Tosi wrote:

 On Wed, May 18, 2011 at 00:10, Erik de Castro Lopo mle...@mega-nerd.com 
 wrote:
  Is anyone looking at getting the latest version of darcs into unstable?
 
  If not, I will have a crack at it.
 
 Why didn't you ask its maintainers (or at least cc them)? why didn't
 you report a bug against darcs asking for the new version to be
 packaged? why didn't you check darcs pts page[1], where you would have
 seen they're looking for a new maintainer[2]?

Sorry, I actually meant to send this to the debian-haskell list
where the maintainer (who recently said he wanted to drop the package)
is subscribed as are many others who are interested in haskell and/or
darcs.

Cheers,
Erik
-- 
--
Erik de Castro Lopo
http://www.mega-nerd.com/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110524090342.ba592047.mle+deb...@mega-nerd.com



Re: Alioth status update, take 3

2011-05-23 Thread Russ Allbery
Stig Sandbeck Mathisen s...@debian.org writes:
 Francesco Poli invernom...@paranoici.org writes:

 I hope that some appropriate re-directions may be set up real soon now,
 so that previous URLs can continue to work as before...

 If you have a specific example of something that does not work, it can
 be fixed.

windlord:~/tmp debcheckout libpam-krb5
declared git repository at git://git.debian.org/git/pkg-k5-afs/pam-krb5.git
git clone git://git.debian.org/git/pkg-k5-afs/pam-krb5.git libpam-krb5 ...
Cloning into libpam-krb5...
git.debian.org[0: 217.196.43.140]: errno=Connection refused
fatal: unable to connect a socket (Connection refused)
checkout failed (the command above returned a non-zero exit code)

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/874o4l811e@windlord.stanford.edu



Bug#627729: ITP: ocaml-flac -- OCaml bindings for the FLAC audio decoding/encoding library

2011-05-23 Thread Romain Beauxis
Package: wnpp
Severity: wishlist
Owner: Romain Beauxis to...@rastageeks.org

* Package name: ocaml-flac
  Version : 0.1.0
  Upstream Author : The Savonet Team
* URL : http://savonet.sf.net/
* License : GPL
  Programming Lang: OCaml
  Description : OCaml bindings for the FLAC audio decoding/encoding library

This module provides OCaml bindings for the FLAC audio decoding/encoding 
library.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523232429.24494.8672.reportbug@leroy



Bug#627731: ITP: ocaml-schroedinger -- OCaml bindings for the libschroedinger implementing the Dirac video encoding/decoding algorithm

2011-05-23 Thread Romain Beauxis
Package: wnpp
Severity: wishlist
Owner: Romain Beauxis to...@rastageeks.org

* Package name: ocaml-schroedinger
  Version : 0.1.0
  Upstream Author : The Savonet Team
* URL : http://savonet.sf.net/
* License : GPL
  Programming Lang: OCaml
  Description : OCaml bindings for the libschroedinger implementing the 
Dirac video encoding/decoding algorithm



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110523232925.24827.34546.reportbug@leroy



double checking Debian's 686-pae vs. -486 probe

2011-05-23 Thread jidanni
Recently Debian sid split the kernel into these two packages,

linux-image-2.6.39-1-486_2.6.39-1_i386.deb
linux-image-2.6.39-1-686-pae_2.6.39-1_i386.deb

My Thinkpad ended up being told by the installation scripts to use -486.

But my Thinkpad isn't really very old... how can one double check to see
if the decision was correct? I can't figure it out even after probing
the .debs to find just where they probe the choice.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/8739k5ynn6@jidanni.org



Re: double checking Debian's 686-pae vs. -486 probe

2011-05-23 Thread Russell Coker
On Tue, 24 May 2011, jida...@jidanni.org wrote:
 But my Thinkpad isn't really very old... how can one double check to see
 if the decision was correct? I can't figure it out even after probing
 the .debs to find just where they probe the choice.

Why not just install the other kernel and try booting it?

-- 
My Main Blog http://etbe.coker.com.au/
My Documents Bloghttp://doc.coker.com.au/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201105241037.40889.russ...@coker.com.au



Re: double checking Debian's 686-pae vs. -486 probe

2011-05-23 Thread jidanni
 RC == Russell Coker russ...@coker.com.au writes:
RC Why not just install the other kernel and try booting it?
Maybe it will lead to subtle data loss. You never know. That's why I was
hoping to dig out of the .debs just how they determine which Thinkpads
are hip, and which to skip.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87pqn8yj1f@jidanni.org



Re: Alioth status update, take 3

2011-05-23 Thread Yaroslav Halchenko
on a related note (although not as critical as restoration of
git://git.d.o which I expect to impact  thousands:

$ grep git:// 
/var/lib/apt/lists/debian.lcs.mit.edu_debian_dists_sid_main_source_Sources | wc 
-l
3716

)

where previously available could be now?
http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file

both
http://anonscm.debian.org/viewvc/dep/
http://anonscm.debian.org/viewvc/deps/
seems to be empty

?

Thanks in advance for clarifications

On Mon, 23 May 2011, Russ Allbery wrote:
  If you have a specific example of something that does not work, it can
  be fixed.

 windlord:~/tmp debcheckout libpam-krb5
 declared git repository at git://git.debian.org/git/pkg-k5-afs/pam-krb5.git
 git clone git://git.debian.org/git/pkg-k5-afs/pam-krb5.git libpam-krb5 ...
 Cloning into libpam-krb5...
 git.debian.org[0: 217.196.43.140]: errno=Connection refused
 fatal: unable to connect a socket (Connection refused)
 checkout failed (the command above returned a non-zero exit code)
-- 
=--=
Keep in touch www.onerussian.com
Yaroslav Halchenko www.ohloh.net/accounts/yarikoptic


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110524023948.gc16...@onerussian.com



Re: Conditional Recommends

2011-05-23 Thread Goswin von Brederlow
David Kalnischkies kalnischk...@gmail.com writes:

 environment. I can already hear someone asking for
 Package: libc6
 Recommends: libc6-686 {arch::supports:cmov}
 which soon evolves to a complete language in which you really need
 all the funky stuff like  and | and ! together with hard/soft constraints…

That case would easily covered by multiarch and partial architectures.
There would be a i686 arch with just the optimized packages and apt/dpkg
would allow that arch if the cpu supports it. The configuration doesn't
even have to be in apt/dpkg but there could be a arch-detect package
that contains the detection logic and outputs suitable config for
apt/dpkg.

This would also solve the problem of having to use wrapper scripts,
diversions or runtime detection in binaries to provide an optimized
version.

MfG
Goswin


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87hb8k3iac.fsf@frosties.localnet



Re: double checking Debian's 686-pae vs. -486 probe

2011-05-23 Thread Goswin von Brederlow
jida...@jidanni.org writes:

 RC == Russell Coker russ...@coker.com.au writes:
 RC Why not just install the other kernel and try booting it?
 Maybe it will lead to subtle data loss. You never know. That's why I was
 hoping to dig out of the .debs just how they determine which Thinkpads
 are hip, and which to skip.

No. The kernels check the cpu features on boot. They either work or not.

As for your initial question: Depending on how you install the
installer has different sets of kernels to choose from. Due to space not
all kernels are on all images so sometimes you get the fallback option
because the right one simply isn't available.

Also try the -amd64 kernel. If supported that is generally preferable to
686-pae.

MfG
Goswin


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87aaec3hia.fsf@frosties.localnet



Re: Alioth status update, take 3

2011-05-23 Thread Guillem Jover
Hi!

On Mon, 2011-05-23 at 22:35:00 +0200, Roland Mas wrote:
   We should now be in the phase where we pretend it's done, wait for the
 complaints, and fix the problems as they are reported.

The project web sites do not seem to work anymore, for example:

  http://glibc-bsd.alioth.debian.org/
  http://d-i.alioth.debian.org/

thanks,
guillem


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110524052945.ga22...@gaara.hadrons.org



Accepted atanks 4.9-1 (source all amd64)

2011-05-23 Thread Mark Purcell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 20:54:30 +1000
Source: atanks
Binary: atanks atanks-data
Architecture: source all amd64
Version: 4.9-1
Distribution: unstable
Urgency: low
Maintainer: Mark Purcell m...@debian.org
Changed-By: Mark Purcell m...@debian.org
Description: 
 atanks - tank-battling game
 atanks-data - data files for Atomic tanks
Changes: 
 atanks (4.9-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 f11e8c74160d686025bd393c3460e3c4d5136af4 1164 atanks_4.9-1.dsc
 a5d375476a6d079b5a403164aca7718010dd2832 3125561 atanks_4.9.orig.tar.gz
 7c50a5ac3d17b9aacdf86380e2a738a37efb26f5 6979 atanks_4.9-1.debian.tar.gz
 255f450d9cc93075e7ee88929c555a417c5b4ce5 2252188 atanks-data_4.9-1_all.deb
 c6d6edca25594dab07ed9a09bfe02552d14389ba 190108 atanks_4.9-1_amd64.deb
Checksums-Sha256: 
 bf5a1c22873ea839899768ef2c5350890cc265799a7c5fecefa56eeb67e07e84 1164 
atanks_4.9-1.dsc
 6d67aa0562d36fcd40a19b6463c433cecf16518c30d268222362922911e4b604 3125561 
atanks_4.9.orig.tar.gz
 8f1e66ed8fb639fe51bedc0306d00e715596d6865174fab4ace9b6d4997df426 6979 
atanks_4.9-1.debian.tar.gz
 ac9530dd6b8d7fac47fc758f6afa9dc0cfebdbc13fbaa89be3c3c562b4fc29d7 2252188 
atanks-data_4.9-1_all.deb
 158c7093207cdb17d89f02725855c918ac9fe9378c4335ca0aa0e81ceb490bb3 190108 
atanks_4.9-1_amd64.deb
Files: 
 c382ab752cfeb7618c6e9429c945b4cb 1164 games optional atanks_4.9-1.dsc
 0785ea915d944d3d2614739e2bdd6d07 3125561 games optional atanks_4.9.orig.tar.gz
 ee3815a924a3c8fdaacd569355cc4856 6979 games optional atanks_4.9-1.debian.tar.gz
 53e891764613829cfe7b9c49442c8b3f 2252188 games optional 
atanks-data_4.9-1_all.deb
 9e71449a287d795aa19c6dcaaf85467a 190108 games optional atanks_4.9-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3aQbYACgkQoCzanz0IthJCOACeLqbye27tijFHxkQoN/nbw+g0
H5IAnjTe+nRigTtm6p0FeIRVXvbW21py
=0sOb
-END PGP SIGNATURE-


Accepted:
atanks-data_4.9-1_all.deb
  to main/a/atanks/atanks-data_4.9-1_all.deb
atanks_4.9-1.debian.tar.gz
  to main/a/atanks/atanks_4.9-1.debian.tar.gz
atanks_4.9-1.dsc
  to main/a/atanks/atanks_4.9-1.dsc
atanks_4.9-1_amd64.deb
  to main/a/atanks/atanks_4.9-1_amd64.deb
atanks_4.9.orig.tar.gz
  to main/a/atanks/atanks_4.9.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoajp-0008lr...@franck.debian.org



Accepted choosewm 0.1.6-2 (source amd64)

2011-05-23 Thread Bernhard R. Link
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 10:21:09 +0200
Source: choosewm
Binary: choosewm
Architecture: source amd64
Version: 0.1.6-2
Distribution: unstable
Urgency: low
Maintainer: Bernhard R. Link brl...@debian.org
Changed-By: Bernhard R. Link brl...@debian.org
Description: 
 choosewm   - fake x-session-manager allowing the user to choose a wm
Closes: 622044
Changes: 
 choosewm (0.1.6-2) unstable; urgency=low
 .
   * quick fix to make it build again until I have time for
 a proper solution. (Closes: 622044)
   * GTK_WIDGET_SET_FLAGS is deprecated so replace it
   * use dpkg-buildflags
Checksums-Sha1: 
 ebe9f805314a093fdb3f6485ab59b7d85a53225f 1171 choosewm_0.1.6-2.dsc
 1e9e1e758cb093319aeb835ac1fb979bc9547a88 4758 choosewm_0.1.6-2.debian.tar.gz
 1aa8a7667f1cd0c6ffdd3ac34c22d33a2712da98 19874 choosewm_0.1.6-2_amd64.deb
Checksums-Sha256: 
 dc7f574504d995791e3b562ecff79540818922e7e63636fe1318bd39d11ae68c 1171 
choosewm_0.1.6-2.dsc
 69ad093e363680022c5368439dbee0453f10fc0cdcb6f79d4e2213b15a25a5a9 4758 
choosewm_0.1.6-2.debian.tar.gz
 b17e10838b51a6b8bddeba7003598c1f9efad1f34c0e2968ee292325a9e87c9a 19874 
choosewm_0.1.6-2_amd64.deb
Files: 
 b2233d88c3d5c0336721c7bc0b05c1a1 1171 x11 extra choosewm_0.1.6-2.dsc
 1b67561fdae723ae86e533bec1f14f29 4758 x11 extra choosewm_0.1.6-2.debian.tar.gz
 d5ff3fa5b60bee3cbe63d7fc1260bd33 19874 x11 extra choosewm_0.1.6-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iJwEAQECAAYFAk3aSxcACgkQWzIpWA8dktqUBwQAjDVrAzmHvc1mRFMJ21Pl2jPm
jCCZcxyMwPU1JuZ/NRgsTw0cTNGIl0f2RFp1iRc8OgISLWfxAKdDnAn+lvkUqVsV
5J1a6elmk2+60ElF+KsHGG/YtgT8lxUp5vvJreAsqTQsK6RvuLZKESkgiWmR55jg
CkVPn2UV9wOJLQEa0Pc=
=C8YI
-END PGP SIGNATURE-


Accepted:
choosewm_0.1.6-2.debian.tar.gz
  to main/c/choosewm/choosewm_0.1.6-2.debian.tar.gz
choosewm_0.1.6-2.dsc
  to main/c/choosewm/choosewm_0.1.6-2.dsc
choosewm_0.1.6-2_amd64.deb
  to main/c/choosewm/choosewm_0.1.6-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoajy-0008os...@franck.debian.org



Accepted ckeditor 3.6.0-1 (source all)

2011-05-23 Thread Frank Habermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 21 May 2011 21:39:00 +0200
Source: ckeditor
Binary: ckeditor
Architecture: source all
Version: 3.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Frank Habermann lordla...@lordlamer.de
Changed-By: Frank Habermann lordla...@lordlamer.de
Description: 
 ckeditor   - text editor for internet
Changes: 
 ckeditor (3.6.0-1) unstable; urgency=low
 .
   * new upstream release
Checksums-Sha1: 
 79698f57bf3a0d9b74bb763c50c26830fd8cd56a 996 ckeditor_3.6.0-1.dsc
 251a806282302572f822b64b6a95cc9c572f0a12 1662578 ckeditor_3.6.0.orig.tar.gz
 17bf36ea786464b2e4fe7eae19eba975a84edd38 3423 ckeditor_3.6.0-1.diff.gz
 6774335660f0d4f9f975f0c3512f45bcffa0bd50 686458 ckeditor_3.6.0-1_all.deb
Checksums-Sha256: 
 852e2e1fba3b82b93b51eeafbe35e18b728d1ba637d4da23479056b6aaba1939 996 
ckeditor_3.6.0-1.dsc
 429ab2d5fd875d4ef2b0ece60517e6a88196a97d9016e2bc962afa8736d48a8e 1662578 
ckeditor_3.6.0.orig.tar.gz
 00019ca890b8584e379901962d3f6519d93c7e13cc4413c0b1a6fcd748f88011 3423 
ckeditor_3.6.0-1.diff.gz
 7e6c7a4edfa6c745907a44ca445fab80bdbffc4ab845bc80a8e7bbca0292f231 686458 
ckeditor_3.6.0-1_all.deb
Files: 
 a2cc3628ae6597f02fa0140fa3a75dc0 996 web optional ckeditor_3.6.0-1.dsc
 d3a798021eb9d94d9c4db74c99258749 1662578 web optional 
ckeditor_3.6.0.orig.tar.gz
 b80e79445d2c4d6e37af8e5aa49c2e6c 3423 web optional ckeditor_3.6.0-1.diff.gz
 afed5d4320ea14a85777bbb586701c0c 686458 web optional ckeditor_3.6.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3aB0AACgkQ+C5cwEsrK56eMwCdFUkvt7cELL+d/Pcu8g5Mdgqk
Fv0AnitNsQiQlYA48dgOJEhBnhjAsD2X
=F+mF
-END PGP SIGNATURE-


Accepted:
ckeditor_3.6.0-1.diff.gz
  to main/c/ckeditor/ckeditor_3.6.0-1.diff.gz
ckeditor_3.6.0-1.dsc
  to main/c/ckeditor/ckeditor_3.6.0-1.dsc
ckeditor_3.6.0-1_all.deb
  to main/c/ckeditor/ckeditor_3.6.0-1_all.deb
ckeditor_3.6.0.orig.tar.gz
  to main/c/ckeditor/ckeditor_3.6.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoajj-0008rc...@franck.debian.org



Accepted crafty 23.4-5 (source amd64)

2011-05-23 Thread Oliver Korff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 15:58:07 +0200
Source: crafty
Binary: crafty
Architecture: source amd64
Version: 23.4-5
Distribution: unstable
Urgency: low
Maintainer: Oliver Korff o...@xynyx.de
Changed-By: Oliver Korff o...@xynyx.de
Description: 
 crafty - state-of-the-art chess engine, compatible with xboard
Changes: 
 crafty (23.4-5) unstable; urgency=low
 .
   * Added a build dependency on kfreebsd-amd64 on libnuma-dev. Now FTBFS
 should be solved there.
   * Update to Standards-Version: 3.9.2 No changes.
Checksums-Sha1: 
 8b33a14e281cf79705f3390c05034bdf2bb1e287 1006 crafty_23.4-5.dsc
 fdc9975f041964e84aaa639ab32685bb647add37 54234 crafty_23.4-5.debian.tar.gz
 34b459f8bd6f5e03fead0554efc5a9ae8c79eee2 374506 crafty_23.4-5_amd64.deb
Checksums-Sha256: 
 8d72cbcc8536c11fe3a5ccdd289596ecf1cd11e9d78f282ed2f98d0680e25d5c 1006 
crafty_23.4-5.dsc
 fda5649e0fcd4a3e3599fcdeb553aad6d82beefdde53e526680c7919cd525a64 54234 
crafty_23.4-5.debian.tar.gz
 458fdea12bec902ebd72954815f3b7efd83c7dfaa0dfbe807a2a6112ee77eac0 374506 
crafty_23.4-5_amd64.deb
Files: 
 8c6b73dd0b9144e2ab2c9b33421912e1 1006 non-free/games optional crafty_23.4-5.dsc
 429436e8ebb2761ba386ab8f3969cbaa 54234 non-free/games optional 
crafty_23.4-5.debian.tar.gz
 15d55ca48e9bb848e53cc3701e91c36b 374506 non-free/games optional 
crafty_23.4-5_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3aa7QACgkQYEKwtdP5dN/rawCgnFYFquomwn5z7mwSILjml55N
3/kAoOy3tkJEDvrrMbpHtPiyoghYFJ8f
=ao+U
-END PGP SIGNATURE-


Accepted:
crafty_23.4-5.debian.tar.gz
  to non-free/c/crafty/crafty_23.4-5.debian.tar.gz
crafty_23.4-5.dsc
  to non-free/c/crafty/crafty_23.4-5.dsc
crafty_23.4-5_amd64.deb
  to non-free/c/crafty/crafty_23.4-5_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoajr-0008u1...@franck.debian.org



Accepted dose3 2.9.3-2 (source amd64)

2011-05-23 Thread Ralf Treinen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 08:07:08 +0200
Source: dose3
Binary: libdose3-ocaml-dev dose3-distcheck dose3-builddebcheck ceve
Architecture: source amd64
Version: 2.9.3-2
Distribution: experimental
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 ceve   - Parses package dependencies as set of constraints
 dose3-builddebcheck - Checks whether build-dependencies can be satisfied
 dose3-distcheck - Checks whether dependencies of packages can be satisfied
 libdose3-ocaml-dev - OCaml libraries for package dependencies (development 
files)
Changes: 
 dose3 (2.9.3-2) experimental; urgency=low
 .
   * use debian/libdose3-ocaml-dev.install (instead of ..install.in)
   * install in the libdose3-ocaml-dev package more files
 (*.mli, *.cmi, *.a, *.o) from usr/lib/ocaml/dose3.
   * Recompile against librpm 4.9.0
Checksums-Sha1: 
 1ef6856992f79d31b3021876b67df1c51d428d2a 1520 dose3_2.9.3-2.dsc
 f34e28edd3b5d3e8541a85bb35022627577fe5a9 7442 dose3_2.9.3-2.debian.tar.gz
 0caf239a96859453b21e4862efb0a738df1d40c1 857646 
libdose3-ocaml-dev_2.9.3-2_amd64.deb
 68522d6af28ada1138c28ac7e5d40d90a415df28 449316 
dose3-distcheck_2.9.3-2_amd64.deb
 bd2234bd204c53026fe75b049c45b484cb806225 448042 
dose3-builddebcheck_2.9.3-2_amd64.deb
 8659c9fe30d63cc8a8e0205eda34afabe5cb776c 619874 ceve_2.9.3-2_amd64.deb
Checksums-Sha256: 
 c139d39593a69ef1fd3c1b7271feccf6bb2e5b8275d1003e5cd63a641895f797 1520 
dose3_2.9.3-2.dsc
 4494f30c9b6df78bb7e1aed87ef771d740693e1372327a60532c52f74beaa9fe 7442 
dose3_2.9.3-2.debian.tar.gz
 bb42d639cbfe014c2245c146154044f56c83ef1ee0461d6604ae28c32e95843a 857646 
libdose3-ocaml-dev_2.9.3-2_amd64.deb
 55cb529e4fd41d157d8269fe0160e0ee85018f7f9cacec873ffb720ba38854d1 449316 
dose3-distcheck_2.9.3-2_amd64.deb
 127605fc62fc80b13d68d65fcac26cc0a0b832238d5892415d2f9c2e66ac8397 448042 
dose3-builddebcheck_2.9.3-2_amd64.deb
 d84720a57c2ef84357977921339ae4b1f834bd1c65cf7d41ef6d9f968bcb3e50 619874 
ceve_2.9.3-2_amd64.deb
Files: 
 836d84506ab31f15faf2bf94f9a0e29c 1520 ocaml extra dose3_2.9.3-2.dsc
 85d45b4a567692b4c9ad9c6e11fdc6f4 7442 ocaml extra dose3_2.9.3-2.debian.tar.gz
 e797d7dfd1af70feb661434fdeff7511 857646 ocaml extra 
libdose3-ocaml-dev_2.9.3-2_amd64.deb
 4654db97c68a10a095c2290bd91ba97c 449316 devel extra 
dose3-distcheck_2.9.3-2_amd64.deb
 daa965c4339172261e1f780a1a7d7e9e 448042 devel extra 
dose3-builddebcheck_2.9.3-2_amd64.deb
 3cbb6f6413f282f2eb74cc6f883bc663 619874 devel extra ceve_2.9.3-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3Z/OQACgkQtzWmSeC6BMGJCgCeNFJakgANmXUnRyAN/K1Kg+8R
YAEAoJYIYJBkrgNVSGyyVE2q7yRaguvs
=p4Jk
-END PGP SIGNATURE-


Accepted:
ceve_2.9.3-2_amd64.deb
  to main/d/dose3/ceve_2.9.3-2_amd64.deb
dose3-builddebcheck_2.9.3-2_amd64.deb
  to main/d/dose3/dose3-builddebcheck_2.9.3-2_amd64.deb
dose3-distcheck_2.9.3-2_amd64.deb
  to main/d/dose3/dose3-distcheck_2.9.3-2_amd64.deb
dose3_2.9.3-2.debian.tar.gz
  to main/d/dose3/dose3_2.9.3-2.debian.tar.gz
dose3_2.9.3-2.dsc
  to main/d/dose3/dose3_2.9.3-2.dsc
libdose3-ocaml-dev_2.9.3-2_amd64.deb
  to main/d/dose3/libdose3-ocaml-dev_2.9.3-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoakh-iv...@franck.debian.org



Accepted ecryptfs-utils 87-1 (source i386)

2011-05-23 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 07:26:48 +0200
Source: ecryptfs-utils
Binary: ecryptfs-utils ecryptfs-utils-dbg libecryptfs0 libecryptfs-dev 
python-ecryptfs
Architecture: source i386
Version: 87-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 ecryptfs-utils - ecryptfs cryptographic filesystem (utilities)
 ecryptfs-utils-dbg - ecryptfs cryptographic filesystem (utilities; debug)
 libecryptfs-dev - ecryptfs cryptographic filesystem (development)
 libecryptfs0 - ecryptfs cryptographic filesystem (library)
 python-ecryptfs - ecryptfs cryptographic filesystem (python)
Changes: 
 ecryptfs-utils (87-1) unstable; urgency=low
 .
   * Merging upstream version 87.
   * Updating package to standards version 3.9.2.
   * Removing getent.patch, included upstream.
   * Renumbering remaining patches.
   * Adding libglib2.0-dev to build-depends.
Checksums-Sha1: 
 0f7e1fd66f271614dd55a082d3d73be446988301 1717 ecryptfs-utils_87-1.dsc
 b85c303aa1b304eb86b0e32ebbcedb04e2fd9b8f 542880 ecryptfs-utils_87.orig.tar.gz
 cd0e79ed508c21faed5e92d0eb7de4486a4c742f 8359 ecryptfs-utils_87-1.debian.tar.gz
 4fb2a725678d12dfe6b4ef49580e7e877a8f13db 104842 ecryptfs-utils_87-1_i386.deb
 e70a64c2f6bcc28dc2a00abf757fdd2e663eeae7 167484 
ecryptfs-utils-dbg_87-1_i386.deb
 4d1f40734b0895c4e50111bc04cd9a17b2cfe181 50354 libecryptfs0_87-1_i386.deb
 9b81cdea0c28ee9391968a88ed78e5e097ccb0c2 58438 libecryptfs-dev_87-1_i386.deb
 f8e9f69e6a4e419bf9c4065b02b5979c793b05c5 19374 python-ecryptfs_87-1_i386.deb
Checksums-Sha256: 
 fd72956910b47442e66114387f5c6b9304188558664ad505b35a7f74ec8b7dea 1717 
ecryptfs-utils_87-1.dsc
 02952f122ae2a9c1a0fe6835575970fab4cefeb16b88e81ccaf00241c0161e7f 542880 
ecryptfs-utils_87.orig.tar.gz
 cac55f6c51bebff88e258934b811c87cb6d6810e77948deab626ffe0cf4ae1cb 8359 
ecryptfs-utils_87-1.debian.tar.gz
 b8a78059e7ee205e716b9c2457b99f051de7cc8987755333749c01dbcc1c8b42 104842 
ecryptfs-utils_87-1_i386.deb
 c295b00b6871dded3eda94d0d07bc84eac963709873d678a61c8e30c3c286fcb 167484 
ecryptfs-utils-dbg_87-1_i386.deb
 6a3b3f5a559d3ce7ed9614199d5d995e4e7736bd6e25a8a1f1296d8838cf8bdf 50354 
libecryptfs0_87-1_i386.deb
 17a78290d8a4ede49ebeb184640af673cd607ce1259817a0c4e34fac5f6a7e57 58438 
libecryptfs-dev_87-1_i386.deb
 a9f1a470faef038bff2315635483a9e0b884158259cfe7f93d779cc387976072 19374 
python-ecryptfs_87-1_i386.deb
Files: 
 c6067065ac36f7126620540b1147135b 1717 misc optional ecryptfs-utils_87-1.dsc
 b3e4ec1c70b3c57bd289b327363c39f6 542880 misc optional 
ecryptfs-utils_87.orig.tar.gz
 0ae15272ca57f842dc0b3bab98320a08 8359 misc optional 
ecryptfs-utils_87-1.debian.tar.gz
 6e75bc6aec86844401a3ca46e843922c 104842 misc optional 
ecryptfs-utils_87-1_i386.deb
 8c740331724554ffeb43feeafbf0821b 167484 debug extra 
ecryptfs-utils-dbg_87-1_i386.deb
 72119e11f75cd625cc4ca2456e1b1f44 50354 libs optional libecryptfs0_87-1_i386.deb
 d87aa2f33b6a26c231031212dc000e5b 58438 libdevel optional 
libecryptfs-dev_87-1_i386.deb
 a0bfc7282a1975b437b265697b97540b 19374 python optional 
python-ecryptfs_87-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3Z8dwACgkQ+C5cwEsrK555OACdFFIChjQQLxb/FHQBSXuw9U/2
B98AoJv5ShzU2EnZeg/o5YMsuYfSXLrf
=9z39
-END PGP SIGNATURE-


Accepted:
ecryptfs-utils-dbg_87-1_i386.deb
  to main/e/ecryptfs-utils/ecryptfs-utils-dbg_87-1_i386.deb
ecryptfs-utils_87-1.debian.tar.gz
  to main/e/ecryptfs-utils/ecryptfs-utils_87-1.debian.tar.gz
ecryptfs-utils_87-1.dsc
  to main/e/ecryptfs-utils/ecryptfs-utils_87-1.dsc
ecryptfs-utils_87-1_i386.deb
  to main/e/ecryptfs-utils/ecryptfs-utils_87-1_i386.deb
ecryptfs-utils_87.orig.tar.gz
  to main/e/ecryptfs-utils/ecryptfs-utils_87.orig.tar.gz
libecryptfs-dev_87-1_i386.deb
  to main/e/ecryptfs-utils/libecryptfs-dev_87-1_i386.deb
libecryptfs0_87-1_i386.deb
  to main/e/ecryptfs-utils/libecryptfs0_87-1_i386.deb
python-ecryptfs_87-1_i386.deb
  to main/e/ecryptfs-utils/python-ecryptfs_87-1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoakv-vb...@franck.debian.org



Accepted gnome-icon-theme 3.0.0-2 (source all)

2011-05-23 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 07:49:01 +0200
Source: gnome-icon-theme
Binary: gnome-icon-theme
Architecture: source all
Version: 3.0.0-2
Distribution: experimental
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 gnome-icon-theme - GNOME Desktop icon theme
Closes: 626515
Changes: 
 gnome-icon-theme (3.0.0-2) experimental; urgency=low
 .
   [ Josselin Mouette ]
   * Remove icon-theme.cache from the package. Closes: #626515.
 .
   [ Martin Pitt ]
   * debian/postinst: Use gtk-update-icon-cache-3.0 instead of the 2.0 binary.
 Move libgtk2.0-bin dependency to libgtk-3-bin for this.
   * debian/control.in: Bump Standards-Version to 3.9.2 (no changes necessary).
Checksums-Sha1: 
 4bebdc0e66e2b833793c5e5a8bc37c9cacb5dff9 2047 gnome-icon-theme_3.0.0-2.dsc
 1a163864de3b8d00e9c38fe5c90555d44920d544 23706 
gnome-icon-theme_3.0.0-2.debian.tar.gz
 490d5a6fb7e3049ea8df97580196550a16ff228f 8976288 
gnome-icon-theme_3.0.0-2_all.deb
Checksums-Sha256: 
 8573296c9f114926eb4dfde68626d658b6a0318e05be8e378dbb53ca54696f0b 2047 
gnome-icon-theme_3.0.0-2.dsc
 ee1578206670c043698f3bdcd1119b3158c69c48a6f7615a4eeb5f3e8fb048a1 23706 
gnome-icon-theme_3.0.0-2.debian.tar.gz
 d93e5b38316025ecb5ff9cfc5e63ec04b352e2d5f87a2059a3f466e2dc58f03a 8976288 
gnome-icon-theme_3.0.0-2_all.deb
Files: 
 39a62ed8a58f8ce61b7dc857e28d443f 2047 gnome optional 
gnome-icon-theme_3.0.0-2.dsc
 1493775cc6068dd893c23305ca3a669f 23706 gnome optional 
gnome-icon-theme_3.0.0-2.debian.tar.gz
 8378f7b408e424d232830143bbf2ce76 8976288 gnome optional 
gnome-icon-theme_3.0.0-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2fgJAAoJEPmIJawmtHufjUMP/0tzgx9nkP5WxY/IMHxMx3/9
xwGQ66rsfvGd8n/jmznFdvwHZTt8QKL0rbSbapXVQfb/StqP99CxAgcXZoHL0jfU
k4fB5AV/l0vOE9PzqCQ/qzmY6Dm8EJImYQiiSa47v+LAXfLeH16fdBENNPoARMHD
j7TsH86Q7o3c3PLmiSxCdn/z+1AQon3OnG4ZkmIFgBrqo08cdFlbrDZw23mPcqlF
lF8JSJxHnzE+vsEsldnYJXw05B0c4lQ4bTwYYpqNbZxHBEBbvf5CccmGfMLIBBHI
n+kxFJXGGZ5+ANgs51aSKl1dMg+2vJogUJjUeVpnnh796HwOA8yEWZ+i9H146FVc
KdIqIrGNupLccI0TGN6zXADpvEWTtM3zNhw2hy9Q+DJ9zGv8aog8sDQ9YeYRd5O0
GzuBi1po/+MGIoUzIze6UX5DOc3iXEznAL/+yGoJrIjNGvNIAMjXS0v0zf+8Kqi3
/DZ6rEFQfvPKjQbrYd0LNgtviqR/9DBJ9PQMmDrFJsoFrzhRPjdGN5Sg5/xk7wYZ
wbQMDWfbtZS84ywjVJMH3pf+VMhVuEIEQ2DafVnHiGTSwSiI8lJHcgGWwlHjNUHh
fQqBGKGtb3qWg8pYYre2eu4iHZNOusDorOW0SGu0wV+G0zRLbnIgazl3RuBvx+KR
Q+dYmKSZRv6byVv8r4AL
=hu/A
-END PGP SIGNATURE-


Accepted:
gnome-icon-theme_3.0.0-2.debian.tar.gz
  to main/g/gnome-icon-theme/gnome-icon-theme_3.0.0-2.debian.tar.gz
gnome-icon-theme_3.0.0-2.dsc
  to main/g/gnome-icon-theme/gnome-icon-theme_3.0.0-2.dsc
gnome-icon-theme_3.0.0-2_all.deb
  to main/g/gnome-icon-theme/gnome-icon-theme_3.0.0-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoalg-jn...@franck.debian.org



Accepted gnome-keyring 3.0.2-1 (source amd64)

2011-05-23 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 11:34:04 +0200
Source: gnome-keyring
Binary: gnome-keyring libgck-dev libgck0 libpam-gnome-keyring libgcr-3-dev 
libgcr-3-0
Architecture: source amd64
Version: 3.0.2-1
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 gnome-keyring - GNOME keyring services (daemon and tools)
 libgck-dev - GLib wrapper library for PKCS#11 - development
 libgck0- Glib wrapper library for PKCS#11 - runtime
 libgcr-3-0 - Library for Crypto UI related task - runtime
 libgcr-3-dev - Library for Crypto UI related task - development
 libpam-gnome-keyring - PAM module to unlock the GNOME keyring upon login
Changes: 
 gnome-keyring (3.0.2-1) unstable; urgency=low
 .
   [ Laurent Bigonville ]
   * debian/patches/04_expand_LIBEXECDIR.patch: Drop patch, applied from
 upstream
   * debian/rules: Enable tests
   * debian/patches/01_fix_glib_link.patch: Fix FTBFS with --no-add-needed
 .
   [ Martin Pitt ]
   * New upstream release.
   * debian/libgcr-3-0.symbols: Add new symbols from this upstream release.
   * Drop 01_fix_glib_link.patch, applied upstream.
   * debian/rules: As the PKCS11 tests often fail right now, don't cause test
 suite failures to fail the build. Let's see how well this works on the
 Debian buildds first.
Checksums-Sha1: 
 25981cd21e16e81699823c3e91d8f98984dd26da 2499 gnome-keyring_3.0.2-1.dsc
 8e9e190fa877a07258709af4f61f0b9b6c200629 2601607 
gnome-keyring_3.0.2.orig.tar.gz
 8690e7813c940e62975deb668a2645d7645ca22b 17963 
gnome-keyring_3.0.2-1.debian.tar.gz
 840d82b818e7dc883d76c8034e64b924462988e3 2042066 
gnome-keyring_3.0.2-1_amd64.deb
 4fea20373c1aa8f6c7b4bd6bdaa962be7967605d 310016 libgck-dev_3.0.2-1_amd64.deb
 7194ae29ff93d64dbcc5f6c1586edcc28aee1536 222434 libgck0_3.0.2-1_amd64.deb
 2dd01f9acb6f52aa0c2fb7bc50b94ed56bc5cc7e 183134 
libpam-gnome-keyring_3.0.2-1_amd64.deb
 e14c318c790c8aed9d1eb516fd23e34b7c1590f5 425804 libgcr-3-dev_3.0.2-1_amd64.deb
 32fc1e43211b0d1c65b9e78ae2bed6cd928017b3 307822 libgcr-3-0_3.0.2-1_amd64.deb
Checksums-Sha256: 
 aaca5436db5053185846441ccb328d7fb3429d01ca58e9d8dea15151fe381bd5 2499 
gnome-keyring_3.0.2-1.dsc
 032a2268aa708d99a92bd20ce45473e3c578f9ee98a0ffbea86443096eff1925 2601607 
gnome-keyring_3.0.2.orig.tar.gz
 ec8840149c238d6bc6875889b7dff776b46358c118280c5aa01dc53a252c7721 17963 
gnome-keyring_3.0.2-1.debian.tar.gz
 a268fda17e247ba7df020764e5384df95cd5f427b689fc74a6d044c18dcde290 2042066 
gnome-keyring_3.0.2-1_amd64.deb
 d37415d831f3bd5480138881627d22f1baaddf48a424689d035fd1fb28786d6b 310016 
libgck-dev_3.0.2-1_amd64.deb
 bd848e461a796611991904b1262047f31b49e9d5a17615645e495c4466a69a3c 222434 
libgck0_3.0.2-1_amd64.deb
 4678162b9308b1d9b6228cbadcde53b0bafb1ed1e631c71f8bde963003d7e80e 183134 
libpam-gnome-keyring_3.0.2-1_amd64.deb
 808a4ddcf2159f4b6996a30e6c8e05860f0d18edd26257fe05ed980c72da73bf 425804 
libgcr-3-dev_3.0.2-1_amd64.deb
 380b504cf15d8f77ea47d34a2774676bd056356db382bf883fb90f4b8081b2da 307822 
libgcr-3-0_3.0.2-1_amd64.deb
Files: 
 89fd2d3041b0f65bf426743ef1ac51af 2499 gnome optional gnome-keyring_3.0.2-1.dsc
 3a42ae99db0a28d4afbe0a5e60d35363 2601607 gnome optional 
gnome-keyring_3.0.2.orig.tar.gz
 18ac4db5618df3bf85af9da4421f0eba 17963 gnome optional 
gnome-keyring_3.0.2-1.debian.tar.gz
 d436ab90694edcf22d183c20db4198f4 2042066 gnome optional 
gnome-keyring_3.0.2-1_amd64.deb
 b0d0a42d84e11ebe8cf988d36aca758e 310016 libdevel optional 
libgck-dev_3.0.2-1_amd64.deb
 be6bf15ed82e607bf205ce85691125f1 222434 libs optional libgck0_3.0.2-1_amd64.deb
 4ee9176246d725017ae181945eb6f28c 183134 admin optional 
libpam-gnome-keyring_3.0.2-1_amd64.deb
 48430a3523233517cfae85ef556577b7 425804 libdevel optional 
libgcr-3-dev_3.0.2-1_amd64.deb
 6b54724e82bda17e50b96fdffdfb4f8b 307822 libs optional 
libgcr-3-0_3.0.2-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2ixUAAoJEPmIJawmtHufox8P/2qDsZgGEqmK0vIJJ+qW4eG7
dvFWqWPTOu0g8806edZ1DIMwFQUEdidyvCoGZtlZfj5SWhJX6b/S4s4OHNOcd/Qc
m93s9qKS4x4VSJevekdWCdY8OnIoes8zGD3oQ2HWw+y4n4TKQyux7UC+4JeSkWZ3
UTQK5fJSCUwjCKGNlZGf1RAMHuftZ385vD+tF9oMdONjgRxB6DmOaVDMDDt6dnaA
sS4obB2gRaLC+Rbc30pq0wi8cy+h4MAFqW3sZ0v6jM4KUCOyOArgFWft9vyCJwad
AFdRNViwJYA/EkGKWF7GjDF7plLwSkVuSwJmoissWU+zIMzGEZJCZGnKd/E13d7E
6/3WXOzKpFMZ5PHUZNP0G+pqmsOlKkVSj61cDQfPxlSIjwcN0YUV7MoRDMcfOEC6
4KPQgffRB1UhGKbxCkXoJBVAtLwkV8NQAqmtsFC2gZ/gnzyfSAqBr2uPzwNgl2f7
+1LFjXZSfb8Mt/pFvrRtEW4knmpcBgony06lLE3CYVadU44Pn4WINVwUFyL0oOKA
0amcvDmLqWEPNYLusK8NTl0+YTx5QMUcexarYY1o3NWhshnFzwEAbP3imyvt1JSf
f2sRydAcCQMAuPMqTLHnDbHMyrBbt2u0XjNs5y2S7+8NDyAyJipp9fzuhAHOUL3z
yP0xbaqMmHcv+GERTTmh
=2Zlo
-END PGP SIGNATURE-


Accepted:
gnome-keyring_3.0.2-1.debian.tar.gz
  to main/g/gnome-keyring/gnome-keyring_3.0.2-1.debian.tar.gz
gnome-keyring_3.0.2-1.dsc
  to main/g/gnome-keyring/gnome-keyring_3.0.2-1.dsc
gnome-keyring_3.0.2-1_amd64.deb
  to 

Accepted golang 1:57.1-2 (source all amd64)

2011-05-23 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 11:07:11 +0200
Source: golang
Binary: golang-go golang-src golang-doc golang-tools golang-mode kate-syntax-go 
vim-syntax-go golang-dbg golang
Architecture: source amd64 all
Version: 1:57.1-2
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 golang - Go programming language [meta package]
 golang-dbg - Go programming language tool chain [debug]
 golang-doc - Documentation for Google's Go programming language
 golang-go  - Go programming language compiler
 golang-mode - Go mode for GNU Emacs
 golang-src - Go programming language compiler (.go source files)
 golang-tools - Tools for Google's Go programming language
 kate-syntax-go - Syntax files to highlight Go in Kate editor
 vim-syntax-go - Syntax files to highlight Go in vim
Closes: 627036
Changes: 
 golang (1:57.1-2) unstable; urgency=low
 .
   * Bump standards version to 3.9.2
   * Capitalize Kate (Closes: #627036)
   * Import slightly modified patch to be more clear about $GOPATH
 installs for non-root users
   * Remove don't install deps patch from goinstall; deprecated by
 $GOPATH installs
Checksums-Sha1: 
 afef2bc4436430dd004dfa84d7ed6fb5be5c1886 1341 golang_57.1-2.dsc
 904ecaa9fd5dfc8e24814361506a741a528681dc 28101 golang_57.1-2.debian.tar.gz
 17f91d651b7708d3e8ec7fc3671a2b0f103dc880 10927550 golang-go_57.1-2_amd64.deb
 8cd55f2dfd6b3301077991e99cca10836a5a57aa 1660032 golang-src_57.1-2_amd64.deb
 36630d2de737cdcafc6f7ecac11ad007f30fb78b 3451212 golang-doc_57.1-2_all.deb
 31e8e46e783fdf60094808e673892ef427a5f708 3876608 golang-tools_57.1-2_amd64.deb
 85cc5ba76974d62d94974cd241b779b50c621f11 28308 golang-mode_57.1-2_all.deb
 8e97e5867ab85f8942983c5b3d38d22c8afd9ecb 22328 kate-syntax-go_57.1-2_all.deb
 b4ca28ced408102f2addec9318a8ef2fc1aebfc7 25998 vim-syntax-go_57.1-2_all.deb
 16b47b0c5004ce4dafe5052a2b40f5eda051008b 1165154 golang-dbg_57.1-2_amd64.deb
 20232f885d351bf19b6dca17f00ce397a60d65ce 21140 golang_57.1-2_all.deb
Checksums-Sha256: 
 e5dd9a715e4f95f10176c235c454ea0ca038a44fc75d7dc0fb9919d1c3b224b3 1341 
golang_57.1-2.dsc
 864386d035558ec10add85a347360f7cba5bf54b7ebc0d4807e5d2303d7e3777 28101 
golang_57.1-2.debian.tar.gz
 86cf24763ba07e55808e4c65fc89e8e4fac417d9c2f34cedbf4dda5480b62085 10927550 
golang-go_57.1-2_amd64.deb
 b4e81537f74819872ba42b73848835d313ef589f060531c44815cb5f7a323d30 1660032 
golang-src_57.1-2_amd64.deb
 f4987273d93c29772ebdaf3b77762c6c9bef8a0e64a80135a06109de5ccfbea3 3451212 
golang-doc_57.1-2_all.deb
 fb6f222188bb207b5aa57026bf9770c9127b884778e9755cb079a756f1e836ae 3876608 
golang-tools_57.1-2_amd64.deb
 483a41c3dfa7d9982cd660bb1820536d6e21766112e9ca9335890823376f8c92 28308 
golang-mode_57.1-2_all.deb
 fe27a2712541b676b89a7ff7da7b5f8fc40b86bf781a3bfacd4ab702c7c9e26d 22328 
kate-syntax-go_57.1-2_all.deb
 a22ed4e14178aa17d20e4bc757d886e14f20438d3cc50990827c1538349c80ea 25998 
vim-syntax-go_57.1-2_all.deb
 359214407b704a8b3a0fb429e0cf42071fbb52c29107bcf82bc5358930254a84 1165154 
golang-dbg_57.1-2_amd64.deb
 4581ccec5ff576d4325cec216ede4accfecff5b8aabbab26a374535fd1e8f892 21140 
golang_57.1-2_all.deb
Files: 
 28219bebf71262fd83271f35eb2ef278 1341 devel optional golang_57.1-2.dsc
 f4996c2ad0c558700aa710c617668a5c 28101 devel optional 
golang_57.1-2.debian.tar.gz
 9eeb0cf4c8a046a5a99ab71dada18183 10927550 devel optional 
golang-go_57.1-2_amd64.deb
 bed21b2ba74ed7d14de49c5914f16e98 1660032 devel optional 
golang-src_57.1-2_amd64.deb
 37087365b0a949c968404e69d5f9ce36 3451212 doc optional golang-doc_57.1-2_all.deb
 6336a028bd3e68748e0797571dfff53f 3876608 devel optional 
golang-tools_57.1-2_amd64.deb
 7ce81a8b3f55f7701280d26f717d22ad 28308 devel optional 
golang-mode_57.1-2_all.deb
 10924430706eb3ee7079cce873cb7eea 22328 devel optional 
kate-syntax-go_57.1-2_all.deb
 051039b62bff8f0c317fd125e689f77a 25998 devel optional 
vim-syntax-go_57.1-2_all.deb
 b9f5fc399fc9542f718bf72a2fba02bb 1165154 debug extra 
golang-dbg_57.1-2_amd64.deb
 df66c17276aa5f7674cd6d1a211644d0 21140 devel optional golang_57.1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3aJXUACgkQ9OZqfMIN8nMngQCdEm6i5N/Q+4th80ncOy/xmTsK
9asAniAzqoPlD+1Z5cVnWtzpWOus4Pmg
=NTIy
-END PGP SIGNATURE-


Accepted:
golang-dbg_57.1-2_amd64.deb
  to main/g/golang/golang-dbg_57.1-2_amd64.deb
golang-doc_57.1-2_all.deb
  to main/g/golang/golang-doc_57.1-2_all.deb
golang-go_57.1-2_amd64.deb
  to main/g/golang/golang-go_57.1-2_amd64.deb
golang-mode_57.1-2_all.deb
  to main/g/golang/golang-mode_57.1-2_all.deb
golang-src_57.1-2_amd64.deb
  to main/g/golang/golang-src_57.1-2_amd64.deb
golang-tools_57.1-2_amd64.deb
  to main/g/golang/golang-tools_57.1-2_amd64.deb
golang_57.1-2.debian.tar.gz
  to main/g/golang/golang_57.1-2.debian.tar.gz
golang_57.1-2.dsc
  to main/g/golang/golang_57.1-2.dsc
golang_57.1-2_all.deb
  to main/g/golang/golang_57.1-2_all.deb

Accepted golang-weekly 2011.05.22-1 (source all amd64)

2011-05-23 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 09:47:11 +0200
Source: golang-weekly
Binary: golang-weekly-go golang-weekly-src golang-weekly-doc 
golang-weekly-tools golang-weekly-dbg golang-weekly
Architecture: source amd64 all
Version: 2011.05.22-1
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 golang-weekly - Go programming language [meta package]
 golang-weekly-dbg - Go programming language tool chain [debug]
 golang-weekly-doc - Documentation for Google's Go programming language
 golang-weekly-go - Go programming language compiler
 golang-weekly-src - Go programming language compiler (.go source files)
 golang-weekly-tools - Tools for Google's Go programming language
Changes: 
 golang-weekly (2011.05.22-1) unstable; urgency=low
 .
   * Imported Upstream version 2011.05.22
   * Bump standards version to 3.9.2
   * Refreshed patches for new weekly release
Checksums-Sha1: 
 293d69c127c69c9e1292dd69dd55e359674d9d10 1428 golang-weekly_2011.05.22-1.dsc
 503da55f6287749d52da113eaa6d49ab257d818e 9357972 
golang-weekly_2011.05.22.orig.tar.gz
 1c86177f54f564185c332b9b18977ba703b028a8 27389 
golang-weekly_2011.05.22-1.debian.tar.gz
 cfe13dbafe915534835cf8647701aa1580251854 11221078 
golang-weekly-go_2011.05.22-1_amd64.deb
 543f71ccaf71db4657b09fee2d0c63be5e16a466 1727538 
golang-weekly-src_2011.05.22-1_amd64.deb
 b537e17e0744a1b8a315344707515e78c913cc26 4609530 
golang-weekly-doc_2011.05.22-1_all.deb
 eb04ae0e9ef530a01425977fd6079f2407b0f392 3975090 
golang-weekly-tools_2011.05.22-1_amd64.deb
 370cebda956dfd928b1b206b8216175d8a3d3343 1166328 
golang-weekly-dbg_2011.05.22-1_amd64.deb
 9ac06921dda35029ce50053c117aad0e87240286 21086 
golang-weekly_2011.05.22-1_all.deb
Checksums-Sha256: 
 d00cb798e2755fe1231fe4dd8138752aad32285dec94908b614f9d80b1c1dfaf 1428 
golang-weekly_2011.05.22-1.dsc
 acd10b3e7ce19517b3e313dc594cc6cd339df0e7d1ce3b7e9f1f1c0312d00bcd 9357972 
golang-weekly_2011.05.22.orig.tar.gz
 790053ab97914a028f576dcc7da718616bb941b43d3c0a93ae2ba38ea3be24fb 27389 
golang-weekly_2011.05.22-1.debian.tar.gz
 cdba39562153986c86b828b62c8bb8294ddebc08d6600c74d8f8b6e3bdf78052 11221078 
golang-weekly-go_2011.05.22-1_amd64.deb
 5e6dfab4db1e2c8eebaf27d6ea6b436af75eee080fd1ab5a88b7269c9b9a531c 1727538 
golang-weekly-src_2011.05.22-1_amd64.deb
 b810e865bfe5d0bc874524634d6d11aec04dfec0cb4ab2260b0b30009428a1d2 4609530 
golang-weekly-doc_2011.05.22-1_all.deb
 6b574ba7ccb19951093fad92a923949b1c768de10ca6fe911d45918c01769c7c 3975090 
golang-weekly-tools_2011.05.22-1_amd64.deb
 497ef34859d23fadb22bbac916714024cf7aec12b44944ed28bfa1169e8bdd34 1166328 
golang-weekly-dbg_2011.05.22-1_amd64.deb
 2817e1bc074b4bdb0585492ec824cc0144556e5b303d90af0e5e646e05424b41 21086 
golang-weekly_2011.05.22-1_all.deb
Files: 
 9275d9c6d4b0ac8953c208d3fa7a2899 1428 devel optional 
golang-weekly_2011.05.22-1.dsc
 0d311a7af96f50b16492ef789c5f7ffa 9357972 devel optional 
golang-weekly_2011.05.22.orig.tar.gz
 ae6fde39780184024b933edb06117e12 27389 devel optional 
golang-weekly_2011.05.22-1.debian.tar.gz
 854396ccd6bb5f4c5127142ce3874728 11221078 devel optional 
golang-weekly-go_2011.05.22-1_amd64.deb
 64c5933d265b91816521c4ecb92c2a0d 1727538 devel optional 
golang-weekly-src_2011.05.22-1_amd64.deb
 9f0a82114d139aacdea5107e5b8e6200 4609530 doc optional 
golang-weekly-doc_2011.05.22-1_all.deb
 24efef597851ec2a3b2a8945a668386d 3975090 devel optional 
golang-weekly-tools_2011.05.22-1_amd64.deb
 79172b6690409730d4cd32cd75118193 1166328 debug extra 
golang-weekly-dbg_2011.05.22-1_amd64.deb
 85a9a8308b6acf807265016c18950208 21086 devel optional 
golang-weekly_2011.05.22-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3aEpgACgkQ9OZqfMIN8nOzWgCeNyyxZbjNf6QEZaH7tE9BWLoY
/GMAn3oL/Ih0palfS+eiCXxZ9Viz/DEh
=4KWm
-END PGP SIGNATURE-


Accepted:
golang-weekly-dbg_2011.05.22-1_amd64.deb
  to main/g/golang-weekly/golang-weekly-dbg_2011.05.22-1_amd64.deb
golang-weekly-doc_2011.05.22-1_all.deb
  to main/g/golang-weekly/golang-weekly-doc_2011.05.22-1_all.deb
golang-weekly-go_2011.05.22-1_amd64.deb
  to main/g/golang-weekly/golang-weekly-go_2011.05.22-1_amd64.deb
golang-weekly-src_2011.05.22-1_amd64.deb
  to main/g/golang-weekly/golang-weekly-src_2011.05.22-1_amd64.deb
golang-weekly-tools_2011.05.22-1_amd64.deb
  to main/g/golang-weekly/golang-weekly-tools_2011.05.22-1_amd64.deb
golang-weekly_2011.05.22-1.debian.tar.gz
  to main/g/golang-weekly/golang-weekly_2011.05.22-1.debian.tar.gz
golang-weekly_2011.05.22-1.dsc
  to main/g/golang-weekly/golang-weekly_2011.05.22-1.dsc
golang-weekly_2011.05.22-1_all.deb
  to main/g/golang-weekly/golang-weekly_2011.05.22-1_all.deb
golang-weekly_2011.05.22.orig.tar.gz
  to main/g/golang-weekly/golang-weekly_2011.05.22.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact 

Accepted golang-weekly 2011.05.22-2 (source all amd64)

2011-05-23 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 10:36:32 +0200
Source: golang-weekly
Binary: golang-weekly-go golang-weekly-src golang-weekly-doc 
golang-weekly-tools golang-weekly-dbg golang-weekly
Architecture: source amd64 all
Version: 2011.05.22-2
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 golang-weekly - Go programming language [meta package]
 golang-weekly-dbg - Go programming language tool chain [debug]
 golang-weekly-doc - Documentation for Google's Go programming language
 golang-weekly-go - Go programming language compiler
 golang-weekly-src - Go programming language compiler (.go source files)
 golang-weekly-tools - Tools for Google's Go programming language
Changes: 
 golang-weekly (2011.05.22-2) unstable; urgency=low
 .
   * Import slightly modified patch to be more clear about $GOPATH
 installs for non-root users and set correct location of logfile
 for non $GOROOT installs
   * Import patch to not update standard packages from goinstall
   * Remove don't install deps patch from goinstall; deprecated by
 goinstall support for installing to $GOPATH + don't update
 standard packages patch
Checksums-Sha1: 
 c643bcba9b1551c0fceb9923a94516488c8a1690 1428 golang-weekly_2011.05.22-2.dsc
 bdc0cc36d6bc83ce0d7ae721239f0ebbc7a2a51b 27480 
golang-weekly_2011.05.22-2.debian.tar.gz
 693f7eb5b61281741b689ed9911dd8dedf204df6 11221494 
golang-weekly-go_2011.05.22-2_amd64.deb
 57cfc58e42a0cf9e1748d9ef34940b4f6288604f 1727602 
golang-weekly-src_2011.05.22-2_amd64.deb
 9a44b0585d976c50f466bca7240be5483ca736c9 4609730 
golang-weekly-doc_2011.05.22-2_all.deb
 e9310c255af9235269e8553a2f44f57e7fd3514c 3975362 
golang-weekly-tools_2011.05.22-2_amd64.deb
 fc5740903da0548104571c723ee2216fe1af24eb 1166496 
golang-weekly-dbg_2011.05.22-2_amd64.deb
 7272cbb61434d9fc376fb8e718d5c4a5b3c341c7 21274 
golang-weekly_2011.05.22-2_all.deb
Checksums-Sha256: 
 35b51b53897f1767ef348c5282c988ccabc7cee6e73a927b1edc189a5ccc0e43 1428 
golang-weekly_2011.05.22-2.dsc
 b3e75eaaabbb57e35ed54d37ac55a3191b9ad3e5ee0068759ad1f6337806b589 27480 
golang-weekly_2011.05.22-2.debian.tar.gz
 b1ad79a595055a77ae670f352b17bbf9d8aa79036c7aa4878b5b5aaf31cd3e75 11221494 
golang-weekly-go_2011.05.22-2_amd64.deb
 e83549546a8ff8c71ac295d2f64f380f39dbff27cad88fac1c8a22b92c3ba6a9 1727602 
golang-weekly-src_2011.05.22-2_amd64.deb
 d88685a70c87bbb66e0c2d4561f59fb8422b83a0cd7d87d1f361e99121ce09f7 4609730 
golang-weekly-doc_2011.05.22-2_all.deb
 5f32da187d2caffc0e37a32dec8cb07ff1fa40e7fa54a6746b788c2d57d10f79 3975362 
golang-weekly-tools_2011.05.22-2_amd64.deb
 3c69ae173bca80d83c8927f4be03ff84f9b156ae9641851d86c5ac1689d6cade 1166496 
golang-weekly-dbg_2011.05.22-2_amd64.deb
 19394a371b90e84adc914ea741e34d1dce41315b537d7622d6f895a6c595f4cb 21274 
golang-weekly_2011.05.22-2_all.deb
Files: 
 f1dcbf6835eab5e6c0207ee6ce4c8bc9 1428 devel optional 
golang-weekly_2011.05.22-2.dsc
 97d2b477bd206a17b44c18dae9701e61 27480 devel optional 
golang-weekly_2011.05.22-2.debian.tar.gz
 a71abb25c098d46ff10548e054a3bac3 11221494 devel optional 
golang-weekly-go_2011.05.22-2_amd64.deb
 d3be5ab144cc6f4854c38d861c1879c3 1727602 devel optional 
golang-weekly-src_2011.05.22-2_amd64.deb
 cf56be1aa786f0cf55a368f58aaf5cb0 4609730 doc optional 
golang-weekly-doc_2011.05.22-2_all.deb
 c3e6ddac052dcd79af7b1ea7dbf5b48c 3975362 devel optional 
golang-weekly-tools_2011.05.22-2_amd64.deb
 40483dcfba7d3466b3d4a2dcdb3153e9 1166496 debug extra 
golang-weekly-dbg_2011.05.22-2_amd64.deb
 f15c27d7643023d53dfea7be7aac8e73 21274 devel optional 
golang-weekly_2011.05.22-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3aI9sACgkQ9OZqfMIN8nMZlwCfSZEN7wnbQbmrwPtEgtNYGKPs
v6sAnRd82sCxfVd0G6LL9wMRNK1yHYw1
=pyiO
-END PGP SIGNATURE-


Accepted:
golang-weekly-dbg_2011.05.22-2_amd64.deb
  to main/g/golang-weekly/golang-weekly-dbg_2011.05.22-2_amd64.deb
golang-weekly-doc_2011.05.22-2_all.deb
  to main/g/golang-weekly/golang-weekly-doc_2011.05.22-2_all.deb
golang-weekly-go_2011.05.22-2_amd64.deb
  to main/g/golang-weekly/golang-weekly-go_2011.05.22-2_amd64.deb
golang-weekly-src_2011.05.22-2_amd64.deb
  to main/g/golang-weekly/golang-weekly-src_2011.05.22-2_amd64.deb
golang-weekly-tools_2011.05.22-2_amd64.deb
  to main/g/golang-weekly/golang-weekly-tools_2011.05.22-2_amd64.deb
golang-weekly_2011.05.22-2.debian.tar.gz
  to main/g/golang-weekly/golang-weekly_2011.05.22-2.debian.tar.gz
golang-weekly_2011.05.22-2.dsc
  to main/g/golang-weekly/golang-weekly_2011.05.22-2.dsc
golang-weekly_2011.05.22-2_all.deb
  to main/g/golang-weekly/golang-weekly_2011.05.22-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoank-00026o...@franck.debian.org



Accepted libgtkdatabox 1:0.9.1.1-3.2 (source amd64)

2011-05-23 Thread Luca Falavigna
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 21 May 2011 12:39:18 +0200
Source: libgtkdatabox
Binary: libgtkdatabox-0.9.1-1-dev libgtkdatabox-0.9.1-1 
libgtkdatabox-0.9.1-1-glade libgtkdatabox-0.9.1-1-libglade
Architecture: source amd64
Version: 1:0.9.1.1-3.2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Luca Falavigna dktrkr...@debian.org
Description: 
 libgtkdatabox-0.9.1-1 - A Gtk+ library to display large amounts of numerical 
data
 libgtkdatabox-0.9.1-1-dev - A Gtk+ library to display large amounts of 
numerical data
 libgtkdatabox-0.9.1-1-glade - A Gtk+ library to display large amounts of 
numerical data
 libgtkdatabox-0.9.1-1-libglade - A Gtk+ library to display large amounts of 
numerical data
Closes: 622040
Changes: 
 libgtkdatabox (1:0.9.1.1-3.2) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * debian/patches/03_deprecated_GTK.patch:
 - Get rid of more deprecated GTK functions (Closes: #622040).
Checksums-Sha1: 
 dbe3bf6bea8930d9273348eb7a588d57199c4860 2297 libgtkdatabox_0.9.1.1-3.2.dsc
 dfee7b33ae52966a645e7cf0ea551b0faa48e0e1 8810 libgtkdatabox_0.9.1.1-3.2.diff.gz
 fa16c62b7d3e465dd7a1661be9173feb95a7b1fa 129704 
libgtkdatabox-0.9.1-1-dev_0.9.1.1-3.2_amd64.deb
 676cca4daaa4830b5ca8111489b881baa9781d2e 48352 
libgtkdatabox-0.9.1-1_0.9.1.1-3.2_amd64.deb
 7f7a80e57b4cc6b9c88d54cff5ef019447f182bd 19058 
libgtkdatabox-0.9.1-1-glade_0.9.1.1-3.2_amd64.deb
 b0f204d2172a132d3ed09afe3f7a8d25940bf7b2 18396 
libgtkdatabox-0.9.1-1-libglade_0.9.1.1-3.2_amd64.deb
Checksums-Sha256: 
 f28a0ebdd3d04b58bc986089f036fab8aa01a306bf60001563de016f6b694af4 2297 
libgtkdatabox_0.9.1.1-3.2.dsc
 c388139ee07ad33fa87e74bfde2c52ad2117fe419b813fd0a66d5b8c4b29795c 8810 
libgtkdatabox_0.9.1.1-3.2.diff.gz
 2e599aa5fb579f0b31a959531aa1e2afc42088473958d055d6dbef51860abdc6 129704 
libgtkdatabox-0.9.1-1-dev_0.9.1.1-3.2_amd64.deb
 040ca67325f5aae71eed0d241103c804aa3e3c309f2885fcd1b7632e3c7003ab 48352 
libgtkdatabox-0.9.1-1_0.9.1.1-3.2_amd64.deb
 56f338e0b04b9bd3fcc7eb6f3bde7b250756b84e4462bac593beb35ce3fda25f 19058 
libgtkdatabox-0.9.1-1-glade_0.9.1.1-3.2_amd64.deb
 3a4103a35b2d276da90dee92b1088f524420a55288dc0dfa0d55ea793c1af1e0 18396 
libgtkdatabox-0.9.1-1-libglade_0.9.1.1-3.2_amd64.deb
Files: 
 34e89884a90b2e5cf124c6f7d5c6586a 2297 libs extra libgtkdatabox_0.9.1.1-3.2.dsc
 2d7da8ec3c9e15d54b20662d6ba7900b 8810 libs extra 
libgtkdatabox_0.9.1.1-3.2.diff.gz
 5a9b0690f52b2d5dde24d64daaf6d749 129704 libdevel extra 
libgtkdatabox-0.9.1-1-dev_0.9.1.1-3.2_amd64.deb
 78f1cb8eb4d10038f6ba56911d3048a4 48352 libs extra 
libgtkdatabox-0.9.1-1_0.9.1.1-3.2_amd64.deb
 630870ff8eecf6af1e54ec7102f0a6c7 19058 libs extra 
libgtkdatabox-0.9.1-1-glade_0.9.1.1-3.2_amd64.deb
 54a0f5f3c16740823f4a3aedd16cafcd 18396 libs extra 
libgtkdatabox-0.9.1-1-libglade_0.9.1.1-3.2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN15jpAAoJEEkIatPr4vMf7UoQAJIzZxcn+ow8gisxXbfs1+5S
LBPf3tduMTjx3xzv42mI/vk3P6ygiRf6FWO4FxE0RLuSNIJqGIKVgOHVFAJjZ1Wl
8NFOx0fG2efhVY20vCbs0LoFuVzs7dZdebhOoD06C9HykTJW+TSGiJegATddAibX
CzHDmV4hbHqtA760l7h83wRQpEGxDT5/iBtTXp91AqlCND66YLivwdIEusiDJaFc
ur97LVgQp7OxJIjGU6dHYMoue9TI18I3hJFFAd9o/hvalRhtW7x2ttlIlecMGOWf
tuC61GhPblecBpP/uBHfP5lQ95qHWnX3AQiLx+JoULh/dwdKOu/9osTvwRbIHx2/
vw4+qMHFJxzDgSAPumKw5/LoK5jU1u6bHHos3eLTq0mAjJmJqnEFrhyi4inachPR
7M3kIYbRlmALCOEg1myv4yFY/KGCQtOEVdlVIIcFSos1Kuhv0CTww33T7u2XmKOm
agaGvxF5FWy4uBcau4Sp2EdqiroeoSDfQ7qKGnQpH75NAnt2ypyahzpTEY3x0vc2
10cu3nXKi4zRa22kY7j5d9VDMS4u0rmSCRXJlkEuvF0Ij0LK9mNDmjveLJSbHWmj
ejD7zFhkzeeayubERXOVMkf3gmbQjS3FBSqELfKNBjuew7Tr0ilRbNIEZV6yY7N/
Z0CHA5zpA/Yk7/bLaohk
=8Qyq
-END PGP SIGNATURE-


Accepted:
libgtkdatabox-0.9.1-1-dev_0.9.1.1-3.2_amd64.deb
  to main/libg/libgtkdatabox/libgtkdatabox-0.9.1-1-dev_0.9.1.1-3.2_amd64.deb
libgtkdatabox-0.9.1-1-glade_0.9.1.1-3.2_amd64.deb
  to main/libg/libgtkdatabox/libgtkdatabox-0.9.1-1-glade_0.9.1.1-3.2_amd64.deb
libgtkdatabox-0.9.1-1-libglade_0.9.1.1-3.2_amd64.deb
  to 
main/libg/libgtkdatabox/libgtkdatabox-0.9.1-1-libglade_0.9.1.1-3.2_amd64.deb
libgtkdatabox-0.9.1-1_0.9.1.1-3.2_amd64.deb
  to main/libg/libgtkdatabox/libgtkdatabox-0.9.1-1_0.9.1.1-3.2_amd64.deb
libgtkdatabox_0.9.1.1-3.2.diff.gz
  to main/libg/libgtkdatabox/libgtkdatabox_0.9.1.1-3.2.diff.gz
libgtkdatabox_0.9.1.1-3.2.dsc
  to main/libg/libgtkdatabox/libgtkdatabox_0.9.1.1-3.2.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoap0-0003a2...@franck.debian.org



Accepted libjson-perl 2.53-1 (source all)

2011-05-23 Thread Angel Abad
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 15:22:51 +0200
Source: libjson-perl
Binary: libjson-perl
Architecture: source all
Version: 2.53-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Angel Abad angela...@gmail.com
Description: 
 libjson-perl - module for manipulating JSON-formatted data
Changes: 
 libjson-perl (2.53-1) unstable; urgency=low
 .
   * New upstream release
   * debian/copyright: Update copyright years
   * Bump Standards-Version to 3.9.2 (no changes)
Checksums-Sha1: 
 48c8206ba1b6a1a07aadaba9cb2054295ce7865c 2186 libjson-perl_2.53-1.dsc
 a56cd4155ddad0e55bbef588207c3fd85e13c271 84391 libjson-perl_2.53.orig.tar.gz
 01f7aec05433003c4ffd47e84e5d9ecb95beaa15 4148 libjson-perl_2.53-1.debian.tar.gz
 2792ba0bcff2c351effea2d92c1b5fc7ba9f9920 99940 libjson-perl_2.53-1_all.deb
Checksums-Sha256: 
 76fc8c2276b5ec83cccdb9986200c0ba6aa92b03a61b8a18b476a780470a2a4f 2186 
libjson-perl_2.53-1.dsc
 90de181e583d105a1086da4fe961ceacf39217f5ea7b3c8d886a5ed04ed0d565 84391 
libjson-perl_2.53.orig.tar.gz
 28f718126281449956c266839bc89f44bae0ee12d4583c3fd73cf32a3575c6a0 4148 
libjson-perl_2.53-1.debian.tar.gz
 18c05260da1e21ccc020c13c966d9f8c104eb26715658a0a2340986de3decfde 99940 
libjson-perl_2.53-1_all.deb
Files: 
 9d8c6bad5307bda008e7fa73c959d636 2186 perl optional libjson-perl_2.53-1.dsc
 7db1be00d44414c4962eeac222395a76 84391 perl optional 
libjson-perl_2.53.orig.tar.gz
 653faeb7e1ee7148be12ca259b717cd8 4148 perl optional 
libjson-perl_2.53-1.debian.tar.gz
 9b04e977376114da51cfa2cb15e886d7 99940 perl optional 
libjson-perl_2.53-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2ocGAAoJELs6aAGGSaoGhxwP/Ai+m+vdDNKoQWsFdTOq6Wjb
F2DQI3dJHGAM2z+wg3jzeW95co2lgxdyNZ/3/F2/HBuRBZqBueHd8qr+Tjpz4uUC
0punoaIsy1/XRMvOXgB9daQn/bLYrxiFEAfl4+W45KRjLELa5Z2Hj/V0MvDAqgKw
wj36u4wt9Gn4JMEybWN8ialo6QB+FXvrIcHBlCkvqk9fAlvZ8rencpsfpH/BwAru
YLDglMLKAsRutEUcgLZAWfeXF6+QKu8w2Akc2fVibhVVTJZZS7a+8SUAd2cjkMsz
SaaVfcUVxrkczyNtfnjUoR4XoRjtU+YRSe5+oO7ZDAMw64ng6uvSox1/ttoXRcB6
6NfVc4sfqFoHjk+GbPzpuYRqxtJTLAH5eOljFdNFKjvFX4kSs4pWOKwUk8woHz9T
kyFuPU273Kz7+/Z4wlftz4CoSBNBnRNd/T2+UhSVhBla0ejhJZ6WobRPTUTW+5VP
7LmM+FGXdddYpnigjQ4bm/CbC3tGGogxI7oOMhjbOK7Dj2DaGf+X/T1TcPrNwyG6
812s7Yj8Xn73uzjzAZfJwGR6zGbhoUAdk/5c0FCTAdCOtkeO+KsBZMerhhc7Ha6C
WEobdC3cRDcGTqrkE4Ngcl5V4e/Hbs4tjJBfLaXM6HFKUIdJY6rZDiwG0pd1YOXu
JTXx0FbQycIyf57Azzwy
=Dw7T
-END PGP SIGNATURE-


Accepted:
libjson-perl_2.53-1.debian.tar.gz
  to main/libj/libjson-perl/libjson-perl_2.53-1.debian.tar.gz
libjson-perl_2.53-1.dsc
  to main/libj/libjson-perl/libjson-perl_2.53-1.dsc
libjson-perl_2.53-1_all.deb
  to main/libj/libjson-perl/libjson-perl_2.53-1_all.deb
libjson-perl_2.53.orig.tar.gz
  to main/libj/libjson-perl/libjson-perl_2.53.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoap8-0003cu...@franck.debian.org



Accepted libmodule-starter-perl 1.570+dfsg-1 (source all)

2011-05-23 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 07:42:25 +0200
Source: libmodule-starter-perl
Binary: libmodule-starter-perl
Architecture: source all
Version: 1.570+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libmodule-starter-perl - simple starter kit for Perl modules
Closes: 627236
Changes: 
 libmodule-starter-perl (1.570+dfsg-1) unstable; urgency=low
 .
   [ Nicholas Bamber ]
   * New upstream release
   * Added spelling fix to patch
 .
   [ Salvatore Bonaccorso ]
   * debian/control: Add (Build-)Depends(-Indep) on libpath-class-perl.
 (Closes: #627236).
   * Add myself to Uploaders
   * debian/copyright: Update copyright information for debian/*
 packaging stanza.
   * Bump Standards-Version to 3.9.2 (no changes needed)
Checksums-Sha1: 
 10bf13cef6ea2c4f3fb758118c9ee769171a3d9c 2250 
libmodule-starter-perl_1.570+dfsg-1.dsc
 da4e570435326ec2ad0cd45b0ef893f63dde3559 40330 
libmodule-starter-perl_1.570+dfsg.orig.tar.gz
 1001a8856e4eb3c5b04fa1218b06db19e281d246 4376 
libmodule-starter-perl_1.570+dfsg-1.debian.tar.gz
 be6edf2c83425ca187d2c78f77ca1f290748c3d7 47056 
libmodule-starter-perl_1.570+dfsg-1_all.deb
Checksums-Sha256: 
 c2b73752827e558d0cac0dba05850d722c438be779b8f4a25083d757129fd761 2250 
libmodule-starter-perl_1.570+dfsg-1.dsc
 cdd65aba227f4cc88f0e9fd74f00b75c027261931c287152c64bb6c4cabb2caa 40330 
libmodule-starter-perl_1.570+dfsg.orig.tar.gz
 2dd89bed8ae4a5f90fd340cc436c1913090a683c8609a882127932deaa5f3282 4376 
libmodule-starter-perl_1.570+dfsg-1.debian.tar.gz
 8517ca6eeaf34ef257e82a1fb2b5bac40568a6bd7bed9b8a7f4242231b20ddb7 47056 
libmodule-starter-perl_1.570+dfsg-1_all.deb
Files: 
 1c613c928260de90abe4a8f61f7d8a47 2250 perl optional 
libmodule-starter-perl_1.570+dfsg-1.dsc
 48ca8a1ce3c121cefa1a6c6de8e90912 40330 perl optional 
libmodule-starter-perl_1.570+dfsg.orig.tar.gz
 34966940af467043c42cfa5ac0d3a092 4376 perl optional 
libmodule-starter-perl_1.570+dfsg-1.debian.tar.gz
 e80b816bb34c29a42ed60ff4e803ecae 47056 perl optional 
libmodule-starter-perl_1.570+dfsg-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2fbkAAoJEHidbwV/2GP+cHMP/jS5Wai3V0zgjKD5ArPDkEVn
NywB5VjEF9thTjQc7WGcL28BjgmpeGfK+adiKETwWY3FThxV7EQV3YFHoLTFHLPM
tWiZD9V9HP6I4pIgGpdbRU325r1dX8hy6oa1w1S4oNAdtho5pb+T1Zc1bPHz9Dap
4Ua1674D5BFiGhxcvMrD1Gsk+l/TFVS5D4g07fUqi2lmAYawFfPTPTSVap5451oc
RBQv5hjBhfVtj69mmQETrTI4GuhBfJpBybW+fLi0oXdWhfQZQBxDBwNB1UUy1CKE
GCKAhsaEi1geCHDOxyKpwtWD8mJfKOZ6e7G1KGFF/Ct67eX5aGnaNHRly4ouuJ6O
QBmHQ40rlefC52A6lSRHBRkqmnR1DhTCaA0KnRDM1Fu6p3d0Na+zBkJioMEx3eZ8
s/R2Mk2ea23lGymJKkwDn6qEVFTHCe+BJtRaYGjCoxrKtnLG6edSzGML8LVcTQD2
ssePk5oWTRVn+4QFF6rnbEEaDNcRr0RUHTwTmcodC/46egVTHxq7ZORTDZWad7lm
xVWeHWcl5zACeOTgqh9DqDDIzRcz9yh88Nf/Fsp30FXx24TQtdvwb+E27wrTaQl6
4NZkRho//lB/pSn2eTiO8xq1HlVZ5aXZPQHhopIbpJgd9UrxQ26CPMOQvo2dvxzU
OX1ge3wp8mLNwlD7bHnY
=3qjY
-END PGP SIGNATURE-


Accepted:
libmodule-starter-perl_1.570+dfsg-1.debian.tar.gz
  to 
main/libm/libmodule-starter-perl/libmodule-starter-perl_1.570+dfsg-1.debian.tar.gz
libmodule-starter-perl_1.570+dfsg-1.dsc
  to main/libm/libmodule-starter-perl/libmodule-starter-perl_1.570+dfsg-1.dsc
libmodule-starter-perl_1.570+dfsg-1_all.deb
  to 
main/libm/libmodule-starter-perl/libmodule-starter-perl_1.570+dfsg-1_all.deb
libmodule-starter-perl_1.570+dfsg.orig.tar.gz
  to 
main/libm/libmodule-starter-perl/libmodule-starter-perl_1.570+dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoapg-0003eu...@franck.debian.org



Accepted libpcap 1.1.1-6 (source all amd64)

2011-05-23 Thread Romain Francoise
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 19:13:27 +0200
Source: libpcap
Binary: libpcap-dev libpcap0.8-dev libpcap0.8 libpcap0.8-dbg
Architecture: source all amd64
Version: 1.1.1-6
Distribution: unstable
Urgency: low
Maintainer: Romain Francoise rfranco...@debian.org
Changed-By: Romain Francoise rfranco...@debian.org
Description: 
 libpcap-dev - development library for libpcap (transitional package)
 libpcap0.8 - system interface for user-level packet capture
 libpcap0.8-dbg - debugging symbols for libpcap0.8
 libpcap0.8-dev - development library and header files for libpcap0.8
Closes: 623607 627342
Changes: 
 libpcap (1.1.1-6) unstable; urgency=low
 .
   * debian/patches/47_ip6_protochain.patch: New patch; fixes a crash in
 the BPF interpreter with ip6 protochain on 64-bit platforms
 (closes: #627342).
   * debian/control: Avoid we in long description (closes: #623607).
   * debian/control: Set Standards-Version to 3.9.2.
Checksums-Sha1: 
 2323b3ee6925b2b2768f38265730f06204a0711c 1257 libpcap_1.1.1-6.dsc
 d6021920814e045d30628b45c386a7994259dd27 17665 libpcap_1.1.1-6.debian.tar.gz
 b14794a8aae79bfc911e2f2ccef546278fe633a4 19908 libpcap-dev_1.1.1-6_all.deb
 a42051662c565ad3d27c93804636d865a8dfb0ae 235092 
libpcap0.8-dev_1.1.1-6_amd64.deb
 df86afbebb4360209956a0b3edae4282c6b4a24d 131440 libpcap0.8_1.1.1-6_amd64.deb
 8e21221f3fa31c58bffa94332c6a4928352fff61 155848 
libpcap0.8-dbg_1.1.1-6_amd64.deb
Checksums-Sha256: 
 a7aadbb7eae24e4a30182f5ec4c05c61745bab83ecf776d6acd77563c174db52 1257 
libpcap_1.1.1-6.dsc
 b358a5ccf050007a281c1066fcdc2bfc252cce0ecd7b761fbba2484cbcf58cd6 17665 
libpcap_1.1.1-6.debian.tar.gz
 a7961294e3b4f4e1b8589bd769f28de46b61e2e6c338df4b23f5558ba98f2548 19908 
libpcap-dev_1.1.1-6_all.deb
 50049a5b093e5e9f86f6400010018a7a8f169269cea4d8b466f852b0127ff121 235092 
libpcap0.8-dev_1.1.1-6_amd64.deb
 28164b422112cabc155a3c3535d72784224d2352e2058f1bd7dc5eef58a35e42 131440 
libpcap0.8_1.1.1-6_amd64.deb
 633fba882fffa5d3817289f4671b774812cd17dd8f407e32f316e8a14b75a540 155848 
libpcap0.8-dbg_1.1.1-6_amd64.deb
Files: 
 bd4be671ca426e40b68a2171e6f61f54 1257 devel optional libpcap_1.1.1-6.dsc
 4a1710558c9363731d7153d1d173a795 17665 devel optional 
libpcap_1.1.1-6.debian.tar.gz
 fc855f9d3a39328dcf1c4ed50f128d05 19908 libdevel optional 
libpcap-dev_1.1.1-6_all.deb
 6bd3bc6ccef966e62692de86b1b444dc 235092 libdevel optional 
libpcap0.8-dev_1.1.1-6_amd64.deb
 4ae73cd3d3d9de6c34c7ce9becf43b3e 131440 libs optional 
libpcap0.8_1.1.1-6_amd64.deb
 bf2dcc13f2f4230ee09b1691c8c8426a 155848 debug extra 
libpcap0.8-dbg_1.1.1-6_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iD8DBQFN2peRogN2vsA8Vt8RAlsSAJ9IZKhIl0FwjhREP7rhv5xrZWwINgCgu/lM
TrmwLU2BFyGFwU/HOcTuxeM=
=TT0N
-END PGP SIGNATURE-


Accepted:
libpcap-dev_1.1.1-6_all.deb
  to main/libp/libpcap/libpcap-dev_1.1.1-6_all.deb
libpcap0.8-dbg_1.1.1-6_amd64.deb
  to main/libp/libpcap/libpcap0.8-dbg_1.1.1-6_amd64.deb
libpcap0.8-dev_1.1.1-6_amd64.deb
  to main/libp/libpcap/libpcap0.8-dev_1.1.1-6_amd64.deb
libpcap0.8_1.1.1-6_amd64.deb
  to main/libp/libpcap/libpcap0.8_1.1.1-6_amd64.deb
libpcap_1.1.1-6.debian.tar.gz
  to main/libp/libpcap/libpcap_1.1.1-6.debian.tar.gz
libpcap_1.1.1-6.dsc
  to main/libp/libpcap/libpcap_1.1.1-6.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoapt-0003kq...@franck.debian.org



Accepted libtest-www-mechanize-perl 1.32-1 (source all)

2011-05-23 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 17:30:37 +0200
Source: libtest-www-mechanize-perl
Binary: libtest-www-mechanize-perl
Architecture: source all
Version: 1.32-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libtest-www-mechanize-perl - module for testing web applications
Closes: 627177
Changes: 
 libtest-www-mechanize-perl (1.32-1) unstable; urgency=low
 .
   * New upstream release (closes: #627177).
   * Remove patch 01-new-test-longstring.patch, not needed anymore.
   * Update years of upstream an packaging copyright.
   * Bump (build) dependencies on libtest-longstring-perl,
 libwww-mechanize-perl, add perl as an alternative to libcgi-pm-perl, add
 libwww-perl.
   * Set Standards-Version to 3.9.2 (no changes).
Checksums-Sha1: 
 32496e25a7d52ea3dcafc510c7cca1493a4a3342 2576 
libtest-www-mechanize-perl_1.32-1.dsc
 16458bf60655e53be09685aaf796a3fdc9169083 20310 
libtest-www-mechanize-perl_1.32.orig.tar.gz
 c7e80cadf1e406ff2bbbab837fb8cfd56a8b68aa 3775 
libtest-www-mechanize-perl_1.32-1.debian.tar.gz
 ed945219322fa4b735e3909f9a15b49cf577b79f 23034 
libtest-www-mechanize-perl_1.32-1_all.deb
Checksums-Sha256: 
 6aa7f0ea6a873fc6fb82f38d4e8c5ea398f6d6059e8bd8e4e5de0303644ceb98 2576 
libtest-www-mechanize-perl_1.32-1.dsc
 a1a5e9eda85853fc8d17b5d349504749fc80f9a009b78def0cc6ffac0fa7d2bd 20310 
libtest-www-mechanize-perl_1.32.orig.tar.gz
 7d11395a42e5022d9643e6cc5c05b5702f23181ad07cbd4e3e17070d90d8f72f 3775 
libtest-www-mechanize-perl_1.32-1.debian.tar.gz
 dbd76e12c1d9946e292affc61918147c1e179d5a4e58ea5d3535943818a6a9e6 23034 
libtest-www-mechanize-perl_1.32-1_all.deb
Files: 
 0555061cffc2bd843df03a8125c8075f 2576 perl optional 
libtest-www-mechanize-perl_1.32-1.dsc
 6fb721d9be9025203548dfd407d82cce 20310 perl optional 
libtest-www-mechanize-perl_1.32.orig.tar.gz
 46b869dae039ae5007eb31c551ee4675 3775 perl optional 
libtest-www-mechanize-perl_1.32-1.debian.tar.gz
 d8a40a09ba44f1b8c5ea38f67800e04c 23034 perl optional 
libtest-www-mechanize-perl_1.32-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2n6AAAoJELs6aAGGSaoGVn8P/igI3iKRkFSbwJODNHVy6Jwy
kw/ga/WCzWkJdbQy9GmtOITGqmiOd1fOVi0233LkDf5eRJsBFPzxuD7m6nY8Njsu
kzJiKyqtj5LIEJ51wLwWYP8At4S6wWKNkyDrL7B4S00qNEL72FHb3TyqHgFBeLpK
NAn9jcZOFMiPk+oKY3IzN8fH9y8fIi0xyMEDdjpAN1nIMMGuHa1SgqH9Q2t8rTnv
1YiU9ldBOVvqodI4X38NinQYnFpwuCjA2nBHL/JYU226IOuRIqfpPCJqkk5Mqo+m
ekSig59fWGs+jyXFwEV2s6gWbuVtMl48od9Q7hFAiIHa6EPcNpU5ve/+mF1vEJmL
fpm8k854nNpQi7gJnZPjdlyb7jzTP2zYzw4xlgzqLzFwfBlpkMLQDaeJXM48VfPr
DBUSBmLqLUrcZ5ZeE43DXJP5nUaLm9PkLkUM+W2FGLPuqRAYHSsIkXrdGIPX33BQ
l7grLubWbiD4XSQnPcE6KPzyTHUoPEqlYd8aukTR6/DMw0wtrkkWCVyA4m5OdSgT
KPkJdXRa1EktfP7YMBI6RGEb+AYE06jnKz/gQKZZvLRne+06dwvsV7psi9cncFm0
AMjWjodWLNz+0O3eExcqN32T/ykfpMwUMvjt416LkNPQn4U+WSZLGuDCmcEfkYIS
Fvp1mUHTMcnu7kdFnWVU
=OIf9
-END PGP SIGNATURE-


Accepted:
libtest-www-mechanize-perl_1.32-1.debian.tar.gz
  to 
main/libt/libtest-www-mechanize-perl/libtest-www-mechanize-perl_1.32-1.debian.tar.gz
libtest-www-mechanize-perl_1.32-1.dsc
  to main/libt/libtest-www-mechanize-perl/libtest-www-mechanize-perl_1.32-1.dsc
libtest-www-mechanize-perl_1.32-1_all.deb
  to 
main/libt/libtest-www-mechanize-perl/libtest-www-mechanize-perl_1.32-1_all.deb
libtest-www-mechanize-perl_1.32.orig.tar.gz
  to 
main/libt/libtest-www-mechanize-perl/libtest-www-mechanize-perl_1.32.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoapd-0003np...@franck.debian.org



Accepted libwww-perl 6.02-1 (source all)

2011-05-23 Thread Nicholas Bamber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 01:05:49 +0100
Source: libwww-perl
Binary: libwww-perl
Architecture: source all
Version: 6.02-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Nicholas Bamber nicho...@periapt.co.uk
Description: 
 libwww-perl - simple and consistent interface to the world-wide web
Changes: 
 libwww-perl (6.02-1) unstable; urgency=low
 .
   [ Nicholas Bamber ]
   * New upstream release
 - Split off LWP::Protocol::https
 - Removes need for patch
 - Removes deprecated modules such as http10
   * Added Recommends clause for libauthen-ntlm-perl
   * Updated version in Breaks clause for tidy-proxy
   * Updated version in Breaks clause for gsutil
   * Raised standards version to 3.9.2
   * Adding debian/clean
 .
   [ gregor herrmann ]
   * debian/rules: unset PERL_LWP_SSL_VERIFY_HOSTNAME to make tests pass.
   * Removed libio-socket-ssl-perl, libcrypt-ssleay-perl from Suggests clause
Checksums-Sha1: 
 e965422efe5c41ce91ea17505b170835860a8cd5 2547 libwww-perl_6.02-1.dsc
 211393d014a9c991e572138aaaf367d10ea7103e 130344 libwww-perl_6.02.orig.tar.gz
 77ab8fcd10b905920ec3ab1cddd5f10893b23ddd  libwww-perl_6.02-1.debian.tar.gz
 fb5525a258c4799caff846f558dfd950965264b5 201460 libwww-perl_6.02-1_all.deb
Checksums-Sha256: 
 bf132f0448e42fead60418e807d67666ffef7d9f647ac9c3ad06399a6ce25cb3 2547 
libwww-perl_6.02-1.dsc
 b5193e9e2eb2fa6ff8b7d4d22ec4e9010706f65b6042e86cc537d7f2f362c232 130344 
libwww-perl_6.02.orig.tar.gz
 c866d25f801881b992d8062ac2e76c5ef256dcb5cc7690bc317962dc5890326d  
libwww-perl_6.02-1.debian.tar.gz
 b0bc1a6d5192226f81d57dccb7f763b571690359719e44f220f043a3d0acfe33 201460 
libwww-perl_6.02-1_all.deb
Files: 
 4235c2421cc6489861fecfaf75b619af 2547 perl optional libwww-perl_6.02-1.dsc
 4617dbc79a78992a8c8db263c170d8ec 130344 perl optional 
libwww-perl_6.02.orig.tar.gz
 de6c7232cf52372c9c751fa716da2029  perl optional 
libwww-perl_6.02-1.debian.tar.gz
 e390b5a9b0cd8eda74d546fb5afac1a9 201460 perl optional 
libwww-perl_6.02-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2nuxAAoJELs6aAGGSaoGUZcP/2KVl+kWE3WgT0n6uetYS9fB
KcL6wJMrrN7DpC51LG9ZxskIWZTM4bCKEclXa+yNXhqeRPxvMbWJt+CeZxXXrTvV
2/d+hK2HFls7a1xK27oWEdWpZSRiHNmh5vCVQpSwbk0BP9OI5XsSVJ7/O+54Bgmt
cSwWQQ2FLC0D0UX427gpetSSOa9otCmd5kv3tZ22CYR0oPr0j+sY69ISz+w4x+I8
nEpq3rnae61lupKf4ZZmuPMe9QlFkxgKqijEc2vn3KqAxOZQgn9RM5WM3DlS0SKM
YHsd8aC1+np/rSp8/k6A840G95z2Hw8EH2D+i9HlOAIQjBpstGtybDZYXyx7EAB0
+YRJH7bZE3GtcuVtAqJpRqtCbmjlsLtAIiouvevDIoSfRi7v9QDfrpSDG302r1hE
h+iLYR2M0O0oTM/h5HAGsbvC/Iu3jCvan/Ca3MVExvIUiTFGjbuFr8YiBssg+YAi
TtdYm3mU/DvpyiGw9Y7+Hl/d2HY/EBoQ00GRsGQFAjewi0tmzkc6v3zRqVJNghcn
rzoW8WNyv7hNiGjR40TkqS4hgVU0WfRXkpHLhRaXDwI8kaa8mo0zZRNYTvhaJ2kM
oEgro3dj2XKeAh/9li1ccoxYupnrTu1mvjeAvs15sIblhG8yg3zm0OcbOXVXjJrd
pPt7La+1sOeXEi4inLg4
=UYnF
-END PGP SIGNATURE-


Accepted:
libwww-perl_6.02-1.debian.tar.gz
  to main/libw/libwww-perl/libwww-perl_6.02-1.debian.tar.gz
libwww-perl_6.02-1.dsc
  to main/libw/libwww-perl/libwww-perl_6.02-1.dsc
libwww-perl_6.02-1_all.deb
  to main/libw/libwww-perl/libwww-perl_6.02-1_all.deb
libwww-perl_6.02.orig.tar.gz
  to main/libw/libwww-perl/libwww-perl_6.02.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoapz-0003rt...@franck.debian.org



Accepted mtd-utils 1:1.4.4-1 (source amd64)

2011-05-23 Thread Riku Voipio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 12:46:10 +0300
Source: mtd-utils
Binary: mtd-utils
Architecture: source amd64
Version: 1:1.4.4-1
Distribution: unstable
Urgency: low
Maintainer: Riku Voipio riku.voi...@linaro.org
Changed-By: Riku Voipio riku.voi...@linaro.org
Description: 
 mtd-utils  - Memory Technology Device Utilities
Changes: 
 mtd-utils (1:1.4.4-1) unstable; urgency=low
 .
   * New upstream version
   * start using release tags from upstream, thus add epoch
Checksums-Sha1: 
 8a3bffa9d6f7f8039b914b3c7206776190fdbeab 1224 mtd-utils_1.4.4-1.dsc
 6a145de479d2620b3340f8938988cb8bc6da17da 322706 mtd-utils_1.4.4.orig.tar.gz
 e650cf2a439e9009d77325556eb271a9b81f4a4b 5836 mtd-utils_1.4.4-1.diff.gz
 79328789c0cb84a76c11d482891883dd68d124d9 275096 mtd-utils_1.4.4-1_amd64.deb
Checksums-Sha256: 
 c18cbb64a178876e2284e27776136b9feed9beb19cfbb0a761e2abcc9e7463a4 1224 
mtd-utils_1.4.4-1.dsc
 7c8670b0ab65b41e9d4d301fa0940639ca4e5783e1da31eea76032afb76bc925 322706 
mtd-utils_1.4.4.orig.tar.gz
 cc538731dcc9035839ad680e3f20126cd04d0cefc3e4794c1b60823fa5246974 5836 
mtd-utils_1.4.4-1.diff.gz
 60dc764eee58214ff153e16ee57bd630f63a3fa550f245b32551f3f54c865d07 275096 
mtd-utils_1.4.4-1_amd64.deb
Files: 
 6796e158b1cc6ee1ca71e6535a1fc25e 1224 utils extra mtd-utils_1.4.4-1.dsc
 4e9b06c10c848e8ac9bccedfa224edee 322706 utils extra mtd-utils_1.4.4.orig.tar.gz
 8338a5c3b857087900519959ecc0adfe 5836 utils extra mtd-utils_1.4.4-1.diff.gz
 82add4dfe66c0dc405f2b7bf08ea9ea5 275096 utils extra mtd-utils_1.4.4-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iD8DBQFN2ke1ibPvMsrqrwMRAiErAKDAt27lQUfeZ9D+gLGPY8pOJHNHSACg1fmo
H4wQOMp9XUTv7QaHTOGWXME=
=WwVZ
-END PGP SIGNATURE-


Accepted:
mtd-utils_1.4.4-1.diff.gz
  to main/m/mtd-utils/mtd-utils_1.4.4-1.diff.gz
mtd-utils_1.4.4-1.dsc
  to main/m/mtd-utils/mtd-utils_1.4.4-1.dsc
mtd-utils_1.4.4-1_amd64.deb
  to main/m/mtd-utils/mtd-utils_1.4.4-1_amd64.deb
mtd-utils_1.4.4.orig.tar.gz
  to main/m/mtd-utils/mtd-utils_1.4.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoaqi-0003f3...@franck.debian.org



Accepted nabi 0.99.9-1 (source i386)

2011-05-23 Thread Changwoo Ryu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 24 May 2011 00:44:22 +0900
Source: nabi
Binary: nabi
Architecture: source i386
Version: 0.99.9-1
Distribution: unstable
Urgency: low
Maintainer: Debian Korean L10N debian-l10n-kor...@lists.debian.org
Changed-By: Changwoo Ryu cw...@debian.org
Description: 
 nabi   - Korean X input method server plus imhangul status monitor
Changes: 
 nabi (0.99.9-1) unstable; urgency=low
 .
   * New upstream release
   * Team maintained by Debian Korean L10N
Checksums-Sha1: 
 26474b5507403ef7e8810a0e8ef799211d5f2469 1291 nabi_0.99.9-1.dsc
 1d51f48f15b6da60d00368d2357a170afa3b9f00 834110 nabi_0.99.9.orig.tar.gz
 621992c219e68d41485ab9cf1a7b9256fa706536 7357 nabi_0.99.9-1.debian.tar.gz
 ab3b5aeff137edac17252955836508a724d18212 600338 nabi_0.99.9-1_i386.deb
Checksums-Sha256: 
 f5e753e4c2558273f6fe3871bcac0ea11f6473afe8e2ae0f0294fb9933fe020a 1291 
nabi_0.99.9-1.dsc
 e071f33a1da35687a5cbc840bbd038cc6a1e62c6fdbe7b534b98db7c6a0b0ad1 834110 
nabi_0.99.9.orig.tar.gz
 9a902bc12bb509cad1d03c8bc84135f7835d18e9e85998e442714efec727aee0 7357 
nabi_0.99.9-1.debian.tar.gz
 24715c4a7ecc9755d385f0bb9327544bd31ecc5ed75cf0b12b132f78bed0eb46 600338 
nabi_0.99.9-1_i386.deb
Files: 
 bf3e81fcabae8057d9805b0a0a09bf3e 1291 x11 optional nabi_0.99.9-1.dsc
 ec1b0158085c3c6b51a2cb349b3a4971 834110 x11 optional nabi_0.99.9.orig.tar.gz
 fac3bb59a83eba7dabbd22c7fe871a48 7357 x11 optional nabi_0.99.9-1.debian.tar.gz
 917a4943ec9f67e92182a4bc2362b3fe 600338 x11 optional nabi_0.99.9-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3agQ8ACgkQAbRzNODUnplacwCfc7X8p3TFuppPSwJ546Sant9q
LnEAoJPJ7iFliVRqea9IZTWF4ZVjdlMT
=hHuc
-END PGP SIGNATURE-


Accepted:
nabi_0.99.9-1.debian.tar.gz
  to main/n/nabi/nabi_0.99.9-1.debian.tar.gz
nabi_0.99.9-1.dsc
  to main/n/nabi/nabi_0.99.9-1.dsc
nabi_0.99.9-1_i386.deb
  to main/n/nabi/nabi_0.99.9-1_i386.deb
nabi_0.99.9.orig.tar.gz
  to main/n/nabi/nabi_0.99.9.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoaqh-0003jd...@franck.debian.org



Accepted openfetion 2.2.1-2 (source amd64)

2011-05-23 Thread Aron Xu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 22 May 2011 20:00:40 +0800
Source: openfetion
Binary: openfetion
Architecture: source amd64
Version: 2.2.1-2
Distribution: unstable
Urgency: low
Maintainer: Aron Xu happyaron...@gmail.com
Changed-By: Aron Xu happyaron...@gmail.com
Description: 
 openfetion - open source client implementation of Fetion protocol
Closes: 627591
Changes: 
 openfetion (2.2.1-2) unstable; urgency=low
 .
   * debian/control:
   - Make libnm-glib-dev [linux-any], as it is not present on other
 architectures.
   - Remove non-existing libnotify4-dev from build-dep (Closes: #627591).
Checksums-Sha1: 
 96cc09f3e673f1bd3b78bd8f0dc22d0b9c8138cb 1388 openfetion_2.2.1-2.dsc
 736425a684f42d0c7c35bc5fccbddc337a5eaadf 3568 openfetion_2.2.1-2.debian.tar.gz
 7a04d9e40a59a2be734b13c3472dac7ff9ee68b6 361028 openfetion_2.2.1-2_amd64.deb
Checksums-Sha256: 
 bfda8a8d3aefa5d68f5f62dc1e21292ee003f81757c89d53b14b871adbb5ffc5 1388 
openfetion_2.2.1-2.dsc
 fe94d097041afce8edc69940751110f46abb5368745fefa8ffaca1c3cb7fc092 3568 
openfetion_2.2.1-2.debian.tar.gz
 b9ea629d5d9eb6846f2e8ca9c85e65be1d66f0d3887299cc59f4f3c30afc81c5 361028 
openfetion_2.2.1-2_amd64.deb
Files: 
 a78e0a62856608817b72138926a62f4e 1388 net optional openfetion_2.2.1-2.dsc
 d647e59da1416d135bf9f39150e57306 3568 net optional 
openfetion_2.2.1-2.debian.tar.gz
 327b4add01f4ccf4c60458efb34f4114 361028 net optional 
openfetion_2.2.1-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3afIEACgkQ5TUK4GCH0viE9gCgpN6eZFJSvsb9aCQtAsxrqni9
dI8An0fQE+eK6T0hB2Eaw98gBLSlzwff
=bbT0
-END PGP SIGNATURE-


Accepted:
openfetion_2.2.1-2.debian.tar.gz
  to main/o/openfetion/openfetion_2.2.1-2.debian.tar.gz
openfetion_2.2.1-2.dsc
  to main/o/openfetion/openfetion_2.2.1-2.dsc
openfetion_2.2.1-2_amd64.deb
  to main/o/openfetion/openfetion_2.2.1-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoar3-0003qd...@franck.debian.org



Accepted padre 0.84.ds1-1 (source all)

2011-05-23 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 08:18:21 +0300
Source: padre
Binary: padre
Architecture: source all
Version: 0.84.ds1-1
Distribution: experimental
Urgency: low
Maintainer: Damyan Ivanov d...@debian.org
Changed-By: Damyan Ivanov d...@debian.org
Description: 
 padre  - Perl Application Development and Refactoring Environment
Closes: 627190
Changes: 
 padre (0.84.ds1-1) experimental; urgency=low
 .
   * New upstream release
   * update dependencies
   * bump plugin API version
   * upload to experimental for staging the plugin API transition
   * bump years of upstream copyright
   * add two translators to copyright
   * Bump B-D on libperl-apireference-perl to 0.05-2 (Closes: #627190)
   * claim conformance to Policy 3.9.2
   * fix lintian overrides about not executable sample scripts
   * update debian/not-real-manual.list
Checksums-Sha1: 
 4630f83d5bcf1146216c45667299f8247a53b061 3594 padre_0.84.ds1-1.dsc
 89de6d7d2e7f2b3cdf8496c6b10404f470b80588 1336001 padre_0.84.ds1.orig.tar.gz
 a8d614df0fc7abcf6e5ccb0ad028c6f50d12c9a2 20993 padre_0.84.ds1-1.debian.tar.gz
 ec372631b042629cd13a4a339c82a116de49 1499756 padre_0.84.ds1-1_all.deb
Checksums-Sha256: 
 d085f5b0ba881bba53f2cb5d9fa5d732ebd3a7e29a79616e912601ddc827a25a 3594 
padre_0.84.ds1-1.dsc
 7f8caf965738d58b80c13ed9c25be79449d784592e278fb9ba176da4c74d9dd7 1336001 
padre_0.84.ds1.orig.tar.gz
 41ba3d918e9a6b8b5ea88087586a4cb2c259b365c86d7a86aef55138f44cfc51 20993 
padre_0.84.ds1-1.debian.tar.gz
 0bce0451e8ec324fec13efb0cc3e34832daa308f4bebc517df2dfa54f5dc7291 1499756 
padre_0.84.ds1-1_all.deb
Files: 
 0d442a8d410172f90a7431dfeaa2194f 3594 perl optional padre_0.84.ds1-1.dsc
 344c92bc2f459cd9b6c76a648f835e8e 1336001 perl optional 
padre_0.84.ds1.orig.tar.gz
 ddf3f8a83505ab632751355333f3cea3 20993 perl optional 
padre_0.84.ds1-1.debian.tar.gz
 3fd5a8dfbec2289da8a545cef8afb7fd 1499756 perl optional padre_0.84.ds1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2f+IAAoJEOQbTFV/DYC++HkP/2L2i4j85MqjcaZ7cqUHZm7U
1gjMiady3lJBIv5aVQekNGTfwtRdxwWnmr4hZF/twEvyhi+xbWokiQehD6i9jjH1
pfzNNK2gGpmE0e6yMO34nl1ICuZISVkxEBXM/6wU9g8/gVu+du25DfsKh7ULED1s
F6aT25zQxz6eld6l7T654YL1b3YDbsQprvZMv+yYU5U/QE1lUhS8HBUsNBR4Wq3G
KiSMGg958/ef3hAje7Xthh9hNwjAS7lZMAHAqxojf2tm54A1xXic2AMfSion1Pvm
D4UJ8IwJKj/gmXRJP0OxT2wtIrS+7/VTsSpHZ9W4V4HSUHGNqFz5DIA+qybYjd3R
QD4TbnZlPTLoipyuyEBtgPn/5X2VbbRiNQitci2LMPqcJsdyj1rXL8bCoXydtPLo
/ukeLMWua06OzXj3ACXrlN/SO5MKv2KUyGjZfM0s0myikXPpHyN3OHHpdn1jdnxb
iywNTn8ctwA8EiUMlVzHXySGUlCTbVURGX//h/bNXkSO4Np0V6+Fud8vEB8lTtB/
aYbSQLS04zvY6bXRxR7LlWmDLN16uBOvMSo3Nf/vA106/ykiLTbpRreaWSjbPXaC
Ek2WWzlYLpUx60Iu1DMQSVBpowpLcJVprCteJYMCDxHPETYhiFphxpI8R2txvcsL
QFlXyxIbrLTLxW/1OcUK
=2tpX
-END PGP SIGNATURE-


Accepted:
padre_0.84.ds1-1.debian.tar.gz
  to main/p/padre/padre_0.84.ds1-1.debian.tar.gz
padre_0.84.ds1-1.dsc
  to main/p/padre/padre_0.84.ds1-1.dsc
padre_0.84.ds1-1_all.deb
  to main/p/padre/padre_0.84.ds1-1_all.deb
padre_0.84.ds1.orig.tar.gz
  to main/p/padre/padre_0.84.ds1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoark-0003yk...@franck.debian.org



Accepted phpmyadmin 4:3.4.1-1 (source all)

2011-05-23 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 13:34:36 +0200
Source: phpmyadmin
Binary: phpmyadmin
Architecture: source all
Version: 4:3.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Thijs Kinkhorst th...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 phpmyadmin - MySQL web administration tool
Changes: 
 phpmyadmin (4:3.4.1-1) unstable; urgency=low
 .
   * New upstream release.
 - Fixes XSS in tracking (PMASA-2011-3).
 - Fixes URL redirection (PMASA-2011-4).
   * Drop debian/rules hacks no longer needed.
Checksums-Sha1: 
 00c0376937b3e3ddd7e5d52888157cfcef1f480b 1865 phpmyadmin_3.4.1-1.dsc
 3cc14ec6e5f83efde9a60974ffe9927a8faa46c0 5637578 phpmyadmin_3.4.1.orig.tar.gz
 6e7eb48497b0784c50ad6f8504742e221fee2561 52699 phpmyadmin_3.4.1-1.debian.tar.gz
 7702cc4b4bb1e4f43660b44daa813ebd02f16e5d 5310114 phpmyadmin_3.4.1-1_all.deb
Checksums-Sha256: 
 cab9685d367255c87972c833dc05be145f33312dba0d68cd5eabfb85d836bd8f 1865 
phpmyadmin_3.4.1-1.dsc
 2e85bfe967e47e7045caa6d03cdff923baa5f4dd03a22cb25ee7587d184689f0 5637578 
phpmyadmin_3.4.1.orig.tar.gz
 2e6d1eca10a1252bac69deb8c3e5b0bd2c263aad0b3ce5aea63be778e6c7151a 52699 
phpmyadmin_3.4.1-1.debian.tar.gz
 6e918a447284f59d3ebfd1d06f1bf53ea9dfaa0ab012ff578734a393d93ab245 5310114 
phpmyadmin_3.4.1-1_all.deb
Files: 
 14a3eda0f5b80b9cca10a52e7adddf18 1865 web extra phpmyadmin_3.4.1-1.dsc
 ea340b627b117485ee26c2d6690b7b38 5637578 web extra phpmyadmin_3.4.1.orig.tar.gz
 20fa793c9d67f358597fe013ee8ad272 52699 web extra 
phpmyadmin_3.4.1-1.debian.tar.gz
 afbaf8034aece4bd90113a5d142b5bd5 5310114 web extra phpmyadmin_3.4.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2kcUAAoJEGo39bHX+xdNYywQAMDqsKw3tK/s8O7NXt3gXnKp
ga58BcEotV18T+wCR3ra9u5qkQjaddnZoBX7K/z7z344xEV85z/sRV9nnzyq3fSR
iOPW1+7qg78sQloDQnk++HBZ2qor3gXf8lMOqLxL7FXCfVDMV/DDHPoVoCMNOOJY
bsa/2KX1o5vBCCCeMOw5koMHkkpqtMGffPHzW5OUKM0UvX85HuY7AyONm8S1NL7p
l4HCc9LR6/t1FRXLSiX2WQ2lrKMeKhx5DNlFrEfhl+I75g88fDx6d/v5CY6Z40F/
Paa10pD7D0b5GbY1YP8J8C2+fBhXFA2KUCHnWuW4Tz0ehWVKbA2AYLXh9crYJ7lY
j9OmEPN3AEOhJlEa7A/c/iJKfJUPtCKcPeOXpEwk0G4b8sCJ1khuyRjFbKN87/71
WpjNShu4P/BbgO7eMUXBDgtVOq983JCR1HsjWUe82Z8mXTTHC8FPLErsqHvR4DHb
C+jCJ4hHXBtx4nuz7xCNVBFJEBcdJt7VW/i49lmkciQU9xOto+O31lVu6YGLLWnC
UPDFWpj94zZ7s3O1yTJ/u70X7e+gZxoIbTWRYsFTvbP8xBZ9PDkdn9xO8HxHnMq0
cV/xhFTgwcdD4QNzZQAPAzyzaWiVfPMHGLk2MoAEhbWPV8TzPVsj8dirTauL+b91
lefA87xrtI8SVi2DN1i8
=3hQT
-END PGP SIGNATURE-


Accepted:
phpmyadmin_3.4.1-1.debian.tar.gz
  to main/p/phpmyadmin/phpmyadmin_3.4.1-1.debian.tar.gz
phpmyadmin_3.4.1-1.dsc
  to main/p/phpmyadmin/phpmyadmin_3.4.1-1.dsc
phpmyadmin_3.4.1-1_all.deb
  to main/p/phpmyadmin/phpmyadmin_3.4.1-1_all.deb
phpmyadmin_3.4.1.orig.tar.gz
  to main/p/phpmyadmin/phpmyadmin_3.4.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoary-00046r...@franck.debian.org



Accepted prosody 0.8.0-1 (source amd64)

2011-05-23 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 10:07:42 +0200
Source: prosody
Binary: prosody
Architecture: source amd64
Version: 0.8.0-1
Distribution: unstable
Urgency: low
Maintainer: Matthew James Wild mwi...@gmail.com
Changed-By: Enrico Tassi gareuselesi...@debian.org
Description: 
 prosody- Lightweight Jabber/XMPP server written in Lua
Closes: 600370 614175 620882
Changes: 
 prosody (0.8.0-1) unstable; urgency=low
 .
   [ Matthew James Wild ]
   * New upstream release. (closes: #614175, #620882)
   * Relocate all Prosody modules into /usr/lib/prosody. (closes: #600370)
 .
   [ Enrico Tassi ]
   * Removed prosody.dirs, usr/lib/lua/5.1/util/ not needed
   * Bumped standards version to 3.9.1. no changes needed
   * Added watch file
Checksums-Sha1: 
 c37faa103d3508dee53913bc5306786cf933f4bf 1150 prosody_0.8.0-1.dsc
 f20baab36bd2570825a24f49e0643cb9c2a65541 210945 prosody_0.8.0.orig.tar.gz
 9bb9db8e691e81cb1786d95ebd194626ee8cb0ea 9080 prosody_0.8.0-1.diff.gz
 10aa51b7127542ebfbe758a294a311678e61d3dd 192524 prosody_0.8.0-1_amd64.deb
Checksums-Sha256: 
 e6b70dde5cbb8dcb43cae3e38d6a696c8492478a7331551d0710fb513ed39271 1150 
prosody_0.8.0-1.dsc
 0b9e39a6b555b4c848af288f27107e99b1480d9733556a2c9b3a9f249eba602d 210945 
prosody_0.8.0.orig.tar.gz
 0525e993d167ef667e113f7d359da7248e4809f62aae17c45f7c7bcdbfbd7a9d 9080 
prosody_0.8.0-1.diff.gz
 8d535c7334ea22fc23da5fe88cde68643ecacee16777cd1082951eae7b582484 192524 
prosody_0.8.0-1_amd64.deb
Files: 
 673823934eafe4b1d6b39a545c11cd51 1150 net extra prosody_0.8.0-1.dsc
 8b057f62875b46b4a8061853a0953473 210945 net extra prosody_0.8.0.orig.tar.gz
 6b5c3ce611e041c4e189de286a92ddf8 9080 net extra prosody_0.8.0-1.diff.gz
 18721bb3af65aff7379d83134e5c217b 192524 net extra prosody_0.8.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3aGVYACgkQ7kkcPgEj8vLerwCguYQap4VPy3I1ht4uVAqpsnsf
P+0An1I/DTbyPHbYGGd1PXGVKaCOEcEw
=OmZd
-END PGP SIGNATURE-


Accepted:
prosody_0.8.0-1.diff.gz
  to main/p/prosody/prosody_0.8.0-1.diff.gz
prosody_0.8.0-1.dsc
  to main/p/prosody/prosody_0.8.0-1.dsc
prosody_0.8.0-1_amd64.deb
  to main/p/prosody/prosody_0.8.0-1_amd64.deb
prosody_0.8.0.orig.tar.gz
  to main/p/prosody/prosody_0.8.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoarh-0004a6...@franck.debian.org



Accepted python-exif 1.0.8-3 (source all)

2011-05-23 Thread TANIGUCHI Takaki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 12:52:01 +0900
Source: python-exif
Binary: python-exif
Architecture: source all
Version: 1.0.8-3
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: TANIGUCHI Takaki tak...@debian.org
Description: 
 python-exif - Python library to extract EXIF data from tiff and jpeg files
Changes: 
 python-exif (1.0.8-3) unstable; urgency=low
 .
   * debian/control: remove python-support from BD.
Checksums-Sha1: 
 a4d7fb5f5d8e85b0b1df5334c1e5546e254aabed 1793 python-exif_1.0.8-3.dsc
 83e76866130aa8f8028ea41df610c392303ca5c7 2244 python-exif_1.0.8-3.debian.tar.gz
 d3ccd096aad23398d9ba201dd78b04213acb8662 21960 python-exif_1.0.8-3_all.deb
Checksums-Sha256: 
 f229afdb2072f511a3347212d3654068aadd26c8a5c3c20c9fbad6e76c09421f 1793 
python-exif_1.0.8-3.dsc
 718f2929b5e5325f48157c39feae786130a60333c21b4110a977f8f2a119843f 2244 
python-exif_1.0.8-3.debian.tar.gz
 57b751654a8c700e244e81d0771cb3bfd856b677def64974f2f1f5f11741769a 21960 
python-exif_1.0.8-3_all.deb
Files: 
 4f80dc550cc44d9fa268c47be061a487 1793 python extra python-exif_1.0.8-3.dsc
 0eabd736b091a3376c1a0e682e4f35dd 2244 python extra 
python-exif_1.0.8-3.debian.tar.gz
 0afb32ad7de4061fd20a785f76e382c0 21960 python extra python-exif_1.0.8-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2doCAAoJEMwUn2wopeJXHPgP/2uHRiQO2HZUqwexi9KI091P
TGeXILy67vc62lOLPgmZNxici7pfqN9z4OdNa7xLUMlTqfsnvmiq4zJIuPtKdi1y
aXYA/l07JhV3QwF909DTY1eBWKmIqTk/51E0DMdY24m2A1uchmfdHYEZvfMMhlpA
MkPD453QWv8Xp3Z0qgF9+I2mYI8fcY7quOVPWGTEXQ7yX5AX6ZPdFpROAd9wdki5
hDFM9eGELjcJ7+EACAJWqK7R3OK7I1qOwi2byvCeNshDdk9UmnDqrNMtG9WuECT9
CIsokcLYQJtejLTDEFKA7A08131BNvl++eMFHEggYOpUbgSbTEJKDWljgIAMXnU7
2jv5GvtTJ3B8lBCubnBaL/qvJaEFgJoztkmf86VMggzKOX0Fa0anuLg8iAAB2F/Q
awbwIz00xLiEQ6wyEEaBA0T+mSXW64mORpVxGVpsXT5elsf0pdjkuLjyaJrOEjUm
qpci8OpJLTi9gKU83f+jzJV0PSd+q5EkzQFfM6yqr3wvXueZ2EZWER5+gfqWtYuy
PINe/SK4UzETsSafnpD3ZPb8YtS2hpLECQOzQKzF5KRzY1sGO64//+PT2sfpQAOZ
scq7+zsA0Qtp4jwJ7ID5bAw4MrS4tlRc8em3Sxb5DhQIWlfATBltbH+VuHH2OUlp
RAthBtDvndxlo0isYFK5
=yPV+
-END PGP SIGNATURE-


Accepted:
python-exif_1.0.8-3.debian.tar.gz
  to main/p/python-exif/python-exif_1.0.8-3.debian.tar.gz
python-exif_1.0.8-3.dsc
  to main/p/python-exif/python-exif_1.0.8-3.dsc
python-exif_1.0.8-3_all.deb
  to main/p/python-exif/python-exif_1.0.8-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoarr-0004cq...@franck.debian.org



Accepted python-pyalsa 1.0.24-2 (source amd64)

2011-05-23 Thread TANIGUCHI Takaki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 12:45:55 +0900
Source: python-pyalsa
Binary: python-pyalsa
Architecture: source amd64
Version: 1.0.24-2
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: TANIGUCHI Takaki tak...@debian.org
Description: 
 python-pyalsa - Official ALSA Python binding library
Changes: 
 python-pyalsa (1.0.24-2) unstable; urgency=low
 .
   * Switch to dh_python2.
   * Bump Standards-Version to 3.9.2 (with no changes).
Checksums-Sha1: 
 1a83547e7073dbe0cbc488a5b8e22df66930033c 1867 python-pyalsa_1.0.24-2.dsc
 821b0c5c8086898921aa72844f46598d58d33311 3370 
python-pyalsa_1.0.24-2.debian.tar.gz
 48dd2f65bf2d8be48bf755c8998aeb3f6f66bfff 142478 
python-pyalsa_1.0.24-2_amd64.deb
Checksums-Sha256: 
 438508d1ecb64b2c6a5f10b4a9e8d6e9fb18530982df0d3678da76ca4c8b1365 1867 
python-pyalsa_1.0.24-2.dsc
 9cea92a7427e473a40c0c1da2f2aa86b9bfe0c4d0d86d114c17a51eb88771351 3370 
python-pyalsa_1.0.24-2.debian.tar.gz
 4d72adf1303cd1b8c855151a0f4805e505167c3529729090ccae9ea77bd050ae 142478 
python-pyalsa_1.0.24-2_amd64.deb
Files: 
 b6274da12156ea382b135fb0903ad9da 1867 python extra python-pyalsa_1.0.24-2.dsc
 c2089dd2af3c42733b13a9eaf13a517f 3370 python extra 
python-pyalsa_1.0.24-2.debian.tar.gz
 159b3b48578fd2030f493ea18cd1b276 142478 python extra 
python-pyalsa_1.0.24-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2dmbAAoJEMwUn2wopeJX76IP/1tf01T43M/ely5semUYa2vJ
vaGC6QFp3Zz6xCL50ZTAZ8jlKi5r2w3i4j17DZlTfBzlUoD8xMldgj3wFcBHnxbd
dz9di/vtsTj+eeIGTj5rnjmDCLQFhoNEsA4l6JRpyt5qM2tQraXUAYjEAy08s8gt
nxok7gv9FprTAqlHmAOIOUNjAYU6pv2cRmweIwW4bIMAYpbfDqoQEm37tY63JFXA
UovfQaKYRD+oNweNrdTPADIXH5j8LirYsSNaL0ayk3OkBVJiZltI8cP9W5hV0hUv
qDLMmK7TiwcNy9S+dz6e2AnqGlEQhVdsaEoA580FqN794RAifAuUeUGmfmlAu3ZC
k4XY8oJMz2xODo+BTUu6EZ8q49XDmAtV+TKZxu7aq4NZTw1M2q51wFci/xQ4J9HY
B6RpjXNa3kKA0A6vf0grNJmALP9TzcwnOiKZk7+BwYfVCwhBYqhOBctvZMyL/q53
mOB5j262QvX6myeH1fF+udcvGgVNWzFcx0t1rPxWvuTX0A62buayrNGVtm0uRQ4+
j8Id6aN5nOh81QEhBfiif2ueJf4Rsx1DwFAIqCj765r0S10KEHouWwpotgKo4b2D
F3qKunHuz+J1N78+fKcfy2XITr2FJlLaPWYWcvYj8bdfTJC7oh2DrfJjPlUTV3+A
U97kMEp1PLLsGgwExorN
=a9ef
-END PGP SIGNATURE-


Accepted:
python-pyalsa_1.0.24-2.debian.tar.gz
  to main/p/python-pyalsa/python-pyalsa_1.0.24-2.debian.tar.gz
python-pyalsa_1.0.24-2.dsc
  to main/p/python-pyalsa/python-pyalsa_1.0.24-2.dsc
python-pyalsa_1.0.24-2_amd64.deb
  to main/p/python-pyalsa/python-pyalsa_1.0.24-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoas7-0004iv...@franck.debian.org



Accepted python-pyhyphen 1.0~beta1-2 (source amd64)

2011-05-23 Thread TANIGUCHI Takaki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 12:50:24 +0900
Source: python-pyhyphen
Binary: python-pyhyphen
Architecture: source amd64
Version: 1.0~beta1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: TANIGUCHI Takaki tak...@debian.org
Description: 
 python-pyhyphen - hyphenation library of OpenOffice and FireFox wrapped for 
Python
Changes: 
 python-pyhyphen (1.0~beta1-2) unstable; urgency=low
 .
   * Switch to dh_python2.
   * Bump  Standarads-Version to 3.9.2 (with no changes).
Checksums-Sha1: 
 a3b55e77602ee1ddb3b95f6892fc2a34e79b3e3b 1870 python-pyhyphen_1.0~beta1-2.dsc
 d6a36a0dd01d467161fb7debeb321b5f076a9cb5 2070 
python-pyhyphen_1.0~beta1-2.debian.tar.gz
 7653e9bd1e3e6e8a620a0865d975f8e0db1e512a 35054 
python-pyhyphen_1.0~beta1-2_amd64.deb
Checksums-Sha256: 
 9b10bf2717919417a70f198ef669143f2065dde955df8781ec485c1ae9038607 1870 
python-pyhyphen_1.0~beta1-2.dsc
 77bd1820e9cf6ad7458207e59d730e6cbb0479dcf9a9321355492b9d0235 2070 
python-pyhyphen_1.0~beta1-2.debian.tar.gz
 bae1555f68ac5cc9e8e77ba42c9c4af232eb50fd5647604162454a2047d43763 35054 
python-pyhyphen_1.0~beta1-2_amd64.deb
Files: 
 4a0baa5bf3d7e415a7909f72363bad66 1870 python extra 
python-pyhyphen_1.0~beta1-2.dsc
 543b532529ef6d1b6360c596d9f15deb 2070 python extra 
python-pyhyphen_1.0~beta1-2.debian.tar.gz
 a2bff7d28f453627813d88c79c078e74 35054 python extra 
python-pyhyphen_1.0~beta1-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2dnUAAoJEMwUn2wopeJXmFwP/0HKUxWIy/YR3R4MFN1noFEq
FIcelURH9u+puLHiT+8HunN7Br4NjcgXd4B24S9x6xe44gxobLccvp6AYEQUJucr
3ZQx2BEs1rQJQjl9Nj/gepUpiM7lg2gZAYpw4OpVguJ2aIncK4T7SGUYVed1Roa+
+dX+YgyTgSMymX6WlyR/YWHUlp+N32HniGmbiXRmr1j6hVJslC81NP13HfxzZvYF
93I2sTG7rd4xmvKmhSfhBsoN4aP0SD9EGE3Bt+ttXwv9Vhg7Qve8lnkQ4Jd+ElLg
7itC8J6BNoLZqLmoAmKBrWafYhqTtjBMde/PI3wMfD0nlR+6SLepXKT0bW+HXDLX
AoNTYVKQf7dfYCt/U1zUGOmR8oIK7Zc5WhFEzSK05t+19mmkriAVqwosJvq4MwPl
iLwYhyIdanGoOnrwtdF1ge+chep1E0guveh+i53v9OBHYncEOPOUmhAjsIgEKvN3
ZNdYUR6AlNsU8SboBTsHANOxlZ0L+cEaYN5U9Q9GmY7Mvil6S1N+SPKjy+UBC8aS
scTHumtmiYzBzw5j3KNyfjXvxVVej/Cm43N0bF/p/DMbzmm3be9eM2rnfpcxyPNC
LaX9oicnW9CQdUR7mTHgNEGmh0Tyiasy5fNCKlq13RqQWUljFnOOPYT8d+YCxMnw
/LHA6VSdwhmcbEMBCSzx
=JvCK
-END PGP SIGNATURE-


Accepted:
python-pyhyphen_1.0~beta1-2.debian.tar.gz
  to main/p/python-pyhyphen/python-pyhyphen_1.0~beta1-2.debian.tar.gz
python-pyhyphen_1.0~beta1-2.dsc
  to main/p/python-pyhyphen/python-pyhyphen_1.0~beta1-2.dsc
python-pyhyphen_1.0~beta1-2_amd64.deb
  to main/p/python-pyhyphen/python-pyhyphen_1.0~beta1-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoash-0004ng...@franck.debian.org



Accepted python-repoze.lru 0.3-2 (source all)

2011-05-23 Thread TANIGUCHI Takaki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 12:40:57 +0900
Source: python-repoze.lru
Binary: python-repoze.lru
Architecture: source all
Version: 0.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: TANIGUCHI Takaki tak...@debian.org
Description: 
 python-repoze.lru - tiny LRU cache implementation and decorator
Changes: 
 python-repoze.lru (0.3-2) unstable; urgency=low
 .
   * Switch to dh_python2.
   * Bump Standards-Version 3.9.2 (with no changes).
Checksums-Sha1: 
 c26005b98468d451478fd550daa38c6c28ce300c 1825 python-repoze.lru_0.3-2.dsc
 33e201856fa52c10d2828a5aae941cc8822d42db 3183 
python-repoze.lru_0.3-2.debian.tar.gz
 6823da07742e7f8a31c49c3f993f2d48e5040e2d 7146 python-repoze.lru_0.3-2_all.deb
Checksums-Sha256: 
 01440811ae48724492e960477c2399e76a57ea9b12233ff3844d90f44ff6747f 1825 
python-repoze.lru_0.3-2.dsc
 4ecc7f8227965d83e54650e8e5e74deb0e9993bf34214dde1f3d6d0c662237e1 3183 
python-repoze.lru_0.3-2.debian.tar.gz
 643fae3f25b4c832717ae2bacb6ac9835e5554866fdc32f051d83eb9223a584e 7146 
python-repoze.lru_0.3-2_all.deb
Files: 
 39c1e9bd016928889240c36cddc43f76 1825 python extra python-repoze.lru_0.3-2.dsc
 a377d1fdbdad9240e75f59cfcdf67d12 3183 python extra 
python-repoze.lru_0.3-2.debian.tar.gz
 0bcc575d05069346a7fcc29feca9cdc5 7146 python extra 
python-repoze.lru_0.3-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2deAAAoJEMwUn2wopeJXJoYP/12Utrj/5qCNVUnOXMqB5BbM
Q3vRS9L4B4MLA6JQrMSfYBB74eLs02MN6pYqZh0dJey/+iMwYNYN3LXARp2RPIv9
6rm5JWcfzE5d4VVQ3PRizfkMmHbdPFxqzjg2a4y/Wv0xgZ6ufGoHcoNw6aGc9WCg
gE5AcdKdjnmf+j/aCd4CBdAyQH9gChfw/K7GXMBQXVxpjF6MRWu6eu8ClWRTrMaP
pKpvIjRJnUvrUmvv/Ix24Mp4D+2ONoagTWYS+38i9csBRhdkxHC77LCHJPkKh0Id
Xu/Axlx0CngUa7EdhgxoN5gM4KMEpOIOd0hVI5Wmr2pdHU2OdVQsS3vG0PAfn3Wa
gZ9Af4biOamnPxohBpHLi2r0XNcsI4ckaWrqzKut6o38iRes/XIYvTa4rtkRopJz
hzHr2itYikCE/FeM9NuaNOF7BHCcIWN0OT3epGvzrjAMFsaZdguvB1p67zxz8Vc7
Vq0DB0iZSui7+KKDzNbglSV5gXuhO9Do7hy08RwqdpwT5rt3WX4PaOaznglY9x0J
IxTOJeasA2r0VwNnAYHA+05kZt72FtHse4n5Kw2LivT30bJHm8yA7wJe7XYhXUsN
yf3PFoO5/94pvZ0BiRJQPfzWHCjPYYB6jYk1c46KpFJemO/91Fi20ZQwkPGG2P4i
NSie1WDY7CivZSpkiuZM
=zlHf
-END PGP SIGNATURE-


Accepted:
python-repoze.lru_0.3-2.debian.tar.gz
  to main/p/python-repoze.lru/python-repoze.lru_0.3-2.debian.tar.gz
python-repoze.lru_0.3-2.dsc
  to main/p/python-repoze.lru/python-repoze.lru_0.3-2.dsc
python-repoze.lru_0.3-2_all.deb
  to main/p/python-repoze.lru/python-repoze.lru_0.3-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoasp-0004rb...@franck.debian.org



Accepted python-translationstring 0.3-2 (source all)

2011-05-23 Thread TANIGUCHI Takaki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 12:43:24 +0900
Source: python-translationstring
Binary: python-translationstring
Architecture: source all
Version: 0.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: TANIGUCHI Takaki tak...@debian.org
Description: 
 python-translationstring - Utility library for i18n relied on by various 
Repoze packages
Changes: 
 python-translationstring (0.3-2) unstable; urgency=low
 .
   * Switch to dh_python2.
   * Bump Standards-Version to 3.9.2 (with no changes).
Checksums-Sha1: 
 871d67bb5e4f81a5c79576c0fe2017c76d50f4a5 1884 
python-translationstring_0.3-2.dsc
 30654b3bd6bf615230b03901810a88034a0c744b 3252 
python-translationstring_0.3-2.debian.tar.gz
 dfd04c80fb3aaf3af32da146d1879ea5214b41c0 13444 
python-translationstring_0.3-2_all.deb
Checksums-Sha256: 
 e3add67c6bdd54b22f9b15b874f1e789552a658128d52374ff1dbffea58627e3 1884 
python-translationstring_0.3-2.dsc
 3096288900bc83ecf6529ae0bab8731e47cd0d2a9549e53fd41b65539809a235 3252 
python-translationstring_0.3-2.debian.tar.gz
 0bb547ef965f9aad89d5d54d75d8c6ee785a07af0115dae85eb16b210f92c98a 13444 
python-translationstring_0.3-2_all.deb
Files: 
 249f63b8468af224abdf1e6366af468d 1884 python extra 
python-translationstring_0.3-2.dsc
 4da348b0f6490e060eee856063b61387 3252 python extra 
python-translationstring_0.3-2.debian.tar.gz
 2094d90ff6780d145b476ab5c3387ad6 13444 python extra 
python-translationstring_0.3-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2dg0AAoJEMwUn2wopeJX3rYP/3TdHIVfjlM+i7SubD77mUX8
OCvbjwQIdhy64jsPI8qfL87z49I5sGWrCIYj1zI44HB+X3iI7CbSpNGWBSRU7r2e
ujpf99EEvREFjka5zhFF9WUbOLjmtHrxRFWnmvTIDFqm/xB9kXFsnpQ08aH03t8m
K+quzH33kK5q3CYY3ba3Yf6lXo0CqYgJ5gdbZspb3ijb1UrjHsYkY17j+RDlBB3C
Nnn2w7/1DYSsSd3+35oVyLp734zfo2RgHbDlcgnO7jAxOFvzBeBsMxberJy9UCk7
WVefIsanAR2cOEYgzprR1mNWdMPC9bXOKEkMI9t3WPVmKfaLrm0XNIdswjAel7w4
lLc49vWvbILcs27U66YAnzWbslnn5kXPy6EwCD0z/zCVT3PbFT/J/XUur6MeSPTe
HNGQqPf4f2lVjkSh8chDTDsBhJy0BIiiJQr7VQe3cs+F+0lqaZrdEfgNI3M5V5cI
+OKpaKMIIE1e82UzS8YMvS1fZIt1BniNHduOsG5FQnrWCHIg+RQGY6zvazsW+3yn
BoY+Lha/rcrO21S4NQM+AVU1lNdGcplW0sK4bBvgd235G8aQYC38kvWsTUJJgi71
wwbmPi5W6fIMzSngWnau43GNVKY6Nw91ied9OMCJQKbHDfa8i9KG9BdzDV8rEQnn
q7u4uJpB7jj9P4EySSK9
=YYcW
-END PGP SIGNATURE-


Accepted:
python-translationstring_0.3-2.debian.tar.gz
  to 
main/p/python-translationstring/python-translationstring_0.3-2.debian.tar.gz
python-translationstring_0.3-2.dsc
  to main/p/python-translationstring/python-translationstring_0.3-2.dsc
python-translationstring_0.3-2_all.deb
  to main/p/python-translationstring/python-translationstring_0.3-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoasz-0004uq...@franck.debian.org



Accepted pyzmq 2.1.7-1 (source amd64)

2011-05-23 Thread Miguel Landaeta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 08:57:59 +0200
Source: pyzmq
Binary: python-zmq python-zmq-dbg
Architecture: source amd64
Version: 2.1.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Miguel Landaeta mig...@miguel.cc
Description: 
 python-zmq - Python bindings for 0MQ library
 python-zmq-dbg - Python bindings for 0MQ library - debugging files
Changes: 
 pyzmq (2.1.7-1) unstable; urgency=low
 .
   [ Bernd Zeimetz ]
   * New upstream version.
   * Build-depend on zeromq 2.1.7.
   * Bump Standards-Version to 3.9.2, no changes needed.
   * Remove all .pyc and .so files during clean.
 .
   [ Miguel Landaeta ]
   * Update copyright dates and make it DEP-5 compliant.
   * Refresh patches.
   * Enable build-time tests.
Checksums-Sha1: 
 b49388cad0620d003b388236f66876e13c8b6b94 2039 pyzmq_2.1.7-1.dsc
 cad35cf6a8917ae300689d9c1a52a0e92aa13969 318234 pyzmq_2.1.7.orig.tar.gz
 d0a2fd23ebe6e1f70b0a881dbfc4c9a38c4db884 3801 pyzmq_2.1.7-1.debian.tar.gz
 d1a4969c406a515ad07fea13a5eceaa06fa2dfa5 357088 python-zmq_2.1.7-1_amd64.deb
 48f8a3c28c3aec6670d9036a94a6ca3d36d49c95 960306 
python-zmq-dbg_2.1.7-1_amd64.deb
Checksums-Sha256: 
 48a84d0952df1ab80bdbc86a92e9ae1e87c61a00497976c2859335cd78a4 2039 
pyzmq_2.1.7-1.dsc
 11c8cad8f63a2906935fc3c2e9bc4ffe1074b13f4ba8502802a9c35b480d88a0 318234 
pyzmq_2.1.7.orig.tar.gz
 aab8da8efd0c6784b053850d9fb2e34afad70bb48350c50ba402982f9a20e30d 3801 
pyzmq_2.1.7-1.debian.tar.gz
 e732214f42a849a954fe09fe8c3fb2bd0a17820d95a5aa0ad668e5e715ced073 357088 
python-zmq_2.1.7-1_amd64.deb
 0287b1c058ec02eea3d71b9a8c4fec47a7a988ae3116cfe02f18af3bf17908fb 960306 
python-zmq-dbg_2.1.7-1_amd64.deb
Files: 
 60dbf906eb93c1cfd8d846854519a3b8 2039 python optional pyzmq_2.1.7-1.dsc
 ec366407914bfc12b61858e72cf505f9 318234 python optional pyzmq_2.1.7.orig.tar.gz
 888086b9c8c37fab5217cfb53c876f95 3801 python optional 
pyzmq_2.1.7-1.debian.tar.gz
 b3bad0cb8008f55036a25457833ef990 357088 python optional 
python-zmq_2.1.7-1_amd64.deb
 e779d4ecc8f354b4b530effc6c4b29fb 960306 debug extra 
python-zmq-dbg_2.1.7-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2gjHAAoJEOs2Fxpv+UNf3t4P+gPtcyiagHMusB5IFpPipR0c
79aO7FSNZ3d3jLfH/CgZMPsnj5oLVKgs5z2xiay9j84d2j/f5BqzQ4owg2Kpu/C7
SZtRA0nohYB9WSFkpz03wUpOZTlvPvyT8TyQTKTtVnS8+Th0uYcI8cBK+xwJjYra
MGt8n0KUabkZhQbKIaRkybx/QO6WE8Z5vqm0tzXHb+bqEFXbSg8CSu6m10PXU/Ll
0e6k1x4CaE0hAVegXeWLVVnUxnzworS5RWMNVKunPMmCmo0CJFv28Dw6F9hVT+5v
r4OSExbvwPXxDlwAamCmb5+qJ4w2Cct36+8RCI/X0iORIdnfi2gyNwoaX1baNkDt
yeBUcYtPKTLOpCpZPNeLXaJ3uib3mMs1sZ3JW6pbc0WBzZOxsa4+UFHyEGzUv6J7
HxRmSq3aQyme1HzzeMG3LSIJnNxu4kSXGo1LvqBYTUGkJDlIWDhYgVO4TUs+RZwg
waV1/wwDJvKeYNb7wWZ0OXIlK7iFyd4tnKVfkyc1VfwWFirBBHesxKYOSP6RrCUK
WWRoT3JjuFNtUBFnv6+bduCRGOQvzBk2a/mt9oNhXxe9w06XYh6oU5VWiG/t1wQy
0VA5wTMw+rPuXgI1U3u41BK+NLNbjwP/UcQ5o2GCHWb3mu9QR69t3WJI3BUk7o+Q
XswMHQT4/WAk2o1e2bhu
=aVbc
-END PGP SIGNATURE-


Accepted:
python-zmq-dbg_2.1.7-1_amd64.deb
  to main/p/pyzmq/python-zmq-dbg_2.1.7-1_amd64.deb
python-zmq_2.1.7-1_amd64.deb
  to main/p/pyzmq/python-zmq_2.1.7-1_amd64.deb
pyzmq_2.1.7-1.debian.tar.gz
  to main/p/pyzmq/pyzmq_2.1.7-1.debian.tar.gz
pyzmq_2.1.7-1.dsc
  to main/p/pyzmq/pyzmq_2.1.7-1.dsc
pyzmq_2.1.7.orig.tar.gz
  to main/p/pyzmq/pyzmq_2.1.7.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoasl-0004mv...@franck.debian.org



Accepted shrinksafe 1.6.1-1 (source all)

2011-05-23 Thread Jason Morawski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 11 May 2011 13:48:25 -0400
Source: shrinksafe
Binary: shrinksafe
Architecture: source all
Version: 1.6.1-1
Distribution: unstable
Urgency: low
Maintainer: Jason Morawski rpgdu...@gmail.com
Changed-By: Jason Morawski rpgdu...@gmail.com
Description: 
 shrinksafe - JavaScript compression system
Changes: 
 shrinksafe (1.6.1-1) unstable; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 4b085ba36f691c9339ec97c9f47ed168c687523d 1151 shrinksafe_1.6.1-1.dsc
 3069d81b3e76b719b389e74b63677c5e5bcdd511 26900 shrinksafe_1.6.1.orig.tar.gz
 48b1bfe5bc8d23db3d16f318351ca2d06eeb0bcf 11142 shrinksafe_1.6.1-1.debian.tar.gz
 0e082e3fc6cc41f2c53dfec2091f5bf7a8b5fe55 30474 shrinksafe_1.6.1-1_all.deb
Checksums-Sha256: 
 582935242d3a48bcd854063585459683e4583da02a54ae1016c2e9ccff6ffd21 1151 
shrinksafe_1.6.1-1.dsc
 9980ef4563a17a257af873cf3ba4df4fa94f5a3176f7a4480a61dabf2dad39aa 26900 
shrinksafe_1.6.1.orig.tar.gz
 bfde42356724d59b55ea2dbfcf249ad70308bf560538147ff49857e8fe6b0cd3 11142 
shrinksafe_1.6.1-1.debian.tar.gz
 06e17b1d13d9a410c7d2acf930ec5e7a58af404d4b343763cfea6b9ff52f869b 30474 
shrinksafe_1.6.1-1_all.deb
Files: 
 fdb809b089ef12aaef74961ca47ebcca 1151 devel optional shrinksafe_1.6.1-1.dsc
 20a2581eef39be0884c968ae0a2861ff 26900 devel optional 
shrinksafe_1.6.1.orig.tar.gz
 4e2f71a5ca6e67c0c0840529bdf9626a 11142 devel optional 
shrinksafe_1.6.1-1.debian.tar.gz
 d36b3d5b7741e2369ce4ae5fa4edb8da 30474 devel optional 
shrinksafe_1.6.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3arBUACgkQ+C5cwEsrK572pACgrhNRPrb+6lUyZ9nH1xHv21Ah
oqgAoKr5emBW+KqFwuYSH++x0AljntUf
=FbBp
-END PGP SIGNATURE-


Accepted:
shrinksafe_1.6.1-1.debian.tar.gz
  to main/s/shrinksafe/shrinksafe_1.6.1-1.debian.tar.gz
shrinksafe_1.6.1-1.dsc
  to main/s/shrinksafe/shrinksafe_1.6.1-1.dsc
shrinksafe_1.6.1-1_all.deb
  to main/s/shrinksafe/shrinksafe_1.6.1-1_all.deb
shrinksafe_1.6.1.orig.tar.gz
  to main/s/shrinksafe/shrinksafe_1.6.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoau6-0005yq...@franck.debian.org



Accepted syslinux 2:4.04+dfsg-2 (source i386 all)

2011-05-23 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 15:03:03 +0200
Source: syslinux
Binary: syslinux extlinux syslinux-common
Architecture: source i386 all
Version: 2:4.04+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann daniel.baum...@progress-technologies.net
Changed-By: Daniel Baumann daniel.baum...@progress-technologies.net
Description: 
 extlinux   - collection of boot loaders (ext2/3/4 and btrfs bootloader)
 syslinux   - collection of boot loaders
 syslinux-common - collection of boot loaders (common files)
Changes: 
 syslinux (2:4.04+dfsg-2) unstable; urgency=low
 .
   * Simply looking up the device where /boot is on in order to
 automatically guess the device to write the MBR automatically to,
 previously the automagic worked only when / and /boot are on the
 same disk.
Checksums-Sha1: 
 ee97f0ebe2f38129ea11eafd6e7c986069e601e7 1218 syslinux_4.04+dfsg-2.dsc
 3089aee4900339de246eb9bc8e5e527981d4985a 6308768 syslinux_4.04+dfsg.orig.tar.gz
 75dddec4b18ebaf5228a3f2a20566329b7df5545 31071 
syslinux_4.04+dfsg-2.debian.tar.gz
 c9af4e63205dd4fe1a3ed4ad570e3fb2e306b3bf 95640 syslinux_4.04+dfsg-2_i386.deb
 5288515cb334415796bacef68a8fd7cccaae7b2a 116304 extlinux_4.04+dfsg-2_i386.deb
 f6b82be78772c5737401b4469600e59396791afd 1393238 
syslinux-common_4.04+dfsg-2_all.deb
Checksums-Sha256: 
 05d996d9e2706c58330c8d33be790bdb3a144aeed1ebc2d0c5252ee23c046bca 1218 
syslinux_4.04+dfsg-2.dsc
 d4c794b1a68e8fd0b6915f255eed00ecaa7e425d75361074d462fc7ae0f55632 6308768 
syslinux_4.04+dfsg.orig.tar.gz
 57c2a60a20c286033f138ee6599a9b363a433a295634fa70d0b69fb99ae9b63d 31071 
syslinux_4.04+dfsg-2.debian.tar.gz
 9897f1d257218708b37804fa547634b739e02f3e13a29d5d89fc89dc4c7d6eb4 95640 
syslinux_4.04+dfsg-2_i386.deb
 2c8f14c03035cc376e0677cf7ec605e7eb50b245ebb7a71bdb432e0b65a1a259 116304 
extlinux_4.04+dfsg-2_i386.deb
 c5f659d0a6fbe7bcff2bdbbed1861acf1735b979c984be3516956efb97153866 1393238 
syslinux-common_4.04+dfsg-2_all.deb
Files: 
 e4a7c2d52934e60d0dd52989b7ee11e7 1218 utils optional syslinux_4.04+dfsg-2.dsc
 d1496f8265535a982da3785ce94d94e0 6308768 utils optional 
syslinux_4.04+dfsg.orig.tar.gz
 7e2cd1025a51a3d3968d4146c89c6b7d 31071 utils optional 
syslinux_4.04+dfsg-2.debian.tar.gz
 d0b66245e4cd45fb28439954091df457 95640 utils optional 
syslinux_4.04+dfsg-2_i386.deb
 4fdbb9de30a779bf93a99bfcc4515c73 116304 utils optional 
extlinux_4.04+dfsg-2_i386.deb
 7bc6400e6398aae0940ebd10c829f701 1393238 utils optional 
syslinux-common_4.04+dfsg-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3aYIIACgkQ+C5cwEsrK56IIgCgqsmLVxB0EOeJkeBkgkbO0bmm
eKwAnRHYDOJgLXNZ0mjfi9vUqWsoaNNi
=d2hQ
-END PGP SIGNATURE-


Accepted:
extlinux_4.04+dfsg-2_i386.deb
  to main/s/syslinux/extlinux_4.04+dfsg-2_i386.deb
syslinux-common_4.04+dfsg-2_all.deb
  to main/s/syslinux/syslinux-common_4.04+dfsg-2_all.deb
syslinux_4.04+dfsg-2.debian.tar.gz
  to main/s/syslinux/syslinux_4.04+dfsg-2.debian.tar.gz
syslinux_4.04+dfsg-2.dsc
  to main/s/syslinux/syslinux_4.04+dfsg-2.dsc
syslinux_4.04+dfsg-2_i386.deb
  to main/s/syslinux/syslinux_4.04+dfsg-2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoauo-0005fu...@franck.debian.org



Accepted syslinux-themes-debian 9-1 (source all)

2011-05-23 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 08:25:38 +0200
Source: syslinux-themes-debian
Binary: syslinux-themes-debian syslinux-themes-debian-lenny 
syslinux-themes-debian-squeeze
Architecture: source all
Version: 9-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann daniel.baum...@progress-technologies.net
Changed-By: Daniel Baumann daniel.baum...@progress-linux.org
Description: 
 syslinux-themes-debian - collection of boot loaders (theme metapackage)
 syslinux-themes-debian-lenny - collection of boot loaders (debian-lenny theme)
 syslinux-themes-debian-squeeze - collection of boot loaders (debian-squeeze 
theme)
Closes: 627150
Changes: 
 syslinux-themes-debian (9-1) unstable; urgency=low
 .
   * Updating isolinux configs.
   * Updating standards version to 3.9.2.
   * Updating syslinux specific bootloader themes.
   * Completing syslinux and pxelinux specific bootloader files (Closes:
 #627150).
Checksums-Sha1: 
 296ea060200ce67e32255ebe8f94e2dd82a99b55 1190 syslinux-themes-debian_9-1.dsc
 9322d4acf49fb430923dd2cedd975a5dc1f8e965 36409 
syslinux-themes-debian_9.orig.tar.gz
 478a241804f33a7599d8ce84a426cc87015deb63 2596 
syslinux-themes-debian_9-1.debian.tar.gz
 fbc1fe2d96117c7a66ef0dabce63191c4c9a8c9a 3074 
syslinux-themes-debian_9-1_all.deb
 be2fd04d903eeaed0dd947f8e6cae092f643b3b0 19140 
syslinux-themes-debian-lenny_9-1_all.deb
 f5ccbe0d93c0c5c28d9147c899b3215acdda9e34 10492 
syslinux-themes-debian-squeeze_9-1_all.deb
Checksums-Sha256: 
 53a8adc259ef99d354c2b66a6865848b141b6dc4f9986336f535f7df7b52b53d 1190 
syslinux-themes-debian_9-1.dsc
 d0b3199b5ca9fa2ede32916ab711e3d6cbe4f36b32c491446d7214511efb0896 36409 
syslinux-themes-debian_9.orig.tar.gz
 522fb4ea964f3e6b4fd357d121ffea3baac328583ec1ba47b472b219fe15ce2e 2596 
syslinux-themes-debian_9-1.debian.tar.gz
 af88106ac35dab7d5c7b20812352ac1706690e4d72daadc421c9e1ad6c44de24 3074 
syslinux-themes-debian_9-1_all.deb
 0adf85fd06d8f280e804846235a2736517653b78ae6896f7ff71ba807eec2c39 19140 
syslinux-themes-debian-lenny_9-1_all.deb
 060f95177da81d762668e51f4b2ec8424fdb379e403bdf60ebfcc8338e6664a9 10492 
syslinux-themes-debian-squeeze_9-1_all.deb
Files: 
 e1dd9f485de4cf8a1049d4f89f67c12a 1190 misc optional 
syslinux-themes-debian_9-1.dsc
 3a61305c1562be273d26427e22a823a5 36409 misc optional 
syslinux-themes-debian_9.orig.tar.gz
 d5720c4af9b7832740f38d48a5ea65d8 2596 misc optional 
syslinux-themes-debian_9-1.debian.tar.gz
 a694c5466dc4a0e5525385cf2c0ad9f2 3074 misc optional 
syslinux-themes-debian_9-1_all.deb
 31f5fdf8a5b6349f0bc8e85d74816c3b 19140 misc optional 
syslinux-themes-debian-lenny_9-1_all.deb
 bd4bcb3eb54332108cc588d176eea657 10492 misc optional 
syslinux-themes-debian-squeeze_9-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3Z/q8ACgkQ+C5cwEsrK56i0gCfT6AskOiBdD9DQ9U13t5fR09v
VqEAoNtnICi36UggSMYzjMV8QYBMuf2k
=vEoa
-END PGP SIGNATURE-


Accepted:
syslinux-themes-debian-lenny_9-1_all.deb
  to main/s/syslinux-themes-debian/syslinux-themes-debian-lenny_9-1_all.deb
syslinux-themes-debian-squeeze_9-1_all.deb
  to main/s/syslinux-themes-debian/syslinux-themes-debian-squeeze_9-1_all.deb
syslinux-themes-debian_9-1.debian.tar.gz
  to main/s/syslinux-themes-debian/syslinux-themes-debian_9-1.debian.tar.gz
syslinux-themes-debian_9-1.dsc
  to main/s/syslinux-themes-debian/syslinux-themes-debian_9-1.dsc
syslinux-themes-debian_9-1_all.deb
  to main/s/syslinux-themes-debian/syslinux-themes-debian_9-1_all.deb
syslinux-themes-debian_9.orig.tar.gz
  to main/s/syslinux-themes-debian/syslinux-themes-debian_9.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoaux-0005jb...@franck.debian.org



Accepted tinymce 3.4.2+dfsg0-1 (source all)

2011-05-23 Thread Frank Habermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 21 May 2011 21:16:00 +0200
Source: tinymce
Binary: tinymce
Architecture: source all
Version: 3.4.2+dfsg0-1
Distribution: unstable
Urgency: low
Maintainer: Frank Habermann lordla...@lordlamer.de
Changed-By: Frank Habermann lordla...@lordlamer.de
Description: 
 tinymce- platform independent web based Javascript/HTML WYSIWYG editor
Changes: 
 tinymce (3.4.2+dfsg0-1) unstable; urgency=low
 .
   * new upstream release
Checksums-Sha1: 
 b662c95fa9244e703660f3950bab13d0f46d557d 991 tinymce_3.4.2+dfsg0-1.dsc
 5d61299b6d9d355ef713908ad01a8894819d510f 638032 tinymce_3.4.2+dfsg0.orig.tar.gz
 c6f7e8ad74b1f2dc78e2fbb549dc6c273a0082e0 3912 tinymce_3.4.2+dfsg0-1.diff.gz
 ad9aa5b3e15d0d8c959055241b5448a67ae16f87 507066 tinymce_3.4.2+dfsg0-1_all.deb
Checksums-Sha256: 
 aa786ecb7f68340ffb4fc396e2752d8da97b933ab1952fddab5e5c57c2f8d899 991 
tinymce_3.4.2+dfsg0-1.dsc
 7265014a071277b76a5a0931df95cb85fa64ccb72c74799d9c688182c84c3247 638032 
tinymce_3.4.2+dfsg0.orig.tar.gz
 2de1fe60e6846d9e7fde5cac82423dff3b73024e304877924e7757b3375d8b1c 3912 
tinymce_3.4.2+dfsg0-1.diff.gz
 b18988d368d8a8a27f1374b804f00b43fd3131bf930301e7e2a5a5a8793e57bb 507066 
tinymce_3.4.2+dfsg0-1_all.deb
Files: 
 afed5eab3ac0c2f7c5e68cce4730996c 991 web optional tinymce_3.4.2+dfsg0-1.dsc
 2fee592bf90e929d55f3f7b3c9b71605 638032 web optional 
tinymce_3.4.2+dfsg0.orig.tar.gz
 861923bbdfb68b1cbe494e9094245dca 3912 web optional 
tinymce_3.4.2+dfsg0-1.diff.gz
 532d2b779bb18d776db726f8d326788e 507066 web optional 
tinymce_3.4.2+dfsg0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3aBwYACgkQ+C5cwEsrK5433ACg4U7w6egWqgGOs8hbUsd6A1cw
ep4AoLtGt0qm4nXNwXUQ9lYzFx+Jdbq/
=6tbS
-END PGP SIGNATURE-


Accepted:
tinymce_3.4.2+dfsg0-1.diff.gz
  to main/t/tinymce/tinymce_3.4.2+dfsg0-1.diff.gz
tinymce_3.4.2+dfsg0-1.dsc
  to main/t/tinymce/tinymce_3.4.2+dfsg0-1.dsc
tinymce_3.4.2+dfsg0-1_all.deb
  to main/t/tinymce/tinymce_3.4.2+dfsg0-1_all.deb
tinymce_3.4.2+dfsg0.orig.tar.gz
  to main/t/tinymce/tinymce_3.4.2+dfsg0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoauz-0005p4...@franck.debian.org



Accepted trafficserver 2.1.8-unstable-1 (source i386)

2011-05-23 Thread Arno Töll
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 05 May 2011 21:49:52 +0200
Source: trafficserver
Binary: trafficserver trafficserver-plugin-conf-remap trafficserver-dev
Architecture: source i386
Version: 2.1.8-unstable-1
Distribution: unstable
Urgency: low
Maintainer: Arno Töll deb...@toell.net
Changed-By: Arno Töll deb...@toell.net
Description: 
 trafficserver - a fast, scalable and extensible HTTP/1.1 compliant caching 
proxy
 trafficserver-dev - Apache Traffic Server Software Developers Kit (SDK)
 trafficserver-plugin-conf-remap - Apache Traffic Server conf_remap plugin
Closes: 622800
Changes: 
 trafficserver (2.1.8-unstable-1) unstable; urgency=low
 .
   * New upstream release. Major features (since 2.1.5):
 + Many bug fixes (none reported in Debian's BTS)
 + Set source address for origin Servers
 + Major API changes for the SDK
 + Provide traffic_logstats
 + traffic_shell does not hang anymore on any command
   * Fix FTBFS on architectures not supported upstream: (Closes: #622800)
 + Don't execute regression checks for now (fixes x86)
 + Upstream merges a Debian patch originally for 2.1.7 which enables
   kFreeBSD support (originally provided by myself)
 + Restrict Architectures (drop S390, IA64, MIPS[EL], PPC, SPARC)
   * Remove ts-ui-disable-conf.patch (applied upstream)
   * Update `build-quirks.patch' to make TS handle $DESTDIR correctly
 (upstream: TS-759)
   * Remove .deps from SDK binary package examples (they were incidentally
 included before).
   * Fix permissions for /var/cache/trafficserver in postinst
   * Bump standards to 3.9.2, depend on debhelper 8.0, adapt VCS links
   * Simplify debian/rules
Checksums-Sha1: 
 4c6b2680d0e74045b704998cabea2fd9fd0606b2 1504 
trafficserver_2.1.8-unstable-1.dsc
 89ef981fb2597d580ae80a7aa2432985250b03fc 2409518 
trafficserver_2.1.8-unstable.orig.tar.bz2
 72def4b68b0b637f290c14cb6a3a958168b9251a 14789 
trafficserver_2.1.8-unstable-1.debian.tar.gz
 31d606cc1571f5a2908951f3117312d6b70c029c 3832944 
trafficserver_2.1.8-unstable-1_i386.deb
 4a8b0f1de9e3137f0219e1d88a8bc1c941cc8d58 22718 
trafficserver-plugin-conf-remap_2.1.8-unstable-1_i386.deb
 131047f8afb0a507ab4956934b14c10cbed2f3f5 363242 
trafficserver-dev_2.1.8-unstable-1_i386.deb
Checksums-Sha256: 
 85a457e2b06205a32d7b86b76f7155fa6cae86353668a7d14fa89fffab9bfbc0 1504 
trafficserver_2.1.8-unstable-1.dsc
 6c99cf69342260723ff82c95bbf7c12b70447318ec4b9aaf19e4b0cafb1f54be 2409518 
trafficserver_2.1.8-unstable.orig.tar.bz2
 9ce525896767202ee4c3e7ae3f564f98a3bf72c4844b855c759fe8cf2021f6f2 14789 
trafficserver_2.1.8-unstable-1.debian.tar.gz
 42663086e8d98f13ca7531299d18f3d0ba163893968a80dd19aa7876d4ff 3832944 
trafficserver_2.1.8-unstable-1_i386.deb
 a2fe86d3a435c05d5d89b64eae0ed593e9845e6dfb6a1e73281032d58d776064 22718 
trafficserver-plugin-conf-remap_2.1.8-unstable-1_i386.deb
 2ae1fb0a4901ac542f1a866324ec17651af2d905f9ff1ee798dc0130f5bea750 363242 
trafficserver-dev_2.1.8-unstable-1_i386.deb
Files: 
 2fac0fff99b70b2175715e5610d6060d 1504 web extra 
trafficserver_2.1.8-unstable-1.dsc
 725054e8fcbb50077c17b57ef085502d 2409518 web extra 
trafficserver_2.1.8-unstable.orig.tar.bz2
 7e069a8bff809f4b6d246cbf76bc3445 14789 web extra 
trafficserver_2.1.8-unstable-1.debian.tar.gz
 6b587d472151756518e556afc4663a38 3832944 web extra 
trafficserver_2.1.8-unstable-1_i386.deb
 01371df77dc7e0bc8fd58ed829b84350 22718 web extra 
trafficserver-plugin-conf-remap_2.1.8-unstable-1_i386.deb
 1bee04423d47111d89fee1beff1abe07 363242 web extra 
trafficserver-dev_2.1.8-unstable-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3afuwACgkQN+HBdXAJatGfagCfVWRhoNDrAE3nNBsAz7oh0v66
WpUAoJ/J54wgO7A3GqTcABP0WphcQnxv
=NXpf
-END PGP SIGNATURE-


Accepted:
trafficserver-dev_2.1.8-unstable-1_i386.deb
  to main/t/trafficserver/trafficserver-dev_2.1.8-unstable-1_i386.deb
trafficserver-plugin-conf-remap_2.1.8-unstable-1_i386.deb
  to 
main/t/trafficserver/trafficserver-plugin-conf-remap_2.1.8-unstable-1_i386.deb
trafficserver_2.1.8-unstable-1.debian.tar.gz
  to main/t/trafficserver/trafficserver_2.1.8-unstable-1.debian.tar.gz
trafficserver_2.1.8-unstable-1.dsc
  to main/t/trafficserver/trafficserver_2.1.8-unstable-1.dsc
trafficserver_2.1.8-unstable-1_i386.deb
  to main/t/trafficserver/trafficserver_2.1.8-unstable-1_i386.deb
trafficserver_2.1.8-unstable.orig.tar.bz2
  to main/t/trafficserver/trafficserver_2.1.8-unstable.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoavr-0005xv...@franck.debian.org



Accepted valgrind 1:3.6.1-5 (source amd64)

2011-05-23 Thread Pierre Habouzit
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 16:00:59 +0200
Source: valgrind
Binary: valgrind
Architecture: source amd64
Version: 1:3.6.1-5
Distribution: unstable
Urgency: low
Maintainer: Andrés Roldán arol...@debian.org
Changed-By: Pierre Habouzit madco...@debian.org
Description: 
 valgrind   - memory debugger and profiler
Closes: 475562
Changes: 
 valgrind (1:3.6.1-5) unstable; urgency=low
 .
   * debian/rules:
   - use autotools-dev dh_autotools-dev_updateconfig.
   - do now strip under /usr/lib/valgrind (Closes: 475562).
   - use dh 7 to reduce debian/rules cruft.
   * Add armhf to the supported architectures.
Checksums-Sha1: 
 6282983ba05ac6d5ba87f596a1e9c907edd72b03 1364 valgrind_3.6.1-5.dsc
 eab633742358cd33261652ab7342cae9653c4927 31060 valgrind_3.6.1-5.debian.tar.gz
 1813426bc498b8dab52005f879afc430ab0d25cb 23937682 valgrind_3.6.1-5_amd64.deb
Checksums-Sha256: 
 f4022d4fe9a1fcaefdda168162e5f2bf144e8530e1e407eaae84498db12cc5b7 1364 
valgrind_3.6.1-5.dsc
 da9a563141ca95f5f3b31cbcc7165823eed662dea7ec72f1e94c2510efa6f827 31060 
valgrind_3.6.1-5.debian.tar.gz
 45b1c3f762a3864195ad563c8e28c476354685252e2091d793eab48fc3345c22 23937682 
valgrind_3.6.1-5_amd64.deb
Files: 
 bd5d1b5a99dd1dde932d56588b2f579b 1364 devel optional valgrind_3.6.1-5.dsc
 afff43dfd234e93d487d6b143b094798 31060 devel optional 
valgrind_3.6.1-5.debian.tar.gz
 a9276ff2bb98657b1b06919f77e88cec 23937682 devel optional 
valgrind_3.6.1-5_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3aaYMACgkQvGr7W6HudhzYSgCdFMG8+GD6XfjMd/fpEphRl7na
MXgAnid5u9qr59EwnX/Uf3gGzJthdLO4
=uFDW
-END PGP SIGNATURE-


Accepted:
valgrind_3.6.1-5.debian.tar.gz
  to main/v/valgrind/valgrind_3.6.1-5.debian.tar.gz
valgrind_3.6.1-5.dsc
  to main/v/valgrind/valgrind_3.6.1-5.dsc
valgrind_3.6.1-5_amd64.deb
  to main/v/valgrind/valgrind_3.6.1-5_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoavs-000697...@franck.debian.org



Accepted weex 2.6.1-8 (source i386)

2011-05-23 Thread Ludovic Drolez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 22 May 2011 11:15:17 +0200
Source: weex
Binary: weex
Architecture: source i386
Version: 2.6.1-8
Distribution: unstable
Urgency: low
Maintainer: Ludovic Drolez ldro...@debian.org
Changed-By: Ludovic Drolez ldro...@debian.org
Description: 
 weex   - Non-interactive FTP client for updating web pages
Closes: 304042 429353
Changes: 
 weex (2.6.1-8) unstable; urgency=low
 .
   * Better handling of short writes. Closes: #429353
   * Write the cache after each FTP upload. Closes: #304042
Checksums-Sha1: 
 9f730a3f9061cf444681fa8c221857b826cd15e1 937 weex_2.6.1-8.dsc
 4706b5b95fa4fdf87f9440e0a31d6f635ad8e1f4 10365 weex_2.6.1-8.diff.gz
 0580c5f45947c422dbd595c186dbbfae4cb972f0 90408 weex_2.6.1-8_i386.deb
Checksums-Sha256: 
 46b40358248cf1a5d8de0474b8eb9d594cd2cde5503caa710145c84de7963848 937 
weex_2.6.1-8.dsc
 298bf20119939729c63ffb95789b43861a09b655b9e825f20a55ff2538663236 10365 
weex_2.6.1-8.diff.gz
 3915c7107e41c5e9f27dee4d2b9b437bd5ae135976a544c30c5c3e9ab370c673 90408 
weex_2.6.1-8_i386.deb
Files: 
 1289d460c8457802af12284863c647e8 937 net optional weex_2.6.1-8.dsc
 602c560c62a8d22ddcea9851ef3fcd10 10365 net optional weex_2.6.1-8.diff.gz
 d360e1925d036f336a4f5174eb77203d 90408 net optional weex_2.6.1-8_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3aol0ACgkQsRlQAP1Gppg01wCaAqnZbKTT/Az+vEFaF1Z5xXty
uJcAnjgxXsqIQMj/KySD8F+S68tbHFD2
=m/cB
-END PGP SIGNATURE-


Accepted:
weex_2.6.1-8.diff.gz
  to main/w/weex/weex_2.6.1-8.diff.gz
weex_2.6.1-8.dsc
  to main/w/weex/weex_2.6.1-8.dsc
weex_2.6.1-8_i386.deb
  to main/w/weex/weex_2.6.1-8_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoaw2-0006cx...@franck.debian.org



Accepted xscreensaver 5.14-1 (source i386)

2011-05-23 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sun, 22 May 2011 23:12:59 -0430
Source: xscreensaver
Binary: xscreensaver xscreensaver-data xscreensaver-data-extra xscreensaver-gl 
xscreensaver-gl-extra xscreensaver-screensaver-webcollage 
xscreensaver-screensaver-bsod
Architecture: source i386
Version: 5.14-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Rivas ghost...@debian.org
Changed-By: Jose Luis Rivas ghost...@debian.org
Description: 
 xscreensaver - Automatic screensaver for X
 xscreensaver-data - data files to be shared among screensaver frontends
 xscreensaver-data-extra - data files to be shared among screensaver frontends
 xscreensaver-gl - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-gl-extra - GL(Mesa) screen hacks for xscreensaver
 xscreensaver-screensaver-bsod - BSOD hack from XScreenSaver
 xscreensaver-screensaver-webcollage - Webcollage hack from XScreenSaver
Closes: 627382 627397
Changes: 
 xscreensaver (5.14-1) unstable; urgency=low
 .
   [ Tormod Volden ]
   * New upstream version 5.14
 - Fixed crash in Blank Only Mode when DPMS disabled.
   (Closes: #627382, #627397)
 - Added ``Quick Power-off in Blank Only Mode'' option.
 - BSOD GLaDOS.
   * Clean up duplicate build-depends (thanks Jeremy Bicha)
   * Drop xli | xloadimage recommends (we use gdk-pixbuf)
Checksums-Sha1: 
 fa3c0d90ecf5f0b1c1b7019eb466626807f41621 1776 xscreensaver_5.14-1.dsc
 0b9905ea4bce4dfa88c916229b7f1da045bcde6b 5935284 xscreensaver_5.14.orig.tar.gz
 1f81ef9a21537d4fb4d47201dd15695d4b29585a 75133 xscreensaver_5.14-1.diff.gz
 d63afcff2b9b0e8b13a3b0270adf072346ebfc1e 870400 xscreensaver_5.14-1_i386.deb
 e624991f7e690e737f960e4985834c693eac3fc6 531450 
xscreensaver-data_5.14-1_i386.deb
 85fa6c81f52bb03683327addadcdced19827a311 2640146 
xscreensaver-data-extra_5.14-1_i386.deb
 5782fd8a3276293ac178aeca4906f2d6bdba72b4 2182406 
xscreensaver-gl_5.14-1_i386.deb
 ef25725369812b51a0fe912385d5b2c71cea344f 2276058 
xscreensaver-gl-extra_5.14-1_i386.deb
 7afb12a92ba378da607221f8bcada4115b4e24bc 64112 
xscreensaver-screensaver-webcollage_5.14-1_i386.deb
 59604a4c7d3db5267dcd548c03194319262652fb 163990 
xscreensaver-screensaver-bsod_5.14-1_i386.deb
Checksums-Sha256: 
 ef30e082e322d797b3dc77d4ad21419ed08e9c9c1ede434db8938c3a4c6e2f90 1776 
xscreensaver_5.14-1.dsc
 56ca8e4a8403edafb697aa0dab7c57051c6dd49058cd7b47b5ae6c35c3ad4699 5935284 
xscreensaver_5.14.orig.tar.gz
 98510560af18f5efc9551cdb8b65eed39009de1736bf6e1b24b019a4beb2197b 75133 
xscreensaver_5.14-1.diff.gz
 f14a6018236a5ede47fed53419f48ed7a0de08f71a7a51c7b7b514c9fbf82b60 870400 
xscreensaver_5.14-1_i386.deb
 1d37d90a9c6a9a30c592acce99931dc27a313397dc358b6b0644dbe84f569292 531450 
xscreensaver-data_5.14-1_i386.deb
 f6d1a20bef0249d4aa9c76bbf8727b243e0c1daa49c45faef3599525009112d5 2640146 
xscreensaver-data-extra_5.14-1_i386.deb
 7c32546f637903a2f1100747724aa6641ada88b8125248a938b2be0b91ba868c 2182406 
xscreensaver-gl_5.14-1_i386.deb
 af312b84ddd687dc1df3dd96f8027395af726bdca7ca7f5d3987bd0db32d5c83 2276058 
xscreensaver-gl-extra_5.14-1_i386.deb
 ef8b18180b7f27ade087457cc41871d7d3d3e687df1cdad84a7d53f79a9ce81e 64112 
xscreensaver-screensaver-webcollage_5.14-1_i386.deb
 a26c0e08ad9004cd840f5f8f3f167256aae19c18d38899f054e863f89b7fbffe 163990 
xscreensaver-screensaver-bsod_5.14-1_i386.deb
Files: 
 d2f7cde7039ca03811baf2f6a5766835 1776 x11 optional xscreensaver_5.14-1.dsc
 ccc0a27be3f5417cf4d25399ccd600b9 5935284 x11 optional 
xscreensaver_5.14.orig.tar.gz
 883d369a765b1773755c5ae88b61c6d3 75133 x11 optional xscreensaver_5.14-1.diff.gz
 09d95b589fa6662d022f8506215f6d0c 870400 x11 optional 
xscreensaver_5.14-1_i386.deb
 93bc5d304bfae0ea4bff9e5b9a7d 531450 x11 optional 
xscreensaver-data_5.14-1_i386.deb
 ed17b71f01c353cba96cc74c04467090 2640146 x11 optional 
xscreensaver-data-extra_5.14-1_i386.deb
 5d0edd9ef398b54ea87b3a290f93c452 2182406 x11 optional 
xscreensaver-gl_5.14-1_i386.deb
 c77c95f73805d9dfc485f441d3e1185e 2276058 x11 optional 
xscreensaver-gl-extra_5.14-1_i386.deb
 19e714322dd1ef76caa49d9af4f18e45 64112 x11 optional 
xscreensaver-screensaver-webcollage_5.14-1_i386.deb
 3ad6090dedf13321cc7c1feb6d01d3e8 163990 x11 optional 
xscreensaver-screensaver-bsod_5.14-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEAREDAAYFAk3Z3wMACgkQOKCtW8rKsRiI0wCgnn/679i39Pwyzak8dlm7aXch
PLIAniD5IZnjTaXggmPM84PoAbt9qyo6
=yRhf
-END PGP SIGNATURE-


Accepted:
xscreensaver-data-extra_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-data-extra_5.14-1_i386.deb
xscreensaver-data_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-data_5.14-1_i386.deb
xscreensaver-gl-extra_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-gl-extra_5.14-1_i386.deb
xscreensaver-gl_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-gl_5.14-1_i386.deb
xscreensaver-screensaver-bsod_5.14-1_i386.deb
  to main/x/xscreensaver/xscreensaver-screensaver-bsod_5.14-1_i386.deb

Accepted yade 0.60.2-3 (source i386 all)

2011-05-23 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 11 May 2011 19:52:26 +0200
Source: yade
Binary: yade-0.60 yade-0.60-dbg yade-0.60-doc yade yade-dbg yade-doc
Architecture: source i386 all
Version: 0.60.2-3
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gladky.an...@gmail.com
Description: 
 yade   - Platform for discrete element modeling
 yade-0.60  - Platform for discrete element modeling. Main optimized build
 yade-0.60-dbg - Platform for discrete element modeling. Debug build
 yade-0.60-doc - Platform for discrete element modeling. Documentation
 yade-dbg   - Platform for discrete element modeling. Snapshot debug version
 yade-doc   - Platform for discrete element modeling. Snapshot documentation
Closes: 626722
Changes: 
 yade (0.60.2-3) unstable; urgency=low
 .
   * [9fb84aa] Hopefully fix FTBFS on most of
   platforms due to MPLCONFIGDIR (Closes: #626722)
   * [c58a0fa] Update debian/rules, dh7
   * [0c163b1] Update to Standards-Version: 3.9.2 (no changes)
   * [cc8714c] Raise up python-sphinx required version to 1.0.5
   * [b045d3b] Move mencoder from Depends to Recommends to make
 yade installable on non-graphic systems
   * [94ebfd7] Fix in postinst for correct alias of man-pages
Checksums-Sha1: 
 14c92ee799cfa1e2ba02348f9830e0ece67a2eb3 2731 yade_0.60.2-3.dsc
 426de712ff14ae6aa494e5eaf86817e0d946573e 23699 yade_0.60.2-3.debian.tar.gz
 77de5770604cabca545a936fd60dfe2ea05ee5f5 11088922 yade-0.60_0.60.2-3_i386.deb
 34e064b530fab7058bdd7495a7003571d228fff9 128100296 
yade-0.60-dbg_0.60.2-3_i386.deb
 7a72743a6eb8c9a41ae0847034434605196e2ac5 5869268 yade-0.60-doc_0.60.2-3_all.deb
 aae3d9f9f1b591be592a282528f59d5065c0e09b 36916 yade_0.60.2-3_all.deb
 0ee3dfa5accdd2dd0af05a32473aa41d7142b311 36950 yade-dbg_0.60.2-3_all.deb
 a6133475d93fe7b293a500d4ae26d2ff9630beac 36944 yade-doc_0.60.2-3_all.deb
Checksums-Sha256: 
 5bfc6c39e5b1e42532bedf988cc287c3131eadb7cfe70ecf76dc48d63210e589 2731 
yade_0.60.2-3.dsc
 2bc8fc9eb48d6aaae12abb6e23ee0bd94ffb867ba31ced7369d64af215cb5f78 23699 
yade_0.60.2-3.debian.tar.gz
 92f5b9eff4941ca2e48c6a7fa9dc286a77e79eac6004e503b2860328ec573c4f 11088922 
yade-0.60_0.60.2-3_i386.deb
 1c8c12e5c09c4757f92ed13f05f2e439ac6f52221979db13165b67722363f116 128100296 
yade-0.60-dbg_0.60.2-3_i386.deb
 3e20e7cf5ba77f595a3879f4fe6db5774e3c86094ee3741b5d7f221060360cbf 5869268 
yade-0.60-doc_0.60.2-3_all.deb
 d48de6e04eefee010d59b1a1cf51523e50c83a12fff3444041b0dea00584ca4d 36916 
yade_0.60.2-3_all.deb
 f4ff99c95efc2e86dcc87b93ddbf362ed3752895530a6a1850fdd1b7a0ec7934 36950 
yade-dbg_0.60.2-3_all.deb
 975012122fb38ad177a69b1ed1960a5940963acba14e342e6a39d3a4418a84b3 36944 
yade-doc_0.60.2-3_all.deb
Files: 
 c797bfa83a5f14a4004a96698310728d 2731 science extra yade_0.60.2-3.dsc
 04ae147b3a656f71bd2e5174b1f0ae02 23699 science extra 
yade_0.60.2-3.debian.tar.gz
 a50f14dbfc0ace0f040ee86ce174b006 11088922 science extra 
yade-0.60_0.60.2-3_i386.deb
 a713cdbb1f9a9f696d8d5fa6dab1166f 128100296 debug extra 
yade-0.60-dbg_0.60.2-3_i386.deb
 b15cd0b4bc1dfd28d8ae877a5d4d716b 5869268 doc extra 
yade-0.60-doc_0.60.2-3_all.deb
 3a9ccab22ac7732258a8871143efdbf9 36916 science extra yade_0.60.2-3_all.deb
 95d9318dc4c65b4308c576ba432d8869 36950 debug extra yade-dbg_0.60.2-3_all.deb
 53163026de8df102091655a09f5b75c9 36944 doc extra yade-doc_0.60.2-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBAgAGBQJN2pULAAoJENPhc4PPp/8G3HMP/jhbcgDfuF15JGQGNIH2eGDR
Lwzj6eWyinlIblN+uNAWuca87+L9iTfCMttL9X+fz0WntqWLo2eLzujIIw0hIQoy
eGHaOJyuRFoHEe+2LvalE2daYB8B7D0uaBPlvuGLe8MXb/EdXH3lFDjnQweha5Ou
+ywlzGwa32E+Xvzo/haQir1QQOx1LMHjQjHkhpN0zWCpXBsZ/yhv+ydwYFC4R1vE
WhfPBdRrzH8ryg3k8wFZyo7G6/q+yVVA2ctHFZxOyOjxj147u1nuuSLChQ89UbZ/
DPb+r1kAazjijfHds3z5Z84FEhkZz/ydmbfHTXIbVGn5AlmP3/kSeyX9bKjrLNhP
h2tF/cbdsNnb1d8AlG7lYZRZyDI4zMp9cKOxRQSuEf7Ee6SKlA3somlG+752X1GX
MMFyuROxhPAEC9gVOVFhkuMESJYNx1FYzYm498/u6btxb3v3Abtg7N0x3RV/y72v
hrtTAld/d1WRQrA1BL6L92j8f4lLNW0+gnoV2E2187xp+BXT9m5K/iy1K/QIqgaD
sg6KgiuymcQubs8mGzFUiyRi0evaRNYnMoV5WAJSFeVTlYe0OED88wss2sidq4zu
X9a+Sa6UWB0JKoaZdHJbImEfW7fsqgwF88MdwT53cLwuet8CTxr7sJsJHNtlPUo+
Wu7mWctdE+3EUE/w/CH0
=L/YN
-END PGP SIGNATURE-


Accepted:
yade-0.60-dbg_0.60.2-3_i386.deb
  to main/y/yade/yade-0.60-dbg_0.60.2-3_i386.deb
yade-0.60-doc_0.60.2-3_all.deb
  to main/y/yade/yade-0.60-doc_0.60.2-3_all.deb
yade-0.60_0.60.2-3_i386.deb
  to main/y/yade/yade-0.60_0.60.2-3_i386.deb
yade-dbg_0.60.2-3_all.deb
  to main/y/yade/yade-dbg_0.60.2-3_all.deb
yade-doc_0.60.2-3_all.deb
  to main/y/yade/yade-doc_0.60.2-3_all.deb
yade_0.60.2-3.debian.tar.gz
  to main/y/yade/yade_0.60.2-3.debian.tar.gz
yade_0.60.2-3.dsc
  to main/y/yade/yade_0.60.2-3.dsc
yade_0.60.2-3_all.deb
  to main/y/yade/yade_0.60.2-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Accepted zendframework 1.11.6-1 (source all)

2011-05-23 Thread Frank Habermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 21 May 2011 21:04:00 +0200
Source: zendframework
Binary: zendframework zendframework-bin zendframework-resources
Architecture: source all
Version: 1.11.6-1
Distribution: unstable
Urgency: low
Maintainer: Frank Habermann lordla...@lordlamer.de
Changed-By: Frank Habermann lordla...@lordlamer.de
Description: 
 zendframework - powerful PHP framework
 zendframework-bin - binary scripts for zendframework
 zendframework-resources - resource scripts for zendframework
Changes: 
 zendframework (1.11.6-1) unstable; urgency=low
 .
   * new upstream release
Checksums-Sha1: 
 4bb4f4955b781c85acec47d9fe321f0ac3193641 1115 zendframework_1.11.6-1.dsc
 c0fb884808e87d7ca1d7097bb7960a8d91776bb2 20149326 
zendframework_1.11.6.orig.tar.gz
 3775179d699e3da61c0350477fc648d29695bf79 4631 zendframework_1.11.6-1.diff.gz
 db7549d7a1871c43dcc1f40914694fc259cce92a 3713626 zendframework_1.11.6-1_all.deb
 5d558267ba2eb1929724fb09f6cd00cfa2a461d0 9554 
zendframework-bin_1.11.6-1_all.deb
 455c2c9380fad17534e911f8f359b808d94247d4 37854 
zendframework-resources_1.11.6-1_all.deb
Checksums-Sha256: 
 bd13455e1d1beca8d1fd5f641c2d200eb54d24473cb0d5656fc2e7d694cbf5b6 1115 
zendframework_1.11.6-1.dsc
 6281f3ac4ca2512ccebc53bc35854ae465d656e3090dbb1183427e48ce78bf2c 20149326 
zendframework_1.11.6.orig.tar.gz
 7bc888bab1f001a1a2fda1e1531d0557f247beefe1174db9c203a4098b617264 4631 
zendframework_1.11.6-1.diff.gz
 2ca59e1f10d0a76aa4ccf167e7826026446ce887238afd633da462c2f39f6061 3713626 
zendframework_1.11.6-1_all.deb
 a960e601fecd27602fd198311767cacaaad3c729d56fb7e801f5afcb67e84892 9554 
zendframework-bin_1.11.6-1_all.deb
 0a676ce5f6d5be958c5b84486fa8f1f5eb986a593fbcb4a66ac872304b14aa08 37854 
zendframework-resources_1.11.6-1_all.deb
Files: 
 b64e02328cac9ed6baed4cf82c8c9941 1115 web optional zendframework_1.11.6-1.dsc
 1db13419a66a169ed0618f173ec44082 20149326 web optional 
zendframework_1.11.6.orig.tar.gz
 5862896a7063abf0bfcec6a1f3c3c073 4631 web optional 
zendframework_1.11.6-1.diff.gz
 5ce7af0fb9961a859cbe45970c199cb1 3713626 web optional 
zendframework_1.11.6-1_all.deb
 791d7996d3f09517a36b904f92402cac 9554 web optional 
zendframework-bin_1.11.6-1_all.deb
 5def3c570163ec963b734f7e7e8f5b79 37854 web optional 
zendframework-resources_1.11.6-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3aBNgACgkQ+C5cwEsrK54hpwCeOePjHaEFoKQFsm0uHvzQWk/7
avAAn1MYF0fAKGKfx3YVLDfp93R4Rdtl
=z26j
-END PGP SIGNATURE-


Accepted:
zendframework-bin_1.11.6-1_all.deb
  to main/z/zendframework/zendframework-bin_1.11.6-1_all.deb
zendframework-resources_1.11.6-1_all.deb
  to main/z/zendframework/zendframework-resources_1.11.6-1_all.deb
zendframework_1.11.6-1.diff.gz
  to main/z/zendframework/zendframework_1.11.6-1.diff.gz
zendframework_1.11.6-1.dsc
  to main/z/zendframework/zendframework_1.11.6-1.dsc
zendframework_1.11.6-1_all.deb
  to main/z/zendframework/zendframework_1.11.6-1_all.deb
zendframework_1.11.6.orig.tar.gz
  to main/z/zendframework/zendframework_1.11.6.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoaxn-0007vi...@franck.debian.org



Accepted zeroinstall-injector 1.0-1 (source all)

2011-05-23 Thread Thomas Leonard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 09:17:18 +0100
Source: zeroinstall-injector
Binary: zeroinstall-injector
Architecture: source all
Version: 1.0-1
Distribution: unstable
Urgency: low
Maintainer: Thomas Leonard tal...@gmail.com
Changed-By: Thomas Leonard tal...@gmail.com
Description: 
 zeroinstall-injector - run programs by URL
Changes: 
 zeroinstall-injector (1.0-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 bf0670d6e5850106e7d36730a1d16f58862666d1 1141 zeroinstall-injector_1.0-1.dsc
 5e61d308a1730bbab5b6fa05fcf625bea9143aaf 324040 
zeroinstall-injector_1.0.orig.tar.bz2
 82decc15d7876e5149926531abd2c4b38f6165d2 4025 
zeroinstall-injector_1.0-1.debian.tar.gz
 58fa6c35ff2aa490ab18d7239da4598e1585a224 291490 
zeroinstall-injector_1.0-1_all.deb
Checksums-Sha256: 
 eab1741d595165698a7fa71991675a6f919b5175946838987c530c64c74b2c15 1141 
zeroinstall-injector_1.0-1.dsc
 ea8f5462632bf5e291852ef70f64714f84a45b9c911ccb4385d14bf34a743713 324040 
zeroinstall-injector_1.0.orig.tar.bz2
 0f155144cf359c46c92b18955a1fccb4a1f8067d07aaf2ddd8b3546ad66517cf 4025 
zeroinstall-injector_1.0-1.debian.tar.gz
 e0f43055c5ca0879c0bf78007d03524718768470217bc1a74cbfb48edfc71fdb 291490 
zeroinstall-injector_1.0-1_all.deb
Files: 
 1cde0103bb7eca5ed82991eb6f54de13 1141 admin extra 
zeroinstall-injector_1.0-1.dsc
 6b3864376e8846d6bd0b4180faa11b40 324040 admin extra 
zeroinstall-injector_1.0.orig.tar.bz2
 ef3eec3f36eee4ad07b09f5220bece7f 4025 admin extra 
zeroinstall-injector_1.0-1.debian.tar.gz
 6b8550a7884f3128d9e21b67d8502e74 291490 admin extra 
zeroinstall-injector_1.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3aIFQACgkQrgeCgFmlPMFA9ACfepw7f6TGFUEpw8lJMZLgtanG
LJEAoJicZBWJO+4gUGsJtbK+t75RAbBE
=FZK8
-END PGP SIGNATURE-


Accepted:
zeroinstall-injector_1.0-1.debian.tar.gz
  to main/z/zeroinstall-injector/zeroinstall-injector_1.0-1.debian.tar.gz
zeroinstall-injector_1.0-1.dsc
  to main/z/zeroinstall-injector/zeroinstall-injector_1.0-1.dsc
zeroinstall-injector_1.0-1_all.deb
  to main/z/zeroinstall-injector/zeroinstall-injector_1.0-1_all.deb
zeroinstall-injector_1.0.orig.tar.bz2
  to main/z/zeroinstall-injector/zeroinstall-injector_1.0.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoaxx-0007xr...@franck.debian.org



Accepted zope.deprecation 3.4.0-2 (source all)

2011-05-23 Thread TANIGUCHI Takaki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 15:42:54 +0900
Source: zope.deprecation
Binary: python-zope.deprecation
Architecture: source all
Version: 3.4.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu Zope Team 
pkg-zope-develop...@lists.alioth.debian.org
Changed-By: TANIGUCHI Takaki tak...@debian.org
Description: 
 python-zope.deprecation - Zope 3 Deprecation Infrastructure
Changes: 
 zope.deprecation (3.4.0-2) unstable; urgency=low
 .
   * Switch to dh_python2.
   * Bump Standards-Version to 3.9.2 (with no changes).
Checksums-Sha1: 
 263686be8b41557622021a0ee72dc37835acddc8 1857 zope.deprecation_3.4.0-2.dsc
 f4ab401e24829fcd4799072a241e25b89783e2df 6135 
zope.deprecation_3.4.0-2.debian.tar.gz
 838a0e381a8b96243b82af46cb264cbffc6e272e 12128 
python-zope.deprecation_3.4.0-2_all.deb
Checksums-Sha256: 
 9163d727cee896b5a6783c481e2098d071f40cb0d1824cf15941104874a42f7c 1857 
zope.deprecation_3.4.0-2.dsc
 34517d4415fec3f6f71db1ea14664b2e425c996eb305858a7073657e082ecf3c 6135 
zope.deprecation_3.4.0-2.debian.tar.gz
 61ad4334938e7efea367f4f357def904df92b83c003f7e8bc1e440a55480941f 12128 
python-zope.deprecation_3.4.0-2_all.deb
Files: 
 aaf35ccab4a709e0db64104356a13df5 1857 python extra zope.deprecation_3.4.0-2.dsc
 ed5e74aa2425394e69d8bff6b558388e 6135 python extra 
zope.deprecation_3.4.0-2.debian.tar.gz
 f8cee392eb0cd9b73b3c530fd855d957 12128 python extra 
python-zope.deprecation_3.4.0-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2gJYAAoJEMwUn2wopeJXDd8P/1XRjr8Q1/rHrUkAIuqhv7II
uR7/IB8M/Uzg0rBN80CPzEq5AEikbtvWYPS4pNRyM2evMuy4elDqrb+dCai2qGGt
tHjrKnYdSXDI6LISXtyde79siN3VzkyYSSlXaokvHgqKBa8f6pcR/edPOXwRk2Qz
1WCsHXuzjrQTpLUdAC2azP3dWPAeS6NVK+atracIzXiY/SnZFeCxUSLulGaXORJ6
b4iM+M+LTSo69P4GavRuf48SlHV9ROeFjoU2GicdhxR6NGOx0RqfE4LFIkAqZF8M
hU74NgIoUF1GszQAT3WrJXah5q3bTXxcIuhHz0wl2su+NY2RPfoDFO2BDf6n/p9Y
QCYcFgEiz3wQ3/RO9s5njfkj83XaIX02fvyrlQckqggOHJYXqg1PEeyzexYQE0oT
C84jsHgIs4bmqft0fDtUFYEIe2EUg0Bltw6cgKNcOWWLv+zgRuhNWBzZtnYp2Fn7
AmHc0A7iYKVAdlcnCOcSOlkoARPhM3+V5VefennjnZjpMN1bgZt1Vmvcsb2y1y9Q
xRbodgy3ZvwjnLFU1YLeOEK81HXPBusEqBEvfvR69E1j9pqeDm/5bCzLPs+oLl/+
KlWXLjerOdM9B/ll1PbMhQD2mKZsbgRrolT/xxUE0VEY7QQ9sraeP4otUn6cM5cz
EcbXM4G+AxNWYSCXQ9j7
=M9Lb
-END PGP SIGNATURE-


Accepted:
python-zope.deprecation_3.4.0-2_all.deb
  to main/z/zope.deprecation/python-zope.deprecation_3.4.0-2_all.deb
zope.deprecation_3.4.0-2.debian.tar.gz
  to main/z/zope.deprecation/zope.deprecation_3.4.0-2.debian.tar.gz
zope.deprecation_3.4.0-2.dsc
  to main/z/zope.deprecation/zope.deprecation_3.4.0-2.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoay8-0007at...@franck.debian.org



Accepted dojo 1.6.1+dfsg-1 (source all)

2011-05-23 Thread Jason Morawski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 May 2011 15:10:25 -0400
Source: dojo
Binary: libjs-dojo-core libjs-dojo-dijit libjs-dojo-dojox
Architecture: source all
Version: 1.6.1+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Jason Morawski rpgdu...@gmail.com
Changed-By: Jason Morawski rpgdu...@gmail.com
Description: 
 libjs-dojo-core - Modular JavaScript toolkit
 libjs-dojo-dijit - Modular JavaScript toolkit - Dijit
 libjs-dojo-dojox - Modular JavaScript toolkit - DojoX
Changes: 
 dojo (1.6.1+dfsg-1) unstable; urgency=low
 .
   * New upstream version
   * Removed Thumbs.db from dojox.gantt project
   * Removed fileuploader.swf to comply with the DFSG
   * Updated README.source and uscan-dfsg-clean.sh to reflect DFSG changes
Checksums-Sha1: 
 3777fb0d0f82b4c5d9c1136d73de5f4091ab493a 1131 dojo_1.6.1+dfsg-1.dsc
 fa1ab92c6abff528cd35c1a6f98df3a686c0a8e5 16255970 dojo_1.6.1+dfsg.orig.tar.gz
 b5ab14dbd34e34e733c60609bb1752975f8736d2 9684 dojo_1.6.1+dfsg-1.debian.tar.gz
 e0e46923a26c4325d4d2bfe3249dec638a8a8c57 349828 
libjs-dojo-core_1.6.1+dfsg-1_all.deb
 51def6a2851759e2ca6e38b37a3ab67cfafa6a8d 1165168 
libjs-dojo-dijit_1.6.1+dfsg-1_all.deb
 fba0b991f8ff21187cecf8885bf6151131d9757e 2355044 
libjs-dojo-dojox_1.6.1+dfsg-1_all.deb
Checksums-Sha256: 
 60b75185461ef72ecb3263aa7418f7c3129334adcce504374195129cfbff0cfc 1131 
dojo_1.6.1+dfsg-1.dsc
 48f91daedcfcb580932dc9ac2b7bcfcc35bbe56ef3ac2da93fe3dafe57786bec 16255970 
dojo_1.6.1+dfsg.orig.tar.gz
 4e4aaa1604280f41702abd1fd815eb61aa85df470fed9bb5f2b622e0bed0bfc9 9684 
dojo_1.6.1+dfsg-1.debian.tar.gz
 90864443efd1297d133a2b947bbf08ea8e2dd074fcdb4624c0f798ec48093010 349828 
libjs-dojo-core_1.6.1+dfsg-1_all.deb
 6ecc9702ad138c9a8c59a2535e939e1a9ce6818ed55d225e77ef432dab880659 1165168 
libjs-dojo-dijit_1.6.1+dfsg-1_all.deb
 6018c13134cb90b641d5f2b8a388721f13ab89e3d112ea5168b9dd457b0ad1e3 2355044 
libjs-dojo-dojox_1.6.1+dfsg-1_all.deb
Files: 
 575b2fdbe3017915fa006a3388d674f4 1131 web optional dojo_1.6.1+dfsg-1.dsc
 d8dc78113fdde15bde90467393a638e3 16255970 web optional 
dojo_1.6.1+dfsg.orig.tar.gz
 060bb3d38272d0d4fb59810e34e7a0bb 9684 web optional 
dojo_1.6.1+dfsg-1.debian.tar.gz
 98dbb29e1a6fd0df8f2417c68a91cbb7 349828 web optional 
libjs-dojo-core_1.6.1+dfsg-1_all.deb
 b8dcab40ce8beebc07430924b9175dad 1165168 web optional 
libjs-dojo-dijit_1.6.1+dfsg-1_all.deb
 3846149214437c6651785d90c70f67c4 2355044 web optional 
libjs-dojo-dojox_1.6.1+dfsg-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAk3arbkACgkQ+C5cwEsrK5737gCeLlAzn4tApkgSmdl+rnbx0Z1u
vfUAn3e004jGBkgRpN0frv/nBsbruPpZ
=pnQ6
-END PGP SIGNATURE-


Accepted:
dojo_1.6.1+dfsg-1.debian.tar.gz
  to main/d/dojo/dojo_1.6.1+dfsg-1.debian.tar.gz
dojo_1.6.1+dfsg-1.dsc
  to main/d/dojo/dojo_1.6.1+dfsg-1.dsc
dojo_1.6.1+dfsg.orig.tar.gz
  to main/d/dojo/dojo_1.6.1+dfsg.orig.tar.gz
libjs-dojo-core_1.6.1+dfsg-1_all.deb
  to main/d/dojo/libjs-dojo-core_1.6.1+dfsg-1_all.deb
libjs-dojo-dijit_1.6.1+dfsg-1_all.deb
  to main/d/dojo/libjs-dojo-dijit_1.6.1+dfsg-1_all.deb
libjs-dojo-dojox_1.6.1+dfsg-1_all.deb
  to main/d/dojo/libjs-dojo-dojox_1.6.1+dfsg-1_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoaln-0001vq...@franck.debian.org



Accepted doxygen 1.7.4-2 (source all amd64)

2011-05-23 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 20:07:07 +0200
Source: doxygen
Binary: doxygen doxygen-latex doxygen-doc doxygen-gui
Architecture: source amd64 all
Version: 1.7.4-2
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 doxygen- Documentation system for C, C++, Java, Python and other languages
 doxygen-doc - Documentation for doxygen
 doxygen-gui - GUI configuration tool for doxygen
 doxygen-latex - Documentation system for C, C++, Java, Python and other 
languages
Closes: 622147 625956 627494
Changes: 
 doxygen (1.7.4-2) unstable; urgency=low
 .
   * Re-enable the doxygen_direct_dot_run.diff patch, still issues on
 armel. Closes: #627494.
   * Only include jquery.js in generated output when needed (Chris Butler).
 Closes: #622147.
   * Include jquery.js source in debian/; add jquery.js license.
 Closes: #625956.
Checksums-Sha1: 
 d176e2f91054dede04ceaaffacc33cc0c9e90e90 1247 doxygen_1.7.4-2.dsc
 c9ddaa7964b90fe4e710375e446ea7650fc47a18 48423 doxygen_1.7.4-2.debian.tar.gz
 6b865ae96caa2227b444bf9f38fcc29753a0d61b 2287044 doxygen_1.7.4-2_amd64.deb
 076be30c3d0b9df83929d351f5d7d9e11bf3486f 261606 doxygen-gui_1.7.4-2_amd64.deb
 b2efcbcd76159ea0a7eb45ffa0015109392109a4 8366 doxygen-latex_1.7.4-2_all.deb
 9fb75d9f52beab87b47518bd21c1b16bd0a42da0 1720696 doxygen-doc_1.7.4-2_all.deb
Checksums-Sha256: 
 28a95ba3e8ebc8c3efc5fe8ec32a3d7803695fdb1cf83bfb133567c8fb3457f1 1247 
doxygen_1.7.4-2.dsc
 be17d523d65795a9a835924221408b77a2faa3e0701d146d9d6135434d73a4c4 48423 
doxygen_1.7.4-2.debian.tar.gz
 be7beb4cb5b1e1ca6464de26d7a0eac73a53a86021d302ae10bf7572868a68c2 2287044 
doxygen_1.7.4-2_amd64.deb
 14576838925628f3977452c7e45fcfead32b173190e07c8d86b16d897def66db 261606 
doxygen-gui_1.7.4-2_amd64.deb
 baf2834a6ea96530a5404765fa55a7ca9c694ad140635283e8d1b83ad12c14ee 8366 
doxygen-latex_1.7.4-2_all.deb
 1ae7ea2184ed2c1e8310bb256f72c1943bd73409588e0781b442dddb5479fc18 1720696 
doxygen-doc_1.7.4-2_all.deb
Files: 
 9cc92d7694fa04794cb7758bebc3f77d 1247 devel optional doxygen_1.7.4-2.dsc
 61953579c39b6504e48fcbe00d650d50 48423 devel optional 
doxygen_1.7.4-2.debian.tar.gz
 6dda2f0ee959618bfb68cb7634d1909b 2287044 devel optional 
doxygen_1.7.4-2_amd64.deb
 4f31d526799c88e548b23fd43c0ea4a9 261606 devel optional 
doxygen-gui_1.7.4-2_amd64.deb
 4fb789b8520ab756e11b5f2d888992c2 8366 devel optional 
doxygen-latex_1.7.4-2_all.deb
 4cb1fa1abafdff06fc7cec6f0ca4ac6a 1720696 doc optional 
doxygen-doc_1.7.4-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3arzIACgkQStlRaw+TLJy0yACgwhV58AXFDhtrJShXn+9daHZj
4SkAnRs3CP9WGeH3h44N1XN8KWoEHCC+
=ID9y
-END PGP SIGNATURE-


Accepted:
doxygen-doc_1.7.4-2_all.deb
  to main/d/doxygen/doxygen-doc_1.7.4-2_all.deb
doxygen-gui_1.7.4-2_amd64.deb
  to main/d/doxygen/doxygen-gui_1.7.4-2_amd64.deb
doxygen-latex_1.7.4-2_all.deb
  to main/d/doxygen/doxygen-latex_1.7.4-2_all.deb
doxygen_1.7.4-2.debian.tar.gz
  to main/d/doxygen/doxygen_1.7.4-2.debian.tar.gz
doxygen_1.7.4-2.dsc
  to main/d/doxygen/doxygen_1.7.4-2.dsc
doxygen_1.7.4-2_amd64.deb
  to main/d/doxygen/doxygen_1.7.4-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoalb-0001bq...@franck.debian.org



Accepted nautilus-share 0.7.2-15 (source amd64)

2011-05-23 Thread Chow Loong Jin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 06 Nov 2010 13:01:19 +0800
Source: nautilus-share
Binary: nautilus-share
Architecture: source amd64
Version: 0.7.2-15
Distribution: experimental
Urgency: low
Maintainer: Chow Loong Jin hyper...@ubuntu.com
Changed-By: Chow Loong Jin hyper...@ubuntu.com
Description: 
 nautilus-share - Nautilus extension to share folder using Samba
Changes: 
 nautilus-share (0.7.2-15) experimental; urgency=low
 .
   * debian/patches/02_install_missing_samba.patch,
 debian/patches/05_dependencies.patch,
 debian/patches/11_use-gio.patch:
 + Drop libgnomeui dependency as part of the GNOME 3 cleaning effort
   (LP: #664745). Thanks Michael Terry for the patch
   * debian/source/format: Move to 3.0 (quilt)
   * debian/patches/*: Refresh all patches for 3.0 (quilt) since
 dpkg-source is less tolerant
Checksums-Sha1: 
 2a470ad2ff11b3fdde4b1b4c5761802f4b8f5e6b 1832 nautilus-share_0.7.2-15.dsc
 bd8e10ccded0fe7c328949e6a63822f9d425aeaa 36367 
nautilus-share_0.7.2-15.debian.tar.gz
 441f05081ab037dd16af536c9c57fec4e5845c54 42296 
nautilus-share_0.7.2-15_amd64.deb
Checksums-Sha256: 
 c0e91cabb1e7c37e422eb3b9142369ae0d335b5ddd549cc3946cca2260c433e4 1832 
nautilus-share_0.7.2-15.dsc
 4663ef5598333e08874bc9aaf6dcd81c6fc6e701197f8910e2b3914dbfe680af 36367 
nautilus-share_0.7.2-15.debian.tar.gz
 9bbeed4cabbf3c6a255db7aefb5685196766b039181c9ddd35460e98f7819d88 42296 
nautilus-share_0.7.2-15_amd64.deb
Files: 
 896aca537302ea64f86aa4fd9a80f26f 1832 gnome optional 
nautilus-share_0.7.2-15.dsc
 032ffaea755c3dcd385d7c2631e3fad3 36367 gnome optional 
nautilus-share_0.7.2-15.debian.tar.gz
 2ff0252f7b597a0f5bbd2974c144b7f0 42296 gnome optional 
nautilus-share_0.7.2-15_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2nvEAAoJEONS1cUcUEHUs9cP/2s3OtpnORRFlP+MtuQFsbMS
7UkAsCfmdRYTUgb2a/nv59RgUP7FV2KC8b0oqahh0I3uDPvqOlsWAQY0Qr18tg40
QkeHPQFciN/DceLYyzLqjCYq+S5GMM2rDH9o3w2VdUz7byhHS4COzq4mj6CnoDXg
9bWCZE6UBtvQtIhY+cOKkMU3FoIV6JxkEx/nN+elleOdkk+RxEIHFjvVCiwq4PlJ
irK9Siw91BJ5iCO2TKJZIs70/NaGs932Vf7JXZGe/SZ/AtqM65aSYBv3EcM5VpZj
Ri/ImheCMEw8ovOpQlQakm7m5j5NTK1ezcf2tRGLpRPjShqyAwmqMkjJZUFT+0Rd
wJ1/PHR+rGWBCWbKAYjG5g65EMggpZy/3LRjTDP4upE1jaDI6hVfMZpP4NIv25Ps
0p9MCSkVtikpmnCCPFUQlBMpiPBg+kXv8POEvLUFAjqjsA4pOfqkZGeiwLFtleM+
qnbZkr/gs7g/tgYQMNXsiygeevgMtldQknjOLMZpzAVfBI4FpBY8Q5Jlir3Ty87g
s5Uf5hjkXYu0sLl5TQgG3hRF1zE/J5P8wSHySUk7QeG3kaYqHlQAY/+gTw72g0Eb
63Q+cy1Q97WdOFslDdwJ3/cz5q0z+D31WdE6zABW61wjsYrLlNjko4gvjufap2mG
PfPcb3HURH4m426ugk3V
=qbs9
-END PGP SIGNATURE-


Accepted:
nautilus-share_0.7.2-15.debian.tar.gz
  to main/n/nautilus-share/nautilus-share_0.7.2-15.debian.tar.gz
nautilus-share_0.7.2-15.dsc
  to main/n/nautilus-share/nautilus-share_0.7.2-15.dsc
nautilus-share_0.7.2-15_amd64.deb
  to main/n/nautilus-share/nautilus-share_0.7.2-15_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoamr-0002gy...@franck.debian.org



Accepted node-xmpp 0.2.7-1 (source all)

2011-05-23 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 23 May 2011 20:53:25 +0200
Source: node-xmpp
Binary: libnode-node-xmpp
Architecture: source all
Version: 0.2.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 libnode-node-xmpp - idiomatic XMPP library for Node
Changes: 
 node-xmpp (0.2.7-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 3b221f83575e8ac1cab04c2878f1a691e0963c29 1901 node-xmpp_0.2.7-1.dsc
 769f5a4227c6d5a54b6834671608d767e5e6c18b 30751 node-xmpp_0.2.7.orig.tar.gz
 1f6a74eb5605bc560d5d64ba56620d44bb01dc70 3820 node-xmpp_0.2.7-1.debian.tar.gz
 7186bcf3e2e49d95d87027d1dbd5ff30cec5dd49 21222 
libnode-node-xmpp_0.2.7-1_all.deb
Checksums-Sha256: 
 355f9c5f3ad9695e8b103d3a09c06b0dc16e874d1fe1b013e0448e2aafbdff7e 1901 
node-xmpp_0.2.7-1.dsc
 35c786dc4178e5d421277cbbfc29f8d69f6ef140e1a9a2cb62dabe0f0001a9c4 30751 
node-xmpp_0.2.7.orig.tar.gz
 13b1932322713ecbe630e1e24ee4c0c8ff302b2ef786e21edb911f3036e63bfd 3820 
node-xmpp_0.2.7-1.debian.tar.gz
 e053bf3808f1ee46dec4cea3099fe66c7c3cc7d2340fb34fdac37fd15448d115 21222 
libnode-node-xmpp_0.2.7-1_all.deb
Files: 
 ad35878bba1aada53c0ed036209cfed3 1901 web optional node-xmpp_0.2.7-1.dsc
 1f96d89f9a3098dc1194463efffed0e9 30751 web optional node-xmpp_0.2.7.orig.tar.gz
 f5b4399df2fb69859b509743eba559be 3820 web optional 
node-xmpp_0.2.7-1.debian.tar.gz
 7b57f913ac14137110a0f12ed3944d99 21222 web optional 
libnode-node-xmpp_0.2.7-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCgAGBQJN2q48AAoJECx8MUbBoAEhMuYP/10wJXCb/kKa91WCaVJbr00i
aS5TcUFIZC8lzqH/a6xzxqieCV0sDm7/ytiWajxyHaLh22qEoy4BRZ48oXHKo7hI
kIVYHIaeFELZBxjko3RvE8Y/vSRaXfOQmTjQnRixw2JeK9dzpvTHN9RqPnopWLc8
iQAc/k9Xo73CEkdZ7rnjztsyojNWshJQDZuBsUvbO5KaClXE0pk/u9TiQSJlquRM
MtOOuKdZvQ+JCnT2VLEMS4KE31JjgPWhXUE1WP3+3yvsxSUHMhavXNEdv7QuQ2Pv
sozj4AuhRxcYsTkBGfdv+ZwkJxkldGRSAsyKegiHWY44iDS+yHif/WNJS54iG/PH
haxqDGdv/6wNOH679zoatCfXCRst3JVbJDT/2LbwQmW1T3qXTAYEn7KZmIirmVNl
xdgwGjgK3VaqxV/l2wi0WpNv2gEZDxxsaFZL1nNzBuDFBA7i0vt9k9WeYkJvU06g
9iFfGVeXsqtuP5ZQ0kb3w32QfAMu0cTicRhxy+LAQA6BvsnOfNkoy6QYxI3ljkf4
WJk+hxIivkw8h6xywNLz/ydmdIaxl6YI77Rno+pDr4kVdZaTA83X++QsaCs9G8wW
KJjVSdJMvGzhiM+7iM1Wh9GJ9Hfr5YUm+FGxEJ+KkzvMY5kpSbNWiqqqoarWM/iV
TdrNopQSnAcx0ZdBT2CB
=meLl
-END PGP SIGNATURE-


Accepted:
libnode-node-xmpp_0.2.7-1_all.deb
  to main/n/node-xmpp/libnode-node-xmpp_0.2.7-1_all.deb
node-xmpp_0.2.7-1.debian.tar.gz
  to main/n/node-xmpp/node-xmpp_0.2.7-1.debian.tar.gz
node-xmpp_0.2.7-1.dsc
  to main/n/node-xmpp/node-xmpp_0.2.7-1.dsc
node-xmpp_0.2.7.orig.tar.gz
  to main/n/node-xmpp/node-xmpp_0.2.7.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoamx-0002jc...@franck.debian.org



Accepted ora2pg 8.3-1 (source all)

2011-05-23 Thread Julián Moreno Patiño
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 06:27:38 -0500
Source: ora2pg
Binary: ora2pg
Architecture: source all
Version: 8.3-1
Distribution: unstable
Urgency: low
Maintainer: Julián Moreno Patiño darkju...@gmail.com
Changed-By: Julián Moreno Patiño darkju...@gmail.com
Description: 
 ora2pg - Oracle to PostgreSQL database schema converter
Changes: 
 ora2pg (8.3-1) unstable; urgency=low
 .
   * New upstream release
   * Bump Standards-Version to 3.9.2 (no changes).
   * Refresh all patches.
Checksums-Sha1: 
 25f5acbc661e9e275049e6db113093c59ecf43dc 1684 ora2pg_8.3-1.dsc
 122e271f3857592387f8b100e49298df0bd09afb 80338 ora2pg_8.3.orig.tar.bz2
 a9f5716f609081a4bcf5da7cfe289580f884e650 3776 ora2pg_8.3-1.debian.tar.bz2
 c0003075677ee8d87d3ce4f3f4a60517f3f015a6 85724 ora2pg_8.3-1_all.deb
Checksums-Sha256: 
 42092f3c0013cf029da31e4433fe16a07314751ff82ed34e06225ebed8fd7554 1684 
ora2pg_8.3-1.dsc
 386a305e9d27d874306df91c0276b354d4bf5885416636461425db528c777dc6 80338 
ora2pg_8.3.orig.tar.bz2
 580df6376864c4578a11e2c0b1f826b84d7a93728f674bc7efff122f377299fc 3776 
ora2pg_8.3-1.debian.tar.bz2
 1bb1ace3802bef899224cd65777449b367e08f9afd1491ff53ac5b72ff60b35c 85724 
ora2pg_8.3-1_all.deb
Files: 
 792f8550354186877a0349d06e7a4a96 1684 contrib/misc extra ora2pg_8.3-1.dsc
 c4828f0d32677b49f009117d2f38684c 80338 contrib/misc extra 
ora2pg_8.3.orig.tar.bz2
 56b076745de198a1e651558a551b963f 3776 contrib/misc extra 
ora2pg_8.3-1.debian.tar.bz2
 9c1de6475666b58b4b6c1eeb42076148 85724 contrib/misc extra ora2pg_8.3-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCAAGBQJN2rRTAAoJELsgrCDgt9a+CKUP/0F8RJHKeYYfeSof7htZbEdl
+Liyl0Bq3p5Ekhpwxe3oFRyBkBmn6sT3o7HrhidTkuWfxZfAFo209c15kijWts1e
Xa1Z96pDy3wAc/NhEWCXKR459lmi3RPw8mWT1c7Bfitu+BOoUG7CyoadZsjhTpLl
DDkqMPkQpkGVMpZ+PHjqNbnExLrxcv9brIp7o2RSKLp66IfG79c99K+3z9K8Cv8j
sOezOmP9yaa9YAMt7ydIkmboYTWCCo2zTBaEyW+/PtbNiOLgP2fWtsD+3ZtLfH2Q
9iHelajbWy1ebhufbTHxoUhNksuNLnnrwRwOfj1huDlmamRBakI1W0/M3TYIIllm
QlIOLQ+5YneJJYW8tONAvJAkNiuEuq5v3OvRvToEzapfE5dCVVk9s3FaP55nn/zb
PPxGxWFNUYPpRAMDg/58aq3kMDjpTGDyKaxaa2ocUn7u0Hh/Gzy2JarzFE0QyiNr
NaBMSK6F5bT6p3nQA0f99ST9F/58XrbgN3Ylk7xkBAqBkRFpxgv8AHA4KbKMKIlf
3mQmmcDGIafTPqWncodgBkX+0Kwke5xpEoymfKYrxz2i7Rf0YL+BXbysEFchJJDP
fEV6vU8eiA4aEGVDsov001MnbiCstiEEdaYOGp2nTHIqfHWqdFgW0cSV7NROKw8J
r1HpAay4debVM93Conhb
=x12d
-END PGP SIGNATURE-


Accepted:
ora2pg_8.3-1.debian.tar.bz2
  to contrib/o/ora2pg/ora2pg_8.3-1.debian.tar.bz2
ora2pg_8.3-1.dsc
  to contrib/o/ora2pg/ora2pg_8.3-1.dsc
ora2pg_8.3-1_all.deb
  to contrib/o/ora2pg/ora2pg_8.3-1_all.deb
ora2pg_8.3.orig.tar.bz2
  to contrib/o/ora2pg/ora2pg_8.3.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoame-0002lx...@franck.debian.org



Accepted puppet 2.7.0~rc3-1 (source all)

2011-05-23 Thread Stig Sandbeck Mathisen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 20:17:17 +0200
Source: puppet
Binary: puppet-common puppet puppetmaster-common puppetmaster 
puppetmaster-passenger vim-puppet puppet-el puppet-testsuite
Architecture: source all
Version: 2.7.0~rc3-1
Distribution: experimental
Urgency: low
Maintainer: Stig Sandbeck Mathisen s...@debian.org
Changed-By: Stig Sandbeck Mathisen s...@debian.org
Description: 
 puppet - Centralized configuration management - agent startup and compatib
 puppet-common - Centralized configuration management
 puppet-el  - syntax highlighting for puppet manifests in emacs
 puppet-testsuite - Centralized configuration management - test suite
 puppetmaster - Centralized configuration management - master startup and 
compati
 puppetmaster-common - Puppet master common scripts
 puppetmaster-passenger - Centralised configuration management - master setup 
to run under
 vim-puppet - syntax highlighting for puppet manifests in vim
Closes: 609896 625638
Changes: 
 puppet (2.7.0~rc3-1) experimental; urgency=low
 .
   * New upstream release candidate
   * Tell adduser not to create /var/lib/puppet (Closes: #609896)
   * Use dpkg-statoverride to handle permissions
   * Allow the use of file-rc (Closes: #625638)
Checksums-Sha1: 
 a301e10f9976df70bfa4269acf01a7781c343177 1569 puppet_2.7.0~rc3-1.dsc
 739d28640df7e7e1995c8c1c95d6c4c808151ef2 1718352 puppet_2.7.0~rc3.orig.tar.gz
 1cb32a086a84fda37c01c8ace3873ff261017f7c 34856 puppet_2.7.0~rc3-1.debian.tar.gz
 519f3ba7460ee1517796618487ac6830132334e1 845496 
puppet-common_2.7.0~rc3-1_all.deb
 7147fd6177996ee7d4b71841f83c4816e5a5feda 235300 puppet_2.7.0~rc3-1_all.deb
 a17c3278c8488c15cb6cc4b71e59220b8a7a0f1a 232436 
puppetmaster-common_2.7.0~rc3-1_all.deb
 87e57ca4aba5e8cfc363cf88aa74310ef4014acd 228438 
puppetmaster_2.7.0~rc3-1_all.deb
 09b85375eb5c441aa89d0834463580cc85fa31a4 227436 
puppetmaster-passenger_2.7.0~rc3-1_all.deb
 cd5aba1267958904cbed16a3c3450036fe934ea4 226124 vim-puppet_2.7.0~rc3-1_all.deb
 e3c3d320c34d53a19db3870b27c028800b0b7211 228510 puppet-el_2.7.0~rc3-1_all.deb
 faea59bb08d8cf1b18d44a47afc110c4d5b562c4 1004060 
puppet-testsuite_2.7.0~rc3-1_all.deb
Checksums-Sha256: 
 f9318a31324f3c9bbfc8e351392d7d4014d7e6df5da6d19c93975dd6b4c3634d 1569 
puppet_2.7.0~rc3-1.dsc
 552a92c9cb06f85c8076ba2d7338523639207d99cf7eb9283d691f709cad5cea 1718352 
puppet_2.7.0~rc3.orig.tar.gz
 0287f60f7cb317fbc134b9d9212210911c9ea7b5c4187eb3ee8b6239dbb86565 34856 
puppet_2.7.0~rc3-1.debian.tar.gz
 e825eea8a060d8c56b93be295b1f00013300e1d6b63ad6ebbc583740d3088c16 845496 
puppet-common_2.7.0~rc3-1_all.deb
 3103a5dbdcabd144470dc5e1e601ca6e18ad7261a705ac1d35f669f5d6ce48ad 235300 
puppet_2.7.0~rc3-1_all.deb
 7119c3ff6a235f495fb64c1536af11729c4b7914ee43224812ef1a8c2b17a2b7 232436 
puppetmaster-common_2.7.0~rc3-1_all.deb
 3be41d998b58f749e4f208ca6c18f66ee699e44d69bd1d94fb52b5fdd30ec50d 228438 
puppetmaster_2.7.0~rc3-1_all.deb
 5919f17002105e7a9927825a997348d22b6ff31931942ea9e08a65a2656c7c6b 227436 
puppetmaster-passenger_2.7.0~rc3-1_all.deb
 deafa1dca163993a75f7141a5df27f501f1cc63205da455edad1b4ae9c60701b 226124 
vim-puppet_2.7.0~rc3-1_all.deb
 c071006f5649522058ff1ac1fe9824eba5d2ca49bc3f2cee8b49f5b0523da0e1 228510 
puppet-el_2.7.0~rc3-1_all.deb
 c1b67cb6f3e24f4ef2770f4df562ade0d04bef2cce950ce9739bdeb39fcb71b6 1004060 
puppet-testsuite_2.7.0~rc3-1_all.deb
Files: 
 19e5508f07b968aaa476b47d996f9cfa 1569 admin optional puppet_2.7.0~rc3-1.dsc
 24f3f45c5460d1431f0e2e13eb539e07 1718352 admin optional 
puppet_2.7.0~rc3.orig.tar.gz
 26a9ffcef34daf094156daa534d76f5b 34856 admin optional 
puppet_2.7.0~rc3-1.debian.tar.gz
 9bb06c8255e34712469be65971bfe081 845496 admin optional 
puppet-common_2.7.0~rc3-1_all.deb
 4354fa5638d9fb52e5e5f94af8ebb884 235300 admin optional 
puppet_2.7.0~rc3-1_all.deb
 4565945d597d00fe29246eb26009f925 232436 admin optional 
puppetmaster-common_2.7.0~rc3-1_all.deb
 b7c96b3b8d8922c296d0ae0f4dbbf76f 228438 admin optional 
puppetmaster_2.7.0~rc3-1_all.deb
 a1cfd30c028c727a8a929a1459ad5166 227436 admin optional 
puppetmaster-passenger_2.7.0~rc3-1_all.deb
 6104689ebe5ba939c43a26fd21a1c5bd 226124 admin optional 
vim-puppet_2.7.0~rc3-1_all.deb
 697c5e112a87412f7f693490693375fb 228510 admin optional 
puppet-el_2.7.0~rc3-1_all.deb
 89f97c9fda0e705fd80f231d9f376750 1004060 admin optional 
puppet-testsuite_2.7.0~rc3-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3areoACgkQQONU2fom4u7wHwCfQnMZDYYCTYlB2+WNI+LqIgo/
L4gAnRXNmH23DvENO7B3lxFsLnedqBtD
=e+A4
-END PGP SIGNATURE-


Accepted:
puppet-common_2.7.0~rc3-1_all.deb
  to main/p/puppet/puppet-common_2.7.0~rc3-1_all.deb
puppet-el_2.7.0~rc3-1_all.deb
  to main/p/puppet/puppet-el_2.7.0~rc3-1_all.deb
puppet-testsuite_2.7.0~rc3-1_all.deb
  to main/p/puppet/puppet-testsuite_2.7.0~rc3-1_all.deb
puppet_2.7.0~rc3-1.debian.tar.gz
  to main/p/puppet/puppet_2.7.0~rc3-1.debian.tar.gz
puppet_2.7.0~rc3-1.dsc
  to 

Accepted rapid-photo-downloader 0.4.1-1 (source all)

2011-05-23 Thread Julien Valroff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 21:17:07 +0200
Source: rapid-photo-downloader
Binary: rapid-photo-downloader
Architecture: source all
Version: 0.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Julien Valroff jul...@debian.org
Changed-By: Julien Valroff jul...@debian.org
Description: 
 rapid-photo-downloader - Photo downloader (importer) from cameras, memory 
cards other devi
Changes: 
 rapid-photo-downloader (0.4.1-1) unstable; urgency=low
 .
   * New upstream release
   * Fix duplicate entries in dependencies
   * Point to GPL-2 license text in debian/copyright
Checksums-Sha1: 
 a89ea4d676cfe14d2a5f3b1fe675a864bf00fa5a 1941 
rapid-photo-downloader_0.4.1-1.dsc
 42af152aa4cef4efb7acc30df6de85a2988a34c4 647278 
rapid-photo-downloader_0.4.1.orig.tar.gz
 8da49c342cd2606b687ae855a813fdb9d20809b5 3703 
rapid-photo-downloader_0.4.1-1.debian.tar.gz
 817ebcbc22dd7f90dfb0b5c7bb52ca7b439ab80a 398026 
rapid-photo-downloader_0.4.1-1_all.deb
Checksums-Sha256: 
 417a5c09dcf044b251f655868c788a187dce49e630d96432da2de31f2e0adef7 1941 
rapid-photo-downloader_0.4.1-1.dsc
 ba7f19acee8b76ed45f631723a0fc42f0b59e48cdbcce35ec6640e9617f081f3 647278 
rapid-photo-downloader_0.4.1.orig.tar.gz
 36bf61bd803d8f7a52c78fd1b2b5c09c7d2831aee2c7d876bb5f2603964aab2c 3703 
rapid-photo-downloader_0.4.1-1.debian.tar.gz
 0dadd13df8804dbff00878b31e8d3be766df1973077b2b08232d720d2d00567f 398026 
rapid-photo-downloader_0.4.1-1_all.deb
Files: 
 9856d25d441d735f6171d1bbdec9c39b 1941 graphics optional 
rapid-photo-downloader_0.4.1-1.dsc
 b4e746f044a9ee06f51e87db739b1df0 647278 graphics optional 
rapid-photo-downloader_0.4.1.orig.tar.gz
 3079502111ad2429bc81621db5114ce1 3703 graphics optional 
rapid-photo-downloader_0.4.1-1.debian.tar.gz
 89135e40f6380f629946cbfb795668e9 398026 graphics optional 
rapid-photo-downloader_0.4.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2rL3AAoJEIWf72cljiaxfwAP/RR4qEysIsJnYmri2N+efs3B
+s4xZHbSmjGftdKXK0D62dk++jYIJeoOEy1dFWwPfBlOoNllemHTj+s22yUZ9pyd
U8fWquBIoefYq2azf5OcDRXdmsnsjtqSLrA62sxobaf2I/vXcH2gXVWvX/eio+06
mzjnkUnDSi3Uh/CYGow0nWGscv9DtGEN924SSmsf/iQRD9UggBec72QnK0MhyRUs
lBrnFYn3c7eZ4L9DqJVc4SyyedtgWktI1TY9Zaf7xi5KW1OCe3yHO9Q46D19ZEP8
UUQgsMlEYAte5JuRLadSZTcZLIcqgWiKgGUGz9qpEKr2YSH4y3hSlVHAOyrcFWah
uiLwJtoLyM4zNvO1447srDFTRqZBUA4aQqxMOcn/FqSUkYvO2TAeGxFqYUTRiXqk
zKGz/8w1DG4rFvTpI2GvW4px6y0rS4JrOAsJBEGyu/mcpYPeaYcq6fgtSzb75nPS
7QH7xfgXCJ56cBdnkG17f3Hm2F4CVbF9jLf3JPKaa4cKgE3XuE48v5Utzai5MvvY
STmIXt6Ln1RitD6fA5eh20sWfk0W8iEzxqWzvL+xBYjVx3F8epzMc6ORwZ+y3url
1wYj/0TE0RkwJUXkmDSeG9uLNPGspTJCgLCxgCEmm9co7OCcWz11k0UuyyYrnatM
9EjvJhXRpNArfw1IQTlE
=GgJ4
-END PGP SIGNATURE-


Accepted:
rapid-photo-downloader_0.4.1-1.debian.tar.gz
  to main/r/rapid-photo-downloader/rapid-photo-downloader_0.4.1-1.debian.tar.gz
rapid-photo-downloader_0.4.1-1.dsc
  to main/r/rapid-photo-downloader/rapid-photo-downloader_0.4.1-1.dsc
rapid-photo-downloader_0.4.1-1_all.deb
  to main/r/rapid-photo-downloader/rapid-photo-downloader_0.4.1-1_all.deb
rapid-photo-downloader_0.4.1.orig.tar.gz
  to main/r/rapid-photo-downloader/rapid-photo-downloader_0.4.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoan2-0002x8...@franck.debian.org



Accepted roaraudio 0.4~beta6-1 (source amd64)

2011-05-23 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 21:00:29 +0200
Source: roaraudio
Binary: libroar1 libroar-dev roaraudio-dbg roaraudio libroar-compat1
Architecture: source amd64
Version: 0.4~beta6-1
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 libroar-compat1 - drop-in replacements for other sound libraries
 libroar-dev - header files and documentation for the RoarAudio libraries
 libroar1   - foundation libraries for the RoarAudio sound server and clients
 roaraudio  - sound server for audio mixing
 roaraudio-dbg - RoarAudio sound server for audio mixing (debugging symbols)
Changes: 
 roaraudio (0.4~beta6-1) unstable; urgency=low
 .
   [ Philipp Schafft ]
   * New upstream release.
   * Re-enable libfishsound.
   * Updated Build-Depends for libz and portaudio v.19.
   * Suggest ckport and libmuroar-dev package.
Checksums-Sha1: 
 eed9e0932209bc8de0e7c579e0e5050d71cc1d90 2243 roaraudio_0.4~beta6-1.dsc
 e2bbb9ae768066a8a907a5aaa62b97a61b76e299 597131 roaraudio_0.4~beta6.orig.tar.gz
 9402b3bf181b80ad426feac78b7652cc25dcfaa6 8159 
roaraudio_0.4~beta6-1.debian.tar.gz
 1d1a7f1f49d39a5642b90779f714678c0f077d91 185598 libroar1_0.4~beta6-1_amd64.deb
 3f0dec1e616ecbe48085ad8ab7a5994ea9c77311 131454 
libroar-dev_0.4~beta6-1_amd64.deb
 46250a573c09cb4220e431aa2c81ac7dd347eee2 791974 
roaraudio-dbg_0.4~beta6-1_amd64.deb
 c86ef0e26562da2e6189363e2f5ab4edca6abb43 235348 roaraudio_0.4~beta6-1_amd64.deb
 1f4348c461b565c52a0b0014e5272894faf7b384 62604 
libroar-compat1_0.4~beta6-1_amd64.deb
Checksums-Sha256: 
 eb84d1376acb438613d820bc6ba44fbeb74fc0ff66fcc5cd3e7638bb7c2f7255 2243 
roaraudio_0.4~beta6-1.dsc
 6a811299539fdf9bb32265932e3a0de7b708c9b98627de65c4c7e777a8bda015 597131 
roaraudio_0.4~beta6.orig.tar.gz
 22a6afd48be764344cb8944d347d43de3d33e9b064d8fd1bce5fbb5476a44db1 8159 
roaraudio_0.4~beta6-1.debian.tar.gz
 bc6b901874bf0fbf9d352a9be28bc692fa84a41ee0aff8f7f3d91ce77b12507f 185598 
libroar1_0.4~beta6-1_amd64.deb
 dca61b059911be81aa8f38c95d117a30c8ddb3f500eec435dfb06bba09e10774 131454 
libroar-dev_0.4~beta6-1_amd64.deb
 1c872ce1fb6067efb9313252f46c70991e1c1bb4fda3a66ad3f3066f88bc413a 791974 
roaraudio-dbg_0.4~beta6-1_amd64.deb
 0cd88a42f8b75d3aef5e58c76a636674647c4e4fccde41f196d304157628ba06 235348 
roaraudio_0.4~beta6-1_amd64.deb
 b97d37fb4089e83f88c70149f0ea08a4cff19c47bfd205996052f64348deb129 62604 
libroar-compat1_0.4~beta6-1_amd64.deb
Files: 
 eeed4a71d967d6f949cee2090f987db0 2243 libs optional roaraudio_0.4~beta6-1.dsc
 49349a47803f3257a44b5ad2832fb3df 597131 libs optional 
roaraudio_0.4~beta6.orig.tar.gz
 a0580129f6f91a4c5aea877009f97e0d 8159 libs optional 
roaraudio_0.4~beta6-1.debian.tar.gz
 1cc5162714340d8add7e3aa3af44d05a 185598 libs optional 
libroar1_0.4~beta6-1_amd64.deb
 aa0627ced466143c35fab12010255a13 131454 libdevel optional 
libroar-dev_0.4~beta6-1_amd64.deb
 82dc21acbc71f8f1891539241ed9a683 791974 debug extra 
roaraudio-dbg_0.4~beta6-1_amd64.deb
 5eacab7fea906aeb1f7fe265fedc7306 235348 sound optional 
roaraudio_0.4~beta6-1_amd64.deb
 7f169769d2f8a6b6f09da35b65f1a18e 62604 libs optional 
libroar-compat1_0.4~beta6-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2rDUAAoJEBLZsEqQy9jkmvQP/jN5IpEJCBwBlpebw+Lcqduc
+1j85Wj20ywbG20vxHB2diVdtQFNWopZ0y6S7EN824ndCyHMhnb7DrKEpYLvl7wN
rNWvVVPTDbChXy2qjZLjltXYz0uVpDDsDCHOkSAciVwv+HeptsVIQ7pVo9uMMo+Y
CeuqvKvNUeS924fQnGl0Rz7OXONrLqNadxQUaM01DqcruVTf/lyodjbiimkhyidM
crK+Vw6cqlVM2XJC/RY1lqxDWm3Kmcl99BbDkMJwn4UASeGP06Dbz+pbI76j0Gjr
BaBRQQqg1zfqUPNPFdoyu+oQMzKBOL7hfgmj/OVeBAk/crFCZmhJSUhj7UhTH+7/
CEI1m8fZIH3twcmZ5RkwZJ1kLHifi5QPwgCRT4xkuXjODR4Qciy4eTgEusMEEvqH
1GMpMxUY9BedB5bv8P1KZuZcdagWixqJlaYuDwSRcE8QItQ3wsmMhnWqRb3NU8vc
EfrwdkOSW197Y8sSJ7VNtfv6KkML1amgSvoj66uBL29Pm1P6Tc68jaezw6ShI7sg
EbmLsr9KkItvIBZ/i9XPo1xt/qtzU6sfC8LpYOw5C/9mwSwGveLhMVyEp2jmlVo8
+S90AozBbMqu8RwfN8NIvZZZb2FakL2cgSQmW74iiDJRJTtXp4mimOV4s1/5YIrm
Sw7vs5X/IjhdQApiJNdV
=GhGC
-END PGP SIGNATURE-


Accepted:
libroar-compat1_0.4~beta6-1_amd64.deb
  to main/r/roaraudio/libroar-compat1_0.4~beta6-1_amd64.deb
libroar-dev_0.4~beta6-1_amd64.deb
  to main/r/roaraudio/libroar-dev_0.4~beta6-1_amd64.deb
libroar1_0.4~beta6-1_amd64.deb
  to main/r/roaraudio/libroar1_0.4~beta6-1_amd64.deb
roaraudio-dbg_0.4~beta6-1_amd64.deb
  to main/r/roaraudio/roaraudio-dbg_0.4~beta6-1_amd64.deb
roaraudio_0.4~beta6-1.debian.tar.gz
  to main/r/roaraudio/roaraudio_0.4~beta6-1.debian.tar.gz
roaraudio_0.4~beta6-1.dsc
  to main/r/roaraudio/roaraudio_0.4~beta6-1.dsc
roaraudio_0.4~beta6-1_amd64.deb
  to main/r/roaraudio/roaraudio_0.4~beta6-1_amd64.deb
roaraudio_0.4~beta6.orig.tar.gz
  to main/r/roaraudio/roaraudio_0.4~beta6.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 

Accepted glpi 0.78.5-1 (source all)

2011-05-23 Thread Pierre Chifflier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 21:22:24 +0200
Source: glpi
Binary: glpi
Architecture: source all
Version: 0.78.5-1
Distribution: unstable
Urgency: low
Maintainer: Pierre Chifflier pol...@debian.org
Changed-By: Pierre Chifflier pol...@debian.org
Description: 
 glpi   - IT and Asset management software
Closes: 627663 627668
Changes: 
 glpi (0.78.5-1) unstable; urgency=low
 .
   * Imported Upstream version 0.78.5 (Closes: #627663, #627668)
   * Bump Standards Version to 3.9.2
Checksums-Sha1: 
 6953db573fd16310a3c74106282d09e8dedd39ad 960 glpi_0.78.5-1.dsc
 364ed31c75fde4ea2c2bbe653076c373fe832cfb 3725784 glpi_0.78.5.orig.tar.gz
 0908bc6d432d2645275d05855018546837eb4f8c 15195 glpi_0.78.5-1.debian.tar.gz
 a764d08a0003950d65c6c2db51537b1d49749ecb 3724948 glpi_0.78.5-1_all.deb
Checksums-Sha256: 
 af2d4031d4e8f331c4e8b47511cd5836b8ee313930c38c16fadf1e4e0a836fe5 960 
glpi_0.78.5-1.dsc
 393e0112462697fedb1dc8efb04f1e64fd068286edbb36c96cdaea7f54eaa7d2 3725784 
glpi_0.78.5.orig.tar.gz
 0e004c9f6234c4f7b3b65ee7da918d727ce17557a6c9bff810876f6b83234040 15195 
glpi_0.78.5-1.debian.tar.gz
 ff556edf8883536b290180aa42a2a49b2a42b76160994f4554f329e48ca5368a 3724948 
glpi_0.78.5-1_all.deb
Files: 
 207f575d1495d0137a64fc04522d07e6 960 web optional glpi_0.78.5-1.dsc
 0af73dc3cf241d08bd982a80b8d16438 3725784 web optional glpi_0.78.5.orig.tar.gz
 21634434ff1a25cac7c3cb09bcf0fd34 15195 web optional glpi_0.78.5-1.debian.tar.gz
 aea7743f9e98c1ea3c9923ce10865a68 3724948 web optional glpi_0.78.5-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3atFoACgkQtwVrWo1fQMsKXwCeOWxo/ugGTWHZIqNuz3UqsZkl
efIAn2Ji4arF9jKlnxEWTHPYEgEARzS9
=6qzX
-END PGP SIGNATURE-


Accepted:
glpi_0.78.5-1.debian.tar.gz
  to main/g/glpi/glpi_0.78.5-1.debian.tar.gz
glpi_0.78.5-1.dsc
  to main/g/glpi/glpi_0.78.5-1.dsc
glpi_0.78.5-1_all.deb
  to main/g/glpi/glpi_0.78.5-1_all.deb
glpi_0.78.5.orig.tar.gz
  to main/g/glpi/glpi_0.78.5.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qoara-0003s9...@franck.debian.org



Accepted chromium-browser 11.0.696.68~r84545-3 (source all amd64)

2011-05-23 Thread Giuseppe Iuculano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 08:57:21 +0200
Source: chromium-browser
Binary: chromium-browser chromium-browser-dbg chromium-browser-l10n 
chromium-browser-inspector chromium chromium-dbg chromium-l10n 
chromium-inspector
Architecture: source all amd64
Version: 11.0.696.68~r84545-3
Distribution: unstable
Urgency: low
Maintainer: Debian Chromium Maintainers 
pkg-chromium-ma...@lists.alioth.debian.org
Changed-By: Giuseppe Iuculano iucul...@debian.org
Description: 
 chromium   - Chromium browser
 chromium-browser - Chromium browser - transitional dummy package
 chromium-browser-dbg - chromium-browser debug symbols transitional dummy 
package
 chromium-browser-inspector - page inspector for the chromium-browser - 
transitional dummy pack
 chromium-browser-l10n - chromium-browser language packages - transitional 
dummy package
 chromium-dbg - chromium-browser debug symbols
 chromium-inspector - page inspector for the chromium browser
 chromium-l10n - chromium-browser language packages
Changes: 
 chromium-browser (11.0.696.68~r84545-3) unstable; urgency=low
 .
   * Use the experimental gold linker
Checksums-Sha1: 
 e09994abadcea441a721acc3d00c936b25dfc584 2451 
chromium-browser_11.0.696.68~r84545-3.dsc
 1556df6b794858eddb56a912ab81119cbeb5cea5 232537 
chromium-browser_11.0.696.68~r84545-3.debian.tar.gz
 fed3bcf04a73f9dfde31505e16095f91245f0994 171732 
chromium-browser_11.0.696.68~r84545-3_all.deb
 e53c3c45d1402f3655d89112a3cac656a9894c11 171092 
chromium-browser-dbg_11.0.696.68~r84545-3_all.deb
 1bdabe9f6576ad598c7a003a1396f40420dc644d 171238 
chromium-browser-l10n_11.0.696.68~r84545-3_all.deb
 d0e69da816b14c2359c011e11ebf025131ed80e3 171110 
chromium-browser-inspector_11.0.696.68~r84545-3_all.deb
 d24fee092b34ccab1c6cc5cc89e7286b6e625ad0 4939358 
chromium-l10n_11.0.696.68~r84545-3_all.deb
 02c99399e7b1524d65ab9a004033aa4fd24d1ade 823846 
chromium-inspector_11.0.696.68~r84545-3_all.deb
 bce191e37713c1afe733e37236a3e2e3bd56fa32 23855724 
chromium_11.0.696.68~r84545-3_amd64.deb
 f900b034be6987db25e67de7a8bcc9984d60fbc2 343294202 
chromium-dbg_11.0.696.68~r84545-3_amd64.deb
Checksums-Sha256: 
 7cb0f0334f8335e309d0b06975cd3216b580b4e437b0e3b51b7dc51bd5a97538 2451 
chromium-browser_11.0.696.68~r84545-3.dsc
 17f2d6a62d0ed2bcda2de98be0e5b580773b75c4c78a5331a579dba579bdc66f 232537 
chromium-browser_11.0.696.68~r84545-3.debian.tar.gz
 9d5aed7d01855b23065716f7517f6b4a60e81309c2e6aa07036e2a820577f44c 171732 
chromium-browser_11.0.696.68~r84545-3_all.deb
 3c8a627a3183dc98f6b0dec39a27214f47872190d2c8c5168fd6abbe0746134d 171092 
chromium-browser-dbg_11.0.696.68~r84545-3_all.deb
 3c9a566d70303be3ba104661530926fd728b05aa65cba3ab77b34ff68531354b 171238 
chromium-browser-l10n_11.0.696.68~r84545-3_all.deb
 c2de0f2484d8367064c4b0c7954fe328c939c641c25dd68f704138ac6b89a298 171110 
chromium-browser-inspector_11.0.696.68~r84545-3_all.deb
 847848b457775b050b9a7c2127de6aa607c50490e28f8903061849a6f77e9633 4939358 
chromium-l10n_11.0.696.68~r84545-3_all.deb
 42b4450196f6ebc5264189d76cebf2ad94f870b42772b7f067399fcb1a59c030 823846 
chromium-inspector_11.0.696.68~r84545-3_all.deb
 745c3493e303e09d2e1edee83790557c0c8848c6e80b110bbbcdc9f4d9d7a172 23855724 
chromium_11.0.696.68~r84545-3_amd64.deb
 b984e25b61c924838e0c8c4269f1c4accd01e5c2d1f6407327eec07a1ef5df50 343294202 
chromium-dbg_11.0.696.68~r84545-3_amd64.deb
Files: 
 8da5133f3a9620a6d509d75f55b7f117 2451 web optional 
chromium-browser_11.0.696.68~r84545-3.dsc
 04a4fc6e66912c7206480c320c71b7db 232537 web optional 
chromium-browser_11.0.696.68~r84545-3.debian.tar.gz
 3362ea57f8717d218dfa4ab099f6a8d3 171732 oldlibs optional 
chromium-browser_11.0.696.68~r84545-3_all.deb
 88583573261cce2d6b08d4db8761ae51 171092 oldlibs optional 
chromium-browser-dbg_11.0.696.68~r84545-3_all.deb
 667ff83f7ee4550f6a3afbb333b6393b 171238 oldlibs optional 
chromium-browser-l10n_11.0.696.68~r84545-3_all.deb
 8025a2c5e8682ca09daa1b88a97abf64 171110 oldlibs optional 
chromium-browser-inspector_11.0.696.68~r84545-3_all.deb
 96c4fa691cf7fee2adf323a16fcc96e4 4939358 web optional 
chromium-l10n_11.0.696.68~r84545-3_all.deb
 241ae9880f6c3166fa7d51b4449d06d3 823846 web optional 
chromium-inspector_11.0.696.68~r84545-3_all.deb
 01d6b21f29951f3e16ca4d19c561ec04 23855724 web optional 
chromium_11.0.696.68~r84545-3_amd64.deb
 03aba8626dd4460f14e4147bac192654 343294202 debug extra 
chromium-dbg_11.0.696.68~r84545-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3as9oACgkQNxpp46476arjpgCeLMS2st1c8QHPkvFzamElowt3
2S8AniFsLzjKVrg1RkPMo4FGulY+IHAF
=vrs/
-END PGP SIGNATURE-


Accepted:
chromium-browser-dbg_11.0.696.68~r84545-3_all.deb
  to main/c/chromium-browser/chromium-browser-dbg_11.0.696.68~r84545-3_all.deb
chromium-browser-inspector_11.0.696.68~r84545-3_all.deb
  to 
main/c/chromium-browser/chromium-browser-inspector_11.0.696.68~r84545-3_all.deb
chromium-browser-l10n_11.0.696.68~r84545-3_all.deb
  to 

Accepted icon 9.4.3-3 (source all i386)

2011-05-23 Thread Christian Hudon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 15:28:11 -0400
Source: icon
Binary: icont iconx iconc icon-ipl
Architecture: source all i386
Version: 9.4.3-3
Distribution: unstable
Urgency: low
Maintainer: Christian Hudon chr...@debian.org
Changed-By: Christian Hudon chr...@debian.org
Description: 
 icon-ipl   - Libraries for Icon, a high-level programming language
 iconc  - Compiler for Icon, a high-level programming language
 icont  - Interpreter for Icon, a high-level programming language
 iconx  - Executor for Icon, a high-level programming language
Closes: 543450
Changes: 
 icon (9.4.3-3) unstable; urgency=low
 .
   * Apply patch from Kees Cook so Icon is not built needlessly with an
 executable stack. (Closes: #543450)
Checksums-Sha1: 
 103580b1617df45f24bad6a90e79e4b65d17a122 956 icon_9.4.3-3.dsc
 95621cc2fdc370c70a15a1780d9e1ddc16771f0a 13293 icon_9.4.3-3.diff.gz
 4d348bf7c094e088981d2c16668bf9647877b047 1407542 icon-ipl_9.4.3-3_all.deb
 7aeb2283d65168fbabac8dfb8f42438f37e648e5 45976 icont_9.4.3-3_i386.deb
 c49667f7df4b911e5fab4610845cdfa6a7853da5 157198 iconx_9.4.3-3_i386.deb
 885f58a6d75a55023a3df2968a72ee42ee4c97ed 1364576 iconc_9.4.3-3_i386.deb
Checksums-Sha256: 
 2e9fd9ce150d0e30918e47c488de39a22102db81ba33b9798004c314242e678d 956 
icon_9.4.3-3.dsc
 bed8e4cb7bd85c446c0d3b102a7811baa40cd76272819db84e29ef5d4fe214d7 13293 
icon_9.4.3-3.diff.gz
 b9d17d8ca6bd81887ac651af7e4b4aa2ca3a5cded449afed534d2767f77b2adc 1407542 
icon-ipl_9.4.3-3_all.deb
 9f6c70317f90fc3008bbb897ca8ede4e1b3609cb574a4d26acd8db3d0af83b8c 45976 
icont_9.4.3-3_i386.deb
 44a40e785d87270484ce0915968dbf4d9d5cf3f9e309273398c44e189efcbc43 157198 
iconx_9.4.3-3_i386.deb
 b948c33c09bc15e25be153759e1b50a4a081c05ad740b97c496d67d12b34c2e2 1364576 
iconc_9.4.3-3_i386.deb
Files: 
 35c849a59ef9b6b675d247755579b3f6 956 devel optional icon_9.4.3-3.dsc
 242516a1d8350349ff3d6260df047a8e 13293 devel optional icon_9.4.3-3.diff.gz
 cedbb68c1076cd38d6994405c753f0d9 1407542 devel optional 
icon-ipl_9.4.3-3_all.deb
 e576660dbc9f2aa1f8a56ae88b1e1e25 45976 devel optional icont_9.4.3-3_i386.deb
 0cbc261b9449b2a4ab115b353708f614 157198 devel optional iconx_9.4.3-3_i386.deb
 4c19bc3bf09811ce58da4c4fe14c3cd1 1364576 devel optional iconc_9.4.3-3_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3athMACgkQmo2+8mg5b9JU4ACcCQnr/dZo8cJKokNAjmSARQpQ
xKUAn1SjVArE5iJ27Ew50V3OVwypGHY8
=tbhQ
-END PGP SIGNATURE-


Accepted:
icon-ipl_9.4.3-3_all.deb
  to main/i/icon/icon-ipl_9.4.3-3_all.deb
icon_9.4.3-3.diff.gz
  to main/i/icon/icon_9.4.3-3.diff.gz
icon_9.4.3-3.dsc
  to main/i/icon/icon_9.4.3-3.dsc
iconc_9.4.3-3_i386.deb
  to main/i/icon/iconc_9.4.3-3_i386.deb
icont_9.4.3-3_i386.deb
  to main/i/icon/icont_9.4.3-3_i386.deb
iconx_9.4.3-3_i386.deb
  to main/i/icon/iconx_9.4.3-3_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qobcs-0007qa...@franck.debian.org



Accepted libhtp 0.2.5-1 (source amd64)

2011-05-23 Thread Pierre Chifflier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 21:54:41 +0200
Source: libhtp
Binary: libhtp-dev libhtp1
Architecture: source amd64
Version: 0.2.5-1
Distribution: unstable
Urgency: low
Maintainer: Pierre Chifflier pol...@debian.org
Changed-By: Pierre Chifflier pol...@debian.org
Description: 
 libhtp-dev - HTTP normalizer and parser library (devel)
 libhtp1- HTTP normalizer and parser library
Closes: 621654
Changes: 
 libhtp (0.2.5-1) unstable; urgency=low
 .
   * Imported Upstream version 0.2.5
   * Bump Standards Version to 3.9.2
   * Do not ship .la files (Closes: #621654)
Checksums-Sha1: 
 f99f3e198f0a475c9dd37537e06e6c05e7f18f8b 1019 libhtp_0.2.5-1.dsc
 bf17a2f7cee9ff6a1b1bb6efa71e878592bf629e 357798 libhtp_0.2.5.orig.tar.gz
 0b6c2fde0278337eff4e34eaffe437625117922c 2074 libhtp_0.2.5-1.diff.gz
 7ad96350b2476405212076925c9b80235319038e 51784 libhtp-dev_0.2.5-1_amd64.deb
 60a328ee828424e19c9de030564731ed280a47e3 35380 libhtp1_0.2.5-1_amd64.deb
Checksums-Sha256: 
 a2f20e657f165f8c8e3af7da25c888b12f47a6282107416691e0524d579d2c5c 1019 
libhtp_0.2.5-1.dsc
 5f51c99bd67a1c8629ebee0453d5567fba16e0e2378234b440b81465ecd008a4 357798 
libhtp_0.2.5.orig.tar.gz
 f9d49102d22cd57b3208c74aca55df9c19a2cb74420fce99da916498ab18306d 2074 
libhtp_0.2.5-1.diff.gz
 709dfae55db1be909dfa9a9283a37296cd59366cfde68b70a1816bac34093a60 51784 
libhtp-dev_0.2.5-1_amd64.deb
 48a4ff5326713abe68d9fe31afc349ba0cf441bb800e210519839465789e8b05 35380 
libhtp1_0.2.5-1_amd64.deb
Files: 
 ef0895bd96e000f4d0fa0d03cec01c6d 1019 libs extra libhtp_0.2.5-1.dsc
 08d53883b6aac87da2e446fe6c82ba8d 357798 libs extra libhtp_0.2.5.orig.tar.gz
 e46c52553a1f6e61b7f0909653490321 2074 libs extra libhtp_0.2.5-1.diff.gz
 e6293b9b99fd0844dfe68b822afc0a27 51784 libdevel extra 
libhtp-dev_0.2.5-1_amd64.deb
 49734c5c38b79f7f5bf9fc4f6b4b4837 35380 libs extra libhtp1_0.2.5-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3au7IACgkQtwVrWo1fQMsZ6ACgsH6UrNsbloSboJJ/FcctIsNl
PWwAnjMWR2seDeHGu3vxEEw8BRsDgUzC
=6Riz
-END PGP SIGNATURE-


Accepted:
libhtp-dev_0.2.5-1_amd64.deb
  to main/libh/libhtp/libhtp-dev_0.2.5-1_amd64.deb
libhtp1_0.2.5-1_amd64.deb
  to main/libh/libhtp/libhtp1_0.2.5-1_amd64.deb
libhtp_0.2.5-1.diff.gz
  to main/libh/libhtp/libhtp_0.2.5-1.diff.gz
libhtp_0.2.5-1.dsc
  to main/libh/libhtp/libhtp_0.2.5-1.dsc
libhtp_0.2.5.orig.tar.gz
  to main/libh/libhtp/libhtp_0.2.5.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qocj4-eb...@franck.debian.org



Accepted lua5.1-policy 31 (source all)

2011-05-23 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 22:17:26 +0200
Source: lua5.1-policy
Binary: lua5.1-policy lua5.1-policy-dev
Architecture: source all
Version: 31
Distribution: unstable
Urgency: low
Maintainer: Enrico Tassi gareuselesi...@debian.org
Changed-By: Enrico Tassi gareuselesi...@debian.org
Description: 
 lua5.1-policy - Lua 5.1 Debian policy
 lua5.1-policy-dev - Lua 5.1 Debian policy - template and scripts
Closes: 627394
Changes: 
 lua5.1-policy (31) unstable; urgency=low
 .
   * Rework liker lines, kudos to Colin (Closes: #627394, LP: #770817)
Checksums-Sha1: 
 265b64f5f1ba319bd0984a36f43fc5f5465c06e3 952 lua5.1-policy_31.dsc
 607591f1924a3f3703de9936a7d93c388f951683 17658 lua5.1-policy_31.tar.gz
 a89f94b85468e87bcbcab7a81e620a03696fa4e3 19502 lua5.1-policy_31_all.deb
 d4b149d4a9ac85b3ad6a3ed346a88b9b80904e46 15010 lua5.1-policy-dev_31_all.deb
Checksums-Sha256: 
 ddacc71515ce335c7aa65cca75be5b0c45a4fc1c066b3ffa46af668ea839202a 952 
lua5.1-policy_31.dsc
 927409b4f4ce6bc48b08e51d375e97bbacb0cf6bc769824c8025bc7de6cb26df 17658 
lua5.1-policy_31.tar.gz
 2734c5aa025c317796fc86fc2f84ef683ea8224879721ec5d6d1d5033b65a3bd 19502 
lua5.1-policy_31_all.deb
 474446d67e23e367b1203587a6892558676ddd0d9cda7ee3fcd846aa41bb1f89 15010 
lua5.1-policy-dev_31_all.deb
Files: 
 b009a723784ddf962e6077c1d4a24c72 952 doc optional lua5.1-policy_31.dsc
 ad822c6a0b694d455d8d1f915be2c099 17658 doc optional lua5.1-policy_31.tar.gz
 c863e386a09e9b76e056d89f6f7da58e 19502 doc optional lua5.1-policy_31_all.deb
 6324ab7952cc918301be1ef13e3a5100 15010 devel optional 
lua5.1-policy-dev_31_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3awqgACgkQ7kkcPgEj8vJz7QCgpwzpOOOg1iIR/GiSG40Pvm11
SJcAniQxk5m4Aca5+FBwKbf7qNGCbhv9
=JJoX
-END PGP SIGNATURE-


Accepted:
lua5.1-policy-dev_31_all.deb
  to main/l/lua5.1-policy/lua5.1-policy-dev_31_all.deb
lua5.1-policy_31.dsc
  to main/l/lua5.1-policy/lua5.1-policy_31.dsc
lua5.1-policy_31.tar.gz
  to main/l/lua5.1-policy/lua5.1-policy_31.tar.gz
lua5.1-policy_31_all.deb
  to main/l/lua5.1-policy/lua5.1-policy_31_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qocpj-00015m...@franck.debian.org



Accepted w-scan 20110502-2 (source amd64)

2011-05-23 Thread Tobias Grimm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 23:12:03 +0200
Source: w-scan
Binary: w-scan
Architecture: source amd64
Version: 20110502-2
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team pkg-vdr-dvb-de...@lists.alioth.debian.org
Changed-By: Tobias Grimm et...@debian.org
Description: 
 w-scan - Channel scanning tool for DVB and ATSC channels
Closes: 627543
Changes: 
 w-scan (20110502-2) unstable; urgency=low
 .
   * Fixed short description (Closes: #627543)
Checksums-Sha1: 
 642f1b241d00a776c1890447b126c5b684f32ca4 1302 w-scan_20110502-2.dsc
 c7a6458bdc3ce7679417638b9f6905df1425dba2 3690 w-scan_20110502-2.debian.tar.gz
 805eb64f515faad29a68bdfec14d5f3a5c13a899 103100 w-scan_20110502-2_amd64.deb
Checksums-Sha256: 
 f20e70fbf52cef7b40687ab84b91e6d394174343f509c45c53570a6a8fb5d33f 1302 
w-scan_20110502-2.dsc
 69e1d20500c496912fcda5374e88637fcc1815f4abfddf7d8fde9f7210b14ff2 3690 
w-scan_20110502-2.debian.tar.gz
 74dac4f9c9bf05e63daa0db4132e86682a5d1bd15b4555ba86ac782e633aba40 103100 
w-scan_20110502-2_amd64.deb
Files: 
 5bd4462f35f4b9209093d2441493ce18 1302 video extra w-scan_20110502-2.dsc
 5f0d017e5753edca7de37e82df859ed9 3690 video extra 
w-scan_20110502-2.debian.tar.gz
 ec2df1572696df556af9ea065deda422 103100 video extra w-scan_20110502-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3a0CoACgkQ9xgNJq7apkKsUgCghLtEoLxjHSXidxML31VDpLzU
HJMAn1/R1pLIORaULUo5Zos2J8czSXzZ
=h07o
-END PGP SIGNATURE-


Accepted:
w-scan_20110502-2.debian.tar.gz
  to main/w/w-scan/w-scan_20110502-2.debian.tar.gz
w-scan_20110502-2.dsc
  to main/w/w-scan/w-scan_20110502-2.dsc
w-scan_20110502-2_amd64.deb
  to main/w/w-scan/w-scan_20110502-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qocpq-00069c...@franck.debian.org



Accepted xfce4-settings 4.8.2-1 (source amd64)

2011-05-23 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 23 May 2011 23:18:56 +0200
Source: xfce4-settings
Binary: xfce4-settings
Architecture: source amd64
Version: 4.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers pkg-xfce-de...@lists.alioth.debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description: 
 xfce4-settings - graphical application for managing Xfce settings
Changes: 
 xfce4-settings (4.8.2-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/patches:
 - 01_fix-sticky-slow-bounce-mouse-keys-expiration dropped, included
   upstream.
 - 02_fix-path_max-undefined-hurd as well.
Checksums-Sha1: 
 e347c2208d8f8ea58d6f56296ffb5a9f95548ddf 2217 xfce4-settings_4.8.2-1.dsc
 402afe308944a315c385d2b1ed567f997d016b61 668903 
xfce4-settings_4.8.2.orig.tar.bz2
 0d64c3619e81e35a24e6a5f9063f0a4c4d85675c 6520 
xfce4-settings_4.8.2-1.debian.tar.gz
 8ecea11c762b8a04d3fe1641a79b4fa4bbdc11dc 492790 
xfce4-settings_4.8.2-1_amd64.deb
Checksums-Sha256: 
 9b99b0d18360a1e49528a7783048f36d0ce6a4ee36bd51b18a190a6ba427083b 2217 
xfce4-settings_4.8.2-1.dsc
 3f79865a6a3817f3c868f2412cbf105e73e54810438f62035699ae5fd72c29d0 668903 
xfce4-settings_4.8.2.orig.tar.bz2
 9cbe94d3ff9d2ce8ae56a069a69fbe364d219d03038a8c23b1ec1a48e21582e5 6520 
xfce4-settings_4.8.2-1.debian.tar.gz
 4cf9c7d74e151575309720926706850fce9cf58bad2e32a09ff030a509ce94cd 492790 
xfce4-settings_4.8.2-1_amd64.deb
Files: 
 104e5bb406b2c911d82fc3f1db4cdd6c 2217 xfce optional xfce4-settings_4.8.2-1.dsc
 a45420fea20f29265ab6785cb1d07377 668903 xfce optional 
xfce4-settings_4.8.2.orig.tar.bz2
 76256b1ca180199e6172119e0bd173b0 6520 xfce optional 
xfce4-settings_4.8.2-1.debian.tar.gz
 394d357515badd6ebbda2c4fc4370323 492790 xfce optional 
xfce4-settings_4.8.2-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCgAGBQJN2tEZAAoJEDBVD3hx7wuo1voQANSdywHvGuyxUz7b6p2Dq3AQ
47/V0GnOGKN2scHlpbQpdNnLz0IV9YiVHiHtibbWB066hhlMc/6Rn9/giQ90Y+F+
mTu4zfnLxjl/04JNGRm6Bx1To3azULCBRtWU20OqKdowRxdJFoVoPdJHvlVCvjOg
Rq9dqGTGbMNA9wIksyQW1FTilOBPLYOmIjWmNBcwfZx82vlj/RJ538U64tOCpphF
zr7hIlEOkkcbmJ7IfBK1Xpj1LP6vLibwhPjXDyYcZe/jhoxH/q0UviFdNQaJAE1W
w0O2s7hFA9IR2rw8C/SJ0t4r8z2tdqaL+gwCX2UP58xs7WifFmcHdYE0y/SSpI2a
XEOYN9xG/RgeEKVYEtqQlg0ebi7NRDTAUSHo65DzEiX91qs4HjlNyORe/MjFW8I3
vpYTC4txmEiHj+cD6NgsuF9vu+pLFaDwPp/wMu/FNgilD8D3mTbNs8Xl/fnVHZMJ
pg5MsIuHu/twYGLounYdlD74a8OhAHCe1uXNaplCiwaAN6Hum+CTkA/0aJO2x0IB
cu2s1oJHdnC7szB8F9O9pY9z9kLjG0X4QfdFg1T2SLdcMc7u3fQ819KJ7ZP69+Bs
fos+smSRze/Dmuq0AWRZPBLHBeNtyqAyxM9ujVm81ZL7pqyWRLqCf1NmnEvNy1AK
wXGCLAfRCcZW3jv2xMiS
=LjFU
-END PGP SIGNATURE-


Accepted:
xfce4-settings_4.8.2-1.debian.tar.gz
  to main/x/xfce4-settings/xfce4-settings_4.8.2-1.debian.tar.gz
xfce4-settings_4.8.2-1.dsc
  to main/x/xfce4-settings/xfce4-settings_4.8.2-1.dsc
xfce4-settings_4.8.2-1_amd64.deb
  to main/x/xfce4-settings/xfce4-settings_4.8.2-1_amd64.deb
xfce4-settings_4.8.2.orig.tar.bz2
  to main/x/xfce4-settings/xfce4-settings_4.8.2.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qocq6-0006fj...@franck.debian.org



Accepted phpbb3 3.0.7-PL1-5 (source all)

2011-05-23 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 15:59:05 -0400
Source: phpbb3
Binary: phpbb3 phpbb3-l10n
Architecture: source all
Version: 3.0.7-PL1-5
Distribution: unstable
Urgency: low
Maintainer: Jeroen van Wolffelaar jer...@wolffelaar.nl
Changed-By: David Prévot taf...@debian.org
Description: 
 phpbb3 - full-featured, skinnable non-threaded web forum
 phpbb3-l10n - additional language files for phpBB
Closes: 595536 597373 599480 612441 612477 613060
Changes: 
 phpbb3 (3.0.7-PL1-5) unstable; urgency=low
 .
   [ David Prévot ]
   * Fix broken cache, thanks to Nicolas Schodet (actually closes: #599480).
   * Fix cross site scripting vulnerability (closes: #612477) [CVE-2011-0544].
   * Enforce run_sql with -h localhost when $dbc_dbserver is empty
 (closes: #613060).
   * Don't use local lib on preinst (closes: #595536).
   * Update to policy 3.9.2: no change needed.
   * Update my email address.
 .
   [ Jean-Marc Roth ]
   * Fix postgres failure when postgres server is remote (closes: #612441).
   * Don't be too rude on trying to uninstall when unsupported webserver is
 used (closes: #597373).
Checksums-Sha1: 
 d2082e4aa82227ed14fa8b20b70d672c66c77a2a 42559 phpbb3_3.0.7-PL1-5.dsc
 06a2e4e4d679a3eac3fa67456255b5db53e1b033 130399 
phpbb3_3.0.7-PL1-5.debian.tar.gz
 52026965da6a4302cf98cd7f7d96745d2ec4287e 2302372 phpbb3_3.0.7-PL1-5_all.deb
 dcc83480bb6303fcc4cf6fffddabc0dc40a74a68 8510504 
phpbb3-l10n_3.0.7-PL1-5_all.deb
Checksums-Sha256: 
 8c5befdbd068f7a8f97bee2ab26cb809c93612e6c8aa137d8d7c2b3a8cb4a0f0 42559 
phpbb3_3.0.7-PL1-5.dsc
 ff21bedaf6401ab63e961fce97c01134d94bca5365976bf1576b3b9142e64957 130399 
phpbb3_3.0.7-PL1-5.debian.tar.gz
 9ae0e5019405421c29d88abc740fd1cdf2644e8f0faad472d9661441bd3ecbaf 2302372 
phpbb3_3.0.7-PL1-5_all.deb
 ab5b80c45d9bf274697e81cfdd06109c30673c21be7ac077628014464d51d0d7 8510504 
phpbb3-l10n_3.0.7-PL1-5_all.deb
Files: 
 054b4f2a044b7fb51f8604e8915fb816 42559 web optional phpbb3_3.0.7-PL1-5.dsc
 2398e3dfdcc30d47d006544a7f1319f8 130399 web optional 
phpbb3_3.0.7-PL1-5.debian.tar.gz
 2b38a0060c5c3f7fc378125e68a0d612 2302372 web optional 
phpbb3_3.0.7-PL1-5_all.deb
 9c4771bb16591214d5c0609a260d5203 8510504 localization optional 
phpbb3-l10n_3.0.7-PL1-5_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2r/KAAoJELgqIXr9/gnyxUAP/06T9NItYLfFFSUE/VKm8//V
24tAkWu2g+11gac/8f8RJyCmnO+fEueisCzyP4CM+paAtnzzhAJRRkPt9OnLRlda
NJOVUs2Lq9eFVrqzEsWChQ4/MAZaGJl47VHFZH7RckmbGc28P3wa2+/T3319Fu9N
bX1fEBIvmfAefKO/81+mxoVAzJHU6OJMKH0JdslklXZoX0TomOr4NBDfTHp4zmpZ
iGTe9tsQFH3ArXVByOyU0R+VMyeOeJ/zs7h6RGEzTMIoYjIDoftWmWaXNqQaB2dt
HcL5VEvA6jKVGpZP7ANMsekmqrU0xVLm5vaxR7nu97OUiXk2I45+Og0S+zBlTLCF
ciiF+faDzzqiywljodgV487h+ylKQx3aLGng7KrjZlwEb1Uwg9CTYFLa3SmGQd7/
2fQE2WXoEP614h3TIKHpCQxcOsaIIxhw4wwruQeu4M22/vuJRJOswDjEPQdx6Nac
mewgBsBEc+SwJQUhdqLXfu3L57bBWETkJ69uk47O2t3yKws1RjP8brc/DqiHoVAj
uQksQdI/L85zjBxutONyU5mrMBlx9HL597zb/rlku2yV7LNIzEAmE67NI7VCHiCy
dtqwGgC9zjyUMGWECJdbz5dMV2BfYzlX9FNdrJ3Lk3zSQYiMf1Kn0MZGvrqG7dXi
bv2I27QJABI5uBQivk0I
=fBCc
-END PGP SIGNATURE-


Accepted:
phpbb3-l10n_3.0.7-PL1-5_all.deb
  to main/p/phpbb3/phpbb3-l10n_3.0.7-PL1-5_all.deb
phpbb3_3.0.7-PL1-5.debian.tar.gz
  to main/p/phpbb3/phpbb3_3.0.7-PL1-5.debian.tar.gz
phpbb3_3.0.7-PL1-5.dsc
  to main/p/phpbb3/phpbb3_3.0.7-PL1-5.dsc
phpbb3_3.0.7-PL1-5_all.deb
  to main/p/phpbb3/phpbb3_3.0.7-PL1-5_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qod1w-0002e7...@franck.debian.org



Accepted finish-install 2.31 (source all)

2011-05-23 Thread Jurij Smakov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 22:39:51 +0100
Source: finish-install
Binary: finish-install
Architecture: source all
Version: 2.31
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Jurij Smakov ju...@debian.org
Description: 
 finish-install - Finish the installation and reboot (udeb)
Changes: 
 finish-install (2.31) unstable; urgency=low
 .
   [ Jurij Smakov ]
   * Use /var/run/console-device to determine the console device.
 Starting with kernels 2.6.38 this is accurately determined
 and written to this file by rootskel. An added advantage is
 that it will work for kfreebsd as well, while the old way is
 broken for it (it does not have /proc/pid/fd directories).
Checksums-Sha1: 
 e7079a1974aa82dfe9a9d611920440f66ada1d4d 914 finish-install_2.31.dsc
 a8c0bacfe35a59b488e84c112844213fa205630d 55381 finish-install_2.31.tar.gz
 110acdc097f683cc017b17cf911cf059b94441a4 23452 finish-install_2.31_all.udeb
Checksums-Sha256: 
 e2360e2c60a4ebd4478637ecbdfaad17914c18ba94620333476d9738783ff946 914 
finish-install_2.31.dsc
 d65d5a86226560ac9c05237b97538cfda42adfd21339d85a7be872857e482951 55381 
finish-install_2.31.tar.gz
 23f2b9a9e41e8119550df8caf4afd516e9d55f35a7e952c472dc18ed45ab997b 23452 
finish-install_2.31_all.udeb
Files: 
 5be13e89566a6eba59c826e04847e6cd 914 debian-installer required 
finish-install_2.31.dsc
 f6640c9d7ce1cf0d62e6bdb00c26b1fb 55381 debian-installer required 
finish-install_2.31.tar.gz
 5b28856e5df474c09628ad97b97ccc4d 23452 debian-installer required 
finish-install_2.31_all.udeb
Package-Type: udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3a1ksACgkQjjectMmeA8wAqgCfXmhTv8vnWETFreeceB3g0uwI
9zUAnA19pLH5Dj8Iax+waBYcKDyLXxEU
=z8pZ
-END PGP SIGNATURE-


Accepted:
finish-install_2.31.dsc
  to main/f/finish-install/finish-install_2.31.dsc
finish-install_2.31.tar.gz
  to main/f/finish-install/finish-install_2.31.tar.gz
finish-install_2.31_all.udeb
  to main/f/finish-install/finish-install_2.31_all.udeb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qodch-0004i9...@franck.debian.org



Accepted libauthen-tacacsplus-perl 0.20-2 (source i386)

2011-05-23 Thread Michael Shuler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 15:44:52 -0500
Source: libauthen-tacacsplus-perl
Binary: libauthen-tacacsplus-perl
Architecture: source i386
Version: 0.20-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Michael Shuler mich...@pbandjelly.org
Description: 
 libauthen-tacacsplus-perl - Perl module for authentication using TACACS+ server
Changes: 
 libauthen-tacacsplus-perl (0.20-2) unstable; urgency=low
 .
   [ Ryan Niebur ]
   * Update jawnsy's email address
 .
   [ Michael Shuler ]
   * Switch to dpkg-source 3.0 (quilt) format
   * Update to Standards-Version: 3.9.2
   * Update to debhelper 8
   * Reformat debian/copyright (mainly whitespace)
Checksums-Sha1: 
 4b06d87be0c6e87ccd11f1e9a08d77339325dffa 2075 
libauthen-tacacsplus-perl_0.20-2.dsc
 70eea95728f19f398aa90196ef2cbf9d5d9d1961 2946 
libauthen-tacacsplus-perl_0.20-2.debian.tar.gz
 90ac311f4a359fb0376f180b3972204005124e6b 23182 
libauthen-tacacsplus-perl_0.20-2_i386.deb
Checksums-Sha256: 
 85e01d7ecdc23c67b6aad93c00b01dca93938128ba77c46e618343ec3640085c 2075 
libauthen-tacacsplus-perl_0.20-2.dsc
 f84eb71ae23f69118b2579cbbf22661c07e421ed8f61682143e6a257b9fac03c 2946 
libauthen-tacacsplus-perl_0.20-2.debian.tar.gz
 c5cfdd1d1d956e56439981b2fc1bf58c63d790521081a94f47fc73ef48708119 23182 
libauthen-tacacsplus-perl_0.20-2_i386.deb
Files: 
 53802d6e62320562904108f6bbea9d4e 2075 perl optional 
libauthen-tacacsplus-perl_0.20-2.dsc
 2c31f0df9d851995550ba5eb0ecb4ce0 2946 perl optional 
libauthen-tacacsplus-perl_0.20-2.debian.tar.gz
 8aa53ed0700dd7b0eee7b15281210070 23182 perl optional 
libauthen-tacacsplus-perl_0.20-2_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2tgbAAoJELs6aAGGSaoGqcIP/1hrdpkIJR7Qln6D6bF6IhFj
HKBLo7TTS+PqwiJExjBnvDwE+urMlr3qUE6aYHA8JUaiomBdAQB0WlD3MmogdvoL
nl4MIMqMyQVAV9oSfDjvOIdwLeWhzjnvg1saBiGz+xJXWgHHiBdxsxGu3cGJY9Jo
50foyDxkhbkezSQ6aA6SI3j1oY5O8XHez8TMGxI/cZ1RuEe4RsYgoBcWn5MWIwQl
z/XpKODYFTHJapG2nsZs7j6hIP0wLGEuaU5QBnd0RIuN1FYP+XkI3mrPZVrLncnb
pbOetWkhbx0J4wpAIGNMNUWwRGJw3Xb2sYfrbo4Y9cDZY0vGJuLdBlBuBNhg+qgs
YseF1pRQpjOacW8jLmUI90Fw6Ao4T6uX6OvCXRZ+KBqQWvod8mS4nGuFjWB8nFNw
15ppPEl9gietMhZEjnaW2SpJQzQ35XYngSYmB3kXFupQaEA4ifDrT66KSoqFXy4k
zbxwTK96pa+D4q6xPYAF9G/4CYimMHAJHFTk3Q72uPHNHI+t7EIfsi2ou/wxovtB
I6QzxID4UdPJUkdPAozpapYGY7ZO5wAq81yvpnI32joUtW3uOfJwzz4+4ySuvfOH
RLB1mgjhOca4zvzzrql5Z4Yzvs7RuErkuhu1umzTFvsha2yHjAiBXnQ7/G4u9SXT
RnocFcI8rKVIa7SIVOnA
=cYxM
-END PGP SIGNATURE-


Accepted:
libauthen-tacacsplus-perl_0.20-2.debian.tar.gz
  to 
main/liba/libauthen-tacacsplus-perl/libauthen-tacacsplus-perl_0.20-2.debian.tar.gz
libauthen-tacacsplus-perl_0.20-2.dsc
  to main/liba/libauthen-tacacsplus-perl/libauthen-tacacsplus-perl_0.20-2.dsc
libauthen-tacacsplus-perl_0.20-2_i386.deb
  to 
main/liba/libauthen-tacacsplus-perl/libauthen-tacacsplus-perl_0.20-2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qodcs-0004lb...@franck.debian.org



Accepted libdata-password-perl 1.07-3 (source all)

2011-05-23 Thread Michael Shuler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 23 May 2011 14:50:19 -0500
Source: libdata-password-perl
Binary: libdata-password-perl
Architecture: source all
Version: 1.07-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Michael Shuler mich...@pbandjelly.org
Description: 
 libdata-password-perl - Perl extension for assessing password quality
Changes: 
 libdata-password-perl (1.07-3) unstable; urgency=low
 .
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
 (source stanza).
 .
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 .
   [ Michael Shuler ]
   * Switch to dpkg-source 3.0 (quilt) format
   * Update to Standards-Version: 3.9.2
   * Update to debhelper 8
   * Update debian/copyright to DEP5 format
   * Add DEP3 header to usr-dict.patch
Checksums-Sha1: 
 01e788c9ab1a438b01e2a36f5b6b9f206e80cb69 1997 libdata-password-perl_1.07-3.dsc
 86c4fa7b320dd7e3f9538a090449090fef012d52 2587 
libdata-password-perl_1.07-3.debian.tar.gz
 59d74d6a0429a4a0ae604229ba88fab2dabcebee 9100 
libdata-password-perl_1.07-3_all.deb
Checksums-Sha256: 
 f9e7a7d0aedc9ee39b7a130b1e463801634e16a9b9b7d7a6f3c5f424a3deb1c2 1997 
libdata-password-perl_1.07-3.dsc
 fe56e1ffd8dec0c683696afd1ef0baa6139ada3a3f8255418126c61242009232 2587 
libdata-password-perl_1.07-3.debian.tar.gz
 92a14eddf48fb1cc82583a24bc0aa9d1894da33aabf02ecc396867864b203e17 9100 
libdata-password-perl_1.07-3_all.deb
Files: 
 e33a96389b4aec9bdf17b81c10f50223 1997 perl optional 
libdata-password-perl_1.07-3.dsc
 4c615744a7db540b564ac23cc6033702 2587 perl optional 
libdata-password-perl_1.07-3.debian.tar.gz
 117f483abbccaff4c13f3b540db6ed8d 9100 perl optional 
libdata-password-perl_1.07-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJN2tc4AAoJELs6aAGGSaoGyLcP/i3efawR/PndfBayN0bKJ5sE
tzbv60/F2D++Gvr8aGEF2ys2x+XWR3JRmCXgUAdFv509+u9sI2R5I/aGDMFZjaKT
dAuLTkyquXAiw79ZAtrN0HpBeUuYPy2warg/SaeIzfo4YvVZzE0sWyMeKOL6HnYz
SztiePB8PN+5nCRTSnaOsGJbEXdmFIPmhCZ/WYgH6gjCRysRNaa4GwIoA/KIAvAu
umv01fOc1xooZSpO7g/DwDNQKP55D5Y/BLENIYHDF62vxm0byCRUGxN41eqtMfRF
yxOzlgJv/fV66hnuj2Zl9w256Zo5CsbghX8O+4FFX0pxBFKXSGSvdyAcwfkymF4x
/8/KPRkWZx6G+nGPUpaYqqBesxktx5AJgao7lRO/+WGohWFgAv+f62s6h0h6D4nl
gvbQqVd0aIAYdU4OZ6M9qPMUQeKcLk6WSjF0THEdXsbbSgWMuuWxPX0HVznpn98c
K50gq+q3MUaOlKfT0udQDgwXRd8ncwBVb6ODOBt8u9KWPcLIuN8KJkS1CeOo/jKK
9cWVxChHp9KjMD0RzC5nE2Kpwtdw+dw5/cY0CkR4/OGWC66PFxUN0MRFLxQDP8E3
E8l7wTBNuNOrQ7esYNkXbErZh4k7BKs484OBI1cgx4wdUkSbqgDjwOvbPlXQ6tjZ
j96V+6c0A5+/rMpsYVt7
=7x8U
-END PGP SIGNATURE-


Accepted:
libdata-password-perl_1.07-3.debian.tar.gz
  to main/libd/libdata-password-perl/libdata-password-perl_1.07-3.debian.tar.gz
libdata-password-perl_1.07-3.dsc
  to main/libd/libdata-password-perl/libdata-password-perl_1.07-3.dsc
libdata-password-perl_1.07-3_all.deb
  to main/libd/libdata-password-perl/libdata-password-perl_1.07-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qodd0-0004nh...@franck.debian.org



Accepted cream 0.43-2 (source all)

2011-05-23 Thread Jeroen Schot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 29 Apr 2011 14:14:02 +0200
Source: cream
Binary: cream
Architecture: source all
Version: 0.43-2
Distribution: unstable
Urgency: low
Maintainer: Jeroen Schot sc...@a-eskwadraat.nl
Changed-By: Jeroen Schot sc...@a-eskwadraat.nl
Description: 
 cream  - VIM macros that make the VIM easier to use for beginners
Changes: 
 cream (0.43-2) unstable; urgency=low
 .
   * Move homepage from Description to Homepage field
   * Add Vcs-* info pointing to git repository at Alioth Collab Maint
   * Update debian/copyright to GPL-3+ and DEP-5-like format
   * Update source format to '3.0 (quilt)'
   * Switch debian/rules to dh format with 7.0.50 override targets
   * Register HTML documentation with doc-base
   * Provide alternative for editor command as required by policy
   * Add ${misc:Depends}, bump policy version to 3.9.2
   * Removed Conflicts: cream-doc, existed in 2006 and never part of a
 release
   * Added lintian override for depends on virtual package gvim
   * Handle ucf with the new dh_ucf program from debhelper 8.1.6
   * Removed Provides: editor; not an official virtual package
Checksums-Sha1: 
 9c477c5d24aa92c39f9a3201132f862aaae664c3 1140 cream_0.43-2.dsc
 b45cefc0ddd868c09582d5699dd9c438f7aef83a 9166 cream_0.43-2.debian.tar.gz
 4d1ac984e59056054db8e9d12b418af38baa38de 763640 cream_0.43-2_all.deb
Checksums-Sha256: 
 6e6e111e9380c267c382443e78a9c3ce923e771a783270ef822802b8706c0f9d 1140 
cream_0.43-2.dsc
 7c2afca9ae256aac03e3cc9b3c663cf7abd4f4ac91ecd1c602a7a4cd94fb6796 9166 
cream_0.43-2.debian.tar.gz
 95ec0ce40dfd3f81622d8f724b7c580d9a6b10dccc0f55baa232b62972ae096a 763640 
cream_0.43-2_all.deb
Files: 
 af0e92f493c598a68ffdfba310794366 1140 editors optional cream_0.43-2.dsc
 ec80a676d4ec25a21f2116f4367a4a87 9166 editors optional 
cream_0.43-2.debian.tar.gz
 d5e9651105f226046a9194d3d72ad981 763640 editors optional cream_0.43-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3a27MACgkQCV53xXnMZYZs4wCcDNmJSQjOa9T71TyREqZH+vaa
sYsAoJPR892NJ6z4kL+lbY3rcY3iHPvM
=VWls
-END PGP SIGNATURE-


Accepted:
cream_0.43-2.debian.tar.gz
  to main/c/cream/cream_0.43-2.debian.tar.gz
cream_0.43-2.dsc
  to main/c/cream/cream_0.43-2.dsc
cream_0.43-2_all.deb
  to main/c/cream/cream_0.43-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qodr3-00069t...@franck.debian.org



Accepted binutils 2.21.51.20110523-1 (source all amd64)

2011-05-23 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 23 May 2011 23:38:52 +0200
Source: binutils
Binary: binutils binutils-dev binutils-multiarch binutils-gold binutils-hppa64 
binutils-spu binutils-doc binutils-source
Architecture: source all amd64
Version: 2.21.51.20110523-1
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 binutils   - The GNU assembler, linker and binary utilities
 binutils-dev - The GNU binary utilities (BFD development files)
 binutils-doc - Documentation for the GNU assembler, linker and binary utilities
 binutils-gold - The (experimental) GNU gold linker utility
 binutils-hppa64 - The GNU assembler, linker and binary utilities targeted for 
hppa6
 binutils-multiarch - Binary utilities that support multi-arch targets
 binutils-source - The GNU assembler, linker and binary utilities (source)
 binutils-spu - The GNU assembler, linker and binary utilities targeted for 
spu-e
Changes: 
 binutils (2.21.51.20110523-1) unstable; urgency=low
 .
   * Snapshot, taken from the trunk 20110523.
Checksums-Sha1: 
 8b7c24e81becd8b494bacc1ab5419cc5aa075512 1490 binutils_2.21.51.20110523-1.dsc
 0e92defea67a589f549ba9e5801496deef7a1c8d 23366459 
binutils_2.21.51.20110523.orig.tar.gz
 58d61502a203a6e7b2e188f306b28193d9bcd4d9 67769 
binutils_2.21.51.20110523-1.diff.gz
 fe64912920a87413b057b24c86d6fb29d147be1d 571224 
binutils-doc_2.21.51.20110523-1_all.deb
 143a00666746377f4dbc070d3e82fbb546e4a26c 13558772 
binutils-source_2.21.51.20110523-1_all.deb
 664aa7ee9e08968d5c9f7b81d63daa3bcb47dee0 4755504 
binutils_2.21.51.20110523-1_amd64.deb
 c9ec5f342e3a7901e2eb3a92535d9768cd722c07 4076132 
binutils-dev_2.21.51.20110523-1_amd64.deb
 9ca6c5cf0a4a9c2a7092d910cb59b511dbd268ce 2166688 
binutils-multiarch_2.21.51.20110523-1_amd64.deb
 3b1ac5953ef688291a9ca24caf85c94e10d9a40f 1466 
binutils-gold_2.21.51.20110523-1_amd64.deb
Checksums-Sha256: 
 bb112cdc6649a4554e90107dc449e8abf072c96fcf5bb90a63f7a19228490e79 1490 
binutils_2.21.51.20110523-1.dsc
 53ff916c32ec981d923683627e68ceca345f037805d9de50da22113a60cd3592 23366459 
binutils_2.21.51.20110523.orig.tar.gz
 ba2e273fb196ebc7b258f78c1e27d52cef13355321700318b2413858a605791d 67769 
binutils_2.21.51.20110523-1.diff.gz
 73bf693cf1cd8c7ca23926887486c04f896847f4ed056956bc58f56f90b1e115 571224 
binutils-doc_2.21.51.20110523-1_all.deb
 d1e23f9a145735f29e22da9376e3f200aed28c684abdb605be678f267c41f2e4 13558772 
binutils-source_2.21.51.20110523-1_all.deb
 b0cf093a432acd2fe3f6d1507d5acd49133c5f91c60900fcd14b438aca213e77 4755504 
binutils_2.21.51.20110523-1_amd64.deb
 8adc7011f19f47b6af918002e21d2a7db4436c8b2c96fa595f88d48cf6e635be 4076132 
binutils-dev_2.21.51.20110523-1_amd64.deb
 33b03d8b4e44c4aed9a17dc7172b786f3a51dde2e6b4615576bdcf3b1930d3fb 2166688 
binutils-multiarch_2.21.51.20110523-1_amd64.deb
 deccba8dcf6760674a1a336cfbd7e9c73d8137fee4a1264549f13a8672a6e66e 1466 
binutils-gold_2.21.51.20110523-1_amd64.deb
Files: 
 f2b6d01c0e613a4c7925cd5bc6d7c4f8 1490 devel optional 
binutils_2.21.51.20110523-1.dsc
 593c4fed7c5381e34c19e833cd291aa4 23366459 devel optional 
binutils_2.21.51.20110523.orig.tar.gz
 bd9d307da4cb1c8cc6dbf413fd186336 67769 devel optional 
binutils_2.21.51.20110523-1.diff.gz
 050e6c66d1e06907ab69ce48da30911e 571224 doc optional 
binutils-doc_2.21.51.20110523-1_all.deb
 eada0a9fd64b776f9e0a5b43e40c0ddf 13558772 devel optional 
binutils-source_2.21.51.20110523-1_all.deb
 6514d9c757c14148d45643c03cf43015 4755504 devel optional 
binutils_2.21.51.20110523-1_amd64.deb
 6b8f697cc9f3c9d3537fe3d66ea95671 4076132 devel extra 
binutils-dev_2.21.51.20110523-1_amd64.deb
 77b781405443a0424f0e04b0e9478878 2166688 devel extra 
binutils-multiarch_2.21.51.20110523-1_amd64.deb
 e778fd0f45317879d44b09b4899bd06a 1466 devel extra 
binutils-gold_2.21.51.20110523-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk3a5c4ACgkQStlRaw+TLJzY8ACfffPOEwd7pA4DsbM3p4GXBy4c
ogoAn1OPKXERSdYyu7Qmv0z9rBaoW3q5
=xxAo
-END PGP SIGNATURE-


Accepted:
binutils-dev_2.21.51.20110523-1_amd64.deb
  to main/b/binutils/binutils-dev_2.21.51.20110523-1_amd64.deb
binutils-doc_2.21.51.20110523-1_all.deb
  to main/b/binutils/binutils-doc_2.21.51.20110523-1_all.deb
binutils-gold_2.21.51.20110523-1_amd64.deb
  to main/b/binutils/binutils-gold_2.21.51.20110523-1_amd64.deb
binutils-multiarch_2.21.51.20110523-1_amd64.deb
  to main/b/binutils/binutils-multiarch_2.21.51.20110523-1_amd64.deb
binutils-source_2.21.51.20110523-1_all.deb
  to main/b/binutils/binutils-source_2.21.51.20110523-1_all.deb
binutils_2.21.51.20110523-1.diff.gz
  to main/b/binutils/binutils_2.21.51.20110523-1.diff.gz
binutils_2.21.51.20110523-1.dsc
  to main/b/binutils/binutils_2.21.51.20110523-1.dsc
binutils_2.21.51.20110523-1_amd64.deb
  to main/b/binutils/binutils_2.21.51.20110523-1_amd64.deb
binutils_2.21.51.20110523.orig.tar.gz
  to main/b/binutils/binutils_2.21.51.20110523.orig.tar.gz

  1   2   >