Bug#725753: marked as done (ITP: krb5-strength -- Password strength checking for Kerberos KDCs)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:09 +
with message-id 
and subject line Bug#725753: fixed in krb5-strength 2.0-1
has caused the Debian Bug report #725753,
regarding ITP: krb5-strength -- Password strength checking for Kerberos KDCs
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725753: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725753
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Russ Allbery 

* Package name: krb5-strength
  Version : 2.0
  Upstream Author : Russ Allbery 
* URL : http://www.eyrie.org/~eagle/software/krb5-strength/
* License : Expat
  Programming Lang: C, Perl
  Description : Password strength checking for Kerberos KDCs

krb5-strength provides a password quality plugin for the MIT Kerberos KDC
(specifically the kadmind server) and an external password quality
program for use with the Heimdal kpasswdd server.  Passwords can be
tested with CrackLib, checked against a CDB database of known weak
passwords, checked for length, checked for non-printable or non-ASCII
characters that may be difficult to enter reproducibly, required to
contain a non-alphabetic character, or any combination of these tests.

No dictionary is shipped with this package.  A CrackLib dictionary can be
created with the tools in cracklib-runtime, a CDB database can be created
from a password list (obtained separately) using the tools included in
this package, or both.
--- End Message ---
--- Begin Message ---
Source: krb5-strength
Source-Version: 2.0-1

We believe that the bug you reported is fixed in the latest version of
krb5-strength, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Russ Allbery  (supplier of updated krb5-strength package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 07 Oct 2013 18:56:49 -0700
Source: krb5-strength
Binary: krb5-strength
Architecture: source i386
Version: 2.0-1
Distribution: unstable
Urgency: low
Maintainer: Russ Allbery 
Changed-By: Russ Allbery 
Description: 
 krb5-strength - Password strength checking for Kerberos KDCs
Closes: 725753
Changes: 
 krb5-strength (2.0-1) unstable; urgency=low
 .
   * Initial upload to Debian.  (Closes: #725753)
   * New upstream release.
 - Add native support for the MIT Kerberos password quality plugin
   interface included in MIT Kerberos 1.9 and later.
 - Stop building the Heimdal plugin.  Heimdal prefers using an external
   check program anyway.
 - Add support for TinyCDB dictionaries with a simpler dictionary
   lookup algorithm.  This allows use of this package to check
   passwords against a large, fast dictionary with a minimum of
   permutations as an alternative or supplement to the extensive
   permutations tested by CrackLib.
 - Minimum password length can now be enforced directly through
   configuration of this module without relying on CrackLib.
 - New boolean settings require_ascii_printable and require_non_letter
   to reject passwords with non-ASCII or non-printable characters and
   to require passwords contain at least one non-letter (and
   non-space).
 - The plugin and external checking program will now run without a
   dictionary configured so that they can be used only to check length
   and the lighter character restrictions if so desired.
 - When checking for passwords based on the principal, also check each
   component of the principal to find passwords based on the realm.
   * Eliminate the heimdal-strength package.  krb5-strength now builds a
 single binary package of the same name including the MIT plugin and
 the Heimdal external password quality program.  The Heimdal plugin is
 not built by the Debian packaging because Heimdal prefers external
 programs.  The plugin can be added later as a separate package if
 there is demand.
   * Revise the package long description for the merger of krb5-strength
 and heimdal-strength and the new capabilities in 2.0.
   * R

Bug#725683: marked as done (ITP: libdevel-callsite-perl -- Perl module to get caller return OP address and Perl interpreter context)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:10 +
with message-id 
and subject line Bug#725683: fixed in libdevel-callsite-perl 0.07-1
has caused the Debian Bug report #725683,
regarding ITP: libdevel-callsite-perl -- Perl module to get caller return OP 
address and Perl interpreter context
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725683: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725683
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Owner: Salvatore Bonaccorso 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libdevel-callsite-perl
  Version : 0.07
  Upstream Author : Rocky Bernstein  (current maintainer), Ted 
Zlatanov , Ben Morrow
* URL : https://metacpan.org/release/Devel-Callsite/
* License : Artistic or GPL-2+
  Programming Lang: Perl
  Description : Perl module to get caller return OP address and Perl 
interpreter context

Devel::Callsite module provides subroutines to get the caller return OP
address and perl interpreter context.

The callsite() function returns the OP address of the caller, a number,
one level up from where it was called. It's useful for functions that
need to uniquely know where they were called, such as Every::every();
see Every. Or it can be used to pinpoint a location with finer
granularity than a line number (see
http://www.perlmonks.com/?node_id=987268). In conjunction with an OP
tree disassembly you can know exactly where the caller is located in
the Perl source.

The context() function returns the interpreter context as a number.
This is a fairly unique number together with the call site.
--- End Message ---
--- Begin Message ---
Source: libdevel-callsite-perl
Source-Version: 0.07-1

We believe that the bug you reported is fixed in the latest version of
libdevel-callsite-perl, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Salvatore Bonaccorso  (supplier of updated 
libdevel-callsite-perl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 07 Oct 2013 14:22:15 +0200
Source: libdevel-callsite-perl
Binary: libdevel-callsite-perl
Architecture: source amd64
Version: 0.07-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: Salvatore Bonaccorso 
Description: 
 libdevel-callsite-perl - Perl module to get caller return OP address and Perl 
interpreter
Closes: 725683
Changes: 
 libdevel-callsite-perl (0.07-1) unstable; urgency=low
 .
   * Initial Release (Closes: #725683).
Checksums-Sha1: 
 5f34fa623041406f4bbeb711befee271671458ab 2092 libdevel-callsite-perl_0.07-1.dsc
 0136b86cbdf78fbb359dfe97b923aa7833cc29b3 12308 
libdevel-callsite-perl_0.07.orig.tar.gz
 d125afb45637a207d6e4686595c4b3e7fd19d4e1 1987 
libdevel-callsite-perl_0.07-1.debian.tar.gz
 aaf6ec424ab4e0b56feb6ce23382e644a1e0c981 8708 
libdevel-callsite-perl_0.07-1_amd64.deb
Checksums-Sha256: 
 ae125461265e1c123131c8d57f885c6bacd3c521b273526f6b5a542e61bf2220 2092 
libdevel-callsite-perl_0.07-1.dsc
 ef65d31402414ff43303d91fe7d291b558cfeb6785dbd83b8d901bc59865144f 12308 
libdevel-callsite-perl_0.07.orig.tar.gz
 0c3de6420bff153e13fce3454f8a94ba59ae8bbeae7682c7af75b20af670c59c 1987 
libdevel-callsite-perl_0.07-1.debian.tar.gz
 3c281661805e98fe153dd1909b95e5b7d7f6f7ac8365fa1d9cb0894aa690fff1 8708 
libdevel-callsite-perl_0.07-1_amd64.deb
Files: 
 b50033a406b7dd0acc6e19ccfde1fbb0 2092 perl optional 
libdevel-callsite-perl_0.07-1.dsc
 8e73fa6e43b73eb70b22cd659aa6b579 12308 perl optional 
libdevel-callsite-perl_0.07.orig.tar.gz
 340e273d83c88b820d91a36d5e8c55ba 1987 perl optional 
libdevel-callsite-perl_0.07-1.debian.tar.gz
 2fba489086285fe0c297a1a147f7cee2 8708 perl optional 
libdevel-callsite-perl_0.07-1_amd64.deb

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

iQIcBAEBCgAGBQJSUxfAAAoJEAVMuPMTQ89Eke4P/2sWu15vYsfxr4MhhfZRYJs9
Kd2dQbRQUqPvFHFKraHLaknLJgA5UUVwh2s0Ppe3vo8q73xto7op3puDVmIyEiRy
3FG0w9BtCz5fLP0rybLolOb99a1bj32iBRZYILoO8N8taF0krAOKu5e1orQoHfWg
6386rzyqe416g8eb82x4drOhSnZs8uFsABNh5ZW

Bug#725220: marked as done (ITP: jatl -- Java Anti-Template Language)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:08 +
with message-id 
and subject line Bug#725220: fixed in jatl 0.2.2-1
has caused the Debian Bug report #725220,
regarding ITP: jatl -- Java Anti-Template Language
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725220: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725220
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Emmanuel Bourg 

* Package name: jatl
  Version : 0.2.2
  Upstream Author : Adam Gent 
* URL : http://code.google.com/p/jatl/
* License : Apache-2.0
  Programming Lang: Java
  Description : Java Anti-Template Language

JATL is an extremely lightweight efficient Java library to generate
XHTML or XML in a micro DSL builder/fluent style.

This package is a build dependency or Gradle 1.5
--- End Message ---
--- Begin Message ---
Source: jatl
Source-Version: 0.2.2-1

We believe that the bug you reported is fixed in the latest version of
jatl, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Emmanuel Bourg  (supplier of updated jatl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Oct 2013 07:51:28 +0200
Source: jatl
Binary: libjatl-java
Architecture: source all
Version: 0.2.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 

Changed-By: Emmanuel Bourg 
Description: 
 libjatl-java - JATL - Java Anti-Template Language
Closes: 725220
Changes: 
 jatl (0.2.2-1) unstable; urgency=low
 .
   * Initial release (Closes: #725220)
Checksums-Sha1: 
 81cd806b5a53c5b3ba830b1860747d6c080c5d5f 2015 jatl_0.2.2-1.dsc
 0ed1957d7ecccf054c3eaa2dbd1c346ae48202c3 31220 jatl_0.2.2.orig.tar.xz
 580dde95f3b1bf6bcc752a800dd8a28aad57d4c0 2790 jatl_0.2.2-1.debian.tar.gz
 cb28a14493348f04610469d3f05afe4f795f28d0 25316 libjatl-java_0.2.2-1_all.deb
Checksums-Sha256: 
 cd3aa690e20f2141b41a617f14b586841f0ab2d32b854994dd6c5816eaf4bd3a 2015 
jatl_0.2.2-1.dsc
 796073ba88ec182939becd2b033f79d47173b435d0fcc1d8edd125aa87d1eaa1 31220 
jatl_0.2.2.orig.tar.xz
 27a90a547130868b6dfd66c26d79490790e63a68096392874c4ffde71a138de0 2790 
jatl_0.2.2-1.debian.tar.gz
 21ba919de4984fdd5f208c0a7fcd18ec9d92f07e2f125133a027b0b16241f340 25316 
libjatl-java_0.2.2-1_all.deb
Files: 
 cb8e01026599b43c12830beebb07afc9 2015 java optional jatl_0.2.2-1.dsc
 1f9a5db062d42997d8e94b9f3572cb66 31220 java optional jatl_0.2.2.orig.tar.xz
 c747db0b82dc2a0d09daaab5e050373b 2790 java optional jatl_0.2.2-1.debian.tar.gz
 f9aa8690306046e683272f26f3bb9286 25316 java optional 
libjatl-java_0.2.2-1_all.deb

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

iQIcBAEBAgAGBQJSTkA7AAoJECHSBYmXSz6WDagP/3js8zev+7QIPabHrtoXxEeu
Jo2ejwq16Joh2g9OvXEGabmGcBRfSJEQPgeALt83AJSjKFFkupScPAEVicvLHaNQ
WKhbb5LIX+st+Kity4ArIg8/mMRBo9DWB1KqnJX8GXPan5dTQkQTgANe9ABFyK2U
A+tmwop/Irp6RIdCqjhYT2+lo74pAfKC57t8MOYbsxHmKNZL6QsQVe5OTbicbZXj
VUpmlKM3GvxJL5fbTphQ8JbFrBWbHPAu65nwDLQ1R3cYi/h0A8yQICBryTd8SvCw
aTIAv7hSfvhXatkDaCs/Abqbv+ZRNkg9Xqmoeo4OSz3q3zc0T6wC/O0rp5ZGzYfy
DJjCmZ3BVV8OJU8FfM5ov8IXZccBGnLX4A5ENFiz6pYlmiYVQEJCCHSJblxs/dh+
pPoD1pcB9QiuiN73/CjfrrNpqDOSNYl4Fc604fG5Lvh+Luy9c3xet173pOUMdUKy
nLU4IaVunuU5q6Ih7Le/1AKu+vtg1PJAvNz6tOlPqz9ORkKghDZo8rp2OHPeE5aK
7zYOn3a64smyJD76oFbT76SQbSq8a54LE5uIv8s0wg64xUT3LP9T8/T5GZs+9oO2
Y2BpWIVg9wIZRknTVtuGv7LbxRgueJ085KuGHry6Vr0OO0rALfwsnd2CYo52KPM4
8Hu9G8jp4slhADNvXUiu
=eC3i
-END PGP SIGNATURE End Message ---


Bug#725163: marked as done (RFP: kivy -- python library for rapid development of applications)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:09 +
with message-id 
and subject line Bug#725163: fixed in kivy 1.7.2-1
has caused the Debian Bug report #725163,
regarding RFP: kivy -- python library for rapid development of applications
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725163
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org

   Package name: kivy
Version: 1.7.2
Upstream Author: The kivy authors
URL: http://kivy.org
License: MIT
Description: Open source Python library for rapid development of
applications that make use of innovative user interfaces, such as
multi-touch apps.

With kivy you can implement Python applications which will run on
Windows, Mac, Linux, iOS and Android.


-- 
Bastian Venthur  http://venthur.de
Debian Developer venthur at debian org
--- End Message ---
--- Begin Message ---
Source: kivy
Source-Version: 1.7.2-1

We believe that the bug you reported is fixed in the latest version of
kivy, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastian Venthur  (supplier of updated kivy package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 02 Oct 2013 09:21:46 +0200
Source: kivy
Binary: python-kivy python-kivy-examples
Architecture: source amd64 all
Version: 1.7.2-1
Distribution: unstable
Urgency: low
Maintainer: Bastian Venthur 
Changed-By: Bastian Venthur 
Description: 
 python-kivy - Kivy - Multimedia / Multitouch framework in Python
 python-kivy-examples - Kivy - Example files
Closes: 725163
Changes: 
 kivy (1.7.2-1) unstable; urgency=low
 .
   * Initial release (Closes: #725163)
Checksums-Sha1: 
 62575d47e65920380720fc6b1846b9388d457900 1865 kivy_1.7.2-1.dsc
 5605e5aa4d391f3d7ae86145475c6013eaf254aa 44303652 kivy_1.7.2.orig.tar.xz
 65c69b01e5f8b7659f962aa884c720f669b34f48 3465 kivy_1.7.2-1.debian.tar.gz
 4a5208950a0e334caab2720157c5af944dceedff 1560806 python-kivy_1.7.2-1_amd64.deb
 0875b92a49738bb6b857bb2d268b6faf9abad6d5 7107514 
python-kivy-examples_1.7.2-1_all.deb
Checksums-Sha256: 
 6150f1075c0b338aa9d145509a71bb22d97c3bf05b89cd3bdda7dad8a2f93dab 1865 
kivy_1.7.2-1.dsc
 7b5b1150c6bfe6cf2c7751c10cba5bf510c67cebd8820460e226b2acbf2372a7 44303652 
kivy_1.7.2.orig.tar.xz
 69a889b128c47885b00629d32e9c2c596c2cffd685a9f50078a82fd663400619 3465 
kivy_1.7.2-1.debian.tar.gz
 13e99807e4992d8b835f39c684ce643053d47462070da32566b8b1fa5b6f7010 1560806 
python-kivy_1.7.2-1_amd64.deb
 84a59ec0dd39d8df4e94d0cc776eb58ec22a0b201d8e5d78f1223d3ef52df2ef 7107514 
python-kivy-examples_1.7.2-1_all.deb
Files: 
 eec5bf7d63f1d8a77f5f7f9d04ae8066 1865 python extra kivy_1.7.2-1.dsc
 50b84dad0595fc33f64dfab0f3d81042 44303652 python extra kivy_1.7.2.orig.tar.xz
 0008e3df5dc3a23d5d8a1817833dc92c 3465 python extra kivy_1.7.2-1.debian.tar.gz
 c9349b8aedd86454cfdeb9f72be5e189 1560806 python extra 
python-kivy_1.7.2-1_amd64.deb
 57b591481030118cb2b899dd7a4f5934 7107514 python extra 
python-kivy-examples_1.7.2-1_all.deb

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

iQIcBAEBAgAGBQJSTAeoAAoJEI6IlUTZhQAN5y4P/jtz0/lD6c9bDkpTr611uoQH
MS6YaggCNBPNttWWzwFcvm8uV89J3+RrOYhwhEpKGi1nYD5Ymw1eR6493dpE595f
8zPmjBRXDjCfJNnyPTfv/+hiVASEUKLxOWphZ8JQ2qWFIcqPMpDT/Z5/SDeomNiE
GmkHFt9uJv7WNPXlXXnqgHxrD2Fa97DZsOCYn+ockQlguSeiX9ABgQAKpeE74bi9
YkbLmevvJBoCruCMQeGvR1+QTqfkFfGW9hy0/tDRJkdYKZBjKepk7R5LC8Cm5FYc
t80vrRNlF0HToR9O5JnU0ThS5Ism3Ol+Bx+ma1vLJKQGB7RPTMqDtWxDldla9zzA
JyI2ZiRSqPkq9WBExv+4lgU7Hjt5bDIReeC4eNiqU1OkVpg9D108LH190XevySX0
jLb4rvh5TH+AbRSAseqLvDFpze7KWDbwo1nCBoJoSW3rwy8UaIzDWQg0VsTn+ytT
61N7N/SkQ42GYZHW7SDAEihCqLff9Gdhnag1Egz3ZoYaZYr21sOWQjsjTFWIZYKl
Ndezjy2bjnpf1f2SaEV8yWEOmlPPVGNIBqMRwWnQqdwNJr4i4tlGAFdGfD4TWzhi
FFMktwQuv4CTZJt0BQHpcPcFmZWasCl4wQHRzuB/GVfh5PpmzR+E6UEVG7zZVjcq
RYNLWB5pnpOAkUUCiNen
=/JSM
-END PGP SIGNATURE End Message ---


Bug#725179: marked as done (ITP: isrcsubmit -- extract ISRCs from audio CDs and submit them to MusicBrainz)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:08 +
with message-id 
and subject line Bug#725179: fixed in isrcsubmit 2.0.0~beta.4-1
has caused the Debian Bug report #725179,
regarding ITP: isrcsubmit -- extract ISRCs from audio CDs and submit them to 
MusicBrainz
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725179: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725179
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Sebastian Ramacher 

* Package name: isrcsubmit
  Version : 2.0.0-beta.4
  Upstream Author : Jonny Dewender
* URL : http://jonnyjd.github.io/musicbrainz-isrcsubmit/
* License : GPL-3+
  Programming Lang: Python
  Description : extract ISRCs from audio CDs and submit them to MusicBrainz

 isrcsubmit is a command line utility to extract International Standard
 Recording Codes (ISRC) from audio CDs. It allows one to submit the extracted
 data to MusicBrainz. ISRCs are used to uniquely identify sound and music video
 recordings.
 .
 A valid MusicBrainz account is required to submit ISRCs.
-- 
Sebastian Ramacher


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: isrcsubmit
Source-Version: 2.0.0~beta.4-1

We believe that the bug you reported is fixed in the latest version of
isrcsubmit, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated isrcsubmit 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 02 Oct 2013 16:03:55 +0200
Source: isrcsubmit
Binary: isrcsubmit
Architecture: source all
Version: 2.0.0~beta.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description: 
 isrcsubmit - extract ISRCs from audio CDs and submit them to MusicBrainz
Closes: 725179
Changes: 
 isrcsubmit (2.0.0~beta.4-1) experimental; urgency=low
 .
   * Initial release. (Closes: #725179)
Checksums-Sha1: 
 96fbf4e2c37930795a8d5919e4ac8fae98246469 2126 isrcsubmit_2.0.0~beta.4-1.dsc
 50224e86b026a3f440df6ae3a5397e57edd144e2 25056 
isrcsubmit_2.0.0~beta.4.orig.tar.gz
 4b4a79459df054794117f8955881c7f3714a0596 6736 
isrcsubmit_2.0.0~beta.4-1.debian.tar.gz
 2f2e6d1557a1a1542cfe816521526b63b87dbec5 13488 
isrcsubmit_2.0.0~beta.4-1_all.deb
Checksums-Sha256: 
 7e10991d08e8af223b875cb75889632ab54c453f334dc6ec01c3e141da1a76f2 2126 
isrcsubmit_2.0.0~beta.4-1.dsc
 19a2f9945b6006e52a0cabff78c620087cdf1ce6f3fa2a5b1b4ce3bcae294dfc 25056 
isrcsubmit_2.0.0~beta.4.orig.tar.gz
 805a9bd99509d96ce4b3358d9d395d76ecaea246ebabbd8f121d2484e8788f04 6736 
isrcsubmit_2.0.0~beta.4-1.debian.tar.gz
 e97951fdf6884dab7a0f2cd2c5f3b244bad2f2a24ea8c8fb94cb2fca782344a9 13488 
isrcsubmit_2.0.0~beta.4-1_all.deb
Files: 
 2a70443550388cfa8b646572c48bab29 2126 sound optional 
isrcsubmit_2.0.0~beta.4-1.dsc
 e22334c4cc2429b74c9253b8e4d3e90a 25056 sound optional 
isrcsubmit_2.0.0~beta.4.orig.tar.gz
 74f74ce456ca32dfdc58e61679b696b8 6736 sound optional 
isrcsubmit_2.0.0~beta.4-1.debian.tar.gz
 5e746ef56bf625ac9e1cab15142a66ad 13488 sound optional 
isrcsubmit_2.0.0~beta.4-1_all.deb

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

iQIcBAEBCAAGBQJSTCsPAAoJEGny/FFupxmTfoUP/3gDAOvyOVk8TPOXQzAFUPYp
ZAZFOaSg9pf04h8IBivQpy4KgEo9ZC3nnhDtW/LOt7J9iD3ud0Kq5dv7Njm/7gU9
p9orm6X8ztOxBH36OHUi7jgzXead9bPw31eHXRzM4yVqv9NoV88PypUoR4UjVgqj
8ZOtkiCKg8e0RvP1uHYiWUQqUTcXMIG491z+hXgWaW5aErk2uSukJHUSTNrlbOA6
dv9KFeFoMrmh3Oz0ybNTa/JpiPKdt9zGISYr9Hgnd3qrNRuek/yUgwvaYNP5tlvD
/8esvit/fYcpd2t4/JYr0zH9kd+9VErAtTefd3cXl8lAlxYw6+DsoTxm+LKszvuA
DpoGDAaAQu5J3RGMWSCBi/JRtptpDXPKpE15B0g12HRXwcT+2lfSlppmr9NzI5ed
AVOZGv8u530Ej8Uovf3ySgLTeZNeeCdBe4WsR08bFi/p+Kwd8JUyKrTQ5aN8uiNq
DlbJ/8lGQ0igqMW7A8Yp+kFicJdcSdFUKTx7Cj57rUxdNQTKjn5qKCYYeTb1gl7J
LcYTccTTq3+7nKZUwUs7qCM7+e0P5uYmAMDZRLUMiCmfegeBlmPXPNz7xBHFC00C
z0uQX1Ijntc78mhgPV0nCljfxYaUdC0JmXrHYOi/Q6rwvrPZJkchYAlZtB3vr0uZ
hW3ltr6DlUredi5Aqy9z
=eutz
-END PGP SIGNATURE End Message ---


Bug#725369: marked as done (ITP: eclipselink-jpa-2.1-spec -- JPA Spec 2.1 OSGi Bundle)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:07 +
with message-id 
and subject line Bug#725369: fixed in eclipselink-jpa-2.1-spec 
2.1.0.v201304241213-1
has caused the Debian Bug report #725369,
regarding ITP: eclipselink-jpa-2.1-spec -- JPA Spec 2.1 OSGi Bundle
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725369: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725369
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Andrew Ross 

* Package name: javax.persistence
  Version : 2.1.0.v201304241213
  Upstream Author : Sun Microsystems, Oracle Corporation
* URL : http://www.eclipse.org/eclipselink
* License : Eclipse Public License v1.0 and Eclipse Distribution 
License v.1.0
  Programming Lang: Java
  Description : JPA Spec 2.1 OSGi Bundle

 The Java Persistence API, sometimes referred to as JPA, is a Java
 programming language specification which describes the management of
 relational data in applications using Java Platform, Standard Edition
 and Java Platform, Enterprise Edition. Version 2.1 of the API is
 defined in JSR-338, and this package contains the API of that
 specification.
--- End Message ---
--- Begin Message ---
Source: eclipselink-jpa-2.1-spec
Source-Version: 2.1.0.v201304241213-1

We believe that the bug you reported is fixed in the latest version of
eclipselink-jpa-2.1-spec, which is due to be installed in the Debian FTP 
archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andrew Ross  (supplier of updated 
eclipselink-jpa-2.1-spec package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 04 Oct 2013 19:43:21 +0100
Source: eclipselink-jpa-2.1-spec
Binary: libjpa-2.1-spec-java
Architecture: source all
Version: 2.1.0.v201304241213-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 

Changed-By: Andrew Ross 
Description: 
 libjpa-2.1-spec-java - JPA Spec 2.1 OSGi Bundle
Closes: 725369
Changes: 
 eclipselink-jpa-2.1-spec (2.1.0.v201304241213-1) unstable; urgency=low
 .
   * Initial release. (Closes: #725369)
Checksums-Sha1: 
 ddc2d3dca5addf43da46882e2cc2a2c280b6c58f 2278 
eclipselink-jpa-2.1-spec_2.1.0.v201304241213-1.dsc
 5cd8c897b81d1dc3baf714dde0609e7d5a847240 139059 
eclipselink-jpa-2.1-spec_2.1.0.v201304241213.orig.tar.gz
 27d35057b6621b0f7302b5d30cbb09c5a5dc9667 7655 
eclipselink-jpa-2.1-spec_2.1.0.v201304241213-1.debian.tar.gz
 0dbe2ddff933bd7beb2d69d8230b69a871989d6c 138858 
libjpa-2.1-spec-java_2.1.0.v201304241213-1_all.deb
Checksums-Sha256: 
 bba9d5a07d9583b5576ec67a09ed1515335e7155b0c84803a67d162db1cd1011 2278 
eclipselink-jpa-2.1-spec_2.1.0.v201304241213-1.dsc
 2df71fda57720daa23003b1d8750f6ee5c1e33b165d79a14abfdecb484dc21f4 139059 
eclipselink-jpa-2.1-spec_2.1.0.v201304241213.orig.tar.gz
 c28808bc25d4965398594064536bfb1dc5cf76f770ab0b526572dac20eb5a66d 7655 
eclipselink-jpa-2.1-spec_2.1.0.v201304241213-1.debian.tar.gz
 517e42dfc34beba67a6e6c0c94074ca2e807d7f62ce78517deca4d91f70e20d1 138858 
libjpa-2.1-spec-java_2.1.0.v201304241213-1_all.deb
Files: 
 a51e3e56cb068890b0035d29e9dbc217 2278 java optional 
eclipselink-jpa-2.1-spec_2.1.0.v201304241213-1.dsc
 83545abb84957a40afc102ef68e42e72 139059 java optional 
eclipselink-jpa-2.1-spec_2.1.0.v201304241213.orig.tar.gz
 bf3a2bbcfd6d857a00f3d3c70e93ca8a 7655 java optional 
eclipselink-jpa-2.1-spec_2.1.0.v201304241213-1.debian.tar.gz
 e55458a15c68cbc3f65ceb630860220e 138858 java optional 
libjpa-2.1-spec-java_2.1.0.v201304241213-1_all.deb

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

iQIcBAEBAgAGBQJSUDb4AAoJECHSBYmXSz6W1SIQAMArfuHslwfLElHki6QXIzjh
G9/vF5CzRzYvVfBEVYvT7CmkedVWaiXUu2kriX+Fz4eoLkrAb2tNxe9qjT7izdlj
aNA5WE0Q9Fz/uzMheJNdLKJYdeJEHIjDZ5hnNYbuRXT6mijyLRSMTItNIedsuehd
8kEp5fob+1gc1kXkWwxYaTieHOH7a1JaFFz9cn21gPCgGXl/+xhAcfq4a80aq+sM
rsC+tMcEf1HMbg/YnNQAhCVs1ZW1ScGgtjliH7azr/2cCW8WWYs25jJ0KpvUp3IG
cryZ7SKnxoEuNBMtVqXLLqR6gega5iVL20zxfmLJCPm3HwrCmS6wTi2Tbi+5eK9q
lN0qW2QDEc1KVZybXp+13EeI2Act3GBUb+Rl8IpyirKLqxjhLRIpLfw7Ai2p9vuB
aEsJiXrlHK8tOqEBBEWyx+KbvrtuHcsXfLPaRty8hwummXZ5GOlHjEUOXoFODPXb
ffyakhIZeqNjTTJ

Bug#725204: marked as done (ITP: libpath-finddev-perl -- Perl module to find a development path somewhere in an upper hierarchy)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:11 +
with message-id 
and subject line Bug#725204: fixed in libpath-finddev-perl 0.4.0-1
has caused the Debian Bug report #725204,
regarding ITP: libpath-finddev-perl -- Perl module to find a development path 
somewhere in an upper hierarchy
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725204: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725204
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Florian Schlichting 

* Package name: libpath-finddev-perl
  Version : 0.4.0
  Upstream Author : Kent Fredric 
* URL : https://metacpan.org/release/Path-FindDev
* License : GPL-1+, Artistic
  Programming Lang: Perl
  Description : Perl module to find a development source tree somewhere in 
an upper hierarchy

Path::FindDev provides an easy and platform-independent way to find the
root of a development source tree in some parent directory, irrespective
of which test you put it in, and regardless of what $CWD happens to be
when you call it.  Path::FindDev is mostly a glue layer around
Path::IsDev with a few directory walking tricks.
--- End Message ---
--- Begin Message ---
Source: libpath-finddev-perl
Source-Version: 0.4.0-1

We believe that the bug you reported is fixed in the latest version of
libpath-finddev-perl, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Florian Schlichting  (supplier of updated libpath-finddev-perl 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 02 Oct 2013 21:51:41 +0200
Source: libpath-finddev-perl
Binary: libpath-finddev-perl
Architecture: source all
Version: 0.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: Florian Schlichting 
Description: 
 libpath-finddev-perl - Perl module to find a development source tree somewhere 
in an upp
Closes: 725204
Changes: 
 libpath-finddev-perl (0.4.0-1) unstable; urgency=low
 .
   * Initial Release. (Closes: #725204)
Checksums-Sha1: 
 bf4bf349cb64131c15d213344966250b730b2535 2238 libpath-finddev-perl_0.4.0-1.dsc
 70268bd8731ac87669a1ce0de887fdd0e0c9c8ff 31875 
libpath-finddev-perl_0.4.0.orig.tar.gz
 e5c337e08913f1f18ad246c39d22c6feb51cd1ef 1543 
libpath-finddev-perl_0.4.0-1.debian.tar.gz
 a06f984c1e30c37f93eadb8df831651aeb34404d 13026 
libpath-finddev-perl_0.4.0-1_all.deb
Checksums-Sha256: 
 208add06a41011f114fb3c223ad703b3cd71ed569556367228a6b9137788e4d8 2238 
libpath-finddev-perl_0.4.0-1.dsc
 b4937160a3263bcda1cfd14816d18bfe5a13f57772594ad1597434fc01a3674e 31875 
libpath-finddev-perl_0.4.0.orig.tar.gz
 d8deeac9bb065931df57dec66b0b802cb49367616e884193dab20ebb32afc792 1543 
libpath-finddev-perl_0.4.0-1.debian.tar.gz
 1ea93588b7c99713703763afdce045ce43e037846f9561f9b60bb975d0fe5f83 13026 
libpath-finddev-perl_0.4.0-1_all.deb
Files: 
 d02b63860528124e876eaa179957a8c7 2238 perl optional 
libpath-finddev-perl_0.4.0-1.dsc
 afc2b1f00e133a7a630e7f424fe9866a 31875 perl optional 
libpath-finddev-perl_0.4.0.orig.tar.gz
 86e91f8466c635257123ba3a28cb653d 1543 perl optional 
libpath-finddev-perl_0.4.0-1.debian.tar.gz
 e6dbf283d776560e6257a8562f66a78a 13026 perl optional 
libpath-finddev-perl_0.4.0-1_all.deb

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

iQIcBAEBCAAGBQJSTJGVAAoJEBKXO25y3Ae1/AAP/3yRAgcMZ6XFPu19AWZiZCaF
pHZQTrC6LVlHf2PyDSLGGnDkyqyAXo+Drav+mid2BqcTTAlc3EjCtF8CijG57kUL
0ZCE5JvRRa7s3vN/ENF7sSWScuF419ycz/CD+HgD3fix1CZYYoEum/+AyeVO0OHT
LgEV7lH3nPp3t6Mka51tvihf8onQwU9+pQLBVXkuIuCldQGbPspbYEv/r71WOnxW
uF1qNI93Qpuu+l8ZVrY3xO0ZVNFk6pWvg2PpP8/mU7nwoG9HA6JaMMSJka3tHiAR
a103HTfVhAk/yBAoXEeRCNY2Dx3qFVpXoH4PkQ5uUjTbKQFH9wJzeUL1TEscbqgq
M/0g18mnM6FszNluEelmQ7cHXumUjgWTISkRMB8I3nnyYV5lOQoD4lncW26/sWMl
rJarFGHQ5hneepIbLVWgvkFkvBzKqJnhcSgf1i47kJkl90jCTW2VVAnnLXM6LTED
9VzW4MAAWyL+R8geYK3OUFZouC6jnm9ho4qQ/DvR7XYPzFzphtFonvivojGTc3Ze
fAOkeoKrLMu9ygWEg50j5tcV4qw+xJZSRD7HkE/WMuPNFYnFtJJxT9ao/17M4h7D
CFMCaMtbXtzuCf5nK56g7+8yyItBdGjKNqawLBZexYCMAqYUbEOnQFXEPVhGKKXo
U4W8VbClOmmccOjGsrjg
=V4rc
-END PGP SIGNATURE 

Bug#725317: marked as done (ITP: python-colander -- simple schema-based serialization and deserialization)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:16 +
with message-id 
and subject line Bug#725317: fixed in python-colander 1.0b1-1
has caused the Debian Bug report #725317,
regarding ITP: python-colander -- simple schema-based serialization and 
deserialization
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725317: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725317
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: python-colander
  Version : 1.0b1
  Upstream Author : Chris McDonough 
* URL : http://github.com/Pylons/colander
* License : BSD-Style
  Programming Lang: Python
  Description : simple schema-based serialization and deserialization

 Colander is an extensible package which can be used to deserialize and
 validate a data structure composed of strings, mappings, and lists, and to
 serialize an arbitrary data structure to a data structure composed of strings,
 mappings, and lists.
--- End Message ---
--- Begin Message ---
Source: python-colander
Source-Version: 1.0b1-1

We believe that the bug you reported is fixed in the latest version of
python-colander, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Thomas Goirand  (supplier of updated python-colander package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Oct 2013 15:45:17 +0800
Source: python-colander
Binary: python-colander python3-colander
Architecture: source all
Version: 1.0b1-1
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack 
Changed-By: Thomas Goirand 
Description: 
 python-colander - simple schema-based serialization and deserialization - 
Python 2.
 python3-colander - simple schema-based serialization and deserialization - 
Python 3.
Closes: 725317
Changes: 
 python-colander (1.0b1-1) unstable; urgency=low
 .
   * Initial release. (Closes: #725317)
Checksums-Sha1: 
 b0d791d1fb8acde67cf842e44a4c1cd1329a5855 1610 python-colander_1.0b1-1.dsc
 4c3454b97ffeed46906608b893ff08e7649ec953 75268 
python-colander_1.0b1.orig.tar.xz
 63882864db14866e1a24fa4e00ca23dc01d76a7c 2558 
python-colander_1.0b1-1.debian.tar.gz
 d9ba683f20dbe2e1104f08ada3056f164bd64fad 52130 python-colander_1.0b1-1_all.deb
 bb34325456052dc85c839b914dad1bf53247b6ad 51724 python3-colander_1.0b1-1_all.deb
Checksums-Sha256: 
 b78c981d9e57acf6616b2b63f4f6b75c32d18d539ed0a0c3b0caff646c053662 1610 
python-colander_1.0b1-1.dsc
 9d0826eb4e3c883337231e89ce7587575adb12082b2dc355944e9da8ea7fbd94 75268 
python-colander_1.0b1.orig.tar.xz
 bbd0c81e491b4b44a1b5f8595dae8a1b58547ee8061dfec6e7032b11e69dcdf0 2558 
python-colander_1.0b1-1.debian.tar.gz
 534f29acff37fa4e1bd8b8f8d09c6585503ffbe4f2905fb3fef6606ba4850475 52130 
python-colander_1.0b1-1_all.deb
 2c904e363503dbe0a59fb4f47bbe2e841532e34466bcbcb913d2373798b0dc8d 51724 
python3-colander_1.0b1-1_all.deb
Files: 
 b4a96a4c7e8cbd09a4c335c73db7705b 1610 python optional 
python-colander_1.0b1-1.dsc
 8d0cad7cdb9b8a7c1dedb99c057d0af1 75268 python optional 
python-colander_1.0b1.orig.tar.xz
 a170806ed356dc431318a2a362bb6060 2558 python optional 
python-colander_1.0b1-1.debian.tar.gz
 34b2a63a44dcd71c907d764eae931bd1 52130 python optional 
python-colander_1.0b1-1_all.deb
 984a8793dd11ac8b3838d691a75e2ce4 51724 python optional 
python3-colander_1.0b1-1_all.deb

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

iEYEARECAAYFAlJO2QwACgkQl4M9yZjvmkl8HQCfX6ol/OLxy9uawfwiIbcbMiQ9
6Z8AoK94wMn5a729jkaj4umYQ48tmbYc
=1NP4
-END PGP SIGNATURE End Message ---


Bug#725135: marked as done (ITP: libfile-sharedir-projectdistdir-perl -- simple set-and-forget use of a share directory in the project root)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:11 +
with message-id 
and subject line Bug#725135: fixed in libfile-sharedir-projectdistdir-perl 
0.5.2-1
has caused the Debian Bug report #725135,
regarding ITP: libfile-sharedir-projectdistdir-perl -- simple set-and-forget 
use of a share directory in the project root
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725135: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725135
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Florian Schlichting 

* Package name: libfile-sharedir-projectdistdir-perl
  Version : 0.5.2
  Upstream Author : Kent Fredric 
* URL : https://metacpan.org/release/File-ShareDir-ProjectDistDir
* License : GPL-1+, Artistic
  Programming Lang: Perl
  Description : simple set-and-forget use of a share directory in the 
project root

File::ShareDir::ProjectDistDir provides a simple way to make use of a
'share' directory. During development, the directory will be
$projectroot/share, but once installed, it will be wherever
File::Sharedir thinks it is. Use of a directory name other than 'share'
is also possible.
--- End Message ---
--- Begin Message ---
Source: libfile-sharedir-projectdistdir-perl
Source-Version: 0.5.2-1

We believe that the bug you reported is fixed in the latest version of
libfile-sharedir-projectdistdir-perl, which is due to be installed in the 
Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Florian Schlichting  (supplier of updated 
libfile-sharedir-projectdistdir-perl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 02 Oct 2013 00:31:03 +0200
Source: libfile-sharedir-projectdistdir-perl
Binary: libfile-sharedir-projectdistdir-perl
Architecture: source all
Version: 0.5.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: Florian Schlichting 
Description: 
 libfile-sharedir-projectdistdir-perl - simple set-and-forget use of a share 
directory in the project roo
Closes: 725135
Changes: 
 libfile-sharedir-projectdistdir-perl (0.5.2-1) unstable; urgency=low
 .
   * Initial Release. (Closes: #725135)
Checksums-Sha1: 
 be43e1162270ef73ee60b9cec8d70d73138baa69 2464 
libfile-sharedir-projectdistdir-perl_0.5.2-1.dsc
 11182cc8bd1b5e83285eeaeab7ea36ea416d0a76 28428 
libfile-sharedir-projectdistdir-perl_0.5.2.orig.tar.gz
 cf34cf75a10838904f4edc283dde73395c02f1ed 1518 
libfile-sharedir-projectdistdir-perl_0.5.2-1.debian.tar.gz
 64c8b228431868ed3935af48ad9d8440969bd4a7 14696 
libfile-sharedir-projectdistdir-perl_0.5.2-1_all.deb
Checksums-Sha256: 
 aa97e45037369b356383c7d2aea5467af4bb4c0fdf3d164a8d36badee8bd9937 2464 
libfile-sharedir-projectdistdir-perl_0.5.2-1.dsc
 7afa4b47fd74f188c0b5c5e29756dd621be5c56a65a531d2fec726ab7047dc58 28428 
libfile-sharedir-projectdistdir-perl_0.5.2.orig.tar.gz
 2afad4e91ef74809c877ff567825a59d2ee7eda45bbc8223e6eb891c1898ef95 1518 
libfile-sharedir-projectdistdir-perl_0.5.2-1.debian.tar.gz
 9fb8669709844f3d85b11c71606bfa340d66b0f99f8f3371eedf8a9a684dc007 14696 
libfile-sharedir-projectdistdir-perl_0.5.2-1_all.deb
Files: 
 2dc3e7480f01f109fbda6bf69e06b8ff 2464 perl optional 
libfile-sharedir-projectdistdir-perl_0.5.2-1.dsc
 a20a0c8b8116fa4e0033e23a95c7b272 28428 perl optional 
libfile-sharedir-projectdistdir-perl_0.5.2.orig.tar.gz
 856332f2f19061b3f57f657c659dcaa9 1518 perl optional 
libfile-sharedir-projectdistdir-perl_0.5.2-1.debian.tar.gz
 1f185984df57fa532be33c5a537bc864 14696 perl optional 
libfile-sharedir-projectdistdir-perl_0.5.2-1_all.deb

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

iQIcBAEBCAAGBQJSTJQLAAoJEBKXO25y3Ae1FikP/jFlP6FEltPqZFG8FryFzjh1
zcOZJx0YVE71A/9DbKIfIQHPsxE3rgePYVNXZ2vzmcUeV6vC/oOlmCSw3HV6lahj
Ox0oD1nWDPg1WwLi9TcrRlVpufDkUmdc1tm6qZR6ANvUeIhA0KMYIG8sf8FD8tD4
ixwBCDcddzHXMNU8ESHKcCrFbnfxP1EclqFoUZ4ugL1jVU9mu8Xt5TKUCa70CAW0
A2wz0ClRBj+aVtkGXlrRY/wim0HnALVBGryHpzXwcApWgkVod/+t9kAH1xCedPYv
0xo+u+0lxVsvi4WXJ3bC1WB3FbzUktJweVJLJuRJmIa6K32d8RGdsVc1Pqk9WixL
u+3kuT+hQhMGrvdPX/r/kZw5J2cdE2Fnc5hwk/wl+b8cZEWuzmCt75daeRNiSMxv
aJQ0qMHoF

Bug#725430: marked as done (ITP: libxml-catalog-perl -- Perl module for resolving public and remapping system identifiers)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:12 +
with message-id 
and subject line Bug#725430: fixed in libxml-catalog-perl 1.0.0-1
has caused the Debian Bug report #725430,
regarding ITP: libxml-catalog-perl -- Perl module for resolving public and 
remapping system identifiers
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725430: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725430
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Florian Schlichting 

* Package name: libxml-catalog-perl
  Version : 1.0.0
  Upstream Author : Jeff Fearn jfe...@cpan.org
* URL : https://metacpan.org/release/XML-Catalog
* License : GPL-1+
  Programming Lang: Perl
  Description : Perl module for resolving public and remapping system 
identifiers

XML::Catalog implements draft 0.4 of John Cowan's XML Catalog (formerly
known as XCatalog) proposal Catalogs may be written in either SOCAT or
XML syntax; XML::Catalog will assume SOCAT syntax if the catalog is not
in well-formed XML syntax.
.
This module, as of 1.0.0, also supports Oasis XML catalogs.

libxml-catalog-perl used to be part of Debian until 2009, when it was
removed because it hadn't seen upstream releases in almost a decade, and
the draft spec it implemented had long been superseded (#519943). As of
version 1.0.0, it now supports the adopted "Oasis XML catalogs" spec,
and since it is a new dependency of libxml-treebuilder-perl, I have
decided to reintroduce it to Debian, this time under the umbrella of the
Debian Perl Team instead of the Debian XML/SGML Group, where it used to
be maintained by Ardo van Rangelrooij.
--- End Message ---
--- Begin Message ---
Source: libxml-catalog-perl
Source-Version: 1.0.0-1

We believe that the bug you reported is fixed in the latest version of
libxml-catalog-perl, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Florian Schlichting  (supplier of updated libxml-catalog-perl 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 05 Oct 2013 21:27:49 +0200
Source: libxml-catalog-perl
Binary: libxml-catalog-perl
Architecture: source all
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: Florian Schlichting 
Description: 
 libxml-catalog-perl - Perl module for resolving public and remapping system 
identifiers
Closes: 725430
Changes: 
 libxml-catalog-perl (1.0.0-1) unstable; urgency=low
 .
   * Initial Release. (Closes: #725430)
Checksums-Sha1: 
 eebb23a46f1faa0d228eb81f76229a207b7691dd 2125 libxml-catalog-perl_1.0.0-1.dsc
 8e034d194e9f850d90b731c0fcbec6618cc971f3 11351 
libxml-catalog-perl_1.0.0.orig.tar.gz
 6f78a4a95bfa3fe656b818dd613a470a21a9fb0e 1501 
libxml-catalog-perl_1.0.0-1.debian.tar.gz
 c79b12e189e87f5025955b65b7c1dde2ad332742 9118 
libxml-catalog-perl_1.0.0-1_all.deb
Checksums-Sha256: 
 fb0bd954d3ede99bdd1add38a4d08c27dda28bf061fb529844735d78101badd2 2125 
libxml-catalog-perl_1.0.0-1.dsc
 31f43f983453e0b4cddb2eb88207b2e4ae8b70194472bf09b2e5145b0c06 11351 
libxml-catalog-perl_1.0.0.orig.tar.gz
 26106040e53f3ff2e0e0f32361df073e7e237d4ffde359a470c1549eee1c5a0c 1501 
libxml-catalog-perl_1.0.0-1.debian.tar.gz
 9dc2c9053b786dcc8f81930ab0a4b9a060655e0237fad0e25d95007c721d1ca3 9118 
libxml-catalog-perl_1.0.0-1_all.deb
Files: 
 9f503d9b882c1198596c51c4019a82b6 2125 perl optional 
libxml-catalog-perl_1.0.0-1.dsc
 8f36caf66a7f977804efa325cb09cbac 11351 perl optional 
libxml-catalog-perl_1.0.0.orig.tar.gz
 1aa940671e85d2e446fb8388fb1adaab 1501 perl optional 
libxml-catalog-perl_1.0.0-1.debian.tar.gz
 ffdc9a9b0ae54ef644ede379adb6c02e 9118 perl optional 
libxml-catalog-perl_1.0.0-1_all.deb

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

iQIcBAEBCAAGBQJSUGhyAAoJEBKXO25y3Ae1E+8P/iSah3tRmhxJJOAXyfvkjmTd
48is+T7gky7jnvPknVbmPM0ktGjrdQLFJwW69SsRtVVnm4XCyJjm+vpaT+U/6pK5
WwCj+GWBS9eYcX5/YSTHB39RlfitN1WLAxsLa+F0nmtNPKw2LeOZrRkrmtNawa7+
g5e2iPomvZJ+GbRmPp4dz61RAf1Whla1cC6uHzLm2OgT5Awy7BoUthlw5uMDu2vs
twPOczjD5Azm0WHqCO1SsLhvS5YZzcelJ6wiFXF

Bug#725277: marked as done (ITP: r-cran-mfilter -- GNU R package providing miscellaneous time series filters)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:16 +
with message-id 
and subject line Bug#725277: fixed in r-cran-mfilter 0.1.3-1
has caused the Debian Bug report #725277,
regarding ITP: r-cran-mfilter -- GNU R package providing miscellaneous time 
series filters
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725277: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725277
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: "Sébastien Villemot" 

* Package name: r-cran-mfilter
  Version : 0.1.3
  Upstream Author : Mehmet Balcilar 
* URL : http://cran.r-project.org/web/packages/mFilter/
* License : GPL-2+
  Programming Lang: R
  Description : GNU R package providing miscellaneous time series filters

The package implements several time series filters useful for smoothing and
extracting trend and cyclical components of a time series. The routines are
commonly used in economics and finance, however they should also be interest to
other areas. Currently, Christiano-Fitzgerald, Baxter-King, Hodrick-Prescott,
Butterworth, and trigonometric regression filters are included in the package.

The package will be maintained within the Debian Science Team.

-- 
 .''`.Sébastien Villemot
: :' :Debian Developer
`. `' http://www.dynare.org/sebastien
  `-  GPG Key: 4096R/381A7594


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: r-cran-mfilter
Source-Version: 0.1.3-1

We believe that the bug you reported is fixed in the latest version of
r-cran-mfilter, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sébastien Villemot  (supplier of updated r-cran-mfilter 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 04 Oct 2013 18:12:42 +0200
Source: r-cran-mfilter
Binary: r-cran-mfilter
Architecture: source all
Version: 0.1.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 

Changed-By: Sébastien Villemot 
Description: 
 r-cran-mfilter - GNU R package providing miscellaneous time series filters
Closes: 725277
Changes: 
 r-cran-mfilter (0.1.3-1) unstable; urgency=low
 .
   * Initial release. (Closes: #725277)
Checksums-Sha1: 
 e7698064b370e2d534df69845262e94fbeafab9a 2059 r-cran-mfilter_0.1.3-1.dsc
 2f58f34412a00f97af5ca36cbed1b7fd503ca571 16129 r-cran-mfilter_0.1.3.orig.tar.gz
 2b966f9f32c85cd007345e058d9d843af9a83612 1701 
r-cran-mfilter_0.1.3-1.debian.tar.gz
 39078247655a91e6de84ac61642278210ce936a9 80574 r-cran-mfilter_0.1.3-1_all.deb
Checksums-Sha256: 
 8c93fdc20c2f5a183b7cb5e06da18b1c604c21cad85aafcc1ee48e95589fd3f8 2059 
r-cran-mfilter_0.1.3-1.dsc
 060a064ff19c70aa8812b57f0a88c60d3b25190d3bb243b03e3ec643086ae9b3 16129 
r-cran-mfilter_0.1.3.orig.tar.gz
 8a128a3924cb7392dea188e6cd60f7c042c7ec50d81cf751e799ac71ce3f043d 1701 
r-cran-mfilter_0.1.3-1.debian.tar.gz
 4d5b88088bca96a90031d013ddc39c1af9cf35c434c88a6fe7c9bdb8aa271576 80574 
r-cran-mfilter_0.1.3-1_all.deb
Files: 
 5ede52647b3ae915251a8d3188bf9cfc 2059 gnu-r optional r-cran-mfilter_0.1.3-1.dsc
 5d9643d898476a6acc8d3cb20e50d775 16129 gnu-r optional 
r-cran-mfilter_0.1.3.orig.tar.gz
 bffad7cf811f62e7bbb5a7c6330c8067 1701 gnu-r optional 
r-cran-mfilter_0.1.3-1.debian.tar.gz
 bffda08ba0b9d6f58900b1bb63740e5a 80574 gnu-r optional 
r-cran-mfilter_0.1.3-1_all.deb

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

iQIcBAEBCAAGBQJSTuvhAAoJECzs6TUOzr5K1ZMP/RoL6NF0Nbz/VViuDVgnzQ1X
2TacMOrvMK7LScx7fNsaAhihB8U2r58CKA/kq33zGPlURKdRPNS/rHxZ/SQ/nfUd
6wFhc+3RHUjlnrb0sytto5pTulvR5nf5bXbpD0YEz+csj/hgZyqxI/G7kRGbPrGW
KM3/vYACRF9kSeO83IOV+n019chqEkz+lGcMJNl2dur91nD7E8UDn5BtvaXty1d8
siynfD4M1YGXZBMJOfhJpK1KGX2E6vDBiLf+rSc5A/6KkenNw9B8o+JkLrl8NZFu
zMN7QhKwXNgyfRG2r919p9cJ6vR2Xy2jhwoo6sD5pYtRfQwJWcIIAbhCoLVIjd1h
1oG4ew0gUN0QlNgiL07JvF3+/IgKfHfmxBRCE5e1ruzVasyxbl1zwVo1Bopf5Z3/
O3mitMqFe5Hvuxil04VivULjnkcXWlCWvL8abcGVR7EM4qEBogmqbzoTsmEmFi0E
+lGE3sWSA39JmQZ02TidRhWqX+GC3Y7gHT9/xAxMReDYe1pyqLW0heXXPNG0/078
9RhSPMJUY5xcfp8RcBl93IfUdRoU3LmhVjOR3iFVIVbzZyDcHoclLU9

Bug#725205: marked as done (ITP: libpath-isdev-perl -- Perl module to determine if a given Path resembles a development source tree)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:12 +
with message-id 
and subject line Bug#725205: fixed in libpath-isdev-perl 0.4.0-1
has caused the Debian Bug report #725205,
regarding ITP: libpath-isdev-perl -- Perl module to determine if a given Path 
resembles a development source tree
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725205: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725205
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Florian Schlichting 

* Package name: libpath-isdev-perl
  Version : 0.4.0
  Upstream Author : Kent Fredric 
* URL : https://metacpan.org/release/Path-IsDev
* License : GPL-1+, Artistic
  Programming Lang: Perl
  Description : Perl module to determine if a given Path resembles a 
development source tree

Path::IsDev is more or less a bunch of heuristics for determining if a
given path is a development tree root of some kind.  This has many
useful applications, notably ones that require behaviours for
"installed" modules to be different to those that are still "in
development"
--- End Message ---
--- Begin Message ---
Source: libpath-isdev-perl
Source-Version: 0.4.0-1

We believe that the bug you reported is fixed in the latest version of
libpath-isdev-perl, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Florian Schlichting  (supplier of updated libpath-isdev-perl 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 02 Oct 2013 21:25:22 +0200
Source: libpath-isdev-perl
Binary: libpath-isdev-perl
Architecture: source all
Version: 0.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: Florian Schlichting 
Description: 
 libpath-isdev-perl - Perl module to determine if a given Path resembles a 
development
Closes: 725205
Changes: 
 libpath-isdev-perl (0.4.0-1) unstable; urgency=low
 .
   * Initial Release. (Closes: #725205)
Checksums-Sha1: 
 e437f632db1a6c96997958a2ff6fff0f928e1d2e 2241 libpath-isdev-perl_0.4.0-1.dsc
 e08a94645a3bbf7252de08630ccaf3c8e2a57093 101535 
libpath-isdev-perl_0.4.0.orig.tar.gz
 139ba41a668d006b7481ef3c950cd1abf37f06e1 1515 
libpath-isdev-perl_0.4.0-1.debian.tar.gz
 19f474da397bf1c427f35554ad9eaedcfe0daa22 52378 
libpath-isdev-perl_0.4.0-1_all.deb
Checksums-Sha256: 
 55fa66e13937c8814f5cdd1c6d4e8d1fdee2d1a7c8c0764646a494dc40f57072 2241 
libpath-isdev-perl_0.4.0-1.dsc
 31186359da9868ff8967744723c29546fbd3c96e986e9d293ea36810e3f87191 101535 
libpath-isdev-perl_0.4.0.orig.tar.gz
 c758f7ee814c187b1f4a66a5a3c48ed0faeadfe8d7524779b4f72913afb4eb20 1515 
libpath-isdev-perl_0.4.0-1.debian.tar.gz
 0cbddea82a318e51116c86fce7c33cd09d4b1ba808004f46aad3d61876c98ab3 52378 
libpath-isdev-perl_0.4.0-1_all.deb
Files: 
 6ca3e1cec7dd3043fe89dc5ef328aa43 2241 perl optional 
libpath-isdev-perl_0.4.0-1.dsc
 263b13e90e34222cc8bcc0cb7b568762 101535 perl optional 
libpath-isdev-perl_0.4.0.orig.tar.gz
 b1e1bb7ca87ad0b7cf7a44b6bd1690b7 1515 perl optional 
libpath-isdev-perl_0.4.0-1.debian.tar.gz
 e3f981c64d9911120b1dc0d830a99776 52378 perl optional 
libpath-isdev-perl_0.4.0-1_all.deb

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

iQIcBAEBCAAGBQJSTHPPAAoJEBKXO25y3Ae1kPsP/2qxDiBcKYxXttgLass3FDZz
IUSms7G/81xmAh2GcUN/zWUPHX2J8CX5xRadjVAxbx90MDsKIHxYX5sTPDYIqs0p
nyjRflbeN/GNU0OybLHISzMouR+q7NYrvoocVZo49TI44z3NB4pCc3j0/N2AcKsu
ZED7AbuRnI53YYhnJ1z23E9oYrXj/eUtquOKhxeM56u/XJ9wHIyRVl9IY4bd/CM7
9iqRYd94EZOy3Y59OzTSCw2Vc1jlRJyHaeNB8kPosDnqJw7lUAbT3QYSf2dZa0iT
SegxdY9SoiBQS2loHUjR/CErUjQ0AQnltQklqfLium93uxi2jy+60sVv9yur3zfS
ZgL1Z3qo3jLAgESKC0J2CGXBdGW2MjnamJGpJwDvRSCELuuICEYLAYiaE9ncuphE
DPbGw4IZKeq+k4WgGRZyU3ib7SB3U5vFXRnCQoyeCDYJYIOA5wT0jFHhQ2+qRfbB
WRe0Tdjvu3JPWBFfIljKk696UweU/NlJZ9skOOErKgBJl+3haF0PC6ks1HXtBzvT
jNUmNdae8R5A/GTtVz0MKidBjXJDmrdlG8WkE0WoxsSy88oap1s5ohNEeikCJ4vM
a5Me1CX8e7W7CmccqIb9KKUT4SEtGeXaZsyjTGx0Qf4XWdX5Zw1UWV8sZKeHB00I
UXX6/7Wgl72es9T61nR3
=u5Af
-END PGP SIGNATURE End Message ---


Bug#725128: marked as done (ITP: rate4site -- detector of conserved amino-acid sites)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:17 +
with message-id 
and subject line Bug#725128: fixed in rate4site 3.0.0-1
has caused the Debian Bug report #725128,
regarding ITP: rate4site -- detector of conserved amino-acid sites
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725128: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725128
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Guy Yachdav 

* Package name: rate4site
  Version : 3.0.0
  Upstream Author : Nir Ben-Tal 
* URL : http://www.tau.ac.il/~itaymay/cp/rate4site.html
* License : GPL-3+
  Programming Lang: C++
  Description : detector of conserved amino-acid sites

Rate4Site calculates the relative evolutionary rate at each site using a 
 probabilistic-based evolutionary model. 
 This allows taking into account the stochastic process underlying sequence
 evolution within protein families
 and the phylogenetic tree of the proteins in the family. 
 The conservation score at a site corresponds to the site's evolutionary rate. 
--- End Message ---
--- Begin Message ---
Source: rate4site
Source-Version: 3.0.0-1

We believe that the bug you reported is fixed in the latest version of
rate4site, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Guy Yachdav  (supplier of updated rate4site package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 Aug 2013 21:06:00 +0200
Source: rate4site
Binary: rate4site rate4site-dbg
Architecture: source amd64
Version: 3.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 

Changed-By: Guy Yachdav 
Description: 
 rate4site  - detector of conserved amino-acid sites
 rate4site-dbg - debugging symbols for rate4site-dbg
Closes: 725128
Changes: 
 rate4site (3.0.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #725128).
Checksums-Sha1: 
 39fca276a589d955ceb4b8bf801c327d770d711e 2086 rate4site_3.0.0-1.dsc
 837fb82c4ac368ebc64a5d8697706be3b0679829 303488 rate4site_3.0.0.orig.tar.gz
 5089cd1df3e541b3fd6f11b884e3f91ebf89f6db 2535 rate4site_3.0.0-1.debian.tar.gz
 f835ddfbc5a0a5dc68f025ceae3bef02a7324d39 303640 rate4site_3.0.0-1_amd64.deb
 c07f5264549405343de74c2ae181d77285e2bd77 2973554 
rate4site-dbg_3.0.0-1_amd64.deb
Checksums-Sha256: 
 b9c51f66f4e490d94fe5a85d1463be7b799ce4e60ee1bca28129cc7af77e68df 2086 
rate4site_3.0.0-1.dsc
 5f748131bc2d10383c35c3141a835efa4ec1e7088cd9d8970e8024021aa509ac 303488 
rate4site_3.0.0.orig.tar.gz
 6a0c9f54559d51bf9cdba00a82a28eb8e8b9044275f966a1632d80e73fd57e6b 2535 
rate4site_3.0.0-1.debian.tar.gz
 c9f6f6e01fcd325b049bdfc82b006110bc94b473a297436b2f84ddc5d595890b 303640 
rate4site_3.0.0-1_amd64.deb
 603fd7c65351e60bc1bc91bdc3d7a65dbe773dee039842bba452b08ea8189c0e 2973554 
rate4site-dbg_3.0.0-1_amd64.deb
Files: 
 1d5f8c49c94804017e7ce12aae816f3a 2086 science extra rate4site_3.0.0-1.dsc
 c06ec2429d1535bf91e8dbcaed537d30 303488 science extra 
rate4site_3.0.0.orig.tar.gz
 3a9326e7177857d7803d61f27c5adf50 2535 science extra 
rate4site_3.0.0-1.debian.tar.gz
 945cfe43123881d13cf7c313032c43c1 303640 science extra 
rate4site_3.0.0-1_amd64.deb
 994b7724b8029e021ceb2331d300cf2e 2973554 debug extra 
rate4site-dbg_3.0.0-1_amd64.deb

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

iQIcBAEBAgAGBQJSUGoEAAoJEJvS1kCaDFL6YhYQAKUEwlTumoGgCyENCi26u0xJ
FF0LDbaCz9pbmwN45CTp+xPVz/OhLAp6PD7mDsEBs4OeoihcBIv5+gRisUxvCEku
8m7VnvG/q8pYUPjlvukopM5IatsdOtdPWfGsbpt7PvPf/0sHhiMo53kWrZGlw78d
qeDWQe6p9PCNJE44jKtT/RCLCKbdxWTE1KMjMxOROGizJNVtDrPQ+EMO9bRyvzBF
NmlOnKZdvFQAUrUygvH5oX8h00O37KkrF7Jd18vfpUnQ9p3ycHOUht76kfd5HoZL
4cgJDleGnENGj44SFN6IFujD3zMowRi7GdhPlavwt0pbvAmFOMn4kMd5JiODNPUb
9aYr8FJcfc5J66+G+AhjPy2V8fu0WIMGdTixdyg8tJGsIb16jXu3hmWdiLhyPrN/
Edzm/2h+F83ObIXqTU+kvVlcdig8ctHOswYTxQ8NUgKrPicX8Ju/zGv13UepAL9A
b+JXJOrzsiHY9rlKrAu0jh7Tghw/J3lyiW2JHG06ERDmWfBiYdmGy/I/qYYSMu8h
e6tULcu+odWE1ZEV0GotpSCjlAzecamVQuZPWcx43vkR1x0cPkAK6RkhxdvAydGR
EprEq9I6361GDJO3gysyR5Lh76HOnt0KjIjHOWWH7RK90wR9tMZ1BD86wWSE22bV
ja9fA/fH7OSW1NoXZubB
=w/7i
-

Bug#725330: marked as done (ITP: ballerburg -- Classical castle combat game)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:05 +
with message-id 
and subject line Bug#725330: fixed in ballerburg 1.0.1-1
has caused the Debian Bug report #725330,
regarding ITP: ballerburg -- Classical castle combat game
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725330: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725330
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist

* Package name: ballerburg
  Version : 1.0.1
  Upstream Author : Eckhard Kruse 
* URL : http://baller.tuxfamily.org/
* License : GPL-3+
  Description : Classical castle combat game
 Two castles, separated by a mountain, try to defeat each other with their
 cannonballs, either by killing the opponent's king or by weakening the
 opponent enough so that the king capitulates.
 .
 Ballerburg was originally written 1987 by Eckhard Kruse, for the Atari ST
 machines (which were brand new computers at that point in time). Over 25
 years later, here's finally the adaption of the original source code to
 modern operating systems.

I will need this to build the latest versions of the junicode font from source.
A working package will be available soon at 
http://sid.ethz.ch/debian/ballerburg/
--- End Message ---
--- Begin Message ---
Source: ballerburg
Source-Version: 1.0.1-1

We believe that the bug you reported is fixed in the latest version of
ballerburg, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gürkan Sengün  (supplier of updated ballerburg package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 18 Sep 2013 13:20:48 +0200
Source: ballerburg
Binary: ballerburg
Architecture: source amd64
Version: 1.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Gürkan Sengün 
Changed-By: Gürkan Sengün 
Description: 
 ballerburg - Classical castle combat game
Closes: 725330
Changes: 
 ballerburg (1.0.1-1) unstable; urgency=low
 .
   * Initial release (Closes: #725330)
Checksums-Sha1: 
 11dabf46e20ced2f1a450b351eff2e49e5a45adc 1109 ballerburg_1.0.1-1.dsc
 aa69727b7124e504c1e2691ac5f80fcdb6cf3721 88341 ballerburg_1.0.1.orig.tar.gz
 baf3a862091e2338265dc9bc325ff5a252370a04 5587 ballerburg_1.0.1-1.debian.tar.gz
 00b96008eab088dd0461840382541a438e319fc0 69412 ballerburg_1.0.1-1_amd64.deb
Checksums-Sha256: 
 b4a6df4bee0e9b47b0e30493e9debe8eb09dbbe4f0c6908cbda0ee9edd04700b 1109 
ballerburg_1.0.1-1.dsc
 ee5b93afda5c35ef878193b96b9e717302551b0fe6b9308362dbb3c0141ca0a2 88341 
ballerburg_1.0.1.orig.tar.gz
 52d6dbc68439e7684a0f95be9b0efdd5e86a6468a353af57c733e8304c0fb7bf 5587 
ballerburg_1.0.1-1.debian.tar.gz
 211f8c8a2ef9ce88df82b15d46fd8dd247ff1a0e64073e57869c4f669feab019 69412 
ballerburg_1.0.1-1_amd64.deb
Files: 
 3e427bfe2a7baa0ad71ffead786f49c6 1109 games extra ballerburg_1.0.1-1.dsc
 986c94686d510f02fe5f1b983880536f 88341 games extra ballerburg_1.0.1.orig.tar.gz
 3a7c8806086d96b49a1f6a20789cabd6 5587 games extra 
ballerburg_1.0.1-1.debian.tar.gz
 add5f8e8009c73b2c8c0a302742b5c53 69412 games extra ballerburg_1.0.1-1_amd64.deb

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

iEYEARECAAYFAlJTxs4ACgkQAxLow12M2nuFVgCfTBMU1ShWHzZvNBTgJFz6zIPP
XaMAoI1Brh3hnLL+HJ9efwespKCVw8Z6
=t1dn
-END PGP SIGNATURE End Message ---


Bug#725482: marked as done (ITP: nvpy -- Simplenote-syncing note-taking application, inspired by Notational Velocity)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:14 +
with message-id 
and subject line Bug#725482: fixed in nvpy 0.9.5~git20130806-1
has caused the Debian Bug report #725482,
regarding ITP: nvpy -- Simplenote-syncing note-taking application, inspired by 
Notational Velocity
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725482: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725482
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Stefan van der Walt 

* Package name: nvpy
  Version : 0.9.4
  Upstream Author : Charl Botha 
* URL : https://github.com/cpbotha/nvpy
* License : BSD-3
  Programming Lang: Python
  Description : Simplenote-syncing note-taking application, inspired by 
Notational Velocity

nvpy is a simplenote-syncing note-taking tool inspired by Notational Velocity
(and a little bit by nvALT too) on OSX and ResophNotes on Windows. It is
significantly uglier, but it is cross-platform.

Simplenote is a free-of-charge online notes service, using Markdown for
formatting.

Simplenote (the web application) is non-free software, so this package might
belong in contrib.
--- End Message ---
--- Begin Message ---
Source: nvpy
Source-Version: 0.9.5~git20130806-1

We believe that the bug you reported is fixed in the latest version of
nvpy, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan van der Walt  (supplier of updated nvpy package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 06 Oct 2013 16:22:43 +0200
Source: nvpy
Binary: nvpy
Architecture: source all
Version: 0.9.5~git20130806-1
Distribution: unstable
Urgency: low
Maintainer: Stefan van der Walt 
Changed-By: Stefan van der Walt 
Description: 
 nvpy   - Simplenote-syncing note-taking tool
Closes: 725482
Changes: 
 nvpy (0.9.5~git20130806-1) unstable; urgency=low
 .
   * Initial release. (Closes: #725482)
Checksums-Sha1: 
 4f55dac039df76133b936e36d609233506c3379a 1908 nvpy_0.9.5~git20130806-1.dsc
 3a9ddf7c0c3433eb13f91b6d72ec4fd060eb87ea 497805 
nvpy_0.9.5~git20130806.orig.tar.gz
 1369ca9df77786b0e74c8457cf20aa2080df47fd 9583 
nvpy_0.9.5~git20130806-1.debian.tar.gz
 e847f6847ccd54c34de2f5d55cea9732308914dd 118302 
nvpy_0.9.5~git20130806-1_all.deb
Checksums-Sha256: 
 b05f5f5c146d363f0ce264d253a8e2f65112069c502ed609fb993d83f55063ee 1908 
nvpy_0.9.5~git20130806-1.dsc
 fa33512c264ccb0b58aef68e4e290570d2d60a4bd6312c912087ee98e70ed08c 497805 
nvpy_0.9.5~git20130806.orig.tar.gz
 c1cb9d4c9c48fc088414afe89e4b3dc46bc96d7b44523b2dd3c0323d3159201f 9583 
nvpy_0.9.5~git20130806-1.debian.tar.gz
 277298f425ded6e995b2f9f4bb67e651fda8ec10571bbeb9967f110f5f2575ad 118302 
nvpy_0.9.5~git20130806-1_all.deb
Files: 
 73ed04ea06ec44b7182785df37e73a2e 1908 contrib/utils optional 
nvpy_0.9.5~git20130806-1.dsc
 91246b7c1f27635958cc2275aa9ddeff 497805 contrib/utils optional 
nvpy_0.9.5~git20130806.orig.tar.gz
 f3091f3252f30758093b7b81ab90ea92 9583 contrib/utils optional 
nvpy_0.9.5~git20130806-1.debian.tar.gz
 9e43997e8aa8c679f21909cf5c390b9e 118302 contrib/utils optional 
nvpy_0.9.5~git20130806-1_all.deb

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

iQIcBAEBCgAGBQJSUXrKAAoJEACQ/CG1zRrMZQ4QAM10cSmC33r4xsF/1/gRvAgn
I0UR3u6FIGQRqGmZdnyHVoxaPbUWU8hE5deek7FqPvGfJ4iPlfpOT6z7MGEKRyd+
m+VjN4j9OThRb0Ncqb6IEoaWghK2gPe6PA+9JsDiTScFp8ssCWe0osoSmaTiAsA3
Ardz1kjI5U1IFr9RqVJBq9QytC+tizfq5OD3CQFmOE2WR+vbfBbs/j7PMYjMifwR
WWwz/MNlZRIKvOHqhN4iNT8j5ac/6LwqQW6w/JvJLsy40Q2uE9sGm0tTbgpm4V6I
oPRgvHjEQljAgDDI0PR+iEifCy5BqsQv/T0npXTcRnekpmOcXeHVE/r38RPXHPOs
f22lgOQ1D4Q7ifHXABDpMS520MvkeQIm6hxjWAr1LmiuahKF4bBnXPIefd+A/lE9
HP6Wq5y4JSWHFUaX9IcrkH08R3jTQCGh9AuT/B5mky2Jm9aHif5swdkKeRiOtbp5
acofFCN9MbK2TeGLShA/PB+hDDdJa/Dh1W0Gi5XjdzoECFFAyuJeo2j5b1nvSmbG
Yhu6PHa5zOicFCdCj6G8mNB4a0qSjTmOgl8qohQ/O5qHTBuzKg2E7onrfoqWWaQo
JjaIpPJ491UDDgYdwgatcMZH3+7oOR+nn9Y78yI20ijgog1pCHME94Ylxkd0Nih2
MIGoxG4q/X1gGTzQPugq
=GW4q
-END PGP SIGNATURE End Message ---


Bug#725112: marked as done (ITP: libdist-zilla-plugin-test-notabs-perl -- Dist::Zilla plugin to make sure hard tabs are not used)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:10 +
with message-id 
and subject line Bug#725112: fixed in libdist-zilla-plugin-test-notabs-perl 
0.04-1
has caused the Debian Bug report #725112,
regarding ITP: libdist-zilla-plugin-test-notabs-perl -- Dist::Zilla plugin to 
make sure hard tabs are not used
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725112: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725112
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Owner: intrigeri 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libdist-zilla-plugin-test-notabs-perl
  Version : 0.04
  Upstream Author : Florian Ragwitz 
* URL : https://metacpan.org/release/Dist-Zilla-Plugin-Test-NoTabs
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Dist::Zilla plugin to make sure hard tabs are not used

The Dist::Zilla::Plugin::Test::NoTabs plugin runs at the gather files
stage. It provides the file xt/release/no-tabs.t, a standard
Test::NoTabs test.

If needed, custom module and file finders may be provided by
the user.
--- End Message ---
--- Begin Message ---
Source: libdist-zilla-plugin-test-notabs-perl
Source-Version: 0.04-1

We believe that the bug you reported is fixed in the latest version of
libdist-zilla-plugin-test-notabs-perl, which is due to be installed in the 
Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
intrigeri  (supplier of updated 
libdist-zilla-plugin-test-notabs-perl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 05 Oct 2013 00:45:23 +0200
Source: libdist-zilla-plugin-test-notabs-perl
Binary: libdist-zilla-plugin-test-notabs-perl
Architecture: source all
Version: 0.04-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: intrigeri 
Description: 
 libdist-zilla-plugin-test-notabs-perl - Dist::Zilla plugin to make sure hard 
tabs are not used
Closes: 725112
Changes: 
 libdist-zilla-plugin-test-notabs-perl (0.04-1) unstable; urgency=low
 .
   * Initial Release (Closes: #725112).
Checksums-Sha1: 
 b26e146ffb1f4cfb658517fcfe468d2adafcff53 2501 
libdist-zilla-plugin-test-notabs-perl_0.04-1.dsc
 1b165a8308457b198344cd092d5c0881480855eb 19231 
libdist-zilla-plugin-test-notabs-perl_0.04.orig.tar.gz
 b25f4b31fa2b4802040ede3fab11ba13b3c5dc03 1522 
libdist-zilla-plugin-test-notabs-perl_0.04-1.debian.tar.gz
 0e28c7c4656c04befb20b048fde6529a5da9ac5b 9702 
libdist-zilla-plugin-test-notabs-perl_0.04-1_all.deb
Checksums-Sha256: 
 2a60aaf29fc257c86b6a40ceb6658b86fb52cead4d6ee8c5aab254c46a866517 2501 
libdist-zilla-plugin-test-notabs-perl_0.04-1.dsc
 b66d0337d208a1aef839b37fbc89cbcc7eb8a0860d8944f4881cf248dd371946 19231 
libdist-zilla-plugin-test-notabs-perl_0.04.orig.tar.gz
 67148963ccd0e5ee13172ec7c91ed75ebc70790cd0f93fca64fa7e94119f070f 1522 
libdist-zilla-plugin-test-notabs-perl_0.04-1.debian.tar.gz
 479ab2b039a4ca496b008af1b634b830efdce8a557bb73e4b61c8dff6217f8c3 9702 
libdist-zilla-plugin-test-notabs-perl_0.04-1_all.deb
Files: 
 d6a065737f5f335a374705c4a626c9e6 2501 perl optional 
libdist-zilla-plugin-test-notabs-perl_0.04-1.dsc
 9be9af400e49857e9310a99c7bab12af 19231 perl optional 
libdist-zilla-plugin-test-notabs-perl_0.04.orig.tar.gz
 452485f4344c835223b831d5dfa3f2ab 1522 perl optional 
libdist-zilla-plugin-test-notabs-perl_0.04-1.debian.tar.gz
 e49e5030c2be3129dd4ae21bcb1af50d 9702 perl optional 
libdist-zilla-plugin-test-notabs-perl_0.04-1_all.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCgAGBQJST+UdAAoJELrOFdKldJj/OwQQANbCh9UsUHpcNDljonl0ylAB
JDd7Qg1NtRgXX5xfBNrZIzwwdeGrjF41PxiKH+zxmruJDLYfshvKioEq79GBfoTA
sHT4/OXoUSgik/J4YG7nIqbrMb5WImmcDSV4V4yPXYmQzvMl/N9extoDQpJReUH7
YAKhBqkhaVSOcXJN/20JktiY3wbS9gqrpNtEeArNNZpBgkbskVrkzkONZ6A/VKjc
VnYGcLEQbBILqXrLi/tsDfuXX000vUo6J2GRutPPOg6o0AIvfph+nG9D7gJGQKIR
h6kPxKfmZE/nHLqAX5KwXrAR5Af/cquiqxPu+AipZW53p9y2LpEg+JC8fEx5TR2v
hLfS69xV+InuqDfXqe4p6VD5yD5bNcuh3F5xATydn1RLCKTj5g22TnhCP9YHBmit
qKurVGdg2STHPh5Rjejt/gDaJLQMNyUMzdYF590rse2THFsE0wAUFKXSUWg9NKFR
tXXZbpuDce5xK69y5HOocrC

Bug#722975: marked as done (ITP: golang-goprotobuf -- Protocol buffer support for the Go programming language)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:07 +
with message-id 
and subject line Bug#722975: fixed in golang-goprotobuf 0.0~git20130901-1
has caused the Debian Bug report #722975,
regarding ITP: golang-goprotobuf -- Protocol buffer support for the Go 
programming language
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
722975: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=722975
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Tonnerre LOMBARD 

* Package name: golang-goprotobuf
  Version : 0.0~git20130901
  Upstream Author : The Go Authors
* URL : https://code.google.com/p/goprotobuf/
* License : BSD-3-Clause
  Programming Lang: Go
  Description : Protocol buffer support for the Go programming language

Adds support for serializing and deserializing data in the protocol buffer
format for users of the Go language.
--- End Message ---
--- Begin Message ---
Source: golang-goprotobuf
Source-Version: 0.0~git20130901-1

We believe that the bug you reported is fixed in the latest version of
golang-goprotobuf, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 722...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Tonnerre Lombard  (supplier of updated 
golang-goprotobuf package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 01 Sep 2013 02:44:09 +0200
Source: golang-goprotobuf
Binary: golang-goprotobuf-dev
Architecture: source amd64
Version: 0.0~git20130901-1
Distribution: unstable
Urgency: low
Maintainer: Tonnerre Lombard 
Changed-By: Tonnerre Lombard 
Description: 
 golang-goprotobuf-dev - Protocol buffer support for the Go programming language
Closes: 722975
Changes: 
 golang-goprotobuf (0.0~git20130901-1) unstable; urgency=low
 .
   * Initial release. Closes: #722975
Checksums-Sha1: 
 41e29d0981203a90b0ada7467a8cd4104d0ec8b0 2081 
golang-goprotobuf_0.0~git20130901-1.dsc
 a11ee233624650435e94915a45dc0b3c2ce50c23 117768 
golang-goprotobuf_0.0~git20130901.orig.tar.gz
 c0394b018622681d47d903f3a477350c6ab18e98 12007 
golang-goprotobuf_0.0~git20130901-1.debian.tar.gz
 510e3b6c4398fd19b274c89e850290898291a8f2 583098 
golang-goprotobuf-dev_0.0~git20130901-1_amd64.deb
Checksums-Sha256: 
 faf82c8366005060ab83fa270d15783a83a9511e302a2ce6972d9964a263c79b 2081 
golang-goprotobuf_0.0~git20130901-1.dsc
 e037d96eabbc17b3bd2e62199d7fdf4a20a7f19a0a5c7fbe0e7825737108c15d 117768 
golang-goprotobuf_0.0~git20130901.orig.tar.gz
 6e6becf9882d50d27ffc3190527ce9dc516a1598ed1b58261a1edcc4b490c0c0 12007 
golang-goprotobuf_0.0~git20130901-1.debian.tar.gz
 81e7fb0e818919b0c3f5a0c06505598ae4f6e74c12983153f59a27def3f5b57f 583098 
golang-goprotobuf-dev_0.0~git20130901-1_amd64.deb
Files: 
 0bb202582b354ddbcd1281ad6afa02af 2081 devel extra 
golang-goprotobuf_0.0~git20130901-1.dsc
 60d35cc9e9fc67655cf901396a15bcc3 117768 devel extra 
golang-goprotobuf_0.0~git20130901.orig.tar.gz
 c4f63a2d602182e48c760d2f8623845a 12007 devel extra 
golang-goprotobuf_0.0~git20130901-1.debian.tar.gz
 c628e202df7e754919ce168a5ae802f0 583098 devel extra 
golang-goprotobuf-dev_0.0~git20130901-1_amd64.deb

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

iQIcBAEBCgAGBQJSUzEqAAoJEE5xYO1KyO4d4J8P/Av3gbHuGWjBdeL8shiQNowZ
m1u8Kyhjbxlzq/417i0UI9xx4jDNtNnfz+0K99N4Mn+5ZiR/Onz3R/3fqKDVZHEv
I8jKMMbnwayu9NKcxnJgj9Pp8NNpJu8mzTEvIVueHnYyXBMcqnoUJ9h5wKULtfM3
f8sxkAO22QR03bN0Ts1eQ7xGGUYyAE7DNVbLT5Rd5oWrGh1odto+CyGEPl3w0AQV
Wxl758DyGza8Z87uWvtifPfbMo5lVpOogmMQle1BaJ2qEmM2IMhnu1j0nIkPZKsO
6Tggrm7ATDtNYXmm3eOceCsHkonD6ytt2LdinCvsagLOIPkho+wq8wrb2A04atpx
70O5cI7C8RgV/seGi92VaNgwLv/O9Vwb0R9kHzBJjeVatlff9x+D+y8o8Aq31bsF
Z9RAmSKHIfTU3BwxElMwBKL06BwYnQ5rSQnMu/HT9FqC4aRBlSkBUVamgCEdezpB
qwwJc3/TnOzhHYzWLRmXBL9shs7CYx0GGO3Mp/Y/Q4svQVyCkdfdq4XRt6+0UfWg
QajKbMQquDxY09NI7sWgITKPHbBnlCx575/n4yNfYO/kY/QNo1ycKtS3E1Bpe0a1
iWT7jW5C8NGIOSOr8pD4wo4wFyOdhaRtzt4yu5vF4zcyhiq3dBtoynOMHKXiPpSK
Ad+Ggac/Yjx5tXWyqRqQ
=4iQ7
-END PGP SIGNATURE End Message ---


Bug#714449: marked as done (ITP: droopy -- mini web server to let others upload files to your computer)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:06 +
with message-id 
and subject line Bug#714449: fixed in droopy 0.20130626-1
has caused the Debian Bug report #714449,
regarding ITP: droopy -- mini web server to let others upload files to your 
computer
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
714449: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714449
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Benjamin Drung 

* Package name: droopy
  Version : 20120108
  Upstream Author : Pierre Duquesne 
* URL : http://stackp.online.fr/droopy
* License : BSD-3-clause
  Programming Lang: Python
  Description : mini web server to let others upload files to your computer

Droopy is a mini Web server whose sole purpose is to let others upload files to
your computer.
--- End Message ---
--- Begin Message ---
Source: droopy
Source-Version: 0.20130626-1

We believe that the bug you reported is fixed in the latest version of
droopy, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 714...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Benjamin Drung  (supplier of updated droopy package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 03 Oct 2013 13:35:26 +0200
Source: droopy
Binary: droopy
Architecture: source all
Version: 0.20130626-1
Distribution: unstable
Urgency: low
Maintainer: Benjamin Drung 
Changed-By: Benjamin Drung 
Description: 
 droopy - mini web server to let others upload files to your computer
Closes: 714449
Changes: 
 droopy (0.20130626-1) unstable; urgency=low
 .
   * Initial release (Closes: #714449)
Checksums-Sha1: 
 4942d24b7fd8c9afed512f4c272120616b765799 1850 droopy_0.20130626-1.dsc
 31a7e94bed4a6d477bf7502cfdee8c566a16b33f 9808 droopy_0.20130626.orig.tar.xz
 3595a2607368deeca8d6b404283c06967f3e9dc4 2725 droopy_0.20130626-1.debian.tar.gz
 41fc905b61d561e13f6670e29d2cfde81e862c92 12004 droopy_0.20130626-1_all.deb
Checksums-Sha256: 
 6239d69352ef08cfcbfc4767e170a95d447e8d8c4a70e8f4904adb67ec474fd1 1850 
droopy_0.20130626-1.dsc
 d367b7eccab9ab6db0aebc6dd813b9e51afccc2fd3fae16c43ec82561f0ed4db 9808 
droopy_0.20130626.orig.tar.xz
 d90c2e9d3b5341ffa1eb5383e575216792142216a8e28201151778ac3ac8bc6e 2725 
droopy_0.20130626-1.debian.tar.gz
 1382d2b16bd12ba258f6fa8b42f67fb6586fc1e7cd4c2dc4e6eb0ae18ff779c5 12004 
droopy_0.20130626-1_all.deb
Files: 
 bbca39ec48a99ba9d58e7f7abfa44274 1850 net optional droopy_0.20130626-1.dsc
 846ac7d7d94b7073777b98e1ff3d6ef5 9808 net optional 
droopy_0.20130626.orig.tar.xz
 fb1fc54f81a098278c86609c63d043fe 2725 net optional 
droopy_0.20130626-1.debian.tar.gz
 354deb5c600c282054cfdd2a2cf427b0 12004 net optional droopy_0.20130626-1_all.deb

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

iQIcBAEBCgAGBQJSTV0VAAoJEBWetcTvyHdMUd0P/jgVYdbhuw09c5JvmJjwc7FI
1tKXlnI1318OuZOoxOJsq2bKntKfkG2AMhYlrUgov1R46eiMJdclfZrBUL7EgWYP
/fAwy8VfRSDx48azx/jIvJmKLKeJZOEzq+zanRtF0VM3IaFc5uRzDGffH3Ui3u36
JcTIzZ2Tt0n0Ze0oher/wapdY0S2lrtB3kcoQ7fLhkOtu/O5BQBx4pAJstsl06wl
NSSo6png4Fg9Q41LKgNBojgaqEkoCx+8rX8WbyoY7Z+rWTtc3ukd/UPxmmK2AhU7
Ol4lAQ+SBM3/T54/Z8vbG+gqDVJWovNgCdXRhRJTTwBdz6X7gIbbzJYM504jWZSv
hkXX0kIvGftofFoD+XOnvVtwF9CdUOdiHH/ZCmDI7QKHCeOETNmoow11tMbx6l+q
sMPHK6Yheh6d3J+IkMbQ57isuoTuK6bFTrsmh2oEE2RfCCaCMggIMhK3NSFRlH+/
2uXDf/IRQVkLDPOGeGxnjiYUikWKKsZZ8yxM3icFgTeCw/4iAn6JzZ9JgnGZR+D/
Z0ujBZOit78/XgpX2+JPeParUyjKCIhyNm9jm2ws5/rvo3lPZoNcyqo6DJ7pzs37
3ToEjOSygitnkncPE9yjhAH7tredHBGEWANO9N0qHoTu3YFPXUC+JFSRpad1yllD
DfKMD+tMtSeY7pcBmgQS
=ra1F
-END PGP SIGNATURE End Message ---


Bug#723905: marked as done (ITP: ruby-filepath -- Small gem to manipulate paths)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:18 +
with message-id 
and subject line Bug#723905: fixed in ruby-filepath 0.6-1
has caused the Debian Bug report #723905,
regarding ITP: ruby-filepath -- Small gem to manipulate paths
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
723905: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=723905
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Gioele Barabucci 

* Package name: ruby-filepath
  Version : 0.6
  Upstream Author : Gioele Barabucci 
* URL : https://rubygems.org/gems/filepath
* License : CC0
  Programming Lang: Ruby
  Description : Small gem to manipulate paths

>From the gemspec:

The Filepath class provides immutable objects with dozens of convenience
methods for common operations such as calculating relative paths,
concatenating paths, finding all the files in a directory or modifying
all the extensions of a list of filenames at once.
--- End Message ---
--- Begin Message ---
Source: ruby-filepath
Source-Version: 0.6-1

We believe that the bug you reported is fixed in the latest version of
ruby-filepath, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 723...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gioele Barabucci  (supplier of updated ruby-filepath package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 15 Sep 2013 14:59:44 +
Source: ruby-filepath
Binary: ruby-filepath
Architecture: source all
Version: 0.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Gioele Barabucci 
Description: 
 ruby-filepath - small library to manipulate paths
Closes: 723905
Changes: 
 ruby-filepath (0.6-1) unstable; urgency=low
 .
   * Initial release (Closes: #723905)
Checksums-Sha1: 
 0c239e7dcaf169e4af796ecf7ceb6494167cd487 2054 ruby-filepath_0.6-1.dsc
 a4ad7c31d028a91b4616804f5c63dc4ddac787c8 19073 ruby-filepath_0.6.orig.tar.gz
 69da814a6118f837a043354c4f2617c1a7a37227 5303 ruby-filepath_0.6-1.debian.tar.gz
 7952e2bd5fae5524b2645baec2cb017994cd5de7 12330 ruby-filepath_0.6-1_all.deb
Checksums-Sha256: 
 6a246e9a32119e6b25eac260effb30a3c44a16e06fb599d9f4883c92aff63bf4 2054 
ruby-filepath_0.6-1.dsc
 9160d8f745fa401c951365f4692a5ab3483cd96703f85143f0894b9cc80d5dba 19073 
ruby-filepath_0.6.orig.tar.gz
 b330a9c2af53c3ffa2f19d019698dfff7abda89b426830b898adaa132d68ae5a 5303 
ruby-filepath_0.6-1.debian.tar.gz
 1f4c07920c2d6696459c9fff9e9fcb64634c386cc4c2e82077986aa99efce5fe 12330 
ruby-filepath_0.6-1_all.deb
Files: 
 92a0b2b28aac14c852f01d9c7ac23b2b 2054 ruby optional ruby-filepath_0.6-1.dsc
 5edfd1c1e29c7e3b10a9fcb5f7b5c594 19073 ruby optional 
ruby-filepath_0.6.orig.tar.gz
 8a39d8b7d9b9fce35a72d45c8b4f137f 5303 ruby optional 
ruby-filepath_0.6-1.debian.tar.gz
 315e8fb7f160f7c407e95420a702da2a 12330 ruby optional 
ruby-filepath_0.6-1_all.deb

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

iQIcBAEBCAAGBQJSTTKTAAoJEKkHZFuPn48J4uQP+QFuCpNxW4RzY7+UyWXRghGg
4QRDIwkyJ5xdY1NcTojWQwRToyqqxsWl8TFawt2hLf3QGe9PXblRDhngrpX4pfFo
G5blCSjath8xhJ8st4K0RXcQzVaHcd0G9u2DzrcEUnTq0SroIVI0kofsz5Yvpma7
hojXd/UXe45E5k7/zBAifOCdVtNmHsUAf+Cs7MfeVKgYim4jYTM1UXUJ4XCdknhR
298iR9ahHRW657SN9PEkN9O45J4LF9HwIQe8Y00CfpFwGz+kNZuvzaWtlEKYYeCB
YKSOELiVGci+xsQ5kiagjF6NDIpp15P6CnvSDdBb7D9He3aCgZXxYOF7CpWTbC0v
bVtn4xjbZoMz8ZMtFnGb3Y+074uJ3lG/0ApKWFL9HGfR97YUMy7jz0u0+yADu6og
rb8ErpR73+EsWt2Eu7QbhjwiH5cz0WUmWuCqtnhAN0YKgzy7tibdDXgYVFhB0vrx
zpXY3mryOKo+JmF+Wkj81eOjPNK48ByViBq8FH2hf6YHGeVYQ7g/HtrJpucYBqx3
XRaq4JlGkw9Ia/15Be+LhzlgvLHrfh4R4K+LZ5z5+Pj+7cWd/O8yC/Xf6bXDex5V
nQjIHsDEb896eGm9ycmuZjVcKduOniSMfmnsEfxfSQtXZv2IN/maouzRKHZP7iNf
TUy+tIkMYVwaVR7o/IhR
=dyIu
-END PGP SIGNATURE End Message ---


Bug#724980: marked as done (ITP: openstack-trove -- Database as a Service for OpenStack)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:14 +
with message-id 
and subject line Bug#724980: fixed in openstack-trove 2013.2~rc1-1
has caused the Debian Bug report #724980,
regarding ITP: openstack-trove -- Database as a Service for OpenStack
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
724980: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=724980
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 

* Package name: trove
  Version : 2013.2~rc1
  Upstream Author : OpenStack Development Mailing List 

* URL : https://github.com/openstack/trove
* License : Apache-2.0
  Programming Lang: Python
  Description : Database as a Service for OpenStack

Database as a Service for OpenStack.
--- End Message ---
--- Begin Message ---
Source: openstack-trove
Source-Version: 2013.2~rc1-1

We believe that the bug you reported is fixed in the latest version of
openstack-trove, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 724...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Thomas Goirand  (supplier of updated openstack-trove package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 30 Sep 2013 01:27:39 +0800
Source: openstack-trove
Binary: python-trove trove-common trove-api trove-guestagent trove-taskmanager
Architecture: source all
Version: 2013.2~rc1-1
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack 
Changed-By: Thomas Goirand 
Description: 
 python-trove - Database as a Service for OpenStack - Python lib
 trove-api  - Database as a Service for OpenStack - API server
 trove-common - Database as a Service for OpenStack - common files
 trove-guestagent - Database as a Service for OpenStack - guest agent
 trove-taskmanager - Database as a Service for OpenStack - taskmanager
Closes: 724980
Changes: 
 openstack-trove (2013.2~rc1-1) unstable; urgency=low
 .
   * Initial release. (Closes: #724980)
Checksums-Sha1: 
 ab68b8d38e2ad675e5d215a683a7738233f531cd 2513 openstack-trove_2013.2~rc1-1.dsc
 2c03c4c2edfe40ee8d8f716f8e5dab14f5d109d9 278408 
openstack-trove_2013.2~rc1.orig.tar.xz
 45cac6c9925f874810aded832e73a61d89e302ce 10112 
openstack-trove_2013.2~rc1-1.debian.tar.gz
 ae9ca89f5aeb5a581f0cdebef7b65c9a62ec6dd2 255994 
python-trove_2013.2~rc1-1_all.deb
 8cd3c9259b849cc9660d9e3826ed1d4c0c79fa9f 12484 
trove-common_2013.2~rc1-1_all.deb
 67ca1bd6768a45621834c10baf8a9aa809ede110 11538 trove-api_2013.2~rc1-1_all.deb
 a2349fd7bb125c0954cb4221bf93ca68b1c04e36 12032 
trove-guestagent_2013.2~rc1-1_all.deb
 f3af1108baaaee0e490939f99acccfb65094d777 12008 
trove-taskmanager_2013.2~rc1-1_all.deb
Checksums-Sha256: 
 70da9728c5ca352f3d7a8f51489d3875d2c9297a4ec67d728ea0b97b4efc5764 2513 
openstack-trove_2013.2~rc1-1.dsc
 2316f3946b7584f9f8ab32cb0df141969c723175ac74ddb909283d29c43d1f1d 278408 
openstack-trove_2013.2~rc1.orig.tar.xz
 20dcfec83834de1baad0de8217099bc44b3953fa4d4599a378c981e71bc88eca 10112 
openstack-trove_2013.2~rc1-1.debian.tar.gz
 2b754b55b7851ea4257e129fd7bbf20c2af35310c98ed3a4bf4b1ad9f78235b1 255994 
python-trove_2013.2~rc1-1_all.deb
 0fac8ade6539a2c3f3dc12a87335e00ee0044dcd073a38dbfe1e7e9beae4f3f6 12484 
trove-common_2013.2~rc1-1_all.deb
 b2df255517581ff9b42bca83213637d7946868a774f94fa31da7125f01618456 11538 
trove-api_2013.2~rc1-1_all.deb
 c1aab21ceeaa521a8c1793935fdae2daed736b784e2850990f7d813e1cad5cc8 12032 
trove-guestagent_2013.2~rc1-1_all.deb
 83ec9b265775e60fa6a8e12de52ac9a0f6dd7435999ed6b7d552ad50b112b8d7 12008 
trove-taskmanager_2013.2~rc1-1_all.deb
Files: 
 71bf300bfe660088464afb3588fbd0dc 2513 net extra 
openstack-trove_2013.2~rc1-1.dsc
 ea15849766960f37ac50d755b5ad688d 278408 net extra 
openstack-trove_2013.2~rc1.orig.tar.xz
 d13031af5dbeac35f5dd602d086229d8 10112 net extra 
openstack-trove_2013.2~rc1-1.debian.tar.gz
 528d54584671ab85554024a8270278aa 255994 python extra 
python-trove_2013.2~rc1-1_all.deb
 d037b3163baaad47630c32f9038ad564 12484 net extra 
trove-common_2013.2~rc1-1_all.deb
 3622e75f3dba62761da88f155d469a2a 11538 net extra trove-api_2013.2~rc1-1_all.deb
 94cacf37a3a96e89ddda1a14a

Bug#725064: marked as done (ITP: heat-cfntools -- Tools required to be installed on Heat provisioned cloud)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:08 +
with message-id 
and subject line Bug#725064: fixed in heat-cfntools 1.2.5-1
has caused the Debian Bug report #725064,
regarding ITP: heat-cfntools -- Tools required to be installed on Heat 
provisioned cloud
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
725064: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=725064
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: gustavo panizzo 

* Package name: heat-cfntools
  Version : 1.2.5
  Upstream Author : OpenStack LLC, 
* URL : http://openstack.org/ 
* License : Apache-2, BSD 
  Programming Lang: Python
  Description : Tools required to be installed on Heat provisioned cloud

This package contains tools for use with CloudFormation
 cfn-init   - Reads the AWS::CloudFormation::Init for the instance resource,
  installs packages, and starts services
 cfn-signal - Waits for an application to be ready before continuing, ie:
  supporting the WaitCondition feature
 cfn-hup- Handle updates from the UpdateStack CloudFormation API call
--- End Message ---
--- Begin Message ---
Source: heat-cfntools
Source-Version: 1.2.5-1

We believe that the bug you reported is fixed in the latest version of
heat-cfntools, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 725...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
gustavo panizzo  (supplier of updated heat-cfntools package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 24 Sep 2013 11:35:29 -0300
Source: heat-cfntools
Binary: heat-cfntools
Architecture: source all
Version: 1.2.5-1
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack 
Changed-By: gustavo panizzo 
Description: 
 heat-cfntools - Tools required to be installed on Heat provisioned cloud
Closes: 725064
Changes: 
 heat-cfntools (1.2.5-1) unstable; urgency=low
 .
   * Initial Release. (Closes: #725064)
Checksums-Sha1: 
 fb3dc65ff1c8fd910ec6cc96f7eb35c8a225069c 1535 heat-cfntools_1.2.5-1.dsc
 e8a8dd71a97432853fea637199ecde490f8f 44292 heat-cfntools_1.2.5.orig.tar.xz
 b93f052744864fd3b9f2074880d282dc9eb20d3b 62696 
heat-cfntools_1.2.5-1.debian.tar.gz
 0c4de8cc6b88802755bf70bdd389e57ae34dbe8c 72830 heat-cfntools_1.2.5-1_all.deb
Checksums-Sha256: 
 ed4a1907f7bcf1c1a84de376a450db5400b5d1206aac0ee9d192b26b3776747e 1535 
heat-cfntools_1.2.5-1.dsc
 d3484902ee52cae106e3f6ecf63e99a69dbccc284df4661979e37ddd2aa0ee38 44292 
heat-cfntools_1.2.5.orig.tar.xz
 38e857853ae9763ae98e8249039ebe00afb94469cf2b125327be74c527f36df6 62696 
heat-cfntools_1.2.5-1.debian.tar.gz
 161f6795b9bf825b0f2b6a9418de18f332aa1f3383fecd71a84bb179554eee1d 72830 
heat-cfntools_1.2.5-1_all.deb
Files: 
 1675422aa1b446b8417b33d3064bff4f 1535 python optional heat-cfntools_1.2.5-1.dsc
 b4e93ba9d9311cfd7b9e0caef5ea3eb9 44292 python optional 
heat-cfntools_1.2.5.orig.tar.xz
 a930a21a7cc2a6f6a456778c0e863810 62696 python optional 
heat-cfntools_1.2.5-1.debian.tar.gz
 f0720bf8efbb4934b1c4868eab0f9695 72830 python optional 
heat-cfntools_1.2.5-1_all.deb

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

iEYEARECAAYFAlJLxBgACgkQl4M9yZjvmkniAwCfQ+FR8imBTI8JKyUqtYzfFIJC
ZWwAoMfkbbVrIOyjPNVibfXXdLn5YZbc
=PSn7
-END PGP SIGNATURE End Message ---


Bug#714831: marked as done (ITP: pgrouting -- basic routing functionality support for PostgreSQL 9.1)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:15 +
with message-id 
and subject line Bug#714831: fixed in pgrouting 2.0.0-1
has caused the Debian Bug report #714831,
regarding ITP: pgrouting -- basic routing functionality support for PostgreSQL 
9.1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
714831: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714831
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

* Package name: pgrouting
  Version : 1.05
  Upstream Author : pgRouting Project 
* URL : http://pgrouting.org
* License : GPL
  Programming Lang: C
  Description : basic routing functionality support for PostgreSQL 9.1

pgRouting is part of PostLBS, which provides core tools for Location Based
Services (LBS). It adds support for some routing algorithm to the PostgreSQL
object-relational database and it's core includes three types of shortest path
implementation. In combination with PostGIS this extension provides more useful
functionality.


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

iQIcBAEBAgAGBQJR097UAAoJEGlMre9Rx7W2kfMP/1WEERLmuJ3tPvRYRRhB/NP3
EFK3F6RHMs1karUKrMIQWQVQtnBKWBnYPa33Az7pkP9CFanhiw3utNW4m95f25Dd
76XFP6aAeAjNkJaKcMMyNoRN73uwG643JDIK9f5ndqgBZIQsvScShfLlDZLXmJbw
w5aQg2JyiXgeTL/ZsLzpMkQlALDuk9jXY5FTSHYkXBg+PYaUxkMjeCLDX2ByOusU
of/E0azg/uX8nQGvw+DGvvaZOD5sL8FQfFxa0YqZjKI3KlXP0TLIkY5GDu7rS4p0
N2gAnwBhYoKMytPgfcvsAxfDYBYq8M+d5PymiwEuAPt3TX47TWI08WLphmQFND53
xZRh5jHbVZlWOmuZk2mnN35j5iR1oxlTCrnloaeeUOGmh068SbOK4aWgvStUw5uo
KfnF9kwxcVHpKH2JV/VTzx+qp6c4jDwAWuKuzEvciB1QtoG4op0z2avKkN+kMRMo
MycPgzd7rtzeGzkmIh6ProVkfgyAR5uwTdzTCv5DW+03W6eKJknO5sqWEd5ppifk
tHfHfkplj7cTaCmmXdlPEkM2CV8xeemaYCagz3Hyc9kJ2K6yHuhLAFiMG/Uj94nR
zEJOlKlVWZDqkTU60X8atumWiFAQHFSbmU4Ra+O+l8QnHHBuyyDc6qctBLtPHWk+
zOZ8pqOOxM0392tMVa9/
=+TN8
-END PGP SIGNATURE-
--- End Message ---
--- Begin Message ---
Source: pgrouting
Source-Version: 2.0.0-1

We believe that the bug you reported is fixed in the latest version of
pgrouting, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 714...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Fladischer  (supplier of updated pgrouting 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Oct 2013 10:55:42 +0200
Source: pgrouting
Binary: postgresql-9.3-pgrouting postgresql-9.3-pgrouting-doc
Architecture: source amd64 all
Version: 2.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project 
Changed-By: Michael Fladischer 
Description: 
 postgresql-9.3-pgrouting - basic routing functionality support for PostgreSQL 
9.3
 postgresql-9.3-pgrouting-doc - basic routing functionality support for 
PostgreSQL 9.3 (Documenta
Closes: 714831
Changes: 
 pgrouting (2.0.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #714831).
Checksums-Sha1: 
 5596180968f5c1232e92a2396b465b5e9e1466ec 2132 pgrouting_2.0.0-1.dsc
 cd2f60dc49df7bc8c789c8e73ecb9759194fab96 3765933 pgrouting_2.0.0.orig.tar.gz
 60e2c36a12f1ca386e8843fbc7e892c2004bdf39 7349 pgrouting_2.0.0-1.debian.tar.gz
 b9f9682e405a5b929ec7402bdd49586128bf4f32 167026 
postgresql-9.3-pgrouting_2.0.0-1_amd64.deb
 a5a1fadd33f2b27f9f85aa2572c0ae3e2b324809 262744 
postgresql-9.3-pgrouting-doc_2.0.0-1_all.deb
Checksums-Sha256: 
 775c9a9a194a575c7b229a849d93b214e861e7763c0bbd9e7247d997ad2ca3ee 2132 
pgrouting_2.0.0-1.dsc
 606309e8ece04abec062522374b48179c16bddb30dd4c5080b89a4298e8d163b 3765933 
pgrouting_2.0.0.orig.tar.gz
 71b64b6e9a909347ee8d3c34dcc2d3aef757c10db65cd4359eb98f036b21d500 7349 
pgrouting_2.0.0-1.debian.tar.gz
 61bead09ad301c1a4ef0e11aac4e988acdc7c04d9f4fd682c4c0f448ca0cc3b2 167026 
postgresql-9.3-pgrouting_2.0.0-1_amd64.deb
 79991fb2770db2a335b5fe587a9af5ae5ade9b73c4f2805b94f2859318d69870 262744 
postgresql-9.3-pgrouting-doc_2.0.0-1_all.deb
Files: 
 4134523be79de6895cad4e0d38f10492 2132 misc optional pgrouting_2.0.0-1.dsc
 a7b573b7aa4d038bdb24d2401bb33013 3765933 misc optional 
pgrouting_2.0.0.orig.tar.gz
 65e9e4448f116d073aeb4df6542dcbe2 7349 misc optional 
pgroutin

Bug#710786: marked as done (ITP: ruby-fakeweb -- tool for faking responses to HTTP requests)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:18 +
with message-id 
and subject line Bug#710786: fixed in ruby-fakeweb 1.3.0+dfsg-1
has caused the Debian Bug report #710786,
regarding ITP: ruby-fakeweb -- tool for faking responses to HTTP requests
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
710786: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=710786
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
package: ruby-fakeweb
Severity: wishlist
Owner: Minto Joseph 

*Package Name : fakeweb
 Version : 1.3.0
 Upstream Author : Blaine Cook, Chris Kampmeier, and other contributors
*URL :  http://rubygems.org/gems/fakeweb
*License : Expat
*Description :  tool for faking responses to HTTP requests

 FakeWeb is a helper for faking web requests in Ruby.
 It works at a global level, without modifying code or
 writing extensive stubs.
--- End Message ---
--- Begin Message ---
Source: ruby-fakeweb
Source-Version: 1.3.0+dfsg-1

We believe that the bug you reported is fixed in the latest version of
ruby-fakeweb, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 710...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cédric Boutillier  (supplier of updated ruby-fakeweb package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 04 Oct 2013 17:13:27 +0200
Source: ruby-fakeweb
Binary: ruby-fakeweb
Architecture: source all
Version: 1.3.0+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Cédric Boutillier 
Description: 
 ruby-fakeweb - tool for faking responses to HTTP requests
Closes: 710786
Changes: 
 ruby-fakeweb (1.3.0+dfsg-1) unstable; urgency=low
 .
   * Initial release (Closes: #710786)
Checksums-Sha1: 
 c85de9edd7d597a12493d97f2adacb53f7fc0ee0 2167 ruby-fakeweb_1.3.0+dfsg-1.dsc
 d5a9552285956f9fb67b6c9f6b526ce1b569846c 30544 
ruby-fakeweb_1.3.0+dfsg.orig.tar.gz
 877757d3bb089548104d2553d8f842f01dc11541 3938 
ruby-fakeweb_1.3.0+dfsg-1.debian.tar.gz
 81e39d379a950f387662eadb58886a25998f51b2 15858 
ruby-fakeweb_1.3.0+dfsg-1_all.deb
Checksums-Sha256: 
 136225f8a2fb89d190fa51fe726c73b82419e11a479c55266168e30cab4ff09c 2167 
ruby-fakeweb_1.3.0+dfsg-1.dsc
 3e8aabadf8634e11f14cec8d81092915c4c0e4d3f0b6c30ed7d76f446c63b24a 30544 
ruby-fakeweb_1.3.0+dfsg.orig.tar.gz
 ff2a62bbb8ce76ac44a0b5a178cb810295738a71d9aebffaa66c3a60401110d1 3938 
ruby-fakeweb_1.3.0+dfsg-1.debian.tar.gz
 b000a2f0a3ba959641bc855a79c574049cca686b306a20f831472af01e693e22 15858 
ruby-fakeweb_1.3.0+dfsg-1_all.deb
Files: 
 2d506ab7901d5da7b6be2f470529cb0d 2167 ruby optional 
ruby-fakeweb_1.3.0+dfsg-1.dsc
 a020c3b202f3a56b7a61e0e403abc1ef 30544 ruby optional 
ruby-fakeweb_1.3.0+dfsg.orig.tar.gz
 e2953cf2dfa6a745030a67beacbdf484 3938 ruby optional 
ruby-fakeweb_1.3.0+dfsg-1.debian.tar.gz
 ada822ae51c3162cd83928f2798b173d 15858 ruby optional 
ruby-fakeweb_1.3.0+dfsg-1_all.deb

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

iQIcBAEBCAAGBQJSTtwfAAoJEKkHZFuPn48J98cQAIqKd23KqPOILf+UOIEOku9o
TXOZmwuKvVqWloPoRyTQfV2xmYD7/o+ZmQysVGvZv5WuSZ1bnqLbhgWGLmdXhqCI
CqY7LfZ3JUUwcayJOm1DeoX2i89RgfoIuLgEjZqP14XzWiUoxuksmuB7Dz70Mp4Y
R0j2UdrB+MyKA4zvJaZm5WVHXCvWDVj9M5MofhkLiiUT8ClZfJ3ea+QymwH9PxjU
v5Rt/52zC8rrWjngYAOufx5+ujdbniDSFt+dPORJXKkj1EYQtJ3P3QmRgmW07G4t
17KscANzARLoOu0bKJdg3qKP9DiVSHOpb821iSe/+Akwh2bO+Hhczfm4OXPfcUw6
Bfg2FuwZDiLHUY+hdLFtsAHi3z97Wn0zNKgXjMsFqteoglZeF7yaPirEvycfRbdy
MdtCGUc2CyB/A3IHkv05dN1tWy87vSdqOUE4Wg7+OYedxBB72uvbWs9E+OcGN9c9
iHlAR0KLeQ5dVMtcw/q5VtD1VuPXjcLplVWqLrOsRKEnI3UN0RMMoGygqUKFvHXY
+4xpeEGesoCwM7ObK0EI+J4BkfsvmLVtbDkfpzIgHcSERqvzTVhvWExT6rvBfVqB
ZkVJoIPFlGhTnzo+odrG/Em60QB9rTTJO4Q9jQvCuKsvaNWFPioKHhtDJl3Mo5nA
GPhhqkpmzNAUSsZa3aKq
=QNYR
-END PGP SIGNATURE End Message ---


Bug#662260: marked as done (ITP: pgrouting -- basic routing functionality support for PostgreSQL 9.1)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:15 +
with message-id 
and subject line Bug#714831: fixed in pgrouting 2.0.0-1
has caused the Debian Bug report #714831,
regarding ITP: pgrouting -- basic routing functionality support for PostgreSQL 
9.1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
714831: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714831
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist


* Package name: pgrouting
  Version : 1.05
  Upstream Author : pgRouting 
* URL : http://www.pgrouting.org/
* License : GPL, Boost Software License
  Programming Lang: C, C++
  Description : Geospatial routing functionality for PostGIS/PostgreSQL

pgRouting extends the PostGIS / PostgreSQL geospatial database to
provide geospatial routing functionality.

Advantages of the database routing approach are:
* Data and attributes can be modified by many clients, like Quantum GIS
  and uDig through JDBC, ODBC, or directly using Pl/pgSQL. The clients can
  either be PCs or mobile devices.
* Data changes can be reflected instantaneously through the routing
  engine. There is no need for precalculation.
* The “cost” parameter can be dynamically calculated through SQL and its
  value can come from multiple fields or tables.


Core Features

pgRouting provides functions for:
* Shortest Path Dijkstra: routing algorithm without heuristics
* Shortest Path A-Star: routing for large datasets (with heuristics)
* Shortest Path Shooting-Star: routing with turn restrictions (with
  heuristics)
* Traveling Salesperson Problem (TSP)
* Driving Distance calculation (Isolines)


--- End Message ---
--- Begin Message ---
Source: pgrouting
Source-Version: 2.0.0-1

We believe that the bug you reported is fixed in the latest version of
pgrouting, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 714...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Fladischer  (supplier of updated pgrouting 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 03 Oct 2013 10:55:42 +0200
Source: pgrouting
Binary: postgresql-9.3-pgrouting postgresql-9.3-pgrouting-doc
Architecture: source amd64 all
Version: 2.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project 
Changed-By: Michael Fladischer 
Description: 
 postgresql-9.3-pgrouting - basic routing functionality support for PostgreSQL 
9.3
 postgresql-9.3-pgrouting-doc - basic routing functionality support for 
PostgreSQL 9.3 (Documenta
Closes: 714831
Changes: 
 pgrouting (2.0.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #714831).
Checksums-Sha1: 
 5596180968f5c1232e92a2396b465b5e9e1466ec 2132 pgrouting_2.0.0-1.dsc
 cd2f60dc49df7bc8c789c8e73ecb9759194fab96 3765933 pgrouting_2.0.0.orig.tar.gz
 60e2c36a12f1ca386e8843fbc7e892c2004bdf39 7349 pgrouting_2.0.0-1.debian.tar.gz
 b9f9682e405a5b929ec7402bdd49586128bf4f32 167026 
postgresql-9.3-pgrouting_2.0.0-1_amd64.deb
 a5a1fadd33f2b27f9f85aa2572c0ae3e2b324809 262744 
postgresql-9.3-pgrouting-doc_2.0.0-1_all.deb
Checksums-Sha256: 
 775c9a9a194a575c7b229a849d93b214e861e7763c0bbd9e7247d997ad2ca3ee 2132 
pgrouting_2.0.0-1.dsc
 606309e8ece04abec062522374b48179c16bddb30dd4c5080b89a4298e8d163b 3765933 
pgrouting_2.0.0.orig.tar.gz
 71b64b6e9a909347ee8d3c34dcc2d3aef757c10db65cd4359eb98f036b21d500 7349 
pgrouting_2.0.0-1.debian.tar.gz
 61bead09ad301c1a4ef0e11aac4e988acdc7c04d9f4fd682c4c0f448ca0cc3b2 167026 
postgresql-9.3-pgrouting_2.0.0-1_amd64.deb
 79991fb2770db2a335b5fe587a9af5ae5ade9b73c4f2805b94f2859318d69870 262744 
postgresql-9.3-pgrouting-doc_2.0.0-1_all.deb
Files: 
 4134523be79de6895cad4e0d38f10492 2132 misc optional pgrouting_2.0.0-1.dsc
 a7b573b7aa4d038bdb24d2401bb33013 3765933 misc optional 
pgrouting_2.0.0.orig.tar.gz
 65e9e4448f116d073aeb4df6542dcbe2 7349 misc optional 
pgrouting_2.0.0-1.debian.tar.gz
 9ceefdadfd0e56e6f16fb5ffd77b9530 167026 misc optional 
postgresql-9.3-pgrouting_2.0.0-1_amd64.deb
 f016a10ece5757e583293994ee62dc7e 262744 doc optional 
postgresql-9.3-pgrouting-doc_2.0.0-1_all.deb

-BEGIN PGP SIGNATURE-
Versi

Bug#696163: marked as done (ITP: caveconverter -- Cave survey data format converter)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:06 +
with message-id 
and subject line Bug#696163: fixed in caveconverter 0~20130921-1
has caused the Debian Bug report #696163,
regarding ITP: caveconverter -- Cave survey data format converter
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
696163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=696163
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Wookey 

* Package name: caveconverter
  Version : 20100825
  Upstream Author : Paul Fretwell 
* URL : Doesn't have one currently - a web page is in preparation.
* License : GPL-3+
  Programming Lang: Java
  Description : Cave survey data format converter

Software to convert between various survey data formats. Formats
currently supported are:
 formats written: Toporobot, Survex, Compass
 formats read: Survex, Pockettopo text file, dxf (polylines and lines)
This version is a command-line utility. 
--- End Message ---
--- Begin Message ---
Source: caveconverter
Source-Version: 0~20130921-1

We believe that the bug you reported is fixed in the latest version of
caveconverter, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 696...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Wookey  (supplier of updated caveconverter package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 03 Dec 2011 22:58:32 +
Source: caveconverter
Binary: caveconverter
Architecture: source all
Version: 0~20130921-1
Distribution: unstable
Urgency: low
Maintainer: Wookey 
Changed-By: Wookey 
Description: 
 caveconverter - Cave survey data format converter
Closes: 696163
Changes: 
 caveconverter (0~20130921-1) unstable; urgency=low
 .
   * Initial release. (Closes:#696163)
Checksums-Sha1: 
 b700d0035d8c5ba74cd63889175ce40850480589 1254 caveconverter_0~20130921-1.dsc
 b24204e9a9283dd44584a83ab95a99cd670256df 206584 
caveconverter_0~20130921.orig.tar.gz
 64fd349cf2461e33b4bc801efee6764ed29db248 3009 
caveconverter_0~20130921-1.debian.tar.gz
 63f9aac1bf2591b83fa7415695c26ff5ceaaf6b2 61848 
caveconverter_0~20130921-1_all.deb
Checksums-Sha256: 
 e21e656d424e839ca9b3de00cf3a2c5423ae6531607a57c5881afa99edebf5ab 1254 
caveconverter_0~20130921-1.dsc
 50a3dd7ec369fb017fcc6df1e95a844eb3e00a2315d7d20a95edde64bed69a90 206584 
caveconverter_0~20130921.orig.tar.gz
 9aa0d8c925f26b1f4c82e1820003e18ccf5c4e39d1e65ed55c1269e6649053bf 3009 
caveconverter_0~20130921-1.debian.tar.gz
 d711d010fe266dfbb59b11ef050f6d17c2969ef5306120af625a5bba0a671e31 61848 
caveconverter_0~20130921-1_all.deb
Files: 
 d3c792a7b1cc4b30e8043be9bd1622cc 1254 misc optional 
caveconverter_0~20130921-1.dsc
 81eef5bfd91cdfc1f21d35b318524573 206584 misc optional 
caveconverter_0~20130921.orig.tar.gz
 3e109270a19d3ae27d80d3c914b7 3009 misc optional 
caveconverter_0~20130921-1.debian.tar.gz
 c59e24b43f3c6d5b0e61916306ac1c27 61848 misc optional 
caveconverter_0~20130921-1_all.deb

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

iEYEARECAAYFAlJQyM8ACgkQIWclcBdP7jWwWQCgjbf4rzzrYGm+oibMLp1EDQME
Tu0AoMlOTTgyl1M470jffAwyiZsmpm2/
=0BF2
-END PGP SIGNATURE End Message ---


Bug#565453: marked as done (ITP: statmod -- GNU R package providing statistical modeling functions)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:17 +
with message-id 
and subject line Bug#565453: fixed in r-cran-statmod 1.4.18-1
has caused the Debian Bug report #565453,
regarding ITP: statmod -- GNU R package providing statistical modeling functions
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
565453: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565453
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
owner: b...@loftninjas.org

http://cran.r-project.org/web/packages/statmod/index.html

LGPL-2 license


--- End Message ---
--- Begin Message ---
Source: r-cran-statmod
Source-Version: 1.4.18-1

We believe that the bug you reported is fixed in the latest version of
r-cran-statmod, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 565...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sébastien Villemot  (supplier of updated r-cran-statmod 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 02 Oct 2013 15:40:39 +0200
Source: r-cran-statmod
Binary: r-cran-statmod
Architecture: source amd64
Version: 1.4.18-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 

Changed-By: Sébastien Villemot 
Description: 
 r-cran-statmod - GNU R package providing various statistical modeling functions
Closes: 565453
Changes: 
 r-cran-statmod (1.4.18-1) unstable; urgency=low
 .
   * Initial release. (Closes: #565453)
Checksums-Sha1: 
 dd5e938fa14d1bac1b85f83b8dddb841b791d7a5 2089 r-cran-statmod_1.4.18-1.dsc
 23e0f9814d18af9c007d3767fe9af962c2423e6d 53411 
r-cran-statmod_1.4.18.orig.tar.gz
 09b8200134f4a65b2165436a50d0cf0ebb1c35ed 1824 
r-cran-statmod_1.4.18-1.debian.tar.gz
 d3166090f8eeca266a1cd1c32731f7a0cc6042a2 137808 
r-cran-statmod_1.4.18-1_amd64.deb
Checksums-Sha256: 
 efe92687bd270c202f324fc4a42e8a5707bfa660b6c102458aa435bd5d66f293 2089 
r-cran-statmod_1.4.18-1.dsc
 dc02376d1ae2af3592177bae4ba0620b47f6d5e8217ac5faa9e948600d148f69 53411 
r-cran-statmod_1.4.18.orig.tar.gz
 3df498c43157ad9e9c559d1710703d09cdf9d233ef275becc69465f451031567 1824 
r-cran-statmod_1.4.18-1.debian.tar.gz
 671924aceaf5771effa701d8146c12f1c11ec9bd41420d15649a5c057d4231fd 137808 
r-cran-statmod_1.4.18-1_amd64.deb
Files: 
 eeae067d537153ea2bd9842f7b5c857d 2089 gnu-r optional 
r-cran-statmod_1.4.18-1.dsc
 221ed2e712ab334a609c5eb0cc80f204 53411 gnu-r optional 
r-cran-statmod_1.4.18.orig.tar.gz
 22a8b4d405716812681643b0dc826f57 1824 gnu-r optional 
r-cran-statmod_1.4.18-1.debian.tar.gz
 50f2ea990f7d5502e02490fee4bd46b1 137808 gnu-r optional 
r-cran-statmod_1.4.18-1_amd64.deb

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

iQIcBAEBCAAGBQJSTDHzAAoJECzs6TUOzr5KdSAP/3U2OhS2UDiHnSMQoIbhT8W4
9Os+0W7/QRx9kiUR8TcSLQR/AAkFTod+9BDUMv1hNqJ+FyR6kjUJdvU8PAcGYM1T
RW5aLY2hWZmmSTNoXX3jwUZ595agAk8U+F6e2rEV68LJlD+r/20zcjsJiMr4TkWK
L01sCENILKKlvCBxAF2m+ofsIFbF/UycaLK7bgFmbB57ApBXGbgi0T+T2LyqUyaz
tA3EekLi8Vc5KpQo9EzXmEeYgVNuPELP8dh3z+H6V/wX2+S17+jEiMyXY6Y2qrVp
UQyXqZq8NQrLI8WYJKe0UBP/VVQQyWa+26jGiBiovxKtGUxDGFOiwoWKdmQKMSBp
oCh11EZ47cxvI6CzodRwzZojMVIKXdDiRFsyByOA1zLrLFtH3BHgrE1CWnaoHq8p
eB8pV4z1VeKC+nLVp838qWdWnMxFioVBXRMyODdw+rQ2s5eM5FbIYnzT1YyLEvUk
KkEG0oBLi35XZXeVZU0+bega23wtm24iyIGqgjx7F20LvCvvbxFcNPNEhWPglB8H
YAToInbJGn9gHWbSvJsIBw4zKRpWIcb+Eqx+CNOAzaUj8oTw/hCKaN2IxyZ9qiJQ
98Cn7UaH3QIw7ou6UngvYI5UN8rXVgn6Ngp/ap8yAdUksNwUnGPZTOJBR6hFqRNM
UoyNQKtLGhMbtbVXi+IQ
=4vUh
-END PGP SIGNATURE End Message ---


Bug#678229: marked as done (ITP: tilem -- GTK+ TI Z80 calculator emulator)

2013-10-26 Thread Debian Bug Tracking System
Your message dated Sun, 27 Oct 2013 06:00:19 +
with message-id 
and subject line Bug#678229: fixed in tilem 2.0-1
has caused the Debian Bug report #678229,
regarding ITP: tilem -- GTK+ TI Z80 calculator emulator
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
678229: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=678229
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Albert Huang 

* Package name: tilem
  Version : 2.0.0
  Upstream Author : TilEm2 
* URL : http://lpg.ticalc.org/prj_tilem/
* License : GPL, LGPL, GFDL
  Programming Lang: C
  Description : GTK+ TI Z80 calculator emulator
 TilEm is an emulator and debugger for Texas Instruments' Z80-based graphing
 calculators. It can emulate any of the following calculator models:
  * TI-73 / TI-73 Explorer
  * TI-76.fr
  * TI-81
  * TI-82
  * TI-82 STATS / TI-82 STATS.fr
  * TI-83
  * TI-83 Plus / TI-83 Plus Silver Edition / TI-83 Plus.fr
  * TI-84 Plus / TI-84 Plus Silver Edition / TI-84 pocket.fr
  * TI-85
  * TI-86
 TilEm fully supports all known versions of the above calculators (as of 2012),
 and attempts to reproduce the behavior of the original calculator hardware as
 faithfully as possible. In addition, TilEm can emulate the TI-Nspire's virtual
 TI-84 Plus mode. This is currently experimental, and some programs may not
work
 correctly.
 .
 TilEm runs on the X Window System on GNU/Linux and other Unix-like platforms,
 as well as on Microsoft Windows, and any other platform supported by the GTK+
 library. In addition to the emulation, TilEm 2 provide a lot of extra
features,
 such as:
  * Fully featured debugger
  * Grabbing screenshots and recording gif (animations)
  * Virtual linking (through libticables)
  * Flash writing and erasing
  * Application and OS loading
  * Scripting using macros


--- End Message ---
--- Begin Message ---
Source: tilem
Source-Version: 2.0-1

We believe that the bug you reported is fixed in the latest version of
tilem, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 678...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas B. Mundt  (supplier of updated tilem package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 03 Oct 2013 22:22:27 +0200
Source: tilem
Binary: tilem tilem-data
Architecture: source amd64 all
Version: 2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 

Changed-By: Andreas B. Mundt 
Description: 
 tilem  - GTK+ TI Z80 calculator emulator
 tilem-data - GTK+ TI Z80 calculator emulator (data files)
Closes: 678229
Changes: 
 tilem (2.0-1) unstable; urgency=low
 .
   * Initial release (closes: #678229).
Checksums-Sha1: 
 d3ee499ec301f3ed0526092d56e4025ae6b62a50 2110 tilem_2.0-1.dsc
 bac88e725de57ddb13eca1c9bb3994ba85bfe12b 2438290 tilem_2.0.orig.tar.bz2
 b175880779a39f730630998f26c78219a2c120fd 5803 tilem_2.0-1.debian.tar.gz
 bea7933c9e77f6d11b15ee39bf4c2db9e3d66b6c 170194 tilem_2.0-1_amd64.deb
 9bc17216f92087065c3fe23f63aa180a68259eb5 2154856 tilem-data_2.0-1_all.deb
Checksums-Sha256: 
 d3bf58b7751153b14b85143a4899c1bcd52b4e3225d37af6f2735d7f9f90749e 2110 
tilem_2.0-1.dsc
 4e752f63477640d72fd8b48ca5acd7a7590f3b29005d603cd59a687a2fce8576 2438290 
tilem_2.0.orig.tar.bz2
 3240acfdf8f672c09e8b95558e98f00603983ee14ef78e277b415f276b6e255e 5803 
tilem_2.0-1.debian.tar.gz
 a99165e05f65479a3fa72d576102dc866bbce1497f202b012b5d98c2efe97413 170194 
tilem_2.0-1_amd64.deb
 18171aaef90c97b41377357e2ffa88fbc780f8e63948a098a529da1d92d62bd0 2154856 
tilem-data_2.0-1_all.deb
Files: 
 660511131400d8c5d0053dcf4411730d 2110 math optional tilem_2.0-1.dsc
 cfa9edc10c77e9faf7ff52772e1af1f9 2438290 math optional tilem_2.0.orig.tar.bz2
 9c99ab96f13e6f8ecb4dd2c78ff7a53c 5803 math optional tilem_2.0-1.debian.tar.gz
 7e1ecb3ab37e0323e03296c028f0df46 170194 math optional tilem_2.0-1_amd64.deb
 e4e94a08268e4ff244e2578ad56302c1 2154856 math optional tilem-data_2.0-1_all.deb

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

iQIcBAEBCgAGBQJSTdU5AAoJELAf6oRhe1htoQgP/2FeD3u2QI0xQAtcXG7/zFXS
G7wA4FJ

Bug#562968: RFS: otpasswd/0.8-1 [ITP]

2013-10-26 Thread Tomasz bla Fortuna
Hello,

I've just redone the package. Last is available at
http://mentors.debian.net/package/otpasswd

I intend to test it and update in case of any bugs are found. It
currently works for me on a single machine.

I'd love to see this package included in Debian and I'm willing to
maintain it - along with the upstream. 

Therefore - I'm looking for a sponsor.


 * Package name: otpasswd
   Version : 0.8-1
   Upstream Author : Tomasz bla Fortuna 
 * URL : http://otpasswd.thera.be
 * License : GNU GPL3. Intend to relicense to BSD-like.
   Section : admin

It builds those binary packages:
  libpam-otpasswd - one-time passwords implementation, PAM module
  otpasswd-bin - one-time passwords implementation, system utility

dget -x http://mentors.debian.net/debian/pool/main/o/otpasswd/otpasswd_0.8-1.dsc


Thanks,
-- 
Tomasz bla Fortuna
jid: bla(at)thera.be
pgp: 0x90746E79 @ pgp.mit.edu
www: http://bla.thera.be


signature.asc
Description: PGP signature


Processed: RFS: otpasswd/0.8-1 [ITP]

2013-10-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 562968 ITP: otpasswd -- one-time passwords implementation for PAM
Bug #562968 [wnpp] RFP: otpasswd -- one-time passwords implementation for PAM
Changed Bug title to 'ITP: otpasswd -- one-time passwords implementation for 
PAM' from 'RFP: otpasswd -- one-time passwords implementation for PAM'
> owner 562968 !
Bug #562968 [wnpp] ITP: otpasswd -- one-time passwords implementation for PAM
Owner recorded as Tomasz bla Fortuna .
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
562968: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=562968
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13828461264440.transcr...@bugs.debian.org



Processed: reassign 487924 to wnpp

2013-10-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Since this is now a RFP, it should be under wnpp
> reassign 487924 wnpp
Bug #487924 [subversion] RFP: svnbook -- Subversion handbook ("Version Control 
With Subversion")
Bug reassigned from package 'subversion' to 'wnpp'.
No longer marked as found in versions subversion/1.4.6dfsg1-4.
Ignoring request to alter fixed versions of bug #487924 to the same values 
previously set
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
487924: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=487924
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.138283787127394.transcr...@bugs.debian.org



Bug#711017: RFP: cronic -- Cronic is a shim for wrapping cron jobs so that cron only sends email when an error has occurred.

2013-10-26 Thread Nicholas Robinson-Wall
Hi,

I believe you are actually looking for 'chronic', which is already
provided by package 'morutils' at /usr/bin/chronic.

-Nick


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20131027004419.GA4722@kifutu.local



Bug#725309: RFP: teatimer - A tea brewing timer

2013-10-26 Thread intrigeri
Hi,

Emilio Pozuelo Monfort wrote (26 Oct 2013 15:02:06 GMT) :
>> I'd like to team-maintain this package under the GNOME team umbrella.
>> Thoughts about this?

> I feel like we already have too many non-core packages that somebody packaged
> and eventually lost interest or just went MIA. I've been trying to reduce that
> and make things go the opposite way, so I don't like this, sorry.

Fair enough, understood.

Here's my plan, then: I'll maintain this extension on my own for
a while, and if it proves to be well-maintained enough upstream and
still seems to be a worthwhile addition to Debian, and once my record
suggests I'm not going MIA, then I might propose team-maintenance
again, and we'll see (if you're curious, see e.g. the GTK / GObject
Introspection / etc. Perl bindings, that I'm maintaining as part of
the Perl team, for an example of how I've been handling
team-maintenance of packages that I'm primarily interested in).

As a side note, my (limited) experience in the Debian Perl team is
that most new members join us to maintain a new package or a few.
Certainly, quite a few of them go MIA after a while, but that's also
our main way to get new contributors, and some of them eventually get
more involved in the team. I'm not saying *I* specifically was
intending to become strongly invested in the GNOME team (ENOTIME),
just sharing my experience that sometimes, when the team can handle it
(I know that may be a hard pre-requisite), it's worth it to allow
people to potentially add to the collective plate (if they disappear),
if it brings a few active team members in.

Anyway, thanks a lot for your work on GNOME in Debian!

Cheers,
-- 
  intrigeri
  | GnuPG key @ https://gaffer.ptitcanardnoir.org/intrigeri/intrigeri.asc
  | OTR fingerprint @ https://gaffer.ptitcanardnoir.org/intrigeri/otr.asc


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/85iowjr25b@boum.org



Bug#727798: ITP: node-range-parser -- HTTP Range header parser - Node.js module

2013-10-26 Thread Jérémy Lal
Package: wnpp
Severity: wishlist
Owner: "Jérémy Lal" 

* Package name: node-range-parser
  Version : 0.0.4
  Upstream Author : TJ Holowaychuk 
* URL : https://github.com/visionmedia/node-range-parser
* License : Expat
  Programming Lang: JavaScript
  Description : HTTP Range header parser - Node.js module

This module parses the HTTP Range header, relative to a given length,
the length being a file size in most applications.
.
Node.js is an event-based server-side javascript engine.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20131026230345.9116.68890.reportbug@imac.chaumes



Bug#727797: ITP: node-fresh -- Check freshness of HTTP request and response headers - Node.js module

2013-10-26 Thread Jérémy Lal
Package: wnpp
Severity: wishlist
Owner: "Jérémy Lal" 

* Package name: node-fresh
  Version : 0.2.0
  Upstream Author : TJ Holowaychuk 
* URL : https://github.com/visionmedia/node-fresh
* License : Expat
  Programming Lang: JavaScript
  Description : Check freshness of HTTP request and response headers - 
Node.js module

This module checks HTTP If-Modified-Since, If-None-Match, Cache-Control
request headers, as well as Last-Modified, Etag response headers to
determine if the client requesting the resource has a stale or fresh cache.
.
Node.js is an event-based server-side javascript engine.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20131026220336.27946.49137.reportbug@imac.chaumes



Bug#727795: ITP: node-raw-body -- Request body length validation supporting streams - module for Node.js

2013-10-26 Thread Jérémy Lal
Package: wnpp
Severity: wishlist
Owner: "Jérémy Lal" 

* Package name: node-raw-body
  Version : 0.0.3
  Upstream Author : Jonathan Ong 
* URL : https://github.com/stream-utils/raw-body
* License : Expat
  Programming Lang: JavaScript
  Description : Request body length validation supporting streams - module 
for Node.js

This module gets the entire buffer of a stream and validates its length
against an expected length. A limit can also be set, preventing memory
exhaustion. It is useful for parsing request bodies.
.
Node.js is an event-based server-side javascript engine.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20131026204154.19830.69472.reportbug@imac.chaumes



Bug#714820: Any news on packaging ntopng?

2013-10-26 Thread Giovanni Mascellani
Hi.

Are there any news on the packaging of ntopng? Is there a copy of the
unofficial package somewhere, perhaps on Debian VCS?

BTW, I think that upstream is going to release a new version very soon,
possibly next week.

Thanks, Giovanni.
-- 
Giovanni Mascellani 
Pisa, Italy

Web: http://poisson.phc.unipi.it/~mascellani
Jabber: g.mascell...@jabber.org / giova...@elabor.homelinux.org



signature.asc
Description: OpenPGP digital signature


Processed: tagging as pending bugs that are closed by packages in NEW

2013-10-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Saturday 26 October  19:03:17 UTC 2013
> # Tagging as pending bugs that are closed by packages in NEW
> # http://ftp-master.debian.org/new.html
> #
> # Source package in NEW: ruby-mizuho
> tags 727757 + pending
Bug #727757 [wnpp] ITP: ruby-mizuho -- Mizuho documentation formatting tool
Added tag(s) pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
727757: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=727757
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13828142013027.transcr...@bugs.debian.org



Bug#727146: ITP: dooble -- WebKit based light browser

2013-10-26 Thread Timo Juhani Lindfors
Richard Sellam  writes:
> the description " Dooble, a light browser created in qt to create a
> safe browsing environment." can (should?) probably be replaced with "
> Dooble, a light browser created in qt focused on privacy and
> security".

Maybe. I was mostly refering to the release notes that list only two
browsers with security support (iceweasel and chromium):

http://www.debian.org/releases/stable/amd64/release-notes/ch-information.en.html#browser-security

Would you expect dooble to make that list some time in the future?

-Timo


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



Processed: your mail

2013-10-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> unarchive 278940
Bug #278940 {Done: David Moreno Garza } [wnpp] ITP: 
socket++ -- lightweight convenience library to handle low level BSD sockets in 
C++
Unarchived Bug 278940
> reopen 278940 !
Bug #278940 {Done: David Moreno Garza } [wnpp] ITP: 
socket++ -- lightweight convenience library to handle low level BSD sockets in 
C++
Bug reopened
Changed Bug submitter to 'Mathieu Malaterre ' from 'Dan Weber 
'
Ignoring request to alter fixed versions of bug #278940 to the same values 
previously set
> owner 278940 !
Bug #278940 [wnpp] ITP: socket++ -- lightweight convenience library to handle 
low level BSD sockets in C++
Owner recorded as Mathieu Malaterre .
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
278940: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=278940
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13828029691729.transcr...@bugs.debian.org



Bug#725309: RFP: teatimer - A tea brewing timer

2013-10-26 Thread Emilio Pozuelo Monfort
Hi,

On 22/10/13 17:15, intrigeri wrote:
> * Package name: gnome-shell-extension-teatime
>   Version : 0~20131022.git6cac4a1
>   Upstream Author : Olaf Leidinger 
> * URL or Web page : https://github.com/oleid/gnome-shell-teatime.git
> * License : MIT
>   Description : tea brewing timer extension for GNOME Shell
> 
>  gnome-shell-extension-teatime is an extension for helping in brewing tea
>  in GNOME Shell, featuring support for various configurable timers.
> 
> I'd like to team-maintain this package under the GNOME team umbrella.
> Thoughts about this?

I feel like we already have too many non-core packages that somebody packaged
and eventually lost interest or just went MIA. I've been trying to reduce that
and make things go the opposite way, so I don't like this, sorry.

Cheers,
Emilio


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/526bd96e.4030...@debian.org



Bug#727146: ITP: dooble -- WebKit based light browser

2013-10-26 Thread Richard Sellam

Hello,

The browser runs by default with options that are usually found in other 
browsers "private mode"  and the user explicitly grants exceptions to 
retain data from various sites between launches.


Dooble is focused on privacy and security:
- it comes with a secure P2P email client and serverless messenger 
called Interface
- all settings (Internet browsing history, cookies, cache, bookmarks, 
favicons...) can be encrypted with a user defined passphrase, and user 
is encouraged to do so on start
- always HTTPS, do not track, hide referrer, suppress redirections and 
automatic cookies sweep can be selected in the settings
- search box in the toolbar includes alternative search engines like 
Blekko, YaCy and WolframAlpha


the description " Dooble, a light browser created in qt to create a safe 
browsing environment." can (should?) probably be replaced with " Dooble, 
a light browser created in qt focused on privacy and security".


Regards,

Le 23/10/2013 10:42, Timo Juhani Lindfors a écrit :

Richard Sellam  writes:

  Dooble, a light browser created in qt to create a safe browsing
  environment.

What do you mean with safe? Is this browser going to have security
support?





Bug#722249: ITP: simplescreenrecorder -- a simple program to record (last ping)

2013-10-26 Thread Eriberto
Hi,

Do you have interest to package it yet? Reply me please, saying about
your interest and time limit to release.

Regards,

Eriberto

2013/10/8 Eriberto :
> Hey,
>
> Writing to know news about this package because I have some interest
> in use it. Do you need some help?
>
> Have a nice day.
>
> Regards,
>
> Eriberto


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/cap+dxjd7ez2duxfqigt5wmr1w3honyu4lq6pc0lay6jbboy...@mail.gmail.com



Bug#727727: RFP: rssdrop -- deliver rss feeds to Maildirs

2013-10-26 Thread Etienne Millon
* Dominik George  [131026 13:08]:
> I do not see why. A sponsor can decide to sponsor or not to sponsor
> the package without any discussion if they feel so inclined.

I see two benefits in filing an ITP in advance:

  - it reduces work duplication, should another person work on this
package at the same time.
  - it can answer the usual questions: is this package needed, what
need does it answer, is it legally suitable for inclusion in
Debian.

(cf. devref §5.1)

The second point is in part answered by a sponsor, but as ITPs are
CC'd to d-devel the whole project (and not only people interested in
sponsoring) can discuss about it.

(Just to be clear, I have no objection to including rssdrop.)

-- 
Etienne Millon


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20131026111817.GA20744@klow



Bug#727727: RFP: rssdrop -- deliver rss feeds to Maildirs

2013-10-26 Thread Dominik George
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Etienne Millon  schrieb:
>> >Also, you should really file an ITP before working on the package.
>>
>> Oh, you're right. Good thing I retitled it long before your mail :)!
>
>JFTR I meant that there should be enough time for discussion between
>when the ITP is filed and the corresponding RFS is sent :)

I do not see why. A sponsor can decide to sponsor or not to sponsor the package 
without any discussion if they feel so inclined.

- -nik
-BEGIN PGP SIGNATURE-
Version: APG v1.0.8-fdroid

iQFNBAEBCgA3BQJSa51kMBxEb21pbmlrIEdlb3JnZSAobW9iaWxlIGtleSkgPG5p
a0BuYXR1cmFsbmV0LmRlPgAKCRAvLbGk0zMOJZlPB/943Y5LboFYWALibtLYx97d
ZHBU3C/yUDNws7qu0T0Ki0BBd1BbH1N3r4aKCp5xenJmefDtg0xTstUPGFD1Ruyx
xpjpIyP9QJI/PJSNst5DsskjewV6HJHoV0juJeMGAY3LOkjepjpHGVmWvkXhyszl
9b7jMiH3l5ygFcmH6CQ4TclBW/+lrhn5p/8s7nprjMflcWA8oBbSCqaru4nQpMXC
Tmlkk1MuRd2KyZ1L7HBUF13DG40806r7k7N5l/u5iIIJZm/eraa2YMo37dhWiUTM
i7xYmhV3Reb7Oi45RdJCILHOtXmeCNWHaxFvSb34zfitGH2OzfTPWQ3LA5wKQ7Gr
=xSMz
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/afa9847f-c948-4226-9cd3-40a286f0d...@email.android.com



Bug#727727: RFP: rssdrop -- deliver rss feeds to Maildirs

2013-10-26 Thread Etienne Millon
> >Also, you should really file an ITP before working on the package.
> 
> Oh, you're right. Good thing I retitled it long before your mail :)!

JFTR I meant that there should be enough time for discussion between
when the ITP is filed and the corresponding RFS is sent :)

-- 
Etienne Millon


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20131026104318.GA20637@klow



Bug#727759: ITP: websocket-client -- WebSocket client library for python

2013-10-26 Thread Nicolas Dandrimont
Package: wnpp
Severity: wishlist
Owner: Nicolas Dandrimont 

* Package name: websocket-client
  Version : 0.12.0
  Upstream Author : liris 
* URL : https://github.com/liris/websocket-client
* License : LGPL-2.1+
  Programming Lang: Python
  Description : WebSocket client library for python

 websocket-client provides a low-level, synchronous API providing WebSocket
 client functionality to Python programs. It conforms to the WebSocket
 specification as standardized by the IETF in RFC 6455.
 .
 WebSocket is a protocol providing full-duplex communication channels over
 TCP, mostly used in Web browsers.

This module is a test dependency for moksha.hub. It will be packaged under the
DPMT umbrella, and the binary package will be called python-websocket
as per the Debian Python Policy.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20131026094406.6017.11840.report...@darboux.home.olasd.eu



Processed: block 680357 with 727757

2013-10-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 680357 with 727757
Bug #680357 [ruby-passenger-doc] ruby-passenger-doc: Documentation package 
contains almost empty files
680357 was not blocked by any bugs.
680357 was not blocking any bugs.
Added blocking bug(s) of 680357: 727757
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
680357: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680357
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.138278017531444.transcr...@bugs.debian.org



Bug#727757: ITP: ruby-mizuho -- Mizuho documentation formatting tool

2013-10-26 Thread Felix Geyer
Package: wnpp
Severity: wishlist
Owner: Felix Geyer 

* Package name: ruby-mizuho
  Version : 0.9.19
  Upstream Author : Hongli Lai
* URL : https://github.com/FooBarWidget/mizuho
* License : Expat
  Programming Lang: Ruby
  Description : Mizuho documentation formatting tool

Mizuho is a documentation formatting tool, best suited for small to
medium-sized documentation.
Mizuho converts Asciidoc input files into nicely outputted HTML,
possibly one file per chapter. Multiple templates are supported,
so you can write your own.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20131026093028.30989.26333.reportbug@localhost6.localdomain6



Bug#727727: RFP: rssdrop -- deliver rss feeds to Maildirs

2013-10-26 Thread Dominik George
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Hi,

>How is this different from rss2email? It's also a local client that
>allows sending email in response to RSS feeds.

It's an alternative.

>Also, you should really file an ITP before working on the package.

Oh, you're right. Good thing I retitled it long before your mail :)!

- -nik
-BEGIN PGP SIGNATURE-
Version: APG v1.0.8-fdroid

iQFNBAEBCgA3BQJSa4lmMBxEb21pbmlrIEdlb3JnZSAobW9iaWxlIGtleSkgPG5p
a0BuYXR1cmFsbmV0LmRlPgAKCRAvLbGk0zMOJWyUCAC1W5tifJByX87RabSsekg1
YTuZ3AOyBMvNlUPhAjC0irXSq5XlotnJj3Zty5XToJNSaEvY4ZCi7gT+lyOw7Ddy
uiYwXpAzdNnGCNv7yd7TDdIwWMZx63i/YdAeDLsnPUCHfFDCzgu4XbJD6DvoWW4Z
s4l8VMuUx/N1jn+fIRKSUjXcqZ5Dmywm6qXJdOHWXs+w/LN3Jyr8pC+pbHjV
TyR5WOBcJxnqPJ9yEky/Jq4KIHmMXQpzE/sGlHxrBQrrT0NvrJVUBGvdlxjwrBwj
4TDSaBoJSQxPX/VKqHL/CpfmKHk5FiV8Vx5NaqF90/rOn4grwqzqhFpEtQtizOi6
=y3ZS
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/8709d1d4-cdcb-4fae-be13-a7ca00a8c...@email.android.com



Bug#727727: RFP: rssdrop -- deliver rss feeds to Maildirs

2013-10-26 Thread Etienne Millon
Hi,

How is this different from rss2email? It's also a local client that
allows sending email in response to RSS feeds.

Right now it can't deliver directly to a Maildir, but it's possible
through a patch (https://github.com/wking/rss2email/pull/21), or via a
MDA (see #446160 for a discussion - that's personally how I use it).

Also, you should really file an ITP before working on the package.

Have a nice day

-- 
Etienne Millon


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20131026074518.GA6323@klow



Processed: Bug#650196: timebrowse: changing back from ITP to RFP

2013-10-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 650196 RFP: timebrowse -- NILFS Snapshot Manager/Windows VSS like 
> Nautilus extension
Bug #650196 [wnpp] ITP: timebrowse -- NILFS Snapshot Manager/Windows VSS like 
Nautilus extension
Changed Bug title to 'RFP: timebrowse -- NILFS Snapshot Manager/Windows VSS 
like Nautilus extension' from 'ITP: timebrowse -- NILFS Snapshot 
Manager/Windows VSS like Nautilus extension'
> noowner 650196
Bug #650196 [wnpp] RFP: timebrowse -- NILFS Snapshot Manager/Windows VSS like 
Nautilus extension
Removed annotation that Bug was owned by Dmitry Smirnov .
> --
Stopping processing here.

Please contact me if you need assistance.
-- 
650196: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650196
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.138277307425111.transcr...@bugs.debian.org



Bug#650196: timebrowse: changing back from ITP to RFP

2013-10-26 Thread Dmitry Smirnov
retitle 650196 RFP: timebrowse -- NILFS Snapshot Manager/Windows VSS like 
Nautilus extension
noowner 650196

--

I've decided to return this package to RFP state because nobody
expressed any interest to this package since my ITP. I reckon NILFS2
is not very popular even though it is great and very stable file
system.

I committed complete packaging to the following repository:

http://anonscm.debian.org/gitweb/?p=collab-maint/timebrowse.git

Source package produces the following binary packages:

 * nilfs-ss-manager - NILFS Snapshot Manager
 * nautilus-timebrowse - nautilus extension to access NILFS2 snapshots

"nilfs-ss-manager" works well. 

"nautilus-timebrowse" do not work at all (it used to work but now it
needs to be updated for python gtk mess and new nautilus). Anyway it
is not very useful because with "nilfs-ss-manager" NILFS2 snaphots can
be accessed using any file manager. Perhaps "nilfs-ss-manager" can be
shipped alone.

Upstream status: dormant with no commits since April 2011.

-- 
Cheers,
 Dmitry Smirnov
 GPG key : 4096R/53968D1B

---

Science embraces facts and debates opinion; religion embraces opinion
and debates the facts.
-- Tom Heehler, The Well-Spoken Thesaurus.


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201310261837.44757.only...@debian.org



Bug#725205: Copyright review for the packages libpath-isdev-perl, libpath-finddev-perl and libfile-sharedir-projectdistdir-perl.

2013-10-26 Thread Charles Plessy
user debian-le...@lists.debian.org
usertags 725205 one-copyright-review
usertags 725204 one-copyright-review
usertags 725135 one-copyright-review
thanks

Dear Perl maintainers,

In the hope of speeding up and strenghtening the processing of NEW I had a look
at your packages libpath-isdev-perl, libpath-finddev-perl and
libfile-sharedir-projectdistdir-perl. The rationale is explained in the
proposal in the following wiki page.

http://wiki.debian.org/CopyrightReview

I have not found explicit copyright or licence statement that would be
missing from your debian/copyright file.

Have a nice week-end,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20131026071526.gg17...@falafel.plessy.net



Bug#681335: Review of the copyright file for libmath-int64-perl 0.30-1.

2013-10-26 Thread Charles Plessy
user debian-le...@lists.debian.org
usertags 681335 one-copyright-review
thanks

Dear Perl packagers,

In the hope of speeding up and strenghtening the processing of NEW I had a look
at your package. The rationale is explained in the proposal in the following
wiki page.

http://wiki.debian.org/CopyrightReview

I only found a minor error (strtoint.h -> strtoint64.h), that I corrected in
the package's git repository.

Have a nice week-end,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20131026071105.gf17...@falafel.plessy.net



Processed: tagging as pending bugs that are closed by packages in NEW

2013-10-26 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Saturday 26 October  07:03:11 UTC 2013
> # Tagging as pending bugs that are closed by packages in NEW
> # http://ftp-master.debian.org/new.html
> #
> # Source package in NEW: bossa
> tags 726061 + pending
Bug #726061 [wnpp] IFP: bossa -- Atmel SAM ARM microcontroller flash
Added tag(s) pending.
> # Source package in NEW: trace-cmd
> tags 691502 + pending
Bug #691502 [wnpp] ITP: trace-cmd -- Front-end tool for ftrace
Added tag(s) pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
691502: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691502
726061: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=726061
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-wnpp-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.138277100314880.transcr...@bugs.debian.org