Bug#929195: ITP: golang-github-bradfitz-iter -- Range over integers [0,n). Seriously, that's it.

2019-05-19 Thread Drew Parsons
Package: wnpp
Severity: wishlist
Owner: Drew Parsons 

* Package name: golang-github-bradfitz-iter
  Version : 0.0~git20190303.33e6a98-1
  Upstream Author : Brad Fitzpatrick
* URL : https://github.com/bradfitz/iter
* License : BSD-3-clause
  Programming Lang: Go
  Description : Range over integers [0,n). Seriously, that's it.

Package iter provides a syntactically different way to iterate over
integers. That's it.

This package was intended to be an educational joke when it was
released in in 2014. People didn't get the joke part and started
depending on it. That's fine, I guess. (This is the Internet.) But
it's kinda weird. It's one line, and not even idiomatic Go style. I
encourage you not to depend on this or write code like this, but I do
encourage you to read the code and think about the representation of
Go slices and why it doesn't allocate.

This is a required dependency for golang-github-anacrolix-dms-dev
(ITP#928372) via golang-github-anacrolix-missinggo (ITP#929146).

To be maintained under the Debian Go Team.



Bug#929198: ITP: golang-github-ryszard-goskiplist -- A skip list implementation in Go

2019-05-19 Thread Drew Parsons
Package: wnpp
Severity: wishlist
Owner: Drew Parsons 

* Package name: golang-github-ryszard-goskiplist
  Version : 0.0~git20150312.2dfbae5-1
  Upstream Author : Ric (Ryszard) Szopa
* URL : https://github.com/ryszard/goskiplist
* License : Apache-2.0
  Programming Lang: Go
  Description : A skip list implementation in Go

 This is a library implementing skip lists for the Go programming
 language (http://golang.org/).
 .
 Skip lists are a data structure that can be used in place of balanced
 trees. Skip lists use probabilistic balancing rather than strictly
 enforced balancing and as a result the algorithms for insertion and
 deletion in skip lists are much simpler and significantly faster than
 equivalent algorithms for balanced trees.
 .
 Skip lists were first described in Pugh, William (June 1990)
 (ftp://ftp.cs.umd.edu/pub/skipLists/skiplists.pdf). "Skip lists:
 a probabilistic alternative to balanced trees". Communications of the
 ACM 33 (6): 668–676


This is a required dependency for golang-github-anacrolix-dms-dev
(ITP#928372) via golang-github-anacrolix-missinggo (ITP#929146).

To be maintained under the Debian Go Team.



Bug#929202: ITP: golang-github-anacrolix-tagflag -- declarative flag parsing for Go using struct tags

2019-05-19 Thread Drew Parsons
Package: wnpp
Severity: wishlist
Owner: Drew Parsons 

* Package name: golang-github-anacrolix-tagflag
  Version : 1.0.0 [preceded by 0.0.0-20180109131632-2146c8d41bf0]
  Upstream Author : Matt Joiner
* URL : https://github.com/anacrolix/tagflag
* License : MIT
  Programming Lang: Go
  Description : declarative flag parsing for Go using struct tags

 tagflag GoDoc (https://godoc.org/github.com/anacrolix/tagflag)
 .
 Package tagflag uses reflection to derive flags and positional
 arguments to a program, and parses and sets them from a slice of
 arguments.

This is a required dependency for golang-github-anacrolix-dms-dev
(ITP#928372) via golang-github-anacrolix-missinggo (ITP#929146).

There are bootstrapping issues to be resolved since missinggo and
tagflag both depend on each other. We'll start with an old version of
tagflag (which declares no dependency), package missinggo, then update
tagflag to the latest release.

To be maintained under the Debian Go Team.



Bug#929205: ITP: golang-github-huandu-xstrings -- Package xstrings: A collection of useful string functions in Go.

2019-05-19 Thread Drew Parsons
Package: wnpp
Severity: wishlist
Owner: Drew Parsons 

* Package name: golang-github-huandu-xstrings
  Version : 1.2.0
  Upstream Author : Huan Du 
* URL : https://github.com/huandu/xstrings
* License : MIT
  Programming Lang: Go
  Description : A collection of useful string functions in Go

 Go package xstrings is a collection of string functions, which are
 widely used in other languages but absent in Go package strings.
 .
 All functions are well tested and carefully tuned
 for performance.

This is a required dependency for golang-github-anacrolix-dms-dev
(ITP#928372) via golang-github-anacrolix-tagflag (ITP#929202)

To be maintained under the Debian Go Team.



Bug#902174: #902174: RFP: mes

2019-05-19 Thread Vagrant Cascadian
On 2019-02-13, Jan Nieuwenhuizen wrote:
> I have resurrected the debian package descriptions for Nyacc,
> MesCC-tools and Mes, and updated them to the latest versions.

I made another pass at the Debian packaging needed for Mes.

mescc-tools 0.6.1 builds fine for me:

  https://salsa.debian.org/vagrant/mescc-tools


Upstream nyacc 0.86.0, 0.86.9 and 0.92.0 all build fine for me:

  https://salsa.debian.org/vagrant/nyacc

There are two branches wip/debian/master-0.86.x and
wip/debian/master-0.92.x.


Mes itself still fails to build, but I updated to 0.19, and made a
branch based off of janneke's wip branch as well
(debian/master-wip). configure fails to detect nyacc. It may be an issue
with multi-arch paths (e.g. /usr/lib/guile/2.2
vs. /usr/lib/x86_64-linux-gnu/guile/2.2).

Many of the '#! /bin/sh' scripts contain bashisms which may not be
compatible with Debian's (usual) /bin/sh, dash after a quick check with
"checkbashisms". I could patch all the #! headers and audit all the
calls to "sh" directly, but that seems a bit unmaintainable in the
long-run.

Will need to do some better troubleshooting later... but this appears to
be the last build failure i tried based on the wip branch:

../pre-inst-env mescc -m 64 -c -D HAVE_CONFIG_H=1 -I include -I
../include -I ../include/linux/x86_64 -static -o crt1.o
../lib/linux/x86_64-mes-mescc/crt1.c
unhandled exception:unbound-variable:(move-specl-attr)
Backtrace:
/<>/scripts/mescc: line 56: 24904 Segmentation fault
${SCHEME-$MES} --no-auto-compile -e main -L /usr/share/guile/site/2.2 -C
/usr/lib/guile/2.2/site-ccache $bindir/mescc.scm $sep "$@"
make[1]: *** [GNUmakefile:95: build] Error 139


live well,
  vagrant


signature.asc
Description: PGP signature


Bug#929195: ITP: golang-github-bradfitz-iter -- Range over integers [0,n). Seriously, that's it.

2019-05-19 Thread Bastian Blank
On Sun, May 19, 2019 at 03:12:01PM +0800, Drew Parsons wrote:
> This package was intended to be an educational joke when it was
> released in in 2014. People didn't get the joke part and started
> depending on it. That's fine, I guess. (This is the Internet.) But
> it's kinda weird. It's one line, and not even idiomatic Go style. I
> encourage you not to depend on this or write code like this, but I do
> encourage you to read the code and think about the representation of
> Go slices and why it doesn't allocate.

Please merge this code into the using one.

Bastian

-- 
Emotions are alien to me.  I'm a scientist.
-- Spock, "This Side of Paradise", stardate 3417.3



Bug#929195: ITP: golang-github-bradfitz-iter -- Range over integers [0,n). Seriously, that's it.

2019-05-19 Thread Drew Parsons

On 2019-05-19 17:45, Bastian Blank wrote:

On Sun, May 19, 2019 at 03:12:01PM +0800, Drew Parsons wrote:

This package was intended to be an educational joke when it was
released in in 2014. People didn't get the joke part and started
depending on it. That's fine, I guess. (This is the Internet.) But
it's kinda weird. It's one line, and not even idiomatic Go style. I
encourage you not to depend on this or write code like this, but I do
encourage you to read the code and think about the representation of
Go slices and why it doesn't allocate.


Please merge this code into the using one.



It's used quite extensively by the anacrolix Go packages (missinggo, 
tagflag), it would be messy to replace every single instance.


Unless we can get them to put it in missinggo/iter/n.go

Drew



Bug#750731: marked as done (ITP: laszip -- Lossless LiDAR compression)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 11:00:10 +
with message-id 
and subject line Bug#750731: fixed in laszip 3.4.0-1~exp1
has caused the Debian Bug report #750731,
regarding ITP: laszip -- Lossless LiDAR compression
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.)


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

* Package name: laszip
  Version : 2.2.0
  Upstream Author : Martin Isenburg 
* URL : http://www.laszip.org/
* License : LGPL-2.1+
  Programming Lang: C++
  Description : Lossless LiDAR compression

LASzip quickly turns bulky LAS files into compact LAZ files without
information loss.

LASzip can be used in combination with libLAS to support both compressed
and uncompressed data.

Having LASzip in Debian will also benefit derivatives. Specifically
OSGeo-Live where LASzip support was requested in:

http://trac.osgeo.org/osgeo/ticket/1341
--- End Message ---
--- Begin Message ---
Source: laszip
Source-Version: 3.4.0-1~exp1

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

Debian distribution maintenance software
pp.
Bas Couwenberg  (supplier of updated laszip 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, 01 Apr 2019 21:35:11 +0200
Source: laszip
Binary: liblaszip-api8 liblaszip-api8-dbgsym liblaszip-dev liblaszip8 
liblaszip8-dbgsym
Architecture: source amd64
Version: 3.4.0-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 liblaszip-api8 - Lossless LiDAR compression - API shared library
 liblaszip-dev - Lossless LiDAR compression - development files
 liblaszip8 - Lossless LiDAR compression - shared library
Closes: 750731
Changes:
 laszip (3.4.0-1~exp1) experimental; urgency=medium
 .
   * Initial release. (Closes: #750731)
Checksums-Sha1:
 c079ffb1c6b0580b97a039ab6fd54f07d6220c42 2049 laszip_3.4.0-1~exp1.dsc
 980bd7ba5b36cd76f1329253dbeca30866d55c18 233740 laszip_3.4.0.orig.tar.gz
 5d3561b280310646cba030b417be5ef88e53b95c 4856 laszip_3.4.0-1~exp1.debian.tar.xz
 612f333cd8f84b1dd2fbd91326e636f38a60775a 8146 
laszip_3.4.0-1~exp1_amd64.buildinfo
 3930da1d84b040572218dfe8773b176a8db70a6a 11696 
liblaszip-api8-dbgsym_3.4.0-1~exp1_amd64.deb
 aaa46ca3d021cc08c1d78fac3991eb33b95e3354 22936 
liblaszip-api8_3.4.0-1~exp1_amd64.deb
 96ff42fe017a0c147d0996c2945805a724396317 22456 
liblaszip-dev_3.4.0-1~exp1_amd64.deb
 5cd539b9f9392a3efef1858e7cbb5c1796f7f4b2 601300 
liblaszip8-dbgsym_3.4.0-1~exp1_amd64.deb
 117b951430dfe9b7a8ea00881b3efc9bcd484aa2 140332 
liblaszip8_3.4.0-1~exp1_amd64.deb
Checksums-Sha256:
 74afb7d5260f55e56728cee0fad442a607a6113f3bffad75b838de5c4a6419da 2049 
laszip_3.4.0-1~exp1.dsc
 b7701a60434afe401397dbab4e2c179532ea7523583ca37ccd0ebb323ceec4b9 233740 
laszip_3.4.0.orig.tar.gz
 40147088af5cd58b441a5d67343ad9e4fd516418a14ba66dab7cb36a22257887 4856 
laszip_3.4.0-1~exp1.debian.tar.xz
 95636774a3fc903f69a0355e202c792bacc5bb72f8af6e44e5f0633c47efb621 8146 
laszip_3.4.0-1~exp1_amd64.buildinfo
 805f7ca36d1bbeaa637c836f794aa0ecdf174c2934e74d2d7796c5084e62da39 11696 
liblaszip-api8-dbgsym_3.4.0-1~exp1_amd64.deb
 3a43cd30256792ab46d0ea0cf74a54ef0eb0c7ec83b2338b20e3ea4625ce24ee 22936 
liblaszip-api8_3.4.0-1~exp1_amd64.deb
 84da6c7e1f3436ac014ae5e051e17261581c7857dbb7001aaad0d5e889cea267 22456 
liblaszip-dev_3.4.0-1~exp1_amd64.deb
 1f7c0ead8926c107d4d34781f4fcc007de5eb817444af40bc76e970d054be7b6 601300 
liblaszip8-dbgsym_3.4.0-1~exp1_amd64.deb
 ad6f08ed5f9ff4e3ba08aab58ff21338f445ea6d13ed5575741d5b55f28e 140332 
liblaszip8_3.4.0-1~exp1_amd64.deb
Files:
 67d18e832d51672d202491f8391e99d6 2049 science optional laszip_3.4.0-1~exp1.dsc
 5bcfcb7fd9d0b66b0ac7442940bbb681 233740 science optional 
laszip_3.4.0.orig.tar.gz
 7dec524e573d3a58966493de761ddfcc 4856 science optional 
laszip_3.4.0-1~exp1.debian.tar.xz
 7bde153690ecf96085ffb8ffad45ae4e 8146 science optional 
laszip_3.4.0-1~exp1_amd64.bui

Bug#775822: marked as done (O: gearmand -- Distributed job queue)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 13:36:42 +0200
with message-id <0cf052ec-d322-8e5a-3533-c3cfabcf8...@debian.org>
and subject line Re: RFA: gearmand
has caused the Debian Bug report #775822,
regarding O: gearmand -- Distributed job queue
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.)


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

I am looking for a new maintainer for the "gearmand" package. It
provides the binary packages:

* gearman
* gearman-job-server
* gearman-tools
* libgearman-dbg
* libgearman-dev
* libgearman-doc
* libgearman7
* libgearman7-dbg

I do not use gearmand anymore, and it would be nice for it to be
adopted by someone who does.
--- End Message ---
--- Begin Message ---
Source: gearmand
Source-Version: 1.0.6-6

On Tue, 20 Jan 2015 14:10:33 +0100 Stig Sandbeck Mathisen  
wrote:
> I am looking for a new maintainer for the "gearmand" package. It

gearmand (1.0.6-6) unstable; urgency=medium

  * New maintainer. Many thanks to Stig Sandbeck Mathisen for all his work.
[...]

 -- Alexandre Mestiashvili   Thu, 07 Apr 2016 
16:22:59 +0200--- End Message ---


Bug#929223: ITP: ruby-friendly-id -- Comprehensive slugging and pretty-URL plugin

2019-05-19 Thread Samyak Jain
Package: wnpp
Severity: wishlist
Owner:Pirate Praveen 
  Samyak Jain 

* Package name: ruby-friendly-id
  Version : 5.2.5
  Upstream Author : Norman Clarke 
Adrian Mugnolo 
Emilio Tagua 
* URL : https://github.com/norman/friendly_id
* License : Expat
  Programming Lang: Ruby
  Description : Comprehensive slugging and pretty-URL plugin

 FriendlyId is the "Swiss Army bulldozer" of slugging and permalink plugins for
 Active Record. It lets you create pretty URLs and work with human-friendly
 strings as if they were numeric ids.


It is a dependency for loomio and hence needs to be packaged.

Thanks,
Samyak Jain


Bug#929226: ITP: node-prosemirror-model -- ProseMirror's document model

2019-05-19 Thread Sruthi Chandran
Package: wnpp
Severity: wishlist
Owner: Sruthi Chandran 
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: node-prosemirror-model
  Version : 1.7.0
  Upstream Author : Marijn Haverbeke
* URL : https://github.com/prosemirror/prosemirror-model#readme
* License : Expat
  Programming Lang: JavaScript
  Description : ProseMirror's document model
 This is a core module of ProseMirror. ProseMirror is a well-behaved
rich semantic content editor based on contentEditable, with support for
collaborative editing and custom document schemas.
 .
 This module implements ProseMirror's document model, along with the
mechanisms needed to support schemas.
 .
 Node.js is an event-based server-side JavaScript engine.



signature.asc
Description: OpenPGP digital signature


Bug#929226: ITP: node-prosemirror-model -- ProseMirror's document model

2019-05-19 Thread Jérémy Lal
Le dim. 19 mai 2019 à 17:30, Sruthi Chandran  a écrit :

> Package: wnpp
> Severity: wishlist
> Owner: Sruthi Chandran 
> X-Debbugs-CC: debian-de...@lists.debian.org
>
> * Package name: node-prosemirror-model
>   Version : 1.7.0
>   Upstream Author : Marijn Haverbeke
> * URL :
> https://github.com/prosemirror/prosemirror-model#readme
> * License : Expat
>   Programming Lang: JavaScript
>   Description : ProseMirror's document model
>  This is a core module of ProseMirror. ProseMirror is a well-behaved
> rich semantic content editor based on contentEditable, with support for
> collaborative editing and custom document schemas.
>  .
>  This module implements ProseMirror's document model, along with the
> mechanisms needed to support schemas.
>  .
>  Node.js is an event-based server-side JavaScript engine.
>


Awesome !
However i suggest to bundle core prosemirror modules:
- prosemirror-model
- prosemirror-state
- prosemirror-transform
- prosemirror-view

however i suspect it would even make sense to include these ones in the
bundle:
- prosemirror-collab
- prosemirror-commands
- prosemirror-gapcursor
- prosemirror-history
- prosemirror-inputrules
- prosemirror-keymap
- prosemirror-schema-basic
- prosemirror-schema-list

because they are described in the documentation as core modules.

These ones are not, though:
- prosemirror-example-setup
- prosemirror-dropcursor
- prosemirror-menu

Looking forward to see prosemirror in debian !

Jérémy


Bug#929233: ITP: node-request-promise-core -- core logic for adding Promise support to request for Node.js

2019-05-19 Thread Ying-Chun Liu (PaulLiu)
Package: wnpp
Severity: wishlist
Owner: "Ying-Chun Liu (PaulLiu)" 


* Package name    : node-request-promise-core
  Version : 1.1.2
  Upstream Author : Nicolai Kamenzky (https://github.com/analog-nico)
* URL : https://github.com/request/promise-core#readme
* License : ISC
  Programming Lang: JavaScript
  Description : core logic for adding Promise support to request for
Node.js
 This package is the core library of node-request-promise. Normal users
should
 just use node-request-promise. It is only recommended to use this library
 directly, if you have very specific requirements.
 .
 Node.js is an event-based server-side JavaScript engine.


This package is a dependency of node-request-promise. I'll package it
too when this package

goes into sid.


This package will be group maintained by javascript team.



Bug#929234: ITP: node-request-promise -- simplified HTTP request client with Promise support

2019-05-19 Thread Ying-Chun Liu (PaulLiu)
Package: wnpp
Severity: wishlist
Owner: Ying-Chun Liu (PaulLiu) 

* Package name    : node-request-promise
  Version : 4.2.4
  Upstream Author : Nicolai Kamenzky (https://github.com/analog-nico)
* URL : https://github.com/request/request-promise#readme
* License : ISC
  Programming Lang: JavaScript
  Description : simplified HTTP request client with Promise support

 The simplified HTTP request client 'request' with Promise support.
Powered by Bluebird.

  Request-Promise adds a
Bluebird-powered |.then |method to Request call objects. By default,
 http response codes other than 2xx will cause the promise to be
rejected. This can be overwritten
 by setting |options.simple = false|.
 .
 Node.js is an event-based server-side JavaScript engine.

This package is a dependency of telegram-bot-api from npm. Thus I need
to package this

first for that package. I'll also package telegram-bot-api after this
package goes into sid.


This package will be group maintained by javascript team.


Yours,

Paul



Bug#929235: ITP: node-telegram-bot-api -- node.js module for Telegram Bot API

2019-05-19 Thread Ying-Chun Liu (PaulLiu)
Package: wnpp
Severity: wishlist
Owner: Ying-Chun Liu (PaulLiu) 

* Package name    : node-telegram-bot-api
  Version : 1.3.3
  Upstream Author : Max Stepanov 
* URL : https://github.com/mast/telegram-bot-api#readme
* License : Expat
  Programming Lang: JavaScript
  Description : node.js module for Telegram Bot API
 This package contains the node.js module for Telegram Bot API. You can
use it
 simply as an API if you want to implement logic by yourself, or you can
 enable retrieving of updates and get messages sent to your bot in a
callback
 .
 Node.js is an event-based server-side JavaScript engine.

This package allows us to write telegram bot API in node.js. A Telegram
Bot should be

like a daemon running on server and response the actions by its user. So
this is

really great for Debian to have if we want to implement a Telegram bot
on Debian.

This package will be group maintained by javascript team.


Yours,
Paul




signature.asc
Description: OpenPGP digital signature


Bug#927799: marked as done (ITP: termshark -- simple terminal user-interface for tshark)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:15 +
with message-id 
and subject line Bug#927799: fixed in termshark 1.0.0-1
has caused the Debian Bug report #927799,
regarding ITP: termshark -- simple terminal user-interface for tshark
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.)


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

* Package name: termshark
  Version : 1.0.0
  Upstream Author : gcla
* URL : https://termshark.io/
* License : MIT/Expat?
  Programming Lang: Golang
  Description : simple terminal user-interface for tshark

A terminal user-interface for tshark, inspired by Wireshark.

If you're debugging on a remote machine with a large pcap and no
desire to scp it back to your desktop, termshark can help!

Features

 * Read pcap files or sniff live interfaces (where tshark is permitted).
 * Inspect each packet using familiar Wireshark-inspired views
 * Filter pcaps or live captures using Wireshark's display filters
 * Copy ranges of packets to the clipboard from the terminal
 * Written in Golang, compiles to a single executable on each platform
   - downloads available for Linux (+termux), macOS, FreeBSD, and
   Windows



I don't believe there's any tool as powerful to do packet analysis
interactively without a graphical user interface, directly on the
server. This has several benefits:

 * packet analysis can be done directly on the server, in real-time,
   without having to copy files over the a GUI-enabled machine, do X
   forwarding or other shenanigans

 * possible compromise through the packet analysis software doesn't
   contaminate external machines because of the "I need to load that
   pcap file on my desktop" vector

 * it makes Xorg and Wayland haters and greybeard UNIX hackers happier
   because they can look even more 133t by running even more stuff in
   a dark obscure terminal no one else can possibly understand (not
   that Wireshark was particularly intuitive itself, of course, but
   this is an added bonus)

It has a bunch of dependencies:

https://github.com/gcla/termshark/blob/master/go.mod

This is an estimate of the work needed:

$ dh-make-golang estimate github.com/gcla/termshark
2019/04/23 09:02:34 Bringing github.com/gcla/termshark to Debian requires 
packaging the following Go packages:
github.com/gcla/termshark
  github.com/gcla/gowid
  github.com/go-test/deep
  gopkg.in/fsnotify.v1
  github.com/gcla/deep

I believe the `fsnotify` package is a false positive there, there is
at least two versions of this in Debian already:

https://tracker.debian.org/pkg/golang-fsnotify
https://tracker.debian.org/pkg/golang-github-howeyc-fsnotify

... not sure what's up with that. I haven't found anything for
go-test/deep or gcla/deep (are those the same thing?) or gcla/gowid
either. The latter (gowid) might be especially problematic because
there are *many* such libraries in the golang world:

https://github.com/gcla/gowid#similar-projects
https://appliedgo.net/tui/

... and gowid is not a particularly popular one:

https://libs.garden/go/terminal?sort=popular

It might nevertheless not be a problem to have distinct codebases as
long as they don't overlap, just like we have (say) GTK and QT. ;)

I'd love if someone from the golang team would just tackle this, but I
might do it myself if the needs becomes too pressing.
--- End Message ---
--- Begin Message ---
Source: termshark
Source-Version: 1.0.0-1

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

Debian distribution maintenance software
pp.
Dawid Dziurla  (supplier of updated termshark 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, 24 Apr 2019 19:39:36 +0200
Source: termshark
Binary: termshark
Architecture: source amd64
Version: 1.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Dawid Dziurla 
Description:
 termshark  - Terminal UI 

Bug#929144: marked as done (ITP: golang-github-mattn-go-pointer -- )

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:10 +
with message-id 
and subject line Bug#929144: fixed in golang-github-mattn-go-pointer 
0.0~git20180825.49522c3-1
has caused the Debian Bug report #929144,
regarding ITP: golang-github-mattn-go-pointer -- 
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.)


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

* Package name: golang-github-mattn-go-pointer
  Version : 0.0~git20180825.49522c3-1
  Upstream Author : Yasuhiro Matsumoto (a.k.a mattn) 
* URL : https://github.com/mattn/go-pointer
* License : Mit
  Programming Lang: Go
  Description : Utility for cgo

 go-pointer is a utility for cgo.

golang-github-mattn-go-pointer is a required dependency for
golang-github-anacrolix-dms-dev, ITP#928372.

Packaged under the Debian Go Team.
--- End Message ---
--- Begin Message ---
Source: golang-github-mattn-go-pointer
Source-Version: 0.0~git20180825.49522c3-1

We believe that the bug you reported is fixed in the latest version of
golang-github-mattn-go-pointer, 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 929...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Drew Parsons  (supplier of updated 
golang-github-mattn-go-pointer 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, 18 May 2019 11:25:06 +0800
Source: golang-github-mattn-go-pointer
Binary: golang-github-mattn-go-pointer-dev
Architecture: source all
Version: 0.0~git20180825.49522c3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Drew Parsons 
Description:
 golang-github-mattn-go-pointer-dev - utility for cgo
Closes: 929144
Changes:
 golang-github-mattn-go-pointer (0.0~git20180825.49522c3-1) unstable; 
urgency=medium
 .
   * Initial release. (Closes: #929144).
   * Packaged as dependency for golang-github-anacrolix-dms-dev,
 see ITP#928372.
Checksums-Sha1:
 c1c181af277cbb76cb0b2861b8b9dbd7c44a20f3 2380 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3-1.dsc
 4117eeccec6d0841e90de4f2f5aa7cf8a9bef86d 1260 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3.orig.tar.xz
 97864e9aac27cb75d2a5333434a1efb90215a904 1784 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3-1.debian.tar.xz
 45d3441ff5eef092155a64b462fb6f656c9a4daf 3180 
golang-github-mattn-go-pointer-dev_0.0~git20180825.49522c3-1_all.deb
 58672d223f185fbef34bf602d36fd84b4ad6b5a6 5888 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3-1_amd64.buildinfo
Checksums-Sha256:
 262d717ac4ba0d71c9b94bdc674f82c975ec81c48b7a720ef3a1fd36787281ce 2380 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3-1.dsc
 bb87f23c7bfadeb667df08b59397c6e91fee07aa9c6e7d2288398d4cfec61235 1260 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3.orig.tar.xz
 ad487b06ac85a393d065c47e2a14f0e7d33e45a426a783d2d6c867e95b378003 1784 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3-1.debian.tar.xz
 921d24f796d6e35917dc9b2dfc901af3b2138dec1cad98071084ff35a1cea839 3180 
golang-github-mattn-go-pointer-dev_0.0~git20180825.49522c3-1_all.deb
 ea5c1059fe864f8e6f52b406a57c225ffb2140bc2037474938241a423e6c1f75 5888 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3-1_amd64.buildinfo
Files:
 1c092dc9e00551fae1de37d2a2a315cb 2380 devel optional 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3-1.dsc
 48190d38aefae0df91d56c562ff8d4b6 1260 devel optional 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3.orig.tar.xz
 c91d2233e2798df01f222e45426512c9 1784 devel optional 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3-1.debian.tar.xz
 979555c7cc94baec2a7a93ee0b7e8c91 3180 devel optional 
golang-github-mattn-go-pointer-dev_0.0~git20180825.49522c3-1_all.deb
 cb2475afe672475089a3191ca02b6700 5888 devel optional 
golang-github-mattn-go-pointer_0.0~git20180825.49522c3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEI8mpPlhYGekSbQo2Vz7x5L1aAfoFAlzfiMMACgkQVz7x5L1a
AfpxbhAAp45eQelkvSXVKkv1fle+vijfCE3xUYxWRZSdTbamGqpaVL6eMrcD54

Bug#924567: marked as done (ITP: kraken2 -- taxonomic classification system using exact k-mer matches)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:10 +
with message-id 
and subject line Bug#924567: fixed in kraken2 2.0.7~beta-1
has caused the Debian Bug report #924567,
regarding ITP: kraken2 -- taxonomic classification system using exact k-mer 
matches
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.)


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

Subject: ITP: kraken2 -- taxonomic classification system using exact k-mer 
matches
Package: wnpp
Owner: Andreas Tille 
Severity: wishlist

* Package name: kraken2
  Version : 2.0.7~beta
  Upstream Author : Derrick Wood 
* URL : https://www.ccb.jhu.edu/software/kraken2/
* License : GPL-3+
  Programming Lang: C
  Description : taxonomic classification system using exact k-mer matches
 Kraken 2 is the newest version of Kraken, a taxonomic classification
 system using exact k-mer matches to achieve high accuracy and fast
 classification speeds. This classifier matches each k-mer within a query
 sequence to the lowest common ancestor (LCA) of all genomes containing
 the given k-mer. The k-mer assignments inform the classification
 algorithm. [see: Kraken 1's Webpage for more details].
 .
 Kraken 2 provides significant improvements to Kraken 1, with faster
 database build times, smaller database sizes, and faster classification
 speeds. These improvements were achieved by the following updates to the
 Kraken classification program:
 .
  1. Storage of Minimizers: Instead of storing/querying entire k-mers,
 Kraken 2 stores minimizers (l-mers) of each k-mer. The length of
 each l-mer must be ≤ the k-mer length. Each k-mer is treated by
 Kraken 2 as if its LCA is the same as its minimizer's LCA.
  2. Introduction of Spaced Seeds: Kraken 2 also uses spaced seeds to
 store and query minimizers to improve classification accuracy.
  3. Database Structure: While Kraken 1 saved an indexed and sorted list
 of k-mer/LCA pairs, Kraken 2 uses a compact hash table. This hash
 table is a probabilistic data structure that allows for faster
 queries and lower memory requirements. However, this data structure
 does have a <1% chance of returning the incorrect LCA or returning
 an LCA for a non-inserted minimizer. Users can compensate for this
 possibility by using Kraken's confidence scoring thresholds.
  4. Protein Databases: Kraken 2 allows for databases built from amino
 acid sequences. When queried, Kraken 2 performs a six-frame
 translated search of the query sequences against the database.
  5. 16S Databases: Kraken 2 also provides support for databases not
 based on NCBI's taxonomy. Currently, these include the 16S
 databases: Greengenes, SILVA, and RDP.

Remark: This package is maintained by Debian Med Packaging Team at
   https://salsa.debian.org/med-team/kraken2
--- End Message ---
--- Begin Message ---
Source: kraken2
Source-Version: 2.0.7~beta-1

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

Debian distribution maintenance software
pp.
Andreas Tille  (supplier of updated kraken2 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, 14 Mar 2019 14:13:17 +0100
Source: kraken2
Binary: kraken2
Architecture: source amd64
Version: 2.0.7~beta-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 

Changed-By: Andreas Tille 
Description:
 kraken2- taxonomic classification system using exact k-mer matches
Closes: 924567
Changes:
 kraken2 (2.0.7~beta-1) unstable; urgency=low
 .
   * Initial release (Closes: #924567)
Checksums-Sha1:
 7f1a809a5128d3ada24beca2eb4eff818fadfbf8 1988 kraken2_2.0.7~beta-1.dsc
 9c0aeff869579ccd2a483e446ef9afc0d2754db6 71605 kraken2_2.0.7~beta.orig.tar.gz
 dd11b392db7abb049da58ebc55563bfecd7bc05c 337340 
kraken2_2.0.7~beta-1.debian.tar.xz
 dc4c53df376bd524b3fd8c9681122252557d82ae 1717078 
kraken2-dbgsym_2.0.7~beta-1_amd64.deb
 6de1e2e8b160b25cc

Bug#927287: marked as done (ITP: pmars -- Portable MARS, Core War simulator)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:12 +
with message-id 
and subject line Bug#927287: fixed in pmars 0.9.2-1
has caused the Debian Bug report #927287,
regarding ITP: pmars -- Portable MARS, Core War simulator
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.)


-- 
927287: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927287
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Owner: Andrius Merkys 
Severity: wishlist
X-Debbugs-CC: pkg-games-de...@lists.alioth.debian.org

* Package name    : pmars
  Version : 0.9.2
  Upstream Author : Albert Ma 
* URL : http://www.koth.org/pmars
* License : GPL-2
  Programming Lang: C
  Description : Portable MARS, Core War simulator
 Portable MARS is the official Core War simulator of the ICWS and the
 rec.games.corewar newsgroup. pMARS serves as a test bed for new Redcode
 standards and tournament styles. It has also been used in genetic algorithm
 experiments and as an assembly language teaching aid.

I am interested in using pMARS for teaching genetic algorithms and evolution.

Remark: This package is to be maintained by Debian Games Team.

Best,
Andrius

--- End Message ---
--- Begin Message ---
Source: pmars
Source-Version: 0.9.2-1

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

Debian distribution maintenance software
pp.
Andrius Merkys  (supplier of updated pmars 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: Fri, 05 Apr 2019 08:14:22 -0400
Source: pmars
Binary: pmars pmars-dbgsym
Architecture: source amd64
Version: 0.9.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team 
Changed-By: Andrius Merkys 
Description:
 pmars  - Portable MARS, Core War simulator
Closes: 927287
Changes:
 pmars (0.9.2-1) unstable; urgency=medium
 .
   * Initial release (Closes: #927287)
Checksums-Sha1:
 522390221d96630dc08c8e754fb061e65e6cb4be 1891 pmars_0.9.2-1.dsc
 eaf0b721f82c47ca6e4327134d44846c5bc33db6 158454 pmars_0.9.2.orig.tar.gz
 d821a62e980f922cc58ce0c2373587bd4acc6b53 3948 pmars_0.9.2-1.debian.tar.xz
 32bd2af91ad29a124d9f44bd4d5dadc5b646bce1 91496 pmars-dbgsym_0.9.2-1_amd64.deb
 79d20a6fc6c0ae2e008029cdf7e4b61ee2bbb57f 6530 pmars_0.9.2-1_amd64.buildinfo
 52f599d2acfbbf43b86745ac472276be02fb5750 71196 pmars_0.9.2-1_amd64.deb
Checksums-Sha256:
 b8f990dff476062485cb82cd6db5f4e097f6e0547ca8508b80a19b9889ec8041 1891 
pmars_0.9.2-1.dsc
 df7f0a1d0026c4af4f57e941d1dd3c487be1eb8097a658cec12e1c1f8e8d3ead 158454 
pmars_0.9.2.orig.tar.gz
 474cd91f8a12ad59800c62d3b2e1407a28b4d1131966802285a2f97b633a4943 3948 
pmars_0.9.2-1.debian.tar.xz
 5cc4ac21a4008b9438e7442ac0e55102507e398c31d2a1f0ee8c81b2b37759f7 91496 
pmars-dbgsym_0.9.2-1_amd64.deb
 50c03e27129bacb297634c45de576276bef7883cce2f89d545882034652e1869 6530 
pmars_0.9.2-1_amd64.buildinfo
 9b1531c71b548ff001871faccbe150821be21ca2ec5eb9d9597fb13e77fcb08d 71196 
pmars_0.9.2-1_amd64.deb
Files:
 0ce7d518a85815c1fc4bfe7ca8d5cbad 1891 games optional pmars_0.9.2-1.dsc
 2577e48e4781a6c115b49977852b3fc5 158454 games optional pmars_0.9.2.orig.tar.gz
 8bd9e8b988d9c81f5107352cb731b820 3948 games optional 
pmars_0.9.2-1.debian.tar.xz
 e4a95ee726647e967a0d7e0487551da6 91496 debug optional 
pmars-dbgsym_0.9.2-1_amd64.deb
 6e0ade38a0ce488e432355e1b0ef02a5 6530 games optional 
pmars_0.9.2-1_amd64.buildinfo
 44fdb210a8cc38225ddcd41153bf8ff7 71196 games optional pmars_0.9.2-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEdyKS9veshfrgQdQe5fQ/nCc08ocFAly/+N4SHG1lcmt5c0Bk
ZWJpYW4ub3JnAAoJEOX0P5wnNPKHfXsP/RHHrqb6o1fUo50x8M/+cVR4GSPvz7J5
8ZQsVIr0OQw+9Q+ruPIJn1WTQhhAu6yRK1hHgcn/f1RP/+MkvfdA8slwxfie/Ii/
t80gzJr9iYH52L+6tSEzZ6xVh/Nyr+TpZWQGxDOIX2diY6WC96DEQRWfs4Z4seic
lXP0DoCUjL9n1dNZj6ShqX0WbK7Sj+/N+UQN/KUCl6Y9sza7CN9rz/u5DXz7bqfh
7943CL6nZsiJjDxukL7E7zIEAZGPEVyED3bL0rBgMFXA3xVIeaccaaeiCIrFHSVC
lM/LpfXWGUPgJCiWgc3SAXf7srEmnhgkSZrcjCoHi3vnh07bSwz8j2autZYP46K4
3OjQS+FSFF21Bvv8Zy0LgVyL7ii4XYc0qXUXyNXeUD48i069o/sxBVSF2cIlj1ZL
wA4no0B81ORq4zBbsmyrt9oULkPMpqOdz5MYivmMASzV+av5kW988usUDLP1g2

Bug#925329: marked as done (ITP: vim-textobj-user -- Vim plugin for user-defined text objects)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:15 +
with message-id 
and subject line Bug#925329: fixed in vim-textobj-user 0.7.6-1
has caused the Debian Bug report #925329,
regarding ITP: vim-textobj-user -- Vim plugin for user-defined text objects
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.)


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

* Package name: vim-textobj-user
  Version : 0.7.6
  Upstream Author : Kana Natsuno 
* URL : https://github.com/kana/vim-textobj-user
* License : MIT
  Programming Lang: vim
  Description : Vim plugin for user-defined text objects

Create your own text objects without pain.
 
It is hard to create text objects, because there are many pitfalls to
deal with. This plugin hides such details and provides a declarative way
to define text objects. You can use regular expressions to define simple
text objects, or use functions to define complex ones.

This plugin is a dependancy for other vim plugins that define specific
text objects. There is a list of 50 such plugins here:

https://github.com/kana/vim-textobj-user/wiki
--- End Message ---
--- Begin Message ---
Source: vim-textobj-user
Source-Version: 0.7.6-1

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

Debian distribution maintenance software
pp.
Edward Betts  (supplier of updated vim-textobj-user 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, 21 Mar 2019 21:52:49 +
Source: vim-textobj-user
Binary: vim-textobj-user
Architecture: source all
Version: 0.7.6-1
Distribution: unstable
Urgency: medium
Maintainer: Edward Betts 
Changed-By: Edward Betts 
Description:
 vim-textobj-user - Vim plugin for user-defined text objects
Closes: 925329
Changes:
 vim-textobj-user (0.7.6-1) unstable; urgency=medium
 .
   * Initial release (Closes: #925329)
Checksums-Sha1:
 445cc9965b46c64cf7a2791bb4cb3e0521a03046 1914 vim-textobj-user_0.7.6-1.dsc
 13c3db7e8489abd467ef72c8263282d3b2da9c29 22105 
vim-textobj-user_0.7.6.orig.tar.gz
 df54bc3b027546495cfd59b9d7f309a28028ae66 1932 
vim-textobj-user_0.7.6-1.debian.tar.xz
 ec96915493fd45e1958ecef59a7bb81692ef6b9a 15512 vim-textobj-user_0.7.6-1_all.deb
 08b185914f65aa87f2e954ec9c87086afe7f195a 5523 
vim-textobj-user_0.7.6-1_amd64.buildinfo
Checksums-Sha256:
 25b8a952cb4a82fae3d9689353afb07c66e92cf5beae28dc94a29f329f6bc42f 1914 
vim-textobj-user_0.7.6-1.dsc
 d12e55b3e015a566290d900add0d4879abacf6b64018e62e172a860a7bcdd43f 22105 
vim-textobj-user_0.7.6.orig.tar.gz
 12633dc861b23a3251173ce69fd8a1b1e32e01d20fb5a21247381878cad4c564 1932 
vim-textobj-user_0.7.6-1.debian.tar.xz
 3764d541919d9d4879cd3a2b705f00502f9ceaea1c4b91cd963d3e5c4e2501c8 15512 
vim-textobj-user_0.7.6-1_all.deb
 7e1a4880a67117f30fa696214cfa15725a1948a16289f63bddfdc3dca4ddf2ee 5523 
vim-textobj-user_0.7.6-1_amd64.buildinfo
Files:
 f6787551f12b9f3906fb8187faf4eff3 1914 editors optional 
vim-textobj-user_0.7.6-1.dsc
 4bcb6aede5ea7ea87e297abc4f51be57 22105 editors optional 
vim-textobj-user_0.7.6.orig.tar.gz
 1af761a1bddc373f9b86f5df99379a06 1932 editors optional 
vim-textobj-user_0.7.6-1.debian.tar.xz
 02b2b6d4d1be91870af598e5f99e1caa 15512 editors optional 
vim-textobj-user_0.7.6-1_all.deb
 898a3701d0787d0e88712ef65ac216f8 5523 editors optional 
vim-textobj-user_0.7.6-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE+4rPp4xyYInDitAmlgWhCYxjuSoFAlyXb8gACgkQlgWhCYxj
uSoFQA//b+oY56q6XULmTEMVwqNHtZ6iSH9rxRHWaJ7kTbV6JD2NxoEzNd9CKU6t
/RC4OWNWAjZhSvbFCrldA2qtCYvyogQNMexp26NvjtiRqCQHMPCwrfCKeTgqW7eC
cyW/SKfFx509zGTleXRGkpOzg1ByJI0PGezfNL76Th7AZZJkCbxsRNNdO1PsholD
iGjIOPsgc46d3l0NPjS8Oo1ZlYpBUm0i23ZoCDDKhDa0RemNI/dTBs3Z2rWOY7Ig
FshRv3cJ5HQOklu6KsStzZX0QySAD8hVgDUHiMyq0BpGvMaOUg7yEIfsB0DIxuia
xKlst+qL3rY78lzo/qjmA7kORBNGR43S4doHYcQ/X1nvcv6O1nBvwMeBp21ffx4k
vQiXlZRR1yDkQfT62fbY87IMcsgeJ1WuNuaDJ28NFFi15370Wm/nKBGAckHviW8p
r/kLpdkXi80rSg2SKhBiYGvBYmlJ54DbAHkR8q3

Bug#925400: marked as done (ITP: q2cli -- Click-based command line interface for QIIME 2)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:12 +
with message-id 
and subject line Bug#925400: fixed in q2cli 2019.1.0-1
has caused the Debian Bug report #925400,
regarding ITP: q2cli -- Click-based command line interface for QIIME 2
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.)


-- 
925400: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925400
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Owner: Debian Med Packaging Team <
debian-med-packag...@lists.alioth.debian.org>
Severity: wishlist

* Package name: q2cli
  Version : 2019.1.0
  Upstream Author : QIIME 2 development team
* URL : https://qiime2.org/
* License : BSD-3-clause
  Programming Lang: Python
  Description : Click-based command line interface for QIIME 2
 QIIME 2 is a powerful, extensible, and decentralized microbiome analysis
 package with a focus on data and analysis transparency. QIIME 2 enables
 researchers to start an analysis with raw DNA sequence data and finish with
 publication-quality figures and statistical results.
 Key features:
  * Integrated and automatic tracking of data provenance
  * Semantic type system
  * Plugin system for extending microbiome analysis functionality
  * Support for multiple types of user interfaces (e.g. API, command line,
 graphical)
 .
 QIIME 2 is a complete redesign and rewrite of the QIIME 1 microbiome
analysis
 pipeline. QIIME 2 will address many of the limitations of QIIME 1, while
 retaining the features that makes QIIME 1 a powerful and widely-used
analysis
 pipeline.
 .
 QIIME 2 currently supports an initial end-to-end microbiome analysis
pipeline.
 New functionality will regularly become available through QIIME 2 plugins.
You
 can view a list of plugins that are currently available on the QIIME 2
plugin
 availability page. The future plugins page lists plugins that are being
 developed.

Remark: This package is maintained by Debian Med Packaging Team at
   https://salsa.debian.org/med-team/q2cli
--- End Message ---
--- Begin Message ---
Source: q2cli
Source-Version: 2019.1.0-1

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

Debian distribution maintenance software
pp.
Liubov Chuprikova  (supplier of updated q2cli 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, 11 Mar 2019 10:07:52 +0200
Source: q2cli
Binary: q2cli
Architecture: source all
Version: 2019.1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 

Changed-By: Liubov Chuprikova 
Description:
 q2cli  - Click-based command line interface for QIIME 2
Closes: 925400
Changes:
 q2cli (2019.1.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #925400)
Checksums-Sha1:
 577aa987abaa47107c4250223d4c121aeb40b537 2009 q2cli_2019.1.0-1.dsc
 09e1bbdb8324fb989d7cc0ddd83e6cd9c6ebc59a 267477 q2cli_2019.1.0.orig.tar.gz
 17599223804aeb8844621af715d88d66d6597f09 5828 q2cli_2019.1.0-1.debian.tar.xz
 26501507baac6bf66e78e7b03666a573b5e2504b 30816 q2cli_2019.1.0-1_all.deb
 890781c6e6913055f74a3d51f3fabc63f113e3f6 6536 q2cli_2019.1.0-1_amd64.buildinfo
Checksums-Sha256:
 17273982c09e18cf8dab068c99768a81745fdd61d09406ea686e33c1351885c3 2009 
q2cli_2019.1.0-1.dsc
 a69b0a16e91d15bcd30233d75a8b0709b93c3f0817a166dd99051353f8c1d3fe 267477 
q2cli_2019.1.0.orig.tar.gz
 5e76f897423a6b1d86c7e54e36a6e2398ebe4933ccd507adc051390526fddb09 5828 
q2cli_2019.1.0-1.debian.tar.xz
 15734ed7f79e8107815e3787446483efe69cf455b981cf3de5acb0ffba2fc856 30816 
q2cli_2019.1.0-1_all.deb
 9542c20874e6113b80738e4ef00b444b97b3756b8d3349a0155b6796e8c211d6 6536 
q2cli_2019.1.0-1_amd64.buildinfo
Files:
 596ba297b1bcd83dc4ec08dd1f44bf0e 2009 science optional q2cli_2019.1.0-1.dsc
 f546f0ce82a1ed0f05c3c6a04e8488a0 267477 science optional 
q2cli_2019.1.0.orig.tar.gz
 7b77bd5c0bf5e6726e6493f3111e15fe 5828 science optional 
q2cli_2019.1.0-1.debian.tar.xz
 ee19987c76d8ed822f225c384a60858b 30816 science optional 
q2cli_2019.1.0-1_all.deb
 4ea36bda01843971a3abdda6dff08541 6536 science optional 
q2cli_2019

Bug#929149: marked as done (ITP: golang-github-anacrolix-envpprof -- configures Go's pprof and default HTTP mux)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:09 +
with message-id 
and subject line Bug#929149: fixed in golang-github-anacrolix-envpprof 1.0.0-1
has caused the Debian Bug report #929149,
regarding ITP: golang-github-anacrolix-envpprof -- configures Go's pprof and 
default HTTP mux
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.)


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

* Package name: golang-github-anacrolix-envpprof
  Version : 1.0.0
  Upstream Author : Matt Joiner
* URL : https://github.com/anacrolix/envpprof
* License : MIT
  Programming Lang: Go
  Description : configures Go's pprof and default HTTP mux

Allows run time configuration of Go's pprof features and default HTTP
mux using environment variables. 

Required dependency for golang-github-anacrolix-dms-dev (ITP#928372)

To be maintained by the Debian Go Team/
--- End Message ---
--- Begin Message ---
Source: golang-github-anacrolix-envpprof
Source-Version: 1.0.0-1

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

Debian distribution maintenance software
pp.
Drew Parsons  (supplier of updated 
golang-github-anacrolix-envpprof 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, 18 May 2019 16:11:49 +0800
Source: golang-github-anacrolix-envpprof
Binary: golang-github-anacrolix-envpprof-dev
Architecture: source all
Version: 1.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Drew Parsons 
Description:
 golang-github-anacrolix-envpprof-dev - configures Go's pprof and default HTTP 
mux
Closes: 929149
Changes:
 golang-github-anacrolix-envpprof (1.0.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #929149)
Checksums-Sha1:
 dfecee2c1750a61bd132234740ad735a4e52a630 2280 
golang-github-anacrolix-envpprof_1.0.0-1.dsc
 d645cb1f59b304ebb32a72a491a7e513a0f15ce4 1873 
golang-github-anacrolix-envpprof_1.0.0.orig.tar.gz
 0465e0a9cdb63facf609f6f37eb3718d381d6b4a 1844 
golang-github-anacrolix-envpprof_1.0.0-1.debian.tar.xz
 faa2705e6e18a95e0162020d31752f632ece0cd9 3188 
golang-github-anacrolix-envpprof-dev_1.0.0-1_all.deb
 c9b3b9aec98fffe39f1fa9a7f7cb7a600b71dc0c 5762 
golang-github-anacrolix-envpprof_1.0.0-1_amd64.buildinfo
Checksums-Sha256:
 69d5320aacd8edd81a42aadcfb0bb996810c72c95642b4539bf06a3718e746bd 2280 
golang-github-anacrolix-envpprof_1.0.0-1.dsc
 329f539f579db58d45cbc89fbd33f16d3199d317d4de4677b162804690f22b0d 1873 
golang-github-anacrolix-envpprof_1.0.0.orig.tar.gz
 ba9e03ee2cf1ab3dca6b152d2cb5c6a70d6b55d9ae4942f0519d78d21b4c35ad 1844 
golang-github-anacrolix-envpprof_1.0.0-1.debian.tar.xz
 9e2d120ceedc126d5ab535854d07fc28fc6213f8e79115b89df70a0d7b1a85f2 3188 
golang-github-anacrolix-envpprof-dev_1.0.0-1_all.deb
 66ce795f91171d85b7db1ff673e264ac738d27cadfcdf00b06959391e3eda158 5762 
golang-github-anacrolix-envpprof_1.0.0-1_amd64.buildinfo
Files:
 098f571643aed2622a45392669cbe3fe 2280 devel optional 
golang-github-anacrolix-envpprof_1.0.0-1.dsc
 890793b56e6b88a36ef1da31c8e01123 1873 devel optional 
golang-github-anacrolix-envpprof_1.0.0.orig.tar.gz
 87a6e43cd542c15bbb781c9c543c9326 1844 devel optional 
golang-github-anacrolix-envpprof_1.0.0-1.debian.tar.xz
 f67c08b163c5bd0d4f6b148396ca1677 3188 devel optional 
golang-github-anacrolix-envpprof-dev_1.0.0-1_all.deb
 05714eb3329a0adadfc562cd1e05aea0 5762 devel optional 
golang-github-anacrolix-envpprof_1.0.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEI8mpPlhYGekSbQo2Vz7x5L1aAfoFAlzfvygACgkQVz7x5L1a
Afo2jQ//a52nF8scMRzsxOx5fCna1wX/OdTa6n3yNSq5Ob23nS5sY54wjoWW4jmD
3XHXTJqBWvW4RoLlDlSLOTAGVjmG0GpkOMBdk3paU55oHtpgIwyvJksTXj47C98X
zfj2EIQlmDNso0uLbuoGovhgLjVj553cB7N48LEEYc0NoC9b4an32MK79RSHJ+Yp
aJLKzgNKM+1Se0rY0ElgZ/8cS3hMsLKpI4gPlKMhmMLslPhRraTL02VNH2drAt+8
h6DZLENPrnhdH5Wl/wXZdwDjkz9YrvUXa86Lvg4rJTXs4wnl6J90AuJcR3u7TjNP
N/pCd9D9yw/v/MDTa9pTIm

Bug#928022: marked as done (ITP: modernize -- Modernizes Python code for eventual Python 3 migration)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:11 +
with message-id 
and subject line Bug#928022: fixed in modernize 0.7-1
has caused the Debian Bug report #928022,
regarding ITP: modernize -- Modernizes Python code for eventual Python 3 
migration
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.)


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

* Package name: modernize
  Version : 0.7
  Upstream Author : Armin Ronacher
* URL : https://pypi.org/project/modernize
* License : BSD-3-clause plus some PSF-2
  Programming Lang: Python
  Description : Modernizes Python code for eventual Python 3 migration

This library is a very thin wrapper around lib2to3 to utilize it to make
Python 2 code more modern with the intention of eventually porting it
over to Python 3.

The source will produce the binary packages modernize and
python3-libmodernize. This package is a dependency for salt-pylint,
which I intent to package.

I plan to maintain that package as part of the Debian Python Modules
Team.

-- 
Benjamin Drung
System Developer
Debian & Ubuntu Developer

1&1 IONOS Cloud GmbH | Greifswalder Str. 207 | 10405 Berlin | Germany
E-mail: benjamin.dr...@cloud.ionos.com | Web: www.ionos.de

Head Office: Berlin, Germany
District Court Berlin Charlottenburg, Registration number: HRB 125506 B
Executive Management: Christoph Steffens, Matthias Steinberg, Achim
Weiss

Member of United Internet
--- End Message ---
--- Begin Message ---
Source: modernize
Source-Version: 0.7-1

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

Debian distribution maintenance software
pp.
Benjamin Drung  (supplier of updated modernize 
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: Fri, 26 Apr 2019 12:18:31 +0200
Source: modernize
Binary: modernize python3-libmodernize
Architecture: source all
Version: 0.7-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Benjamin Drung 
Description:
 modernize  - Modernizes Python code for eventual Python 3 migration
 python3-libmodernize - Modernizes Python code for eventual Python 3 migration 
(Python 3)
Closes: 928022
Changes:
 modernize (0.7-1) unstable; urgency=medium
 .
   * Initial version. (Closes: #928022)
Checksums-Sha1:
 b092355076c1049320bbc633bdc5b27138d833b5 2138 modernize_0.7-1.dsc
 73cb0cebb5f5d019d8ef561c52ff88e996d60c52 18277 modernize_0.7.orig.tar.gz
 f7dcaeb94221adaa73d6c323752f827e4cf3f2aa 3256 modernize_0.7-1.debian.tar.xz
 1f5ff4d956c4e782079daaa0ca4400e3778e27e8 5756 modernize_0.7-1_all.deb
 1a8661802cf3c39a2b59e2f31a63c93cd1cbbe83 6070 modernize_0.7-1_amd64.buildinfo
 28cc19620d59defe30c5b8ad99b8cf26115e8aa0 19020 
python3-libmodernize_0.7-1_all.deb
Checksums-Sha256:
 0ce5cc9c87f90b240adb9111394887bd60bb074e4e259a56e829104d4d916c51 2138 
modernize_0.7-1.dsc
 d4f6a3555b1621281ee013d830337c72c133c6318efaac6fc24fe6afa0cc1ab6 18277 
modernize_0.7.orig.tar.gz
 4cffa812e481f8efb3ec53f6c54442033b57e9dfbbf4f663a40a69c8fb59bb59 3256 
modernize_0.7-1.debian.tar.xz
 d6aecd90bad3a08437a5613260641af5ee9f59abfa7ce5173447fa6aa0565cbb 5756 
modernize_0.7-1_all.deb
 9a4bb1f33f07ddb624068768a1dfe533dc3068c3e08530e856391aeb7b64b93a 6070 
modernize_0.7-1_amd64.buildinfo
 60890851db06a83d50651b02ebf949129f209eb0935be0200ce2d5368250e630 19020 
python3-libmodernize_0.7-1_all.deb
Files:
 b41a43745667fd42f8db0d2768a383b3 2138 python optional modernize_0.7-1.dsc
 80e356e4218f6a293f76d9e362ec 18277 python optional 
modernize_0.7.orig.tar.gz
 a6d0b40d102a6751736f825061899a6c 3256 python optional 
modernize_0.7-1.debian.tar.xz
 aac3f7c03fb90bc883490c090255565d 5756 python optional modernize_0.7-1_all.deb
 9784e5c748d4eed2a6c9161121f66079 6070 python optional 
modernize_0.7-1_amd64.buildinfo
 ee559f60d0ddd70f014ada3b589a8ea7 19020 python optional 
python3-libmodernize_0.7-1_all.deb

-BEGIN PGP SIGNATURE-

iQIz

Bug#929195: marked as done (ITP: golang-github-bradfitz-iter -- Range over integers [0,n). Seriously, that's it.)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:09 +
with message-id 
and subject line Bug#929195: fixed in golang-github-bradfitz-iter 
0.0~git20190303.33e6a98-1
has caused the Debian Bug report #929195,
regarding ITP: golang-github-bradfitz-iter -- Range over integers [0,n). 
Seriously, that's it.
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.)


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

* Package name: golang-github-bradfitz-iter
  Version : 0.0~git20190303.33e6a98-1
  Upstream Author : Brad Fitzpatrick
* URL : https://github.com/bradfitz/iter
* License : BSD-3-clause
  Programming Lang: Go
  Description : Range over integers [0,n). Seriously, that's it.

Package iter provides a syntactically different way to iterate over
integers. That's it.

This package was intended to be an educational joke when it was
released in in 2014. People didn't get the joke part and started
depending on it. That's fine, I guess. (This is the Internet.) But
it's kinda weird. It's one line, and not even idiomatic Go style. I
encourage you not to depend on this or write code like this, but I do
encourage you to read the code and think about the representation of
Go slices and why it doesn't allocate.

This is a required dependency for golang-github-anacrolix-dms-dev
(ITP#928372) via golang-github-anacrolix-missinggo (ITP#929146).

To be maintained under the Debian Go Team.
--- End Message ---
--- Begin Message ---
Source: golang-github-bradfitz-iter
Source-Version: 0.0~git20190303.33e6a98-1

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

Debian distribution maintenance software
pp.
Drew Parsons  (supplier of updated 
golang-github-bradfitz-iter 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, 19 May 2019 15:27:34 +0800
Source: golang-github-bradfitz-iter
Binary: golang-github-bradfitz-iter-dev
Architecture: source all
Version: 0.0~git20190303.33e6a98-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Drew Parsons 
Description:
 golang-github-bradfitz-iter-dev - Range over integers [0,n). Seriously, that's 
it.
Closes: 929195
Changes:
 golang-github-bradfitz-iter (0.0~git20190303.33e6a98-1) unstable; 
urgency=medium
 .
   * Initial release (Closes: #929195)
Checksums-Sha1:
 7cfb29300150103099bf19f236686b2139a960a5 2341 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98-1.dsc
 10494088ced6567a65964e891c8b5bc8aa3548d9 1824 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98.orig.tar.xz
 ddb2b06708742b8c80ffd4f227055939728fb476 2184 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98-1.debian.tar.xz
 16a804ee96e3e12a216aef5c038482308acfab93 3520 
golang-github-bradfitz-iter-dev_0.0~git20190303.33e6a98-1_all.deb
 6c9824ec1e6bb48e0a2311164803a4a59e69d8c5 5861 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98-1_amd64.buildinfo
Checksums-Sha256:
 e206499a3817f525047599b89f3fff38d2e774f6dbc02759b4197c38e84b588c 2341 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98-1.dsc
 2e1b393f5e7e354b2db18425750925cb672e1f235adbbb3c579e481cbb7baf83 1824 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98.orig.tar.xz
 51cc61857b572081975e15bf42de22fd3e19433746b15079f793ab82e0b90ff9 2184 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98-1.debian.tar.xz
 9f7cb567054827b5fd66afccfedcd828de555b622630205dd44b85483ef74519 3520 
golang-github-bradfitz-iter-dev_0.0~git20190303.33e6a98-1_all.deb
 b0cc8e089c9890f372ba47759ad8409dc7f4088f18c6fe6766aba5a077a4d049 5861 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98-1_amd64.buildinfo
Files:
 04df768cc3092659e63e47b1e7a5ec16 2341 devel optional 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98-1.dsc
 9eaf41b956618e02d7522beacf1c2cb5 1824 devel optional 
golang-github-bradfitz-iter_0.0~git20190303.33e6a98.orig.tar.xz
 767aba5fcbe60be378e4696aca03f591 2184 devel optional 

Processed: node-telegram-bot-api (929235) block by 929234 by 929233

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

> block 929234 by 929233
Bug #929234 [wnpp] ITP: node-request-promise -- simplified HTTP request client 
with Promise support
929234 was not blocked by any bugs.
929234 was not blocking any bugs.
Added blocking bug(s) of 929234: 929233
> block 929235 by 929234
Bug #929235 [wnpp] ITP: node-telegram-bot-api -- node.js module for Telegram 
Bot API
929235 was not blocked by any bugs.
929235 was not blocking any bugs.
Added blocking bug(s) of 929235: 929234
> thanks
Stopping processing here.

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



Bug#896185: marked as done (ITP: netctl -- Profile based systemd network management)

2019-05-19 Thread Debian Bug Tracking System
Your message dated Sun, 19 May 2019 19:00:11 +
with message-id 
and subject line Bug#896185: fixed in netctl 1.20-1
has caused the Debian Bug report #896185,
regarding ITP: netctl -- Profile based systemd network management
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.)


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

* Package name: netctl
  Version : 1.16
  Upstream Author : Jouke Witteveen
* URL : https://git.archlinux.org/netctl.git
* License : GPL3
  Programming Lang: shell
  Description : Profile based systemd network management

 netctl is a CLI and profile-based network manager and an Arch project. It uses
 profiles to manage network connections and different modes of operation to
 start profiles automatically or manually on demand. It also provides special
 systemd services for automatically switching of profiles for wired and wireless
 connections.
--- End Message ---
--- Begin Message ---
Source: netctl
Source-Version: 1.20-1

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

Debian distribution maintenance software
pp.
Yangfl  (supplier of updated netctl 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, 21 Mar 2019 13:12:14 +0800
Source: netctl
Binary: netctl
Architecture: source all
Version: 1.20-1
Distribution: unstable
Urgency: medium
Maintainer: Yangfl 
Changed-By: Yangfl 
Description:
 netctl - Profile based systemd network management
Closes: 896185
Changes:
 netctl (1.20-1) unstable; urgency=medium
 .
   * Initial release (Closes: #896185)
Checksums-Sha1:
 6951f362b417d81e079f83fbdb710c8bd6c0cd28 2104 netctl_1.20-1.dsc
 ad93ff931307f6e9fd420a70be890d61903cf669 45944 netctl_1.20.orig.tar.xz
 9d6a364ea88343c3d639c240a0cc8d59fa15cc2c 916 netctl_1.20.orig.tar.xz.asc
 9c626e1a31b57b7e9b762099d3e88bb14979ea18 11688 netctl_1.20-1.debian.tar.xz
 18a6d04a238afa272f3ae0ff42447e18d3a214dc 36160 netctl_1.20-1_all.deb
 87294964a1d7eee25fa54d18eb724ec7c0a4eb36 6596 netctl_1.20-1_amd64.buildinfo
Checksums-Sha256:
 497bc084908a6c0505b7fe81da22fdfc5a32a2a86d1b8dc9aa11056922850f20 2104 
netctl_1.20-1.dsc
 d814b7a82274e8f37439fe5720f98e40c2bd3660f77e4c277c594fedbc99b92a 45944 
netctl_1.20.orig.tar.xz
 17890d17f1dfc7684f6607b6ff4c5e7c1ccd32f2e049dfe365a7729d08aa731b 916 
netctl_1.20.orig.tar.xz.asc
 d20eb55edeb9ed2096caf6faee860f2af1d525b0ae98cde4fcb2a3fb9b73d17d 11688 
netctl_1.20-1.debian.tar.xz
 57107dc70686247cea125ca01c45c9700c8b528097fc087505460ff377070636 36160 
netctl_1.20-1_all.deb
 b6af028506bc87be610b99a4b56d52d0fa808a9a6c872854350ca838ff57f598 6596 
netctl_1.20-1_amd64.buildinfo
Files:
 9a186f2560115968cb9c4515a29fbeea 2104 net optional netctl_1.20-1.dsc
 f9080693f493c20974db9fe12f103121 45944 net optional netctl_1.20.orig.tar.xz
 a7b56faf96fa500abae6ff012cacc39f 916 net optional netctl_1.20.orig.tar.xz.asc
 dbe2e05eefd983792d7200989e297288 11688 net optional netctl_1.20-1.debian.tar.xz
 fb8362d8869e9fcd5b22352ec1dff1f2 36160 net optional netctl_1.20-1_all.deb
 a310ca89615b1c8ee0953fd8b782d259 6596 net optional 
netctl_1.20-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAlyT9S4ACgkQwpPntGGC
Ws7SWA//bQUedb9Kb1AHzD5C7ywmArKD33OwLSbSHsMVyymxeqBEX6mpnH0Iq9+O
Ua7bBq/mTD5WEQkr+Sq9wUwIw55IbBBrFQGCXnlbFx8eXICsKqNp+Qz2WGHutmUD
jnEO9mIpMMFV4/lPmFwqxUkKZ+DB4Mys4e1DYmUXw9pkn8X1AI8PztgQv8FyPGmw
mNiMcefx3NBuTemrj9w41mmjzlwUkV9pz0gQ0emIVKEZx9a/dYrx/crYJ4yLc1Mw
S8FW2rseSiI39s6O965PT5IlmE4ZDEqiYEU/3XSMIU2L2H9OWTJAK1UCGtg47qBn
oXt+IeSuBS8tmyuz3hfrk5PAG8x0iPvaRZBx34SSDHSfL+l6KoCElT1xGhwJvOL3
XjOTAwIF7209H9snDmG//0fM6czFn8Kk9DdtouCqzEDkXk+d/5dqEVBaJrtPhxFW
bFF0b6XLfNY1dJt47/rphwG/f/i0Y/M1/SN2u92UPbFu5P7e7gdO+L+VTXeQu7ns
BDCAEY3rKsuDxhGOu9xj/IZplNUtrHLwsRt9gZ0hxhyabH1NxHBx40EFYLo1gwHp
fBz806VpgVj8AgWzF6cFUbGLnFKDvoRlp/A1fDBx7V2c/jWaFXfwmBMXlt0mwyf+
P3ywH6DXSu8Bqu9g7twBS7/3lqC0FP5ETuiSnvXtezX2Oxm0kCI=
=fw2v
-EN

Bug#929024: ITP: routinator -- An RPKI Validator

2019-05-19 Thread Marco d'Itri
A first attempt at packaging is available in 
https://salsa.debian.org/md/routinator/ .

-- 
ciao,
Marco


signature.asc
Description: PGP signature