Bug#696520: ITP: doris -- Delft object-oriented radar interferometric software

2012-12-22 Thread Antonio Valentino
Package: wnpp
Severity: wishlist
Owner: Antonio Valentino antonio.valent...@tiscali.it

* Package name: doris
  Version : 4.06
  Upstream Author : Delft University of Technology
* URL : http://doris.tudelft.nl
* License : GPL
  Programming Lang: C++, Python, csh
  Description : Delft object-oriented radar interferometric software

DORIS is an Interferometric Synthetic Aperture Radar (InSAR) processor
developed by the Delft Institute of Earth Observation and Space Systems
of Delft University of Technology.

Interferometric products and endproducts such as Digital Elevation
Models and displacement maps can be generated with this software from
Single Look Complex data.
Data from the satellites ERS, ENVISAT (first ENVISAT interferogram,
DEM, and perspective view, JERS (first JERS interferogram), and
RADARSAT (first RADARSAT interferogram) can be processed with the
Doris software.


-- 
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/20121222085546.6477.14258.report...@mac2.local.net



Re: Uscan enhancements revitalised (Was: let uscan exclude some upstream files)

2012-12-22 Thread Nicolas Boulenguez
On Thu, Dec 20, 2012 at 11:19:19PM +0100, Andreas Tille wrote:

 As I see on your Wiki page you have described your proposal from your
 last posting on the mailing list[3] which is actually in contrast to
 what is implemented in [2] and was described and discussed in the thread
 starting here[4].  I should most probably add the current implementation
 to the Wiki page and I will do so in the next couple of days.  But
 before I'm starting to do so I would like to clarify why you used the
 headline Implementation about the paragraph explaining what is not
 implemented.  That's a bit confusing but may be I missunderstood
 something.  Before I start mixing up things I'd like to hear your real
 intention which I might have missed.
 
 Now for the current implementation: The stumbling block I was currently
 facing is that I want to strip some upstream source (of igv[5]) from a
 jar file which resides inside the packaging root as well as in a
 subdirectory.  It looks like
 
IGVDistribution_2.1.30/goby-io-igv.jar   (a)
IGVDistribution_2.1.30/lib/goby-io-igv.jar   (b)
 
 The thing is that (a) should be removed and (b) needs to remain - but
 this case is not possible with the current implementation.  If
 Files-Excluded contains a string without '/' a find -name search is
 approached and catches them all.  I remember this behaviour was
 mentioned as a design flaw but the pro-argument is that you really
 comfortably can use this when doing things like
 
Files-Excluded: ._* *~ .DS_Store
 
 If you would need to specify each and any dir containing such cruft
 files this would become a really lousy way which is not better than
 keeping the old get-orig-source way.

I should have documented the Files-Excluded field in the Deleted file
specification section. The Implementation section was supposed to
collect information for developers, but the name is quite inaccurate.
Feel free to modify the page.

However, I strongly disagree to interpret patterns differently
depending on whether they contain a slash or not, while find -path
alone handles your examples.

  for pattern in
IGVDistribution_2.1.30/goby-io-igv.jar
._* */._*
*~
.DS_Store */.DS_Store
  loop
`find $main_source_dir -path $main_source_dir/$_ -print0 | xargs -0 rm 
-rf`;
  end loop;

The objection you've raised in
  https://lists.debian.org/debian-devel/2012/09/msg00202.html
persists, but I consider that sparing a few patterns is not worth the
added complexity.


-- 
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/20121222110611.GA5759@pegase



Package variant selection policy using meta packages

2012-12-22 Thread Joachim Breitner
Dear developers,

I’d like to get opinions on whether it is ok to (ab)use meta packages,
alternative dependencies and conflicts to provide package selection
policy features to our users that are not supported otherwise.

Here is an example (and it is the use case that I am considering):

Haskell libraries are always shipped in three different packages:
  * libghc-foo-dev ← The library itself
  * libghc-foo-prof ← Extra data only used when profiling code
  * libghc-foo-doc ← Documentation.

Let’s look at -prof only(for -doc the same scheme would be useful).
Users tend to fall into one of three classes:
 A. Users that, if they have foo-dev installed, always also want
foo-prof installed.
 B. Users that want to manually decide for what packages they want
the -prof package and for what package not.
 C. Users who don’t want any -prof package around.

Currently, we only really help user B. If user A installs foo-dev there
is nothing that ensures that he gets foo-prof installed as well.

So my idea is to have a meta package for each use case. Note that this
meta package should _not_ have to explicitly list all libghc-*-*
packages, as it should not have to be changed when we add a new Haskell
library (and it would make the testing migration even harder). So this
should work (names just working titles, of course):

I create three meta packages, named i-want-all-prof-packages,
i-want-some-prof-packages, i-want-no-prof-packages. The package
relations are then:

i-want-all-prof-packages:
  Conflicts: i-want-some-prof-packages i-want-no-prof-packages

i-want-no-prof-packages:
  Conflicts: i-want-some-prof-packages

i-want-some-prof-packages:
  [no special relations]
  
libghc-foo-dev:
  Depends: libghc-foo-prof | i-want-some-prof-packages | i-want-no-prof-package
libghc-foo-prof:
  Conflicts: i-want-no-prof-package

Clearly, only at most one of the three policy packages will be
installed.
  * If i-want-all-prof-packages is installed, this means that the
dependency of foo-dev implies foo-prof, as intended.
  * If i-want-some-prof-packages is installed, then the dependency
of foo-dev is always fulfilled, so the user can decide what he
wants or what not.
  * If i-want-no-prof-packages is installed, then the foo-dev
dependency is fulfilled, but no -prof package can be installed.

So all three use cases are supported, and our users happy.

What do you think – should Debian employ such methods, or not? If not,
why not?

Greetings,
Joachim

PS: The existence of i-want-some-prof-packages, which has no
dependencies, ensures that installability in general is not impaired, so
this scheme would have /no/ bad effect on the testing migration.

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


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


Bug#696526: ITP: libmojolicious-plugin-i18n-perl -- Internationalization Plugin for Mojolicious 3.x and higher

2012-12-22 Thread Dominique Dumont

Package: wnpp
Owner: Dominique Dumont d...@debian.org
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org,debian-p...@lists.debian.org

* Package name: libmojolicious-plugin-i18n-perl
  Version : 0.82
  Upstream Author : Anatoly Sharifulin sharifu...@gmail.com
* URL : http://search.cpan.org/dist/Mojolicious-Plugin-I18N/
* License : Artistic-2.0
  Programming Lang: Perl
  Description : Internationalization Plugin for Mojolicious 3.x and higher

Mojolicious::Plugin::I18N is an internationalization plugin for Mojolicious 
3.x
and higher. I18N is provided by Locale::Maketext.

Dominique


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


Re: Package variant selection policy using meta packages

2012-12-22 Thread Andrei POPESCU
On Sb, 22 dec 12, 13:17:32, Joachim Breitner wrote:
 Users tend to fall into one of three classes:
  A. Users that, if they have foo-dev installed, always also want
 foo-prof installed.
  B. Users that want to manually decide for what packages they want
 the -prof package and for what package not.
  C. Users who don’t want any -prof package around.
 
 Currently, we only really help user B. If user A installs foo-dev there
 is nothing that ensures that he gets foo-prof installed as well.

And a foo-dev Recommends: foo-prof is not suitable because?

Kind regards,
Andrei
-- 
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic


signature.asc
Description: Digital signature


Re: Package variant selection policy using meta packages

2012-12-22 Thread Jonas Smedegaard
Quoting Andrei POPESCU (2012-12-22 13:39:07)
 On Sb, 22 dec 12, 13:17:32, Joachim Breitner wrote:
  Users tend to fall into one of three classes:
   A. Users that, if they have foo-dev installed, always also want
  foo-prof installed.
   B. Users that want to manually decide for what packages they want
  the -prof package and for what package not.
   C. Users who don’t want any -prof package around.
  
  Currently, we only really help user B. If user A installs foo-dev there
  is nothing that ensures that he gets foo-prof installed as well.
 
 And a foo-dev Recommends: foo-prof is not suitable because?

Recommends are for relations suitable for most users, not some class of 
users.

 - Jonas

-- 
 * Jonas Smedegaard - idealist  Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: signature


Re: Package variant selection policy using meta packages

2012-12-22 Thread Neil Williams
On Sat, 22 Dec 2012 14:24:46 +0100
Jonas Smedegaard d...@jones.dk wrote:

 Quoting Andrei POPESCU (2012-12-22 13:39:07)
  On Sb, 22 dec 12, 13:17:32, Joachim Breitner wrote:
   Users tend to fall into one of three classes:
A. Users that, if they have foo-dev installed, always also want
   foo-prof installed.
B. Users that want to manually decide for what packages they want
   the -prof package and for what package not.
C. Users who don’t want any -prof package around.
   
   Currently, we only really help user B. If user A installs foo-dev there
   is nothing that ensures that he gets foo-prof installed as well.
  
  And a foo-dev Recommends: foo-prof is not suitable because?
 
 Recommends are for relations suitable for most users, not some class of 
 users.

In this case, the only difference is that using Recommends doesn't
distinguish between cases B  C. I don't see that as a problem.

IMHO, actively preventing the installation of optional dependencies is
not something which actually warrants support.

None of these packages get installed by default, simply disabling the
installation of Recommends by default meets all the requirements of
cases B  C without making an artificial block between the two.

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgpMllDwmDng0.pgp
Description: PGP signature


Re: Package variant selection policy using meta packages

2012-12-22 Thread Joachim Breitner
Hi,

Am Samstag, den 22.12.2012, 14:39 +0200 schrieb Andrei POPESCU:
 On Sb, 22 dec 12, 13:17:32, Joachim Breitner wrote:
  Users tend to fall into one of three classes:
   A. Users that, if they have foo-dev installed, always also want
  foo-prof installed.
   B. Users that want to manually decide for what packages they want
  the -prof package and for what package not.
   C. Users who don’t want any -prof package around.
  
  Currently, we only really help user B. If user A installs foo-dev there
  is nothing that ensures that he gets foo-prof installed as well.
 
 And a foo-dev Recommends: foo-prof is not suitable because?

because we cannot tell what the user will want. For example, a user of
xmonad will not want -prof packages installed, and an addition 400MB of
useless stuff on his computer is not in his, and hence our, interest.

Also, a user from the class A wants a stronger guarantee than just
Recommends, which is just a suggestion to the package manager, but not a
a hard relation. With the i-want-all-prof-package metapackage it is
guaranteed that for every -dev package, there is the corresponding -doc
package installed.

Am Samstag, den 22.12.2012, 13:32 + schrieb Neil Williams:
 IMHO, actively preventing the installation of optional dependencies is
 not something which actually warrants support.

I admit that use case C might not be as useful as the difference between
B and A, but it doesn’t hurt either (assuming a meta-package based
approach is taken for A and B).

 None of these packages get installed by default, simply disabling the
 installation of Recommends by default meets all the requirements of
 cases B  C without making an artificial block between the two.

I find this a bit coarsely grained. I might be a user in class B or C,
but besides that I certainly want to follow whatever the maintainer of a
package recommends me to install. Disabling the installation of
Recommends would change the behavior of _all_ Debian package. I don’t
think this is a good solution.

Greetings,
Joachim


-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


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


Re: Package variant selection policy using meta packages

2012-12-22 Thread Neil Williams
On Sat, 22 Dec 2012 14:57:56 +0100
Joachim Breitner nome...@debian.org wrote:

 Am Samstag, den 22.12.2012, 14:39 +0200 schrieb Andrei POPESCU:
  On Sb, 22 dec 12, 13:17:32, Joachim Breitner wrote:
   Users tend to fall into one of three classes:
A. Users that, if they have foo-dev installed, always also want
   foo-prof installed.
B. Users that want to manually decide for what packages they want
   the -prof package and for what package not.
C. Users who don’t want any -prof package around.
   
   Currently, we only really help user B. If user A installs foo-dev there
   is nothing that ensures that he gets foo-prof installed as well.
  
  And a foo-dev Recommends: foo-prof is not suitable because?
 
 because we cannot tell what the user will want. For example, a user of
 xmonad will not want -prof packages installed, and an addition 400MB of
 useless stuff on his computer is not in his, and hence our, interest.

apt-get --no-install-recommends xmonad-prof ...
 
 Also, a user from the class A wants a stronger guarantee than just
 Recommends, which is just a suggestion to the package manager, but not a
 a hard relation. With the i-want-all-prof-package metapackage it is
 guaranteed that for every -dev package, there is the corresponding -doc
 package installed.

I don't see why this is necessary. Recommends is a strong guarantee for
most cases, it is also sufficiently flexible for those who want more
control.

Individual packages can check for extras, just like devscripts does. (I
find it hard to believe that anyone except devscripts maintainers
actually needs all of the Recommends: listed for devscripts.)
 
 Am Samstag, den 22.12.2012, 13:32 + schrieb Neil Williams:
  IMHO, actively preventing the installation of optional dependencies is
  not something which actually warrants support.
 
 I admit that use case C might not be as useful as the difference between
 B and A, but it doesn’t hurt either (assuming a meta-package based
 approach is taken for A and B).
 
  None of these packages get installed by default, simply disabling the
  installation of Recommends by default meets all the requirements of
  cases B  C without making an artificial block between the two.
 
 I find this a bit coarsely grained. I might be a user in class B or C,
 but besides that I certainly want to follow whatever the maintainer of a
 package recommends me to install. Disabling the installation of
 Recommends would change the behavior of _all_ Debian package. I don’t
 think this is a good solution.

It doesn't have to affect all packages. --no-install-recommends is your
friend. What's more, package managers like synaptic will clearly show
which packages are available as Recommends but which weren't installed.

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgpyInWAsFuwd.pgp
Description: PGP signature


Packaging upstream tarballs with mixed C and Python sources

2012-12-22 Thread John Paul Adrian Glaubitz
Hi,

I am currently trying to figure out how to get the new UAE fork
fs-uae [1] ready for Debian and I haven't yet found a satisfiable
way to build the package.

fs-uae itself is written in C, but it ships together with a launcher
GUI and a server for multi-player games, both written in Python. While
the C source code for the emulator itself is located at the top
directory of the source tarball, both the launcher and the server are
located in sub-directories.

If I just create the usual debhelper 9 rules file, the package will be
built from the C sources only, ignoring the Python code for launcher
and server.

Does anyone have an idea how to create the three binary packages for
the emulator, launcher and server from one source package. I am asking
since I am not such an expert on Python packaging yet and hope that
someone here knows better :).

I am CC'ing upstream since I have been discussing the issue with him
as well. Also, there might be the possibility to just split the
upstream tarball into emulator, launcher and server to simplify
packaging.

The upstream tarball can be found here [2], if anyone wants to have a
look.

Cheers,

Adrian

 [1] http://fengestad.no/fs-uae/
 [2] http://fengestad.no/fs-uae/stable/2.0.1/fs-uae-2.0.1.tar.gz

-- 
 .''`.  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/20121222152322.ga32...@physik.fu-berlin.de



Bug#696541: ITP: filerock-client -- client for FileRock Secure Cloud Storage

2012-12-22 Thread Alessio Treglia
Package: wnpp
Severity: wishlist
Owner: Alessio Treglia ales...@debian.org

* Package name: filerock-client
  Version : 0.4.0
  Upstream Author : Heyware s.r.l
* URL : http://www.filerock.com
* License : GPL
  Programming Lang: Python
  Description : client for FileRock Secure Cloud Storage

 This package provides the client application of FileRock,
 a backup and synchronization service that provides data
 confidentiality and integrity.


-- 
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/20121222153326.6856.8285.reportbug@Aspire-1410



Re: Packaging upstream tarballs with mixed C and Python sources

2012-12-22 Thread Игорь Пашев
2012/12/22 John Paul Adrian Glaubitz glaub...@physik.fu-berlin.de:
 Hi,

 I am currently trying to figure out how to get the new UAE fork
 fs-uae [1] ready for Debian and I haven't yet found a satisfiable
 way to build the package.

 fs-uae itself is written in C, but it ships together with a launcher
 GUI and a server for multi-player games, both written in Python. While
 the C source code for the emulator itself is located at the top
 directory of the source tarball, both the launcher and the server are
 located in sub-directories.

 If I just create the usual debhelper 9 rules file, the package will be
 built from the C sources only, ignoring the Python code for launcher
 and server.

 Does anyone have an idea how to create the three binary packages for
 the emulator, launcher and server from one source package. I am asking
 since I am not such an expert on Python packaging yet and hope that
 someone here knows better :).

 I am CC'ing upstream since I have been discussing the issue with him
 as well. Also, there might be the possibility to just split the
 upstream tarball into emulator, launcher and server to simplify
 packaging.

 The upstream tarball can be found here [2], if anyone wants to have a
 look.

 Cheers,

 Adrian

 [1] http://fengestad.no/fs-uae/
 [2] http://fengestad.no/fs-uae/stable/2.0.1/fs-uae-2.0.1.tar.gz


I think override_dh_auto_{build,install,clean} in debian/rules could help.
For example:

override_dh_auto_build:
cd server  ... # build server
$(MAKE) ... # build in top dir


-- 
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/call-q8wmo7xsjm4ua5budnyovyentnk7ehlm8vxmvxw0xke...@mail.gmail.com



Re: Package variant selection policy using meta packages

2012-12-22 Thread Peter Samuelson

[Joachim Breitner]
  And a foo-dev Recommends: foo-prof is not suitable because?
 
 because we cannot tell what the user will want. For example, a user of
 xmonad will not want -prof packages installed, and an addition 400MB of
 useless stuff on his computer is not in his, and hence our, interest.

So, it appears xmonad is a window manager.  It seems a fair question
why someone who runs a window manager needs -dev packages at all, let
alone -prof packages.

According to the package description, you only need the -dev package if
you actually plan to configure the window manager instead of using its
defaults.  Which presumably most people do, so I guess the Recommends
makes sense.  Excpet for the part where this requires one or more -dev
packages at all.  It looks as though configuring xmonad involves
_recompiling_ it.  What is this, an old school Unix kernel?  I'm
confused.

Peter


-- 
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/20121222185144.gp4...@p12n.org



Re: Package variant selection policy using meta packages

2012-12-22 Thread Joachim Breitner
Hi,

Am Samstag, den 22.12.2012, 12:51 -0600 schrieb Peter Samuelson:
 According to the package description, you only need the -dev package if
 you actually plan to configure the window manager instead of using its
 defaults.  Which presumably most people do, so I guess the Recommends
 makes sense.  Excpet for the part where this requires one or more -dev
 packages at all.  It looks as though configuring xmonad involves
 _recompiling_ it.  What is this, an old school Unix kernel?  I'm
 confused.

this is getting off topic, but let me lessen your confusion: The
popularity of xmonad lies in the fact that to configure it, you have the
full power of a high level programming language available. The defaults
are quite minimalistic, so most people will do that and willneed the
-dev packages.

However, they have no interest in the -prof packages altogether; this
policy decision is what I want to make easier for the user to express
and enforce.

Greetings,
Joachim

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


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


Re: Packaging upstream tarballs with mixed C and Python sources

2012-12-22 Thread Paul Wise
On Sat, Dec 22, 2012 at 11:50 PM, Игорь Пашев wrote:

 I think override_dh_auto_{build,install,clean} in debian/rules could help.
 For example:

 override_dh_auto_build:
 cd server  ... # build server
 $(MAKE) ... # build in top dir

Best talk upstream into providing a better build system, but until
they do that, this workaround would be better I think:

override_dh_auto_build:
 dh_auto_build --sourcedirectory=server
 dh_auto_build


--
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/CAKTje6FhoV5t21AyfxuLTYxV2BwqGaSp=uj4r9o6TS�ch...@mail.gmail.com



Accepted yacas 1.3.3-1 (source all amd64)

2012-12-22 Thread Muammar El Khatib
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 22 Dec 2012 09:50:06 +0100
Source: yacas
Binary: yacas yacas-doc
Architecture: source all amd64
Version: 1.3.3-1
Distribution: experimental
Urgency: low
Maintainer: Muammar El Khatib muam...@debian.org
Changed-By: Muammar El Khatib muam...@debian.org
Description: 
 yacas  - Computer Algebra System
 yacas-doc  - Documentation for Yacas
Changes: 
 yacas (1.3.3-1) experimental; urgency=low
 .
   * New upstream release.
   * When compiling the new version of yacas, it was found that the distclean
 target didn't get rid of all changes made when configuring the package.
 Thus, it was necessary to execute a dpkg-source --commit to recover those
 changes in this patch file. See file: 01_locchanges.patch
Checksums-Sha1: 
 1f505623cc932c37e8d2994b77ecf4f2390848e3 1217 yacas_1.3.3-1.dsc
 321c97db0f0ff9b21fcfb9b2a6b9337427a27063 1296777 yacas_1.3.3.orig.tar.gz
 f2832f060b2afb7644fcc75d887b94e6de18f67d 54059 yacas_1.3.3-1.debian.tar.gz
 256effc198c6bad88d8250a12bcdc582a4ac04a2 480272 yacas-doc_1.3.3-1_all.deb
 41050644f33ee706f938b3973342f2612dd90851 438576 yacas_1.3.3-1_amd64.deb
Checksums-Sha256: 
 5b38e36d31681c63633d6defd4439193ef1e7fc2b9485bd76e5d8dd17bdeac43 1217 
yacas_1.3.3-1.dsc
 6c73c653c5e1356751000a68c14d231b1ef4f2b33193a158b8caec142141 1296777 
yacas_1.3.3.orig.tar.gz
 e5541bb1bbf76ea14d97112a2430e7c490dc1999595d4a0ff8915165294eedce 54059 
yacas_1.3.3-1.debian.tar.gz
 48e7c31f554529e4f9de41fd8bcd58b07c2ff9def15c057f7e720b77cb116921 480272 
yacas-doc_1.3.3-1_all.deb
 043f55adaa1173269a7a4d0899919079ecff62e42edb4b6638577c47ae02289e 438576 
yacas_1.3.3-1_amd64.deb
Files: 
 cbade5e2b37cda60d10be9e651303646 1217 math extra yacas_1.3.3-1.dsc
 93345a70faecc16469fa3c32d2b75a90 1296777 math extra yacas_1.3.3.orig.tar.gz
 a6df15aa8a18c169351a7230c763c8e2 54059 math extra yacas_1.3.3-1.debian.tar.gz
 77842632dc8461ee765a61de39409256 480272 doc extra yacas-doc_1.3.3-1_all.deb
 e64c8cbd2ed2879504ea1cd7da26c6a0 438576 math extra yacas_1.3.3-1_amd64.deb

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

iEYEARECAAYFAlDVgl0ACgkQMOtAOxJwKfHErgCeM7sEsQCm/EJwek5GmHJX0hiE
xvQAmwZJp1SElRb25F1WYBIAb/JVKS3S
=5eXO
-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/e1tmlub-0001vi...@franck.debian.org



Accepted dacs 1.4.28-1 (source amd64 all)

2012-12-22 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 21 Dec 2012 16:18:12 +0100
Source: dacs
Binary: dacs libapache2-mod-dacs libdacs1 libdacs-dev dacs-examples
Architecture: source amd64 all
Version: 1.4.28-1
Distribution: experimental
Urgency: low
Maintainer: Christoph Berg m...@debian.org
Changed-By: Christoph Berg m...@debian.org
Description: 
 dacs   - Distributed Access Control System (DACS)
 dacs-examples - Distributed Access Control System (DACS) - example web root
 libapache2-mod-dacs - Distributed Access Control System (DACS) - Apache Module
 libdacs-dev - Distributed Access Control System (DACS) - shared library
 libdacs1   - Distributed Access Control System (DACS) - shared library
Changes: 
 dacs (1.4.28-1) experimental; urgency=low
 .
   * New upstream version.
   * Update symbols file, removed symbol: http_main@Base.
   * debian/rules: The dacshttp renaming went upstream.
   * debian/rules: Run dacsexpr tests.
Checksums-Sha1: 
 d47185164318e5e7be1d4b7764489439575b7876 2217 dacs_1.4.28-1.dsc
 2ac4df7eff37ef7cc235e4caa84b62397478343e 3732171 dacs_1.4.28.orig.tar.gz
 fbfaa915e6d0947c1933fd12571d42dcbc3100ba 18864 dacs_1.4.28-1.debian.tar.gz
 bc8e1b5a49f3ab9e29a98065f5f987140057d935 1740138 dacs_1.4.28-1_amd64.deb
 ae54f0aa2025d08503b6950165c1eb2af772b614 37692 
libapache2-mod-dacs_1.4.28-1_amd64.deb
 05aabb02fc28108f0cd93f349452189ed320f505 580390 libdacs1_1.4.28-1_amd64.deb
 0d20abac579bc27fe8eab3a9f295fb9e5b73475b 853458 libdacs-dev_1.4.28-1_amd64.deb
 76ea0a0f410b29fab7c549f31b2a1ae3c24607ac 589864 dacs-examples_1.4.28-1_all.deb
Checksums-Sha256: 
 48b67fda0f404553a8cd9de3e79380a2f5b781255a4e5ccc5f2f137de963f66c 2217 
dacs_1.4.28-1.dsc
 cfb376a4e9a8008854f6ac1383e5d768cd2c71a48547493d5869bfbae83ecb88 3732171 
dacs_1.4.28.orig.tar.gz
 88bc031d1d9ac43c9d98fd251cb81edc074d4ce32190cc8e2ba4f5d98c0284c3 18864 
dacs_1.4.28-1.debian.tar.gz
 6717fad85996a80c134e0f52acaf80cfedbc1038e93a3ad94e5c45d29a53f297 1740138 
dacs_1.4.28-1_amd64.deb
 f0597c8e2f4c7212c0dea6c3856f7be78567e2cb81fc0d8665375461fb347c61 37692 
libapache2-mod-dacs_1.4.28-1_amd64.deb
 d1414ecc43dd75d33add91dce18736cb4f8154d002a78e21566c50a4b8e4b71f 580390 
libdacs1_1.4.28-1_amd64.deb
 331fc475846d91f0bd4c7a126e6aa4f5cd4de1d23af5f279026c2af4eacbb190 853458 
libdacs-dev_1.4.28-1_amd64.deb
 10b0ed7cc068415b5f31b6ed8b483fa82442bf5c2e35ec588f2d92003915b221 589864 
dacs-examples_1.4.28-1_all.deb
Files: 
 453e1f738167397a00e727914887b430 2217 web optional dacs_1.4.28-1.dsc
 f0a1a6b761d085326a2ba608f4a10cff 3732171 web optional dacs_1.4.28.orig.tar.gz
 8baf446b5afc70618f419517cfd505c6 18864 web optional dacs_1.4.28-1.debian.tar.gz
 553dc14ffaf0c3a302f884a31e15f6b6 1740138 web optional dacs_1.4.28-1_amd64.deb
 a4b10aa4fe4dee4bdec630f50a9b2acc 37692 httpd optional 
libapache2-mod-dacs_1.4.28-1_amd64.deb
 64c85dee6a72a63dadad600a356bdf43 580390 libs optional 
libdacs1_1.4.28-1_amd64.deb
 47800074ebd478f948fea21aa2850c9a 853458 libdevel optional 
libdacs-dev_1.4.28-1_amd64.deb
 461771a90264d547d9a28a649a8e2d23 589864 web optional 
dacs-examples_1.4.28-1_all.deb

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

iQIcBAEBCAAGBQJQ1ZI8AAoJEExaa6sS0qeuLNgP/jLY6AH2mS0z2l1xIJmDN/Ak
TfIm+lEZt7u6Hk/SSkEaQBleMji3N0kuiFk0sAwPRu2P3748dkbLe0CVA8tdrHxY
XdlEKfSNs/YLG88Jtwub8V2YREbVocEMmYbq2pYTb7C6nyhYcdb/p+TizWrE58Nr
zNqBCYcHLfdVAPGUfuNIo0zKN3MXEHnXSU2tK20bNd16fOhlZuQsx9d5f4Y23R/g
IjxA2ABEuj8wofhgUv/K8Rw8PJkCpxQU/plE6MIH3TNrrgy7OmvDH3TxIWbqHkx/
XjOtwlefRmGxIQgPUwJ/zh///EdKXu1xRTRVhYEO/oclp9xQj/RwNBZTEJzcEFfe
7Amn/OLCSFxuYHXWEtYEx1WfylfRRRn1pkxmNQ1LccDl9kTM8fkWVSvX/x14LLi0
n28syajy/0JDcwikB6n2vNwNlw1Vk9WwMNi/CiPzwHQGYyeAAdqY5oqjp9a9Iizu
bJAxtKgA6TFsCEmJzD7if3D3mPLirE5By2egMF/bz5OeoyWsdbqMBOgzrXFvZJbO
ckMd43g1XCZo22QkWjcuscgKGW2DPRHeAUQ9WHUA7PeLyrN4zFhDoy3AZxXWSg7x
SnACef4TnfqWCHNqwtIYzml68Da2Tz/YcUdOCjnmgMYCZIDYUww/mIzck9S88Zpt
4Nw96IhuSlH8AHtDw4/V
=ffbl
-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/e1tmn5d-0001dl...@franck.debian.org



Accepted liferea 1.8.6-1.1 (source all amd64)

2012-12-22 Thread David Smith
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 15 Dec 2012 16:35:23 +0800
Source: liferea
Binary: liferea liferea-data liferea-dbg
Architecture: source all amd64
Version: 1.8.6-1.1
Distribution: unstable
Urgency: low
Maintainer: Luis Rodrigo Gallardo Cruz rodr...@debian.org
Changed-By: David Smith sidic...@gmail.com
Description: 
 liferea- feed aggregator for GNOME
 liferea-data - architecture independent data for liferea
 liferea-dbg - liferea debug symbols
Closes: 668197 677749 692270 692272 692525 692526 692527
Changes: 
 liferea (1.8.6-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fixed crash when dragging Google Reader feeds to parent node.
 (Closes: #692526)
   * Fixed crash when removing folders in Google Reader feeds.
 (Closes: #692525)
   * Fixed crash when opening empty links in feeds. (Closes: #692272)
   * Fixed crash when network online status changes. (Closes: #692270)
   * Fixed bug where web browser doesn't launch or the wrong web browser is
 launched. (Closes: #668197)
   * Replaced build-depends on transitional package libwebkit-dev with
 libwebkitgtk-dev. (Closes: #677749)
   * Added hardening build flags since liferea has a parser and should be
 built with hardening. (Closes: #692527)
   * Added build dependency on dpkg-dev (= 1.16.1~) to enable build flags
 with hardening.
Checksums-Sha1: 
 7e1c7749c8d65a990f543fcaa29eaf1d89bb8662 2024 liferea_1.8.6-1.1.dsc
 06e82b6cdf6f24e8d6c46cf7a3b4baab16eb2917 23470 liferea_1.8.6-1.1.debian.tar.gz
 0b99d2bb84eb0fedbfd6ad6af2863b74cc0db38a 915214 liferea-data_1.8.6-1.1_all.deb
 afed9a8a0e54c9873bed2644bfaeae7649e7b680 222020 liferea_1.8.6-1.1_amd64.deb
 1a2bf815651bece1cd4fd596c44107cae964830b 808992 liferea-dbg_1.8.6-1.1_amd64.deb
Checksums-Sha256: 
 fa029df5e82d17bf97759fb9f052881a9b6acf08761c7fde0900f841d349997c 2024 
liferea_1.8.6-1.1.dsc
 448b086a0be0dfb545b36a3d9c6895c8ec8fd7e5960a1c39f94c4ff1ea49d64e 23470 
liferea_1.8.6-1.1.debian.tar.gz
 c12e6ce00c8f0cda78f3832a6f6b35f9724643502e23cf1ef0e7aefe79dadc75 915214 
liferea-data_1.8.6-1.1_all.deb
 708813191794cb09d502134098db76fe59bd4b4f15b5f7b2a7ef4f372f24f62c 222020 
liferea_1.8.6-1.1_amd64.deb
 d787aa97d4b530c99521f7b16c4ee7e6ea98f14752b5d9a4c1bf2a72ff9aad07 808992 
liferea-dbg_1.8.6-1.1_amd64.deb
Files: 
 b965ebdcef75bd3f15e666b72bd47b9c 2024 web optional liferea_1.8.6-1.1.dsc
 68df04d98ed4b15564ae618eb58b5f1f 23470 web optional 
liferea_1.8.6-1.1.debian.tar.gz
 4bd03eda97d87e01ba8577c0d6868e82 915214 web optional 
liferea-data_1.8.6-1.1_all.deb
 4cdac5e37cda476d744038ef84ab847c 222020 web optional 
liferea_1.8.6-1.1_amd64.deb
 aa6a01f67be10481f0d158a533dd8aa2 808992 debug extra 
liferea-dbg_1.8.6-1.1_amd64.deb

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

iQEcBAEBCAAGBQJQ1ZUSAAoJEJxcmesFvXUKFNEIAL19O5tShAK66juVdV/dtrxm
u6c8HX7+utEXjJeg59uso/DoeCNeOIaPG93IOkqQ+q6XiHfO31etn9iaYwOG1d/O
YnZw8AO33dt8c5Vz9wDdNFoOOfrWHa7LlNUTjYuutjZ+OZar/5F/mqB5OK9K7qdh
XkaVA3wvYatS/tAV/GEKvPy6M/GKn5xILaq9IYEWgBzum5LAAnY+4wwWtq2IOMwp
Es6iIaVicAjCxSiVIgcrcR7ip8BzqIFrBW9kZGR62JsYCgKVHEJLWJTGCQj7D0Xm
0uiH/06xwHbO6G0El+V4bNDMSkm2yO1go6/323HJrDIyKKlvFtAQEM+/OrUC0RE=
=RGqF
-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/e1tmnje-0003wp...@franck.debian.org



Accepted pybit 0.4.1-1 (source all)

2012-12-22 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 21 Dec 2012 11:24:20 +
Source: pybit
Binary: pybit-svn pybit-client pybit-web pybit-common pybit-watcher
Architecture: source all
Version: 0.4.1-1
Distribution: experimental
Urgency: low
Maintainer: Neil Williams codeh...@debian.org
Changed-By: Neil Williams codeh...@debian.org
Description: 
 pybit-client - buildd client support for pybit
 pybit-common - Common objects for pybit
 pybit-svn  - Subversion post commit hook for pybit
 pybit-watcher - watches incoming directories for reprepro
 pybit-web  - buildd toolkit based on message queues (web frontend)
Closes: 696427 696518
Changes: 
 pybit (0.4.1-1) experimental; urgency=low
 .
   * New upstream release to support multiple suites per client.
   * Apply updates of debconf templates after review on debian-l10n-
 english and update control information to be more general purpose.
   * Update templates.pot with new text.
   * Remove my duplicate listing in uploaders.
   * Comment out watch file contents as github have disabled the
 downloads support.
   * Add homepage to control.
   * [l10n:cs] Updated Czech translation of PO debconf template for
 pybit (Closes: #696427)
   * [INTL:ru] Russian debconf templates translation (Closes: #696518)
   * Update manpage and add NEWS item describing change to the client
 configuration for multiple suites.
Checksums-Sha1: 
 3a782de4c94a18e9c7f1d6e933edb5a0b7fea79f 2344 pybit_0.4.1-1.dsc
 f7580ccb61f7f22380acb6bfc01a7b25752514a3 182030 pybit_0.4.1.orig.tar.gz
 4c084817b460881c8b3459b0fb6b067b021f85f4 29284 pybit_0.4.1-1.debian.tar.gz
 c43688e69e722756a98ca4aaf84180d40ec94e58 8204 pybit-svn_0.4.1-1_all.deb
 d3582985f05a4d044195cb3e576a3b8bd0771782 32900 pybit-client_0.4.1-1_all.deb
 a18b8577a3eb6208392e32d237948abe87f5766a 168678 pybit-web_0.4.1-1_all.deb
 fbc4c578c5287a56cb8646239c5d9309a92a3a4f 11236 pybit-common_0.4.1-1_all.deb
 9ad65e32a97562d4bb94b23931445a217e562332 12188 pybit-watcher_0.4.1-1_all.deb
Checksums-Sha256: 
 0706d1c8e71ed5b6d39ac44a0690b20a91643e36af92e8124b3bd168c793944e 2344 
pybit_0.4.1-1.dsc
 7dd553b1a35e421f1d1f4e8a6aef800e579d35fd43a1cd858b2dd66441c307e2 182030 
pybit_0.4.1.orig.tar.gz
 038ce4bf54296ef0051c33245e5d56beb999c3aeea1e43f47be4b70787feb943 29284 
pybit_0.4.1-1.debian.tar.gz
 3105fc73e62ac8a64b2e95407a4572ee3c075a5e4497ec3001af62c516c66811 8204 
pybit-svn_0.4.1-1_all.deb
 6c88b8f4f5359b3c16f81200eef70c41518abcf9ed863dee909e4deb0f2d2497 32900 
pybit-client_0.4.1-1_all.deb
 31a0e156ab007eeb9fa75c46c99fef988eb4a734c3e31ffefb3f38cd1ecec46b 168678 
pybit-web_0.4.1-1_all.deb
 ad86cdc945d04bca5e06970e482623e6a40c93473c9a35f46c47ca9bda41ee27 11236 
pybit-common_0.4.1-1_all.deb
 26ff2d245ee52e65ea35378d765a1b22fe7c12e43f42ae7da12da16bb24bcd02 12188 
pybit-watcher_0.4.1-1_all.deb
Files: 
 ecfd3e782facc032675392238bb2688d 2344 devel extra pybit_0.4.1-1.dsc
 9ab3f257b1cbdf6aa2010b80a1a82f18 182030 devel extra pybit_0.4.1.orig.tar.gz
 21d38118b79ba3d7e9875ece48ca0f19 29284 devel extra pybit_0.4.1-1.debian.tar.gz
 821c4c122d12b9e440f02acdbaf2ebd9 8204 devel extra pybit-svn_0.4.1-1_all.deb
 95a1c5ffef72b2e6f3c3eae3495367aa 32900 devel extra pybit-client_0.4.1-1_all.deb
 5dad336fd18e5ffc8d7c1a0c48ea969d 168678 devel extra pybit-web_0.4.1-1_all.deb
 7e64834d350969b8d6dcc415f9fbe82e 11236 devel extra pybit-common_0.4.1-1_all.deb
 3e99f8e1c61db6bc4b13b29de1d7d550 12188 devel extra 
pybit-watcher_0.4.1-1_all.deb

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

iQIcBAEBCAAGBQJQ1ZYOAAoJEPFn5DyBQ7aCxcAP/0P+r3d0Gu0GgpPBvOOTIvzL
msl9Bij11rr3UYLEpHS+/XJvH4uysbh7SP9qPbPZH4JbFa2I1h2yDgTf71s+BXa7
jdSmmMdFmkhvdKr8gvbd+7xTTfwK200u3c0mey5nLKWqdO5SEpv6JbWMHt42bl8A
H6li6NYTl0kByqssREzn1tMprYT29gWG1Tqaok4Dx9oiaBDpIKZVeZSSxeb1g+Rx
QpGlUjJJ+xMKiaIVfK+cA9aPX3tqERxJwCZWUFsWP90hVV658vyf9BXzaqq2W8oK
MWCxv+wjDL1/i58zyNNARGuQrjg1tMSh1srDA1WwlgjM1hKn+UppWKwZGsNTdM6h
tl6x53Mh2TT6TvAzQE7atm2L2ERSpjeoA5V7T2OXSVx8McbwM5Q1DaxyNvVqt8yt
nBlFSgTU12pe4E7NrJVM2i9xaQKDEjnWG3Nxox4A0CF61kcbfhyK1SdPAyCdtezv
Z+QRKZwrBcawWTcmh7BhZkyW+kAI1k9gwWM48ymnGK4faEGgyhz6fsfhgA4dHiW8
4NC8sa/PkeopckND3D+pUWD10oGOcNTqje7zMfCOXaTGDUFBx2T8s8YNN/DXyULJ
6fEvqD/41Akn+RN6e1kJnESnpHsGAhDlwoqQwhJaoAVyVQFctzPmBRsVLvdN5XNR
gqFLB6ZWWSDdw2eS2xtZ
=xSL7
-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/e1tmnjn-00045y...@franck.debian.org



Accepted pyxdg 0.19-5 (source all)

2012-12-22 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 22 Dec 2012 12:28:25 +0100
Source: pyxdg
Binary: python-xdg
Architecture: source all
Version: 0.19-5
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 python-xdg - Python library to access freedesktop.org standards
Closes: 675456
Changes: 
 pyxdg (0.19-5) unstable; urgency=low
 .
   * Team upload.
   * Remove dependency on menu-xdg. It does not make any sense and forces
 its installation on systems that don’t need it. Closes: #675456.
Checksums-Sha1: 
 7e1e9c2ab56f0a6196e14e11d953efbd10afdc7d 1304 pyxdg_0.19-5.dsc
 f7d7a1cbdadec11102e192439edd9f32e225424b 5938 pyxdg_0.19-5.debian.tar.gz
 fe4e3cfb5bfb6e0dd25294f83d27498ddc360f36 35848 python-xdg_0.19-5_all.deb
Checksums-Sha256: 
 47273128e062568bccba921a7726a91f9d07c8b014de9d7156e0438fab41a124 1304 
pyxdg_0.19-5.dsc
 f5e5e576e78129e20acd5b3ad05bf8855067766a3b8ca159473fc1d9ce7eebf0 5938 
pyxdg_0.19-5.debian.tar.gz
 65cd2e8473d85c78c465395c055af808803032bc3ceec1cdf05387c932d23fce 35848 
python-xdg_0.19-5_all.deb
Files: 
 c1c22e2635632c54439384027fb868d4 1304 python optional pyxdg_0.19-5.dsc
 45aa07e926b91ea205e1084c2d89fd9f 5938 python optional 
pyxdg_0.19-5.debian.tar.gz
 247a8be071db51c28d86134b0d075957 35848 python optional 
python-xdg_0.19-5_all.deb

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

iD8DBQFQ1ZxorSla4ddfhTMRAkXkAKDt1Ld5qaiz0NCD98+K+IGTOCRALwCgqPic
rNFm5fIyT5Hfp/hp0JrorHg=
=9wXe
-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/e1tmny7-0007nt...@franck.debian.org



Accepted libdap 3.11.1-12 (source i386 all)

2012-12-22 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 21 Dec 2012 09:20:52 +
Source: libdap
Binary: libdap11 libdapclient3 libdapserver7 libdap-bin libdap-dev libdap-doc
Architecture: source i386 all
Version: 3.11.1-12
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry mckins...@debian.org
Changed-By: Alastair McKinstry mckins...@debian.org
Description: 
 libdap-bin - Binaries for the  libdap Data Access Protocol library
 libdap-dev - Development files (headers and static libraries) for libdap
 libdap-doc - Documentation for the libdap Data Access Protocol library
 libdap11   - Open-source Project for a Network Data Access Protocol library
 libdapclient3 - Client library for the Network Data Access Protocol
 libdapserver7 - Server library for the Network Data Access Protocol
Closes: 694655
Changes: 
 libdap (3.11.1-12) unstable; urgency=low
 .
   * libdnet-dev no longer conflicts with libdap-dev. Closes: #694655.
   * Standards-Version: 3.9.4. No changes required.
   * Enable hardening. Only some false alarms on unprotected fns left.
Checksums-Sha1: 
 06c6ff839381cc4e25d746e426fed01ae7b8afe8 2127 libdap_3.11.1-12.dsc
 228f986911ff51916159398be4ed07bf1ccb7c94 8568 libdap_3.11.1-12.debian.tar.gz
 0a457db9daee0f505de6bd504d6581ae27330968 419840 libdap11_3.11.1-12_i386.deb
 59c85a8e94d1bf6f1671d0542003e818515a5145 161050 
libdapclient3_3.11.1-12_i386.deb
 2f08903d5ba0973c762b46e47084349cd332595c 99746 libdapserver7_3.11.1-12_i386.deb
 014ba22bd9966cb9062e7703c97de4d2c61598d8 89504 libdap-bin_3.11.1-12_i386.deb
 d557e6ca9e3859399820e8967a0853c5fcd6401f 727722 libdap-dev_3.11.1-12_i386.deb
 2bb4ba9c25619b0bf78f0699c04ab2527edbc279 63260594 libdap-doc_3.11.1-12_all.deb
Checksums-Sha256: 
 b56297e3e7292d7c9c1f13f0f4efe833fc1e568465ee9039c2c426bf23983dd5 2127 
libdap_3.11.1-12.dsc
 3841ae7844fd13fa5fc17819a724f54fc6a3eaa0142cf110ccad749bc7ff0d66 8568 
libdap_3.11.1-12.debian.tar.gz
 d71ca1f218a68837038ff9544f850cd17b4bbf3283fdbe87f3b2321760b9a980 419840 
libdap11_3.11.1-12_i386.deb
 5ec49af418cb1b9fe1f4ff0ceb7d8e7951b1d902c6a007858b620ece31e2788b 161050 
libdapclient3_3.11.1-12_i386.deb
 78d94f56e1d01efb7adc6b79bf758dd0c38a3d89daf2c8af4a0e359631d38044 99746 
libdapserver7_3.11.1-12_i386.deb
 55134e386e74173c0a76a3bdea5fe70cb7d1b110a3bf91a6e4916b27f8df9132 89504 
libdap-bin_3.11.1-12_i386.deb
 bf145491295ada6980238430fe8f057a25913de928e849303a9178a15b294af3 727722 
libdap-dev_3.11.1-12_i386.deb
 61a4191b06e25eec6775ba499ecdea90e207ef7f45bed46f22e359b7a884141f 63260594 
libdap-doc_3.11.1-12_all.deb
Files: 
 977f15dae32ff3f4ff7a6f3c16336eec 2127 utils optional libdap_3.11.1-12.dsc
 dfb07a5d0713517906d25ec2abc5d86b 8568 utils optional 
libdap_3.11.1-12.debian.tar.gz
 820546bb2bb32d7a8c393c34a8fad3a9 419840 libs optional 
libdap11_3.11.1-12_i386.deb
 9b917e5343f50db5fabea394ed7dbc2d 161050 libs optional 
libdapclient3_3.11.1-12_i386.deb
 76b0a82943f21455a186685e7a1c2b12 99746 libs optional 
libdapserver7_3.11.1-12_i386.deb
 ebd33f6f151f89d822591ee412c23430 89504 utils optional 
libdap-bin_3.11.1-12_i386.deb
 f4045dba5c21c2cc71f224ecfb0d1405 727722 libdevel optional 
libdap-dev_3.11.1-12_i386.deb
 409b51344104bd9dd7b774a5cce5913f 63260594 doc optional 
libdap-doc_3.11.1-12_all.deb

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

iQIcBAEBCAAGBQJQ1XszAAoJEN9LdrZRJ3QsYGkQAKTxdc3smb2nUSmMRbSv2hT6
zHwzJhDjkaXms7SECKqiIwIij6QSQ1VoRx4+P3ktiBhY/nya4tpGg3iqYRhs+eVG
ahx4CWL84X5h+vJgtwq44XseFjj2I0+46097IdpomxyrpGDYTaMKYpUiU34w8kVM
yTh+e8jn7DTsX3HyHPHDcvcjrSPw90HivCsnqGVzP8D1rWA0SeNqlGtXdPTigM0U
cNC4MtQAOaELCGzr4YOvrOktPbFQJC5V+BAnC8EE3P6TXHC0zPFKEsIqb83ut5kL
gepWC35POYflMz55GIz/in/hUYIJsUAIMtTyDprAQkJbtrGIITp9XALi/fr5QAGl
a112vMjsIoeEubz9yVlrJcdMvWlypPfxm+HzYM5fJ6/k46zZkVxDef/YpQt1Kczy
RXg2v95R+lROGOx/8CpyGa7PvE7zeqDyNV9HccF8TmpOfmYg8pfUbCqWbQm5dgW3
xGBfrnBULaxbj9KIMt1wJzMz/oVg9uLj1e2tC53o3IKV3Y0Tcn3osOae608tdw3Y
AJkm33lmJqsq5157cgAAtwMJXvXveD5Fcd4H/QQA8YFo8AU/xbMoHkfQ6lb27/KB
AOg0Utgg5iC+59eC0w0eZmyDVXntIylABlLu1HUw/Lz+y5+T2m+MACvs8Kx429Tq
gb1MiC39IpiW1Y/Vxadj
=LOmP
-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/e1tmnn3-0002y2...@franck.debian.org



Accepted routino 2.4.1-1 (source amd64 all)

2012-12-22 Thread Uwe Steinmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 21 Dec 2012 21:35:08 +0100
Source: routino
Binary: routino routino-www
Architecture: source amd64 all
Version: 2.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Thibaut Gridel tgri...@free.fr
Changed-By: Uwe Steinmann ste...@debian.org
Description: 
 routino- Set of tools to find a path between two points.
 routino-www - Web frontend for routino
Changes: 
 routino (2.4.1-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 7a31ebfeb34b4ad186d0be730744dbe8cc572688 1260 routino_2.4.1-1.dsc
 f1f84ca3eab56f92e269557a65d8c1653136e60b 1523607 routino_2.4.1.orig.tar.gz
 36e001588fb6e7ba25626c4b046eb7a0c45dfb63 17159 routino_2.4.1-1.debian.tar.gz
 0bbec77aa75e7163da55c87cca225d84c31a1d2a 726756 routino_2.4.1-1_amd64.deb
 f8997d08d3ae1a0b16348bcbdd13e6040a0f7184 805026 routino-www_2.4.1-1_all.deb
Checksums-Sha256: 
 c076ba9f692b21fa53e898a656423cfd46d4014cc229f9f7bc256397b85c59af 1260 
routino_2.4.1-1.dsc
 aed7049fde0700553c1efba9bc56c75a39f97ff47a746ea01252702861993580 1523607 
routino_2.4.1.orig.tar.gz
 4810b86785917869db9ab59977721d1c5586ddcd8c9e6867ab766cccf0124440 17159 
routino_2.4.1-1.debian.tar.gz
 31098e8d92c2daac9a3770d67eec8793ad1e5ab6011eb7d4d51576a7eee316e8 726756 
routino_2.4.1-1_amd64.deb
 fc3f13b948483684d35bf561612d89008850bfcb64501939f70f86a223faa3b2 805026 
routino-www_2.4.1-1_all.deb
Files: 
 734d871ce99c886626226c15a6c0aa9e 1260 misc extra routino_2.4.1-1.dsc
 4cd1b76e055eed8532e01058fba02d8a 1523607 misc extra routino_2.4.1.orig.tar.gz
 7e95b3250bb0fda21f1c735806df6a07 17159 misc extra routino_2.4.1-1.debian.tar.gz
 dc38a4d9a89facdb58350a617b0cc684 726756 misc extra routino_2.4.1-1_amd64.deb
 a6791cd0d669ce70b9cab980c57d6dbe 805026 misc extra routino-www_2.4.1-1_all.deb

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

iEYEARECAAYFAlDUzxoACgkQih2Zvw18pwHNlQCgiHsYRAgbnXGR42+Ek79rnvKM
5agAnjc1eXtl/5KS6sOjdZYEdO4bBu3d
=1DZP
-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/e1tmoue-0002jg...@franck.debian.org



Accepted debootstrap 1.0.45 (source all)

2012-12-22 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 22 Dec 2012 12:56:32 +0100
Source: debootstrap
Binary: debootstrap debootstrap-udeb
Architecture: source all
Version: 1.0.45
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 debootstrap - Bootstrap a basic Debian system
 debootstrap-udeb - Bootstrap the Debian system (udeb)
Closes: 694310
Changes: 
 debootstrap (1.0.45) unstable; urgency=low
 .
   [ Joey Hess ]
   * Better support use on Android by not hardcoding /bin/sh
 in a test file that's created, and instead putting in the
 actual path to sh. Closes: #694310 Thanks, Shawn Landden
Checksums-Sha1: 
 df9ddfb238ccca10449087ce72636f4bf2b1c44e 1779 debootstrap_1.0.45.dsc
 1abb485313a8faa4f8d3837b7a49bdd7c304a00e 58121 debootstrap_1.0.45.tar.gz
 6c50f820936863efef6adaed60fe3c57ec94d416 61170 debootstrap_1.0.45_all.deb
 1462f53e5fef2654c484e2e1fd2269b3b1c79a11 17942 debootstrap-udeb_1.0.45_all.udeb
Checksums-Sha256: 
 4a4ba2c5824504bd5c1fc1150ffc3f1713b9765bff442abf05f9b04962c466bc 1779 
debootstrap_1.0.45.dsc
 323d27268289ed2b75a61a5735cd33a52e103c78609ae9addc193f1918bb51f2 58121 
debootstrap_1.0.45.tar.gz
 b2d9ac7432dbbc8ba00a568f523f8118fdaa80c93d74e7aa1fabea74605658d0 61170 
debootstrap_1.0.45_all.deb
 96622ae8a6fc162130cbade34b3f1840a12493e72c4a4e3f67ed21449f72cacb 17942 
debootstrap-udeb_1.0.45_all.udeb
Files: 
 bfd70264bf24badc99187f72e9363034 1779 admin extra debootstrap_1.0.45.dsc
 2f0249c4797fa75848ce2dbe60172f8c 58121 admin extra debootstrap_1.0.45.tar.gz
 cd97ce9f3583e38a12691cb3867ff556 61170 admin extra debootstrap_1.0.45_all.deb
 6fc031474b1082a31acad89474c75b63 17942 debian-installer extra 
debootstrap-udeb_1.0.45_all.udeb

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

iQIUAwUBUNWsi4cvcCxNbiWoAQIsTA/3ZL3cwhhF7DOqtap+OCKz1Me40rsY8cS0
X5a5JQGhUgCpIiLY/CYFv5h3LujMSOds45QdvjdFKF3h/vKW0CPfAQ/npysyV1sx
Pt1d7ayT2425OuX2ORNEYYrGvUKkix39/1hHAUMjZk8nSstuaadRD0QrdaEHE9Gd
kdejuH62pkUF4Q829e3fvWfwh5680/gRD3SmoN1CAPjHht2XeuHtoJCUMNtz0n3J
csYoxJ/ET1KqsEsBTeTAe6YitIvlmOaHKpRiVmoZpx3/SWyWNEhOrnooROwf4eZK
g+uG9PDU+xMjRYAsPgizYeIooJOX/8w3vSCCTciMyqFdz04RlSeEKcEzc1eIS4pz
s86RS3qWVGJ6iO0VouYvrGa5D1WU2/cbuux/jy5OdG00Rzg17gzorX+rKmkvzDG3
x1e/OzhyC5DiTn3RgJOEmVY+XSQf4F0Rz8/AXjcOQ1m48FOGGhdOeMHVPD2nTBpr
HwKo7uShFuDq1LJuyXv79HdIenw0A2G1fcyhoKBc+XiQ0jwisM5kPU+67HFgkVVr
T2IQdV/1+pOAihet9KssUvR42TPjHeDwuUFNNGGDDRsVVYaYGqyqPIKPJ9dVgKo5
3TuhBKixZA20sRC3qbujjbd0Haf2ZF9w/yD1u/6hfe0eWBrO3RKB4fgknLXmKyo5
GBcNHk/eyQ==
=CHQz
-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/e1tmoih-0005kq...@franck.debian.org



Accepted fpc 2.6.0-7 (source amd64 all)

2012-12-22 Thread Abou Al Montacir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 04 Oct 2012 09:12:00 +
Source: fpc
Binary: fpc-2.6.0 fpc-source-2.6.0 fp-compiler-2.6.0 fp-ide-2.6.0 
fp-utils-2.6.0 fp-docs-2.6.0 fp-units-rtl-2.6.0 fp-units-base-2.6.0 
fp-units-fcl-2.6.0 fp-units-fv-2.6.0 fp-units-gtk-2.6.0 fp-units-gtk2-2.6.0 
fp-units-gnome1-2.6.0 fp-units-db-2.6.0 fp-units-gfx-2.6.0 fp-units-net-2.6.0 
fp-units-math-2.6.0 fp-units-misc-2.6.0 fp-units-multimedia-2.6.0 
fp-units-i386-2.6.0 fpc fpc-source fp-compiler fp-ide fp-utils fp-docs 
fp-units-rtl fp-units-base fp-units-fcl fp-units-fv fp-units-gtk fp-units-gtk2 
fp-units-gnome1 fp-units-db fp-units-gfx fp-units-net fp-units-math 
fp-units-misc fp-units-multimedia fp-units-i386
Architecture: source amd64 all
Version: 2.6.0-7
Distribution: unstable
Urgency: low
Maintainer: Carlos Laviola clavi...@debian.org
Changed-By: Abou Al Montacir abou.almonta...@sfr.fr
Description: 
 fp-compiler - Free Pascal - compiler dependency package
 fp-compiler-2.6.0 - Free Pascal - compiler
 fp-docs- Free Pascal - documentation dependency package
 fp-docs-2.6.0 - Free Pascal - documentation
 fp-ide - Free Pascal - IDE dependency package
 fp-ide-2.6.0 - Free Pascal - IDE
 fp-units-base - Free Pascal - base units dependency package
 fp-units-base-2.6.0 - Free Pascal - base units
 fp-units-db - Free Pascal - database-library units dependency package
 fp-units-db-2.6.0 - Free Pascal - database-library units
 fp-units-fcl - Free Pascal - Free Component Library dependency package
 fp-units-fcl-2.6.0 - Free Pascal - Free Component Library
 fp-units-fv - Free Pascal - Free Vision units dependency package
 fp-units-fv-2.6.0 - Free Pascal - Free Vision units
 fp-units-gfx - Free Pascal - graphics-library units dependency package
 fp-units-gfx-2.6.0 - Free Pascal - graphics-library units
 fp-units-gnome1 - Free Pascal - GNOME 1 units dependency package
 fp-units-gnome1-2.6.0 - Free Pascal - GNOME 1 units
 fp-units-gtk - Free Pascal - GTK+ 1.2 units dependency package
 fp-units-gtk-2.6.0 - Free Pascal - GTK+ 1.2 units
 fp-units-gtk2 - Free Pascal - GTK+ 2.x units dependency package
 fp-units-gtk2-2.6.0 - Free Pascal - GTK+ 2.x units
 fp-units-i386 - Free Pascal - Kylix compatibility units dependency package
 fp-units-i386-2.6.0 - Free Pascal - Kylix compatibility units
 fp-units-math - Free Pascal - math units dependency package
 fp-units-math-2.6.0 - Free Pascal - math units
 fp-units-misc - Free Pascal - miscellaneous units dependency package
 fp-units-misc-2.6.0 - Free Pascal - miscellaneous units
 fp-units-multimedia - Free Pascal - multimedia units dependency package
 fp-units-multimedia-2.6.0 - Free Pascal - multimedia units
 fp-units-net - Free Pascal - networking units dependency package
 fp-units-net-2.6.0 - Free Pascal - networking units
 fp-units-rtl - Free Pascal - runtime libraries dependency package
 fp-units-rtl-2.6.0 - Free Pascal - runtime libraries
 fp-utils   - Free Pascal - utilities dependency package
 fp-utils-2.6.0 - Free Pascal - utilities
 fpc- Free Pascal - SDK suite dependency package
 fpc-2.6.0  - Free Pascal - SDK-2.6.0 suite
 fpc-source - Free Pascal - SDK source code dependency package
 fpc-source-2.6.0 - Free Pascal - SDK source code
Closes: 686038 687069 687087 687116 687192 687444 687550 687713 687724 687771 
688143 688424 689468
Changes: 
 fpc (2.6.0-7) unstable; urgency=low
 .
   * Proofread templates by debian-l10n-english list. (Closes: Bug#686038)
   * Added Danish translation. (Closes: Bug#687069)
   * Added Slovak translation. (Closes: Bug#687087)
   * Added Portuguese translation. (Closes: Bug#687116)
   * Added Russian translation. (Closes: Bug#687192)
   * Added German translation. (Closes: Bug#687444)
   * Added Polish translation. (Closes: Bug#687550)
   * Added Czech translation. (Closes: Bug#687713)
   * Added French translation. (Closes: Bug#687724)
   * Added Italian translation. (Closes: Bug#687771)
   * Added Japanese translation. (Closes: Bug#688143)
   * Added Swedish translation. (Closes: Bug#688424)
   * Added Spanish translation. (Closes: Bug#689468)
Checksums-Sha1: 
 f7f297c9cd00251118ba24528cbdbe2d6f7f67e3 3762 fpc_2.6.0-7.dsc
 2ac2a256c4ba2b48ce82c5306e4edf6e6ca2 57431 fpc_2.6.0-7.debian.tar.gz
 e6ac93344de8582da18d4385ff0ef768efd362cd 2456520 
fp-compiler-2.6.0_2.6.0-7_amd64.deb
 efb441d1d516b4586eddd512ed46fd4ae355be57 1516970 fp-ide-2.6.0_2.6.0-7_amd64.deb
 7d1d4014ea3afe7dd119794aee24a117782eca5a 4758414 
fp-utils-2.6.0_2.6.0-7_amd64.deb
 f6e873ee985b2652176b9904afce2f7bb04e1982 2343820 
fp-units-rtl-2.6.0_2.6.0-7_amd64.deb
 76100c080d2d939f1e97c8e51a3e16fc10878810 1474376 
fp-units-base-2.6.0_2.6.0-7_amd64.deb
 4691758bc3765f4ef93f3c384cf60488762d12e4 6380436 
fp-units-fcl-2.6.0_2.6.0-7_amd64.deb
 c25619840d180add49870d2eabb0b08cf83e3a9d 500618 
fp-units-fv-2.6.0_2.6.0-7_amd64.deb
 6caefdd8b685711e03e00697298d25c5eb611bcc 1041122 
fp-units-gtk-2.6.0_2.6.0-7_amd64.deb
 

Accepted lowmem 1.37 (source i386 all)

2012-12-22 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 22 Dec 2012 14:56:25 +0100
Source: lowmem
Binary: lowmemcheck lowmem
Architecture: source i386 all
Version: 1.37
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 lowmem - free memory for lowmem install (udeb)
 lowmemcheck - detect low-memory systems and enter lowmem mode (udeb)
Changes: 
 lowmem (1.37) unstable; urgency=low
 .
   [ Samuel Thibault ]
   * Make lowmem limit comments point at where the manual also needs update.
Checksums-Sha1: 
 13dc90cd8e252e3928feb0ec10904113da6fd940 1601 lowmem_1.37.dsc
 22c8c8bb20f596bd7fc1c38f55c265f6717a91c7 11785 lowmem_1.37.tar.gz
 12cb8d2e20ea4c96708f76499d38aba4e8baf4b9 4856 lowmemcheck_1.37_i386.udeb
 689d23ffd4a1ad370001f09a2397fcbd418acd2f 1494 lowmem_1.37_all.udeb
Checksums-Sha256: 
 1e1ca111b3cb6571236d336fef2e1fcfcda2b41501605da1634868ef1cedc4af 1601 
lowmem_1.37.dsc
 bdf2f6debfaee5c13ad5a751ab57328c808e080f7cec8ff52a74adbc6ac54186 11785 
lowmem_1.37.tar.gz
 2a94c76cd0bf152c9bafd017168719cb27e75c76b03b4c3c375fbbd0f00aa292 4856 
lowmemcheck_1.37_i386.udeb
 4062712e0c2ff4ce083db8d420fdd6daf5300e33209fe2499be935fe59b9f34e 1494 
lowmem_1.37_all.udeb
Files: 
 4dd5620538d53284978029b51fe90d92 1601 debian-installer optional lowmem_1.37.dsc
 d6feb9afd76997ffa18d69d983323dcc 11785 debian-installer optional 
lowmem_1.37.tar.gz
 9c003073d249b875c71f8876747a399a 4856 debian-installer optional 
lowmemcheck_1.37_i386.udeb
 874b2d7b07871a62dc341f07181741f0 1494 debian-installer optional 
lowmem_1.37_all.udeb

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

iQIVAwUBUNW/o4cvcCxNbiWoAQJwtg/+L0NFQndVIQ1+KcTNUwpFtwSKU5h4kcuU
FUZUyRR7x9bUDpZ/DzEHJVDf+UA67nA+lRNLz3YrWy9DoGfnfCBkJE9lwsk5+QhG
Z3qXXLbugumtPVg7JMVZ/OiznDCfnvmwhcyfFmSOua1nnl5ULDlmfQruodXASq12
WOofrdkMi3fnglJeO+mbs0e6sf71YzIiFZjfvgbFtIebP94OnSodmGo/mhggx6H5
mPR2f/sMwAuYBhF5wVTEswZAzgyq69OeugfztMAEj1mwdqP7DkLaufaSZzc3wyw4
NiFe7PLCntnNjdALnbvyA8D+6CHcrN9tozu1RNlHBQUXKDcNmB2tFcvB7sojsG0L
+ZpaQFX/jc7iQ3cShp70W9OdQVyAZN7Zf9Lml7q8l6xuoKYhYiz7QxNF4O4PwRW3
J5kflXaD/IbQMl9ejRL+eBIjl6ZraI3mSQhPB1zdQY9L91qmmlcgHs7DWvzao8AC
ylhJEw1q62SjSYGhaVoj3WybQb/s61Yma13ZczEmAqHspWvYXnYYqEiBm0spDHZ7
UpUvK27x+8uAdpPlu//8ciBuA3xX+ssNA6AmH6ZH5I8Qlr3c2hR72xeGT9AbTqec
S6Wj0j5YB3v0/Auv+6IVtWWtO5utggyP2gGTu6xiJjXjkyt7E7i6K2iL5w47rxJH
98NNd+tnDrg=
=Bfm1
-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/e1tmqoa-0007vp...@franck.debian.org



Accepted os-prober 1.57 (source i386)

2012-12-22 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 22 Dec 2012 12:54:54 +0100
Source: os-prober
Binary: os-prober-udeb os-prober
Architecture: source i386
Version: 1.57
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 os-prober  - utility to detect other OSes on a set of drives
 os-prober-udeb - utility to detect other OSes on a set of drives (udeb)
Closes: 680084 685159
Changes: 
 os-prober (1.57) unstable; urgency=low
 .
   [ Christian Perrier ]
   * Deal with grub-probe exiting with non zero status on some
 devices, which in turns can stuck update-grub
 Closes: #680084
 .
   [ Joey Hess ]
   * Fix detection of Fedora and other distros that moved /lib into /usr
 and left behind a symlink. Grub's filesystem code does not support
 symlinks. Closes: #685159 Thanks Andreas Bombe for the patch.
Checksums-Sha1: 
 4a68c8611fc39a358f942084349127ceb04a3e19 1683 os-prober_1.57.dsc
 b577943e8b1633cdb0ac79e3073c5cb0270abaec 26717 os-prober_1.57.tar.gz
 7b81c9761e539216e56c1e122d333824c4f79b2f 12884 os-prober-udeb_1.57_i386.udeb
 df99e3e1fb8c657602122d72c4d91d243c2de756 28830 os-prober_1.57_i386.deb
Checksums-Sha256: 
 bad4f13db5630d5cb1d621a02d934aa6ed3a1e7db6c040dda84c3d14ea09afae 1683 
os-prober_1.57.dsc
 d63c6cbb825a7e411aac5e4805edc6db2fbf77a59282b71c10bd29723b8d860c 26717 
os-prober_1.57.tar.gz
 806004743bcc0d1ea7b9b95881448745179d5f38293ecf37f752c0a879cf0108 12884 
os-prober-udeb_1.57_i386.udeb
 2b72a93996ea204c5b70524999d1567eafc4389758667b2caca609e68dc4ba52 28830 
os-prober_1.57_i386.deb
Files: 
 ddbeb00c563d6d4995c4b088718900c6 1683 debian-installer optional 
os-prober_1.57.dsc
 67548b17d55cc32c1168bb5a4061170d 26717 debian-installer optional 
os-prober_1.57.tar.gz
 02112ae805ee256dcc7af4f86de6f99c 12884 debian-installer optional 
os-prober-udeb_1.57_i386.udeb
 6d177cf76e83e7eec3969a1f8810eb81 28830 utils extra os-prober_1.57_i386.deb

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

iQIVAwUBUNW/vIcvcCxNbiWoAQLHQw/9EYe3Qv+nRGxdtoubSqFx+VkgWmlAHdWM
B7In09CLXxAJnOS9zLuIHoHnmrACfxFbozTatSfqcSpf9Dtn/AHAr0UlLpE1sqSl
iNJVcinSqtgQlps9E8EJndQdoIYojEypz3lIo47Ri94K/80tu9OcqN4Htcb3Edfh
uxWucH7wXnDyFBKfak9ui+/4WRktS+ei4wfJpnjJC8qh7zksZ950YfocWQVDaEJk
CS+cwhEZGfSCfJB4MYbHFIOs4TyOtzle/0mvGlleIqtJSyDKrmeJFye2VmpU9mX4
g4IJ68F84jh/PI5tJCwfs7BN3a4CL3Q+YQGzFjdZN+t+YhuRF54Rqv/slE4VI0dZ
DU383ZZK5N8nVpwqIIq3BlxnBWUcCuwStishmAYWPS/xUesxyFw2+aL2mH1ejCXZ
bKls3Z5fgsW/S60TigewVzTjBDgxNnoFo2jaQJdIMzOfWtxe6gUPTIy9uVZ8abIe
EmatVcggelup1NHm2cXX5/6vYEqyKJ569I+t19C4n5psi25Y3TtZ9CTCPTGM4JPJ
PMP0mEek4oVPqGZaIsNJ3dG02cJuoqT49VzJNDNlQpovOFDk1iOggzhO8axkhzRp
eAqWOCcHDJXPqgQvAnafoj4fqNKBiFYPFWco5yn/PSYIVmPX+7pysepZL4aMzouc
Fy74/naGwSs=
=CVlg
-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/e1tmqoe-000802...@franck.debian.org



Accepted suricata 1.4-2 (source amd64)

2012-12-22 Thread Pierre Chifflier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 22 Dec 2012 15:39:57 +0100
Source: suricata
Binary: suricata
Architecture: source amd64
Version: 1.4-2
Distribution: unstable
Urgency: low
Maintainer: Pierre Chifflier pol...@debian.org
Changed-By: Pierre Chifflier pol...@debian.org
Description: 
 suricata   - Next Generation Intrusion Detection and Prevention Tool
Changes: 
 suricata (1.4-2) unstable; urgency=low
 .
   * Fix error in init script, stop trying to manage suricata pid file
   * Use arch-specific build dependencies for libluajit-5.1-dev, it is not
 available on all architectures
Checksums-Sha1: 
 730e7e32b106cdeee9c560587656a4b2de228623 1994 suricata_1.4-2.dsc
 747bf75917a8007557ee2f986bcf88e6ab51b439 7587 suricata_1.4-2.debian.tar.gz
 abc8369d76884b9e89e14344581e16ab2a498f8c 786072 suricata_1.4-2_amd64.deb
Checksums-Sha256: 
 4229cdad20281ea44a9b7e6e2ea94c99893634bed3feda2ff8cfe90957d57941 1994 
suricata_1.4-2.dsc
 ba1c5abe65c3fc5e38d05cdc6d0ab480f6761ba79123672cbe0f1e1fe734e1a2 7587 
suricata_1.4-2.debian.tar.gz
 c71ab451d035644905f00b272a5b271635f71ab51eeb60d7ba5a173d6e5b9a69 786072 
suricata_1.4-2_amd64.deb
Files: 
 85d932db225fe651b665c0ed5ca3da91 1994 net optional suricata_1.4-2.dsc
 59a3750defe60eee8763ae3932cc01ae 7587 net optional suricata_1.4-2.debian.tar.gz
 033754164f5ce308d824e5a1ff05860b 786072 net optional suricata_1.4-2_amd64.deb

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

iQIcBAEBCAAGBQJQ1cfrAAoJEMYaZNzxOTmYSlwP/iYTCcwzt/EEjLK52s98cUcn
ggRkKsFyzvjD4izQJE6mLxmMPmvFPn9B+Jj2Wq4CAyCsY46rh4+rnJJFWDN6U+rD
XgwdRrchY+RFaoWJ5M8ECfROXHZ/NqGq94sZNcOYewo7bkI3kXr8Ax1BMjqqcgXq
aG5Op3ltHzcfspUbOAgXEIJkgqesWgV8HfRht8CtftGwitaXIlPx6+aeGIlxJPIY
G61dOcQq0mGl7oQ6iO5FJ8FI7bPlQMiC8gUjKEQcGVbPE2LANs/GMJ1Bk8igMI2E
GcKsoTqI9RP9QppOZdrJkmLm/9dXiLsdtbOsznLgyQPeiC/4aqaegzF2jrFVYFw8
d/AdObGJoNHVytFM8V3G8WaRrwULO18WSJPbt75YQwNezAcdzgk8lq6uKT4Wi4Tc
EZHoD7CahsB/hFqhWX9xIoddx/vmDQXIQHdOmicWx+fjWgoZ/XT5hdepVm04tkRX
6VtKWKE4TSLh+oNiUod8jRTxIxPlVwwnCGyvsfS3yLQIKtHhso30NYkAU0GWdP42
/pF7AYyGPjNvm0+7IBbWhVAmrkqb9aUMPfR+VpQQoqcCIbm5BcFC2dlZZWLmfLem
hk0YklFnGrIdDY86q2jSVOj+5fWTJXUInAiEXKPp2Jee5ybfO4Y41XQoVemMD50V
DRrH/QsMsyUD8FwdLiB6
=xIUC
-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/e1tmqau-0002dm...@franck.debian.org



Accepted xcfa 4.3.2-1 (source amd64)

2012-12-22 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 22 Dec 2012 14:39:51 +
Source: xcfa
Binary: xcfa xcfa-dbg
Architecture: source amd64
Version: 4.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 xcfa   - X Convert File Audio
 xcfa-dbg   - X Convert File Audio - debugging symbols
Changes: 
 xcfa (4.3.2-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 2f8c7026d48cfcd05f85db51a9d4eee6b47fa8de 2032 xcfa_4.3.2-1.dsc
 a52590df22b638d45dd60833bed328fac83eb1ef 1022310 xcfa_4.3.2.orig.tar.gz
 a86eb6655bba37ba44176f53aad0c86d25967502 3259 xcfa_4.3.2-1.debian.tar.gz
 0df5787abeaa2b18f663af2400ffa2cfb9aee5da 617124 xcfa_4.3.2-1_amd64.deb
 8f169e693f0f6f004e08fa2031bb08a52b9f8692 872708 xcfa-dbg_4.3.2-1_amd64.deb
Checksums-Sha256: 
 10d48ce4eed603455456afe608ca3152cf09f001e593e54220c62dd4bed8d469 2032 
xcfa_4.3.2-1.dsc
 5f15c33d30a2134d9b796907dd9a5a9f9c1f8c9aba35a4018264e7e098dc55b4 1022310 
xcfa_4.3.2.orig.tar.gz
 86863847300797e9b2bab4a6e7724a8c83006186227c1b2a6e5f794799e6bafa 3259 
xcfa_4.3.2-1.debian.tar.gz
 ef6a9bd270a0781449f3f2e5b0aee6f24a830cebf1a7bd7b64f0957ea265b562 617124 
xcfa_4.3.2-1_amd64.deb
 345ef2b5881915e0788278a39fad0dc280511d54e4a4bcdf900c269b74e72fb3 872708 
xcfa-dbg_4.3.2-1_amd64.deb
Files: 
 ac64331f4633a0ee07cdaef59d7c6835 2032 sound optional xcfa_4.3.2-1.dsc
 74adc3665706a16f96ce1edb6b80887b 1022310 sound optional xcfa_4.3.2.orig.tar.gz
 41fdc8396b2e311cc8b32e850d87931f 3259 sound optional xcfa_4.3.2-1.debian.tar.gz
 3cd30a549cfb7aff72b2d286a73aee62 617124 sound optional xcfa_4.3.2-1_amd64.deb
 3aee1cafa7c3903d881f34fa861d2dec 872708 debug extra xcfa-dbg_4.3.2-1_amd64.deb

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

iQIcBAEBAgAGBQJQ1ciSAAoJEOikiuUxHXZaKRcP/jYed39NaCkPxMl3ZUfnhrBg
lx6RYcOnO2BxdOQHRr68dUk+66y5RslwXVU0EoycdHQNTJaQyadjkYLUcQtX+hUX
IXHCKOa+eqPSTPZ7pE0V2cokdA0BLYX5oj/DgAeV/QnyCm8YgQP9FMr9TLvSdHEC
sWgUNCv4B0E0qey/REqwnHJyhve+VknOW7Y0b2CNsVwvl7RtHWJj4GwtiQqMiRxT
/HqSf3xb/eBZVBwFK8TV4uGh7JYXqan+q842aiqo7ItZdpib+CAl6rZD/WiOvhcJ
p0k7mn7o0iRAU/cop5FjS7eKcb6F2aj91CU6GOQjQP5t5uDyE/uGHynGP2SLC4g0
Q8eKIJnHUPBJ8U0D4WCp4PkY2khCI9Ukzs+cI+NC0dx6CdgiLoHtTz2MnE4DrCt9
VrRUDTI4cwmMZD+jyvhNtX8Mac5oe9Ws03oyLo3d2L56nvcm/mH1idYqYIrdYY7o
6UaerHuPjSPtLJHStl4aX80WIYlZejZYnplcONJiGtm42lJWK6jmkpBehIozPEX1
y8XuuVZ88wDnxaQ40OxDrgzxb/J0b+zQ/VpI8k3P4TGljDAzgkqbBa5DUlh2Lq2d
xsS4BwYKy4ncAncaNc+XUYipouYHAq8fnLkKzLB6qNBEmyyyZ021dgQHXMOcoRJ9
fBpkUYiDyxlRSvc2s2tq
=sdHR
-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/e1tmqb1-0002ic...@franck.debian.org



Accepted suricata 1.4-3 (source amd64)

2012-12-22 Thread Pierre Chifflier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 22 Dec 2012 16:38:41 +0100
Source: suricata
Binary: suricata
Architecture: source amd64
Version: 1.4-3
Distribution: unstable
Urgency: low
Maintainer: Pierre Chifflier pol...@debian.org
Changed-By: Pierre Chifflier pol...@debian.org
Description: 
 suricata   - Next Generation Intrusion Detection and Prevention Tool
Changes: 
 suricata (1.4-3) unstable; urgency=low
 .
   * Add configure flag for luajit only on supported architectures
Checksums-Sha1: 
 307231a777d26de42521ee2560723bb8b18d7ef7 1994 suricata_1.4-3.dsc
 e449e23c33f5ae8bf90a82ccd4909a0232082cfb 7671 suricata_1.4-3.debian.tar.gz
 86588bcf19814074614aeb890304dc70d1ed0577 786080 suricata_1.4-3_amd64.deb
Checksums-Sha256: 
 863f8443603e6a505a575ad97a75425cef6d648147d35aa6142293eb822384f9 1994 
suricata_1.4-3.dsc
 b5fe9925e2fd9a59f92fc32cc712a0d680d4c6e20fa733986b95c27cd0408bdd 7671 
suricata_1.4-3.debian.tar.gz
 65cfbf6994b5c5cebf2312b03abcd8fc89141ef871cc6aa0fda29a828e740def 786080 
suricata_1.4-3_amd64.deb
Files: 
 0f2a3569b438f5e0be9be8e2863957c9 1994 net optional suricata_1.4-3.dsc
 6cb8304ff3d008f019de84ee41dfa5ab 7671 net optional suricata_1.4-3.debian.tar.gz
 5c7d93b17ece391ff6956d8842aef87b 786080 net optional suricata_1.4-3_amd64.deb

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

iQIcBAEBCAAGBQJQ1dSmAAoJEMYaZNzxOTmYETUQAJ0U3EVEgHn924P1W/wXVPKS
HRVPqXdjKbmXAgmrmHRM4QIufI8xR+HAisixMRejMQhxFXysLygfK0P/S8hC0X70
cFHuIDJ1dtuVzgMFBHor48JO4pVT2Z0z2oP8CNLiqDYkBCePcR0z9AUxlvlgPk+H
4g2hOBio0EX/OpbPceCTt1Qfsy6/RJsSbAseSwnz+mTTqe4A2v3GCMwPkyigp44n
XizPwdKcxo7739+1eHJBP3TL6/50GRFJfZhrFI4qvccapbc89E9jlkxAH3CniIqs
Qg73HvlKtjUqpNm/jIhwuGdtWX3iQeiuDB1KX/1KticMmxSrS+VXODCOk/QvvE92
YCzS2Tjf9L1oB8Oa0cC+b2vJELKAW0+Mcbo1cIgTDTtttNeJPHJfUBZvT0mfgwaM
Tq2Q9O8tdL9mZOiTeZHF75PflcuDlQk9pRbFzDz9aHOZ6kM6eckUfFBHC5UIl3eQ
tP7923G/u6K6xXamHLZ+l4FvXQr77RBIjKs9oKsWxkZvLjTd/im0JCiXPNJ/82KG
F1PIVv5rFBxDCwKm6RjtfvQhVpNWgz0RWRhj5ggGvT8ZB+HANcKIHe2Ez68iCsJ0
NDqmHVucp2g0tPuAkQuEdNC4yRlr7vASWfpE26FlzEMuhYNY3lMCgtt5j1NuH+ia
v9tBngatM88iNF1iUioH
=2t82
-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/e1tmrjm-0003c6...@franck.debian.org



Accepted snmptt 1.4~beta2-1 (source all)

2012-12-22 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 22 Dec 2012 18:05:58 +0100
Source: snmptt
Binary: snmptt
Architecture: source all
Version: 1.4~beta2-1
Distribution: experimental
Urgency: low
Maintainer: Christoph Berg m...@debian.org
Changed-By: Christoph Berg m...@debian.org
Description: 
 snmptt - SNMP trap handler for use with snmptrapd
Changes: 
 snmptt (1.4~beta2-1) experimental; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 59813e2a6b1066c2f18b0ed82b0d5852f083da99 1787 snmptt_1.4~beta2-1.dsc
 af49f941fe59d831a095940a6b6ca3b7eef0840a 145111 snmptt_1.4~beta2.orig.tar.gz
 d1bb9047b7aa969c72264d52b8055a279b7366e0 3400 snmptt_1.4~beta2-1.diff.gz
 43ca50725ea72b5bf14fec6b6d65cba30fff78ad 135226 snmptt_1.4~beta2-1_all.deb
Checksums-Sha256: 
 0bff1c402406acde8298d92c933099fd50a87f4978b38e90960437271e07153f 1787 
snmptt_1.4~beta2-1.dsc
 5405cbff92633772bc297e310f20d1e4b920309ea58420939f847ef5c32c55b4 145111 
snmptt_1.4~beta2.orig.tar.gz
 05ace04143fb75d15b71e374a9dd14260c3e796261e6894881a06b9f5f717321 3400 
snmptt_1.4~beta2-1.diff.gz
 c270777b63cfbfd75831281433f898b4359f9a65b90b1304610341cf260ce7a5 135226 
snmptt_1.4~beta2-1_all.deb
Files: 
 4e06c763cc7e8b20089da5f6bed83ebc 1787 net extra snmptt_1.4~beta2-1.dsc
 fe07d71eb717bc68cc675a9ca5dd1c4a 145111 net extra snmptt_1.4~beta2.orig.tar.gz
 244580d1a1b1015050d0d9ad9de0a7f5 3400 net extra snmptt_1.4~beta2-1.diff.gz
 487229ed3357b2dc92ff2cc8c4367e38 135226 net extra snmptt_1.4~beta2-1_all.deb

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

iQIcBAEBCAAGBQJQ1ei8AAoJEExaa6sS0qeuPc4QAKmXJUHbGkunPWYIX2/Y91Ft
m+2ccuVC4gnhjoUAFTBAQLKT+WBObtf3tiR34bJGir5I6jOI0GE6pnbIOAb01arq
WVMzukX9QGSWb2U2kXeLec2i+aVz8WoqmfobCdK7ZlvbUZUokULPlpE3qHyrYtDX
own9TBBF8cBu6N2khhQ37Q1duHf0L327CdUJtvxilzO5k3WHLRXI1e+os7KJPETQ
Auodl/C2JawqhyOTzpx6Jboi5yiH9VxqGKPcJRcwG3ofmU/peVL2xvqHp8W4eg+J
FCZAyyXrPzIVybdHiJ8Qsn1FC1cx5AmhAaHOYERBn7snJ9Hpqsaak1ziCZMcBsyG
muphbFaSgwHtyOS05ZJDhijQ5AR7YGNkAaVbKe5yzGpgDYHGm/Ckr/k7svwj6wMV
nJI83+LAQ0w0LtYDXt2SG95m8y/fmgYDNZ6TTXdouySnu8uJZpXyCrZDVxmC40eQ
RcgMxM4wUubme+P6iQ+UbnG34UGPqtOrZtT4xLN948MK7rPITfmMeDxkLb81n5Ut
ebu8He1Td66K5EU+U3uT+1VxsK45aM+moy7bd6/3iDEce/aQwRtaKBj+rzjB4sPX
J+vU/izCd6TZSNKumS4p2RAiSqDb1+wCt9z3nqM5B4ltgyaJ3eQFj/UXGi4RhGvi
ZZZWxnjXH/8//pGMfPyQ
=NrdX
-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/e1tmshu-00024o...@franck.debian.org



Accepted ilmbase 1.0.1-6 (source i386)

2012-12-22 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sat, 22 Dec 2012 18:17:24 +0100
Source: ilmbase
Binary: libilmbase6 libilmbase-dev
Architecture: source i386
Version: 1.0.1-6
Distribution: unstable
Urgency: low
Maintainer: Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
Changed-By: Andreas Metzler ametz...@debian.org
Description: 
 libilmbase-dev - development files for IlmBase
 libilmbase6 - several utility libraries from ILM used by OpenEXR
Changes: 
 ilmbase (1.0.1-6) unstable; urgency=low
 .
   * Drop accidentally added, unused patches from debian.tar.gz.
Checksums-Sha1: 
 1a796e75a21e9531814cb2eb4bb63c7721fa7e6b 1381 ilmbase_1.0.1-6.dsc
 1458a2271acecbe7d7a7eee7655ec50233ed9daf 5398 ilmbase_1.0.1-6.debian.tar.gz
 e7a4a7d6941d22463369268560170b1734b2ac58 123050 libilmbase6_1.0.1-6_i386.deb
 159e5640608b7a93d793462eb9ec72d3a5a6784c 200560 libilmbase-dev_1.0.1-6_i386.deb
Checksums-Sha256: 
 8f16e62b4aa33d9f5e356af1325da836f23c0aa541be919d3323ed7ac8cbd807 1381 
ilmbase_1.0.1-6.dsc
 a1b9cde65ac153e6400a1687111d7640af52076fc559ffca1fd1d456320465eb 5398 
ilmbase_1.0.1-6.debian.tar.gz
 ba21d2a12cfc58b7ba2f5a51b45d275459bc8cba329225e3ddcebd42df9b15b6 123050 
libilmbase6_1.0.1-6_i386.deb
 01012fbc730fa24c6d61faaf5372e277237d189a259299c1b18f35234a3ad39b 200560 
libilmbase-dev_1.0.1-6_i386.deb
Files: 
 f4436ce64334080f80d79241bbb9de55 1381 libs optional ilmbase_1.0.1-6.dsc
 fda6f97880e73aaac2beaf1be6498038 5398 libs optional 
ilmbase_1.0.1-6.debian.tar.gz
 a8c9ff6a469b86f16c219105f0804b19 123050 libs optional 
libilmbase6_1.0.1-6_i386.deb
 0ce891c9316621f391c2ba0f14ef73be 200560 libdevel optional 
libilmbase-dev_1.0.1-6_i386.deb

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

iEYEAREDAAYFAlDV7C0ACgkQHTOcZYuNdmOkcACfRXP3/waq4JaiblnYS1XNuwmW
BmcAnRRl9DQqf7WELTg4r+y75xPFw+k+
=5geB
-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/e1tmsw0-0004ox...@franck.debian.org



Accepted gammaray 1.2.2-1 (source amd64)

2012-12-22 Thread Jakub Adam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 22 Dec 2012 18:17:04 +0100
Source: gammaray
Binary: gammaray gammaray-dev gammaray-dbg
Architecture: source amd64
Version: 1.2.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Jakub Adam jakub.a...@ktknet.cz
Description: 
 gammaray   - Tool for examining the internals of Qt application
 gammaray-dbg - debugging symbols for gammaray
 gammaray-dev - GammaRay plugin development files
Changes: 
 gammaray (1.2.2-1) unstable; urgency=low
 .
   * New upstream release.
   * Removed d/patches/dont-build-functionoverwriter.patch and
 debian/patches/gnu-hurd-build-fix.patch (applied upstream).
   * Refreshed d/patches/gammaray-probe-versioned-soname.patch.
   * Bump Standards-Version to 3.9.4.
Checksums-Sha1: 
 01b1a85f89a31b7e481951c3d1b33e853c52 2109 gammaray_1.2.2-1.dsc
 24ec24d1665ed91a31c33723690b9b02e780d51e 582082 gammaray_1.2.2.orig.tar.bz2
 59ba1f9a878df6313b069a4537f57aa0e250bfea 6003 gammaray_1.2.2-1.debian.tar.gz
 c3a10c696f04d5f902202b8d482bc9b82c0624c9 1684798 gammaray_1.2.2-1_amd64.deb
 b4930535a65f87931ac05c81c2fce1a8df72074c 6384 gammaray-dev_1.2.2-1_amd64.deb
 ecf62b2f517cded216e28babfe0496105cecb4c4 9092270 gammaray-dbg_1.2.2-1_amd64.deb
Checksums-Sha256: 
 92a12eec4ee3e6ec27fb3a79430f59d6c95fd53e458b4898e2dbdd945332321b 2109 
gammaray_1.2.2-1.dsc
 ea14e6487b5fc95f892d5c510f52a13a72bdda873c44629127aa53bb98d0eadf 582082 
gammaray_1.2.2.orig.tar.bz2
 8d161439c554e3228c0032139c6696e5897a3a0150761b9371e90b6331b3d371 6003 
gammaray_1.2.2-1.debian.tar.gz
 c8f7cd08a99aae399074cec1a697ee77dd592585057854f462b6c0f2a0976be3 1684798 
gammaray_1.2.2-1_amd64.deb
 d9109b0a9bb3eea199e7d5621cda0e47406660e2cc3e9e26ae63024e95df6f12 6384 
gammaray-dev_1.2.2-1_amd64.deb
 7373f5ee07176c1581f8822bed58644a6893185b5ee3f9e9d8f136416416b3c9 9092270 
gammaray-dbg_1.2.2-1_amd64.deb
Files: 
 1a20354ead6c72b4fdef2dff5ffed703 2109 devel optional gammaray_1.2.2-1.dsc
 82c9d0ac67055cb712f29f487dba4faf 582082 devel optional 
gammaray_1.2.2.orig.tar.bz2
 f9a19feaf86defa1f9bf2131e0815825 6003 devel optional 
gammaray_1.2.2-1.debian.tar.gz
 96ae716b6bf3ad6a6a5d2fc57252e30e 1684798 devel optional 
gammaray_1.2.2-1_amd64.deb
 80e0f30f3975ea03be66c34dbd944027 6384 libdevel optional 
gammaray-dev_1.2.2-1_amd64.deb
 e4719013a86f581185e5286dd360ce00 9092270 debug extra 
gammaray-dbg_1.2.2-1_amd64.deb

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

iQIcBAEBCAAGBQJQ1e/fAAoJEP4ixv2DE11FzKMP+weOFgHER63ULVLilNDhSj8O
4wQimTnRWmk8AS24QJmK4aypmZYP2c4SDN5JX6M+absK6sGB8fP+oqelIqGJEYD1
CmLYDKbZce0zGs5HO/993y6X2ZTFnJOQWO4J4u/a3gRD35TbuR/JKRf7x3/VqQ+8
9YWKuHd7wpF/i8Uclqlgo8EH5hLppxkSq/aYCSDkNJf3sESLHl3A5YI1QiqIMUCb
g2eIQRsQApb6H77JlJ7sP7AmihfgNxcDbKKfIZXHceUE0ybOfP+Ed3qhvYmbFiai
O5WpjfJnThgVdMMl52qw8gcgxqRgJFgwYrgzHpEqlUZOT903u5b8ihAwJ5S/yYLV
Xzr6wdpTCIz3IXj69F9t/sBOQyHcsu1tH3qd48weYcAJ+BLpipcEEB64NXna5qGX
qRBHCzLq6BcVfcsJtqhpAPlttPxAnaxrNeQ+w9VqTwGt0fgUYHWrox/ps2DyhK8O
gXQUa47yTjqg5KG4Z/M+HGsVdIb88l/v+Uv8HSdj/BBBjd58gowYF6YFcA5faRwT
AlzXNLmNryGLIyyjUaC6gLhsS96Oy3HuTO5F6Co9tpvEkqSpQGHQZWQIu1I5UzOZ
mXV0rKhVi3qTrHkabDb9t7WggXF0xpwQ9dy5fxsLlzoOS629ojed+8jYAjDcMqnb
ebTymZ89Ltw/qTgZ9QEv
=JaTW
-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/e1tmtaz-cb...@franck.debian.org



Accepted codeblocks 12.11-1 (source i386 all)

2012-12-22 Thread Vincent Cheng
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 22 Dec 2012 17:36:58 +0100
Source: codeblocks
Binary: codeblocks codeblocks-common libcodeblocks0 codeblocks-dbg 
codeblocks-contrib codeblocks-contrib-dbg codeblocks-dev libwxsmithlib0 
libwxsmithlib-dev libwxsmithlib0-dev
Architecture: source i386 all
Version: 12.11-1
Distribution: experimental
Urgency: low
Maintainer: David Paleino da...@debian.org
Changed-By: Vincent Cheng vincentc1...@gmail.com
Description: 
 codeblocks - Code::Blocks integrated development environment (IDE)
 codeblocks-common - common files for Code::Blocks IDE
 codeblocks-contrib - contrib plugins for Code::Blocks IDE
 codeblocks-contrib-dbg - dummy transitional package for Code::Blocks debugging 
symbols
 codeblocks-dbg - Code::Blocks debugging libraries
 codeblocks-dev - Code::Blocks development files (SDK)
 libcodeblocks0 - Code::Blocks shared library
 libwxsmithlib-dev - wxSmith development files (Code::Blocks plugin for RAD GUI 
editin
 libwxsmithlib0 - wxSmith shared library (Code::Blocks plugin for RAD GUI 
editing)
 libwxsmithlib0-dev - dummy transitional package for wxSmith development files
Closes: 617684 651306 696048
Changes: 
 codeblocks (12.11-1) experimental; urgency=low
 .
   [ David Paleino ]
   * Remove references to Microsoft Windows in the long descriptions
 (Closes: #617684).
   * Add support for -std=c99 for GCC compilers (Closes: #651306).
   * Standards-Version bump to 3.9.4, no changes needed.
   * Updated debian/copyright.
   * Updated debian/watch to catch new versions.
   * Bump debhelper compatibility to 9.
 .
   [ Vincent Cheng ]
   * Acknowledge NMU by Matthias Klose, thanks!
   * New upstream release. (Closes: #696048)
 - Remove 03-fix_libX11_linkage.patch, ftbfs-gcc-4.7.diff; applied upstream.
 - Refresh remaining patches.
   * Add myself to Uploaders.
   * Add libhunspell-dev, libgamin-dev, libboost-dev to build dependencies.
   * Mark codeblocks-contrib-dbg as a transitional package and install all
 debugging symbols into codeblocks-dbg.
   * Remove lintian override script-not-executable.
Checksums-Sha1: 
 49b044bab058fe89c0720642c8221aee6074d794 1947 codeblocks_12.11-1.dsc
 12f47ef42d9d1a45f4a337d4433db6ede2630669 12251781 codeblocks_12.11.orig.tar.gz
 0ee44436078f6d6589c8694e523a9f1c11f4a7ea 21068 codeblocks_12.11-1.debian.tar.gz
 63419df114ca4aad19b572c84f3c905fc7254acb 2207906 codeblocks_12.11-1_i386.deb
 846dc3424409bae81d701c0f23340ebb5e2e1f87 3463526 
codeblocks-common_12.11-1_all.deb
 e16742ed43773bd2cd5b25313f7fefa4acb2665b 2773134 
libcodeblocks0_12.11-1_i386.deb
 271c13cf1c701340671caddc4837e50b179acdbd 74486296 
codeblocks-dbg_12.11-1_i386.deb
 945e5d7310de817851a90212f72a636233e99199 5061408 
codeblocks-contrib_12.11-1_i386.deb
 288bba943a2deb97f72a886d30d075b1486bfeac 260638 
codeblocks-contrib-dbg_12.11-1_i386.deb
 a3fe804c3daa80306987b251132210d590805072 662718 codeblocks-dev_12.11-1_i386.deb
 f4b0c11409667f55b915339651c7ceb064fb4d0c 1189964 
libwxsmithlib0_12.11-1_i386.deb
 29a67646f9ba35282870d25e85e13d8167e12998 340096 
libwxsmithlib-dev_12.11-1_i386.deb
 7637b90968e8aad4b757d2c71945fe4584989c97 260636 
libwxsmithlib0-dev_12.11-1_i386.deb
Checksums-Sha256: 
 6232b0595ba285f0a763a43d786f997071cac9245dabf0b5033890eba4d3fa2b 1947 
codeblocks_12.11-1.dsc
 af57635b97aa6ea52ba120c5fac2d847c2638d53e6bdb3fdd1561b7fa7ae6ed9 12251781 
codeblocks_12.11.orig.tar.gz
 f33b21b19de8f6991182ccf9bcb830e376a5e71e4c4c3c37eb69bb210d15 21068 
codeblocks_12.11-1.debian.tar.gz
 e506c6d8f192686efa2f3348379d309370b239cde0e43f2fca0a064a53ff7bd9 2207906 
codeblocks_12.11-1_i386.deb
 5350b071d3327cbf2ddc04ba3e22493eaca3a7e81715870bc7f4e4589dc46371 3463526 
codeblocks-common_12.11-1_all.deb
 2b48df0cd3ebb6c77a12bdc67fd57da643694690db45c671adac94089f51e116 2773134 
libcodeblocks0_12.11-1_i386.deb
 0b45793cf4f224df71400b7b39f6094ef61c5900e2969adc1b6ffd6035cf6ae8 74486296 
codeblocks-dbg_12.11-1_i386.deb
 3324097491589721038f6d6a2ec284aad348bd5e7dd47e0ab049c15e70d6c073 5061408 
codeblocks-contrib_12.11-1_i386.deb
 77925c5ff14311f939df01a6bab0fa57d216082026b13f290bd4b7ea590451fc 260638 
codeblocks-contrib-dbg_12.11-1_i386.deb
 3ff07a1e7a4605679bd2372ce1ec85fddf44f7e6fbeb6b91afd98819bd9a33b6 662718 
codeblocks-dev_12.11-1_i386.deb
 800d88891a6d5525c68d04a0b4d7184bdc3c6c7ff49b337ddad08822c7c9335a 1189964 
libwxsmithlib0_12.11-1_i386.deb
 93d90277c2af9d66c2015f77495fb2a250457dd171cdf1c72f750501937f4440 340096 
libwxsmithlib-dev_12.11-1_i386.deb
 91ddad0ba84d593404ec023fe018d9280d82251b80a11497d98ac1dcc8325f78 260636 
libwxsmithlib0-dev_12.11-1_i386.deb
Files: 
 014c19b66eaec1799c52a87229793742 1947 x11 optional codeblocks_12.11-1.dsc
 4fa8980a8c578b8b5589fceb9b0890d6 12251781 x11 optional 
codeblocks_12.11.orig.tar.gz
 86c5483664ce3aa8c26fac08ad3c9dba 21068 x11 optional 
codeblocks_12.11-1.debian.tar.gz
 741377237615932b09df39438ffe986e 2207906 devel optional 
codeblocks_12.11-1_i386.deb
 7d900dd3c15f4a16c97e8ba0bc839c84 

Accepted mednafen 0.9.27-1 (source i386)

2012-12-22 Thread Stephen Kitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 22 Dec 2012 15:29:44 +0100
Source: mednafen
Binary: mednafen
Architecture: source i386
Version: 0.9.27-1
Distribution: experimental
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Stephen Kitt st...@sk2.org
Description: 
 mednafen   - multi-platform emulator, including NES, GB/A, Lynx, PC Engine
Changes: 
 mednafen (0.9.27-1) experimental; urgency=low
 .
   * New upstream WIP version.
Checksums-Sha1: 
 9257480caff8ff23a86d4df756f0b96d22c44a1f 2200 mednafen_0.9.27-1.dsc
 5be7597bb8fc9c47ae434d4a0aab16e13230b916 3891780 mednafen_0.9.27.orig.tar.bz2
 9a2cb57ddf75f74449140d27f9c2a14240db236d 14538 mednafen_0.9.27-1.debian.tar.gz
 7c44c1f3921980426967b976260122ee1734fedb 3213606 mednafen_0.9.27-1_i386.deb
Checksums-Sha256: 
 8d889ff3f15b9187879838928afa39795cfa522720b02d15a82c513a4d249dd5 2200 
mednafen_0.9.27-1.dsc
 263436fe0df758039838e000ae82bb4fc056f3932a2b5f02ce32db19250931db 3891780 
mednafen_0.9.27.orig.tar.bz2
 c83a65c3880ab2df4dcb10099e83124830f1a7f2047f94b5d7f1b960f196c810 14538 
mednafen_0.9.27-1.debian.tar.gz
 bca6f2040e7317bb89924f27a50e982bd9818ad7e6c863889fa30e6cd771a409 3213606 
mednafen_0.9.27-1_i386.deb
Files: 
 01a77f0bb0502a9275b276bb3d90d7f0 2200 games extra mednafen_0.9.27-1.dsc
 a5a5fd11146c343489c9e3ac1062a609 3891780 games extra 
mednafen_0.9.27.orig.tar.bz2
 ce5facb636d2b10079b5e6fd73d05fd7 14538 games extra 
mednafen_0.9.27-1.debian.tar.gz
 c418cbd166065f2ba31ad65b8d571dc5 3213606 games extra mednafen_0.9.27-1_i386.deb

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

iQIcBAEBCAAGBQJQ1f3LAAoJEHWXeKmja0lPy+4P/jEPdnkc7HTv5Vyk0C/O0RD9
N6bi4L37z9/sa0Q9ILY2ZmYGchRplAd5xZVck7CpIWzaW4xHsPrWSp/s4+LbjtZK
G6V8QLMAJCKZyNt5gpZO9vNhFCbb+lpdIyFAcIQ5vQVAgE7D7hT0gZ0Dzq1RE8Qn
i8WwwyfdMyTSOLxIpBkXb9S9lzQdGGFy6OBiJFOPrjcOV1xfQ2sQDfF/cD542J4W
9swIa2fDm71So2IAUnlRD2PfLnNr+Yuc3ejTsdxAhtH67bAfblfJe//5yeCqn8Cx
gSHcnae3u5ScEZ5un/QpRicPvCqYbFd4f7EBDnA6kohQ8M9Ma45OWYTArFuYMpU2
j8oHdPM2vnMb7HnmDfBEnRIxEzn5OrrKKtwb+l5M/UKOVhvBoC6626ows1hbS2eA
282QJbnkkWhtd/tVOg3lrVmuGlJnAnuSSqeX7qPhbSzlur7rs2mN0CltvVMazB2/
FKVr+FvyZqaYOTvhBpip/pJeHGgWH2Nq1igNWLDFpG/bC62q0drVZIt0V6KBnDjh
R9c4d1EjEUO8MaqALJrCmFa36NTHlXN5vAczspAQmhxWtXJJH03t6iwOkMy76t2N
YFiUb90S20FL/ur4al0zNZUL6aXYJkytGKbc7aeGePYetJ1mdsZ14eDi1CGedTsI
vBJHVy8k8nxa9Ns/rmtQ
=NCXO
-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/e1tmu6k-0003li...@franck.debian.org



Accepted libdatetime-timezone-systemv-perl 0.006-1 (source all)

2012-12-22 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 22 Dec 2012 18:59:27 +0100
Source: libdatetime-timezone-systemv-perl
Binary: libdatetime-timezone-systemv-perl
Architecture: source all
Version: 0.006-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: 
 libdatetime-timezone-systemv-perl - System V and POSIX timezone strings
Changes: 
 libdatetime-timezone-systemv-perl (0.006-1) unstable; urgency=low
 .
   [ Xavier Guimard ]
   * Take over for the Debian Perl Group on maintainer's request
 (http://bugs.debian.org/677732#10)
   * Imported Upstream version 0.006
   * Update source format to 3.0 (quilt)
   * Bump Standars-Version to 3.9.4
   * Bump debhelper compatibility to 8
   * Update debian/copyright (years and format)
 .
   [ gregor herrmann ]
   * Drop (build) dependency on libdate-jd-perl.
   * Don't install README anymore.
   * Mention module name in long description.
   * Add build dependencies on libtest-pod* for additional tests.
Checksums-Sha1: 
 d749ea58e345aa9a8e7c23483d4ed56610056d79 2366 
libdatetime-timezone-systemv-perl_0.006-1.dsc
 715cbe53b3ffaefdad59350c21ce82d87f00a0c0 14050 
libdatetime-timezone-systemv-perl_0.006.orig.tar.gz
 b93bac0ea4c17b2d0ee266d745e47a501e4cc48b 1891 
libdatetime-timezone-systemv-perl_0.006-1.debian.tar.gz
 56ad4051b5b9bb7846b30e4584573d78f97f1c6e 15828 
libdatetime-timezone-systemv-perl_0.006-1_all.deb
Checksums-Sha256: 
 107da3bc2340685dd619e71dd7c8a3b48129f02ec1aa9b01aad458fb6bddb816 2366 
libdatetime-timezone-systemv-perl_0.006-1.dsc
 2ff5832cab871f47780429a004218e43beb1b44e8db53813c6b57d1963035ea2 14050 
libdatetime-timezone-systemv-perl_0.006.orig.tar.gz
 a88e64b1e5e19d21ca545a389a574d1a8c4f2f1b96a7f22e0fc2fa386802c6df 1891 
libdatetime-timezone-systemv-perl_0.006-1.debian.tar.gz
 73b0babeac7080502ed0521b3f67021417da36391dde81d4ec5cdba434f45400 15828 
libdatetime-timezone-systemv-perl_0.006-1_all.deb
Files: 
 5d25d7f976ab1a7e77b526db35f37859 2366 perl optional 
libdatetime-timezone-systemv-perl_0.006-1.dsc
 ab33e9d1cfb688de84e278330ddd5886 14050 perl optional 
libdatetime-timezone-systemv-perl_0.006.orig.tar.gz
 153f0c0fa066a96b045386de6bb260a8 1891 perl optional 
libdatetime-timezone-systemv-perl_0.006-1.debian.tar.gz
 45843600ad75da9156315b7dab0a181a 15828 perl optional 
libdatetime-timezone-systemv-perl_0.006-1_all.deb

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

iQIcBAEBCAAGBQJQ1h3nAAoJELs6aAGGSaoGNOMQAKDZoGe4nqdqPWELh+9yCpkZ
iE5tM0CZyZXyvoDWbz4yb59+PEkCUg1Y4eSjiV9TlrA+o1xJDE9Y1edMmdnsTmZR
Xfxipw9BBMmw0Q/3EZvCFOWmkGymUnPhzPHpYbbtKtoxZr6NC2momaVRdkG/ipBx
u4WW5pM3X78C+/rv9Vxpu8dUbJK/iE4p2Clpy4EED54kZ5VpXMl62qMKI29oKg4O
f7LFOLqCS/NiTlUEkQGF8jkEywnTToJqsmfEuLihO17njuMb6qNY2R9MT4Li/M6+
R9RI4PBQQ6d4u6hj0bv0S8HNTngrNQp9SDqUyjB+l+BN9WoSFXChGiLNmC8TX78i
L6L495pvETvYt1TxaNsqQg6JnOQKRqFKGsUBna4Ufq+vmzYIOU+bNwS/EZwEi/lL
2C0H1eVC63JNIh9yitwURPP9h9nKZ8F/bFMvmM4cKmIVUrUQNou4C8RCSnTitzf0
1Rpo/5LjjKSukVYAAUHy8r4FuvLfMIvj947YFu8wGp0FRtW0bYdo3Ff2PnQff8oQ
QpixE7V9uepUBqhg5CRIbpWQEsxIX+/A+pqKCSw9tOZJpSgdKBTCGTI4r9Az7nr3
kbJ4EZ5cYpi9iKM8BUH4Y3Lc2/3Sl7Dpra/hTThh+TpFbSUiM1NEGxI/VwRfya8v
nKNApLsdJlgIzBOspANu
=GlGp
-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/e1tmwde-00087q...@franck.debian.org



Accepted libdatetime-timezone-tzfile-perl 0.007-1 (source all)

2012-12-22 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 22 Dec 2012 19:07:38 +0100
Source: libdatetime-timezone-tzfile-perl
Binary: libdatetime-timezone-tzfile-perl
Architecture: source all
Version: 0.007-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: 
 libdatetime-timezone-tzfile-perl - Perl handling of tzfile (zoneinfo) timezone 
files
Changes: 
 libdatetime-timezone-tzfile-perl (0.007-1) unstable; urgency=low
 .
   [ Xavier Guimard ]
   * Take over for the Debian Perl Group on maintainer's request
 (http://bugs.debian.org/677732#10)
   * Imported Upstream version 0.007
   * Update source format to 3.0 (quilt)
   * Bump Standards-Version to 3.9.4
   * Bump Standards-Version to 8
   * Add libparams-classify-perl in dependencies
   * Update debian/copyright (years and format)
 .
   [ gregor herrmann ]
   * Don't install README.
   * Mention module name in long description.
   * Build depend on libtest-pod* for additional tests.
Checksums-Sha1: 
 2f7491012d524f16943a9dd4a9e5651de1cf74dd 2389 
libdatetime-timezone-tzfile-perl_0.007-1.dsc
 7f9d0913744250f2234723f4aa6db157d8502643 23072 
libdatetime-timezone-tzfile-perl_0.007.orig.tar.gz
 2ccb1d369ba13d814ad07c6801d3dddb59ca2163 1840 
libdatetime-timezone-tzfile-perl_0.007-1.debian.tar.gz
 5c9703375c418f2f4cd605bef7dae03883bc977a 14280 
libdatetime-timezone-tzfile-perl_0.007-1_all.deb
Checksums-Sha256: 
 c185f2af14a44d5cf667e1514c1bff6ec2f237b9ca0a653163bace42f494ddca 2389 
libdatetime-timezone-tzfile-perl_0.007-1.dsc
 e3b7b0a09424d94485327542b9dfb04c64d9aff48533ce93ae56194e65135c1c 23072 
libdatetime-timezone-tzfile-perl_0.007.orig.tar.gz
 c01d508c2678b68b24d2d0a78348b81bc67978277f10ca30fd19045d11f4d5cb 1840 
libdatetime-timezone-tzfile-perl_0.007-1.debian.tar.gz
 c339d6e036f5c2891d09e8fb99ca52d752a01935ae26833b750b799df05e30ce 14280 
libdatetime-timezone-tzfile-perl_0.007-1_all.deb
Files: 
 87ce6ecccd84ba612609639d7030a166 2389 perl optional 
libdatetime-timezone-tzfile-perl_0.007-1.dsc
 7894cb31decfb83b4f3f4f783b871839 23072 perl optional 
libdatetime-timezone-tzfile-perl_0.007.orig.tar.gz
 9db3bd602e214c0b3c6ce2870e22a252 1840 perl optional 
libdatetime-timezone-tzfile-perl_0.007-1.debian.tar.gz
 621b13481ce9e08a009af531d0a58734 14280 perl optional 
libdatetime-timezone-tzfile-perl_0.007-1_all.deb

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

iQIcBAEBCAAGBQJQ1hxKAAoJELs6aAGGSaoGyL0P/iTTptntqpIAXNLEbDASq017
Q3gyLqRlC6R8KPZQZPgk+atsyyFdFeLnw7Zl+4ev2d4UX8MDpGdAB/IzUijfZ29J
m26U5yq7WWhMA0pk2KYfq7wwUiAN9o8ollulwSjL1A+vMSRo//7H7qhNcAUmnOv1
zq79sxl5ppd2jlcAVme67pDtxmEvJvk9ijqsPrlK36uz8AM5uc4QP5bOKcum1GYi
OKR5xAZRwqJiTFg12UPDptvJEAMrCZmoMuN55ydIvbZ8/KLiMeUIvuIIRxrxsgm1
tHJNoWBNaH9XhcFIT285ojZRXdEYQAaiT0ZLFNg8Hh/zkCRBCEl7lKEC7+JhA89t
M9PYzTKS+rxgHFQ+fYdV8yjXprpSOSqDn0XpUDfcNI2QuHPGF/cxXkGJkDRHPAKt
1MpAqidCH/D8S19KQjhMEEjp5Jdv+tDA1dtcptpicN+50FZZajrisFpDHfRapJGa
4OQ8Fg847KiaSGSJmoezzHMLw3Yw4D59y5gQe7Z1Pcg1bMMYpijOFLe49lReiXUS
ltd56drmtKhy0v2d37LO+6jn/60Jrc+3Au0yfqSkePP8bBAbqZomdtowoU8cs0u5
rKWaclQKR7ZpT2MI9v0Lxl5a0wcHExK+3g/yVLvFXL/tq9LX0AXs83OcqUFe8FKn
EEnqVj9Nrc/KV3HsVf3E
=tNn+
-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/e1tmwdj-0008aa...@franck.debian.org



Accepted xbmc 2:12.0~git20121219.74b907c-1 (source all amd64)

2012-12-22 Thread Andres Mejia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 22 Dec 2012 17:12:13 -0500
Source: xbmc
Binary: xbmc xbmc-bin xbmc-eventclients-common xbmc-eventclients-dev 
xbmc-eventclients-wiiremote xbmc-eventclients-j2me xbmc-eventclients-ps3 
xbmc-eventclients-xbmc-send
Architecture: source all amd64
Version: 2:12.0~git20121219.74b907c-1
Distribution: experimental
Urgency: low
Maintainer: Debian XBMC Packaging Team 
pkg-xbmc-maintain...@lists.alioth.debian.org
Changed-By: Andres Mejia ame...@debian.org
Description: 
 xbmc   - XBMC Media Center (arch-independent data package)
 xbmc-bin   - XBMC Media Center (binary data package)
 xbmc-eventclients-common - XBMC Media Center (Event Client Common package)
 xbmc-eventclients-dev - XBMC Media Center (Event Client Dev package)
 xbmc-eventclients-j2me - XBMC Media Center (Event Client J2ME package)
 xbmc-eventclients-ps3 - XBMC Media Center (Event Client PS3 package)
 xbmc-eventclients-wiiremote - XBMC Media Center (Event Client WII Remote 
support package)
 xbmc-eventclients-xbmc-send - XBMC Media Center (Event Client XBMC-SEND 
package)
Changes: 
 xbmc (2:12.0~git20121219.74b907c-1) experimental; urgency=low
 .
   * New upload for XBMC Frodo RC 2.
Checksums-Sha1: 
 f9f679fd2e795f11297effea6c3cf5146067e9b7 3810 
xbmc_12.0~git20121219.74b907c-1.dsc
 beecb209952f85a03f0d09f778293b4b6659c0ee 55263195 
xbmc_12.0~git20121219.74b907c.orig.tar.gz
 a5a1d52b20cbda0195a690c0f4a20d5a4ac68f8b 37471 
xbmc_12.0~git20121219.74b907c-1.debian.tar.gz
 0dc7c47f03c41914574a351a63b26d0d9673dd55 21305732 
xbmc_12.0~git20121219.74b907c-1_all.deb
 78730c19b127592064db37ada11ceb81c76c0483 12116078 
xbmc-bin_12.0~git20121219.74b907c-1_amd64.deb
 8ce47435736fac68fb3b8e459f50858a4676bf36 58106 
xbmc-eventclients-common_12.0~git20121219.74b907c-1_all.deb
 9d1d5f42325f389c165949c9bd34471870a15226 43462 
xbmc-eventclients-dev_12.0~git20121219.74b907c-1_all.deb
 2eb0ac2a818de4d9839b17d566681b48aecbc1f8 62084 
xbmc-eventclients-wiiremote_12.0~git20121219.74b907c-1_amd64.deb
 8b5eade597b6cf97212117237f317de0296713df 36530 
xbmc-eventclients-j2me_12.0~git20121219.74b907c-1_all.deb
 2dbf2da947c6820ed0470af8cd02569d4dc7ba73 36950 
xbmc-eventclients-ps3_12.0~git20121219.74b907c-1_all.deb
 e60fdac3be9ee80847418f4d7fdd5c31aca9fc66 35774 
xbmc-eventclients-xbmc-send_12.0~git20121219.74b907c-1_all.deb
Checksums-Sha256: 
 081823558ea388e269d32716896326a5df37c4af92f755bbd777fe1c88aeec9d 3810 
xbmc_12.0~git20121219.74b907c-1.dsc
 4f6507573f8e5aa810632c062ab75be5f1b3e5ef588e2b9896decd14f86e38eb 55263195 
xbmc_12.0~git20121219.74b907c.orig.tar.gz
 b21994825addd32be8eb29318d665800e65ff43c734c0626b664e8ed75bb4fa1 37471 
xbmc_12.0~git20121219.74b907c-1.debian.tar.gz
 86ee0c97ae21e9cb4952bb8cda4ed84f5e3b0d8d0af824c0cae2a3b70be77980 21305732 
xbmc_12.0~git20121219.74b907c-1_all.deb
 e853d220d984ef0ef75a8c63f21e4191f9703b028d26ce33adecfaf40ad46d1a 12116078 
xbmc-bin_12.0~git20121219.74b907c-1_amd64.deb
 8a3fd41c99f0fec62dd0eac14402f23bf3bf70cea7bb2eba3b92a178d36e17c3 58106 
xbmc-eventclients-common_12.0~git20121219.74b907c-1_all.deb
 2c33bae0ed2630cafe4763d949113b26790722a846405efdf7d9dafd44d56cac 43462 
xbmc-eventclients-dev_12.0~git20121219.74b907c-1_all.deb
 4b3c414d47929dd8b20498c9af8ee11fe117d611867dd156650758266b43e3eb 62084 
xbmc-eventclients-wiiremote_12.0~git20121219.74b907c-1_amd64.deb
 fbc995826ac7b4e9c9903d506783c443610f94e34e4aff2d0f17849c94ccc07f 36530 
xbmc-eventclients-j2me_12.0~git20121219.74b907c-1_all.deb
 df3f7e17b0b4fd0b0d720b56a68b8b47e97f8e612561e1f19913e609144be0da 36950 
xbmc-eventclients-ps3_12.0~git20121219.74b907c-1_all.deb
 571b7f605b4ecea2e42b7eff52a0fc0a2aa05fe9e5aef996489d18a92fb8e062 35774 
xbmc-eventclients-xbmc-send_12.0~git20121219.74b907c-1_all.deb
Files: 
 5e69246e98f0d12bf9f2ee5a10379438 3810 video optional 
xbmc_12.0~git20121219.74b907c-1.dsc
 f9e62bc979da06ffda59cb069a4e7760 55263195 video optional 
xbmc_12.0~git20121219.74b907c.orig.tar.gz
 9f51d18b572b93932862e3e019d6fdb3 37471 video optional 
xbmc_12.0~git20121219.74b907c-1.debian.tar.gz
 a943d6824299a72a83f723a0e8e9c210 21305732 video optional 
xbmc_12.0~git20121219.74b907c-1_all.deb
 37e12cfce357f164801128d48f042dd3 12116078 video optional 
xbmc-bin_12.0~git20121219.74b907c-1_amd64.deb
 84b9cb46a742b33142805ff041b4cd47 58106 video optional 
xbmc-eventclients-common_12.0~git20121219.74b907c-1_all.deb
 5c272859b0cd997576868ef6a730ec80 43462 libdevel optional 
xbmc-eventclients-dev_12.0~git20121219.74b907c-1_all.deb
 db01b4051016b1ad3f2a425895af4f01 62084 video optional 
xbmc-eventclients-wiiremote_12.0~git20121219.74b907c-1_amd64.deb
 70f2d2b4969d6db433bca3179a6c68a4 36530 video optional 
xbmc-eventclients-j2me_12.0~git20121219.74b907c-1_all.deb
 2c3ea3c84075849311ba8ef521e67d02 36950 video optional 
xbmc-eventclients-ps3_12.0~git20121219.74b907c-1_all.deb
 d1c2d6bbe832b913098e61e9ed51a46f 35774 video optional 
xbmc-eventclients-xbmc-send_12.0~git20121219.74b907c-1_all.deb

-BEGIN PGP SIGNATURE-

Accepted libuuid-perl 0.02-5+exp1 (source amd64)

2012-12-22 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 22 Dec 2012 23:48:02 +0100
Source: libuuid-perl
Binary: libuuid-perl
Architecture: source amd64
Version: 0.02-5+exp1
Distribution: experimental
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libuuid-perl - Perl extension for using UUID interfaces as defined in e2fsprogs
Changes: 
 libuuid-perl (0.02-5+exp1) experimental; urgency=low
 .
   * Rebuild against perl 5.16 in experimental.
Checksums-Sha1: 
 c9810571d1fc46dd614741de70c5b301fa689f07 2023 libuuid-perl_0.02-5+exp1.dsc
 fdb7b26ae1345da90861cb99034c0aa2ecbb92c9 2493 
libuuid-perl_0.02-5+exp1.debian.tar.gz
 017797030456c0dc15f972f341286f3c479241fa 9824 
libuuid-perl_0.02-5+exp1_amd64.deb
Checksums-Sha256: 
 3923b202763b69ebdaea88807544c5884c00d02b9a0c13d411d54ec769495e8e 2023 
libuuid-perl_0.02-5+exp1.dsc
 f4311c56e6dbcfc47e249a75f45d11b9767d1671253f6fd5bb9573223dd873f0 2493 
libuuid-perl_0.02-5+exp1.debian.tar.gz
 1724f423ccaa3c10ee09f5130fd7c396021a9ab2deb85d1ec62ed3cae4f23540 9824 
libuuid-perl_0.02-5+exp1_amd64.deb
Files: 
 8f0387b506b580fa309f55c0ecbaa7a8 2023 perl optional 
libuuid-perl_0.02-5+exp1.dsc
 361bd4232aa69a2049a938efd57dedab 2493 perl optional 
libuuid-perl_0.02-5+exp1.debian.tar.gz
 ee503d7c8588117dd7622289a5f9dde6 9824 perl optional 
libuuid-perl_0.02-5+exp1_amd64.deb

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

iQIcBAEBCAAGBQJQ1jltAAoJELs6aAGGSaoGLs0P/3vSxOQlvLwlJHDq5dT0aEqV
RlXOkGBESYgtZ1ntPRXi7h53+j6p0ctHSiUPRzy+jAsVJtfAuDnTQXdz15LcmWmV
GW3kUrULVOz16v9J3EBODtCYQ8/dSG0xXv51lu71cix/PRCWv6S2e8LuWvxF6qOD
TpTg/cHa+vNK/cjpg0JiDtTB84bFE7WxKv8fytkKnt3TSPMSpSeckqiy8kgIZznF
VIO3Xt82kp03Hqu/3kgmb8u8mau06IHc7xVoFMVispkMFhIJ5UfddqFVhS1dllRf
Q4YX+pXxhf3/mJglJ4eigFt7MRQ1RlGBD5ESjzDz8oWAO4oJtNxDGHYxYsJbBeZB
rgFjrPfs7Ot3/e0mgI3Kd7pbv6dOsg38uwo4I+moCuf4YpJJRuiTK1neRSvSmp5+
KUUf7CyHM8F7vsXa1GVfzhUYPZ8i25n8HdtRY+jMjykldB++WvkbmhtOzD6rzQ/W
r9AhTt2bwXNlQdAcrqneS4X2sJ7fqMTyA7wBcsmVptB4C7Tzx6ZNav5xAzus0YgL
GWPpyg7w0AEwR9FE+YbcuMoIPYlzBJPF6fR7W9mHnJkEPkNzbjyzbN/Z4xwZ57YD
Ey4pxFiQDa3V5nTWUPkGiZlVMwUWNdDCr6TLNda0V9K9Dt1+q2cMKdpMWZKa3CUq
xNWLgmv9x1yUKBZNm6ag
=/AWc
-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/e1tmy5m-0006mt...@franck.debian.org



Accepted eclipse-egit 2.2.0-1 (source all)

2012-12-22 Thread Jakub Adam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 Dec 2012 22:36:33 +0100
Source: eclipse-egit
Binary: eclipse-egit eclipse-egit-mylyn
Architecture: source all
Version: 2.2.0-1
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Jakub Adam jakub.a...@ktknet.cz
Description: 
 eclipse-egit - Eclipse Team provider for the Git version control system
 eclipse-egit-mylyn - Mylyn integration for EGit
Changes: 
 eclipse-egit (2.2.0-1) experimental; urgency=low
 .
   * New Upstream release.
   * Update Build-Dep on libjgit-java to 2.2.0.
   * Refreshed d/patches/use-distribution-jgit.patch.
Checksums-Sha1: 
 2a3f914c9c51bd5e797b6420bb7cf7b25c49d2d0 2151 eclipse-egit_2.2.0-1.dsc
 ee825ac1054767cbf3e1d2674958c07042caada3 4102616 eclipse-egit_2.2.0.orig.tar.gz
 8093d1c0bbb0015d435eade17a096c02fed377cb 7545 
eclipse-egit_2.2.0-1.debian.tar.gz
 b8843f1a9fa0179248050f5b7dfd0860d78dcd42 5329732 eclipse-egit_2.2.0-1_all.deb
 33e298eabea24648d06ef9d8ed690e528f606678 26894 
eclipse-egit-mylyn_2.2.0-1_all.deb
Checksums-Sha256: 
 9888eaa9af344743210bba33309eba6fa186ddaa5df2ddce7f4ccf240734e057 2151 
eclipse-egit_2.2.0-1.dsc
 550a8b93d4916ad439cea175a17ad20e7cf079030cf8d1ac82ef4a00b68b9adf 4102616 
eclipse-egit_2.2.0.orig.tar.gz
 152f19dcd7d11506c7b33bea9d6c70e36695f285048ef3680333eea7c17d2607 7545 
eclipse-egit_2.2.0-1.debian.tar.gz
 ac605fdf3ae2684c67aec7d79b7ac42e71ee40854befeddc20f25e106d51bc40 5329732 
eclipse-egit_2.2.0-1_all.deb
 cd0468d9d56a3a4fac193f82610f7f9d07e39f3955b7cd4db0b941309a1e8fef 26894 
eclipse-egit-mylyn_2.2.0-1_all.deb
Files: 
 72c185d7f0e1e113f79a9d097b57a74a 2151 devel optional eclipse-egit_2.2.0-1.dsc
 ad8c7e3e15cb90a2de3c2cf783c3d6c5 4102616 devel optional 
eclipse-egit_2.2.0.orig.tar.gz
 8ac43aca8418f6e0a0b2efe9128c8cce 7545 devel optional 
eclipse-egit_2.2.0-1.debian.tar.gz
 0cf3003e69cca29ec0e217f7dbf71d86 5329732 devel optional 
eclipse-egit_2.2.0-1_all.deb
 0fd1156fba5467c0415b1b5185f64ccc 26894 devel optional 
eclipse-egit-mylyn_2.2.0-1_all.deb

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

iQIcBAEBAgAGBQJQ1j9aAAoJECHSBYmXSz6W5fIQAK1Cf7zN6pWT1yJdnBf4SLBb
Kkx83I9CE11GHt0bECZpb2PGvtusClMVyL4/H+MvFkTcGKb7fdJGG5oVJn7sCGsm
MGk7GVM4AdLgl39XB6UL5ZhmkYtZfhCm8+33mrNI7YK+jJBXUeVjXy5y7EclQsW8
DAaa1Umq6u2koyaqDLkRCYkethByQsl0DqPRq4BC21Rmv/BBeDKHOYvUSABCF63/
zYAhaY7M0hssC8NptX48MuLWrSvh1hUUuFeq93qruBm2PRh/Htr/GbUdpNOUoqs9
BrqdjHU8ues/W+aa0T4Xs17A9kisMSsbodDvUJ+d9W89v/7GatThvL7pJ8PgCrrr
Si2OgvLmBJJkmdGWGZeSd7tTJ5bTYbuWafuRP1sdSG4udGxYD68dQhVerycz+f0k
LFLuHSjT8tBQvVrtElgFaGRGWVnenJoLJ2D2774Cy/GvmjagQGnbyLx2eeL/ROZ/
jcGfwzfokwII7pPU3y7h4cwQXP1/USug29qpaI6QScJWOPWUkhupToveon7dEPNT
AKjLJvAZ4IsC5LNnIbWHwY00Si/uTJawY19NE3qQkPKtLivFi1XXbtyjOEP5DAya
PeiVGc9KYCRZ0749g7efEjTCSGM90zOaJOaEm5hyldy/prBQsWpeA+amrGtjJf91
nA0gjRkyseNpTL2MaGwm
=ZMRP
-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/e1tmyyr-0002xj...@franck.debian.org



Accepted kraft 0.50-1 (source amd64)

2012-12-22 Thread Mark Purcell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 23 Dec 2012 12:49:08 +1100
Source: kraft
Binary: kraft
Architecture: source amd64
Version: 0.50-1
Distribution: experimental
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Mark Purcell m...@debian.org
Description: 
 kraft  - small business-management application
Closes: 678934
Changes: 
 kraft (0.50-1) experimental; urgency=low
 .
   * New upstream release
   * debian/compat - 9
   * Added Depends: python-pypdf
   * Updated Description:
 - Fixes Please explain what it does in the description (Closes: #678934)
Checksums-Sha1: 
 ee3c77c37b39af56364f64e008d13ade687c2c58 1383 kraft_0.50-1.dsc
 e1935670129a951b229af3b52e64fb93309c025b 731389 kraft_0.50.orig.tar.bz2
 ad6fd9b267fec47845ced8f6c9aa3607c8e569b3 5258 kraft_0.50-1.debian.tar.gz
 c01a3abfac4a08d6a1a6eeea6f2372cf17c04bfa 1395528 kraft_0.50-1_amd64.deb
Checksums-Sha256: 
 00c83acc02dab33325be64a9dca08132ab94b49966957ccee0b222e0c9ea415f 1383 
kraft_0.50-1.dsc
 5f3e64138bfa84a09d7be4758c65272aa50151fb4b6b19e313efde0ba755eccc 731389 
kraft_0.50.orig.tar.bz2
 4050e9b8cb734190bb17928e93664fab8a1210c0ce619ca0205657a1e92cd137 5258 
kraft_0.50-1.debian.tar.gz
 78a3502e6dcbab9d23e63113b96e0cc194f9ba1b7b13961ca3fc3357ea186eba 1395528 
kraft_0.50-1_amd64.deb
Files: 
 3ecc97e71d1ed8f1eecc5b933ed1aac2 1383 kde optional kraft_0.50-1.dsc
 192724a1e119eac57e69b356e9ca33ee 731389 kde optional kraft_0.50.orig.tar.bz2
 be15d540cd2c1aba514961e1237f4c16 5258 kde optional kraft_0.50-1.debian.tar.gz
 d89724413604f3aa2be490d7c691586c 1395528 kde optional kraft_0.50-1_amd64.deb

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

iEYEARECAAYFAlDWa7wACgkQoCzanz0IthIsCACfcpCAqUiAWfMiCdikLhTuhmiW
LWgAn2WY/o1/9UQYdgXBexYdaDhVkTBk
=pD38
-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/e1tmbb9-0007h5...@franck.debian.org



Accepted samtools 0.1.18-4 (source i386)

2012-12-22 Thread Dominique Belhachemi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 21 Dec 2012 12:09:18 -0500
Source: samtools
Binary: samtools libbam-dev
Architecture: source i386
Version: 0.1.18-4
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Dominique Belhachemi domi...@debian.org
Description: 
 libbam-dev - manipulates nucleotide sequence alignments in BAM or SAM format
 samtools   - processing sequence alignments in SAM and BAM formats
Changes: 
 samtools (0.1.18-4) unstable; urgency=low
 .
 [Charles Plessy]
 debian/copyright: Normalised with config-model
 added bash completion
 Build-depend on Debhelper 9
 Pass build flaggs set by dpkg-buildflags via Debhelper
 Moved DOI and PubMed to the Reference namespace
 Do not compress the example binary alignment file
 Mention ‘SAMtools’ in libbam-dev's description
 .
 [Andreas Tille]
 debian/upstream: replaced BibTeX entry
 .
 [Dominique Belhachemi]
 added patch to fix float tag bug (upstream bug 71)
Checksums-Sha1: 
 f7b14e74d7a22099fa139cfa9900741ef2347b4f 1446 samtools_0.1.18-4.dsc
 4c62d596a429924d917e1bb660c1c7e4d6502eea 9920 samtools_0.1.18-4.debian.tar.gz
 8f0cb58e94a0d3731281741ff1888adb05f8d282 534154 samtools_0.1.18-4_i386.deb
 6b98edd2c7ad2e7d05655a9faf6569a8c2f2 161046 libbam-dev_0.1.18-4_i386.deb
Checksums-Sha256: 
 50a6ddea71bcb72cc5a61f8fe5e3c6f23fc3092849ce78280231f34b65cb8a7a 1446 
samtools_0.1.18-4.dsc
 2ccce5bc5e6e7874b983cf6ac192badd099ac0f7948071de1075d9eee003017c 9920 
samtools_0.1.18-4.debian.tar.gz
 4e0f3cc7b5c3de75da0a7a583d14bd2d98905ea066275f6ac7f45c263a7ac257 534154 
samtools_0.1.18-4_i386.deb
 dcecd1738be064e350d708ff723e1ffae288373d05efe59546f8814deedcdbc0 161046 
libbam-dev_0.1.18-4_i386.deb
Files: 
 e2516edf5f01ebfaed82346484f72454 1446 science optional samtools_0.1.18-4.dsc
 152f425f36b011f2e0dfe4693c66cb4c 9920 science optional 
samtools_0.1.18-4.debian.tar.gz
 9af28136c0f88442335e963ad038c516 534154 science optional 
samtools_0.1.18-4_i386.deb
 29f55887ac70f72b75dc6987e86eb655 161046 libdevel optional 
libbam-dev_0.1.18-4_i386.deb

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

iEYEARECAAYFAlDWid8ACgkQGACh+LNRqQBRWQCcD+vtqqrm85SeGBv0wmzhslvf
+IIAn1/tj60HFt9L5WcfHRRn3x8bR3AL
=zvou
-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/e1tmdtz-0006t0...@franck.debian.org



Accepted live-debconfig 4.0~a12-1 (source all)

2012-12-22 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 23 Dec 2012 08:22:52 +0100
Source: live-debconfig
Binary: live-debconfig live-debconfig-doc
Architecture: source all
Version: 4.0~a12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Live Project debian-l...@lists.debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 live-debconfig - Live System Configuration Scripts
 live-debconfig-doc - Live System Configuration Scripts (documentation)
Changes: 
 live-debconfig (4.0~a12-1) unstable; urgency=low
 .
   [ Daniel Baumann ]
   * Adding simple script for ferm.
   * Stripping away commas after scripts have been multiselected.
   * Bailout early in ferm script if system has no ferm installed.
   * Renumbering scripts.
   * Prefixing all network related fields in ifupdown script with ipv4 in
 preparation for ipv6 support.
   * Adding script for passwd.
   * Renumbering scripts.
   * Updating branding in various cases to make it harmonize with the rest
 of the live packages.
   * Correcting spelling typo in bug script.
   * Extending passwd script to set the root password.
   * Extending passwd script to create a user account.
   * Adding support for multiple user creation at the same time in passwd
 script.
   * Adding live-debconfig-get-selections for easy output of the local
 debconf database.
   * Adding live-debconfig-set-selections for easy input into the local
 debconf database.
   * Adding references to live-debconfig-get-selections and live-debconfig-
 set-selections in live-debconfig manpage.
 .
   [ chals ]
   * Updating Catalan translation of man pages.
   * Updating Spanish translation of man pages.
   * Updating French translation of man pages.
Checksums-Sha1: 
 c1006fc4da5f8dce5921ca4a560ca1fe4f0081ad 1378 live-debconfig_4.0~a12-1.dsc
 af3626e1c0cd17cdc55e425a1919a51f5c05685e 33556 
live-debconfig_4.0~a12.orig.tar.xz
 ba42fbfd92826c709d1e25ef443f6747048a9541 4128 
live-debconfig_4.0~a12-1.debian.tar.xz
 c5b1ac5bcaee4ff40127d7214846a0758021b6c4 14734 live-debconfig_4.0~a12-1_all.deb
 ab832473970bda30a09559a8edb8f526572b404c 27752 
live-debconfig-doc_4.0~a12-1_all.deb
Checksums-Sha256: 
 f5e4cd7885064ed400dd580815bd3925e113b2f406eb78e0783614a7c131d2c7 1378 
live-debconfig_4.0~a12-1.dsc
 57f786e1b2d266c54000b571b5cdc024214603d66681f3cc74d4496363aa01bd 33556 
live-debconfig_4.0~a12.orig.tar.xz
 0e174ec3b6edd35aaa8a6bda7819fd2ef32704bef40c1962af4732e0e741df33 4128 
live-debconfig_4.0~a12-1.debian.tar.xz
 dbac7e856cbadc8497953530ba0d9e8e1b8000bc887abf54ca07c9a6cf0cf95e 14734 
live-debconfig_4.0~a12-1_all.deb
 16f713c0984bf375b4e7d1d1420dc458a6c5dd46bbe442d0c501f3d5aee1cd35 27752 
live-debconfig-doc_4.0~a12-1_all.deb
Files: 
 bee09fe82cd0e40326f505658f00bb14 1378 misc optional 
live-debconfig_4.0~a12-1.dsc
 49ff4784aa477d5dcf3c6ef16f4647fd 33556 misc optional 
live-debconfig_4.0~a12.orig.tar.xz
 04a9c5839945a2e927337b2d7a24e67f 4128 misc optional 
live-debconfig_4.0~a12-1.debian.tar.xz
 248df972fda64822cf6f11e9f8cc94d3 14734 misc optional 
live-debconfig_4.0~a12-1_all.deb
 b8b654c9b47a649c439dd2452f9e3d07 27752 doc optional 
live-debconfig-doc_4.0~a12-1_all.deb

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

iEYEARECAAYFAlDWsjcACgkQ+C5cwEsrK54ywQCg1ZNeTIDhmVSZnd2Vd2OF/M6t
nM8An2mrexdLm1kx4moA4SCrxbyOplRP
=Fzqk
-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/e1tmg2x-0006jt...@franck.debian.org