Processed: retitle 860552 to RFA: rbtools -- set of client tools to use with Review Board

2017-04-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 860552 RFA: rbtools -- set of client tools to use with Review Board
Bug #860552 [wnpp] RFA: rbtools
Changed Bug title to 'RFA: rbtools -- set of client tools to use with Review 
Board' from 'RFA: rbtools'.
> thanks
Stopping processing here.

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



Bug#726486: pump.io packaging help (from upstream)

2017-04-19 Thread Alex Jordan
Heya!

Relatively recently I became the primary maintainer of the pump.io
project and I just wanted to reach out and say hi!

I know there was [an effort][1] to package pump.io for Debian a while
back, though it seems to have stalled out. I just wanted to say that
we're very interested in getting pump.io into Debian - with the
upcoming 4.0.0 release the codebase will finally(!) in a state where
I'd feel comfortable about okaying it being frozen long-term.

If anyone is interested in restarting this effort, please feel free to
reach out to me! I'd be happy to consider upstream changes or offer
advice to make this (and npm packaging in general) easier. I can't
guarantee anything but we would also consider committing to long-term
security support for whatever release gets packaged for Debian.

As a side note, it would be great to be in the loop if this does end
up happening - from looking at [1] I see some things that would end
disastrously. For example, that page was tracking packaging a pump.io
version that used Express 2.x, but it seems that the plan was to
depend on Express 4.x packages? (Correct me if I'm wrong, obviously.)
Trying to do so would be a very bad idea - that upgrade took _months_
of work upstream and hundreds of commits, which is obviously untenable
for downstream packagers to maintain.

Anyway! Just wanted to say hi and that I hope to work with you all at
some point in the future.

Cheers!

AJ

 [1]: https://wiki.debian.org/Javascript/Nodejs/Tasks/Pump.io


signature.asc
Description: PGP signature


Bug#860116: [Pkg-rust-maintainers] Bug#860116: RFH: cargo -- Rust package manager

2017-04-19 Thread Josh Triplett
On Wed, Apr 19, 2017 at 11:11:00PM +, Ximin Luo wrote:
> Ximin Luo:
> > [..]
> 
> I've made some more process and have pushed 0.17.0 to git. However we're 
> getting build errors and I don't know how to proceed:
> 
> https://anonscm.debian.org/cgit/pkg-rust/cargo.git/tree/debian/TODO
> https://anonscm.debian.org/cgit/pkg-rust/cargo.git/tree/debian/cargo-vendor-pack.py
> 
> I'm not familiar with the Cargo repo formats, and I don't know how 
> d/cargo-vendor-pack.py should be fixed. Help would be appreciated.
> 
> Josh, is this anything related to how your dh-cargo works? Any code that we 
> can reuse?

Not directly, until we're ready to package all the individual crate
dependencies (which we'll want to do at some point).  But you can
definitely use the same mechanism; it'd be much easier to generate a
directory registry than the full Cargo index format.  Rather than
generating an index file and repo, just:

1) Copy every crate directory, verbatim, into a subdirectory of a vendor
   directory.

2) Create a file .cargo-checksum.json in the crate directory, containing
   {"package":"$SHA256","files":{}} , where $SHA256 is the sha256 of the
   .crate file.

3) Create a directory containing a file "config", containing:

[source.crates-io]
replace-with = "my-registry"

[source.my-registry]
directory = "/path/to/the/vendor/directory"

4) Set CARGO_HOME to the directory containing that config file, and
   build.

debcargo can help a bit with this.  Run it on a crate, move
debian/cargo-checksum.json to .cargo-checksum.json , aggregate
debian/copyright, remove the rest of debian/ , and put the resulting
directory into the registry directory.

...and looking at git from 20 minutes ago, it looks like you've switched
over to directory registries now.



Bug#860116: [Pkg-rust-maintainers] Bug#860116: RFH: cargo -- Rust package manager

2017-04-19 Thread Ximin Luo
Ximin Luo:
> [..]

I've made some more process and have pushed 0.17.0 to git. However we're 
getting build errors and I don't know how to proceed:

https://anonscm.debian.org/cgit/pkg-rust/cargo.git/tree/debian/TODO
https://anonscm.debian.org/cgit/pkg-rust/cargo.git/tree/debian/cargo-vendor-pack.py

I'm not familiar with the Cargo repo formats, and I don't know how 
d/cargo-vendor-pack.py should be fixed. Help would be appreciated.

Josh, is this anything related to how your dh-cargo works? Any code that we can 
reuse?

X

-- 
GPG: ed25519/56034877E1F87C35
GPG: rsa4096/1318EFAC5FBBDBCE
https://github.com/infinity0/pubkeys.git



Bug#860771: ITP: node-diffie-hellman -- pure js diffie-hellman

2017-04-19 Thread Christian Seiler
On 04/19/2017 11:36 PM, Bastien ROUCARIES wrote:
> Package: wnpp
> Severity: wishlist
> Owner: ro...@debian.org
> X-Debbugs-CC: debian-de...@lists.debian.org
> 
> * Package name: node-diffie-hellman
>   Version : 5.0.2
>   Upstream Author : Calvin Metcalf
> * URL : https://github.com/crypto-browserify/diffie-hellman
> * License : Expat
>   Programming Lang: JavaScript
>   Description : pure js diffie-hellman key exchange
> 
>  Diffie–Hellman key exchange (D–H)  is a specific method of securely
>  exchanging cryptographic keys over a public channel. The
> Diffie–Hellman key exchange method allows two parties that have no
> prior knowledge of each other to jointly establish a shared secret key
> over an insecure channel. This key can then be used to encrypt
> subsequent communications using a symmetric key cipher.
>  .
>  Node.js is an event-based server-side JavaScript engine.

Is this timing safe? From the github page it uses a pure-JS
BigNum implementation (bn.js) for the complicated stuff, but
the README of that code doesn't mention timing at all. And
from perusing the source code of bn.js, it doesn't appear to
be the case that their implementation of exponentiation in
a prime field is geared towards constant-time execution (when
the sizes are the same).

If you look at e.g. OpenSSL's source code (bn_exp.c), there's
a specific function (bn_mod_exp_mont_consttime) in there that
takes great care of making sure that the operation runs in
constant time - down to how the memory layout is organized. I
wouldn't know how you'd even do that in an interpreted
language such as JavaScript, but even if that's possible, I'd
suspect that a lot of brain power would need to go into
designing that [1], while bn.js's implementation of the
Red.pow function seems rather straight-forward. (Which is
fine, bn.js appears to have the goal to be a generic bignum
library, and not targeted at crypto.)

What I'm saying is: while not having tested that, I believe
that this implementation of DH is going to be susceptible to
timing attacks. (And if it isn't, the author should really
provide some rationale why not, with some test results. The
README is rather sparse, though.) Which would be fine if you
just wanted to use this library to generate the DH prime
itself (that is not timing critical), or just use it in an
academic context (to let people play around with DH), but
I'd not want to use this for real-world applications of the
actual key exchange protocol.

Regards,
Christian

[1] Especially if this is to be run in browsers, with
different JITs etc. Designing algorithms in pure JS
for these environments that are timing-safe looks rather
daunting to me.



Bug#860776: ITP: r-cran-cellranger -- GNU R package to map spreadsheet cell ranges to rows and columns

2017-04-19 Thread Dirk Eddelbuettel

Package: wnpp
Owner: Dirk Eddelbuettel 
Severity: wishlist

* Package name: r-cran-cellranger
  Version : 1.1.0
  Upstream Author : Jennifer Bryan
* URL or Web page : 
https://cloud.r-project.org/web/packages/cellranger/index.html
* License : MIT
  Description : GNU R package to map spreadsheet cell ranges to rows and 
columns

Just like yesterday's ITP r-cran-rematch (which is used by this package),
r-cran-cellranger is now a build-dependency of the existing package
r-cran-readxl.

Thanks for accepting r-cran-rematch within a day.  Much appreciated.  Once
this one is in I can update r-cran-readxl.

Dirk

-- 
http://dirk.eddelbuettel.com | @eddelbuettel | e...@debian.org



Bug#662848: marked as done (RFP: kotti -- Python web application framework including a CMS application)

2017-04-19 Thread Debian Bug Tracking System
Your message dated Wed, 19 Apr 2017 22:20:00 +
with message-id 
and subject line closing RFP: kotti -- Python web application framework 
including a CMS application
has caused the Debian Bug report #662848,
regarding RFP: kotti -- Python web application framework including a CMS 
application
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.)


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

* Package name: kotti
  Version : 0.5.1
  Upstream Author : Daniel Nouri and contributors 
* URL : http://pypi.python.org/pypi/Kotti
  License : BSD
  Programming Lang: Python
  Description : Python web application framework including a CMS application

Kotti is a high-level, Pythonic web application framework.  It
includes a small and extensible CMS application called the Kotti
CMS.

Kotti is most useful when you are developing applications that

- have complex security requirements,
- use workflows, and/or
- work with hierarchical data.

Built on top of a number of best-of-breed software components, most
notably Pyramid and SQLAlchemy, Kotti introduces only a few concepts
itself, thus hopefully keeping the learning curve flat for the
developer.


--- End Message ---
--- Begin Message ---
RFP 662848 has no visible progress for a long time, so closing.--- End Message ---


Bug#860771: ITP: node-diffie-hellman -- pure js diffie-hellman

2017-04-19 Thread Bastien ROUCARIES
Package: wnpp
Severity: wishlist
Owner: ro...@debian.org
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: node-diffie-hellman
  Version : 5.0.2
  Upstream Author : Calvin Metcalf
* URL : https://github.com/crypto-browserify/diffie-hellman
* License : Expat
  Programming Lang: JavaScript
  Description : pure js diffie-hellman key exchange

 Diffie–Hellman key exchange (D–H)  is a specific method of securely
 exchanging cryptographic keys over a public channel. The
Diffie–Hellman key exchange method allows two parties that have no
prior knowledge of each other to jointly establish a shared secret key
over an insecure channel. This key can then be used to encrypt
subsequent communications using a symmetric key cipher.
 .
 Node.js is an event-based server-side JavaScript engine.



Bug#860768: ITP: python-ordered-set -- ordered set implementation for Python

2017-04-19 Thread Ghislain Antony Vaillant
Package: wnpp
Severity: wishlist
Owner: Ghislain Antony Vaillant 

* Package name: python-ordered-set
  Version : 2.0.2
  Upstream Author : Luminoso Technologies, Inc.
* URL : https://github.com/LuminosoInsight/ordered-set/
* License : Expat
  Programming Lang: Python
  Description : ordered set implementation for Python

This package is a dependency for sphinxcontrib-bibtex. It will be
co-maintained by the DPMT.



Bug#860746: ITP: easel -- a library of C functions for biological sequence analysis

2017-04-19 Thread Andreas Tille
Hi Michael,

On Wed, Apr 19, 2017 at 10:44:06PM +0300, Michael Crusoe wrote:
> You are welcome!

:-)
 
> git+ssh://git.debian.org/git/debian-med/easel.git is ready for review

I commited a change which renames easel-dev package to libeasel-dev (not
tested yet).  I also think that the effort of a separate library package
should end up with a dynamic library as well.  When I did so for
biosquid I used the existing configure.ac and created a Makefile.am from
the information in Makefile.in.  This enabled using autoreconf and
creating a dynamic library was easy.

As far as I can see the Makefile.am is only needed in the root dir - all
other Makefile.in might remain.

Kind regards

   Andreas.

-- 
http://fam-tille.de



Bug#860746: ITP: easel -- a library of C functions for biological sequence analysis

2017-04-19 Thread Michael Crusoe
You are welcome!

git+ssh://git.debian.org/git/debian-med/easel.git is ready for review

2017-04-19 20:11 GMT+03:00 Andreas Tille :

> Very sensible!  Thanks for working on this
> Andreas.
>
> On Wed, Apr 19, 2017 at 10:06:57AM -0700, Michael R. Crusoe wrote:
> > Package: wnpp
> > Severity: wishlist
> > Owner: Debian Med team 
> >
> > * Package name: easel
> >   Version : 0.43
> >   Upstream Author : Sean R. Eddy 
> > * URL : https://github.com/EddyRivasLab/easel
> > * License : BSD-3-clause
> >   Programming Lang: C
> >   Description : a library of C functions for biological sequence
> analysis
> >
> >  Easel is an ANSI C code library for computational analysis of
> >  biological sequences using probabilistic models. Easel is used by
> >  HMMER, the profile hidden Markov model software that underlies the
> >  Pfam protein families database, and by Infernal, the profile
> >  stochastic context-free grammar software that underlies the Rfam RNA
> >  family database. Easel aims to make similar applications more robust
> >  and easier to develop, by providing a set of reusable, documented, and
> >  well-tested functions.
> >
> > Several existing packages contain code copies and it is high time this
> and the example
> > apps were seperately packaged.
> >
> > This will be team maintained by Debian Med
> >
> >
>
> --
> http://fam-tille.de
>



-- 
Michael R. Crusoe
Community Engineer & Co-founder
Common Workflow Language project 
https://impactstory.org/u/-0002-2961-9670
michael.cru...@gmail.com
+1 480 627 9108
+32 2 808 25 58


Processed: tagging 168591

2017-04-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 168591 + pending
Bug #168591 [wnpp] ITP: libdsk -- a library for accessing disks and disk images
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#857508: ITP: gnome-games-app -- Game browser and launcher for GNOME

2017-04-19 Thread Jeremy Bicha
On Sun, Apr 16, 2017 at 2:56 AM, Evgeni Golov  wrote:
> On Sat, Mar 11, 2017 at 09:51:03PM -0500, Jeremy Bicha wrote:
>> we created the metapackage for upgrades and convenience.
> Why not retire the gnome-games metapackage if it was only for upgrades?

Sorry, I was unclear in my original email, but you missed the second
part: it's a convenient way to install most or all of the "simple"
GNOME games, some of which were never even in the original gnome-games
binary package.

> As far as I can see it, the real package is in wheezy, and since jessie
> we have the transitional one. Same will apply for stretch. And for buster
> you can safely drop it and re-introduce the real app under that name?

Several packages depend on the gnome-games metapackage and it's not
practical to change all of them this late in the stretch Freeze. The
best that could be done would be to make it a transitional package for
stretch. Remove it for buster and then re-use the name in buster+1.

But I don't think it's worth it.

You can do like I did and complain to the developer for re-using the
name if you want. And then move on, if the arguments don't work. (It's
still not packaged in many distros and I wouldn't mind renaming it in
Debian.)

Thanks,
Jeremy Bicha



Bug#860746: ITP: easel -- a library of C functions for biological sequence analysis

2017-04-19 Thread Andreas Tille
Very sensible!  Thanks for working on this
Andreas.

On Wed, Apr 19, 2017 at 10:06:57AM -0700, Michael R. Crusoe wrote:
> Package: wnpp
> Severity: wishlist
> Owner: Debian Med team 
> 
> * Package name: easel
>   Version : 0.43
>   Upstream Author : Sean R. Eddy 
> * URL : https://github.com/EddyRivasLab/easel
> * License : BSD-3-clause
>   Programming Lang: C
>   Description : a library of C functions for biological sequence analysis
> 
>  Easel is an ANSI C code library for computational analysis of
>  biological sequences using probabilistic models. Easel is used by
>  HMMER, the profile hidden Markov model software that underlies the
>  Pfam protein families database, and by Infernal, the profile
>  stochastic context-free grammar software that underlies the Rfam RNA
>  family database. Easel aims to make similar applications more robust
>  and easier to develop, by providing a set of reusable, documented, and
>  well-tested functions.
> 
> Several existing packages contain code copies and it is high time this and 
> the example
> apps were seperately packaged.
> 
> This will be team maintained by Debian Med
> 
> 

-- 
http://fam-tille.de



Bug#860746: ITP: easel -- a library of C functions for biological sequence analysis

2017-04-19 Thread Michael R. Crusoe
Package: wnpp
Severity: wishlist
Owner: Debian Med team 

* Package name: easel
  Version : 0.43
  Upstream Author : Sean R. Eddy 
* URL : https://github.com/EddyRivasLab/easel
* License : BSD-3-clause
  Programming Lang: C
  Description : a library of C functions for biological sequence analysis

 Easel is an ANSI C code library for computational analysis of
 biological sequences using probabilistic models. Easel is used by
 HMMER, the profile hidden Markov model software that underlies the
 Pfam protein families database, and by Infernal, the profile
 stochastic context-free grammar software that underlies the Rfam RNA
 family database. Easel aims to make similar applications more robust
 and easier to develop, by providing a set of reusable, documented, and
 well-tested functions.

Several existing packages contain code copies and it is high time this and the 
example
apps were seperately packaged.

This will be team maintained by Debian Med



Processed: reopening 168591, retitle 168591 to ITP: libdsk -- a library for accessing disks and disk images ...

2017-04-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 168591
Bug #168591 [wnpp] RFP: libdsk -- a library for accessing disks and disk images
Bug 168591 is not marked as done; doing nothing.
> retitle 168591 ITP: libdsk -- a library for accessing disks and disk images
Bug #168591 [wnpp] RFP: libdsk -- a library for accessing disks and disk images
Changed Bug title to 'ITP: libdsk -- a library for accessing disks and disk 
images' from 'RFP: libdsk -- a library for accessing disks and disk images'.
> owner 168591 n...@naturalnet.de
Bug #168591 [wnpp] ITP: libdsk -- a library for accessing disks and disk images
Owner recorded as n...@naturalnet.de.
> thanks
Stopping processing here.

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



Bug#754785: [Pkg-fonts-devel] Bug#754785: ITP: fonts-open-sans -- sans serif typeface

2017-04-19 Thread Gregor Riepl
Hi,

> Please request membership in the group on Alioth, so I can add you
> immediately.

Thank you.

The repository is here:
https://anonscm.debian.org/cgit/pkg-fonts/fonts-open-sans.git/
And a new package with the requested changes:
https://mentors.debian.net/package/fonts-open-sans

I incremented the upstream version as well, because one of the fonts was
tagged as version "1.11".

Please review and upload if it looks go to you.

Thanks!
Greg



signature.asc
Description: OpenPGP digital signature


Bug#860613: marked as done (ITP: node-hash-test-vectors -- test vectors for hashes)

2017-04-19 Thread Debian Bug Tracking System
Your message dated Wed, 19 Apr 2017 16:00:11 +
with message-id 
and subject line Bug#860613: fixed in node-hash-test-vectors 1.3.2+dfsg-1
has caused the Debian Bug report #860613,
regarding ITP: node-hash-test-vectors -- test vectors for hashes
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.)


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

* Package name: node-hash-test-vectors
  Version : 1.3.2
  Upstream Author : Dominic Tarr 
(http://dominictarr.com)
* URL : https://github.com/crypto-browserify/hash-test-vectors
* License : Expat
  Programming Lang: JavaScript
  Description : test vectors for hashes

 This module implements an abstract base class to inherit from,
 for creating node crypto streams.
 .
 This module follows the same API as Node.js crypto streams API.
 .
 Node.js is an event-based server-side JavaScript engine.
--- End Message ---
--- Begin Message ---
Source: node-hash-test-vectors
Source-Version: 1.3.2+dfsg-1

We believe that the bug you reported is fixed in the latest version of
node-hash-test-vectors, 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 860...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastien Roucariès  (supplier of updated 
node-hash-test-vectors 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: Wed, 19 Apr 2017 09:33:07 +0200
Source: node-hash-test-vectors
Binary: node-hash-test-vectors
Architecture: source all
Version: 1.3.2+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Bastien Roucariès 
Description:
 node-hash-test-vectors - test vectors for hashes
Closes: 860613
Changes:
 node-hash-test-vectors (1.3.2+dfsg-1) unstable; urgency=low
 .
   * Initial release (Closes: #860613)
   * Remove RFC from tarball.
Checksums-Sha1:
 5cc6fef60c7a840501f640f7e7653745ed8de76d 2193 
node-hash-test-vectors_1.3.2+dfsg-1.dsc
 58a28c05590faf06ba29020fc4a7b40ddad77f09 171656 
node-hash-test-vectors_1.3.2+dfsg.orig.tar.xz
 4c413419d2d638134b4e2654a8c1dfd0a64fa134 2572 
node-hash-test-vectors_1.3.2+dfsg-1.debian.tar.xz
 d77a9cacf50883c86c30dc0b81d418cea04b1aac 134292 
node-hash-test-vectors_1.3.2+dfsg-1_all.deb
 7113a821e67827c1a7943d7eca3cf1104b93c04e 5593 
node-hash-test-vectors_1.3.2+dfsg-1_i386.buildinfo
Checksums-Sha256:
 4a13f9c47d30a296a5fdaedafc57d75fd514bacb0c8f7343bf5385a427ef4423 2193 
node-hash-test-vectors_1.3.2+dfsg-1.dsc
 c53f36901796ecb673d47980b4e7d68792df167dd71faeef5a3fe5b1c7c81df1 171656 
node-hash-test-vectors_1.3.2+dfsg.orig.tar.xz
 d2f9169a451be65066a13014f2713036220ab942f2b7ac1948d0e212c51ecf3b 2572 
node-hash-test-vectors_1.3.2+dfsg-1.debian.tar.xz
 6da821e13153e307b9b945464b729e801724a3ef02978d1f76344270e2628792 134292 
node-hash-test-vectors_1.3.2+dfsg-1_all.deb
 ebcd7db8f1a3e97c6912d88d78170947fd93b6f635b12e494d2c137e65b9353a 5593 
node-hash-test-vectors_1.3.2+dfsg-1_i386.buildinfo
Files:
 4d249def41561cb3f7bf925316e07238 2193 web optional 
node-hash-test-vectors_1.3.2+dfsg-1.dsc
 777ef6f4bbb6ab29637930551991ddbc 171656 web optional 
node-hash-test-vectors_1.3.2+dfsg.orig.tar.xz
 c38566ba7f861a9194689333bae17d3f 2572 web optional 
node-hash-test-vectors_1.3.2+dfsg-1.debian.tar.xz
 f333074dcc164fbc703bd87bea7c563e 134292 web optional 
node-hash-test-vectors_1.3.2+dfsg-1_all.deb
 87038f23fac6cf5533dd7490f375851a 5593 web optional 
node-hash-test-vectors_1.3.2+dfsg-1_i386.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXQGHuUCiRbrXsPVqADoaLapBCF8FAlj3ICkACgkQADoaLapB
CF8o9A//eLCN7OSQYLM61ObK6M9wb62lHAzz9/ARLuG7gJvIyrHXqvYJSqkNmD6+
7dRPBMY9GD4QDUt7ZyVj+WMZOuGBfUyRiWW0aKeHr+w+3R64GnGgR2tDUdpBvaf0
avSoghyVDXG1+b3x25efAmuTUzFYFJVEi7uFwJ7dT13UyM8I2OFdRxoxT2i6ax0i
b64+BVfZgvW+zt+jqTIJ0U6vGhXO1CZYSvrTIAGcYTzzferCE7vJ5ZND0bDns3NC

Bug#860332: marked as done (ITP: node-asn1.js -- ASN.1 encoder and decoder)

2017-04-19 Thread Debian Bug Tracking System
Your message dated Wed, 19 Apr 2017 16:00:10 +
with message-id 
and subject line Bug#860332: fixed in node-asn1.js 4.9.1-1
has caused the Debian Bug report #860332,
regarding ITP: node-asn1.js -- ASN.1 encoder and decoder
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.)


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

* Package name: node-asn1.js
  Version : 4.9.1
  Upstream Author : Fedor Indutny
* URL : https://github.com/indutny/asn1.js
* License : Expat
  Programming Lang: JavaScript
  Description : ASN.1 encoder and decoder

 Asn1.js is a pure javascript ASN.1 encoder and decoder.
.
Abstract Syntax Notation One (ASN.1) is an interface description
language for defining data structures that can be serialized and
deserialized in a standard, cross-platform way.
 .
 Node.js is an event-based server-side JavaScript engine.
--- End Message ---
--- Begin Message ---
Source: node-asn1.js
Source-Version: 4.9.1-1

We believe that the bug you reported is fixed in the latest version of
node-asn1.js, 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 860...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastien Roucariès  (supplier of updated node-asn1.js 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, 17 Apr 2017 21:57:37 +0200
Source: node-asn1.js
Binary: node-asn1.js
Architecture: source all
Version: 4.9.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Bastien Roucariès 
Description:
 node-asn1.js - ASN.1 encoder and decoder
Closes: 860332
Changes:
 node-asn1.js (4.9.1-1) unstable; urgency=low
 .
   * Initial release (Closes: #860332)
Checksums-Sha1:
 90f1a9a703d52e165f9b4a6a7a0a7c8cdd2b5460 2206 node-asn1.js_4.9.1-1.dsc
 2b7cd759ee146a0c18f3e426168325daf14582bc 32694 node-asn1.js_4.9.1.orig.tar.gz
 62bfe42eb3d8cd0f1822f912bcef5365936a4a19 3212 
node-asn1.js_4.9.1-1.debian.tar.xz
 23359dda85ec6836199df83386b56f44758fb250 19756 node-asn1.js_4.9.1-1_all.deb
 6d61f63894ef8a6814b9df0b3f1fc938658eb2d5 8643 
node-asn1.js_4.9.1-1_i386.buildinfo
Checksums-Sha256:
 a4b9f4abeb5ad935d92995706c1f46ae068550b0d51161dcd5b4830f47fafdeb 2206 
node-asn1.js_4.9.1-1.dsc
 9b8b9f9fc6c03e63880a77d6d2a56e06ebe2053a10d8973462436451ac1f0cd7 32694 
node-asn1.js_4.9.1.orig.tar.gz
 39c15b3e82f08aea4259f0992abcf9f7b3593a8729b2fbba0e56b7a3ef5892ec 3212 
node-asn1.js_4.9.1-1.debian.tar.xz
 9d9e4ce435e7a69db847f5c989d6ab31ac320313522c0034d8cdac54a445123f 19756 
node-asn1.js_4.9.1-1_all.deb
 7f7889580e796960524587e41b7e459cc084765112db31089f7654760cd335aa 8643 
node-asn1.js_4.9.1-1_i386.buildinfo
Files:
 8b9f0eb11b97012c0023d97f4282b028 2206 web optional node-asn1.js_4.9.1-1.dsc
 2cd0d11542f6395543866919ec30e4ac 32694 web optional 
node-asn1.js_4.9.1.orig.tar.gz
 44ec1254ad282d753e6c9f65423cd9f0 3212 web optional 
node-asn1.js_4.9.1-1.debian.tar.xz
 86d096a88c247034e9bfa0f8191d1fa7 19756 web optional 
node-asn1.js_4.9.1-1_all.deb
 6bc5f5aed7a0769c77786b7416607582 8643 web optional 
node-asn1.js_4.9.1-1_i386.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXQGHuUCiRbrXsPVqADoaLapBCF8FAlj1IGEACgkQADoaLapB
CF8usA/8Cc7TjoGOrdKdtF3NlGQ4HLUil6Q0aPEWNsS2qmXpE7eZ75fsl38WMgWo
tHq5MxYsF4+Kcg6D7PpGuUC3ntouKM3Q9MVcwrRpUDHX5RBjao/NnWMd6lvM9sr3
ztXDJ0xq7/1v+Gfu3O6m95tlvS+h9plDzn/U+pZrk4yEV69tVJqNujmIzbRuPTb1
Z++FsGZzZ9y4KKLlplZ70oMxwkE8ATogtYchoiB7C8kaUKI1/fUrfyGvsWKUmVa/
MNWcYHU+rSbZfNDSZooFxYFPzS3J3w6i7RjD/VbNYRA55Oz6eY9DiazD/aeDkXhS
Y+3Izsr5FY5rU0pYoQKvHyYJuqmow75nR+NJmR5OnvX6mjrO2yXjw8RaJTwyoeLc
xm5RaXYeAkxq66QklUEsNZZ95HUcoKSbG1nkOeGzYnfDEAEeN6e/6cwl71vsAz7C
E0DA26NhPkwNd2ixRyeUe0P+Ek9sq9msJUxDkgpFpju6Fp4yrCL2e7fMiVDx28G1
aKa8gYVRY7uKAEVlw8vKUUCmZTjzR80YLsl4y4GmcPcaVjxBK7IyYuDG0yFDxLEl
HoEUCn4nfiF72G6VHB+lss73/h8PlvuuF/WmNXDjvFF3PO4nXXnkCC1yPRaC1PxG

Bug#860529: marked as done (ITP: python-rpaths -- cross-platform path manipulation library for Python)

2017-04-19 Thread Debian Bug Tracking System
Your message dated Wed, 19 Apr 2017 16:00:12 +
with message-id 
and subject line Bug#860529: fixed in python-rpaths 0.13-1
has caused the Debian Bug report #860529,
regarding ITP: python-rpaths -- cross-platform path manipulation library for 
Python
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.)


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

* Package name: python-rpaths
  Version : 0.13
  Upstream Author : Remi Rampin
* URL : https://github.com/remram44/rpaths
* License : BSD
  Programming Lang: Python
  Description : cross-platform path manipulation library for Python

This package is a dependency for reprozip. It will be co-maintained by
the DPMT.
--- End Message ---
--- Begin Message ---
Source: python-rpaths
Source-Version: 0.13-1

We believe that the bug you reported is fixed in the latest version of
python-rpaths, 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 860...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ghislain Antony Vaillant  (supplier of updated 
python-rpaths 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: Tue, 18 Apr 2017 11:31:21 +0100
Source: python-rpaths
Binary: python3-rpaths python-rpaths-doc
Architecture: source all
Version: 0.13-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 

Changed-By: Ghislain Antony Vaillant 
Description:
 python-rpaths-doc - documentation for rpaths
 python3-rpaths - cross-platform path manipulation library for Python
Closes: 860529
Changes:
 python-rpaths (0.13-1) unstable; urgency=low
 .
   * Initial release. (Closes: #860529)
Checksums-Sha1:
 294d4b641a8002076b21615fae5fd0e88bf5a6ed 2276 python-rpaths_0.13-1.dsc
 ffd23fbd48bf5aeeb6253620eadd402221763377 25401 python-rpaths_0.13.orig.tar.gz
 2358076e136390ba1403be1c4cc4a4e00c5c91ca 2980 
python-rpaths_0.13-1.debian.tar.xz
 e4a9b5461cfb3c43ea38acd036bfefe75e5c9e7a 25470 python-rpaths-doc_0.13-1_all.deb
 fda44025f84feee993616bbc3560ca9a9d0cb998 5938 
python-rpaths_0.13-1_amd64.buildinfo
 bb3448d241fe278aaabc3175f91a94b0007e7b4d 13972 python3-rpaths_0.13-1_all.deb
Checksums-Sha256:
 c3f492e4d31c6ecf6dd296e19840a34f66294cb8f66325318b34248338a199c2 2276 
python-rpaths_0.13-1.dsc
 fdb548e6bacc451b6f929d888cc1e79e8f94abae938c5bd69ac367f5c2f95a1c 25401 
python-rpaths_0.13.orig.tar.gz
 33f7bfb3ccd41f4422973cacc0b82e90bc89f91002978e4c6779e54e2495776e 2980 
python-rpaths_0.13-1.debian.tar.xz
 1235bbb55ce1db321daab9180515c785faed9ca7d9e7611810bf8c7fd893042d 25470 
python-rpaths-doc_0.13-1_all.deb
 c1c8bd35cbc02aff85ba96db6a5f41b1308da3aa734c723613136879f986ca74 5938 
python-rpaths_0.13-1_amd64.buildinfo
 0cc0b4f74fa9561cf72493667a4a1dd7b55a88d22e81b2b17b2ae6428de1728e 13972 
python3-rpaths_0.13-1_all.deb
Files:
 c5f165a0b607f1589ecbc142a8fb6471 2276 python optional python-rpaths_0.13-1.dsc
 4da06091dee244b92b7f8a5c5a84a4c8 25401 python optional 
python-rpaths_0.13.orig.tar.gz
 1cce3a6baf84bcb5f76a8f8e4e7d8ab2 2980 python optional 
python-rpaths_0.13-1.debian.tar.xz
 5a525ffe126b7ac617ae0ec9b8a6cdcd 25470 doc optional 
python-rpaths-doc_0.13-1_all.deb
 dad6423c1da9ab34da1cf80e5da23d06 5938 python optional 
python-rpaths_0.13-1_amd64.buildinfo
 571d80c430cb7b8f92196e402a1aae27 13972 python optional 
python3-rpaths_0.13-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJY9y6wAAoJEFeKBJTRxkbRl70QAJV0kbmA/RxatEWiyndPJQJ7
jgJoYVxzdrOfTSP51hXiRNtsd5ygAx4mfhoSkMEDPImLTqZSk16nOoyUHqUuBJMc
6cdgz80oHn6NlXtGzLHhvCf2dbNpmKl455tHjfURXYqMah9WMmX083z2zdB827f2
HtV6gHnzk4f87fzdtG+tgyHVijBJqmDmDLk9bWXumu0qwc6eVNi2OnJDanTj8zj6
QApu9XLn5hWPUvII1pS0LRzJ5TDhHVc9EDM0nnifzsqdgtOmabAuBqxEPf0UXaT2
BgqZH32yM0tjwCRl3HUZCoinChfCRdSE61mxe3TMo2pkQwE9KQ3Lh4SojcZ3G+Ne
YfCQEVEv6CxQBMLBVECJWla7Ccq8I7nvscwDvcah9t/qJO0wM0AHI32eHmtKU6oE

Bug#860594: marked as done (ITP: r-cran-rematch -- R package to match regular expressions with a nicer 'api')

2017-04-19 Thread Debian Bug Tracking System
Your message dated Wed, 19 Apr 2017 16:00:13 +
with message-id 
and subject line Bug#860594: fixed in r-cran-rematch 1.0.1-1
has caused the Debian Bug report #860594,
regarding ITP: r-cran-rematch -- R package to match regular expressions with a 
nicer 'api'
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.)


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

Package: wnpp
Owner: Dirk Eddelbuettel 
Severity: wishlist

* Package name: r-cran-rematch
  Version : 1.0.1-1
  Upstream Author : Gabor Csardi
* URL or Web page : https://cran.r-project.org/package=rematch
* License : MIT
  Description : R package to match regular expressions with a nicer 'api'

This package is a new Build-Depends of a new Build-Depends of the existing
package r-cran-readxl.

Dirk

-- 
http://dirk.eddelbuettel.com | @eddelbuettel | e...@debian.org
--- End Message ---
--- Begin Message ---
Source: r-cran-rematch
Source-Version: 1.0.1-1

We believe that the bug you reported is fixed in the latest version of
r-cran-rematch, 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 860...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dirk Eddelbuettel  (supplier of updated r-cran-rematch 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: Tue, 18 Apr 2017 20:47:17 -0500
Source: r-cran-rematch
Binary: r-cran-rematch
Architecture: source all
Version: 1.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel 
Changed-By: Dirk Eddelbuettel 
Description:
 r-cran-rematch - GNU R package to match regular expression with a nicer api
Closes: 860594
Changes:
 r-cran-rematch (1.0.1-1) unstable; urgency=low
 .
   * Initial Debian release (Closes: #860594)
Checksums-Sha1:
 f8a0a4365c5136635a8d30e0beddd5afc598457c 1704 r-cran-rematch_1.0.1-1.dsc
 40cfa004420af09bb055635d94c0e652aab8ed02 3719 r-cran-rematch_1.0.1.orig.tar.gz
 569b15d0abc437825653d00513a522218a0359d4 1640 
r-cran-rematch_1.0.1-1.debian.tar.xz
 85a57307131ee717bddcbad267e6a773e93d8a8e 12090 r-cran-rematch_1.0.1-1_all.deb
 26030c21f9f30713f2957b51970967ea625bdaf5 7638 
r-cran-rematch_1.0.1-1_amd64.buildinfo
Checksums-Sha256:
 49c2a5db84693df6de5ee4722ab99bea7f3e682f9541f7f193fcc42e574b5ad5 1704 
r-cran-rematch_1.0.1-1.dsc
 a409dec978cd02914cdddfedc974d9b45bd2975a124d8870d52cfd7d37d47578 3719 
r-cran-rematch_1.0.1.orig.tar.gz
 0dc677e7a26ebe864e0cd6fd0aa0bc16747951e1050bf2600436c4b51c016f5c 1640 
r-cran-rematch_1.0.1-1.debian.tar.xz
 3b3172513568b5f318596fa1b7d63c98f0d63527837f9a2aa7f5eb1619054b95 12090 
r-cran-rematch_1.0.1-1_all.deb
 6d113370459c3b0a5036a698b37e9582535afb8cb84a1be6cd2be524d2b03fc2 7638 
r-cran-rematch_1.0.1-1_amd64.buildinfo
Files:
 27036783360133e0f94044e600d6a7c9 1704 gnu-r optional r-cran-rematch_1.0.1-1.dsc
 5271666295e232931f21499522489dd3 3719 gnu-r optional 
r-cran-rematch_1.0.1.orig.tar.gz
 b3cacb1cdc868bafbbe2007a0575b701 1640 gnu-r optional 
r-cran-rematch_1.0.1-1.debian.tar.xz
 987eff4a936d9457b5ddcf8f62a75812 12090 gnu-r optional 
r-cran-rematch_1.0.1-1_all.deb
 7a796c70e3fe1bd2b6ad52ddc41aba91 7638 gnu-r optional 
r-cran-rematch_1.0.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIVAwUBWPbDmKFIn+KrmaIaAQhXcg//XouXorybk/TKrqzuVQ4JaMHqh1DpwFwy
7hUw5QIRxN46yRVI6vxUbZi5h34LGy9G+CpcUrPw0zPMruQD0pkILPCuU5Z1RYPM
UDRTMtSjERPlzpsa9Nnsp/4Dh5d0so4MXxNeb9aqQwffTLoy9p7PMk/NwxnXykN0
J63fO+Mc3PFlsE682axecrFSfyBOh/FYcu+RWd5l7g0TG3Ch5jljHv2YSRr7C6o0
Ge79OUPmtZgjZrltybNzXcsKl/bU2omWiobYW7Lc8v9YqlI/+jfd/FbW8TjqDfzp
GYQjwxP4kmX7ZchxdLOej4BTGfSXIQLCs2K/pa821kyE6uESIGiaoe1vVIDZOXVi
9jmoWLYA6Qf95E9Hc5Fv+frKmxIBUX+C4XVKimuHvHnGy9cfKzg8s3qe5qdSsJZe
JBOuRS8nv7KQOffHcz54ZiHEgA3Aj3Xde8LXiAySuMMrbdyUto8VjvIIM/5SGgJj
Wmjw4LFwtlj24naB65td54/JJ+P8ukAFwxT7NWfjvyKfwrlQH04GEFdoFhT4nF8r
nuOpe2fX83Cg4hqAxZH6B2Vs3mzDOYp/g1a4z2Deu0MvZq0qx/6ZyplkqDPvvxaQ
QRa1MIFPdl6gxSQ2E5bnMRc74BhBhAQ3nn7O2tkLQ28w8e0hXxz03NzRQsTAM5/C
wgSRYHv1isQ=
=f5W/
-END PGP 

Bug#854114: marked as done (ITP: node-cipher-base -- abstract base class for crypto-streams)

2017-04-19 Thread Debian Bug Tracking System
Your message dated Wed, 19 Apr 2017 16:00:11 +
with message-id 
and subject line Bug#854114: fixed in node-cipher-base 1.0.3-1
has caused the Debian Bug report #854114,
regarding ITP: node-cipher-base -- abstract base class for crypto-streams
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.)


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

* Package name: node-cipher-base
  Version : 1.0.3
  Upstream Author : Calvin Metcalf 
* URL : https://github.com/crypto-browserify/cipher-base#readme
* License : Expat
  Programming Lang: JavaScript
  Description : abstract base class for crypto-streams

 An abstract base class to inherit from to create streams
 that implement the same API as node crypto streams
 .
 Node.js is an event-based server-side JavaScript engine.
--- End Message ---
--- Begin Message ---
Source: node-cipher-base
Source-Version: 1.0.3-1

We believe that the bug you reported is fixed in the latest version of
node-cipher-base, 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 854...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastien Roucariès  (supplier of updated node-cipher-base 
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: Tue, 18 Apr 2017 23:00:01 +0200
Source: node-cipher-base
Binary: node-cipher-base
Architecture: source all
Version: 1.0.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Bastien Roucariès 
Description:
 node-cipher-base - abstract base class for crypto-streams
Closes: 854114
Changes:
 node-cipher-base (1.0.3-1) unstable; urgency=low
 .
   * Initial release (Closes: #854114)
Checksums-Sha1:
 0047c21064cfd801e83b79f9684f7b96ce38057b 2217 node-cipher-base_1.0.3-1.dsc
 6a86a4453eb589b6bb2d76bf2832232c1a2fc395 2360 
node-cipher-base_1.0.3.orig.tar.gz
 f35067c75e42cf0258861f30852e6c629673bca0 2500 
node-cipher-base_1.0.3-1.debian.tar.xz
 6114292d854dd6269c4f1ef0a79c40b15009f9cc 3486 node-cipher-base_1.0.3-1_all.deb
 8c4ab43892d93f7fa40d42c1d81afc3804d94cad 6140 
node-cipher-base_1.0.3-1_i386.buildinfo
Checksums-Sha256:
 70a828b0dd990764dae801942307bb1c1b9a208ec17c2ee8acac3a627643d02a 2217 
node-cipher-base_1.0.3-1.dsc
 b9d07c6c7e7898c9fd57abe8ac40e710596fce5e8b0fa4778570b9191410a82b 2360 
node-cipher-base_1.0.3.orig.tar.gz
 c6a04451adafbceca10f996e446982631d838b4c0a8a3eece6e272181967b7dd 2500 
node-cipher-base_1.0.3-1.debian.tar.xz
 04a88f6779ca9322eacb83ed87f9957e0aecc9f82dc1a453f1c46aa605fc56ea 3486 
node-cipher-base_1.0.3-1_all.deb
 16eed60862dd255b6515203b3070d460a4063ee239e446ffb469923335bb3a9a 6140 
node-cipher-base_1.0.3-1_i386.buildinfo
Files:
 5498d55b85af98ff478b3330c4c0ecda 2217 web optional node-cipher-base_1.0.3-1.dsc
 fa11b2131dbdfe02e0cea98127ac8510 2360 web optional 
node-cipher-base_1.0.3.orig.tar.gz
 91ce9337c6dd89661a56ccb1dbe19696 2500 web optional 
node-cipher-base_1.0.3-1.debian.tar.xz
 92f71573de391e7630f123f5b02205d1 3486 web optional 
node-cipher-base_1.0.3-1_all.deb
 55e6d0b0db86aa1ed9427fa00a6765a9 6140 web optional 
node-cipher-base_1.0.3-1_i386.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXQGHuUCiRbrXsPVqADoaLapBCF8FAlj2hWoACgkQADoaLapB
CF8GCBAAtHVqMuE2f7lWMVD2ufiFKeNDQcg9hlgPjKe+8HQsoWjMRZFMcVPn+cJK
6dfM+FH1uR0qNUYfcKDOPMEIP+6kPf1LzNxfPU9PX4oyyX2eRp3dzOuxFk9trLoF
b/fGh6dUPf74q4/AEvCivUE2GGdQIRNgJxQFflZHbtlDxly/b6wCZgSEtvWCrYMT
iAUfDDpbvhVg2B4yY/dfaOzZmgLdUqzJlD+hsOnTK87gR0fl5w9E6jrO1PglmJVP
Xd+K47qnkjbJb0MPKDjDA/alkK1uFrFkhOR1yvS5PLSc8RiCAD4vPsXXWKDGPkYt
agWggWXV97mteAkJrWtAoD1F+dkd9HIe+FpBiq7sIEdUn28d2PZuNWmuq/gXd+ul
TGY1/1lcWQ8NdpiDk8tVnnlSadsBQwQQg+XQ4o8fUSjdtofBVEHqRobd86o7tJRb
sWLfb18IRxOJn7+0UWYSqg9v85HbuYAczN9mOav+TMYrXz1PkYu47T7YjzVatuL7
IKmszIwHMfChM+YTg0kJ6B2RtsHcS75g7mcgqEZvTSZBUXQnaoWNEDl2oS/Oq0Jy

Bug#860579: ITP: grammalecte -- grammatical corrector for libreoffice and firefox

2017-04-19 Thread Antoine Beaupré
On 2017-04-19 15:41:41, Sébastien Villemot wrote:
> Indeed it looks like the author published the full source, this is good
> news!
>
> Thanks for your effort, I will be a (hopefully happy!) user of the
> package.

I'd welcome any effort to collaboratively maintain this! If you want to
contribute, it will make it more likely this enters Debian... :) At this
point, I unfortunately write so little french that it could take months
until I actually need this...

A.

-- 
La politique est l'art d'empêcher les gens de se mêler de ce qui les
regarde
- Paul Valéry



Bug#860579: ITP: grammalecte -- grammatical corrector for libreoffice and firefox

2017-04-19 Thread Sébastien Villemot
Le mercredi 19 avril 2017 à 08:14 -0400, Antoine Beaupré a écrit :
> On 2017-04-19 08:50:00, Sébastien Villemot wrote:
> > On Tue, 18 Apr 2017 17:30:35 -0400 Antoine Beaupre 
> > wrote:
> >> Package: wnpp
> >> Severity: wishlist
> >> Owner: Antoine Beaupre 
> >> 
> >> * Package name: grammalecte
> >
> > […]
> >
> >> Someone discussed maintaining this in Debian 3 years ago on their
> >> forum:
> >> 
> >> https://www.dicollecte.org/thread.php?prj=fr=414
> >
> > Indeed I have considered packaging grammalecte in Debian, but it turned
> > out to be non-free (because of lacking source for one of the core
> > files, see the discussion on the forum).
> >
> > Last time I checked, the problem was still not solved.
> >
> > Hopefully you’ll find a solution with upstream author, but 3 years ago
> > he refused to publish the full source code.

> But now it seems like the source code is available:
> 
> http://www.dicollecte.org/grammalecte/oxt/Grammalecte-v0.5.15.7z
> 
> I was able to build the LibreOffice extension there - at least the build
> completed. I'm still missing the Firefox extension, because the "jpm"
> package is missing in Debian - and anyways he will switch to "web-ext".
> 
> I'm also quite unclear on how to actually install that thing - while it
> is Python, it's using a completely custom build system that doesn't seem
> to have an "install" target...
> 
> When I replied to your thread, he moved the conversation over this other
> forum here:
> 
> https://www.dicollecte.org/thread.php?prj=fr=620

Indeed it looks like the author published the full source, this is good
news!

Thanks for your effort, I will be a (hopefully happy!) user of the
package.

Best,

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



Bug#860579: ITP: grammalecte -- grammatical corrector for libreoffice and firefox

2017-04-19 Thread Antoine Beaupré
On 2017-04-19 08:50:00, Sébastien Villemot wrote:
> On Tue, 18 Apr 2017 17:30:35 -0400 Antoine Beaupre 
> wrote:
>> Package: wnpp
>> Severity: wishlist
>> Owner: Antoine Beaupre 
>> 
>> * Package name: grammalecte
>
> […]
>
>> Someone discussed maintaining this in Debian 3 years ago on their
>> forum:
>> 
>> https://www.dicollecte.org/thread.php?prj=fr=414
>
> Indeed I have considered packaging grammalecte in Debian, but it turned
> out to be non-free (because of lacking source for one of the core
> files, see the discussion on the forum).
>
> Last time I checked, the problem was still not solved.
>
> Hopefully you’ll find a solution with upstream author, but 3 years ago
> he refused to publish the full source code.

That's kind of strange, given that he forked GPL software... I did not
quite understand this from the thread linked above - he was just saying
that he had this one unpublished patch...

But now it seems like the source code is available:

http://www.dicollecte.org/grammalecte/oxt/Grammalecte-v0.5.15.7z

I was able to build the LibreOffice extension there - at least the build
completed. I'm still missing the Firefox extension, because the "jpm"
package is missing in Debian - and anyways he will switch to "web-ext".

I'm also quite unclear on how to actually install that thing - while it
is Python, it's using a completely custom build system that doesn't seem
to have an "install" target...

When I replied to your thread, he moved the conversation over this other
forum here:

https://www.dicollecte.org/thread.php?prj=fr=620

There is more documentation on how to build grammalecte there...

I'm trying to convince him to use more standard packaging practices for
the benefit of all, but it seems like I will lose that battle. :)

A.

-- 
Il n'existe aucune limite sacrée ou non à l'action de l'homme dans
l'univers. Depuis nos origines nous avons le choix: être aveuglé par
la vérité ou coudre nos paupières.
- [no one is innocent]



Processed: retitle to O: giflib -- library for GIF images

2017-04-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 834410 O: giflib -- library for GIF images
Bug #834410 [wnpp] ITA: giflib -- library for GIF images
Changed Bug title to 'O: giflib -- library for GIF images' from 'ITA: giflib -- 
library for GIF images'.
> noowner 834410
Bug #834410 [wnpp] O: giflib -- library for GIF images
Removed annotation that Bug was owned by Keng-Yu Lin .
> stop
Stopping processing here.

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



Bug#826551: [Pkg-puppet-devel] Bug#826551: RFP: puppetdb-termini -- Enable a Puppet master to connect to PuppetDB

2017-04-19 Thread Apollon Oikonomopoulos
Hi!

On 18:12 Tue 11 Apr , intrigeri wrote:
> Hi!
> 
> Apollon Oikonomopoulos (Thu, 2 Feb 2017):
> > Following up, here's a more detailed course of action:
> 
> [...]
> 
> >  - As soon as 4.8.2-1 enters testing, I intend to upload 4.8.2-2, with 
> >the following changes:
> > * Restore the vim-puppet and puppet-el binary packages, which were 
> >   removed in 4.4.2-1.
> > * Import the PuppetDB terminus from PuppetDB 4.3.0.
> > * Ship the PuppetDB terminus in puppet-terminus-puppetdb. (Closes: 
> >   #826551)
> 
> >It will go through NEW for puppet-terminus-puppetdb, vim-puppet and 
> >puppet-el, but there should be no problems here.
> 
> >  - When 4.8.2-2 hits unstable and if all is well, I will file for an 
> >unblock request to have 4.8.2-2 migrate to testing. At that point the 
> >decision will be up to the release team.
> 
> >  - If and when 4.8.2-2 is accepted in testing, I will file for a 
> >jessie-pu to update 3.7.2-4 in Jessie to also include the PuppetDB 
> >terminus (from PuppetDB 2.3.8). Again, the terminus will be provided 
> >in a new binary package, puppet-terminus-puppetdb.
> 
> > If all goes well, we should end up with PuppetDB-enabled versions in 
> > both Jessie and Stretch. Also, for the puppet-terminus-puppetdb package 
> > I'm using PuppetDB's version numbers (and not the puppet source 
> > version), so that the package can be taken over by the puppetdb source 
> > when the latter is ready for Debian.
> 
> I really like this plan. Is it still up-to-date?

I'm afraid it isn't; it looks like the terminus version is more or less 
bound to PuppetDB's version, so it's probably not a good idea to ship it 
in the Puppet source. So, we'll go the regular way and backport PuppetDB 
to jessie, possibly with a patch to make the terminus compatible with 
Puppet 3.7. I expect this to be done by mid-May if all goes well!

Cheers,
Apollon



Bug#860613: ITP: node-hash-test-vectors -- test vectors for hashes

2017-04-19 Thread Bastien ROUCARIES
Package: wnpp
Severity: wishlist
Owner: ro...@debian.org
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: node-hash-test-vectors
  Version : 1.3.2
  Upstream Author : Dominic Tarr 
(http://dominictarr.com)
* URL : https://github.com/crypto-browserify/hash-test-vectors
* License : Expat
  Programming Lang: JavaScript
  Description : test vectors for hashes

 This module implements an abstract base class to inherit from,
 for creating node crypto streams.
 .
 This module follows the same API as Node.js crypto streams API.
 .
 Node.js is an event-based server-side JavaScript engine.



Bug#860579: ITP: grammalecte -- grammatical corrector for libreoffice and firefox

2017-04-19 Thread Sébastien Villemot
On Tue, 18 Apr 2017 17:30:35 -0400 Antoine Beaupre 
wrote:
> Package: wnpp
> Severity: wishlist
> Owner: Antoine Beaupre 
> 
> * Package name: grammalecte

[…]

> Someone discussed maintaining this in Debian 3 years ago on their
> forum:
> 
> https://www.dicollecte.org/thread.php?prj=fr=414

Indeed I have considered packaging grammalecte in Debian, but it turned
out to be non-free (because of lacking source for one of the core
files, see the discussion on the forum).

Last time I checked, the problem was still not solved.

Hopefully you’ll find a solution with upstream author, but 3 years ago
he refused to publish the full source code.

Cheers,

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



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


Bug#859879: Switching to ITP

2017-04-19 Thread Ghislain Vaillant
control: retitle -1 ITP: node-xterm -- terminal front-end component for the 
browser
control: owner -1 !



Processed: Switching to ITP

2017-04-19 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 ITP: node-xterm -- terminal front-end component for the browser
Bug #859879 [wnpp] RFP: xterm.js -- terminal front-end component for the browser
Changed Bug title to 'ITP: node-xterm -- terminal front-end component for the 
browser' from 'RFP: xterm.js -- terminal front-end component for the browser'.
> owner -1 !
Bug #859879 [wnpp] ITP: node-xterm -- terminal front-end component for the 
browser
Owner recorded as Ghislain Vaillant .

-- 
859879: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859879
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems