socket activation interface

2013-06-01 Thread Helmut Grohne
On Sat, Jun 01, 2013 at 03:53:15AM +0200, Lennart Poettering wrote:
 [...] I remember even emailing the Upstart guys about
 that, but I never got any reply. This was a long long time before Upstart
 added socket activation.

This appears to be the discussion starting with this mail:
https://lists.ubuntu.com/archives/upstart-devel/2011-March/001436.html

I will now summarize that discussion and add some further remarks and
questions.

On Wed Mar 16 23:18:13 UTC 2011, Scott James Remnant wrote[1]:
 It's perfectly acceptable, just Upstart doesn't define it because the
 fds passing is more generic than just listening sockets like in
 systemd. Likewise since Upstart actually supports daemon processes,
 rather than telling them not to do that, LISTEN_PID isn't appropriate
 either.
 
 But because it's a superset, jobs that call binaries which are
 compatible with systemd instead of Upstart can just do:
 
   exec env LISTEN_FDS=$UPSTART_FDS LISTEN_PID=$$ ...

Lennart later pointed[2] out that the interface upstart proposed is not
a superset of the interface implemented in systemd (passing multiple
sockets).

Let me also briefly pick on Scott's quote.

In the responses I failed to get what other kinds of fds can be shipped
via UPSTART_FDS. Maybe this was about fifos? Maybe the specification of
what can be passed via LISTEN_FDS can be broadened on the systemd side?

When I look at existing daemons that bind sockets, the usual approach is
to first open the sockets, then drop privileges and then fork. Reasons
for this order:
 * fork as late as possible, to be able to report errors in early
   initialization and possibly to signal completion of startup.
 * bind sockets before dropping privileges.
So arguably the LISTEN_PID variable isn't as problematic as Scott
suggests. Are you aware of a service, that binds sockets after
daemonizing (and has no method to inhibit the daemonizing all together)?

I rather dislike the suggestion to fix the differentiation of interfaces
inside upstart job files. This just clutters them and makes upstart
appear inferior.

Clint Byrum also acknowledged[3] the need for a common API and he really
nailed it.

On Mon Mar 21 18:38:08 UTC 2011, Clint Byrum wrote[3]:
 I see this as a situation where we can share technology and establish a
 standard that works well with both our solutions. The worst thing we can
 do right now is disagree on how to ask daemon upstreams to patch their
 daemons. If upstart does this one way that is entirely incompatible w/
 systemd, and they both get real traction, then we will just create a
 giant inefficiency and gridlock where we have daemons who have gone the
 upstart way and others who have gone the systemd way, and neither
 trusting that the other is worth doing.

Observe that two years later, we have almost reached the point Clint
envisioned as a worst case.

Following the thread, one can observe that communication between Lennart
and Scott is not ideal. This is just sad, and I am not to blame either
of them. Maybe we can get both to a table now by mediating the
discussion?

To me the crux appears to be that upstart wants to support passing
sockets to services, that deamonize and bind those sockets after
daemonization. (In systemd speak that'd be Type=forking and in upstart
speak that'd be expect fork or expect daemon.) This is something not
supported by the interface proposed by systemd. But is it really worth
supporting?

Helmut

[1] https://lists.ubuntu.com/archives/upstart-devel/2011-March/001443.html
[2] https://lists.ubuntu.com/archives/upstart-devel/2011-March/001444.html
[3] https://lists.ubuntu.com/archives/upstart-devel/2011-March/001459.html


-- 
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/20130601090304.ga32...@alf.mars



Re: How to check for other init systems from sysvinit script

2013-06-01 Thread Michael Stapelberg
Hi Ondřej,

Ondřej Surý ond...@sury.org writes:
 Practical question: if I were to support systemd .service, upstart
 init job and/or OpenRC whatever together with standard sysvinit
 script, how do I check for currently used init system from sysvinit
 script to not start the service for a second time?

 Is there some material on wiki.d.o I can use (and if not can somebody
 prepare it)?
There is a debhelper patch pending[1] which results in doing the right
thing for your package(s) with regards to systemd support.

I will of course send a proper announcement email once the patch is
merged. Of course, a proper wiki page will be part of this.

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=709842

-- 
Best regards,
Michael


--
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/x61u8mjj4y@midna.lan



Re: Custom Reload command/signal in upstart

2013-06-01 Thread Helmut Grohne
On Fri, May 31, 2013 at 11:44:53PM +0200, Ond??ej Surý wrote:
 cat  php5-fpm.service  EOF
 [Unit]
 Description=The PHP FastCGI Process Manager
 After=syslog.target network.target

Small nitpick here: Specifying syslog.target in an After is completely
unnecessary and counterproductive. At the time of starting you can
simply expect that there is a syslog socket no matter whether the
service is started already. By specifying it here you slow down boot for
no reason. In fact recent versions of systemd no longer provide
syslog.target.

By the way: This is one of the main reasons for why automatically
converting .service files to init scripts is basically impossible.

Helmut


-- 
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/20130601091805.ga7...@alf.mars



Re: default MTA

2013-06-01 Thread Tollef Fog Heen
]] Russ Allbery 

 Basically, what we're looking for here is the equivalent of a check engine
 light (except, of course, with better user-visible diagnostics available).
 That's what the end user actually wants: something clear and visible
 indicating that something is wrong, which they can drill down and see the
 details and dismiss the error condition if they want, or have all the
 details available to consult someone who knows more about computers if
 they don't know what to do with it themselves.  Historically, root cron
 mail has been exactly that, and that's still a great way of handling it
 for servers, since that mail can be sent off somewhere centrally, analyzed
 and assigned to sysadmins, used to open internal trouble tickets, etc.

I don't think it's a good way at all, since far too often, cron mails
aren't actionable.  I'll get a mail from some automated process that
tried to run apt-get update and that failed (during the middle of the
night).  Since that process runs every hour, it'll have succeeded
afterwards, and there's nothing I can do about the mail.

I wish we had a better system where some, but not all errors would latch
and need acknowledgment, there would be correlation (between hosts and
between messages, so if the router's down, you get a message about data
centre A not being able to successfully complete $process, rather than a
zillion individual messages), there would be merging of identical
messages, so I get a message about $process being broken for the last
$time period (or having a failure rate above $threshold), rather than a
thousand mails because of some error.

Oh, and a pony.  Don't forget the pony.  Or an otter, I like otters.

-- 
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are


-- 
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/m238t2maxt@rahvafeir.err.no



Re: systemd .service file conversion

2013-06-01 Thread Marc Haber
On Fri, 31 May 2013 14:08:01 +0200, Josselin Mouette j...@debian.org
wrote:
Le jeudi 30 mai 2013 à 22:25 +0200, Marc Haber a écrit : 
 Do you actually run a kernel other than Linux
 
 Actually no, but it is a pleasure to see Debian move towards this
 freedom with every new release. 

I disagree with this claim. The wheezy release for kfreebsd is a joke,
and we should end it with jessie unless there are real users.

I find the way you're dismissing other people's work utterly
offensive. Please think before you write thing like that.

Greetings
Marc
-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834


--
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/e1uiixz-00075w...@swivel.zugschlus.de



Re: systemd .service file conversion

2013-06-01 Thread Marc Haber
On Fri, 31 May 2013 16:33:22 +0200, m...@linux.it (Marco d'Itri) wrote:
On May 31, Jeff Epler jep...@unpythonic.net wrote:
 The idea that somehow users of non-linux kernels don't matter or don't
 even exist as debian users is one of the most frustrating bits of this
 whole thread.
I'm sorry for the three kfreebsd users, but sometimes reality sucks.
Pretending that their needs are as much important as the needs of the 
99% of Debian users who use Linux does not make it true.

Before saying things like that, please file a GR removing the
universal from Debian's claim.

Greetings
Marc
-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834


--
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/e1uiiap-0007bh...@swivel.zugschlus.de



Re: systemd .service file conversion

2013-06-01 Thread Tollef Fog Heen
]] Roger Lynn 

 I prefer to be notified of changes to configuration files during upgrades so
 that I know which configurations need updating, rather than just hoping that
 the old config will work with the updated package and missing out on any new
 options silently introduced in a master configuration file which I can't
 even easily diff for updates.

There are ways to do that with .service files, and while it's been a
while since we (in the systemd team) discussed how to do it, it's quite
likely we'll go with an approach that uses ucf and does notify on
update-with-changes.

-- 
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are


-- 
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/m2y5aukuug@rahvafeir.err.no



Re: Custom Reload command/signal in upstart

2013-06-01 Thread Vincent Bernat
 ❦  1 juin 2013 00:44 CEST, Steve Langasek vor...@debian.org :

 start on (local-filesystems and net-device-up IFACE!=lo)
 stop on runlevel [016]

 FYI, it's strongly recommended to use 'start on runlevel [2345]' here as the
 start condition, for several reasons:

  - The 'filesystem' events are one-time events seen only at boot time; if
the admin drops the system to runlevel 1 and then returns to runlevel 2,
you probably want the service to restart.
  - The event name is 'local-filesystem', not 'local-filesystems', so this
job wouldn't auto-start at all.  (FWIW, the 'initctl check-config'
command from the upstart package would warn about this; but this tool is
only usable when upstart is the running init, so probably not ideal for
packagers not running upstart themselves.)
  - The 'local-filesystem' event may be emitted before any remote filesystems
have been mounted... which might include part or all of /usr and /var.
So since php5-fpm is itself not a service that is used for mounting
remote filesystems, it should not try to start until the filesystem is
completely up.

 The 'runlevel' event is later than both the 'local-filesystem' event and the
 'net-device-up' events, except in the case where your network interface is
 configured with network-manager instead of ifupdown.  So you shouldn't need
 to worry about this causing your service to start too early.

The upstart cookbook does not exactly match what you say (so, it may
need an update):

  http://upstart.ubuntu.com/cookbook/#normal-start

I had huge difficulties to get an upstart job that starts after static
network configuration has been done. I have things like this:

  start on (static-network-up or started networking)
  start on (local-filesystems and net-device-up IFACE!=lo)
  start on (filesystem and net-device-up IFACE=vlan481)

The first one is here to be compatible with older upstart (like the one
in Lucid).

It seems that now, we can do this, but the cookbook also says this is
not here yet:

  start on started network-services

I don't know how systemd behaves in this way (so this is not something
to hold against upstart), but there are so many daemons that need to be
started after the network has been configured that it should be easy to
do this. For example, most daemons binding to a specific address needs
to be started after the address has been configured.
-- 
printk(KERN_ERR msp3400: chip reset failed, penguin on i2c bus?\n);
2.2.16 /usr/src/linux/drivers/char/msp3400.c


pgp385oozc7ec.pgp
Description: PGP signature


Re: libnss consolidation

2013-06-01 Thread Arto Jantunen
Brian May br...@microcomaustralia.com.au writes:

 On 31 May 2013 20:19, Bastien ROUCARIES roucaries.bast...@gmail.com wrote:

 Gnutls is really crappy about suid
 see http://lists.debian.org/debian-devel/2010/03/msg00298.html


 2+ years later or 2 Debian releases later, I would have hoped these issues
 would be, somehow, magically, fixed by now :-(

 Basically makes libpam-ldap + TLS broken with certain programs.

 libnss-ldap is probably also broken, but seems you should be using
 libnss-ldapd these days which may (?) avoid these problems.

Yes, libpam-ldapd does avoid this problem. The ldap connections are
managed by a separate daemon (nslcd) that runs as a limited user account
and isn't suid. The pam (and nss) modules then contact this daemon via a
socket to run ldap queries. In addition to avoiding the gnutls bugs this
brings better latency and connection pooling (with libnss-ldap one needs
an ldap connection per nss using process, these pile up quite fast
indeed).

-- 
Arto Jantunen


-- 
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/87y5aup1q0@iki.fi



Re: Custom Reload command/signal in upstart

2013-06-01 Thread John Paul Adrian Glaubitz

On 06/01/2013 12:24 PM, Vincent Bernat wrote:

I don't know how systemd behaves in this way (so this is not something
to hold against upstart), but there are so many daemons that need to be
started after the network has been configured that it should be easy to
do this. For example, most daemons binding to a specific address needs
to be started after the address has been configured.


Which is exactly the very one design decision which is wrong in
upstart. Starting any service as soon as all its dependencies are
fulfilled, is putting the dependency chain upside down and doesn't
make any sense. There is no point to start a daemon unless you actually
need it.

You want services to start when you need them, meaning you always
keep the amount of running daemons minimal. systemd runs sshd when
someone tries to connect to it and before running sshd, it makes sure
all of its dependencies are running and starts them prior to starting
sshd if necessary.

Cheers,

Adrian

--
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913


--
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/51a9d283.2020...@physik.fu-berlin.de



Re: systemd .service file conversion

2013-06-01 Thread John Paul Adrian Glaubitz

On 06/01/2013 11:59 AM, Marc Haber wrote:

Before saying things like that, please file a GR removing the
universal from Debian's claim.


Calm down. Debian has been called universal long before the arrival
of the non-Linux kernels. And, in fact, Marco and Joss have a point
that if hardly anyone is using the non-Linux ports, not even people
like you who are strongly defending them, there is no point in putting
efforts into keeping them maintained.

I have had the experience that often the kfreebsd ports of my packages
and of other packages I NMU'd needed to be additionally taken
care of which means I would spend time and efforts which I could spend
on other, more important projects. What's the point in doing that work
when, in the end, hardly anyone is using it?

Cheers,

Adrian

--
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913


--
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/51a9d019.9030...@physik.fu-berlin.de



Re: Switching to mozilla ESR in stable-security

2013-06-01 Thread Vincent Lefevre
On 2013-05-31 08:52:37 +, Raphael Geissert wrote:
 Russ Allbery rra at debian.org writes:
 [...]
  This would *enable* users to install software from backports if it either
  didn't exist in stable at all or if they explicitly requested it from
  backports, but would not install such software by default.
 
 Packages which, by the way, are not supported by the security team.

Is it important? Doesn't upstream (here, Mozilla) do a good job
concerning security?

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
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/20130601112400.ga10...@xvii.vinc17.org



Re: Custom Reload command/signal in upstart

2013-06-01 Thread Zygmunt Krynicki



W dniu sob, cze 1, 2013 o 12:52 ,nadawca John Paul Adrian Glaubitz 
glaub...@physik.fu-berlin.de napisał:

On 06/01/2013 12:24 PM, Vincent Bernat wrote:
I don't know how systemd behaves in this way (so this is not 
something
to hold against upstart), but there are so many daemons that need to 
be
started after the network has been configured that it should be easy 
to
do this. For example, most daemons binding to a specific address 
needs

to be started after the address has been configured.


Which is exactly the very one design decision which is wrong in
upstart. Starting any service as soon as all its dependencies are
fulfilled, is putting the dependency chain upside down and doesn't
make any sense. There is no point to start a daemon unless you 
actually

need it.



I believe there was a counter example of using CUPS where unless you 
really start it, other machines won't discover it via avahi and you 
won't be able to print to a networked printer.


See: 
http://netsplit.com/2010/05/27/dependency-based-event-based-init-daemons-and-launchd/ 
(and look for Take another service, for example, the printing service: 
CUPS. At first glance, you might believe that it can be on-demand 
activated when something connects to its socket.)


Best regards
Zygmunt Krynicki


Re: Custom Reload command/signal in upstart

2013-06-01 Thread John Paul Adrian Glaubitz

On 06/01/2013 01:51 PM, Zygmunt Krynicki wrote:


I believe there was a counter example of using CUPS where unless you
really start it, other machines won't discover it via avahi and you
won't be able to print to a networked printer.


One exception does not mean that all daemons should be started like
that. If you need to have CUPS running in the background, idling,
then you can just let systemd start it anytime you want with the proper
configuration in its unit file.

Adrian

--
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913


--
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/51a9e31d.1000...@physik.fu-berlin.de



Re: Custom Reload command/signal in upstart

2013-06-01 Thread Uoti Urpala
Zygmunt Krynicki wrote:
 W dniu sob, cze 1, 2013 o 12:52 ,nadawca John Paul Adrian Glaubitz
 glaub...@physik.fu-berlin.de napisał:
  On 06/01/2013 12:24 PM, Vincent Bernat wrote: 
  I don't know how systemd behaves in this way (so this is not
  something to hold against upstart), but there are so many
  daemons that need to be started after the network has been
  configured that it should be easy to do this. For example,
  most daemons binding to a specific address needs to be
  started after the address has been configured.
  Which is exactly the very one design decision which is wrong in
  upstart. Starting any service as soon as all its dependencies are
  fulfilled, is putting the dependency chain upside down and doesn't
  make any sense. There is no point to start a daemon unless you
  actually need it.

Correct about the design, but not about the practical use. Even under
systemd, the default configuration is typically to make services always
start without waiting for on-demand loading.


 I believe there was a counter example of using CUPS where unless you
 really start it, other machines won't discover it via avahi and you
 won't be able to print to a networked printer.

That's not a counterexample to the substantial points though. It shows
that you shouldn't be too careless in setting up on-demand loading if
you want it, but that isn't really what was being discussed.



-- 
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/1370089583.3628.219.camel@glyph.nonexistent.invalid



Re: socket activation interface

2013-06-01 Thread Jérôme Bartand
Helmut Grohne helmut at subdivi.de writes:
 Following the thread, one can observe that communication between Lennart
 and Scott is not ideal. This is just sad, and I am not to blame either
 of them. Maybe we can get both to a table now by mediating the
 discussion?

Scott James Remnant does no longer work on Upstart.


-- 
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/loom.20130601t150114...@post.gmane.org



Re: Switching to mozilla ESR in stable-security

2013-06-01 Thread Benjamin Drung
Am Donnerstag, den 30.05.2013, 22:29 +0100 schrieb Wookey:
 +++ Josh Triplett [2013-05-29 11:50 -0700]:
  Moritz Muehlenhoff wrote:
   One problematic aspect are the various xul-ext-* packages currently
   packaged. It's very likely that some of them will break with ESR17
   and ESR24 in the future.
  
   However, there's not much we can do here. We can select a narrow (!)
   set of important addons (e.g. enigmail for Icedove) that we will
   keep in sync through stable-security, but that doesn't scale for
   the full scale of Mozilla extensions currently packaged.
  
   In the future the majority of packages should thus rather be installed
   through http://addons.mozilla.org instead of Debian packages.
  
  As a user of sid who also maintains various systems running stable, I
  rely on packages like xul-ext-adblock-plus to make it easier to install
  specific addons systemwide.  I find it much easier to install those via
  the Debian packaging system rather than a user-level mechanism that
  involves running Firefox as one or more target users (or more likely
  doing the equivalent of creating a xul-ext-* package for local use).  I
  realize that you can't maintain the full library of Firefox addons as
  packages, but I'm hoping that some of the most common and popular ones
  stick around and stay up to date, notably Adblock Plus, HTTPS
  Everywhere, and It's All Text.
 
 Absolutely, and I'd like to add lazarus, noscript, ghostery, user-agent
 switcher, and debian-buttons to that list of 'can't-live-without, worth
 maintaining as packages' add-ons. (And Tab Mix Plus is exceedingly
 handy too)
 
 Obviously if no-one wants to maintain them then I guess we'll have to
 get them the way everyone else does, but I certainly find real value
 in having them packaged, and am pleased every time I can get an add-on
 that way. Do we have helpers (as for CPAN and similar archives) to
 make creation and maintenance of such packages simple?

mozilla-devscript is the helper to create xul-ext packages. It helps
installing the .xpi file in the right place and creates the dependency
lists. We have a wiki page [1] with a usage explanation.

PS: It would be good to have this wiki page content converted to a man
page that we could ship with the mozilla-devscript package. Help doing
this would be appreciated.

[1] http://wiki.debian.org/mozilla-devscripts

 If it wasn't too hard I'd be happy to maintain xul-ext-lazarus, for example.

It is simple in most cases. You often just repack the .xpi file.

Do you mean Lazarus: Form Recovery with xul-ext-lazarus [my first
connection was the Lazarus IDE for Pascal]? This extension is labeled as
Freeware and therefore not DFSG-free. You have to convince upstream to
relicense the package before it can enter the main archive. I don't
think that it makes sense to packaging non-free xul extensions in the
Debian archive.

-- 
Benjamin Drung
Debian  Ubuntu Developer


-- 
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/1370094430.3020.14.camel@deep-thought



Re: systemd .service file conversion

2013-06-01 Thread Salvo Tomaselli

 You have the context wrong here. considering systemd as a default init
 is too vague.
Wikipedia says: A default, in computer science, refers to a setting or a value 
automatically assigned to a software application, computer program or device, 
outside of user intervention.

What's vague about that?

 Yes, there is integration work left. But that's really about the
 question is Debian ready to switch all user machines to systemd right
 now using the current packages?, and I think nobody would answer yes
 to that
Good so that was exactly my point: let's have this thread when systemd is a 
production ready alternative.

 (before also updating systemd to a much newer upstream version,
 etc).
They release twice a week or so. That is another sign of a software you 
shouldn't rely on too much

 He was confusing what were likely integration issues with
 what would be more fundamental issues with systemd itself (that would
 make it less desirable to do the integration work and switch at all),
 and I tried to explain the difference.
I didn't say it has fundamental architectural flaws that can't be addressed, I 
said it should be care of the people who want it as default to take care of 
the flaws and make it a viable alternative before talking about it.

Bye
-- 
Salvo Tomaselli

http://web.student.chalmers.se/~saltom/

signature.asc
Description: This is a digitally signed message part.


DM upload permission question

2013-06-01 Thread Mathieu Malaterre
Hi there,

  I am trying to give Sven Eckelmann dm upload permission on
exactimage. Here what I did

1. read [1]
2. write a text file:

$ cat malat-1.dak-commands
Archive: ftp.debian.org
Uploader: Sven Eckelmann s...@narfation.org

Action: dm
Fingerprint: 522D7163831C73A635D12FE5EC371482956781AF
Allow: exactimage

Then
$ gpg --clearsign malat-1.dak-commands
$ mv malat-1.dak-commands.asc malat-1.dak-commands
$ ftp ftp.upload.debian.org
ftp cd pub/UploadQueue
ftp put malat-1.dak-commands
local: malat-1.dak-commands remote: malat-1.dak-commands
200 PORT command successful. Consider using PASV.
150 Ok to send data.
226 Transfer complete.
1037 bytes sent in 0.00 secs (34920.5 kB/s)
ftp 421 Timeout.

Even if the file disapear from ftp.u.d.o I have not received any
confirmation. What did I miss ?

-

BTW, I cannot use dput-ng from an oldstable system (need python =
2.7). If I run dput-ng from my sid schroot all I can get is:

$ dcut dm --uid Sven Eckelmann s...@narfation.org --allow exactimage
Uploading commands file to ftp.upload.debian.org (incoming: /pub/UploadQueue/)
Picking DM Sven Eckelmann s...@narfation.org with fingerprint
522D7163831C73A635D12FE5EC371482956781AF
[Errno 2] No such file or directory

Thanks,

[1] https://lists.debian.org/debian-devel-announce/2012/09/msg8.html


-- 
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/ca+7wuswj5tkoj+xizqiyzfmgzdlhsxhpp-vcbevgbh-xkr8...@mail.gmail.com



Re: systemd .service file conversion

2013-06-01 Thread Marc Haber
On Sat, 01 Jun 2013 12:42:33 +0200, John Paul Adrian Glaubitz
glaub...@physik.fu-berlin.de wrote:
What's the point in doing that work
when, in the end, hardly anyone is using it?

Freedom. It is not free to take away freedom just because too few
people have chosen to exercise freedom.

Greetings
Marc
-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834


--
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/e1uin6m-et...@swivel.zugschlus.de



Re: systemd .service file conversion

2013-06-01 Thread John Paul Adrian Glaubitz

On 06/01/2013 04:48 PM, Marc Haber wrote:

On Sat, 01 Jun 2013 12:42:33 +0200, John Paul Adrian Glaubitz
glaub...@physik.fu-berlin.de wrote:

What's the point in doing that work
when, in the end, hardly anyone is using it?


Freedom. It is not free to take away freedom just because too few
people have chosen to exercise freedom.


So, because a very few people want to choose a rather unusual
setup - which again even you as a strong proponent of it aren't
using - all of the developers should do extra work instead of
working on things which they like? Isn't that limiting the freedom
of the developers as well?

No one is taking away your freedom if we make decisions on
certain default configurations. If, for example, we chose
systemd as the default init system, no one would keep you
from using your init system of choice by changing from the
default one after installation.

Similar decisions are made in other projects as well. The
Linux kernel dropped support for the original i386 CPU
recently and, code for support DECnet has been orphaned
as well, meaning it might be removed in the near future.

It's still free software, so you can do whatever you want.
It just sometimes makes sense to make pragmatic decisions
in order to guarantee well maintained code and efficient
release cycles. Again, it's not worth the effort when,
in the end, hardly anyone is using it.

Adrian

--
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913


--
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/51aa136a.2040...@physik.fu-berlin.de



Bug#710698: ITP: libsdl2-image -- Image loading library for SDL2

2013-06-01 Thread Felix Geyer
Package: wnpp
Severity: wishlist
Owner: Debian SDL packages maintainers 
pkg-sdl-maintain...@lists.alioth.debian.org

* Package name: libsdl2-image
  Version : 2.0.0~rc1
  Upstream Author : Sam Lantinga slou...@libsdl.org
* URL : http://www.libsdl.org/tmp/SDL_image/
* License : zlib/linpng
  Programming Lang: C
  Description : Image loading library for SDL2

This is a simple library to load images of various formats as SDL surfaces.
This library supports BMP, PNM (PPM/PGM/PBM), XPM, LBM, PCX, GIF, JPEG, PNG,
TGA, and TIFF formats.


-- 
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/20130601163608.12346.13636.reportbug@localhost6.localdomain6



Re: Switching to mozilla ESR in stable-security

2013-06-01 Thread Florian Weimer
* Thomas Goirand:

 Maybe the best way forward is to have backports activated by default
 (there's already a patch available for that, not sure if it has been
 applied to d-i yet). Then when installing a desktop (since backports
 are now fully part of Debian), we could provide browsers from there
 (maybe as a Recommends:, so it isn't forced into our users ?).

I'm not sure if moving packages between repositories makes that much
of a difference.  Either they work acceptably well, or they don't,
independently of the delivery mechanism.

From what I see, the main pain comes from packages which are complex,
without long-term support from upstream for the version we use, and
which are used as a reverse dependency by other packages.  Of those,
only the latter part seems to be something over which we have some
degree of control, that is, we could make sure that these packages are
more or less leaf packages.


-- 
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/87ip1xlon7@mid.deneb.enyo.de



Re: DM upload permission question

2013-06-01 Thread Arno Töll
Hi,

On 01.06.2013 16:56, Mathieu Malaterre wrote:
 Uploader: Sven Eckelmann s...@narfation.org

Uploader is you, not uploader as in person you want to grant upload
rights. That's also used for mail confirmation I believe. Having that
said, I'm no ftpmaster so I don't know what precisely went wrong (or if
it worked nonetheless, and dm.txt just wasn't updated yet).


 $ dcut dm --uid Sven Eckelmann s...@narfation.org --allow exactimage
 Uploading commands file to ftp.upload.debian.org (incoming: /pub/UploadQueue/)
 Picking DM Sven Eckelmann s...@narfation.org with fingerprint
 522D7163831C73A635D12FE5EC371482956781AF
 [Errno 2] No such file or directory

This is fixed in git, see #709831.


-- 
with kind regards,
Arno Töll
IRC: daemonkeeper on Freenode/OFTC
GnuPG Key-ID: 0x9D80F36D



signature.asc
Description: OpenPGP digital signature


Re: default MTA

2013-06-01 Thread Vincent Lefevre
On 2013-05-28 13:05:25 +0200, Josselin Mouette wrote:
 Le mardi 28 mai 2013 à 12:13 +0200, Adam Borowski a écrit : 
  Being able to send outgoing mail, and to handle local (such as
  SMTP rejects or notifications from system daemons) seems plenty
  useful to me.
 
 Most clients (apart maybe from mailx) can use an external SMTP
 server to send email.

Is there a central configuration (when the SMTP connection is done
by the clients)?

 And on desktop systems, nobody reads local email.

I do (possibly remotely after synchronization).

 We might want to think of a better notification system, but email is
 definitely not fit for that anymore.

Email should still be available. Otherwise make sure that
notification is available remotely...

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
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/20130601185246.gb12...@xvii.vinc17.org



Re: default MTA

2013-06-01 Thread Chris Knadle
On Friday, May 31, 2013 07:15:36, Marc Haber wrote:
 On Thu, 30 May 2013 19:51:04 -0400, Chris Knadle
 
 chris.kna...@coredump.us wrote:
 For Exim, the one thing I would want to change would be to ship a
 configuration that by default created an SSL certificate and enabled
 MAIN_TLS_ENABLE to enable TLS SMTP transfers.
 
 For e-mail coming in from other clients, with the local exim acting as
 a server?

Interesting possibility, but no that's not what I had in mind.

 Certificates are usually only used in E-Mail when a server
 authenticates itself to a client before the client sends its
 authentication data.

Yes, you're right.  After I had pointed out the existence of Section 2.2 in 
/usr/share/doc/exim4-base/README.Debian.gz I re-read it, and it points out 
that the SSL certificates are only required for TLS when Exim is acting as a 
server, and are _not_ necessary when Exim is passing along email as a client 
to another MTA.

 SMTP with client certificates is possible, but I
 have only seen this two times in 15 years of running E-Mail servers.

Yes I'd expect this to be rare, and I can't recall using them for SMTP.

  [The Postfix package in Debian does this.]  There's documentation and
   help for doing this for Exim in/usr/share/doc/exim4-base/README.Debian.gz
   in Section 2.2 though, and so I suspect there's a _reason_ why this isn't
   the default.
 
 Noone has yet written code to do that, and volunteered to document and
 support it.
 
 Personally, I think that before we improve Exim's packaging in Debian
 to be an SMTP server, we should first make it easiert to use Exim as a
 client with a smart host, thus debconfing the username/password and
 authentication scheme. Noone has volunteered to write that code,
 either.

I can understand why one would want this, but I can also understand why it 
hasn't been done.  Without first setting up TLS, this would involve passing a 
username/password over the 'net in the clear, which is something I try hard to 
never ever have happen.  This is especially something you don't want to do if 
it's your own personal email login, which is a likely use case for this 
proposed debconf code.  :-/



I'll list the steps _I_ take for setting up an Exim4 client (now that I've 
finally formally documented them for myself).  This enables TLS, sets 
primary_hostname to set the full FQDN for the HELO greeting sent, and sends 
email to a smarthost with destination port 587 via SMTP AUTH.


   In this example, the FQDN of the local machine is orac.example.com
   and the smarthost machine is smtp.example.com

   Create new file /etc/exim4/exim4.conf.localmacros containing:

   MAIN_TLS_ENABLE = true
   primary_hostname = orac.example.com
   
   Modify /etc/exim4/exim4.conf.template for the remote_smtp_smarthost
   to change the sending port to 587.  (In the U.S. there are a lot of
   ISPs that block outbound port 25 except for the ISP's mail servers):

   ...
   remote_smtp_smarthost:
  debug_print = T: remote_smtp_smarthost for $local_part@$domain
  driver = smtp
port = 587# --- add this line
  ...

   Run '/etc/init.d/exim4 reload' to pull in the new configuration

   Modify /etc/exim4/passwd.client to add a smarthost:username:password
   triplet for sending email:

   smtp.example.com:Orac:SillyPassword

   On the mail server machine (i.e. smtp.example.com), make an MD5
   passowrd hash of the password used on the client machine via command:

   #mkpasswd -H md5 SillyPassword
   $1$fUJ2RJ3J$1JvM9dutQs3dbM8DXts1H1

   Then modify /etc/exim4/passwd on the server to add a
   username:hashed_passwd:passwd triplet for the client:

   Orac:$1$fUJ2RJ3J$1JvM9dutQs3dbM8DXts1H1:SillyPassword



As I mentioned previously, the reason I go through making a new 
username/password pair for each client is so that I don't risk a personal 
email account, and so that I can revoke any one machine's email login at the 
server in case of a client compromise of some kind.  [It's never happened, but 
I try to plan for it anyway.]

  This wiki page has a nice summary http://wiki.debian.org/DefaultMTA
 
 I think the negative point of Support community limited outside of
 Debian is untrue.  The exim-us...@exim.org mailing list is very active
 and responsive, and Exim has become the most popular MTA since sometime
 in 2008.
 
 Agreed, but exim's development speed has considerably slowed down
 since Philip Hazel retired. The exim community is still alive, but I'd
 say it's in limbo. Which is a real shame.

I know what you mean -- the community has slowed a bit, but I don't 
(personally) feel that it's gotten down to limbo, because there are people 
still supporting the code and making new features and improvements.

  -- Chris

--
Chris Knadle
chris.kna...@coredump.us
GPG Key: 4096R/0x1E759A726A9FDD74


signature.asc
Description: This is a digitally signed message part.


Re: Feedback on Debian 7.0

2013-06-01 Thread Russ Allbery
Russ Allbery r...@debian.org writes:
 Nikolas Kallis n...@nikolaskallis.com writes:

 Another thing I am pissed off about is the lack of a graphical
 text-editor being included in Debian 7.0. The last time I checked, my
 calendar said 2013, and as so, would not expect a text-editor not being
 included in a desktop-environment based operating system.

 I know there is the 'nano' command line based text-editor included in
 Debian 7.0, but I, along with 99.999% of the world uses their computer
 in a desktop environment, so a text-editor should be included.

 This is another one of those documentation problems, I think.  There are
 oodles and oodles and oodles of graphical text editors in Debian.  I bet
 there are over twenty different ones, at least.  At least one of them is
 included in the default GNOME environment (gedit) and the KDE environment
 (Kate), but there are tons of other ones, ranging from old-school ones
 like Emacs to much newer editors like Scribes.

 How did you try to find one?  It would help us to know where you looked so
 that we can figure out how to get this documented in the correct place.

Additional off-line discussion revealed that the system installation was
done off-line, so sources.list contained only deb lines for the first
CD-ROM plus commented-out lines for wheezy-updates and security.

It would probably be a good idea for the installer to add commented-out
sources.list lines for the main archive, even if the installation is done
off-line.  (Assuming that it doesn't, but Nikolas's experience seems to
indicate that it doesn't.)

-- 
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/87ehclfxzo@windlord.stanford.edu



Re: default MTA

2013-06-01 Thread Russ Allbery
Marc Haber mh+debian-de...@zugschlus.de writes:

 For e-mail coming in from other clients, with the local exim acting as
 a server?

 Certificates are usually only used in E-Mail when a server authenticates
 itself to a client before the client sends its authentication data. SMTP
 with client certificates is possible, but I have only seen this two
 times in 15 years of running E-Mail servers.

All mail servers I run are configured with TLS certificates because that's
how you encrypt SMTP traffic between servers.  (Self-signed certificates
are fine for that purpose since the point is wire encryption, not
authentication.)  I don't see any reason to send my email in the clear
over the network when there's a simple alternative that's widely
supported.  Among other reasons, any little thing we can do to make life
harder for governments who think they should be able to wiretap network
traffic without a warrant seems like a good idea to me.

I don't know how Exim works in this regard, but for Postfix:

# Enable opportunistic TLS.
smtp_tls_loglevel   = 1
smtp_tls_security_level = may

# Present a server certificate to clients.
smtpd_tls_loglevel  = 1
smtpd_tls_received_header   = yes
smtpd_tls_security_level= may
smtpd_tls_cert_file = /etc/ssl/certs/hostname.pem
smtpd_tls_key_file  = /etc/ssl/private/hostname.key

will enable opportunistic TLS both sending and receiving without
interfering with one's ability to talk to mail servers that aren't willing
or configured to do TLS.

-- 
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/8738t1fxqc@windlord.stanford.edu



Re: systemd .service file conversion

2013-06-01 Thread Uoti Urpala
Salvo Tomaselli wrote:
  You have the context wrong here. considering systemd as a default init
  is too vague.
 Wikipedia says: A default, in computer science, refers to a setting or a 
 value 
 automatically assigned to a software application, computer program or device, 
 outside of user intervention.
 
 What's vague about that?

It's the meaning of considering that was too vague, not the meaning of
default. Considering whether systemd is a suitable choice for default
init vs considering whether current Debian systemd packages are in a
state where they should be made the default, and so on.


  Yes, there is integration work left. But that's really about the
  question is Debian ready to switch all user machines to systemd right
  now using the current packages?, and I think nobody would answer yes
  to that
 Good so that was exactly my point: let's have this thread when systemd is a 
 production ready alternative.

Your error is that you mix up the status of systemd and the status of
systemd Debian integration. Systemd is a production ready system the
same way Apache is a production ready system. Systemd Debian integration
is not yet complete to that degree (not that it would be particularly
bad; people don't have to be insane to already use it on production
servers).


  He was confusing what were likely integration issues with
  what would be more fundamental issues with systemd itself (that would
  make it less desirable to do the integration work and switch at all),
  and I tried to explain the difference.
 I didn't say it has fundamental architectural flaws that can't be addressed, 
 I 
 said it should be care of the people who want it as default to take care of 
 the flaws and make it a viable alternative before talking about it.

Most likely the problem you encountered was no flaw of any kind in
upstream systemd. It could have been a flaw Debian systemd setup, or a
flaw in another package entirely that just happened to trigger under
systemd. The latter kind aren't even particularly the responsibility of
people working on systemd support, even if they do need to be fixed for
systemd Debian integration.

So, to sum it up: Upstream systemd is ready for production and suitable
to be chosen as the default Debian init. Current Debian systemd packages
are not ready to be made the default for all users; nobody is claiming
they would be. Encountering some shallow problems is expected as more
users test them, and this is pretty much unavoidable while integration
work is still going on. You mixed up these two things (you also talked
about use in Fedora, which obviously says nothing about Debian
packaging). It's also obvious your time figures were completely made up
(a few years to mature).



-- 
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/1370113345.3628.250.camel@glyph.nonexistent.invalid



Re: default MTA

2013-06-01 Thread Chris Knadle
On Saturday, June 01, 2013 05:34:22, Tollef Fog Heen wrote:
 ]] Russ Allbery
 
  Basically, what we're looking for here is the equivalent of a check
  engine light (except, of course, with better user-visible diagnostics
  available). That's what the end user actually wants: something clear and
  visible indicating that something is wrong, which they can drill down
  and see the details and dismiss the error condition if they want, or
  have all the details available to consult someone who knows more about
  computers if they don't know what to do with it themselves. 
  Historically, root cron mail has been exactly that, and that's still a
  great way of handling it for servers, since that mail can be sent off
  somewhere centrally, analyzed and assigned to sysadmins, used to open
  internal trouble tickets, etc.
 
 I don't think it's a good way at all, since far too often, cron mails
 aren't actionable. I'll get a mail from some automated process that
 tried to run apt-get update and that failed (during the middle of the
 night).  Since that process runs every hour, it'll have succeeded
 afterwards, and there's nothing I can do about the mail.
 
 I wish we had a better system where some, but not all errors would latch
 and need acknowledgment, there would be correlation (between hosts and
 between messages, so if the router's down, you get a message about data
 centre A not being able to successfully complete $process, rather than a
 zillion individual messages), there would be merging of identical
 messages, so I get a message about $process being broken for the last
 $time period (or having a failure rate above $threshold), rather than a
 thousand mails because of some error.

Ugh.  :-/  Yeah these are good points.  The thinking was to change 
notifications (a) for Desktop boxes only and (b) the messages received and 
needing acknowledgement being from the local machine only.  However -- if 
there are many repeat events of some error that all have to be separately 
acknowledged, I can easily see how that could be very annoying.

 Oh, and a pony.  Don't forget the pony.  Or an otter, I like otters.

Otters are pretty cute looking.  They remind me of gophers.

  -- Chris

--
Chris Knadle
chris.kna...@coredump.us
GPG Key: 4096R/0x1E759A726A9FDD74


signature.asc
Description: This is a digitally signed message part.


Re: systemd .service file conversion

2013-06-01 Thread Ondřej Surý


Ondřej Surý

On 1. 6. 2013, at 11:59, Marc Haber mh+debian-de...@zugschlus.de wrote:

 On Fri, 31 May 2013 16:33:22 +0200, m...@linux.it (Marco d'Itri) wrote:
 On May 31, Jeff Epler jep...@unpythonic.net wrote:
 The idea that somehow users of non-linux kernels don't matter or don't
 even exist as debian users is one of the most frustrating bits of this
 whole thread.
 I'm sorry for the three kfreebsd users, but sometimes reality sucks.
 Pretending that their needs are as much important as the needs of the 
 99% of Debian users who use Linux does not make it true.
 
 Before saying things like that, please file a GR removing the
 universal from Debian's claim.

Please do not troll. It's neither constructive nor helpful.

We have removed archs from release archs and moved them to ports and nobody 
claimed we are less universal. (And my strawman argument could be some like: if 
we don't support some-obscure-kernel then we are not universal...)

What the project needs to do is to define a set of the reasonable criteria for 
inclusion/exclusion of a release kernel.

O.

--
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/f0497922-b91a-4b8b-b7d8-54abd4881...@sury.org



Re: default MTA

2013-06-01 Thread Chris Knadle
On Wednesday, May 29, 2013 20:02:42, Russ Allbery wrote:
 Chris Knadle chris.kna...@coredump.us writes:
  On Wednesday, May 29, 2013 15:46:15, Russ Allbery wrote:
  That's exactly the point, and is why I would prefer not to write those
  notifications into a file that no one ever looks at.  (Which is why I
  don't find sending them to syslog much more appealing, since the
  average desktop user is never going to look there either.)
  
  Somehow this problem reminds me of the event log used on a popular
  operating system.  Most users don't read that log either.
 
 Yes, but what users *do* read is some sort of event log that throws an
 attention icon (or spawns a window) on login or on event that doesn't go
 away until the user looks through the messages.

Yes.

 I know we probably don't have something like this right now, but it's
 something that can be done, and would be much superior to email for a lot
 of users (including myself on a lot of systems).
 
 One could easily solve the persistent problem in a similar way if a
 history of such notifications were kept and could be retrieved by the user
 by manually launching the application.
 
 None of this seems particularly novel (we've written similar things at
 Stanford for managed desktop situations and deployed commercial products
 that do something similar, not to mention that it's how most anti-virus
 updators and now the OS patch updators work), which makes me wonder if
 someone is already working on (or has finished) a mechanism of corraling
 some desktop notifications into that sort of framework.

It at least has the potential to be a good solution, yes.

There are a number of notification packages in Debian that I'm having a look 
through.  At the moment I'm looking at notify-osd.

  https://wiki.ubuntu.com/NotifyOSD

  -- Chris

--
Chris Knadle
chris.kna...@coredump.us
GPG Key: 4096R/0x1E759A726A9FDD74


signature.asc
Description: This is a digitally signed message part.


Re: systemd .service file conversion

2013-06-01 Thread Ondřej Surý
On 1. 6. 2013, at 16:48, Marc Haber mh+debian-de...@zugschlus.de wrote:

 On Sat, 01 Jun 2013 12:42:33 +0200, John Paul Adrian Glaubitz
 glaub...@physik.fu-berlin.de wrote:
 What's the point in doing that work
 when, in the end, hardly anyone is using it?
 
 Freedom. It is not free to take away freedom just because too few
 people have chosen to exercise freedom.

And where is my freedom to ignore kfreebsd? It's a release arch, so bugs 
against kfreebsd are RC. (Not that I want to ignore them.)

Please stop this rherhorical excercise on degrees of freedom and let's focus on 
real work and real world.

O.

--
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/d74f3888-4816-4e07-9793-9b17cec42...@sury.org



Re: systemd .service file conversion

2013-06-01 Thread Wouter Verhelst
On 30-05-13 22:36, Uoti Urpala wrote:
 Russ Allbery wrote:
 Uoti Urpala uoti.urp...@pp1.inet.fi writes:
 Marc Haber wrote:
 And it is still completely inferior even to dpkg-conffile handling,
 which has huge wishes left open as well.

 False. The message you replied to already listed advantages over
 dpkg-conffile handling. This was also already discussed before:
 https://lists.debian.org/1336580040.28230.9.camel@glyph.nonexistent.invalid

 We've had this discussion a lot.  There is an ongoing technical
 disagreement of opinion about the tradeoffs.
 
 While there is room for reasonable disagreement about the relative
 benefits of different configuration setups, completely inferior even to
 dpkg-conffile handling is not part of any reasonable disagreement. That
 claim is simply false.

No. That claim is an expression of opinion. Marc believes that
dpkg-conffile handling is superior to having defaults in /usr/lib (or
thereabouts) and only overriding those from /etc. You disagree with him,
which is certainly your right. However, you are neither more nor less
correct than Marc; you are both correct. That's the problem about
opinions: they're not technical.

FWIW, I happen to agree with Marc. Having everything in /etc makes it
*much* clearer what the actual current configuration is; it also means
that if the defaults change on upgrade, your environment doesn't
suddenly start acting differently or inconsistently.

Both are reasons (though certainly not the only ones) why upgrading
Debian is feasible (and the rule rather than the exception), while
trying to upgrade a RedHat machine is only for the crazy.

-- 
This end should point toward the ground if you want to go to space.

If it starts pointing toward space you are having a bad problem and you
will not go to space today.

  -- http://xkcd.com/1133/


-- 
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/51aa4f05.4090...@debian.org



Re: systemd .service file conversion

2013-06-01 Thread Uoti Urpala
Marc Haber wrote:
 On Sat, 01 Jun 2013 12:42:33 +0200, John Paul Adrian Glaubitz
 glaub...@physik.fu-berlin.de wrote:
 What's the point in doing that work
 when, in the end, hardly anyone is using it?
 
 Freedom. It is not free to take away freedom just because too few
 people have chosen to exercise freedom.

Why would kFreeBSD particularly matter for freedom? As opposed to any
other random piece of software?

Debian regularly removes old buggy packages that few people use. Are you
saying that is wrong, and for the sake of freedom people should be given
the ability to keep installing them even if few actually want to? If
not, what makes kFreeBSD special so that it is more about real
freedom?

Do you claim that the existence of kFreeBSD is likely to somehow make
the world a better place for someone in the long run? I myself believe
that working on software that actually gets used is beneficial on
average, while I think the world would be a better place if kFreeBSD had
never been started at all - the negative effects on other Debian
development outweight any benefits.

Or is it about some ideal notion of freedom you have? I don't think
anything in common free software philosophy at least would imply that
kFreeBSD is important.



-- 
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/1370116640.3628.277.camel@glyph.nonexistent.invalid



Re: default MTA

2013-06-01 Thread Roger Lynn
On 31/05/13 07:50, Jean-Christophe Dubacq wrote:
 A utility to scan syslog and convey important information to the user
 would be much more useful than configuring all mailers in Debian to read
 root's local mail by default. I know how to redirect root's mail
 elsewhere, thank you for not making another mail account to check.

The mailers don't need to read root's mail, they just need to read the
user's own mail, which is something they should do anyway. The fact that
many apparently still don't is quite a startling omission. I remember being
surprised many years ago that Netscape and Mozilla apparently didn't support
reading local mail, which should be a basic function of any Unix MUA.

Roger


-- 
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/lk0q7a-69p@silverstone.rilynn.me.uk



Re: systemd .service file conversion

2013-06-01 Thread Stephan Seitz

On Sat, Jun 01, 2013 at 09:44:05PM +0200, Wouter Verhelst wrote:

FWIW, I happen to agree with Marc. Having everything in /etc makes it
*much* clearer what the actual current configuration is; it also means
that if the defaults change on upgrade, your environment doesn't
suddenly start acting differently or inconsistently.


Not only this, you see if this service can be configured via /etc by 
looking in /etc for fitting files. How should I know that I have to look 
for configuration files in some lib directory and know to which place 
I have to copy them in /etc?


Shade and sweet water!

Stephan

--
| Stephan Seitz  E-Mail: s...@fsing.rootsland.net |
| Public Keys: http://fsing.rootsland.net/~stse/keys.html |


smime.p7s
Description: S/MIME cryptographic signature


Re: GNU config (config.sub/guess) is now GPLv3 with additional permission

2013-06-01 Thread Florian Weimer
* Henrique de Moraes Holschuh:

 The above covers the vast majority of packages, as it is very rare for
 any build system to need config.sub or config.guess and _not_ use GNU
 autoconf.

The exception does not require that the configuration script generated
by Autoconf is actually used for anything (not even calling config.sub
or config.guess), so it trivially extends to any package regardless of
licensing:

As a special exception to the GNU General Public License, if you
distribute this file as part of a program that contains a
configuration script generated by Autoconf, you may include it under
the same distribution terms that you use for the rest of that
program.  This Exception is an additional permission under section 7
of the GNU General Public License, version 3 (GPLv3).


-- 
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/8738t1h5uc@mid.deneb.enyo.de



Re: systemd .service file conversion

2013-06-01 Thread Svante Signell
On Sat, 2013-06-01 at 22:57 +0300, Uoti Urpala wrote:
 Marc Haber wrote:
  On Sat, 01 Jun 2013 12:42:33 +0200, John Paul Adrian Glaubitz
  glaub...@physik.fu-berlin.de wrote:

 Why would kFreeBSD particularly matter for freedom? As opposed to any
 other random piece of software?
 
 Debian regularly removes old buggy packages that few people use. Are you
 saying that is wrong, and for the sake of freedom people should be given
 the ability to keep installing them even if few actually want to? If
 not, what makes kFreeBSD special so that it is more about real
 freedom?

Both kFreeBSD and Hurd have contributed to multiple upstreams suddenly
realizing they are creating buggy and non-portable software. This is a
very important issue wrt software quality, and should be counted as one
major reason to continue to support non-linux systems.

Additionally, Debian is about software freedom, not about lock-in of
customers as for commercial vendors. Debian is promoting software
freedom, if they stopped doing that then the whole idea of Debian would
be lost (and should be discontinued, letting RedHat, Ubuntu, et al take
over the whole (Linux) market). 

Plan9 and minix go away, you are only clutter ;)


-- 
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/1370122675.6337.14.camel@PackardBell-PC



Re: systemd .service file conversion

2013-06-01 Thread Salvo Tomaselli
In data sabato 01 giugno 2013 22.02.25, Uoti Urpala ha scritto:

 So, to sum it up: Upstream systemd is ready for production and suitable
 to be chosen as the default Debian init.
Can you back up your claim somehow?

 You mixed up these two things (you also talked
 about use in Fedora, which obviously says nothing about Debian
 packaging). It's also obvious your time figures were completely made up
My figures come from the fact that any project with 2 new versions per week 
can't be called mature. Source: download page of systemd.

You don't have any figures.

 (a few years to mature).
In that point I was expressing a personal opinion, the full quote being: I 
like the approach it has, and in a few years I believe it has potential, that 
was not a calculated figure.


-- 
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/1891912.vhzPeMDqoA@hal9000



Re: systemd .service file conversion

2013-06-01 Thread Uoti Urpala
Wouter Verhelst wrote:
 On 30-05-13 22:36, Uoti Urpala wrote:
  While there is room for reasonable disagreement about the relative
  benefits of different configuration setups, completely inferior even to
  dpkg-conffile handling is not part of any reasonable disagreement. That
  claim is simply false.
 
 No. That claim is an expression of opinion.

Calling something an opinion does not make it valid. It may be
someone's opinion that 1+1=3, but that's simply false whether it's an
opinion or not.


  Marc believes that
 dpkg-conffile handling is superior to having defaults in /usr/lib (or
 thereabouts) and only overriding those from /etc.

To begin with, that's comparing apples to oranges. You're comparing the
behavior of the packaging system on upgrades to the behavior of the
application in use. The most plausible way I can construct something
reasonable-sounding from your text is the comparison application
default config in /etc and user modifies existing files to configure;
dpkg-conffile handling of those files on package upgrades vs
application default config in /usr/lib and user can add files to /etc
to override everything or just particular options; package upgrades
always simply update files in /usr/lib to new version with no other
special action for configuration. Now you could have different
reasonable opinions about the tradeoffs in these two cases, though
completely inferior would still be exaggerated hyperbole at best. But
this comparison does not match the original context of the discussion,
where application behavior by itself was criticized. Obviously the
application is not responsible for what Debian packaging does on
upgrades, and the package upgrades could easily behave differently.

If you want to post your opinion about a controversial topic, at least
you should do a better job of phrasing exactly what it is that you're
claiming. If people don't agree to begin with, you shouldn't expect them
to make all the same implicit assumptions you do. And here it seems more
like sloppy thinking where even you yourself hadn't thought through your
assumptions.

Also, these issues were already covered in the thread a year ago (and
your post doesn't look like you'd have understood the arguments there
but disagreed).



-- 
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/1370124763.3628.310.camel@glyph.nonexistent.invalid



Re: systemd .service file conversion

2013-06-01 Thread Uoti Urpala
Svante Signell wrote:
 On Sat, 2013-06-01 at 22:57 +0300, Uoti Urpala wrote:
  Debian regularly removes old buggy packages that few people use. Are you
  saying that is wrong, and for the sake of freedom people should be given
  the ability to keep installing them even if few actually want to? If
  not, what makes kFreeBSD special so that it is more about real
  freedom?
 
 Both kFreeBSD and Hurd have contributed to multiple upstreams suddenly
 realizing they are creating buggy and non-portable software. This is a
 very important issue wrt software quality, and should be counted as one
 major reason to continue to support non-linux systems.

I think this is the broken window fallacy. No doubt some related changes
involved improving upstream code, but then about any other changes could
have done the same. In general, finding things that could be improved is
very easy and does not justify significant effort unless it's for
specific things like bad security bugs.

And you didn't answer the question of what this has to do with *freedom*
at all.


 Additionally, Debian is about software freedom, not about lock-in of
 customers as for commercial vendors. Debian is promoting software
 freedom, if they stopped doing that then the whole idea of Debian would
 be lost (and should be discontinued, letting RedHat, Ubuntu, et al take
 over the whole (Linux) market). 

This again raises the same question. What does software freedom have to
do with kFreeBSD or Hurd? You imply that dropping Hurd would make things
less free. Why would it do that more significantly than dropping some
obsolete package nobody uses?



-- 
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/1370126988.3628.322.camel@glyph.nonexistent.invalid



Bug#710740: ITP: NoVoHT -- A lightweight persistent in memory hash table

2013-06-01 Thread Kevin Brandstatter
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

Package Name: novoht
Version: 0.4
Upstream Author: Kevin Brandstatter ke...@kbrandstatter.com
URL: https://github.com/kev40293/NoVoHT
License: Apache 2.0
Description: A lightweight persistent in memory hash table




signature.asc
Description: OpenPGP digital signature


Re: systemd .service file conversion

2013-06-01 Thread Miroslaw Baran
On Sun 02 Jun 2013 01:12:43 Uoti Urpala wrote:

 Also, these issues were already covered in the thread a year ago (and
 your post doesn't look like you'd have understood the arguments
 there but disagreed).

Your quality advocacy work for upstart is almost as good as Rob Weir's 
incessant efforts to promote LibreOffice. Keep up the good work.

Sincerely,
– Jubal

-- 
Some people in this department wouldn't recognize subtlety if it hit
them on the head.



--
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/5559084.I9Cz6BGbWS@metatron



Re: default MTA

2013-06-01 Thread Ben Hutchings
On Sat, 2013-06-01 at 15:06 -0400, Chris Knadle wrote:
 On Friday, May 31, 2013 07:15:36, Marc Haber wrote:
[...]
  SMTP with client certificates is possible, but I
  have only seen this two times in 15 years of running E-Mail servers.
 
 Yes I'd expect this to be rare, and I can't recall using them for SMTP.
[...]

I set up my smarthost to allow relaying from external servers that
present a CAcert-signed client certificate for a name under
decadent.org.uk.  Any machine outside the home LAN then needs such a
certificate installed before using this smarthost.

It wasn't that easy to set up, and the certificates need to be renewed
regularly (every 6 months for CAcert), but the credentials are now
clearly associated with a machine rather than a person and it
effectively validates that I'm using TLS for outgoing mail from my
laptop.  (But did I correctly enable validation of the smarthost's
server certificate?  Not sure.)

Ben.

-- 
Ben Hutchings
You can't have everything.  Where would you put it?


signature.asc
Description: This is a digitally signed message part


Re: Feedback on Debian 7.0

2013-06-01 Thread Daniel Hartwig
On 2 June 2013 03:10, Russ Allbery r...@debian.org wrote:
 It would probably be a good idea for the installer to add commented-out
 sources.list lines for the main archive, even if the installation is done
 off-line.  (Assuming that it doesn't, but Nikolas's experience seems to
 indicate that it doesn't.)


It doesn't, see http://bugs.debian.org/496068.  As no mirror was
chosen during the install, none is placed in sources.  A default can
of course be selected and commented out, provided that such default
agrees with the increase in load.


-- 
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/CAN3veReyOT5-9r8=8sihqv4muvsto9ezfyh1nsqfpc8fver...@mail.gmail.com



docbook-xsl: why only one version ?

2013-06-01 Thread Jerome BENOIT
Hello List,

I have to deal with docbook-xsl for one of my package.
I am not familiar with docbook-xsl stuff, so my question may sound naive.
It appears that the upstream stuff play with docbook-xsl version 1.75.2 ,
but not 1.76.1 : only the last one is available on Wheezy, so why only one
version is made available ? 

Thanks in advance,
Jerome


-- 
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/51aaca4b.3010...@rezozer.net



Accepted cinder 2013.1.1-2 (source all)

2013-06-01 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 23 May 2013 00:08:47 +0800
Source: cinder
Binary: python-cinder cinder-common cinder-api cinder-volume cinder-scheduler 
cinder-backup
Architecture: source all
Version: 2013.1.1-2
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 cinder-api - OpenStack block storage system - API server
 cinder-backup - OpenStack block storage system - Backup server
 cinder-common - OpenStack block storage system - common files
 cinder-scheduler - OpenStack block storage system - Scheduler server
 cinder-volume - OpenStack block storage system - Volume server
 python-cinder - OpenStack block storage system - Python libraries
Changes: 
 cinder (2013.1.1-2) unstable; urgency=low
 .
   * Added if [ -r /usr/share/dbconfig-common/dpkg/prerm ] in the prerm.
   * Ran wrap-and-sort to clean stuff.
   * Added creation and chown of /var/lib/cinder/{cache,volumes} after the
 removal of the -R flag when doing the chown in openstack-pkg-tools.
Checksums-Sha1: 
 a7bbc2b1ef61e355adc72b26b6c5299c6e291a79 2425 cinder_2013.1.1-2.dsc
 205407003afb060b640d4cd5d1ce688b2e56b9cd 55676 cinder_2013.1.1-2.debian.tar.gz
 a4546fa619bf5d136065c678a2f4127fed846b34 569308 
python-cinder_2013.1.1-2_all.deb
 25098e0689777fe013b1bc588e5ee2f61da62019 65950 cinder-common_2013.1.1-2_all.deb
 8ba10bc52d31c0d2b3eb3c1f8f410de8aa4a4b5e 55984 cinder-api_2013.1.1-2_all.deb
 a9931cf9cfea299f4b88f35badc54cf456d9aeb1 57036 cinder-volume_2013.1.1-2_all.deb
 6d10bb6f4102f525fe99d33886426aa34437c8cf 49610 
cinder-scheduler_2013.1.1-2_all.deb
 73ee614b2378dc763ab2355a7763ad90c6229e9e 49236 cinder-backup_2013.1.1-2_all.deb
Checksums-Sha256: 
 b407e544e04672c336d992494f8c36c7c6bc012228d5f648e76750c74f7104a3 2425 
cinder_2013.1.1-2.dsc
 e109888b4f0782f7ab4ee1df7ec84b327bcdfafb554ecd1cc441ab070a7cf38c 55676 
cinder_2013.1.1-2.debian.tar.gz
 dd16727aefac2f1de4cc0cce3ee439cd4a9833c1655460aa9e86393d66491619 569308 
python-cinder_2013.1.1-2_all.deb
 dba5179ff1561c08fc38057526f32aa284a0d993afcb79afa87d52f6ae8ca77c 65950 
cinder-common_2013.1.1-2_all.deb
 4a1380b97d01d3165849755dfbf24c464f64b3c32694c7d8124df328c1092c80 55984 
cinder-api_2013.1.1-2_all.deb
 68bef8a667bb1bc18f1b3f9c9199a35bfb31f663897367531236be0c3de833af 57036 
cinder-volume_2013.1.1-2_all.deb
 c62699604fcec461ed0e144cfeb36f3ec514b096d2b4471f1e29f1dac9c49770 49610 
cinder-scheduler_2013.1.1-2_all.deb
 0b268844235fe3757cec9c8e0d45649d305516f0da2b100d7a6224f5e6f1bc6e 49236 
cinder-backup_2013.1.1-2_all.deb
Files: 
 53355010ee075d285a1e83a028f2587f 2425 net extra cinder_2013.1.1-2.dsc
 d11633ca9e93f1e29254114655054b52 55676 net extra 
cinder_2013.1.1-2.debian.tar.gz
 f61d81490472c3efcecec1dcdd00f067 569308 python extra 
python-cinder_2013.1.1-2_all.deb
 2ce43b9e2457590f3fc8e987fe48ef97 65950 net extra 
cinder-common_2013.1.1-2_all.deb
 110577d23631b5d3e24d8c1deabfea4a 55984 net extra cinder-api_2013.1.1-2_all.deb
 e2e87d16a833bcd1950d56cd8bff5499 57036 net extra 
cinder-volume_2013.1.1-2_all.deb
 b600db5acf70376228b45be2af2465bb 49610 net extra 
cinder-scheduler_2013.1.1-2_all.deb
 5eef082efcb631e2c53c1c5bed773b40 49236 net extra 
cinder-backup_2013.1.1-2_all.deb

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

iEYEARECAAYFAlGpjT0ACgkQl4M9yZjvmkliFwCgnNLA5NQlCOdOQFf2vVPbs/WD
gQIAn1DWPwIfWyZsPKo893gcgO8/00fG
=aFBS
-END PGP SIGNATURE-


-- 
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/e1uieu2-0006ja...@franck.debian.org



Accepted mruby 0.0.0~20130531+git5c6d2818-1 (source amd64)

2013-06-01 Thread Nobuhiro Iwamatsu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 31 May 2013 17:33:04 +0900
Source: mruby
Binary: mruby libmruby-dev
Architecture: source amd64
Version: 0.0.0~20130531+git5c6d2818-1
Distribution: experimental
Urgency: low
Maintainer: Nobuhiro Iwamatsu iwama...@debian.org
Changed-By: Nobuhiro Iwamatsu iwama...@debian.org
Description: 
 libmruby-dev - lightweight implementation of the Ruby language (development 
file
 mruby  - lightweight implementation of the Ruby language
Changes: 
 mruby (0.0.0~20130531+git5c6d2818-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 0192ebecbbfdcd8b72556464d5414cbf29f20e7f 2014 
mruby_0.0.0~20130531+git5c6d2818-1.dsc
 7a2fb1eb3fefd6ab803fd2e7a8a43acff00e74a9 257316 
mruby_0.0.0~20130531+git5c6d2818.orig.tar.gz
 21ad9724d1c24e4d7458bdd2b492c2348180ba20 2880 
mruby_0.0.0~20130531+git5c6d2818-1.debian.tar.gz
 636cceb11d5a6c8a6d9ac1b40e95eb60f78bb5cc 527270 
mruby_0.0.0~20130531+git5c6d2818-1_amd64.deb
 db9912adf6a35d35fab7e0e93f3d4f86ed720e6e 466034 
libmruby-dev_0.0.0~20130531+git5c6d2818-1_amd64.deb
Checksums-Sha256: 
 3f1e44b3efdae9fb6ba94ff3ed5ff98f420d1d43cfd7302204e7e6f4f3ea10a3 2014 
mruby_0.0.0~20130531+git5c6d2818-1.dsc
 a0e00807d82e2f04d37f6f683c9a01578c3c6b6f005fedf864f944b7b85f8495 257316 
mruby_0.0.0~20130531+git5c6d2818.orig.tar.gz
 c2fa5e1b68c5963d9561ffa3f7597183ed1d8bbfacd5ba999237386d80f68dae 2880 
mruby_0.0.0~20130531+git5c6d2818-1.debian.tar.gz
 daca9a15441ef3bba4a3cc941d8273f86048cb7e2bb9d2392bbb7eb8e5609f66 527270 
mruby_0.0.0~20130531+git5c6d2818-1_amd64.deb
 a69548e5ae0970c20b53837c216a45200e581c6cf806fcf23c5f8065f5c533cf 466034 
libmruby-dev_0.0.0~20130531+git5c6d2818-1_amd64.deb
Files: 
 0f591c683e7e941769c03f11d7fdb8c3 2014 ruby extra 
mruby_0.0.0~20130531+git5c6d2818-1.dsc
 b299c33cf05e2a4085c29c92a3560e19 257316 ruby extra 
mruby_0.0.0~20130531+git5c6d2818.orig.tar.gz
 86d8d3ab44588df9b257fa0be22a06b6 2880 ruby extra 
mruby_0.0.0~20130531+git5c6d2818-1.debian.tar.gz
 7e64bbe189d66ca64022bc9cb88de700 527270 ruby extra 
mruby_0.0.0~20130531+git5c6d2818-1_amd64.deb
 eee5bfd1480cd75c1f0c166fbc139b3f 466034 libdevel extra 
libmruby-dev_0.0.0~20130531+git5c6d2818-1_amd64.deb

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

iQIcBAEBCAAGBQJRqZDsAAoJEDIkf7tArR+mTrAP/3GVMhHkEN3H2VCBIh/nhgHW
8NQSyd/f9eb7vvPoi5btlAEiGlmbtu5MZVCoBzEOH+jnXik0ILs3P7W5kNN6qeDF
EVinsCj6WYk1mQry8Yjilj2GvZYnbhgk1NkAtx3lv7p+zWz1nmhcUQfMWcwJxA0c
gzZq6n5x7j0t7VGQh2vBvWEZohrIItmV/IUoOW17b3gR7wqlNuG4Qlb5bxU73h62
f/OLGc21dO2ITSK31q+4naCibjF3tdGClpEYYP44qTiV7xwWOS462ePRZXtVdV/0
18yYWMOyp1zSPyVY5gaYBUEQYl/AY8vtstZkrYaJg3Z9kDpJlTgmRfgnzvv9WYGP
F6EAvvHrXYEM7xangjYh3vbA2r24rnjuN3CRnZSCiwNzFtK3SVd78QbPcaLRKhnq
wyxhNbYfA2etmcCHEX4yPm6T1S2mnuCa1btIaNOBn1+Y1grv+wRh7MSmRS7mdniL
5H4ksSbbcrlga4CbZX4AdOZWUxceYOpr4rqtl0tAh2LPHemBf5IGfUBjxCm8qJJG
cgpc+/dCDkUGxAQ+P+EzDyDpGEyInJotktYkIgFiPEyogihFpkyNW47UYnBlVU0h
HMMbMgPdtkWB8VR2Z6ABM7UJXO+UL0cwxyxSIwMKgguPwIo+C3K/tysNx78BV1wC
U0h7mwCnh8sYt25RpeAp
=UX18
-END PGP SIGNATURE-


-- 
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/e1uif8w-0001ye...@franck.debian.org



Accepted libcommons-jexl2-java 2.1.1-2 (source all)

2013-06-01 Thread Emmanuel Bourg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 00:16:35 +0200
Source: libcommons-jexl2-java
Binary: libcommons-jexl2-java libcommons-jexl2-java-doc
Architecture: source all
Version: 2.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Emmanuel Bourg ebo...@apache.org
Description: 
 libcommons-jexl2-java - Apache Commons JEXL - Java Expression Language
 libcommons-jexl2-java-doc - Documentation for Apache Commons JEXL
Changes: 
 libcommons-jexl2-java (2.1.1-2) unstable; urgency=low
 .
   * Upload to unstable
   * Added a patch fixing a test failure with JUnit 4.11
 due to the out of order execution.
   * Removed the build dependency on libclirr-maven-plugin-java
Checksums-Sha1: 
 32b0f5df3bf577b3a0dce367976adf4189a02ddc 2372 libcommons-jexl2-java_2.1.1-2.dsc
 34781b7544cfd1caa410a4a74722a508ccfc0ae9 3610 
libcommons-jexl2-java_2.1.1-2.debian.tar.gz
 709f6f4357416d9ba09ffe9d243774fccdb2567b 244648 
libcommons-jexl2-java_2.1.1-2_all.deb
 e3e5f3ea6bddfe32ec0682db2d99c54b12b5e643 748530 
libcommons-jexl2-java-doc_2.1.1-2_all.deb
Checksums-Sha256: 
 c8ba0d545dfd61d64cab2f1cb0d76580d86a5e8859f378c242de4c51a321b035 2372 
libcommons-jexl2-java_2.1.1-2.dsc
 c5dbd74cc57c8a5f41a08337f0351c5c50a36bd85d499f07a11e1cfb9c99fe34 3610 
libcommons-jexl2-java_2.1.1-2.debian.tar.gz
 285042da5b85cdb27b35f70c73846b98b8f399c36081880deb96b8603f1cb81a 244648 
libcommons-jexl2-java_2.1.1-2_all.deb
 6254c89897a831b43e5bfe3b33904482db1fc28d4e7c56ca5dca03b2ff00b9a9 748530 
libcommons-jexl2-java-doc_2.1.1-2_all.deb
Files: 
 4db0be154701a63c42d6294c79e90df3 2372 java optional 
libcommons-jexl2-java_2.1.1-2.dsc
 c04bd6c3ecd7d2de77a013526a273904 3610 java optional 
libcommons-jexl2-java_2.1.1-2.debian.tar.gz
 1207faf8c643c928daf8859599f85fd9 244648 java optional 
libcommons-jexl2-java_2.1.1-2_all.deb
 b50df58b104eb6974996795c5459c928 748530 doc optional 
libcommons-jexl2-java-doc_2.1.1-2_all.deb

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

iQIcBAEBCAAGBQJRqZMkAAoJEHjcaNsybYQ4XnkQAI+6wx++M0Q5emxlNAcklwnL
52hyc9yKs+vUKtb5Yii4ePk475cIU+PpfisXndX9WN33azOt6juM7h0mfNBJlh4r
v/k87GLfc6ZbXIKTEninJgAIbcTYTwTKrM+CUl+UxGUHd4l7fT6hs2g2KnAZ+xlG
2CRAFH6tKZ7Jo9ovMvqsvop0/WPDjkeUcYxIoVvCpcfUKkkb8u2rF1mAURlNzzHD
koRFoS0AkI1LWh+XgyCLIIkq0gwnOxALz9yDQYy9/OlnfaIVxpAY2IxRWY41cQeR
iVOLuCvzvCeMVf3twopN8msMjLe9bAlN4BmzbcFlcBtD9vOWutJ2i/iD/EMfWmSM
WpNkExnDC7U3GB8DuS0BdtC2iOw2V0AaU4up//gupETuKlcrEf9nhZWhRHgl8Bzr
eGtNftH60FBvykNmeMHqo4dgi/PE4EuWYV6XBZJL8OwJISgMNoGVHVyMxJW9WTjQ
QG66PADXnADhBkUJtrRvfaCPLTiD7Hpbgq5aPq8WazqOVPduRkLtmRWFkLpOjpWi
qzaKJYz5HiMpRNIX+GORZaJiwRzmnG7dwcPk+wRePav7jZ/6nBsRoeidRwn2S5i2
BlwRBtJIJZUlh+pt4O05Vagf7nDWlZzAz14vl5lUfpRwFAQRgoPHIMBk4hA9+HTK
8jBiIyK8tPWK9ht+Ps6G
=6wvU
-END PGP SIGNATURE-


-- 
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/e1uifmz-0005m0...@franck.debian.org



Accepted libmath-prime-util-perl 0.29-1 (source amd64)

2013-06-01 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 01 Jun 2013 08:04:20 +0200
Source: libmath-prime-util-perl
Binary: libmath-prime-util-perl
Architecture: source amd64
Version: 0.29-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libmath-prime-util-perl - Utilities related to prime numbers, including fast 
sieves and fac
Changes: 
 libmath-prime-util-perl (0.29-1) unstable; urgency=low
 .
   * Imported Upstream version 0.29
   * Drop 0001-ranged-moebius-was-depending-on-char-being-signed.-F.patch.
 Patch is applied upstream.
Checksums-Sha1: 
 da86a501115ffee31bf71a235a467eacf25da3ed 2252 
libmath-prime-util-perl_0.29-1.dsc
 8e75797a22174c0371f2a6fe885ad1d55b161830 256271 
libmath-prime-util-perl_0.29.orig.tar.gz
 44b4ccc465cf464f1423ccf844bbbcaa476f89fc 2940 
libmath-prime-util-perl_0.29-1.debian.tar.gz
 39662f81c632123b7e7db8e5fce526e3736dc3f0 256486 
libmath-prime-util-perl_0.29-1_amd64.deb
Checksums-Sha256: 
 990d86d47159953ddad4c0a1882ae783a35fcf14455f25ad133347f97a8abe9d 2252 
libmath-prime-util-perl_0.29-1.dsc
 6fd53462129733d64759f2043f34e9dbbddb63d742c905acb7623c89c1c667fb 256271 
libmath-prime-util-perl_0.29.orig.tar.gz
 292186d18fa41013658a65f92e8619367743fcdfb2beff8a95bea7ed7f17b83a 2940 
libmath-prime-util-perl_0.29-1.debian.tar.gz
 d9641fa5be1f883f48d49a48aaba7e3ea3fc62ba14ac3a6c40192489ece621e6 256486 
libmath-prime-util-perl_0.29-1_amd64.deb
Files: 
 2ebfd68e07cc78140d4d39b16506b4a5 2252 perl optional 
libmath-prime-util-perl_0.29-1.dsc
 6884e2aa0d50e7e8cdde718375023723 256271 perl optional 
libmath-prime-util-perl_0.29.orig.tar.gz
 a87877786a2bc45c95b06b867a41c83c 2940 perl optional 
libmath-prime-util-perl_0.29-1.debian.tar.gz
 20ce926e91fab5e23db55bca1a26ef5e 256486 perl optional 
libmath-prime-util-perl_0.29-1_amd64.deb

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

iQIcBAEBCgAGBQJRqZIVAAoJEHidbwV/2GP+0ZcP/RQ/3BurI5vvPjYKtJ1csnir
d+oWBECvCHlTCIjW2nKrFOnX4SzwtywMsCYFxdWqe/RR2r3KpSgLoHi552HokpUB
yfAyiYPm5qohkBNMUNlESDM7GTZMZUzGfOManjmj0+cXn2KAP4IjoiC7OMjlNzcD
9UWvKC2HBtI2xOX6EbXAr9JL50x5EDZXF2Nl+8caNwbBr5nqPblCtnPL/tkpJVIe
S1EVdpIgJJLjaTTBkNipDhzbqsFHbR8dqscF7Si4hQHTdtwi3rGk3Z5xMOzsgdJw
jLisLb820mKAvZRiSdGbwrSmaXbWMrqRuLZvG1jbWKiOS6oq7OJDaCh5dslp3MUJ
6VvM5NIv2nghoT1AV7ZrhXYpGSycMRMo6J9xVK06uo5LUTIc+hCSLEBbHxCeeAkV
hoh1xqeJIVMBQpBOQf1PmdBfplxhByT1pT/cd6UyplJUR9aVd0qpmzX6Q9O4TQMW
vFdMC4dKLJXxXEl51ACpSfDbA7vXVHEG1GW4q7oM+moNmW76Dksu8XzTD3XNcyAy
AS25s/yjshKhckyVdiOOkg00G44qkzsNAIj4e8fPRJZszp3x2Rbq3mEIgq0gc5us
k6GnaisQMcKoNfS9+IETS68rUUCoTtWhsr8vdwDHzqIgmYWw7n5FS6NgSSlo7A9p
6KKv5FwZEAI0DizliFjh
=2RzS
-END PGP SIGNATURE-


-- 
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/e1uifn5-0005oz...@franck.debian.org



Accepted psqlodbc 1:09.01.0200-3 (source amd64)

2013-06-01 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 31 May 2013 23:17:44 -0700
Source: psqlodbc
Binary: odbc-postgresql odbc-postgresql-dbg
Architecture: source amd64
Version: 1:09.01.0200-3
Distribution: unstable
Urgency: low
Maintainer: Christoph Berg m...@debian.org
Changed-By: Christoph Berg m...@debian.org
Description: 
 odbc-postgresql - ODBC driver for PostgreSQL
 odbc-postgresql-dbg - ODBC driver for PostgreSQL - debug symbols
Changes: 
 psqlodbc (1:09.01.0200-3) unstable; urgency=low
 .
   * Relax Breaks: libiodbc2 (= 3.52.7-2) so we don't break the fixed wheezy
 version.
Checksums-Sha1: 
 9c65c3a1b54acf9d2eec0f3497b40a0b89fad45f 2133 psqlodbc_09.01.0200-3.dsc
 ac9e662f334da22c59ee0a5e4d9b33843f86d68b 8218 
psqlodbc_09.01.0200-3.debian.tar.gz
 db7ea007d1799cce53806047b5a8f48c252cb709 549506 
odbc-postgresql_09.01.0200-3_amd64.deb
 c52d4da60e8b4d910e2194b36cdef4190bd73ca8 1115574 
odbc-postgresql-dbg_09.01.0200-3_amd64.deb
Checksums-Sha256: 
 34d7f1238e27bdbc394d0955ca7618c5754b9ecfb718e7513a9b5308a2a0cd2c 2133 
psqlodbc_09.01.0200-3.dsc
 d5341ae0e6b76226795ef10e258a17f77f65a2e0fb8fe679f10c726ed9c0f022 8218 
psqlodbc_09.01.0200-3.debian.tar.gz
 15b9771a9dea52d43cec8587d9c305327f756199038dacd785af38a3faca83fc 549506 
odbc-postgresql_09.01.0200-3_amd64.deb
 a31dafbaea843424d76b6f4f0b64bff6a1dccbe2ded4c7475d4fc200b6b1 1115574 
odbc-postgresql-dbg_09.01.0200-3_amd64.deb
Files: 
 ff0432439a8798e04b1a77b2a88f3152 2133 database optional 
psqlodbc_09.01.0200-3.dsc
 5e8f2d33e3175f2b1626326a3a9176a4 8218 database optional 
psqlodbc_09.01.0200-3.debian.tar.gz
 b160c23701b49588f2cbf6225f30a971 549506 database optional 
odbc-postgresql_09.01.0200-3_amd64.deb
 b2cae86be5e24057a52d7deb6faf2a83 1115574 debug extra 
odbc-postgresql-dbg_09.01.0200-3_amd64.deb

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

iQIcBAEBCAAGBQJRqZNoAAoJEExaa6sS0qeuutgQAIEHMVyXjaoEkQwKyuFu0Ao2
kqjyDVY7UiRWZF3Mpf5JFWF/muchHiYraAJNhwKbWOczpDXNWKZWiKTPdCPIi6wK
nUxnvxTJ9cIfpHsl3griTyWi/6gQqrvNkAS4qsKpDpG1dcGHZdO/KNevXv91gb0p
4NbDVSS+abkLEgX9msrEfCWQgFiH/dwldKODz9dhe9h15+V4/Z+PhVscQHZzosoV
/1jqphZFcOTw/9Wn9kWSkUiGMWyCrHRJp2TNdw6th3GXJ4iRh85a/FzAGl/qFeOs
lYwv7URod2pWnt4UVOv3gm6Q6dTddCX+tjzLs68JwLJWxeJTDgvCIE7EvnPeRKdw
DvadtpIiP+fS8ZR4PFNqYkxF/RbH3piHxvnE62PGTyJEmiLFgq4L54mHDdBVylVd
T+U6LZ0s0al8/PvG4dKHjh3nBTFIkZRi2BG+xev2FPkbD++zZ+YMgsWxHqDpR+hV
iMGECz9EjseP/1PYtvB8CIjHCwXXJP5wo1CosTFsx/Ln58mq9xq6fIgTDsaX8qor
xO6/X3Ipq0GH9i5UT0naXkAPGpU8MPyAXIAaH/pAQaFFuaSC+awGTYVeEZkjHrWA
ntQyiUh0z2hqvdUJpNVtpTTe48nzVC7sHHAQT+x2PesEvLdZA8/cYyNkCv3nPCny
canoPdv/+LEGPb0eCCfZ
=rUMa
-END PGP SIGNATURE-


-- 
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/e1uifnh-00068h...@franck.debian.org



Accepted testrepository 0.0.14-2 (source all)

2013-06-01 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 06:27:20 +
Source: testrepository
Binary: testrepository python-testrepository
Architecture: source all
Version: 0.0.14-2
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 python-testrepository - Database of test results - python library
 testrepository - Test result manager
Changes: 
 testrepository (0.0.14-2) unstable; urgency=low
 .
   * Added missing build-depends: python-setuptools.
   * Ran wrap-and-sort to clean debian/control.
   * Removed X-Python-Version: = 2.6 which now makes no sense.
Checksums-Sha1: 
 df58909b7da1d121e8c8f359a6a65de0c276cdde 1466 testrepository_0.0.14-2.dsc
 cf2c8bce9a5df96dc74c9ddc0d9c43b860d6311f 4088 
testrepository_0.0.14-2.debian.tar.gz
 b91a6f0b231d39cf0744549150e363a2ac437233 13260 testrepository_0.0.14-2_all.deb
 042274538173a7f67f4102c340b1c40f99a5116e 67652 
python-testrepository_0.0.14-2_all.deb
Checksums-Sha256: 
 d8bf830c7eafe865bdbaeae900dc05f703e4011a1af7695f475fdad7fe768981 1466 
testrepository_0.0.14-2.dsc
 72742b98f95a546591af2cfa335312032da8eba84a7e99b0a36220eeea33e333 4088 
testrepository_0.0.14-2.debian.tar.gz
 1d81260bafcf91621bfec65ce32a3c0674de10145e078bec44d1e89ef66e51a1 13260 
testrepository_0.0.14-2_all.deb
 3d7dcb2500035bc15dd7e7e60a72ad6e41351c309c211e8bc84f963972e29924 67652 
python-testrepository_0.0.14-2_all.deb
Files: 
 21c71f3f4f0e10151d4dddaf47ee0fe8 1466 python optional 
testrepository_0.0.14-2.dsc
 00892002925610a9c8b8ec9c0b4153d8 4088 python optional 
testrepository_0.0.14-2.debian.tar.gz
 94960201b288d14949af384b12597865 13260 python optional 
testrepository_0.0.14-2_all.deb
 44997a1cc60e30233d3e9d2f4f41585a 67652 python optional 
python-testrepository_0.0.14-2_all.deb

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

iEYEARECAAYFAlGplVsACgkQl4M9yZjvmkl5pACeK7B3JKzeFRlN4y32frXxfgu3
iGEAnA4XShWL0KAbKrC+g3z96sNayNen
=llsU
-END PGP SIGNATURE-


-- 
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/e1uifnn-0006cu...@franck.debian.org



Accepted glance 2013.1-4 (source all)

2013-06-01 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 May 2013 11:21:41 +0800
Source: glance
Binary: python-glance glance python-glance-doc glance-common glance-api 
glance-registry
Architecture: source all
Version: 2013.1-4
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 glance - OpenStack Image Service - metapackage
 glance-api - OpenStack Image Service - API server
 glance-common - OpenStack Image Service - common files
 glance-registry - OpenStack Image Service - registry server
 python-glance - OpenStack Image Service - Python client library
 python-glance-doc - OpenStack Image Service - Python library documentation
Changes: 
 glance (2013.1-4) unstable; urgency=low
 .
   * Ran wrap-and-sort.
   * Rebuild with new version 6 of openstack-pkg-tools.
Checksums-Sha1: 
 6468a7c1ed2dce8aa9387f6d28fed3642b3f76e4 2384 glance_2013.1-4.dsc
 c1383a20c0e167f78816f97155646b14ea78caab 235666 glance_2013.1-4.debian.tar.gz
 9c24fde219be2d22e29b5ad6a4ebee105a14430f 448016 python-glance_2013.1-4_all.deb
 5666a3580cc48cb8266ef098f06786927978e0f7 212234 glance_2013.1-4_all.deb
 ed94a9e6d47e0dbdd3a787057a369c9c51d4b7d9 296624 
python-glance-doc_2013.1-4_all.deb
 b35f1b7e8951621dd0df10fb8779a94ddaed041c 231306 glance-common_2013.1-4_all.deb
 3fd80448cab0bddcfb4164e568ed66529eadb518 224852 glance-api_2013.1-4_all.deb
 5f12018409124a87a86594ce69c772a73ca089ee 219690 
glance-registry_2013.1-4_all.deb
Checksums-Sha256: 
 dd4a3c1605be2f80e493314cec90aa00d590fdffb1753c67d53908646c73dc6b 2384 
glance_2013.1-4.dsc
 5022c0a7a3b2a645e0472eb486c8b5f84b9826722872e62dde2f84975daf5f20 235666 
glance_2013.1-4.debian.tar.gz
 93a0e61e57bd57d2aae7258b4a2e6668f30299ecc6a49e59409d5b1a52476512 448016 
python-glance_2013.1-4_all.deb
 efe973911a2a9b1210593a636fe6847202fa5e2b0060b5f1259d93c545731808 212234 
glance_2013.1-4_all.deb
 5d617c9820750059d6d66159b73bd9a2205aa4461f8be56435c822aa70953c9c 296624 
python-glance-doc_2013.1-4_all.deb
 661ea630a042018c27b4edeced30c5744c9b91f748dc6f847400c28599448413 231306 
glance-common_2013.1-4_all.deb
 bb0177644379ab8959917b2e13b7c407c15ce9b7eff0cec56305061b3ed76036 224852 
glance-api_2013.1-4_all.deb
 3de5f9c9520248d282d84692e97d452c8cc09ea49daa0b6cc62ef612a545ee52 219690 
glance-registry_2013.1-4_all.deb
Files: 
 be23783fd99ae8b2f1b5c3376cb60182 2384 net extra glance_2013.1-4.dsc
 69c57da460f5e733124c210244f6e195 235666 net extra glance_2013.1-4.debian.tar.gz
 81d63ef2497d138a505b682390ccfc19 448016 python extra 
python-glance_2013.1-4_all.deb
 5a3047f8cb004ebb401d11f0fa90fbaf 212234 python extra glance_2013.1-4_all.deb
 b363e0169b69b97fc25c80c6711b8237 296624 doc extra 
python-glance-doc_2013.1-4_all.deb
 19cce233241275636be4caacbe92c04c 231306 python extra 
glance-common_2013.1-4_all.deb
 d5b00c22f6836ffa07118ce719c020fa 224852 python extra 
glance-api_2013.1-4_all.deb
 9f0b7a73d08c970cb08eaaf01152ac02 219690 python extra 
glance-registry_2013.1-4_all.deb

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

iEYEARECAAYFAlGpl/QACgkQl4M9yZjvmkl/yQCfaCUGaVZz8TjUlR5SUazNzDXj
Rx0AnRIVIQTxgtfWaV8UxcM3IOTYKp2+
=4tPB
-END PGP SIGNATURE-


-- 
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/e1uifbz-0001u3...@franck.debian.org



Accepted heat 2013.1-5 (source all)

2013-06-01 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 23 May 2013 23:16:57 +0800
Source: heat
Binary: python-heat heat-common heat-engine heat-api heat-api-cfn 
heat-api-cloudwatch
Architecture: source all
Version: 2013.1-5
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 heat-api   - OpenStack orchestration service - ReST API
 heat-api-cfn - OpenStack orchestration service - CFN API
 heat-api-cloudwatch - OpenStack orchestration service - CloudWatch API
 heat-common - OpenStack orchestration service - common files
 heat-engine - OpenStack orchestration service - engine
 python-heat - OpenStack orchestration service - Python files
Closes: 709875
Changes: 
 heat (2013.1-5) unstable; urgency=low
 .
   * Added Subclass_keystone_middleware_to_set_headers.patch
   * Ran wrap-and-sort.
   * Also deletes /var/lib/heat on purge (Closes: #709875).
Checksums-Sha1: 
 dda92f31d3c44891160404a85176bf82f73a1b01 2372 heat_2013.1-5.dsc
 3914ee5d162578248e220d90dae54601b4306cb0 125829 heat_2013.1-5.debian.tar.gz
 00d39f60ff9b971951e41243ea7d618167e6fed5 335182 python-heat_2013.1-5_all.deb
 36ed5c38631f2241254b28d00f8599c4da7611c3 126714 heat-common_2013.1-5_all.deb
 a57eaae5bf9b5b79dd37d50b933ab4207e3ce2b7 123192 heat-engine_2013.1-5_all.deb
 e0bef7382911d6a1482779fdfee06def53ea1f04 123654 heat-api_2013.1-5_all.deb
 194ecfb53deab2e733af2636fc5bbd6d31895176 123238 heat-api-cfn_2013.1-5_all.deb
 eb348a2dcdbc3b6872a7dce93efe0d2363157f12 123146 
heat-api-cloudwatch_2013.1-5_all.deb
Checksums-Sha256: 
 c7afb36fec0b313418c893bd82647a9eb86bcb3f40e63999abfc95dd04a97a00 2372 
heat_2013.1-5.dsc
 fc85e3177786c1d489e54a409ade515e48ec493130f8080d45160d7077a4581b 125829 
heat_2013.1-5.debian.tar.gz
 b05f9c7ddd031df61dfcd9e7c666fbfae2510f8ef80e4f2c9d3c2c2c5e41b933 335182 
python-heat_2013.1-5_all.deb
 c5fcadb9bcdc39d2829b028fa7977eb8f58838f4f72bfaf0f187044de211cbc4 126714 
heat-common_2013.1-5_all.deb
 cd79e9c23f1f780f38a4619ed197a60e8ffbc18ce8082a56129b0c937f5ead63 123192 
heat-engine_2013.1-5_all.deb
 5b9c44b6d59c051665ff2e9b02dcb09a60b2e97f49fbfd1de1066c2abf9fa503 123654 
heat-api_2013.1-5_all.deb
 1c036b1826ad269c8e1196feef82a42c7aef45156a3dda90005ab7464e311ed1 123238 
heat-api-cfn_2013.1-5_all.deb
 a7535560d42b5e33750b5f1748c3f61ba372d80d983c7ba5d4f983e8af1195e1 123146 
heat-api-cloudwatch_2013.1-5_all.deb
Files: 
 1179e9231cf718e0c3d4763bc45a86dc 2372 web optional heat_2013.1-5.dsc
 9bea2dea554b2000ae53b76cba1c5b51 125829 web optional 
heat_2013.1-5.debian.tar.gz
 549bb3dcfd629f1775818eb65bf07a2c 335182 python optional 
python-heat_2013.1-5_all.deb
 1d795dca425b0d48b9d4f28b1c5eb09b 126714 web optional 
heat-common_2013.1-5_all.deb
 eb9ed18474ea7150eec2e0f9fa88bc0c 123192 web optional 
heat-engine_2013.1-5_all.deb
 102f182d7db01632f9257da087d42284 123654 web optional heat-api_2013.1-5_all.deb
 bc69b54eb795b4b14847bec4cbb56348 123238 web optional 
heat-api-cfn_2013.1-5_all.deb
 ff29f5c4dd05b088c38743a930abc9eb 123146 web optional 
heat-api-cloudwatch_2013.1-5_all.deb

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

iEYEARECAAYFAlGpmfkACgkQl4M9yZjvmknE7ACgnf+uIqts7wnDvgbjCIBPZf4E
i0oAn0vNsWg0lYi2/Ti66No7kyXxk2Qf
=iHkS
-END PGP SIGNATURE-


-- 
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/e1uifbt-0001th...@franck.debian.org



Accepted easy-format 1.0.1-1 (source amd64)

2013-06-01 Thread Hendrik Tews
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 31 May 2013 22:16:56 +0200
Source: easy-format
Binary: libeasy-format-ocaml-dev libeasy-format-ocaml
Architecture: source amd64
Version: 1.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Hendrik Tews hend...@askra.de
Description: 
 libeasy-format-ocaml - easy(ier) pretty printing for OCaml - plugins
 libeasy-format-ocaml-dev - easy(ier) pretty printing for OCaml - development 
files
Changes: 
 easy-format (1.0.1-1) unstable; urgency=low
 .
   [ Sylvain Le Gall ]
   * Remove Sylvain Le Gall from uploaders
 .
   [ Hendrik Tews ]
   * fix watch file (thanks to Bart Martens)
   * unapply debian changes patch in master
   * add myself as uploader
   * bump debhelper compat level and standards version
   * adjust dependencies
   * remove debian-changes patch; create ocamldoc subdir in rules
   * update home page
   * update copyright file
   * add README.Debian with documentation hints
   * fix lintian Vcs-* warning
Checksums-Sha1: 
 3b20c12f7f4f042778a94c1616705cefb9b6e1a0 2128 easy-format_1.0.1-1.dsc
 9305c6ff5e4f4765cefbbcfaf2f54f134634cf8a 13747 easy-format_1.0.1.orig.tar.gz
 4ce5f334f745c6e0cffa3c9792021e71687c4810 3378 easy-format_1.0.1-1.debian.tar.gz
 1f913ec980011cb907ab34c50836440c3bc0e36b 31508 
libeasy-format-ocaml-dev_1.0.1-1_amd64.deb
 02366a8662394bd7c72926463bb584844dc34cc8 7024 
libeasy-format-ocaml_1.0.1-1_amd64.deb
Checksums-Sha256: 
 6fad52de8711778ee31824c3de67855e18a971cdbf6290bca4b793027c559eae 2128 
easy-format_1.0.1-1.dsc
 4b1c030de944158d9e62ce30f59ae2c007ea87b492e92463d8aced22a858f403 13747 
easy-format_1.0.1.orig.tar.gz
 3479c38401bd85d023dce13c43130b1bf743153237c296a98ed7e3bb7652ef7d 3378 
easy-format_1.0.1-1.debian.tar.gz
 17e64e79c19c02f1bfc41e3c1b0cda7180f23ad29dd54f5549db2f594f511f2e 31508 
libeasy-format-ocaml-dev_1.0.1-1_amd64.deb
 55aadeb0ae10af33b9b0d7ef3961d1cb2774eb00f7ab15cccb611436369d2146 7024 
libeasy-format-ocaml_1.0.1-1_amd64.deb
Files: 
 238162225289f2af5540dc17253ddd28 2128 ocaml optional easy-format_1.0.1-1.dsc
 ecaf5d060f7cf8961631ab319e40677c 13747 ocaml optional 
easy-format_1.0.1.orig.tar.gz
 fbe4fdc017d4a19fc321c826bae0093e 3378 ocaml optional 
easy-format_1.0.1-1.debian.tar.gz
 3c5cf7594a45cc1a9a0a87e39e95e401 31508 ocaml optional 
libeasy-format-ocaml-dev_1.0.1-1_amd64.deb
 77e9606292bbc049cb8f8b6ed6975a34 7024 ocaml optional 
libeasy-format-ocaml_1.0.1-1_amd64.deb

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

iQIcBAEBCgAGBQJRqZpiAAoJEHhT2k1JiBrTJeIP/1RQ+EC6FS+9o8d7KqaDhgS9
+nmarrL6+Nna+S4jitwB4NCAitwjU1hE0k12sZJUNSx+0oQ4ZUDEzjq0XnmXxE8u
K5TIwoyVRBd6ZQoBnV6JoqWZCHXFh+Srtl/TdU7AOtzXATUW8SJ1xqCWZpHg6onl
x8ZJPG/To7Pi7IMl9LTX+Fq+d6AaMySdPuHTy6vT2gB06JthQ0NdQQ6sAYM/uHQ5
96YqAJHLc4fUN7MmiRBdZfphQTz/Vebov9os8RkeB7m2Srm5dDpqJkJSkWXdzsxQ
0AEBceMLibVEhseB6HF+WMQM615SngkVEM7YE70J4DlQLV6V/ru8ohqMEEiJaDle
QbDJPqdhdXUxQX+v54NymXAzIC6AF9xHu+uKlrZFLnutnBtoZWbSlwXbNdtaKECA
kX7NGS9Tp4CbX91xVl7gXQTzZPTIm2t7Q0vNhY8MHysyvpGYYtwn4VVTuzd5M6tj
vbYBuwNMOE1h0D81OyUB0nZu7HJev47h9pjt7p+pAsLKMs91BJZts4KYuAyblOD8
3+T51ppHUQm2n122aoODquXO37LPmq27/eMIS9WgKtbqaLFCeqHZuL3RtSKbfn9S
31OVczWqkpaCGNCnoIiwWyL4TUHmneRoAw/kCIJXMfL3/ll0GcKQ4bhHaKkq7PDO
dUf6UwO4NJ9UWOrYNkJo
=ygl6
-END PGP SIGNATURE-


-- 
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/e1uifpz-0005ez...@franck.debian.org



Accepted fonts-lohit-beng-assamese 2.5.3-1 (source all)

2013-06-01 Thread Vasudev Kamath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 11:27:50 +0530
Source: fonts-lohit-beng-assamese
Binary: fonts-lohit-beng-assamese
Architecture: source all
Version: 2.5.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Changed-By: Vasudev Kamath kamathvasu...@gmail.com
Description: 
 fonts-lohit-beng-assamese - Lohit TrueType font for Assamese Language
Changes: 
 fonts-lohit-beng-assamese (2.5.3-1) unstable; urgency=low
 .
   * Imported Upstream version 2.5.3
   * Changed Vcs-Git to use canoncial url anonscm.d.o.
   * Marked the package as Multi-Arch foreign to allow installation on
 foreign architecture.
   * Added links file to install a symlink of 66-lohit-assamese.conf to
 /etc/fonts/conf.d/ folder.
   * Added myself to the Uploaders list.
   * Upload to unstable.
Checksums-Sha1: 
 790976382062b848ed256fac52b8a61cc2363398 2148 
fonts-lohit-beng-assamese_2.5.3-1.dsc
 c9dfaef2cfbf4b4089243d839c985a951573d707 245507 
fonts-lohit-beng-assamese_2.5.3.orig.tar.gz
 7bf7b806275f866e080e747295e4914bd3f3384a 3883 
fonts-lohit-beng-assamese_2.5.3-1.debian.tar.gz
 157cb54fe90e8a49cf29793bf4568943b3c897db 78710 
fonts-lohit-beng-assamese_2.5.3-1_all.deb
Checksums-Sha256: 
 334d2420f824fcf6916975bcbb7e28b918d0666d564d1f5a527a2dd675631fd1 2148 
fonts-lohit-beng-assamese_2.5.3-1.dsc
 61cef08b1beeff8b2bfe05bcbc7159ab133bc625cd7ac1b913296ef81c2c15af 245507 
fonts-lohit-beng-assamese_2.5.3.orig.tar.gz
 33b909c6b98d4cdb987303fdc3c5ecc6b4242be2cd584dc50863267b96fd4aa3 3883 
fonts-lohit-beng-assamese_2.5.3-1.debian.tar.gz
 5749d123df2bebb4e4522414416ad75e3673bd01dbe78050019eaa41bf812781 78710 
fonts-lohit-beng-assamese_2.5.3-1_all.deb
Files: 
 7f1f43e1bf3124ff98624172b35c600f 2148 fonts optional 
fonts-lohit-beng-assamese_2.5.3-1.dsc
 b4bf964008ef79535738a86b90eaaa0d 245507 fonts optional 
fonts-lohit-beng-assamese_2.5.3.orig.tar.gz
 73fbea65d35b32db0d1c59795cc69bfe 3883 fonts optional 
fonts-lohit-beng-assamese_2.5.3-1.debian.tar.gz
 40c3589757bf697d476c096633c39480 78710 fonts optional 
fonts-lohit-beng-assamese_2.5.3-1_all.deb

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

iQIcBAEBAgAGBQJRqZ7yAAoJEGyPdK6HcAt+E20QAIOrvYk6O5ytAZGxapRFtnNL
Rs+5aEg4yh6ruEeMnwtzH5a9QRStq8UtQDlnTLmsS9a8Ra6dtCsqF9MVy6hXWqmk
LvaG8xzwSsN2scyF2ZRXKLv9mjaENGrQ4gAxA7uEfeLpbw0J5l64Q1m1rGK5+pDs
yW3WagePSsjdFDhx54pbuDPkeCn/I6Nwj8Khdwl7dAuAKXDVLrlk5+6zwuG4Rf4p
iv8PcGJ8rCakpOAafhsygrw5nFwFNuO+CDlG08lWDhfZy6FD07t+T/0aEnNLKZh3
p389kkjlCpjgyJ7RFusWw7fAY4eUGsBwn71egGct28TqsZFDjGpGOAHDDqu4ubAp
LpawShv3H18FUSV0LSf4J6BOlOEi5R65HjEAov4p2KPpXArL+8cMt37zt6PeUEau
3nYjTEI2wV2uVsT5U59VFuSt5LhDLRluLW2Kk+t40Ee0sRTlm802I9L78XHnToOo
Jp9PXs0icfYs/XcV9ziYVA3uKA1jJuy4pXQ5+UH7MYyhaD8mlqR0J9tlpOdwhaDl
E7BftDNfw/VVH8fvTq/AsIJqYgG4oXZPMBt0bm3KznUh25R7TWPofjBoVL027lu+
+MXP0rT7v1Cv8N47C83yoAhe5VRjOAjV3hBY14WM+EwGqlCTh7NUpI2+YeKMERV6
tdPMsnWi4QjBacvSpzFj
=FRCs
-END PGP SIGNATURE-


-- 
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/e1uig4u-0001hn...@franck.debian.org



Accepted fonts-lohit-beng-bengali 2.5.3-1 (source all)

2013-06-01 Thread Vasudev Kamath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 12:41:43 +0530
Source: fonts-lohit-beng-bengali
Binary: fonts-lohit-beng-bengali
Architecture: source all
Version: 2.5.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Changed-By: Vasudev Kamath kamathvasu...@gmail.com
Description: 
 fonts-lohit-beng-bengali - Lohit TrueType font for Bengali Language
Changes: 
 fonts-lohit-beng-bengali (2.5.3-1) unstable; urgency=low
 .
   * Use canonical url for Vcs-Git.
   * Imported Upstream version 2.5.3
   * Mark package as multi-arch foreign
   * Upload to unstable.
   * Add links file to install symbolic link of 66-lohit-bengali.conf to
 /etc/fonts/conf.d folder.
   * Added myself as uploader.
Checksums-Sha1: 
 a1d156db4171b224b42b1e96bcc698072f2977bf 2153 
fonts-lohit-beng-bengali_2.5.3-1.dsc
 c95ce7966851d502386a717822e8c26693be942f 245655 
fonts-lohit-beng-bengali_2.5.3.orig.tar.gz
 145176258a06aeb28170439ff2206054b0cf01be 3795 
fonts-lohit-beng-bengali_2.5.3-1.debian.tar.gz
 7aa0066b16c4e1f262aa498d3fa7ddc0e94ee885 78948 
fonts-lohit-beng-bengali_2.5.3-1_all.deb
Checksums-Sha256: 
 3023f30ef27219cff05b3454d6a36a03f943838fbf7445a0ad4d024940778d96 2153 
fonts-lohit-beng-bengali_2.5.3-1.dsc
 ba4ac98b36a6e0e98d2583b194a027b4e9c2b909adb19342c9586be27c7bd14c 245655 
fonts-lohit-beng-bengali_2.5.3.orig.tar.gz
 ffd7c86772464ab7f5b34747228bd7f3d741a2e482459119eec09039021e5b45 3795 
fonts-lohit-beng-bengali_2.5.3-1.debian.tar.gz
 c50e0857a3c4b18a297d03134f93d8f97fbe448249ef8d836f47b391d8a18a60 78948 
fonts-lohit-beng-bengali_2.5.3-1_all.deb
Files: 
 5aadadf3f96e06d37d23bf6ed724b5b5 2153 fonts optional 
fonts-lohit-beng-bengali_2.5.3-1.dsc
 9870b09ba4e085eff7306c3b90fee04f 245655 fonts optional 
fonts-lohit-beng-bengali_2.5.3.orig.tar.gz
 d80d97eff599a07253d30b98b898c649 3795 fonts optional 
fonts-lohit-beng-bengali_2.5.3-1.debian.tar.gz
 22bed634cfdfdd0824cc7f607ba90ee6 78948 fonts optional 
fonts-lohit-beng-bengali_2.5.3-1_all.deb

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

iQIcBAEBAgAGBQJRqaNHAAoJEGyPdK6HcAt+0pcP/1Uaa5If7SEFhxKHY9sqcWtu
pewBNSvj3uTdTDJRSwm6lrIpCv48J6riRu8cjGWDH+b6v4DHhmJ4Ifxxj3RUoutW
Pef6unEOasLTX+0xn1vGUCYcWk6Rpko9fCIidukB6V+6M+t2pVO+0vubeg2J/Phb
Wfg+sdLTzkgxh9/8Bbdjn8y30Q5RuAHXO+gNSzjAvK568z0psM55Qru5ajZJemOJ
PB1z9EUt+MWl8tufGFC8ZmjWjUnOXaIvJvnejzHD0HiJv+eTV75PPUOjy2TLkMCY
trLYYouSofVVg2lpGt+/F3lYtpZhIfQE8Yli5xxqV6aaOkUybVz4lbO+WWEw0nhF
qjiG/ik5yDW2e3AlZt2h76N3af22vXYsh5NyIkgNVe7zDR5ihbaIaZE2QWrYqOLi
n/CgR8czgRxwT8RE1kaDTQGMToF1Tf4DsXuXd+FQIpfOTjfnstorz9gj9K1Oafpv
f+ZHg0H2n/6YxC7oorRp1qAUKjBvX5iIgbzf/oYAjy25bkx3furTRXklox7Zgx9j
ENRlryNhBvXI80P67y7hfM4UeyZ5OpSyNof8bcKUUdLQN9I6PprclZwvqp2n6aWf
YkT/uHWs9pM5v3mSUSrUwltT4ulOrfl2oNMCcpYoWzklasHROBHNxiYo/eSHNz3j
GsYXfXkx97m6s+j3pdB7
=gb0d
-END PGP SIGNATURE-


-- 
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/e1uigy3-0001iw...@franck.debian.org



Accepted mgltools-mglutil 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-mglutil
Binary: mgltools-mglutil
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-mglutil - Molecular Graphics Laboratory utility collection
Changes: 
 mgltools-mglutil (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 e9a93146bd4f215a9e65559e728a854048f31635 1693 
mgltools-mglutil_1.5.7~rc1~cvs.20130519-1.dsc
 99d108ece24e59b713310a60c1f93a4b07f26bff 1749055 
mgltools-mglutil_1.5.7~rc1~cvs.20130519.orig.tar.gz
 57fca7117c8faa0675fd431f79b4a5f6ae77e52b 8476 
mgltools-mglutil_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 0dc2528ae320c474d988ca0b7ab94a2575d3fc5d 1760572 
mgltools-mglutil_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 309b53bc8ac143ba62c156a1293ca279253e0c8779be3eabf1e4d264414e 1693 
mgltools-mglutil_1.5.7~rc1~cvs.20130519-1.dsc
 cdcba2d05575bbc0885a5e36dffd81262ed3208626cc3c5103ee68c982755295 1749055 
mgltools-mglutil_1.5.7~rc1~cvs.20130519.orig.tar.gz
 470f048ffb965dcaec1e8b923f292e072c8197d2d9c0dd44945d27f8019fdd46 8476 
mgltools-mglutil_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 eebfb1665afec1cf7c898bdbe3415513cf2925cf32fa484e5ef12644be7c583e 1760572 
mgltools-mglutil_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 c6e1491df08c9eff0b7dca2b6b30933e 1693 non-free/science optional 
mgltools-mglutil_1.5.7~rc1~cvs.20130519-1.dsc
 9fd856a476ba6315992fd06224cd6d7a 1749055 non-free/science optional 
mgltools-mglutil_1.5.7~rc1~cvs.20130519.orig.tar.gz
 9667391a09ab3f5c92d1c3af4b22b768 8476 non-free/science optional 
mgltools-mglutil_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 3abd341812b1142b24bfc4c6eaf867b5 1760572 non-free/science optional 
mgltools-mglutil_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGo3wwACgkQ02K2KlS5mJBy4gCgiDRHZtslnypStK33n3M8ENwo
6TIAnirFIV9YmrR0AgCrJ9kg0NvBMtPU
=4pjf
-END PGP SIGNATURE-


-- 
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/e1uihxc-00052c...@franck.debian.org



Accepted mgltools-networkeditor 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-networkeditor
Binary: mgltools-networkeditor
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-networkeditor - Python GUI library for the editing of networks
Changes: 
 mgltools-networkeditor (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 1d9c2646327d49ab22c81ddd404179cfd01d6b71 1756 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519-1.dsc
 d6d15e69d869ebe69984a1d66c53f71f0fce0020 225941 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519.orig.tar.gz
 51a96777f955290a6eec8ba5d05b5009034f0a97 6643 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 dff131908182d2cdc83646c4b7b5daddf674aa90 222760 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 7549b4e62efa70a29ca1d183aaa650c7d832669e81d4bcb16b0b33f2641b77c2 1756 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519-1.dsc
 79f0ece0ade6e953aba937e08c7d51c5e1afe7ea1344f884e74072b9941ec931 225941 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519.orig.tar.gz
 5ef2b3e1ace80b487605ad2faae4ce38564c3328fa4886168ddf7ed5cfdb918a 6643 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 4138db0546136dc921cdda944a2ae8cefb3f371352f008e502229923bda70e53 222760 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 95672746446b79f5bae89724abb23af6 1756 non-free/science optional 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519-1.dsc
 df296e370ba94caed75678db0cf61b11 225941 non-free/science optional 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519.orig.tar.gz
 4d738ab4cb92b80376925625120490e8 6643 non-free/science optional 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 3e79efabc0a752708c59f02577eabfc1 222760 non-free/science optional 
mgltools-networkeditor_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGo37UACgkQ02K2KlS5mJD38wCeMT0Lyl2yEvVJcyxvq/I7LR6y
zvAAn2WAZHhNcKZZKnpLUciHkJ26FAOq
=GJP4
-END PGP SIGNATURE-


-- 
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/e1uihxi-00055y...@franck.debian.org



Accepted python-heatclient 0.2.2-2 (source all)

2013-06-01 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 09:23:44 +0800
Source: python-heatclient
Binary: python-heatclient
Architecture: source all
Version: 0.2.2-2
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 python-heatclient - client library and CLI for OpenStack Heat
Closes: 710576
Changes: 
 python-heatclient (0.2.2-2) unstable; urgency=low
 .
   * Added missing dependency python-setuptools-git (Closes: #710576), thanks to
 Jeremy Bicha for reporting.
   * Ran wrap-and-sort.
Checksums-Sha1: 
 05897d744384426a96dd0f300fc99c13e15b5f1a 1761 python-heatclient_0.2.2-2.dsc
 c8e1eddc6ca8cb91f7ab9caccc1437092e3682b7 9439 
python-heatclient_0.2.2-2.debian.tar.gz
 6573bbe3460337e958761b5b2560fc6e54ec100a 28970 
python-heatclient_0.2.2-2_all.deb
Checksums-Sha256: 
 385c4244d8046b656d848679def709232080b5ec83be02aa2d9fd53773584ef5 1761 
python-heatclient_0.2.2-2.dsc
 b9cff1c1df86b3206f2a52d81ad8b9ebf49c025170670135af48f02e7aec0fa7 9439 
python-heatclient_0.2.2-2.debian.tar.gz
 62c61797fcd81cab38063a0857b6282559b436b50b02c92ed0b486183ca403ea 28970 
python-heatclient_0.2.2-2_all.deb
Files: 
 9b873908c6e3cdb14f9e7e8094385c7b 1761 python optional 
python-heatclient_0.2.2-2.dsc
 8a890799b110ae928ec95d57db680e04 9439 python optional 
python-heatclient_0.2.2-2.debian.tar.gz
 ac87982af592bdfa372a67211e3e940d 28970 python optional 
python-heatclient_0.2.2-2_all.deb

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

iEYEARECAAYFAlGprPwACgkQl4M9yZjvmklKDgCgo2O4WI81cqR9tPe6IZ6ujcom
X5MAoOUQX1k6VWROqlf9J15zONz6859N
=XgJm
-END PGP SIGNATURE-


-- 
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/e1uihxt-0005ar...@franck.debian.org



Accepted gnome-common 3.7.4-1 (source all)

2013-06-01 Thread Thomas Bechtold
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 11:04:10 +0200
Source: gnome-common
Binary: gnome-common
Architecture: source all
Version: 3.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Thomas Bechtold thomasbecht...@jpberlin.de
Description: 
 gnome-common - common scripts and macros to develop with GNOME
Changes: 
 gnome-common (3.7.4-1) unstable; urgency=low
 .
   * New upstream release.
   * Bump Standards-Version to 3.9.4.
Checksums-Sha1: 
 dde3910a8aed3eb372f3a4462204bda681c5a115 1602 gnome-common_3.7.4-1.dsc
 b02cd66b73d3ded795f187f725be150ee08f13ac 151864 gnome-common_3.7.4.orig.tar.xz
 611ec843d9c778f3d037785f7d0c528f188b9d63 6266 
gnome-common_3.7.4-1.debian.tar.gz
 f197df2acb5de184ea41edac678ae9a2f515061e 134500 gnome-common_3.7.4-1_all.deb
Checksums-Sha256: 
 20de8c59163cfecb88e35011d57b769eb839ed92b692ade482e25f78b6a3b1cd 1602 
gnome-common_3.7.4-1.dsc
 2af2d97010d2a9aeb3b99dd2ce07d1ef023e15a27b412ffe4f067f016ff7117b 151864 
gnome-common_3.7.4.orig.tar.xz
 6040901a0e0a5986921eafa15131417a577340ceb638b273a064cac53ff67fa9 6266 
gnome-common_3.7.4-1.debian.tar.gz
 37853a8a0215f6b06f23a7562f1d99cf6c78feb6428b3650bcd9eaeb71c9ccf2 134500 
gnome-common_3.7.4-1_all.deb
Files: 
 6eb09444636a9681928ae21274d27c2b 1602 gnome optional gnome-common_3.7.4-1.dsc
 974cd54626f1d1787481288ef26bd4ba 151864 gnome optional 
gnome-common_3.7.4.orig.tar.xz
 0a7d6bcf91465cf0810adcd9901db1ee 6266 gnome optional 
gnome-common_3.7.4-1.debian.tar.gz
 fc5e1c89778ae5016e6992ace9420eb2 134500 gnome optional 
gnome-common_3.7.4-1_all.deb

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

iEYEARECAAYFAlGpweoACgkQhTV17EoIsv7n/QCfez2tKvNmasRAnRPysPPBfleb
0XkAnizRRzuA60SqTTJpfhHDD2dfPdTB
=EYpc
-END PGP SIGNATURE-


-- 
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/e1uiipz-0001im...@franck.debian.org



Accepted mgltools-pyautodock 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-pyautodock
Binary: mgltools-pyautodock
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-pyautodock - Python implementation of autodock
Changes: 
 mgltools-pyautodock (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 8309ca9717ea45cbecb0e17960b067cf2167 1729 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519-1.dsc
 8e9c106d8480be9c8cc94371843b851205ea8b8d 11712320 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519.orig.tar.gz
 3e1a168882d42e81edaf9696b4e2df8cf6efe485 6887 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 2083c070b4040d02a560c15d051148cc4e0fdc0c 11715058 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 07c9f0846d0da565ad7fad684acab7df4102c72fe81505e7e2a35c4c90304ea9 1729 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519-1.dsc
 655bdcd39122572f9d4e6e97f2ea4f328c981c209953927251d6c59d78fa8fa7 11712320 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519.orig.tar.gz
 62a1412151faf2c37359b136281992e32cfb59da7c4e98062678b3b5265ba2f9 6887 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 aeb8a9619a3383c596f603ee6cb5002c441125655cd4a881f0b82ede53659014 11715058 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 e42bb0d01788e7cf7a29a31f184024d3 1729 non-free/science optional 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519-1.dsc
 951f2fa8fce11ed83fab0ee1631c980e 11712320 non-free/science optional 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519.orig.tar.gz
 60c6e259be770ce55384863e752e337e 6887 non-free/science optional 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 5ec8337399875397f60741d298223a36 11715058 non-free/science optional 
mgltools-pyautodock_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGo4GYACgkQ02K2KlS5mJAn+ACffOBF5h0KvE3euUXUB3Cm2DM/
NXMAn2k5yDhWpY6ybUNsVtu6PZK+EwOU
=LnoC
-END PGP SIGNATURE-


-- 
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/e1uiiqh-0001qt...@franck.debian.org



Accepted mgltools-pybabel 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-pybabel
Binary: mgltools-pybabel
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-pybabel - molecular structure file access and interpretation
Changes: 
 mgltools-pybabel (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 8e3e79d3491fe4b4f41fc3ed4ec2ff8bda3f0892 1687 
mgltools-pybabel_1.5.7~rc1~cvs.20130519-1.dsc
 7a39ba95fd3034e6d04dfa46c286728f8d696d13 39756 
mgltools-pybabel_1.5.7~rc1~cvs.20130519.orig.tar.gz
 18ec79d469a22244d96d14ac0a626bf590ce83f0 6712 
mgltools-pybabel_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 11c8d304fddcc53d64a66f26256412200cd047b6 41826 
mgltools-pybabel_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 138e373da2bb626edf71c482a5f95665e099c7876b5718249cbd176010417b9d 1687 
mgltools-pybabel_1.5.7~rc1~cvs.20130519-1.dsc
 c3734c9b11d02e3ff827b32bdcd07e6aef0bf61a7469f2c4e7e7f06155e6b0d6 39756 
mgltools-pybabel_1.5.7~rc1~cvs.20130519.orig.tar.gz
 a8085a6abe37fbc2aa48754b57b8e215a725416c56f672b75647d5f2982ce2d3 6712 
mgltools-pybabel_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 048d4eba3f7a3a5d5d7a3ca82cac4220a9aa62ce77209657952f103421fb6b16 41826 
mgltools-pybabel_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 ff6e31af12826cd4f523c574bc735322 1687 non-free/science optional 
mgltools-pybabel_1.5.7~rc1~cvs.20130519-1.dsc
 c58ce6c9835238919f17d8b54e4bc80f 39756 non-free/science optional 
mgltools-pybabel_1.5.7~rc1~cvs.20130519.orig.tar.gz
 073baa00444a98a281ee464965865ccb 6712 non-free/science optional 
mgltools-pybabel_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 745a0ca94817adc1210b3de66c346ae9 41826 non-free/science optional 
mgltools-pybabel_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGo4PcACgkQ02K2KlS5mJCafgCePVnsc3ADxN7LZLs7B0kT6rF9
SCYAn3qojk9dRlm9jBsG0Umla749OULj
=OXkA
-END PGP SIGNATURE-


-- 
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/e1uiiqn-0001ur...@franck.debian.org



Accepted mgltools-scenario2 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-scenario2
Binary: mgltools-scenario2
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-scenario2 - Python-based viewer of molecular structures
Changes: 
 mgltools-scenario2 (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 e5e5923b5dad4cd5cf8556f5c8de3918c085c107 1678 
mgltools-scenario2_1.5.7~rc1~cvs.20130519-1.dsc
 7f6637da11997f82be6ed35850db9ff8ea28f7e5 296527 
mgltools-scenario2_1.5.7~rc1~cvs.20130519.orig.tar.gz
 256623c00de3c07af9fd04777bed82ef43309a19 6152 
mgltools-scenario2_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 e2dd102c203a7fed14be0de43d0cc00c2d635367 300380 
mgltools-scenario2_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 6e08aa5a6a05ad121f1536e12842c647c0863eb7810451cf7b03716b5ad2476c 1678 
mgltools-scenario2_1.5.7~rc1~cvs.20130519-1.dsc
 ed428a0dcc3b9c2b754a569432dbdd2441829b32f042a7e50ca0199b15a74dd0 296527 
mgltools-scenario2_1.5.7~rc1~cvs.20130519.orig.tar.gz
 c696bd1718ea84834e659b89a246a7572a1959dfe88f7bd1920400fce386fe35 6152 
mgltools-scenario2_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 a00c97a2a9126f40f53e64fede3720822f4580e489061f3eb349f2452c9159cc 300380 
mgltools-scenario2_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 838ec1f9af7a3838491f9141f30304ab 1678 non-free/science optional 
mgltools-scenario2_1.5.7~rc1~cvs.20130519-1.dsc
 c35f0a6152cb96de4ff92ae5e7bac429 296527 non-free/science optional 
mgltools-scenario2_1.5.7~rc1~cvs.20130519.orig.tar.gz
 178c1173363e82d0fbd6366712c0ae9e 6152 non-free/science optional 
mgltools-scenario2_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 07a18b3db5741b076f43ea51a7509b26 300380 non-free/science optional 
mgltools-scenario2_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGo4fQACgkQ02K2KlS5mJBbYgCgjQ0GyNdAzjOKNhWBwpmh5b6r
1pgAmgPSVqI+6IO7H9Oylskt8GlrdWLm
=2MuW
-END PGP SIGNATURE-


-- 
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/e1uiiqt-0001yl...@franck.debian.org



Accepted mgltools-support 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-support
Binary: mgltools-support
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-support - Update mechanism of MGLTools
Changes: 
 mgltools-support (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 83b513002067d7e98f79c007d7a9e1bc934319f2 1687 
mgltools-support_1.5.7~rc1~cvs.20130519-1.dsc
 9ba18ed249ab010212136708f4d451e8c121c88a 13178 
mgltools-support_1.5.7~rc1~cvs.20130519.orig.tar.gz
 f3d05d6e08e36e64ebb3d708365f12f022890338 6710 
mgltools-support_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 441d3dba082dcd84f4cc9404acf4d0c648d7a6e1 17120 
mgltools-support_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 3a03df72ac905479fa3ade37df0344ea11f4976a980e744fc23237a2a995e683 1687 
mgltools-support_1.5.7~rc1~cvs.20130519-1.dsc
 867421172c11a4e55da6acd41214c2e30769a349279f259ce209af589bbc 13178 
mgltools-support_1.5.7~rc1~cvs.20130519.orig.tar.gz
 b066d50894618c926a6f0649b2ccdf8f658ef6c1d5ed109caae80e4b438d39ea 6710 
mgltools-support_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 8e1668a81bdd8d98fe1392027f577667101f9d9d9c9920be664e59a6a93a429d 17120 
mgltools-support_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 b9250c2d8b26c143958c5ef76262bd9f 1687 non-free/science optional 
mgltools-support_1.5.7~rc1~cvs.20130519-1.dsc
 efc6f5c31c8b8d67b90f28202a9b6bbe 13178 non-free/science optional 
mgltools-support_1.5.7~rc1~cvs.20130519.orig.tar.gz
 7788d098fcd5f1767269c3b8e2082630 6710 non-free/science optional 
mgltools-support_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 e2e381128895e9eeaa5d3e2a87d70d11 17120 non-free/science optional 
mgltools-support_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGo4msACgkQ02K2KlS5mJAM7gCfSCo+m513bM4JC9W36HZR2JJd
TmoAoJir7FyO02C7ofEKhydbhEjUPiFS
=0T2r
-END PGP SIGNATURE-


-- 
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/e1uiiqz-00022g...@franck.debian.org



Accepted mgltools-symserv 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-symserv
Binary: mgltools-symserv
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-symserv - Symetry server
Changes: 
 mgltools-symserv (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 f0adeb3a48003250c8f3bd0da5fe0a81cf6cfbd7 1687 
mgltools-symserv_1.5.7~rc1~cvs.20130519-1.dsc
 3d101c2ae1656523dde8d325dcaaf0095a3a3820 26527 
mgltools-symserv_1.5.7~rc1~cvs.20130519.orig.tar.gz
 e76a3e9d0c25f97b71071b11ce6c4cbc6eeeb844 6753 
mgltools-symserv_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 5e96a9cc55fae73ba2f6b7b3186aea7a741f66b3 28384 
mgltools-symserv_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 f3dc2190e18d376539db92cbd8ffcab6b3c49ac84b314819631bb953d30233c0 1687 
mgltools-symserv_1.5.7~rc1~cvs.20130519-1.dsc
 b3b21c144374f729ce8f487e03b5284e0836a8138844c995216c15c88a4a1f39 26527 
mgltools-symserv_1.5.7~rc1~cvs.20130519.orig.tar.gz
 d81b0379149ca760ec8140450fe8ab915672adade4a29a8b4c9a8ee724744708 6753 
mgltools-symserv_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 cd0e7b766b930dedbdd69f23a3090a633e81ae38745790175061a1f5ee764dd3 28384 
mgltools-symserv_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 dc8a53a5a3a9e28e6d0fd8c495926aff 1687 non-free/science optional 
mgltools-symserv_1.5.7~rc1~cvs.20130519-1.dsc
 0abeeedcb594c8eb295453bbe043132a 26527 non-free/science optional 
mgltools-symserv_1.5.7~rc1~cvs.20130519.orig.tar.gz
 ed9795be9135ea8099b30e6461786b28 6753 non-free/science optional 
mgltools-symserv_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 ef1ad386c75a8b6b35dad2e5a5ac4c2d 28384 non-free/science optional 
mgltools-symserv_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGo4vkACgkQ02K2KlS5mJB0UQCePZnAjx5BW18AqXniSxfeKjh4
pbwAnjSP5AmVdUKsqNf35WC38I7WXJl5
=8poo
-END PGP SIGNATURE-


-- 
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/e1uiiqf-000263...@franck.debian.org



Accepted shibboleth-sp2 2.5.1+dfsg-1 (source i386 all)

2013-06-01 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 31 May 2013 16:09:24 -0700
Source: shibboleth-sp2
Binary: libapache2-mod-shib2 libshibsp6 libshibsp-dev libshibsp-doc 
shibboleth-sp2-schemas
Architecture: source i386 all
Version: 2.5.1+dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Debian Shib Team pkg-shibboleth-de...@lists.alioth.debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 libapache2-mod-shib2 - Federated web single sign-on system (Apache module)
 libshibsp-dev - Federated web single sign-on system (development)
 libshibsp-doc - Federated web single sign-on system (API docs)
 libshibsp6 - Federated web single sign-on system (runtime)
 shibboleth-sp2-schemas - Federated web single sign-on system (schemas)
Closes: 666804 685069
Changes: 
 shibboleth-sp2 (2.5.1+dfsg-1) experimental; urgency=low
 .
   * New upstream release.  (Closes: #685069)
 - Support for Apache 2.4.  Please note there are some configuration
   incompabilities between Apache 2.4 and Apache 2.2.  See the upstream
   documentation at
   https://wiki.shibboleth.net/confluence/display/SHIB2/NativeSPApacheConfig
   for more information.  (Closes: #666804)
 - Disable the PKCS 1.5 algorithm for SAML assertion encryption by
   default for security reasons.  This can be re-enabled if necessary
   in the security-policy.xml configuration file.
 - The protocol between the Apache module and shibd has changed.  shibd
   will be restarted during upgrades, but if the module is configured
   to talk to a remote shibd over TCP, both the module and shibd must
   be upgraded at the same time.
 - Settings to limit redirections have been renamed from
   relayStateLimit and relayStateWhitelist to redirectLimit and
   redirectWhitelist respectively and the old names are deprecated (but
   still supported).
 - cookieProps has been simplified and warnings introduced if SSL
   restrictions are not enabled.
 - The AttributeExtractor element that loads the attribute-map.xml
   file now defaults to reloadChanges=false.  Restarting the SP when
   this file changes is recommended for security reasons.
 - Logging properties have been removed from the default configuration
   file and the absence of properties now indicates use of the default
   logging configuration files (shibd.logger and native.logger).
 - The native.log file is now created as root before Apache child
   initialization to minimize permission issues.
 - Files that persist across server restarts have been moved to
   /var/cache/shibboleth.
 - The example style sheet for error templates has been moved to a
   version-independent location in /usr/share/shibboleth.  A logo file
   is no longer included in the package to avoid accidental use of the
   Shibboleth logo on production sites.  If your existing error
   templates reference these files, you should correct this by copying
   files that you need to locations that you control.
 - The module should now be referenced as mod_shib.cpp in conditionals
   that want to reference a source file name.
 - Clients that bounce between IPv4 and IPv6 addresses should now be
   handled more smoothly.
 - SP initialization now fails if an external session cache is
   configured but cannot be opened.
   * Update libapache2-mod-shib2's README.Debian:
 - Use the Apache 2.4 authorization syntax.
 - Mention possibly having to grant access to /Shibboleth.sso.
 - The module is now enabled by default but still needs configuration.
 - Update the upstream configuration documentation URL.
 - The reason for switching native.logger to syslog is now obsolete
   (but the package still does that, possibly to be reconsidered
   later).
   * Remove the (undefined) warn_log destination from the default
 native.logger configuration file, restoring consistency with the
 Debian modification to log to syslog.  Since all native logs go to
 syslog, there's no need to have differentiated log destinations based
 on threshold.  The previous version of the file referenced a
 commented-out warn_log destination, which caused errors to be spammed
 to syslog.
   * Build with GSS-API support.
   * Build and install FastCGI programs in /usr/lib/triplet/shibboleth.
 For right now, these are still included in libapache2-mod-shib2, which
 makes them substantially less useful than they would be in their own
 package.  Further work is required to allow the FastCGI programs plus
 shibd to be installed independent of the Apache module.
   * Add build dependency on libboost-dev.
   * Use log4shib instead of log4cpp.
   * Force build dependencies and package dependencies on xml-security-c
 1.7 or later, xmltooling 1.5 or later, and opensaml2 2.5 or later to
 ensure everything is consistent.
   * Remove explicit build 

Accepted abiword 3.0.0~svn20130523-1 (source all amd64)

2013-06-01 Thread Dmitry Smirnov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 15:04:42 +1000
Source: abiword
Binary: abiword-common abiword abiword-plugin-grammar abiword-plugin-mathview 
libabiword-3.0 libabiword-3.0-dev abiword-dbg
Architecture: source all amd64
Version: 3.0.0~svn20130523-1
Distribution: experimental
Urgency: low
Maintainer: Dmitry Smirnov only...@debian.org
Changed-By: Dmitry Smirnov only...@debian.org
Description: 
 abiword- efficient, featureful word processor with collaboration
 abiword-common - efficient, featureful word processor with collaboration -- 
common
 abiword-dbg - debugging symbols for abiword word processor
 abiword-plugin-grammar - grammar checking plugin for AbiWord
 abiword-plugin-mathview - equation editor plugin for AbiWord
 libabiword-3.0 - efficient, featureful word processor with collaboration -- 
shared
 libabiword-3.0-dev - efficient, featureful word processor with collaboration 
-- develo
Changes: 
 abiword (3.0.0~svn20130523-1) experimental; urgency=low
 .
   * New upstream pre-release [r33076].
   * Dropped all backported patches.
   * Dropped unused lintian-overrides.
   * Removed obsolete DM-Upload-Allowed field.
   * Build-Depends:
 + libchamplain-gtk-0.12-dev
 + libebook1.2-dev
 + libecal1.2-dev
 + libgoffice-0.10-dev (= 0.10.2)
   * Standards to version 3.9.4.
   * Updated copyright, added translator's copyrights.
   * Updated and improved rules and get-orig-source
 + added pre-build check for library version.
 + build --with-goffice and goffice plugin.
   * Replaced -2.9 with -* in install paths.
   * Updated my email address; bumped copyright years.
Checksums-Sha1: 
 f4957c21840f2e7de65a27482bb3efe671b81f4e 2890 abiword_3.0.0~svn20130523-1.dsc
 70cb10e0de160cf99f7b876126649da87371 6898788 
abiword_3.0.0~svn20130523.orig.tar.xz
 03d355e159e22f07d5eede1c6510837253b227e1 43248 
abiword_3.0.0~svn20130523-1.debian.tar.xz
 63e137b3a9066bab7e2a93e468f9b1f0d8c9684f 2358150 
abiword-common_3.0.0~svn20130523-1_all.deb
 3baf00fa5afa01d742f12b1818d31cb31c11488b 1859954 
abiword_3.0.0~svn20130523-1_amd64.deb
 d62f2a5ae0f89e466e0436f0e8b576c612eec861 741784 
abiword-plugin-grammar_3.0.0~svn20130523-1_amd64.deb
 d4fab7a9dfee389178785fba1c66066294463a4f 818880 
abiword-plugin-mathview_3.0.0~svn20130523-1_amd64.deb
 e2e639d2832d6406f1f2ac0aaa1e321040946d4f 2684216 
libabiword-3.0_3.0.0~svn20130523-1_amd64.deb
 5f0e8f2b3004beecd5d5995cdff4ce1e1f5ab340 738084 
libabiword-3.0-dev_3.0.0~svn20130523-1_amd64.deb
 04f606a1b3eb279a771557bc7b2ca6faee0110f3 32692076 
abiword-dbg_3.0.0~svn20130523-1_amd64.deb
Checksums-Sha256: 
 ade4334ccbcbc158ac0a75e784f843b281d392d91a5e16f0f13205c3c496a648 2890 
abiword_3.0.0~svn20130523-1.dsc
 98317f528c7f48bbafef460fe2b4153db76f4d280274b8fbb04a1601573a4f5f 6898788 
abiword_3.0.0~svn20130523.orig.tar.xz
 b671dd7e38663dc5040354ec2e8c1c1cf912321fae0c7d44104d3896f7bb7550 43248 
abiword_3.0.0~svn20130523-1.debian.tar.xz
 de6081a79c6cdd2801fae5f0055001c5d40219b72de52c1cfb1d4cc1d65ef278 2358150 
abiword-common_3.0.0~svn20130523-1_all.deb
 40f0c8b15d4889b816f6c1a3a7d48d959a3c3ea5623f7a7f26befb49dfce92f6 1859954 
abiword_3.0.0~svn20130523-1_amd64.deb
 c31e5c69d15dc804fef7c1ed8cf83885999d8978dc21d9bff94c1b7c15c6d7ac 741784 
abiword-plugin-grammar_3.0.0~svn20130523-1_amd64.deb
 a91a7c2bacf61008496a7d79abe7c87b8ba43e29a17bc0c58e760c2058238085 818880 
abiword-plugin-mathview_3.0.0~svn20130523-1_amd64.deb
 72d5e91b528e3e65fb9ddef993aa78558e3f1b441f348b79c76c164b82fa6fb7 2684216 
libabiword-3.0_3.0.0~svn20130523-1_amd64.deb
 4307a4a5de43dcc2dcf02cca09d789c5de844c87d0f66dd00bed1975fe3ebabb 738084 
libabiword-3.0-dev_3.0.0~svn20130523-1_amd64.deb
 5095f6052faee24609ac6802d2a38861875c0ffa8211d5fafd5739a563559e1e 32692076 
abiword-dbg_3.0.0~svn20130523-1_amd64.deb
Files: 
 6705a4b23554c4738b697f09eb66c5fb 2890 gnome optional 
abiword_3.0.0~svn20130523-1.dsc
 940af30a7bd57f60896e1996e88093fa 6898788 gnome optional 
abiword_3.0.0~svn20130523.orig.tar.xz
 e24fdcc84def1e6eb7f4acab1357dd30 43248 gnome optional 
abiword_3.0.0~svn20130523-1.debian.tar.xz
 3f4344956e96bb2b744bf7443da698ba 2358150 editors optional 
abiword-common_3.0.0~svn20130523-1_all.deb
 96dd5d727677da178ab94f46d4aa69c9 1859954 editors optional 
abiword_3.0.0~svn20130523-1_amd64.deb
 6cb6061d430002efee7a9869802cc0a9 741784 editors optional 
abiword-plugin-grammar_3.0.0~svn20130523-1_amd64.deb
 5a026f6b0eda5fdc8409a453587c8221 818880 editors optional 
abiword-plugin-mathview_3.0.0~svn20130523-1_amd64.deb
 43675b2fa9edf7a47aa6a091507cbb9f 2684216 libs optional 
libabiword-3.0_3.0.0~svn20130523-1_amd64.deb
 edeb21419cd88c485f04ac81666a0ce1 738084 libdevel optional 
libabiword-3.0-dev_3.0.0~svn20130523-1_amd64.deb
 40496c3b36ecd734bbe6cab88bf14408 32692076 debug extra 
abiword-dbg_3.0.0~svn20130523-1_amd64.deb

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

iQIcBAEBAgAGBQJRqaCiAAoJEFK2u9lTlo0ba1EP/RkedElW0/vD3lzx7VKH+kob

Accepted harfbuzz 0.9.18-1 (source amd64)

2013-06-01 Thread Ahmed El-Mahmoudy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 31 May 2013 17:02:53 +0200
Source: harfbuzz
Binary: libharfbuzz0a libharfbuzz-icu0 libharfbuzz-dev libharfbuzz-bin 
libharfbuzz0-udeb
Architecture: source amd64
Version: 0.9.18-1
Distribution: unstable
Urgency: low
Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) aelmahmo...@sabily.org
Changed-By: أحمد المحمودي (Ahmed El-Mahmoudy) aelmahmo...@sabily.org
Description: 
 libharfbuzz-bin - OpenType text shaping engine (utility)
 libharfbuzz-dev - Development files for OpenType text shaping engine
 libharfbuzz-icu0 - OpenType text shaping engine ICU backend
 libharfbuzz0-udeb - OpenType text shaping engine (udeb)
 libharfbuzz0a - OpenType text shaping engine (shared library)
Changes: 
 harfbuzz (0.9.18-1) unstable; urgency=low
 .
   * New upstream release.
   * Removed icu.patch  graphite2.diff patches, as they got applied upstream.
   * Removed autoreconf
   * Add Graphite2 support (except for armel  sparc archs)
   * debian/libharfbuzz-dev.install: Install harfbuzz-icu.* development files.
   * Do not disable ICU in udeb, it is not needed anymore and it causes FTBFS.
   * Added libharfbuzz-icu0 package in which ICU support library is installed.
   * Renamed libharfbuzz0 to libharfbuzz0a.
   * debian/control:
 + Added libharfbuzz-icu0 to -dev package Depends.
 + Added Breaks/Replaces: libharfbuzz0 for libharfbuzz0a
   * debian/*.symbols: fixed package names.
Checksums-Sha1: 
 866b267da50e161acae0d39f36731567bbf1948f 1623 harfbuzz_0.9.18-1.dsc
 621943fa0cadbc5514d8c8cdf985b7158baebc2d 902395 harfbuzz_0.9.18.orig.tar.bz2
 be4856140dcb685857fa909a0bf31d02a54e734c 5178 harfbuzz_0.9.18-1.debian.tar.gz
 d7468cfcb8ec16ae6708bea8b842a2f154ea7653 412104 
libharfbuzz0a_0.9.18-1_amd64.deb
 ddb23abd373163cae6b566e169a87c3ec7a0d8ba 261494 
libharfbuzz-icu0_0.9.18-1_amd64.deb
 ac2bd12ae1949011951cb6b67686e5a718b72908 272566 
libharfbuzz-dev_0.9.18-1_amd64.deb
 b5c8eec03df555b97cad88f18b241b8e9f4cc5f9 293488 
libharfbuzz-bin_0.9.18-1_amd64.deb
 6b0057af9e36be67a38aeabe64de8cb7c3b837b5 122900 
libharfbuzz0-udeb_0.9.18-1_amd64.udeb
Checksums-Sha256: 
 64b6b141db5802ed020c5bab8a65e3d0ac5f3d3fb0b6ea5c445a5eebf250c941 1623 
harfbuzz_0.9.18-1.dsc
 fef0fbbc6d6492cb4074a5e26a699d87d88bef8adc25dda62af6077735a7d908 902395 
harfbuzz_0.9.18.orig.tar.bz2
 c2479ffd353dea894381b16eb740e1694b48bfc96f3097557fb676eaaa366caf 5178 
harfbuzz_0.9.18-1.debian.tar.gz
 10e7653215652721b53dcd6de8276fdfad63e0106b748eed0ae69108633009a2 412104 
libharfbuzz0a_0.9.18-1_amd64.deb
 992b0316abad36938049fda5ca3a8051dc249990aaa1c52f5e6cddf9f4125f25 261494 
libharfbuzz-icu0_0.9.18-1_amd64.deb
 3442096893034134490f5f5fe81379e5844888ac2d913420b52ee26dbfb349e1 272566 
libharfbuzz-dev_0.9.18-1_amd64.deb
 602bad21dd2729fb0218432c181ef4ff41d51cc11fb5b0de14884eaa11d9f07c 293488 
libharfbuzz-bin_0.9.18-1_amd64.deb
 b180a1b398313fbebef43b7df5c3c9d9f9d88559529befa192c0d0ed18ed85ac 122900 
libharfbuzz0-udeb_0.9.18-1_amd64.udeb
Files: 
 94c98cf84fea5107045a192ede9e 1623 libs optional harfbuzz_0.9.18-1.dsc
 0bff05fafef4894031b2b64a65ac1899 902395 libs optional 
harfbuzz_0.9.18.orig.tar.bz2
 2c4451894a274b9f25530fd61b427e9e 5178 libs optional 
harfbuzz_0.9.18-1.debian.tar.gz
 8b2d94c1ba8c6efcf24d50335c563739 412104 libs optional 
libharfbuzz0a_0.9.18-1_amd64.deb
 319bd28f02bb6ba618f889fa9c017221 261494 libs optional 
libharfbuzz-icu0_0.9.18-1_amd64.deb
 154f516516f587678de9a4b76af4f1c6 272566 libdevel optional 
libharfbuzz-dev_0.9.18-1_amd64.deb
 ced0eb86fae2f294b7c5e1636aaacdf1 293488 utils optional 
libharfbuzz-bin_0.9.18-1_amd64.deb
 fe63085faaa2e6d1baf5a40e589b8f90 122900 debian-installer extra 
libharfbuzz0-udeb_0.9.18-1_amd64.udeb

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

iEYEARECAAYFAlGpRDUACgkQhTV17EoIsv4GuwCfa8Rz2dCu2TuS7tdiI7M+ewO4
DCoAnA+k/p67a5N69iKFr2vLGLL4RkXG
=VeKy
-END PGP SIGNATURE-


-- 
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/e1uiicb-0007rv...@franck.debian.org



Accepted webkitgtk 2.0.2-1 (source all amd64)

2013-06-01 Thread Emilio Pozuelo Monfort
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 29 May 2013 10:39:29 +0200
Source: webkitgtk
Binary: libjavascriptcoregtk-1.0-0 libjavascriptcoregtk-1.0-dev 
libjavascriptcoregtk-1.0-0-dbg gir1.2-javascriptcoregtk-1.0 libwebkitgtk-1.0-0 
libwebkit-dev libwebkitgtk-dev libwebkitgtk-1.0-common libwebkitgtk-1.0-0-dbg 
gir1.2-webkit-1.0 libjavascriptcoregtk-3.0-0 libjavascriptcoregtk-3.0-dev 
libjavascriptcoregtk-3.0-0-dbg gir1.2-javascriptcoregtk-3.0 libwebkitgtk-3.0-0 
libwebkitgtk-3.0-dev libwebkitgtk-3.0-common libwebkitgtk-3.0-0-dbg 
gir1.2-webkit-3.0 libwebkit2gtk-3.0-25 libwebkit2gtk-3.0-dev 
libwebkit2gtk-3.0-25-dbg gir1.2-webkit2-3.0
Architecture: source all amd64
Version: 2.0.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian WebKit Maintainers 
pkg-webkit-maintain...@lists.alioth.debian.org
Changed-By: Emilio Pozuelo Monfort po...@debian.org
Description: 
 gir1.2-javascriptcoregtk-1.0 - GObject introspection data for the GTK+-based 
JavaScriptCore libr
 gir1.2-javascriptcoregtk-3.0 - GObject introspection data for the GTK+-based 
JavaScriptCore libr
 gir1.2-webkit-1.0 - GObject introspection data for the WebKit library
 gir1.2-webkit-3.0 - GObject introspection data for the WebKit library
 gir1.2-webkit2-3.0 - GObject introspection data for the GTK+ port of the 
WebKit2 libra
 libjavascriptcoregtk-1.0-0 - Javascript engine library for GTK+
 libjavascriptcoregtk-1.0-0-dbg - Javascript engine library for GTK+
 libjavascriptcoregtk-1.0-dev - Javascript engine library for GTK+
 libjavascriptcoregtk-3.0-0 - Javascript engine library for GTK+
 libjavascriptcoregtk-3.0-0-dbg - Javascript engine library for GTK+
 libjavascriptcoregtk-3.0-dev - Javascript engine library for GTK+
 libwebkit-dev - Transitional package for the development files of WebKitGTK+
 libwebkit2gtk-3.0-25 - Web content engine library for GTK+
 libwebkit2gtk-3.0-25-dbg - Web content engine library for GTK+ - Debugging 
symbols
 libwebkit2gtk-3.0-dev - Web content engine library for GTK+ - Development files
 libwebkitgtk-1.0-0 - Web content engine library for GTK+
 libwebkitgtk-1.0-0-dbg - Web content engine library for GTK+ - Debugging 
symbols
 libwebkitgtk-1.0-common - Web content engine library for GTK+ - data files
 libwebkitgtk-3.0-0 - Web content engine library for GTK+
 libwebkitgtk-3.0-0-dbg - Web content engine library for GTK+ - Debugging 
symbols
 libwebkitgtk-3.0-common - Web content engine library for GTK+ - data files
 libwebkitgtk-3.0-dev - Web content engine library for GTK+ - Development files
 libwebkitgtk-dev - Web content engine library for GTK+ - Development files
Changes: 
 webkitgtk (2.0.2-1) experimental; urgency=low
 .
   * Team upload.
 .
   * New upstream release.
 + debian/patches/03_avoid_unresolved_x_symbols.patch:
   - Removed, applied upstream.
 + debian/patches/changeset_150117.diff,
   debian/patches/changeset_150256.diff,
   debian/patches/changeset_150326.diff,
   debian/patches/changeset_150963.diff:
   - Backport various build fixes from upstream.
 + debian/*.symbols:
   - Updated.
 + debian/libwebkit2gtk-3.0-0.install:
   - Don't install .la files.
 + debian/rules:
   - Re-enable parallel build support, the above patches should
 make it work.
 + debian/libwebkit2gtk-3.0-{0,25}.install,
   debian/control,
   debian/rules:
   - Renamed libwebkit2gtk-3.0-0 to libwebkit2gtk-3.0-25.
   - Make libwebkit2gtk-3.0-25 break/replace the old
 libwebkit2gtk-3.0-0 as the injected-bundle module path
 is the same.
 + debian/libwebkit2gtk-3.0-25.symbols:
   - Add a symbols file for libwebkit2gtk-3.0.
   * debian/watch:
 + Updated to work with the new page.
   * debian/rules:
 + Run dh_autoreconf. Makes it easier to backport upstream patches
   that modify autotools files.
   * debian/control:
 + Mention dummy in libwebkit-dev's long description to shut
   lintian up.
 + Bump Standards-Version to 3.9.4; no changes needed.
 + Bump libharfbuzz-dev's minimum build dependency to pick up a
   dependency against the new libharfbuzz0a package.
Checksums-Sha1: 
 66966be3a5019b3174fc8f6b8c776dae14baed9d 3452 webkitgtk_2.0.2-1.dsc
 1e977150db1ac10df6f791be178f20e5cbf95a39 9845276 webkitgtk_2.0.2.orig.tar.xz
 fb0896d296cb9b5f3a0d0de0aa8eb19caa4e19ef 85693 webkitgtk_2.0.2-1.debian.tar.gz
 2371e97be4310c7eec68e0572a58ff9fa25922d3 939082 
libwebkitgtk-1.0-common_2.0.2-1_all.deb
 21bab10675e13a36968e6a02ab2c1ea5fc73a682 939224 
libwebkitgtk-3.0-common_2.0.2-1_all.deb
 30b328464fb00c86624449197d4fca513946aed2 1376912 
libjavascriptcoregtk-1.0-0_2.0.2-1_amd64.deb
 4de1484a44f88648a0f2fd3616762fb36e7e116b 33614 
libjavascriptcoregtk-1.0-dev_2.0.2-1_amd64.deb
 76e6c980069a20b022bb32e6391bd6c0aab4a19b 39126594 
libjavascriptcoregtk-1.0-0-dbg_2.0.2-1_amd64.deb
 52aa0ad5965b88638d493309121c235cd2c09585 21396 
gir1.2-javascriptcoregtk-1.0_2.0.2-1_amd64.deb
 

Accepted ed 1.9~rc1-1 (source amd64)

2013-06-01 Thread Martin Zobel-Helas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 11:57:05 +0200
Source: ed
Binary: ed
Architecture: source amd64
Version: 1.9~rc1-1
Distribution: unstable
Urgency: low
Maintainer: Martin Zobel-Helas zo...@debian.org
Changed-By: Martin Zobel-Helas zo...@debian.org
Description: 
 ed - classic UNIX line editor
Closes: 640341 680801
Changes: 
 ed (1.9~rc1-1) unstable; urgency=low
 .
   * New upstream version 1.9 RC1
 This might fix our build failures, thus: (Closes: #640341, #680801)
   * Bump Standards-Version, no changes needed.
Checksums-Sha1: 
 0bb2e661a110ebc5e01d0dd2b86379423c1caa79 1652 ed_1.9~rc1-1.dsc
 23b940280be9f8fe111e111d6585eac148a3d465 87708 ed_1.9~rc1.orig.tar.gz
 a0daa465b99b5bcd8347b72f3e0da353a71559ac 6463 ed_1.9~rc1-1.diff.gz
 b591541d293793cda2ac3c96698a1d5b29525b47 57668 ed_1.9~rc1-1_amd64.deb
Checksums-Sha256: 
 22f4ee31c8df0c115d9a1e50a8cbcc926736f69a22769571e972a5249e0860a3 1652 
ed_1.9~rc1-1.dsc
 c832d9542ec3aeb23d0ccc900a4ac31c2fdd6b475d61ee0e2dbd9a098807620c 87708 
ed_1.9~rc1.orig.tar.gz
 cfa8d0d6224f790aa0e7efc00f60e26d431dae470ac4f3ed3440b1f97a822cf6 6463 
ed_1.9~rc1-1.diff.gz
 131f89fcb21326f423659ab36941683bf504bb71cde975d38ae82d273fc46cde 57668 
ed_1.9~rc1-1_amd64.deb
Files: 
 57eaeb62bc25cf3afee3c5a8e6961aad 1652 editors optional ed_1.9~rc1-1.dsc
 7d0313897c6e4517cad6068c8dd35bf4 87708 editors optional ed_1.9~rc1.orig.tar.gz
 74e0ad6298a366f0917392e4be611f97 6463 editors optional ed_1.9~rc1-1.diff.gz
 87473f660f7ea265cff16f6cedb339f9 57668 editors optional ed_1.9~rc1-1_amd64.deb

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

iQIcBAEBCAAGBQJRqcYQAAoJEFOxrG2xG2J7/jkP/1jUkZxQxyOQM+4b16gDXge3
4LtfsiwbiDnHcdoLr0/pmsNIzTrNZCFScesybVhRKy5MEzsJkd79UL4UU8RoYSGX
w+cbzpyRHkedXUxERHmLlm2BDj78o4dUHBwnAOo6uvBuKDOdmZKnefujoTTGfwhc
RE7KfvHX7CQEaHc+rQBEqn7T7GoXCLWum3b4h2qdcVAQQf4IyV26GG2yn6AWuWhh
PyR5NAZBwjD80wdefmHaIpM7gCXVDnQhduFp4ItY20SL50obSukk6CG1NXVUDRTd
oQdjJAb4qPvAy7DmXK3sNf5nk3rIvUkb34iaV3m1OatMKh8GRXu7F+9EdU6GOGuM
3ek7LsCxQ/mQwjsryB9leap00gVn9BnzAzU0QuqFqWAp/3x4GSL8Osh27V+TM5ZB
cgUJ9Ddz3MLaEyfpTDUn5aiZPlTX013Y8YNrtb6O5/48ldcov8pQkIxSomjZMpzL
tp4Cf9PqGNjtAqpBgIP5ZrSummxpb7a6lzI+mbj/JJ7ettMO4OEWl/ysjWVA4pvd
1g6TD1Q7C9uzJ/xQeh10nQmnNPlnrR5uBln/2WeWUqFoJcYmiiVWPgJxEupA4Oz+
bMO7R3H51wpJ5MQCFlv4xxb9VOylfVY/nkMBNTOjUXO+aZz1BUuiOw7BRzOkWnPb
HQLaFm/xuuqIv1V6PMjw
=GuRk
-END PGP SIGNATURE-


-- 
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/e1uiisr-00041u...@franck.debian.org



Accepted httrack 3.47.16-1 (source all amd64)

2013-06-01 Thread Xavier Roche
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 11:48:45 +0200
Source: httrack
Binary: httrack webhttrack webhttrack-common libhttrack2 libhttrack-dev 
httrack-doc proxytrack
Architecture: source all amd64
Version: 3.47.16-1
Distribution: unstable
Urgency: low
Maintainer: Xavier Roche ro...@httrack.com
Changed-By: Xavier Roche xav...@debian.org
Description:
 httrack- Copy websites to your computer (Offline browser)
 httrack-doc - Httrack website copier additional documentation
 libhttrack-dev - Httrack website copier includes and development files
 libhttrack2 - Httrack website copier library
 proxytrack - Build HTTP Caches using archived websites copied by HTTrack
 webhttrack - Copy websites to your computer, httrack with a Web interface
 webhttrack-common - webhttrack common files
Changes:
 httrack (3.47.16-1) unstable; urgency=low
 .
   * Updated to 3.47.16 (3.47-16)
Checksums-Sha1:
 a0dfae35929993c37df524bf6323ed1aa7166cad 1410 httrack_3.47.16-1.dsc
 1af6f8d26a2bf70f268966543c65fe472b119ff8 1754381 httrack_3.47.16.orig.tar.gz
 5d7ab62d72e7b3beb17efd8de10279cd04773f77 28520 httrack_3.47.16-1.debian.tar.gz
 273e3cdbab6d39f8b11c41da7f54ea2e5c4e324a 400700 
webhttrack-common_3.47.16-1_all.deb
 aa9c46b430318511167a385c475652cb817bbeeb 519410 httrack-doc_3.47.16-1_all.deb
Checksums-Sha256:
 c41d80932156c008fc4f4aabbeea4d923d5ffcf54c5918762008d8077487d7ec 1410 
httrack_3.47.16-1.dsc
 cee3d343e41d995ca3d82bb20a4c8ffa3326265cea96d9fd6860331ffce6bd6c 1754381 
httrack_3.47.16.orig.tar.gz
 3c827744e39fea98986c4949f00f5bd38ca8651aa064a759c9d5c7c60f5da90b 28520 
httrack_3.47.16-1.debian.tar.gz
 aa4e2d499d1d50326ba759b86255462181703eac48aff41358756f4132c39aaf 400700 
webhttrack-common_3.47.16-1_all.deb
 d83e34a467a65a8d6611670c999b3885a3e16ed5d3e65ee44b321ef5b761fde2 519410 
httrack-doc_3.47.16-1_all.deb
Files:
 1a725bd41229581a49f27d1223e9f350 1410 web optional httrack_3.47.16-1.dsc
 7d204ab987b243d0339bea8419be717b 1754381 web optional 
httrack_3.47.16.orig.tar.gz
 e1876d7ead54edca1f06dfde8af088fc 28520 web optional 
httrack_3.47.16-1.debian.tar.gz
 d97d9d66e33929fbe4d66f0f8412fb6d 400700 web optional 
webhttrack-common_3.47.16-1_all.deb
 942387406fc87031f3894a1d46be1e61 519410 doc optional 
httrack-doc_3.47.16-1_all.deb

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

iD8DBQFRqcUB3PjWWwPzWYgRAtXYAKDx85JTMPCkGKtGYf5jDDg2B5wt5ACguCVj
KLdvg61VYxeTdVlPRryynkc=
=MRNp
-END PGP SIGNATURE-


-- 
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/e1uiit4-0004mw...@franck.debian.org



Accepted krb5-auth-dialog 3.8.0-2 (source i386)

2013-06-01 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 31 May 2013 17:10:20 +0200
Source: krb5-auth-dialog
Binary: krb5-auth-dialog
Architecture: source i386
Version: 3.8.0-2
Distribution: unstable
Urgency: low
Maintainer: Guido Günther a...@sigxcpu.org
Changed-By: Guido Günther a...@sigxcpu.org
Description: 
 krb5-auth-dialog - tray applet for reauthenticating kerberos tickets
Changes: 
 krb5-auth-dialog (3.8.0-2) unstable; urgency=low
 .
   * Upload to unstable
Checksums-Sha1: 
 2714262ea9a659ae1fd42c8684f1008f4c1e2751 1563 krb5-auth-dialog_3.8.0-2.dsc
 a7d2ca9a29b74c8b3431793fce51020a3ac7fd50 5720 
krb5-auth-dialog_3.8.0-2.debian.tar.gz
 eef411eae36d9c7b4b762a2169fefe4cef9894ef 267426 
krb5-auth-dialog_3.8.0-2_i386.deb
Checksums-Sha256: 
 04ac91abc4a9585a1514870f069b43b292e3a2e1c0a12ef4d28a38e6cfd49db2 1563 
krb5-auth-dialog_3.8.0-2.dsc
 086b06408fc0de186f05f254b218efca8126b205e2666b9e648addc06c6d151d 5720 
krb5-auth-dialog_3.8.0-2.debian.tar.gz
 a817e2d08ee980dde2aabafaf703e828ae7e84c88399c62ce0fc92d147b76e0c 267426 
krb5-auth-dialog_3.8.0-2_i386.deb
Files: 
 91a95bd08fcb33add9f10afd9762e398 1563 gnome optional 
krb5-auth-dialog_3.8.0-2.dsc
 bd3535846a36ff63ffd22d53d6d10119 5720 gnome optional 
krb5-auth-dialog_3.8.0-2.debian.tar.gz
 a607278aab4f7ef004f9e483209dd0f9 267426 gnome optional 
krb5-auth-dialog_3.8.0-2_i386.deb

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

iD8DBQFRqOMun88szT8+ZCYRAt7GAJ9S9l81OQBLFbQ4U/1/omuqTt45kACfVgv5
W+y20ciSE49ldaJ0H6pLBSY=
=NY8i
-END PGP SIGNATURE-


-- 
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/e1uiitl-0004uh...@franck.debian.org



Accepted mgltools-viewerframework 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-viewerframework
Binary: mgltools-viewerframework
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-viewerframework - ViewerFramework supports building visualization 
applications
Changes: 
 mgltools-viewerframework (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 ef6c5ef0130d03bd35b3257c6f656e99312c6fb5 1778 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519-1.dsc
 cd57b95d601a6290e4f68b7f58519036e4a11c7f 345846 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519.orig.tar.gz
 78f9b5f27f840b0fa048706c9a7e3a8a5f98c044 6327 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 e5cff08e0c506d1f34e3a9cd6d4d187b171bf627 360730 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 ed989bc27cf14c7fe34cf6f01aa6d5cbaf0e4d1bb31e685643af400853f18b0c 1778 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519-1.dsc
 27807e5d537dd74d6e8b5235b647c0007694f9adca3ecc66fb3efa30cacc6495 345846 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519.orig.tar.gz
 0ab75bb6a5ea8eeb9a77d5daf0d5f849c533dab34281ec06dfc270610fd39452 6327 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 a92979af30c292db33686623db6a6f8e5909743cce999f01ef02dcc27bfbf2f6 360730 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 a37dae1d8c44cbda3bb665a1cfc0469d 1778 non-free/science optional 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519-1.dsc
 438e79efb3c88c16133dead8893187c5 345846 non-free/science optional 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519.orig.tar.gz
 6ee1f4101de0798ef737a9c3f47490ac 6327 non-free/science optional 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 8d4f9735d319c9adb4caf42b3c21a507 360730 non-free/science optional 
mgltools-viewerframework_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGo47wACgkQ02K2KlS5mJBd/QCeIB9R9RBXOurGYXF7hh1Kt7dH
e58AniPLvlL1lwW7u/GcISAvBYffstEA
=hzGU
-END PGP SIGNATURE-


-- 
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/e1uiitv-0004zg...@franck.debian.org



Accepted mgltools-vision 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-vision
Binary: mgltools-vision
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-vision - Python-based Visual Programming Environment
Changes: 
 mgltools-vision (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 54ede1d6d336040eea025d4d16f1494708dfb19c 1699 
mgltools-vision_1.5.7~rc1~cvs.20130519-1.dsc
 95865edf9a9cda2aa37d60397ddc1fcb3b7a0cea 21009929 
mgltools-vision_1.5.7~rc1~cvs.20130519.orig.tar.gz
 6e895160e4f62dd8a50a236a0c9a3112d5d764b8 8159 
mgltools-vision_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 f115a4fef56e3691a557e2200a2d455447030a30 5200266 
mgltools-vision_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 d348afb20c008f6b403e52356269dd5c5eda9351d75f7a6d9e109a69a3910958 1699 
mgltools-vision_1.5.7~rc1~cvs.20130519-1.dsc
 de1cce9795a2e686e6177de3fef4d9f11e0a5ec46da8eca07647fd893a2c 21009929 
mgltools-vision_1.5.7~rc1~cvs.20130519.orig.tar.gz
 de899314579405bd2c0ba59ff5da1b19bf769b9383e3e3f3d1c0f5bc80e02346 8159 
mgltools-vision_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 5cd27e002d2a09d54698330e3fd4cb2ee88d8b98596aee57812771bbe37d5676 5200266 
mgltools-vision_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 098b0f53afd1e7c659bb2390297fb3e4 1699 non-free/science optional 
mgltools-vision_1.5.7~rc1~cvs.20130519-1.dsc
 e4febd08e407bf492f54a2da862888f8 21009929 non-free/science optional 
mgltools-vision_1.5.7~rc1~cvs.20130519.orig.tar.gz
 f2832c68f7e843b3d1da38cf2fae55ca 8159 non-free/science optional 
mgltools-vision_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 1ed8e9797b003680434f747db46fa78e 5200266 non-free/science optional 
mgltools-vision_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGo4+cACgkQ02K2KlS5mJAPLgCff3v3vtzmAQ5mNm2/LfMq5lXb
arIAn1jJ1F+CKTMrBq98/UCckEdYVnZz
=q1RW
-END PGP SIGNATURE-


-- 
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/e1uiitf-0004et...@franck.debian.org



Accepted fonts-lohit-deva 2.5.3-1 (source all)

2013-06-01 Thread Vasudev Kamath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 13:49:41 +0530
Source: fonts-lohit-deva
Binary: fonts-lohit-deva
Architecture: source all
Version: 2.5.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Changed-By: Vasudev Kamath kamathvasu...@gmail.com
Description: 
 fonts-lohit-deva - Lohit TrueType font for Devanagari script
Changes: 
 fonts-lohit-deva (2.5.3-1) unstable; urgency=low
 .
   * Imported Upstream version 2.5.3
   * Fixed the Vcs-* fields with canoncial url (anonscm.d.o).
   * Marked the package as Mutli-Arch foreign to allow installation on
 foreign architecture.
   * Upload to unstable.
   * Added links file to install symbolic link to 66-lohit-devangari.conf
 to /etc/fonts/conf.d folder.
Checksums-Sha1: 
 7df391700f19b6324136106434ab06349ac612d4 2020 fonts-lohit-deva_2.5.3-1.dsc
 8531679f408caef046899fff9255a22ff8b9f7d8 138091 
fonts-lohit-deva_2.5.3.orig.tar.gz
 add0b429cfd0b2b226f3054274ee72fd63adc106 3899 
fonts-lohit-deva_2.5.3-1.debian.tar.gz
 73e1fd970039c44d8c73bb67c7590dd1730af8ef 47962 fonts-lohit-deva_2.5.3-1_all.deb
Checksums-Sha256: 
 8913f4f84a8707fc8908494b9ee79241da6eddf1792d28f869e8300375b1e066 2020 
fonts-lohit-deva_2.5.3-1.dsc
 1022d0024781e1863445b274a02058b8b7a1039b5ca966a64e42bfb2f6940b3a 138091 
fonts-lohit-deva_2.5.3.orig.tar.gz
 d48c52cea998c8abfa1444b2d44edc1cbc4b82c838a802a70c01eafa8b5a0bef 3899 
fonts-lohit-deva_2.5.3-1.debian.tar.gz
 b8db5a9543583d4a512be2f48eb3b4b89b125c1b9dc58a0301dc48124ce5bd31 47962 
fonts-lohit-deva_2.5.3-1_all.deb
Files: 
 50602a8a31a8d44aa6d2a65e4e615cdd 2020 fonts optional 
fonts-lohit-deva_2.5.3-1.dsc
 d973aa266e5d5e47579bab9d8785d0a2 138091 fonts optional 
fonts-lohit-deva_2.5.3.orig.tar.gz
 d492b5dc339e72e2e598044d66b2da9f 3899 fonts optional 
fonts-lohit-deva_2.5.3-1.debian.tar.gz
 0e58d2ab8124c2690c1ff4a22d9214cf 47962 fonts optional 
fonts-lohit-deva_2.5.3-1_all.deb

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

iQIcBAEBAgAGBQJRqconAAoJEGyPdK6HcAt+KjcQANyW09G4q7FfohantXPcNE5S
KE/qEu0oAjTka+9rFM0Rtxaws8JPestnVAoRpnMU57JtGZDYybWlQ7kgyCatpkvp
NsSFrn9DR/LksUjc0Ku/7MD0OgsZzuoAHETpCgFdM0S+Ajcd9gFg/7GBXuaeyd0H
Fl4YXWxucaz3ycbURAi0z1YEhDdj4AKZRfx1FE7lOG7bG0ayn3ZAKWMEFRuROlC2
4vxj64qLdRORTm0QdXshL7P/yDG5CBEMdFx1PUyGawQNpSlNznRal6e+u0iLLUhS
WuAmmiLq6gWs0J5uBy6WqfBCVBdE1oweTdH5DwVBtDAS+GOs3Koz7tdd3W5qlIwH
qxLtV+i0rcakscfdysi5+K6GPuap+peobdjMPSsyxjkXUOAY3hxmO4Hbm63rHxd7
A6Bq27Y0nTxFUW++YiDUr1erK7W1KX44gCDUkYg1VYQJA7gi0RFBRN2tCo37JIT2
v+xgxcOjdnZUz7dj8Z/6zrqD4lFiI1F3MAfsVkNmw8WxmKbIjq2yovBscHMxD1zZ
s4Le7zpvAHt9/1kFfTvztWtEACst71PzliJvM7OU5VZrIiHzqqUZk5AlgFyD2ebs
1pmkxQwOQJOUDqN9ZSuE6admEMI+sKPVZz2w3/zVzrZmCXMTUAEQz3mpjPasE6T2
1ZQ8IoO6ZKzcsbe5VGFD
=XCtY
-END PGP SIGNATURE-


-- 
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/e1uij7u-0002fa...@franck.debian.org



Accepted libldm 0.2.3-2 (source amd64)

2013-06-01 Thread Hilko Bengen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 12:09:38 +0200
Source: libldm
Binary: libldm-dev libldm-dbg libldm-1.0-0 ldmtool
Architecture: source amd64
Version: 0.2.3-2
Distribution: unstable
Urgency: medium
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Description: 
 ldmtool- tool for managing Microsoft Windows dynamic disks
 libldm-1.0-0 - library for managing Microsoft Windows dynamic disks
 libldm-dbg - Debug symbols for libldm
 libldm-dev - library for managing Microsoft Windows dynamic disks
Closes: 710641
Changes: 
 libldm (0.2.3-2) unstable; urgency=medium
 .
   * Fixed building ldmtool with newer glib versions (Closes: #710641)
Checksums-Sha1: 
 f29085c218a0e4e87ca84ec52518bbb93cea786c 1321 libldm_0.2.3-2.dsc
 95c4ef42c71039d07f37a2fc72c3e788ad843c81 3738 libldm_0.2.3-2.debian.tar.gz
 66d0a7793ca8849830115f5c2136e5a02cce0afe 27740 libldm-dev_0.2.3-2_amd64.deb
 5a40e0886dab60c2510f0141f892c885cfa0 69462 libldm-dbg_0.2.3-2_amd64.deb
 e71a062f90b29c3dd9eb8e61af44292d9f4d2711 24270 libldm-1.0-0_0.2.3-2_amd64.deb
 0616da03dcc5c15ff7eb9c3fcf4bcd99718a6d60 14628 ldmtool_0.2.3-2_amd64.deb
Checksums-Sha256: 
 ee20ae5ccb01b2882c82bb0f3e69eaaeaac71fea8b588273bbe6e1e53c95c503 1321 
libldm_0.2.3-2.dsc
 0aad5e9882606e62dc93a1b48dbe5c49db5954aefc6ed2e0e41572a133d45138 3738 
libldm_0.2.3-2.debian.tar.gz
 c7ec5398338cd1fd4b648c7f3d68b9545303db9f7868f35d76c9de4b6e58c723 27740 
libldm-dev_0.2.3-2_amd64.deb
 72a0a068b396937a80743898fe7eeea7bb2fd4222d37306446e19b6e1f7fff5c 69462 
libldm-dbg_0.2.3-2_amd64.deb
 dc6e1b932c934e59269d7ea3b834b97dd70c62dc74d03c88eefd8d4a0ccdb554 24270 
libldm-1.0-0_0.2.3-2_amd64.deb
 0d064d121d5a6912a8fed30adfe0ba9c9a31cc3145e52ca52fbac0a01fb749ef 14628 
ldmtool_0.2.3-2_amd64.deb
Files: 
 c5f3702f5206ac3b3389092be7c5bff2 1321 libs extra libldm_0.2.3-2.dsc
 6000cba640d0af8482a27468c7f83f6e 3738 libs extra libldm_0.2.3-2.debian.tar.gz
 a9b697a3f32693c07dc2fdfaa6039fbf 27740 libdevel extra 
libldm-dev_0.2.3-2_amd64.deb
 1ff049d3a0c69bbbfef52b435f8561b8 69462 debug extra libldm-dbg_0.2.3-2_amd64.deb
 7b60dc4fbc64706e572e2433a83d2ec3 24270 libs extra 
libldm-1.0-0_0.2.3-2_amd64.deb
 a03d5b8ceb911626c71a59a2a863a2ae 14628 otherosfs extra 
ldmtool_0.2.3-2_amd64.deb

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

iEYEARECAAYFAlGpy4sACgkQUCgnLz/SlGj9ewCgy0pSYxtax4sUEhpRA/xSWV8Q
vnUAn01pLjjE4OnKTZ0rwfST7ZRW8YU5
=v5EN
-END PGP SIGNATURE-


-- 
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/e1uij7k-0002ve...@franck.debian.org



Accepted fonts-lohit-gujr 2.5.3-1 (source all)

2013-06-01 Thread Vasudev Kamath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 16:15:14 +0530
Source: fonts-lohit-gujr
Binary: fonts-lohit-gujr
Architecture: source all
Version: 2.5.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Changed-By: Vasudev Kamath kamathvasu...@gmail.com
Description: 
 fonts-lohit-gujr - Lohit TrueType font for Gujarati Language
Changes: 
 fonts-lohit-gujr (2.5.3-1) unstable; urgency=low
 .
   * Imported Upstream version 2.5.3
   * Fixed the Vcs-* fields to use canonical url anonscm.d.o.
   * Marked the package as Multi-Arch foreign
   * Added links  folder to install the 66-lohit-gujarati.conf symlink to
 /etc/fonts/conf.d folder.
   * Upload to unstable.
Checksums-Sha1: 
 4714db09a1fc536aa3ff136425bcb30f340af714 2040 fonts-lohit-gujr_2.5.3-1.dsc
 b3618105b198cd6083d2e50053991a842047d27f 119741 
fonts-lohit-gujr_2.5.3.orig.tar.gz
 fe80a130dd67168ddef6b86209d41c7f5c798497 3719 
fonts-lohit-gujr_2.5.3-1.debian.tar.gz
 3eed2d60fc3a115160b57007195fe7293dc22053 38350 fonts-lohit-gujr_2.5.3-1_all.deb
Checksums-Sha256: 
 1679dc75ca40982f86c858889637927c3683d2a8f8e42f484c4a470370465ef7 2040 
fonts-lohit-gujr_2.5.3-1.dsc
 2f82398c925c779c77e116d1cf8bbe2b8784a274323843e95a4d1bfa9de07302 119741 
fonts-lohit-gujr_2.5.3.orig.tar.gz
 af939e8b9cc5451c6e49dc516b661c7596d7fcfdae5abbb480ca1f42f573c778 3719 
fonts-lohit-gujr_2.5.3-1.debian.tar.gz
 33f0bcaa55dc56559e60f2e6be03eb67d8b69f87a2fe48217be86a9d88f8bfbb 38350 
fonts-lohit-gujr_2.5.3-1_all.deb
Files: 
 f8cfb50a2507b79669324351e9bbe256 2040 fonts optional 
fonts-lohit-gujr_2.5.3-1.dsc
 0390070b6ac99c39f051c4beb958ac08 119741 fonts optional 
fonts-lohit-gujr_2.5.3.orig.tar.gz
 64cd2c6b6e052a6eccd3eba0c57087ee 3719 fonts optional 
fonts-lohit-gujr_2.5.3-1.debian.tar.gz
 9c39adbced8aef385815879a121df851 38350 fonts optional 
fonts-lohit-gujr_2.5.3-1_all.deb

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

iQIcBAEBAgAGBQJRqdLrAAoJEGyPdK6HcAt+fyAP/0QWna9wsS0M8wO+EDjnpOlk
YCetL8iuFv5EX+1I+BeIhZp55zgTZn2Ke5Gtqhls3WCRY4pFIC0+uLjeWk8PYW6q
X3R/UFWRu/kijnGgn3jocN9KzY5WS4M0us2V6Wa1b5GSS9ykU/7k75nPD1Xe71RU
1orYoEz+ECM2ffVmZCm6UQFUWkZWuMWfQOS694IiNQR1eVjk48bh3Up9X7JLwcYF
Xb3Eqo563bQXa7tZh9iwIkpuUDbCCMPd4txDdlH6LWxTZ1IYFfVshC+CQs3gT5xe
iwaUnlEe+p+G9lCd8Q5hoWUvwKTQ5U5Lizzzvz2J9u+mIXFiEYacOLn3zIlEI5ow
tm84elhLw3IieSgySyQ59kszlymcoe5H2DxB7tFnOYRahasKRLFEONfdK8mitgwg
LXFuNxPyUzMxfbt99wTLPb17wMELBCpn642OKsm0ZmTSJT12jaEA9Ih6epcQttpv
hVsKf50BKoIGhGU2gmsMNHOOGwrJyYqoyfNdSyzWZrT2VAKqiOitFG9KN96NOIWT
mhbXMgvZ227f6KD+fJ6gfcpUKcZmh11Z0svg4T4aWrJpC0zbv3EKYbgRCtqRb9RW
zkCtYFYymn1PjxsWW2LpCToldQPOqB888YfWU1e9j7GUGBwPoM3N7iEq0HpoSMo2
+RC9aBoJ6VTspyNpA3C9
=1Kht
-END PGP SIGNATURE-


-- 
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/e1uijae-00052m...@franck.debian.org



Accepted movabletype-opensource 5.1.4+dfsg-5 (source all)

2013-06-01 Thread Dominic Hargreaves
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 11:54:33 +0100
Source: movabletype-opensource
Binary: movabletype-opensource movabletype-plugin-core 
movabletype-plugin-zemanta
Architecture: source all
Version: 5.1.4+dfsg-5
Distribution: unstable
Urgency: low
Maintainer: Debian Movable Type and OpenMelody team 
pkg-mt-om-de...@lists.alioth.debian.org
Changed-By: Dominic Hargreaves d...@earth.li
Description: 
 movabletype-opensource - Well-known blogging engine
 movabletype-plugin-core - Core Movable Type plugins
 movabletype-plugin-zemanta - Zemanta Movable Type plugin
Closes: 669885
Changes: 
 movabletype-opensource (5.1.4+dfsg-5) unstable; urgency=low
 .
   * Use Apache 2.4 configuration handling (Closes: #669885)
   * Add more Lintian overrides for LICENSE files installed as part of
 codemirror
   * Update Standards-Version (no changes)
Checksums-Sha1: 
 53ed6aca24bab04275137ebb7863323970c156cd 1668 
movabletype-opensource_5.1.4+dfsg-5.dsc
 bcf1a2c312fe297e64ef261c3ce7de6d36fabf00 35028 
movabletype-opensource_5.1.4+dfsg-5.debian.tar.gz
 971fa83b8f189a0752ce81e09eebdc339f3af012 4110694 
movabletype-opensource_5.1.4+dfsg-5_all.deb
 5df495bcca99c4a0890bdb514aa1294b3e1f521d 170666 
movabletype-plugin-core_5.1.4+dfsg-5_all.deb
 85062115daaa5c3cbd3fd491b370292670c58fb5 16466 
movabletype-plugin-zemanta_5.1.4+dfsg-5_all.deb
Checksums-Sha256: 
 8dcd8b4b730c7e67585f88ee635ad5e66eabeac491064763072410a40b48b57f 1668 
movabletype-opensource_5.1.4+dfsg-5.dsc
 ace556fa6cf1be315d393f4fc2808be36fbc96549a5ca8a6e8a1702f35d7f6dc 35028 
movabletype-opensource_5.1.4+dfsg-5.debian.tar.gz
 b5613c978366fe3a01f1f884fae95cbc5a88122b3ab6f0b31039137879b01677 4110694 
movabletype-opensource_5.1.4+dfsg-5_all.deb
 00dbb3797d227f2ec3b50dad529d9890b99a361068cac74cd162eb0734eb7483 170666 
movabletype-plugin-core_5.1.4+dfsg-5_all.deb
 0dd93ecce8b984f25d5baca3b7ab13708995a8329cd71bf01f114ac405bdb992 16466 
movabletype-plugin-zemanta_5.1.4+dfsg-5_all.deb
Files: 
 cef6c57f08135a469ba528164740ab64 1668 web optional 
movabletype-opensource_5.1.4+dfsg-5.dsc
 03b6ef94a7edf25bc60b7a576b8776ff 35028 web optional 
movabletype-opensource_5.1.4+dfsg-5.debian.tar.gz
 d01e2d7331c8e965e55e23004f1779e6 4110694 web optional 
movabletype-opensource_5.1.4+dfsg-5_all.deb
 de449850283818c6657d1f1157c92a8f 170666 web optional 
movabletype-plugin-core_5.1.4+dfsg-5_all.deb
 c4472040d01da116f5539b1c787168b5 16466 web optional 
movabletype-plugin-zemanta_5.1.4+dfsg-5_all.deb

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

iD8DBQFRqdNRYzuFKFF44qURAuHQAKD9SFPLMV7o4Oabn7RshkOz2YLj7wCeKAij
7mfVBErxQ4eRdFJ4A5fApJk=
=z31m
-END PGP SIGNATURE-


-- 
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/e1uijbe-0005gq...@franck.debian.org



Accepted fonts-lohit-guru 2.5.3-1 (source all)

2013-06-01 Thread Vasudev Kamath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 16:52:20 +0530
Source: fonts-lohit-guru
Binary: fonts-lohit-guru
Architecture: source all
Version: 2.5.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Changed-By: Vasudev Kamath kamathvasu...@gmail.com
Description: 
 fonts-lohit-guru - Lohit TrueType font for Punjabi Language
Changes: 
 fonts-lohit-guru (2.5.3-1) unstable; urgency=low
 .
   * Imported Upstream version 2.5.3
   * Marked the pckage as Multi-Arch foreign to allow installation on
 multi-arch installations.
   * Vcs-* fields now use canonical anonscm.d.o URL's.
   * Bumped Standards-Version to 3.9.4 without changing source package.
   * Added links file to install symlink to 66-lohit-punjabi.conf to
 /etc/fonts/conf.d folder.
Checksums-Sha1: 
 f1764797f2f1967e00f456eb85c2cdcb0014f3c6 2001 fonts-lohit-guru_2.5.3-1.dsc
 94cd3243312d2874b67a005577b22b8bf1753e41 49099 
fonts-lohit-guru_2.5.3.orig.tar.gz
 addf3f1e73492515b398cfe0ac384dd32539bd5e 3534 
fonts-lohit-guru_2.5.3-1.debian.tar.gz
 6c36e6d45a430055fab831be9acfb61d5adf3ebe 22110 fonts-lohit-guru_2.5.3-1_all.deb
Checksums-Sha256: 
 391fd80cb4be6fbef399fff6049859a4452026a68f514f367a8cf6cc737d428c 2001 
fonts-lohit-guru_2.5.3-1.dsc
 a6af1444c6c93a5c3eda0c09bfe93a75d7d5e055720d5c90e4c006e43cac47cb 49099 
fonts-lohit-guru_2.5.3.orig.tar.gz
 dce26e2da416fd5d9f3df22c2fc3ff25d220482045edaf29d96cdbf57784aec0 3534 
fonts-lohit-guru_2.5.3-1.debian.tar.gz
 4294dcc06673da059d8f5b72f661a2ef0a604b20272ba3e29317a788c56cc011 22110 
fonts-lohit-guru_2.5.3-1_all.deb
Files: 
 e5025fd76710ebf13a1983470b6e9462 2001 fonts optional 
fonts-lohit-guru_2.5.3-1.dsc
 ce74dcc10d671bc4e40595e9c29eb7de 49099 fonts optional 
fonts-lohit-guru_2.5.3.orig.tar.gz
 313d7e9c0ae64bdb871d5f107d69a008 3534 fonts optional 
fonts-lohit-guru_2.5.3-1.debian.tar.gz
 b794f74b1c1f667eda14cdf1b215f035 22110 fonts optional 
fonts-lohit-guru_2.5.3-1_all.deb

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

iQIcBAEBAgAGBQJRqduAAAoJEGyPdK6HcAt+L04P/jRL+eMPPfLvQTYGx27ijT2o
dNNrhWe1r2wyBwKMbPyZdsM6bGRb6kqR+gnk0WJzszMkC1ttPrf5CJ/1BY32xo4E
tiGPCnUnY/3bzQp4CRSvmDFysO5Su9cl1GpD/o+6LkM0G0S+8jjGSxG+3DMAwKA3
NVhdzk39nHPiwbsJKTDB8eCh73yhpnrwGHmcQ9BDNDY6a2hKDcS3/kT9pf18YDQj
hVHjcr9lsPh/C4bT6UUqbHAbeMrSd7vrNk0/JyKdYqAsBcgb30SkFr7F3Jzn5Dhf
sMwVBVmNeFhFTWcOHUutivsFEEOYaC6DT7J/Xj26EgW9YPhpCsDgyh1T9vh5LMuN
Pbq3+IcUXW67kodzFIVUh9/z/fhmXn7sKFXw/j6A20Y+eBkrL+gASPs6F9AAjtp3
7xFAwjToAquiKpcuBq/LTVRMg/Z8HvhXV3WPUuORlE4N85xZeeL2GwnaVLvb1z3/
7yWmUUdEm6YtbGlNm8sefwMaYsajKeNHs6rF4JlNoZGuxnaRLDgpxJqjKCS5Nc99
omEJb5BteP9c9nBFuXr/YLCJhd2QXTKFupqdRjQwWTcykDrclSkxgpRBGU6HHYR1
JPxnSZ08M3KPq6BFcNNh4ilCvgdL2cBTvARcJFyq4eaYchfV1bJAYNtSfYuS9Fl7
zj51SLJBgElei36SFR77
=xylN
-END PGP SIGNATURE-


-- 
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/e1uikwl-0003bb...@franck.debian.org



Accepted foundry 0.0.20100226-2 (source amd64)

2013-06-01 Thread Simon Richter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 13:39:46 +0200
Source: foundry
Binary: foundry
Architecture: source amd64
Version: 0.0.20100226-2
Distribution: unstable
Urgency: low
Maintainer: Simon Richter s...@debian.org
Changed-By: Simon Richter s...@debian.org
Description: 
 foundry- Code generation tools
Closes: 710652
Changes: 
 foundry (0.0.20100226-2) unstable; urgency=low
 .
   * Fix build against bison 2.7 (Closes: #710652)
Checksums-Sha1: 
 267942cd82bc521f418fb8a3d2d1982436007ff3 1476 foundry_0.0.20100226-2.dsc
 18844403cb4aa0991ef29a89720f798455743885 2701 
foundry_0.0.20100226-2.debian.tar.gz
 5887d1814c1320919f9b8ad1b198fd64a2ba41e3 75568 foundry_0.0.20100226-2_amd64.deb
Checksums-Sha256: 
 4f43f737d5ad27dfbdd8b7e8151f54e5b0c6d613d8a9b68102422fd2056f586d 1476 
foundry_0.0.20100226-2.dsc
 8f82b9791d90810c8d9a5d28fd653a687941c6819979f9d0519464dcc9dfa832 2701 
foundry_0.0.20100226-2.debian.tar.gz
 16d8df214b1befcf8860edb5650c9c408cd0df48a6802f49d73bf9153fd74d84 75568 
foundry_0.0.20100226-2_amd64.deb
Files: 
 2ef7f92d33c008fbd39d14e243239d03 1476 devel extra foundry_0.0.20100226-2.dsc
 7511e3ae3848745d60e895abe469191c 2701 devel extra 
foundry_0.0.20100226-2.debian.tar.gz
 ce7f3ddc1045a8580235027604a58326 75568 devel extra 
foundry_0.0.20100226-2_amd64.deb

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

iJwEAQECAAYFAlGp3lcACgkQ0sfeulffv7ttVgP/ZWk0yoabaodhdq0YnqVBtLiO
8flVXCbH9KeliSafOcRwt0tHn8DRZ8vOwxcSO6ANX1/ULAH7W8Y4Xqg+eSZqxz+A
SfWrOKLmkaZM01WpMyw1aWS6OoVPKF91G+w7OHZdesQlmAbM3e6JPLjaoJhG0eoB
oywREI9/sQKUyrOmaVc=
=nl1+
-END PGP SIGNATURE-


-- 
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/e1uikwt-0003fi...@franck.debian.org



Accepted librep 0.90.2-1.4 (source all amd64)

2013-06-01 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 30 May 2013 13:44:48 +0200
Source: librep
Binary: rep librep9 librep-dev librep-dbg rep-doc
Architecture: source all amd64
Version: 0.90.2-1.4
Distribution: unstable
Urgency: low
Maintainer: Luis Rodrigo Gallardo Cruz rodr...@debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 librep-dbg - debug symbols for librep
 librep-dev - development libraries and headers for librep
 librep9- embeded lisp command interpreter library
 rep- lisp command interpreter
 rep-doc- documentation for the lisp command interpreter
Closes: 709183
Changes: 
 librep (0.90.2-1.4) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix FTBFS on kfreebsd-amd64:
 apply patch from Steven Chamberlain:
 check for DEB_HOST_ARCH_CPU in debian/rules.
 (Closes: #709183)
Checksums-Sha1: 
 5f47de859a518d21df00aeafabc987cc75149eea 2099 librep_0.90.2-1.4.dsc
 7361efb91d72f8c781342367a892a90b6db2fe99 17408 librep_0.90.2-1.4.diff.gz
 90ef2099ba825093afbbaf2438182b3bc487112c 137700 rep-doc_0.90.2-1.4_all.deb
 ab945ba5d3009a7978fc0594f596e1b5ff5b8905 10402 rep_0.90.2-1.4_amd64.deb
 bec4276b787214694b2aab8db215250088ddd8f6 369546 librep9_0.90.2-1.4_amd64.deb
 3946a614f2d99c429fecfa90b5d6fc3310c3b2de 506318 librep-dev_0.90.2-1.4_amd64.deb
 c457e1b3654e4eaee46975ad6b211dbbe337de46 227732 librep-dbg_0.90.2-1.4_amd64.deb
Checksums-Sha256: 
 fc79ee61079ef1a7e1ee3de95da9216565bc30c125ba28962199e100ae9c85c9 2099 
librep_0.90.2-1.4.dsc
 42a98d1523b153ac6400ab4738be64247206ccdca5d67806cd414099ba9dc628 17408 
librep_0.90.2-1.4.diff.gz
 268e2f9223edfa796f848f12bfe01dcffcfa158e7de2e343fa420fee36c24729 137700 
rep-doc_0.90.2-1.4_all.deb
 79144714fa3be3de449b0b853d7f62b5286b22d4fe40ba5d346688bb9a3e4094 10402 
rep_0.90.2-1.4_amd64.deb
 39e173b21b2826d940477cadf4a5b2ed69aff96f1db13a6cf58f5539bf77bc43 369546 
librep9_0.90.2-1.4_amd64.deb
 13fed33ac1e08bf809c4ecdf0c34b8d8ab700d293531e6217eef2aec56c224bb 506318 
librep-dev_0.90.2-1.4_amd64.deb
 b991ba18f1517e82d46b46cc81f8750db9944bfc7a785b1af695c78eeceb248c 227732 
librep-dbg_0.90.2-1.4_amd64.deb
Files: 
 1639ce1b7c175c776ca6e1b699c53812 2099 lisp optional librep_0.90.2-1.4.dsc
 f70c204b6c7d945df3f7fbf0063c9b25 17408 lisp optional librep_0.90.2-1.4.diff.gz
 5f73967ca7e650dd484c19b1d4c5ec23 137700 doc optional rep-doc_0.90.2-1.4_all.deb
 ac3cce3375fdb255603368fdc1de571e 10402 lisp optional rep_0.90.2-1.4_amd64.deb
 aa1cfc07f8c071946b9e3003d5fbb15c 369546 libs optional 
librep9_0.90.2-1.4_amd64.deb
 b30c63841b6e2e0d09236a7f7af1e428 506318 libdevel optional 
librep-dev_0.90.2-1.4_amd64.deb
 8b5dae9213eba05c525630b526c0dbdd 227732 debug extra 
librep-dbg_0.90.2-1.4_amd64.deb

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

iQIcBAEBCAAGBQJRpzwjAAoJELs6aAGGSaoG5VUP+wWBNwTOH/VHqLHaLcoAVfoI
jHm1QYXU00lhI2RFdMmbwX4x5N0z1VHq1lAOpqTJQzJatIDrLagAlKuE3m13Y3fT
LrwlJtkZm9juc9vfS0m0GirHXshnuMukjSHOui+WjBR7wP2OKUY+PlVm5GUZdSks
dMhweU7bXMGjnn+dh0SnIF4zSWKlIbM8Oe7O7dHfY5R2L0McVs4gk3Kp1BdrbD6h
2c8J1GER4hR/Z2jbGv8FYUumyjJmMuPCqxAGo0b7j2cAYXl+1tS7Y1+o4vszA2KQ
RYMmPT6a8XPVNhE84WpkM2vgTnPOrGzARj3E1S6WvumnvRxqovA7sLjiLP6lIzMG
bfwBj4IIfktBs6+SN76JCIy6zdJZmxr9vv5Vyctv9bTlFuHAqkD/Sy+unWhTrpgg
feEw1q2qj+uUi8InFrUoUNgIO0BKUozDwSFVyeJfuzVdzajwavf7Gz7xh7H4maMp
1kt66r1kQHp99C1XS4n0/SG8+d8G/SwOAwgun1SikODW0u2PtYvS/tAaDVvMPTGV
901/Ohtxmmi/7Bt6GHspIgwu80lU6LIGO1Eq6mPZaZbYElJ6u4fBnZNr0ccDMWei
xUNWCZD9yEPLrkczZ7kJlzE+W8onG24Ih/T1826sPSZMn75dpCs11Pi3mlM6fZMv
r2k8qeJJWj+OhIYVaoUq
=lNX9
-END PGP SIGNATURE-


-- 
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/e1uikwe-00046y...@franck.debian.org



Accepted netmrg 0.20-6.2 (source amd64)

2013-06-01 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 30 May 2013 13:38:37 +0200
Source: netmrg
Binary: netmrg
Architecture: source amd64
Version: 0.20-6.2
Distribution: unstable
Urgency: low
Maintainer: Uwe Steinmann ste...@debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 netmrg - network monitoring tool
Closes: 709055
Changes: 
 netmrg (0.20-6.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix FTBFS with multiarch net-snmp:
 apply patch from Ubuntu / Colin Watson:
 .
   - Work around configure wanting to know too much detail about where a
 system libsnmp.so is installed rather than trusting the linker.
 .
 (Closes: #709055)
 .
   * Add build-dependency on docbook-xml, otherwise xsltproc tries to download
 the dtd from the net.
Checksums-Sha1: 
 a7e5155d482e94402d1c542851294e3cbf2f079d 1733 netmrg_0.20-6.2.dsc
 141682dba7b2cf1ff4a339431ecf5edc0a5239f9 50989 netmrg_0.20-6.2.diff.gz
 db45c0026d1ed9b1c18dbffe51b2007d59f00eb8 406242 netmrg_0.20-6.2_amd64.deb
Checksums-Sha256: 
 ca010ce8b62210389dbeb4623f523f436f579d2e25e470e447ce13ac99400889 1733 
netmrg_0.20-6.2.dsc
 340f2738fcb431950f76cfa83efc9b5b22c6435ea1a01d38f8d8eb52bc2eeaa0 50989 
netmrg_0.20-6.2.diff.gz
 016c8c3fdceb91e6e458ec0c3cdde67922142aa01453e9cf9f564f76278ea2a0 406242 
netmrg_0.20-6.2_amd64.deb
Files: 
 266f39252decee253972eacd1cea65ad 1733 net optional netmrg_0.20-6.2.dsc
 2e8fa7e030bf96cc324c6d9773fce654 50989 net optional netmrg_0.20-6.2.diff.gz
 816863f0abedae2286e5986c87a11b3f 406242 net optional netmrg_0.20-6.2_amd64.deb

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

iQIcBAEBCAAGBQJRpzp5AAoJELs6aAGGSaoGKdoP/1i07Yx5WzKOB51jZP8j5fo3
ljFZDPtrVJCEMcPS3BX4PPRRnqD3hP2wTOeSn+eVy5M+mdmDoP5EVvrIj1G4t1D4
zyyw641XA+powALKRwHISryIaxx5aBupcXaapHDfnytJUTeN66cWBd+vzjBnFBUy
z6HF1rcySVwz3SE6NOmJuHQQ+k5LvpnWENXsmUZciLu+w3S7TD+pshIZkydEWIWw
8DrfTyDzcISVyKRP4Ytiu2H+h9O0CEIkG6xF//MpjphOL09RZDCQMchDcqIRH+jW
nSMfnRdEZkulumvVovckaAFFtj3S6cDozHJGuLtHwDK+svCXKVXFEmrhvaXmKDdw
d4eBYzio1TBz7J/T3eRKdUuG4LDfcZVCCMcSP47R7gpnqrEjBohIUN8RAiJ2VJrq
uFqBngtvqSWeus6/EBVFUFekF0i6U2s9AlfInqaAq8zhudklGj5IPcmnccgyWfre
bUxJqBtMMJBvz3ETKqpB0HPWTMwL+QMwo114xCLSfCeWdzcOoMot58U1jXEcJq+4
xr8YkxPC2MU7r7Ss7O1GfhdxaG8J4ym/I42+hV0GRGkLtdI4C2ZSMbYbsN4V/p5x
8XcH0VsiOK55Sr2K9dvC1/+eeHBGss79Aeb0AVboNpJj4Ydy6cJmAYm859HoDMtr
vepZxzXlcNNwOT5xVNdw
=d0Vd
-END PGP SIGNATURE-


-- 
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/e1uikwk-0004ag...@franck.debian.org



Accepted t38modem 2.0.0-4 (source i386)

2013-06-01 Thread Mark Purcell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 21:25:38 +1000
Source: t38modem
Binary: t38modem
Architecture: source i386
Version: 2.0.0-4
Distribution: unstable
Urgency: low
Maintainer: Debian VoIP Team pkg-voip-maintain...@lists.alioth.debian.org
Changed-By: Mark Purcell m...@debian.org
Description: 
 t38modem   - T.38 Fax over IP pseudo modem
Closes: 695815
Changes: 
 t38modem (2.0.0-4) unstable; urgency=low
 .
   * Sync with Ubuntu - Thanks Adam for API fix (Closes: #695815)
 - supports libpt2.10.10 transition
   * debian/compat - 9
   * Update Standards Version 3.9.4 - no further changes
Checksums-Sha1: 
 94a702bf7dfc200b82cf8dbc194a9d17656a7260 1474 t38modem_2.0.0-4.dsc
 2f8b8ab46284b0b7609922fd61be509332174630 16142 t38modem_2.0.0-4.debian.tar.gz
 835a29f03b0cbdcbebce57268418efcee4db2732 240328 t38modem_2.0.0-4_i386.deb
Checksums-Sha256: 
 aadbc21d5a3a112a924c47ee549217b08d6c925dc09215c5a5c42ec51aea56ce 1474 
t38modem_2.0.0-4.dsc
 cb1fab347a75187f4eb8c36dec78dbc45e683ed548c034ded3ed916ec57249e1 16142 
t38modem_2.0.0-4.debian.tar.gz
 25de6c94e6fb1b1090468e09581822839f47d959cbc349d9e19b0f5c774d9d1a 240328 
t38modem_2.0.0-4_i386.deb
Files: 
 764f942969b13fec5427f612932ce33b 1474 comm optional t38modem_2.0.0-4.dsc
 8072c6645a33f2660a58acd6f651d42a 16142 comm optional 
t38modem_2.0.0-4.debian.tar.gz
 05ad167e76ce1f9937e6310730c10a5c 240328 comm optional t38modem_2.0.0-4_i386.deb

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

iEYEARECAAYFAlGp3owACgkQoCzanz0IthLQgACfSOvz/sSH8KGqS2mlIOGR8nAG
ye4An3bqlzgrXR81mtvvyd12wwY5AVTS
=A4Yj
-END PGP SIGNATURE-


-- 
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/e1uikwt-0004dy...@franck.debian.org



Accepted logwatch 7.4.0+svn20130529rev144-1 (source all)

2013-06-01 Thread Willi Mann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 14:03:28 +0200
Source: logwatch
Binary: logwatch
Architecture: source all
Version: 7.4.0+svn20130529rev144-1
Distribution: unstable
Urgency: low
Maintainer: Willi Mann wi...@debian.org
Changed-By: Willi Mann wi...@debian.org
Description: 
 logwatch   - log analyser with nice output written in Perl
Closes: 705600
Changes: 
 logwatch (7.4.0+svn20130529rev144-1) unstable; urgency=low
 .
   * Imported Upstream version 7.4.0+svn20130529rev144
   * Refresh patches, drop dovecot and AppArmor patch - they are included
 upstream
   * Use my debian.org mail address in the Maintainer field
   * Update Standards-Version 3.9.3 - 3.9.4 (no changes)
   * s/s/php: Accept time format with specification of time zone
 (Closes: #705600)
Checksums-Sha1: 
 fb9becda3357c9007253ccd5d7bb1a3b191e9b66 1825 
logwatch_7.4.0+svn20130529rev144-1.dsc
 e54c06fe201cbc2bb855645b0585ead7c4028d18 448864 
logwatch_7.4.0+svn20130529rev144.orig.tar.gz
 ddbfee3a086f542c55a98b165df2247142ffeca1 17053 
logwatch_7.4.0+svn20130529rev144-1.debian.tar.gz
 e02f0c5cd85ca99d4358289bdf19be1494f171e8 472016 
logwatch_7.4.0+svn20130529rev144-1_all.deb
Checksums-Sha256: 
 7421952d0f3a8c1aab023b47fd8dba3e8e1e8396f56e87e87ff08f8b635cb65f 1825 
logwatch_7.4.0+svn20130529rev144-1.dsc
 dd4a398bd4394c0386489021f5a7cb653c831d42785c3c3fb33658410d1702c8 448864 
logwatch_7.4.0+svn20130529rev144.orig.tar.gz
 3c2a06190774799fae3308727e15024c2838ba7732076274c74142f63ca9 17053 
logwatch_7.4.0+svn20130529rev144-1.debian.tar.gz
 66a5b056740baf12a9fcd1f852ffa0d30d9d9a4d2d6d433ebbc2c050c16a4663 472016 
logwatch_7.4.0+svn20130529rev144-1_all.deb
Files: 
 5b5e8699b0d33fda50b64662f7dee080 1825 admin optional 
logwatch_7.4.0+svn20130529rev144-1.dsc
 1f6d77d5d1720b825a45026cf24c8724 448864 admin optional 
logwatch_7.4.0+svn20130529rev144.orig.tar.gz
 6050f67785e7f763a4f298c9d68ec784 17053 admin optional 
logwatch_7.4.0+svn20130529rev144-1.debian.tar.gz
 15b3572762b69ff48adf55712a7c932d 472016 admin optional 
logwatch_7.4.0+svn20130529rev144-1_all.deb

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

iQIcBAEBCAAGBQJRqePbAAoJEIy+IZx0V22BfMgP/0VejwQUjXegO+guU1ZLsj49
XX1vjJoQx2TQ3pMx6W3xDhKCYtiJmykQ31Aub0lLSTFLQAWT9U6Z6Mkhbr8k7O82
SdiAyU7v/H2u+8a/kMyMMaMgCIOkPKk0J2W3o/ApQaBg3rB8YKqNWc/wQ5PSGQj8
X1TvQGW6mfrIu8f/mjpL5SMIC6bbYwB2nnHR8qn6uUSZSRT6dPdCc85twtzxlqbb
GPiH3Xu9oHQaEmOgCWv97fpd3GvVC0rUDSDr1Kz3FcDKnr8HR70krFWxBY0hlyjZ
WsYkN3cpuYr1tHDXuEGqrS/APfWfVfUTgQ04aJvc70ZJiVS2wf1Yhr4NZw74alU7
BihS3wiElffAruPoCUQuVVCPJwPgeuZ7SN5W22y941B44igUgwMku844uVaYo2wu
eWtQ69xj+UjdiVQWcmfNFyLwq+w42NB1dLPWJm0QXKZE3CZiPv1ss7PJ4gB7yGrH
2YT9H/G/dMsVtadN3mj02vBRbiWmXIuA51IfsKR8G02OBCGMB+FkxhIbpcr5p4tt
oUzB82/wXDow3V8JkeQE01PNvNr77UJKmvXB7ZOBfheeyKZC1YeyazxOR9f/5rFQ
j4fLKW6sp2QKvU00X9wMKTlHGndcx/EsmhrAkvtx6sP3BcFDyUEppJdVlp19U2Vk
DP7Ybv6YZe/iBBnDm/Bm
=5ruC
-END PGP SIGNATURE-


-- 
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/e1uikkw-0007ht...@franck.debian.org



Accepted libhttp-message-perl 6.06-1 (source all)

2013-06-01 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 07:52:09 +0200
Source: libhttp-message-perl
Binary: libhttp-message-perl
Architecture: source all
Version: 6.06-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libhttp-message-perl - perl interface to HTTP style messages
Changes: 
 libhttp-message-perl (6.06-1) unstable; urgency=low
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
 .
   [ Xavier Guimard ]
   * Imported Upstream version 6.06
   * Add libio-html-perl in dependencies
   * Drop libhtml-parser-perl from dependencies
   * Bump Standards-Version to 3.9.4
   * Bump debian/copyright format to 1.0
Checksums-Sha1: 
 59090dfcb27ce5998684976d18111d75f0f80261 2258 libhttp-message-perl_6.06-1.dsc
 4a88688c28e6581fab9b2eca8d0e320e96bef1ad 50806 
libhttp-message-perl_6.06.orig.tar.gz
 a9012bc8e8829d75ba9880bd6904676f397375e5 2133 
libhttp-message-perl_6.06-1.debian.tar.gz
 54825db7d8d592ce22a0138f0260a0d422d219e1 80122 
libhttp-message-perl_6.06-1_all.deb
Checksums-Sha256: 
 79121af0a99b2ea41c9ee1286783f360b7d5697f8abbff40f9af833195a71a79 2258 
libhttp-message-perl_6.06-1.dsc
 087e97009c5239dca4631cf433d836771b3fc5ba5685eef1965f9d3415cbad63 50806 
libhttp-message-perl_6.06.orig.tar.gz
 ca1703e8d9b65eab0d32c15d6bcdac03fc74b30420442c687d4c7dfffe97aa76 2133 
libhttp-message-perl_6.06-1.debian.tar.gz
 f9d86de684098cdab34cbdef863b515972481475d1c9d03643763a8f57491ceb 80122 
libhttp-message-perl_6.06-1_all.deb
Files: 
 bf4f772ed02ead9bd3a0b1ae1565b6e4 2258 perl optional 
libhttp-message-perl_6.06-1.dsc
 e563ac516e28d33f65bc0f295f625f85 50806 perl optional 
libhttp-message-perl_6.06.orig.tar.gz
 a24d5c2d390ee98c7a06997c112ca79e 2133 perl optional 
libhttp-message-perl_6.06-1.debian.tar.gz
 f90bd6a7ee929796196b75c1c6fa0587 80122 perl optional 
libhttp-message-perl_6.06-1_all.deb

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

iQIcBAEBCAAGBQJRqeZYAAoJELs6aAGGSaoG8i8QAK711zVgtnG2LSYgp186UMS2
n55VhDZXWxE4MUvMhaVM5WTEgQ6cqYQNfg8FaZFONnT92PvAPwwqP9xCRLFL1MeT
SaSfcztmuzMsgpQvdq6OAhPhkjrC55rt6Hl+apYj1WUB5MFBMCPVjAI6kU4A18hv
/vNYQunlgtsSBYKtK4e4h0iMH9YS4tarytcB2IY931TPk1snMzxw3O2sbvqFHKhm
eeNAjtVdVxmP06t118rh9+T39DmBLXQ48WKZ8/JZI5WsywlWHXsvWlwJBeEZ180k
t0ynzt55GkTYBTz0RtDiFgBpUj7pphN9u9SnXHdcLyzohABT1rA2Df8EknrhOgfn
pXFfc1+6do76DkmhzZdTEXlaIg5w7mXLj0bFHFcShF6g9CM87t+mIMCHBTrJOItU
6qYIICC0zm7Z7T0HhUvk5i1DTAfdU4ZK5nGTYcu9Bipe1+bM9w85vojcZEVPKicG
yme/H0BhrHzS3lPDAUj0onr3xmvwQDCxeBBgZV9+dNM4S1LIoRWJr0IqYJyi0+h+
pc5vDOHJgoA86i5cco7KN8WJSIB9lBDHGBN1ukUbH80417nF+ARQ1R+QKHVlTV2n
dioXOq++5305/eQmZ83B0FNl0ecPl4GKJNHWc3MErHDKTxUafV8ouGqeQvut5E41
2Bc3N0f9XEucXdkTYNsF
=GjPu
-END PGP SIGNATURE-


-- 
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/e1uikzz-0003he...@franck.debian.org



Accepted libsql-statement-perl 1.404-1 (source all)

2013-06-01 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 07:47:10 +0200
Source: libsql-statement-perl
Binary: libsql-statement-perl
Architecture: source all
Version: 1.404-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libsql-statement-perl - module for parsing and processing SQL statements
Changes: 
 libsql-statement-perl (1.404-1) unstable; urgency=low
 .
   * Imported Upstream version 1.404
   * Remove spelling-errors.patch now included in upstream
   * Add libtext-soundex-perl | perl ( 5.18~) in recommended dependencies
Checksums-Sha1: 
 f6adfd01f29ec8430cac89c9f802048a849b3933 2507 libsql-statement-perl_1.404-1.dsc
 1bb527eb06908174b3880c45e2c454e806399004 138570 
libsql-statement-perl_1.404.orig.tar.gz
 f47d18f746143249243d7e066e2a308663d94dd6 6206 
libsql-statement-perl_1.404-1.debian.tar.gz
 10aa3c383b6df76213bfac7880dae92e1328058e 190478 
libsql-statement-perl_1.404-1_all.deb
Checksums-Sha256: 
 29dfffacecbc386ba8daa50305f0b6f1b166f99dc53ce464a8b52220345ab96e 2507 
libsql-statement-perl_1.404-1.dsc
 0b694ed2134bd422e9153c0c51032ba1aa5331efa40fba2e20aa0b9bb5b0c04c 138570 
libsql-statement-perl_1.404.orig.tar.gz
 6149dfb6c40152770377aa9e31d25d4c4ac1c665075ee0e9e9b23fa8c2edb5cf 6206 
libsql-statement-perl_1.404-1.debian.tar.gz
 abe1e7209f77f82ee0aeaf31e29d9eb5a839d3d069eb5ba4d226123729bf8731 190478 
libsql-statement-perl_1.404-1_all.deb
Files: 
 7167233af5438cefb9ef6dc92c50c240 2507 perl optional 
libsql-statement-perl_1.404-1.dsc
 16a53b7cd37e8b8ed5ef4cb64999d55e 138570 perl optional 
libsql-statement-perl_1.404.orig.tar.gz
 182459a55ded06700abf5935576085bb 6206 perl optional 
libsql-statement-perl_1.404-1.debian.tar.gz
 e7af5581c21469446fc50bb2620463ac 190478 perl optional 
libsql-statement-perl_1.404-1_all.deb

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

iQIcBAEBCAAGBQJRqeb4AAoJELs6aAGGSaoGBI4P/i6WnONxi44mFut/GYelgCom
VjS+U6YAWMc6/C1kSM3pdY/YO3afTWfFSBymrS2iKrlrvm9g0t8cqP8rrs4nQkBd
P/hGOsUP7m+oZTSl1U9iO0qcLO0rzJkvm8lpth+Xg7p4lx4ly6vzF+5SUQxXNWeK
smOG1v2t1BYOPS8ti9irv8mKh/C3Ppgjlg8KktGMAWdJsSuVxMURdMt1jGgIkNhz
ljvQHWbUxZpYLc6sJ5ZlhgRgQ/Rzydi+q1yuoXryD56z8J0j1l5QzToMX0rc3+Wx
hpqj0U1teZJUKSDcSW5EhiFJlTHlb6zal1pLcnVLVoQ+N6K7azph5zh5dcrmFn7X
25/Y6ZRVPGC4w5WCp0oC8sQIfmo3zPRqC+4cwwK+kMJSy7IsUEm5XejBfKKOtb9g
qWs6MFhVg49HpYnqE2Mt5DvkgaQYzOiytwqwHPuHl/Xz88XaEyrqxS4OicZGpEWU
zwLG5sb4V2NNdGEp9n/34ageDR24lzpx9HbxiMDIK1kDY89ZWUsZgohOGRe9qHmk
iyKwO067xAkApdhcaTgb3EMUT8WYtd3mwiez2SFzRLY86CIVzIQ5cqckihrabwgG
hDvCQA4QIq+v9MyMTfTDo8+wUm9dpny0kUurWPdq1ZRl16ZeTb+7NFPV8XROWuPg
MfQJIhm1SVz9TWRUpYtp
=v0d6
-END PGP SIGNATURE-


-- 
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/e1uikzo-0003re...@franck.debian.org



Accepted libcompress-raw-bzip2-perl 2.061-1 (source amd64)

2013-06-01 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 08:14:25 +0200
Source: libcompress-raw-bzip2-perl
Binary: libcompress-raw-bzip2-perl
Architecture: source amd64
Version: 2.061-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libcompress-raw-bzip2-perl - low-level interface to bzip2 compression library
Changes: 
 libcompress-raw-bzip2-perl (2.061-1) unstable; urgency=low
 .
   * Imported Upstream version 2.061
Checksums-Sha1: 
 a7b2ab44a8dc8446f803bb21e861b9253f6b0997 2291 
libcompress-raw-bzip2-perl_2.061-1.dsc
 2a463c8397958ca4ebb8690150bc225d5417d764 135934 
libcompress-raw-bzip2-perl_2.061.orig.tar.gz
 b924f1584053b3e716a5dbd07b6969de5a26bc18 3988 
libcompress-raw-bzip2-perl_2.061-1.debian.tar.gz
 64ba970643a9270cc2e5c2e6e232e9fe2a9676d6 27054 
libcompress-raw-bzip2-perl_2.061-1_amd64.deb
Checksums-Sha256: 
 0a82c0dad59df62c449ed59dc62f2894aec9443ad974a1e0cfee0af2151d84aa 2291 
libcompress-raw-bzip2-perl_2.061-1.dsc
 de8e39e738e05d7e7c6c855ce059dd90f4907bc5968292e3d43d0f003117c62d 135934 
libcompress-raw-bzip2-perl_2.061.orig.tar.gz
 8eb619d89700707cb76f312fe00c45d749c9b0ef261fd95e8c8d2246bc37982d 3988 
libcompress-raw-bzip2-perl_2.061-1.debian.tar.gz
 9c1b33c169d2c6234eb04808cd5577effec53bfe3a5912da362a63f6392c0e30 27054 
libcompress-raw-bzip2-perl_2.061-1_amd64.deb
Files: 
 afa0a5e2632ba4ca7febc12f2e83de86 2291 perl optional 
libcompress-raw-bzip2-perl_2.061-1.dsc
 44648bb83e8ec7189afc531ba32143be 135934 perl optional 
libcompress-raw-bzip2-perl_2.061.orig.tar.gz
 3bc3874b1d1f01b9b6996530eb1e5ec2 3988 perl optional 
libcompress-raw-bzip2-perl_2.061-1.debian.tar.gz
 5d739501b69c4e06af44eda8127c8a43 27054 perl optional 
libcompress-raw-bzip2-perl_2.061-1_amd64.deb

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

iQIcBAEBCAAGBQJRqeqbAAoJELs6aAGGSaoGkiwP/AhSZdyOKZjsHZae0UT4831/
3vtvfuqzfsEO1koTEE3CXUfkRBIrWWC782GKLduXDDYVEAQCvHXznAr8hjvtfB16
TpB9tEpzVbhQptcr4KrypNA9nA6ejliD2u4g5Te4OhU8Q0cWCiW1E1Aq29nXTbZ7
O5yDTcFHQkiyoa3WfTTlu6ZObIcKfSGQAh/ItvI75PtrYRmVV3vOiqx0qLQm8aBK
mTPKDEU7AN3Q70wjHrmmr19sovJhmlb4wwLKd0DmTZDiGbP1mvoTmu8fydZJsomr
IeCCZj/0nOHrPJKoiJBdS3/W4ySrdMsw3IQFUCY+8tfMq8D6wAA8/GtIlQM43Wmy
7zdSPCFktRomjaewGt76SewM9ZbFOxlqNkrVmpzOz+aR3TFEr0xl0AOfESTf7yvf
J+wP3vf8nWrY9soL2+pYYAkIkjcuaFradx8QGsvVIv/6fJy5lNX+KMCgUS4cLxza
wSQYoY98DmWgmWLwmNHypA2kepdIJhs/IMDNb7t2dNvgA3j/Wjbjj1jFeWtmSP/3
7UZE1IQiHz2mCzCdvuHAG25/uPYEX2Lk/8IvPeyXDdYbFI4IlybS8daHWmUoL6tx
1XX/Cy+IC8M4hFofjjM+DdSSqjtrksv9W6HejZop7SRenEdqD2G3D1KV2gbWJK7R
n/cCxbIsokLduQcQphLQ
=ywXa
-END PGP SIGNATURE-


-- 
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/e1uildu-0006rr...@franck.debian.org



Accepted libcompress-raw-lzma-perl 2.061-1 (source amd64)

2013-06-01 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 14:44:24 +0200
Source: libcompress-raw-lzma-perl
Binary: libcompress-raw-lzma-perl
Architecture: source amd64
Version: 2.061-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libcompress-raw-lzma-perl - low-level interface to lzma compression library
Changes: 
 libcompress-raw-lzma-perl (2.061-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 19c04423fcb1200f786b48108ad0ab6eaf1f3885 2173 
libcompress-raw-lzma-perl_2.061-1.dsc
 5d1401b3c51570b1f08172767ac8b17d91b353aa 112805 
libcompress-raw-lzma-perl_2.061.orig.tar.gz
 c12b5ccae8e217ba7aa703d531894730885345df 1767 
libcompress-raw-lzma-perl_2.061-1.debian.tar.gz
 7edeca0b0ca5e96bc7511c1a648ed50ccf6742f2 39198 
libcompress-raw-lzma-perl_2.061-1_amd64.deb
Checksums-Sha256: 
 dffface2e73c06ea9306ff287be09acfae4e1ab03035d3b13ed71c1a808183bc 2173 
libcompress-raw-lzma-perl_2.061-1.dsc
 65fdb05ef1617fdfb74f309a0a6e78eff4d68612b37ccfc7424670f74f4a8d3f 112805 
libcompress-raw-lzma-perl_2.061.orig.tar.gz
 5aeeb184f4642e3c374d39a946328e0a6b5eb84a1861b460f71720b11e1fe2b5 1767 
libcompress-raw-lzma-perl_2.061-1.debian.tar.gz
 1c68fd632e04b68ed592091f91c648f814cd20105c74f9148a5a4094d6a66758 39198 
libcompress-raw-lzma-perl_2.061-1_amd64.deb
Files: 
 b4a5ac9478d29415456493588d516bb1 2173 perl optional 
libcompress-raw-lzma-perl_2.061-1.dsc
 1a8c411d2b949729b2bd63e1b812e0a0 112805 perl optional 
libcompress-raw-lzma-perl_2.061.orig.tar.gz
 51ae19fc85a60a5b224c02804aba92f6 1767 perl optional 
libcompress-raw-lzma-perl_2.061-1.debian.tar.gz
 01bb2e116bf444c31d1a52cd80a1999e 39198 perl optional 
libcompress-raw-lzma-perl_2.061-1_amd64.deb

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

iQIcBAEBCAAGBQJRqezcAAoJELs6aAGGSaoGoFkP/icgFukR76w6II5+tBG0MUM5
X1MQbkZuLnAVjDv5fb/LQTIBgKcZurQtBu6hYr+ST3cMFwv14sE/7uyUbYV0yKvP
cMetCtpMYSq3zJxMcERkTDUCT4MVPC7F0uuweE1aqyskyAD8nX/1uJBpMItmhaLh
5sfJ0XHyKh9VIkbbuOsTWL5bhTt6edm82dj2RbRZsB5Fc5XpZR2ZZBXf94z7u1/I
W6i8wI02FMyco1qV8mm0Pig7LT3of4aFpPkoXZhHTygAyWJEm3WxMXRg4+WfDAA+
53dWrodCga90wCXhhGXi+t8UMQzglUH9yMolI4ho7j2M1zsSIWUUc5zheIasnV2H
O5w33npazm6li0/GUtYoZj3DPhSTFVrzVj5oacuZAAkTdhsbgaSgNnyLSldizVqr
tJ3YSyU16mZXXCBkWbBD0DERnhAq7Rz7Nknb7EsuvxGk5Nd1AAnNyxVvk7yOu1oe
D8ql0v9YMJI+GGFawb1WwrABVCjeEuReTTULlgpPT7LZIeNTj27XG50CpS7RnRPo
0XgSbnS3hg+EVhBPF5s2fSYOQCdAnrE3mbZk1qPLH8DSb0loKxme7U0i2kX37G/S
L8NZjqy2mCKP4qdodUCnDrMN3chgGbL65C8tTy3mcQsXVrY4OdQS4kNBu13VkLFU
sySaIpyPCdn8AGLS9sxF
=R8Fn
-END PGP SIGNATURE-


-- 
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/e1uile1-0006vd...@franck.debian.org



Accepted libcompress-raw-zlib-perl 2.061-1 (source amd64)

2013-06-01 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 08:13:16 +0200
Source: libcompress-raw-zlib-perl
Binary: libcompress-raw-zlib-perl
Architecture: source amd64
Version: 2.061-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libcompress-raw-zlib-perl - low-level interface to zlib compression library
Changes: 
 libcompress-raw-zlib-perl (2.061-1) unstable; urgency=low
 .
   * Imported Upstream version 2.061
Checksums-Sha1: 
 21ad92c85b1e4b0b7e396e8b94946979b0662192 2532 
libcompress-raw-zlib-perl_2.061-1.dsc
 921242d3b966d86164911e9bc58e5f97b80ad27b 236506 
libcompress-raw-zlib-perl_2.061.orig.tar.gz
 5cc43387f7b5fb2c2757a9bbe1c0d68574a939b2 5408 
libcompress-raw-zlib-perl_2.061-1.debian.tar.gz
 6ca057adf59045567dbe16c40b5b5952d207ec26 54514 
libcompress-raw-zlib-perl_2.061-1_amd64.deb
Checksums-Sha256: 
 136e127e786dc032b8bb1330f3f2e5c8d477bf8e817677583dd0aa3775745938 2532 
libcompress-raw-zlib-perl_2.061-1.dsc
 244804a39b93a18f5878e107c280f14a0263876d975e6146b9907b2ee4442319 236506 
libcompress-raw-zlib-perl_2.061.orig.tar.gz
 2c2ce2c53e63ed332b99e8de307b969e99a92a015bec031ca31a0589f0320dd8 5408 
libcompress-raw-zlib-perl_2.061-1.debian.tar.gz
 17dc0f331fdbfabfb08eacec8adc573ca03d55d1e421f29f8a0c4be5aca137de 54514 
libcompress-raw-zlib-perl_2.061-1_amd64.deb
Files: 
 0a4397d2110a947d428d85546efc720c 2532 perl optional 
libcompress-raw-zlib-perl_2.061-1.dsc
 b22987ac5e9ea3920d9abfbc57a9a60c 236506 perl optional 
libcompress-raw-zlib-perl_2.061.orig.tar.gz
 91767276a202b13112899f9662b36d47 5408 perl optional 
libcompress-raw-zlib-perl_2.061-1.debian.tar.gz
 20d8098e7129b10b499ffdbf44c1696c 54514 perl optional 
libcompress-raw-zlib-perl_2.061-1_amd64.deb

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

iQIcBAEBCAAGBQJRqespAAoJELs6aAGGSaoGl2sP/3ScXJeKrzJSwDiZd5xNKbd5
mvxXCP9VT1PDJcb6rvk/ixAViK+tU9jC8BpbIxYbso9vJGW9MXPQ+XHDrVYpDgQ6
kPxoS52G8vwCxh5eo++fmqFkzS0Hew8yRyWt4lupW+2+A9xg+oLAczMFqgjPoq6e
hUYCcpjVNXiMoHJ5czmal+LEGUbyIEIcIfIHCGeffksmTZV3CjXNOe55uE1b6vyz
mFPt0ovzOliDy8Cjsa+sRy7FxgM+COjQMr6IeHe1QGZ5A94ROlbSOZhdXWoijl2G
T2rHhAZqaYm7aqzgnlvMP6Fcc+BGDMm5sLFfsoSjSRXmocE/3HxRRHhjWAzOxO6R
gMsY8j6YhzX2K6h73Lx/qI1hYmN6KwLvoieP3/L4ak+suXC3cUgH3Yk6JcCqrj6H
Mr0t40184yHPjI2//nJCzB++NlBRK+g53xqQ9w0/2zad9Ctp1C/8DhtX0CspTUvo
79AV/2iNHfD5AbvkuEQtCqgfHgLRidfYY9+wLHDaps47iAUeXLnzi8Bls6r7N5i5
+q+5nkJwzm5dEk/UNiknnV1qq94p4E53BMX2lYMlffI1W1FTwRfooP08UqlUDhZy
xwSBMDtejB13mjswvrjYGRpBzZyydWR1V6yZpJBlvL+gXRb3CRSd6UBdL63WXlHn
CEk83bWGWILIEhq6iQng
=76JU
-END PGP SIGNATURE-


-- 
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/e1uile7-00076j...@franck.debian.org



Accepted libio-compress-perl 2.061-1 (source all)

2013-06-01 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 08:20:42 +0200
Source: libio-compress-perl
Binary: libio-compress-perl
Architecture: source all
Version: 2.061-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libio-compress-perl - bundle of IO::Compress modules
Changes: 
 libio-compress-perl (2.061-1) unstable; urgency=low
 .
   * Imported Upstream version 2.061
   * Update dependencies versions
Checksums-Sha1: 
 b6005b50c377ab209503187627db1ccf28a07655 2387 libio-compress-perl_2.061-1.dsc
 ddc4ce8ea22309746ee5e4be9d90b32bfc0bf642 243410 
libio-compress-perl_2.061.orig.tar.gz
 4775fa6273f727ea5594cf40a97c298fc8029e40 3913 
libio-compress-perl_2.061-1.debian.tar.gz
 b3ba29be54e5b5bc4d86a490b8e88fd639303c9e 298138 
libio-compress-perl_2.061-1_all.deb
Checksums-Sha256: 
 05a28eec459c5c96002de2b3bc2fb11d85136b75f31b599f4a0ce30903a72d18 2387 
libio-compress-perl_2.061-1.dsc
 c8fdbc7d8d3601bc4c6d43455d405e0772098ceb1a38fefa72adef5083c6beba 243410 
libio-compress-perl_2.061.orig.tar.gz
 ad424afac05e9175a9af3b4537c23fc524dae32e65a3a4a5813c4c18f4aa3d99 3913 
libio-compress-perl_2.061-1.debian.tar.gz
 b7309d79b299570d0b50dfcb98e21a0e4f4a681bd2f02d2da903e3824e0f4117 298138 
libio-compress-perl_2.061-1_all.deb
Files: 
 33f0b7078be843fe01e2d66f5c7f3280 2387 perl optional 
libio-compress-perl_2.061-1.dsc
 0dba831e748f03e549eaf288026ef099 243410 perl optional 
libio-compress-perl_2.061.orig.tar.gz
 0618f3d83b93ae1857f340e9004c8243 3913 perl optional 
libio-compress-perl_2.061-1.debian.tar.gz
 265e250620e336132487918ebfb49882 298138 perl optional 
libio-compress-perl_2.061-1_all.deb

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

iQIcBAEBCAAGBQJRqevnAAoJELs6aAGGSaoGzS8P/j58fIK/sRaV8Y2x5YPjDfw0
xtSWGRaWHgtK2fvmKSTIOEqn/axfTj7srOxjzRYyEy5Hu+R+DTEeH7NH/Jq3z0x3
CG2dNVso8xekF2b3w+nhpJzX2uDtM0O73wrolCRN3E3In76G5LBeXQDVaqR/1QT7
PrkpaVpFhRA/YsgR/SBEfD/JD+LzWMnqMEXcyAVfhKl7TsO6mmwB5eAsY2It7yvo
xX3ZGeGZ5c/yXYDo1tnofzJwaUB36aycaWa5JQIhuOhaIomihcntwQWs8l6ysBXW
gSfW5bXhDoDDcL6pfjqHgyNPwk2htJqWbM2/ABBnuUWBe1SGaYoKiDkx3brGsJcM
HGX9HNPMF7doufFSLLKZE0VNYp1XxXyQDh3hSj50WorHgXAKHRLh2n8zinsYXpTq
zaY2RFVoUMduDn6t6kOpD6D14/P258/bzob0PgH8yexDnHWhvOHu0Z7TndcCClr4
n4n+ytc95sUehEM/sxTgX4eaIzOmeQ9l5GSopYiGRj8VuBJfUu6AcwwSQ0KCclnh
6FN6ndQmnsgggyOIhwZPw8YaNzvm/ML4myk2X7L7RZg9iadTFEJiFdhxem7uS83l
N/amwmVS7EB7ND3/iglcGEjZ5ArBz7PZkNQJCA9JInh4lltU83CNZs9Ne+eWdYG2
53zEqFY8csJ690kqBsvJ
=68Rk
-END PGP SIGNATURE-


-- 
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/e1uiled-0007ea...@franck.debian.org



Accepted ncbi-blast+ 2.2.28-1 (source amd64 all)

2013-06-01 Thread Olivier Sallou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 08:40:51 +0200
Source: ncbi-blast+
Binary: ncbi-blast+ ncbi-blast+-legacy
Architecture: source amd64 all
Version: 2.2.28-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Olivier Sallou osal...@debian.org
Description: 
 ncbi-blast+ - next generation suite of BLAST sequence search tools
 ncbi-blast+-legacy - NCBI Blast legacy call script
Changes: 
 ncbi-blast+ (2.2.28-1) unstable; urgency=low
 .
   * New upstream release
 - Thanks to Tim Booth for package update help.
Checksums-Sha1: 
 e0b1e5ad2b88bd66bb4e7aefbc1302290183479c 2274 ncbi-blast+_2.2.28-1.dsc
 6941d2b83c410b2e2424266d8ee29ee7581c23d6 13468751 
ncbi-blast+_2.2.28.orig.tar.gz
 b5e25646aca8612661063bdd8054d21ef2b59d92 23317 
ncbi-blast+_2.2.28-1.debian.tar.gz
 cd888a6bbfbfacf4b83df7b5ddeb14210a39b4fa 11765028 
ncbi-blast+_2.2.28-1_amd64.deb
 4f1651a68c78ce798d2772a0365c1c4a4a7c9a94 7778 
ncbi-blast+-legacy_2.2.28-1_all.deb
Checksums-Sha256: 
 293caaf1ba71f2d2c1e346f00dcf33c870a3c27788f260d08bf6e1e8163dcd80 2274 
ncbi-blast+_2.2.28-1.dsc
 8f0610251d61973e720276029a26da8baedec474ca12016bde11483491631f60 13468751 
ncbi-blast+_2.2.28.orig.tar.gz
 17fc72480944f602d4bca58ec109be54db6a05d87b92a7bc5a949ab71be16d7c 23317 
ncbi-blast+_2.2.28-1.debian.tar.gz
 9ce081ed91076b12a5ad5c2d5d7b7dbe7549580b3296087bbce294acff582376 11765028 
ncbi-blast+_2.2.28-1_amd64.deb
 e3c874cae2051ef7325cb0a8b120d0665c73d3215718529df3974ec22b6360f2 7778 
ncbi-blast+-legacy_2.2.28-1_all.deb
Files: 
 c8e31bbacc1bbee50e2a0ce5fb23dc34 2274 science optional ncbi-blast+_2.2.28-1.dsc
 41b87107894d5714eca4217b4739e241 13468751 science optional 
ncbi-blast+_2.2.28.orig.tar.gz
 222bbeb4bf1813219324eca215ea9699 23317 science optional 
ncbi-blast+_2.2.28-1.debian.tar.gz
 d7849b35b1f19d2b0f3089a27af6b78a 11765028 science optional 
ncbi-blast+_2.2.28-1_amd64.deb
 d097b55642bc69e90d44d4ed5e18375c 7778 science optional 
ncbi-blast+-legacy_2.2.28-1_all.deb

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

iQIcBAEBCAAGBQJRqelQAAoJEHjcaNsybYQ4+2MP/3hNUKLfvX8XS8H2g1KCrbCI
R9yr3+D9gDxbeWWpP3CWiH8mu19z7ACJws32cM4QPFpPwmYn9PyCCcxA0QAb00P7
dmWuyrKDvbOBW3wcT64EMWPN7a1ODRFmpCSLZFlbRILNUWlhOT+sliafVqOXFSGT
enyqOmVjci8SHi8diLBCds7XrlVaZvr8iebnjKukZbxD95YiifvWLGwGvJGJlVNI
fiJvJTlLW9Okn0Vm0FTp9uVvQCuXHEBbGUFo5SEtLANjWiNkaqKRdn+1WXm7+W7z
vsYBYQv//oJMcf60uDGYTq4iFHfTOaxP+FgwHDwYTerpHYgqN2YhKWsAuW8/tKvW
3O0i1qTjXi65CJe0CVw3UcP6p3s1PwLnr2euHtgeyhgl2utkvOUB4+9fpnEEFLxH
Iezgcb6N3B3tByt5K+wQUF7MUD0sTdCcF2iLeHli5WpgNvuf6qcuiaOPVR7qHUF1
/51HO8GsZ61wu/Ye3aVba9YbEHpBeGLIRN29zJ/Zj7P4uZJdkAlk8Nf8RFR2oUcQ
aFtid+u7BzpCHNfdtn+c0oiCiaT3PlmDvyKCuZckofeXsISWNHw9kG+skT2G2OCN
Uw4fQadbM6t1+ni9dTJJFakEcNqHdac1vMReaAurrZL1f61Fkn3WWetydceTpf7l
rrUZ4HUd9fggCCZeASjW
=eEck
-END PGP SIGNATURE-


-- 
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/e1uilen-0007yp...@franck.debian.org



Accepted libfennec-perl 2.005-1 (source all)

2013-06-01 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 07:57:18 +0200
Source: libfennec-perl
Binary: libfennec-perl
Architecture: source all
Version: 2.005-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libfennec-perl - Perl module providing RSPEC, Workflows, Parallelization, and 
Enca
Changes: 
 libfennec-perl (2.005-1) unstable; urgency=low
 .
   [ gregor herrmann ]
   * Drop unneeded version from libparallel-runner-perl (build) dependency.
 Nothing older in the archive.
 .
   [ Xavier Guimard ]
   * Imported Upstream version 2.005
Checksums-Sha1: 
 b9b09c4427939cf4d88bc5d1bf21688cf41a7a48 2203 libfennec-perl_2.005-1.dsc
 9bd2044a6e056b5c65749f4fe1cbb107fc5a74ba 45854 libfennec-perl_2.005.orig.tar.gz
 8befba1316ba6abea11aa55317db471076ffa4a3 2566 
libfennec-perl_2.005-1.debian.tar.gz
 4d1ead4d83a5db019afc941f782c6472eeda3888 75688 libfennec-perl_2.005-1_all.deb
Checksums-Sha256: 
 cefd2366237121fe1cecf9c4803ffe1b0a8a4390eb083a14b557573ba47b8605 2203 
libfennec-perl_2.005-1.dsc
 718aed253ca694413789df93495c13374a9093b8f67b335619704922fd0cf0a6 45854 
libfennec-perl_2.005.orig.tar.gz
 088bbcd904df62a1dd1e6367d428308e38f2367430cd544402fd533f8f028611 2566 
libfennec-perl_2.005-1.debian.tar.gz
 bf72b7778475d20244252e27463ce3672fad72bc62d1a3c2e567be2f90adad3d 75688 
libfennec-perl_2.005-1_all.deb
Files: 
 9700307773a81a97ae3d923892015fd9 2203 perl optional libfennec-perl_2.005-1.dsc
 9a0f2c41cbde0de1daae01b0bc904218 45854 perl optional 
libfennec-perl_2.005.orig.tar.gz
 9f00db2400487898b8a9606670e4b0e7 2566 perl optional 
libfennec-perl_2.005-1.debian.tar.gz
 1f681fb04af80de9ddf92bd5c91ae1f6 75688 perl optional 
libfennec-perl_2.005-1_all.deb

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

iQIcBAEBCAAGBQJRqe66AAoJELs6aAGGSaoG1aUQAJAmsZyAIKn9erb0R0wcftzs
KCdreLUJ0H4mH74t/8v5nv/6RiaWks2jKcXJ9lXuvb2JUr39DKUBXErffNoNdwfw
usNyCzQvBPUm8G+MCHC5kXFQAT9rcX4jVqBZXAv/xpYUv3eeFj0aqQRcUGg0FXHq
YGcjXdLoenQAfkV5LO7BWnGJPLkMvVPi8aQ8x/dyBMFNkgflNu47nOKlQgjCHsUo
PMxowZaGlrt+77TwKauTp0IGrJaF1/la+QSErDqfqAdYHqo1t4Qg0Dwjt8ARRP2F
ZzDooLAdzA8VtJGTECafDgrQxjVkHGbIcMgLD5ZUTyDsEfAScgKXMacffIAcIguN
O0lL5RVbSluJfY3JVIvAyiBYltCkVNU2x3ZQgMJbLaTEfxEl38YvP6eK1F+MvWCq
C2df9ksl8i57nXqL4uLD+5Wm0b/12uro7cBcdjRuz12y2vXGy1yIzQuYjl9zNyMe
ad+vvA7n3LasZda59iijyyRAMsqMFK7ZAsPrkl06f23NTZCQzb7Es1lGOGX0lJuj
cQNEtMHFjuMGbFO8C2qrJAYMjNj5CPSoyPrM218arr2Gl4PwhN5uWYn2ius3wPJf
l24319+DVHmiDeNUzRIha63+5kiZ+nECv9kgT9lpCqQQlnpQIWCaY8rKZxKLpGwq
/JySZZ6pzL17qIyZ1kBl
=0yem
-END PGP SIGNATURE-


-- 
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/e1uilsn-0002g0...@franck.debian.org



Accepted libio-compress-lzma-perl 2.061-1 (source all)

2013-06-01 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 14:47:31 +0200
Source: libio-compress-lzma-perl
Binary: libio-compress-lzma-perl
Architecture: source all
Version: 2.061-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libio-compress-lzma-perl - modules for reading and writing lzma/xz 
files/buffers
Changes: 
 libio-compress-lzma-perl (2.061-1) unstable; urgency=low
 .
   * New upstream release.
   * Bump versioned build dependencies.
Checksums-Sha1: 
 bda687dfbf995bad7e8837feee9f8a7c5a3c2c26 2276 
libio-compress-lzma-perl_2.061-1.dsc
 f532e0aa9a2995efd4cbbb774a30ec49419457d9 88982 
libio-compress-lzma-perl_2.061.orig.tar.gz
 34e29525befccf1adfacc377c2eed47b57cfa668 1753 
libio-compress-lzma-perl_2.061-1.debian.tar.gz
 febf562bce9bf279dad46cf9c684395535c2048d 53968 
libio-compress-lzma-perl_2.061-1_all.deb
Checksums-Sha256: 
 f0c0a9830ad6fc72070dfd13433117ab702a3ab78d8055e7aa2558bb10161f66 2276 
libio-compress-lzma-perl_2.061-1.dsc
 bc88e4915d4d9d4f9bc184fc02c9ef6dbc332456cdf79d0e77dabac21ff8ef90 88982 
libio-compress-lzma-perl_2.061.orig.tar.gz
 5f813166f4e590d9f37ad93f1b2f0d5e56b16973f09c67f5e9b17f4b26596494 1753 
libio-compress-lzma-perl_2.061-1.debian.tar.gz
 755e27a54ffdaf992406f38d821efbe7c59ee9b345c88c45e44fc81711659e5b 53968 
libio-compress-lzma-perl_2.061-1_all.deb
Files: 
 563ca4f9c645b912287b94d9d8b92712 2276 perl optional 
libio-compress-lzma-perl_2.061-1.dsc
 ee2a1021e12339c410dd6bf44de9ef58 88982 perl optional 
libio-compress-lzma-perl_2.061.orig.tar.gz
 6b2cda9cc0410d260af587c292dcfbf4 1753 perl optional 
libio-compress-lzma-perl_2.061-1.debian.tar.gz
 2e210c3321a1bb379de52b19b3b7a481 53968 perl optional 
libio-compress-lzma-perl_2.061-1_all.deb

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

iQIcBAEBCAAGBQJRqe2gAAoJELs6aAGGSaoGkcAQAId9uulwjoAD0UEGK+aaSqWl
qZKI11UV2oBbgyfIwQ62JqMKR/44NSIi+ZJPbkCjjIzm/ELf6vqMTeB3cEmQUsPH
/GwgHHf4DeqXMfRLh5ZGHkkFAhLMuz2HEUr4im89L87HjyGC2g0qqKy9s5rttyK4
Qw+KnXDPjobFyJ73C1WIZ1ZM2rtTJrQMb0eg+yCIj2Aor0VygtVyt/8H3pD87aV5
NBevfWB6W07MUnl8insaCcLUeWjkceQDZROEnwdffzlobtNkPXX/ai3vZZW6jeq2
k71n9fFYwZ5GYZa4gOh0sfe0y8wDnk6hev06wslLVRSFuNyv263QzWb3+yw441I6
/jS7+GtbPlzZYiHLtFS5IdpT+BsM5iqJiGr3EGIBeCrx/Mb6G4vVszk7yyX37Ojq
n9xhGTVnmf+jDPVrryOdv5nfW7hqIV4YPkNVgN3ggVQTrOa87rRf8dlIrdIkp9wb
PXR2QJ2lQTPZq/MKek/K86LOZI/BK733vJzLjZ8icJELSponlO8Va8KdI7XzjujR
RD3zy5si6CjxUXMsho/O2cm/4nHnO5cMS497ngMdV0/QRK4DtgqlyhxTfZiwBiuW
SYZi3Fwi3uHXMokNyQQSHWHLtoKbIu3fDYswPujfejaj3yKaCzZQ8JJh+8dxrjhj
bn3TbPExq2hRPx5kA7R4
=hMvB
-END PGP SIGNATURE-


-- 
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/e1uilst-0002il...@franck.debian.org



Accepted shelxle 1.0.629-1 (source amd64)

2013-06-01 Thread Daniel Leidert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Jun 2013 14:52:09 +0200
Source: shelxle
Binary: shelxle
Architecture: source amd64
Version: 1.0.629-1
Distribution: unstable
Urgency: low
Maintainer: Debichem Team debichem-de...@lists.alioth.debian.org
Changed-By: Daniel Leidert dleid...@debian.org
Description: 
 shelxle- graphical user interface for SHELXL
Changes: 
 shelxle (1.0.629-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control (Vcs-Browser, Vcs-Svn): Fixed vcs-field-not-canonical.
Checksums-Sha1: 
 92ce7d4fe7c6edb42a61cc3a27e9b432bf82c9e9 1367 shelxle_1.0.629-1.dsc
 3f41cec902b54a4b381fd836356d9829cb8e934f 3196875 shelxle_1.0.629.orig.tar.bz2
 30937c032332c9331ff153da16dc6d93a9f4266a 7595 shelxle_1.0.629-1.debian.tar.gz
 2776b17a9f0204ced17242fe7d270eee2cce6334 4250182 shelxle_1.0.629-1_amd64.deb
Checksums-Sha256: 
 0bb978f2567b9da81bdb1087c86f062c0833bb324fbf78151d91b6c288436268 1367 
shelxle_1.0.629-1.dsc
 f46073d136a011973baf6a784f2e9c4c763015a85af8c39e4c66b67efa4b6460 3196875 
shelxle_1.0.629.orig.tar.bz2
 8a4e9b7366eba190f83cfec30365b72b2c8aefef8df2b32a245458b01d403a7f 7595 
shelxle_1.0.629-1.debian.tar.gz
 e21f8b2f3e148b3af93f8b22d27e0d529afda40dffb93dd9bf35528428f890ef 4250182 
shelxle_1.0.629-1_amd64.deb
Files: 
 99a769ec4a7ec7a76c7ecde92e449be6 1367 science optional shelxle_1.0.629-1.dsc
 d89fa6cd0d1a6455609419879434ee25 3196875 science optional 
shelxle_1.0.629.orig.tar.bz2
 1d9bd08448429323bb9231a0ae7f9288 7595 science optional 
shelxle_1.0.629-1.debian.tar.gz
 02b06dce9f56e5fa3c0848a57d175f2b 4250182 science optional 
shelxle_1.0.629-1_amd64.deb

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

iEYEARECAAYFAlGp8EEACgkQm0bx+wiPa4wp8gCeIGSpUHbPc4jURsPG491KXEFU
j4wAoM6fiJOAzbolETavjHK/SokGsMCU
=lcLK
-END PGP SIGNATURE-


-- 
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/e1uilsg-0002zs...@franck.debian.org



Accepted blobby 1.0~rc3-3 (source amd64 all)

2013-06-01 Thread Felix Geyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 01 Jun 2013 15:18:00 +0200
Source: blobby
Binary: blobby blobby-server blobby-data
Architecture: source amd64 all
Version: 1.0~rc3-3
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Felix Geyer fge...@debian.org
Description: 
 blobby - Volleyball game with blobs
 blobby-data - Volleyball game with blobs (data files)
 blobby-server - Volleyball game with blobs (server)
Closes: 710632
Changes: 
 blobby (1.0~rc3-3) unstable; urgency=low
 .
   * Fix FTBFS: 'assert' was not declared in this scope. (Closes: #710632)
 - Add 06_fix_ftbfs_assert_include.patch
Checksums-Sha1: 
 a32be9139333b122a96b059ffaee1ef75fe615e7 2144 blobby_1.0~rc3-3.dsc
 0bcb0341793570e76bc84d732b99296c66ae2813 7398 blobby_1.0~rc3-3.debian.tar.gz
 5877e79c9d8ea60e084532b422fe5c441f682dbf 342130 blobby_1.0~rc3-3_amd64.deb
 d1799d87e9de1612231227b6e620301199f4ddc8 168984 
blobby-server_1.0~rc3-3_amd64.deb
 6fb040d8c0aa4b93b4bb784f20d2357a58f76c8a 1031942 blobby-data_1.0~rc3-3_all.deb
Checksums-Sha256: 
 ac5c298df5081815cdc85b7036536c173e0c14752eee6e09cbe552aae1d8c1f4 2144 
blobby_1.0~rc3-3.dsc
 33a9309616689e56800cb877ebef2d789de14a6b5efe5496dbd7ec3c34594912 7398 
blobby_1.0~rc3-3.debian.tar.gz
 05743acf247d4d554dd27f498c3a6941a56e7339fbf2352629153885723e1eae 342130 
blobby_1.0~rc3-3_amd64.deb
 62133e3ce8e7d5962822560ff4228c335fae40a0919ec56e71d3680bec3cb1df 168984 
blobby-server_1.0~rc3-3_amd64.deb
 f1632f351fbfeb8e97fbf4ca12592dc6fc628692c5f3c2f80b74452925d16fc0 1031942 
blobby-data_1.0~rc3-3_all.deb
Files: 
 1487a7d5dda818711dd4d4d5587d2300 2144 games optional blobby_1.0~rc3-3.dsc
 e343eb54ae3408f1c72aa3e692c1641d 7398 games optional 
blobby_1.0~rc3-3.debian.tar.gz
 1fabcf6c5610704d067f6f278b488538 342130 games optional 
blobby_1.0~rc3-3_amd64.deb
 be96a7ea391884a0f1534845bb9ea092 168984 games optional 
blobby-server_1.0~rc3-3_amd64.deb
 8b05e8260ec5c5d29182124e42e7ff66 1031942 games optional 
blobby-data_1.0~rc3-3_all.deb

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

iQIcBAEBCAAGBQJRqfWRAAoJEP4ixv2DE11FWhkP/RdWF7ciVVaTWdx+je1EE794
Lm69QBnkvROh+igDrKSNXHO06sKl6n9CH+3vmneKT0OR6zyqVsmzNDTpd4cf9tAa
P6cvzxZmkG8maNn3WsBFsIbg/GX0u++w337TrMJcJFe1hA5PkLko0ZZgSFA1sIuY
XdXq400WP3S7RG9DKbSlt6eCWBTsfMOZrL1jidEAFfjYK9wXJSG+1R+07Jk2+kkT
/YJDbajzJPYs0lcT+iyuS6GNAIzYmE6X5sz8tvmbnB5Rc0AW6KUwGHQQ3MjhmSvc
/zEE2SNUjO1OIM7RPxu3wBe0VgJlcxS1ZgdPhuxFiAxYsEFw7PXfiEYxJOwDTxwX
iFXzAqL4NFwDezDUCsVmhJN9kLbBVhFMDqYhKvlvzXTnrK3DS3FI9PS4y+GYJgHr
7GEGkM/j0nCRcKU7a2PBZWK3UpWGrQm9kN0MDY69/sPsPSlu99+LbJFfHh0iWP9M
ZNBxYf22z2LhaTBcu6bovy7dg9h3UMe70+9Z54bvYz1K5Xx1XARWrzvM+N40LhxB
4m5LrVMrmPuhtiPflg9Hvc2sM4HuQ+hxrZ9XZdNSr9WLOUiBPpSrA6eTgvUN64GY
FSrSUoDI4S4rkE1ICM8YoJZIGWaEBfxGK4vWIS0imPv2jzZ96dAFdMTe3Tt+4TZr
irppj6WdLeuQ0+lfGRF3
=jg5i
-END PGP SIGNATURE-


-- 
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/e1uilvg-0002gl...@franck.debian.org



Accepted mgltools-dejavu 1.5.7~rc1~cvs.20130519-1 (source all)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-dejavu
Binary: mgltools-dejavu
Architecture: source all
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-dejavu - visualization of 3D geometry using the OpenGL with Python
Closes: 708817
Changes: 
 mgltools-dejavu (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/control: add punctuation to description (Closes: #708817)
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 82be8bafbdb375157b0614a0cf4c36c6f1df28ac 1744 
mgltools-dejavu_1.5.7~rc1~cvs.20130519-1.dsc
 5ac4b1a919f41020979808a8c775d041b909c012 1677151 
mgltools-dejavu_1.5.7~rc1~cvs.20130519.orig.tar.gz
 a5ecdc922d768cf8d7c88c165abefa835531d462 6964 
mgltools-dejavu_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 7dd5f8960ed1c8b1b03fcadbe26735c5be93dcf1 622488 
mgltools-dejavu_1.5.7~rc1~cvs.20130519-1_all.deb
Checksums-Sha256: 
 38175607e18ee9b8aab21edb4b27f02614c02b9e0edab667a4e5c1adcb49e7bd 1744 
mgltools-dejavu_1.5.7~rc1~cvs.20130519-1.dsc
 18fbd7b1547806681596d4f7a88e55066432a8f1a9a823eadfa588148994 1677151 
mgltools-dejavu_1.5.7~rc1~cvs.20130519.orig.tar.gz
 6c75c49e92499cd5b9fcafe8d0637fd232eac51418673904f54f8f6444793fb5 6964 
mgltools-dejavu_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 6cecbbc46725e5086a0fadca97ff7c1b6bcdc7e719e28ad7e9315ef0a74b00ed 622488 
mgltools-dejavu_1.5.7~rc1~cvs.20130519-1_all.deb
Files: 
 493bdb514b307b25698b653f675c936e 1744 non-free/science optional 
mgltools-dejavu_1.5.7~rc1~cvs.20130519-1.dsc
 20e84d34aa426a87c6cd3ffdd410a4c4 1677151 non-free/science optional 
mgltools-dejavu_1.5.7~rc1~cvs.20130519.orig.tar.gz
 05bdddc9f5fc5f2c327a8d879f4cfc0c 6964 non-free/science optional 
mgltools-dejavu_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 a3665180cc10698eca9c7b6ab5a23ab8 622488 non-free/science optional 
mgltools-dejavu_1.5.7~rc1~cvs.20130519-1_all.deb

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

iEYEARECAAYFAlGp8vMACgkQ02K2KlS5mJDcOgCfVo/2bhQ5Dy5lmBdn3GIgY14A
HvEAniFPL9IrxpcJ41IvM3XVzZfnibNv
=uKbA
-END PGP SIGNATURE-


-- 
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/e1uilvw-0002qd...@franck.debian.org



Accepted mgltools-gle 1.5.7~rc1~cvs.20130519-1 (source amd64)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-gle
Binary: mgltools-gle
Architecture: source amd64
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-gle - GLE library Python extension
Changes: 
 mgltools-gle (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 c5d683452d0fe25c6ae9048fd1f6b6df11baa085 1711 
mgltools-gle_1.5.7~rc1~cvs.20130519-1.dsc
 ac75be1f97c73d08edcc16386aed97ee3fa943ce 63676 
mgltools-gle_1.5.7~rc1~cvs.20130519.orig.tar.gz
 19803af67ec83773d96eb31c8ec41ffc67ece4bd 7894 
mgltools-gle_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 aba78469baf32abaefb55bab61dfdc5934fed71b 78046 
mgltools-gle_1.5.7~rc1~cvs.20130519-1_amd64.deb
Checksums-Sha256: 
 d39a3953f68d54185e49db4a9d2cf6d7dba71d3cdbe296f4d43dcab120f71de2 1711 
mgltools-gle_1.5.7~rc1~cvs.20130519-1.dsc
 91d83f8de9b2ba2ec195a92964f86aa70b51c2ccb3d243d9f5baacb97c528242 63676 
mgltools-gle_1.5.7~rc1~cvs.20130519.orig.tar.gz
 649d6cc59745c18a9d558ef273ba9607dc7061521e25eb42950467722c99199c 7894 
mgltools-gle_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 b022bcbcc82228a111a0c35fc78f006629461343b27fbacf7d59469f7aada571 78046 
mgltools-gle_1.5.7~rc1~cvs.20130519-1_amd64.deb
Files: 
 b8fdf94343ee58a64c8d33312a16ff05 1711 non-free/libs optional 
mgltools-gle_1.5.7~rc1~cvs.20130519-1.dsc
 9fe1e76e77c60f9495573ecbc0c8b383 63676 non-free/libs optional 
mgltools-gle_1.5.7~rc1~cvs.20130519.orig.tar.gz
 0c7ebf1238308c8d8e8c25f3c39d6547 7894 non-free/libs optional 
mgltools-gle_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 977804a9145a51f5b6ef7926dc86cb61 78046 non-free/libs optional 
mgltools-gle_1.5.7~rc1~cvs.20130519-1_amd64.deb

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

iEUEARECAAYFAlGp9ccACgkQ02K2KlS5mJBjCgCgj2XU3e1lY030DCBtJxgAyPa0
gWwAmLeccUVo4frQts+dERykBDCGIuI=
=vJmK
-END PGP SIGNATURE-


-- 
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/e1uilw2-0002tu...@franck.debian.org



Accepted mgltools-opengltk 1.5.7~rc1~cvs.20130519-1 (source amd64)

2013-06-01 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 May 2013 12:00:00 +0200
Source: mgltools-opengltk
Binary: mgltools-opengltk
Architecture: source amd64
Version: 1.5.7~rc1~cvs.20130519-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-opengltk - Opengltk Python extension
Changes: 
 mgltools-opengltk (1.5.7~rc1~cvs.20130519-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: bump standard to 3.9.4 (no changes)
   * debian/control: remove DM-Upload-Allowed
   * debian/copyright: add permission for debian to distribute mgltools
Checksums-Sha1: 
 1aafce0a4bbe4e8765b263a606a854bb9d13f412 1795 
mgltools-opengltk_1.5.7~rc1~cvs.20130519-1.dsc
 eaa3cdece15487ebe2ef83e8f11ca70c94336cbc 1628225 
mgltools-opengltk_1.5.7~rc1~cvs.20130519.orig.tar.gz
 bc1606a5cbae5bdab3c81c8c6030900a3af220d9 8974 
mgltools-opengltk_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 30ccce4c6ddd04fb107389998366a5fde8e31322 326492 
mgltools-opengltk_1.5.7~rc1~cvs.20130519-1_amd64.deb
Checksums-Sha256: 
 880b506f101a32d2d97ad5001a076b0ecfa9237b58d8e856b4884ee4c5486e48 1795 
mgltools-opengltk_1.5.7~rc1~cvs.20130519-1.dsc
 25fc35c652ef1f953c12718d10aa2055ca57f1aadb4b076c5c4af0385ddeda73 1628225 
mgltools-opengltk_1.5.7~rc1~cvs.20130519.orig.tar.gz
 c10332fc9312d89ee129bf79ae4e44d7d685a56d6abba1482a26166f39da826d 8974 
mgltools-opengltk_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 f6294643804041cf9a890e957d5224bd8191c8039ea40c263ef89209cd94527a 326492 
mgltools-opengltk_1.5.7~rc1~cvs.20130519-1_amd64.deb
Files: 
 dc79eb15211289522c040a642fa675e6 1795 non-free/science optional 
mgltools-opengltk_1.5.7~rc1~cvs.20130519-1.dsc
 e3e8b263455c768a9932039182338478 1628225 non-free/science optional 
mgltools-opengltk_1.5.7~rc1~cvs.20130519.orig.tar.gz
 e9eafd2cac8ed09309d7bd1e4504d092 8974 non-free/science optional 
mgltools-opengltk_1.5.7~rc1~cvs.20130519-1.debian.tar.gz
 4d31a24dd1eff39de9231b137ca47161 326492 non-free/science optional 
mgltools-opengltk_1.5.7~rc1~cvs.20130519-1_amd64.deb

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

iEYEARECAAYFAlGp820ACgkQ02K2KlS5mJCWtwCfVxyTNvFbZfKNvTPKKWD+Ibhh
g6cAnRloFl79x3pIXK1uXG35hg4sGRRR
=KjlC
-END PGP SIGNATURE-


-- 
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/e1uilwa-0002xc...@franck.debian.org



  1   2   >