Processed: your mail

2018-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 770915 by 909158
Bug #770915 [wnpp] RFP: utox -- uTox is a lightweight audio/video chat client 
based on the secure tox protocol.
770915 was blocked by: 739860 900575
770915 was not blocking any bugs.
Added blocking bug(s) of 770915: 909158
>
End of message, stopping processing here.

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



Bug#909158: ITP: qr-code-generator -- QR Code generator library in multiple languages

2018-09-18 Thread Yangfl
Package: wnpp
Severity: wishlist
Owner: Yangfl 

* Package name: qr-code-generator
  Version : 1.2.1
  Upstream Author : Aladdin Enterprises
* URL : https://github.com/nayuki/QR-Code-generator
* License : MIT
  Programming Lang: C
  Description : QR Code generator library in multiple languages
 This project aims to be the best, clearest QR Code generator library in
 multiple languages. The primary goals are flexible options and absolute
 correctness. Secondary goals are compact implementation size and good
 documentation comments. Core features:
  * Available in 7 programming languages, all with nearly equal functionality:
Java, JavaScript, TypeScript, Python, C++, C, Rust
  * Significantly shorter code but more documentation comments compared to
competing libraries
  * Supports encoding all 40 versions (sizes) and all 4 error correction levels,
as per the QR Code Model 2 standard
  * Output formats: Raw modules/pixels of the QR symbol (all languages), SVG XML
string (all languages except C), BufferedImage raster bitmap (Java only),
HTML5 canvas (JavaScript and TypeScript only)
  * Encodes numeric and special-alphanumeric text in less space than general
text
  * Open source code under the permissive MIT License



Processed: anbox: please enable --software-rendering, contingent on packaging of SwiftShader

2018-09-18 Thread Debian Bug Tracking System
Processing control commands:

> block -1 with 909156
Bug #909157 [anbox] anbox: please enable --software-rendering, contingent on 
packaging of SwiftShader
909157 was not blocked by any bugs.
909157 was not blocking any bugs.
Added blocking bug(s) of 909157: 909156

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



Bug#909156: RFP: swiftshader -- high-performance CPU-based implementation of OpenGL ES graphics APIs

2018-09-18 Thread Daniel Kahn Gillmor
Package: wnpp
Severity: wishlist
Control: affects -1 anbox chromium-browser

* Package name: swiftshader
  Version : 0+git20180914.0.25c541e+dfsg1-0
  Upstream Author : The ANGLE Project Authors 
* URL : https://swiftshader.googlesource.com/SwiftShader
* License : Apache 2.0
  Programming Lang: C++
  Description : high-performance CPU-based implementation of OpenGL ES 
graphics APIs

  SwiftShader is a high-performance CPU-based implementation of the
  OpenGL ES and Direct3D 9 graphics APIs. Its goal is to provide
  hardware independence for advanced 3D graphics.

  On GNU/Linux platforms, it will only provide an OpenGL ES
  implementation and not Direct3D 9.

  It is concretely useful for running OpenGL-based on systems with
  decent CPU but without dedicated graphics hardware.  For example,
  running anbox with the --software-rendering argument.

  Note that there is already a copy of SwiftShader in debian, in the
  chromium-browser sources at third_party/swiftshader.  (another copy
  exists in qtwebengin-opensource-src, embedded itself in an embedded
  copy of chromium.



speaking of third_party bundling, upstream swiftshader appears to be
keen on a lot of bundling as well, and we can and should
repack/minimize the source to not bother including stuff we do not
need to include (or which we do not have a DFSG-free license for).

As of git version 25c541e51cbdb0406f9010d7f20c4fa03a4b0fa8 (the head
of upstream's https://swiftshader.googlesource.com/SwiftShader git
repository as i write this), we can exclude:

 .gitmodules
 third_party/

Note that the following directory is not even DFSG-free:

 third_party/PowerVR_SDK/

given this stripping, CMakeLists.txt can be cleaned up with the
attached patch series to make the swiftshader cleanly and simply
buildable on debian.

I'm not well-prepared to maintain this myself, but having it in debian
would be nice for several reasons:

 * we could potentially use it for chromium-browser, if the package
   maintainers want to use system libraries

 * it should make it possible to encourage anbox to permit
   --software-renderer without being installed via "snap"

 * It might make for a sensible backend for the libegl1 or libgles2 or
   libgles1 dispatchers, though i don't know that i understand the
   dispatch architecture well enough to be confident in how this can
   happen.

Would anyone be interested in co-maintenance?

  --dkg
commit b0b61117ca82e70e0c165c892a717b7f4f97a99f
Author: Daniel Kahn Gillmor 
Date:   Tue Sep 18 17:41:52 2018 -0400

debian has googletest

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 95766810..e8099454 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -89,19 +89,6 @@ endif()
 
 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
 
-###
-# Initialize submodules
-###
-
-if(NOT EXISTS ${CMAKE_SOURCE_DIR}/third_party/googletest)
-message(WARNING "
-  third_party/googletest submodule missing.
-  Running 'git submodule update --init' to download it:
-")
-
-execute_process(COMMAND git submodule update --init)
-endif()
-
 ###
 # Convenience macros
 ###
@@ -2079,12 +2066,12 @@ endif()
 if(BUILD_TESTS AND ${REACTOR_BACKEND} STREQUAL "Subzero")
 set(SUBZERO_TEST_LIST
 ${SOURCE_DIR}/Reactor/Main.cpp
-${CMAKE_SOURCE_DIR}/third_party/googletest/googletest/src/gtest-all.cc
+/usr/src/googletest/googletest/src/gtest-all.cc
 )
 
 set(SUBZERO_TEST_INCLUDE_DIR
-${CMAKE_SOURCE_DIR}/third_party/googletest/googletest/include
-${CMAKE_SOURCE_DIR}/third_party/googletest/googletest/
+/usr/src/googletest/googletest/include
+/usr/src/googletest/googletest/
 )
 
 add_executable(SubzeroTest ${SUBZERO_TEST_LIST})
@@ -2103,13 +2090,13 @@ if(BUILD_TESTS)
 set(UNITTESTS_LIST
 ${CMAKE_SOURCE_DIR}/tests/unittests/main.cpp
 ${CMAKE_SOURCE_DIR}/tests/unittests/unittests.cpp
-${CMAKE_SOURCE_DIR}/third_party/googletest/googletest/src/gtest-all.cc
+/usr/src/googletest/googletest/src/gtest-all.cc
 )
 
 set(UNITTESTS_INCLUDE_DIR
-${CMAKE_SOURCE_DIR}/third_party/googletest/googletest/include/
-${CMAKE_SOURCE_DIR}/third_party/googletest/googlemock/include/
-${CMAKE_SOURCE_DIR}/third_party/googletest/googletest/
+/usr/src/googletest/googletest/include/
+/usr/src/googletest/googlemock/include/
+/usr/src/googletest/googletest/
 ${CMAKE_SOURCE_DIR}/include/
 )
 

commit f796785dcd76b711d210f657a623ebefd765d07f
Author: Daniel Kahn Gillmor 
Date:   Wed Sep 19 00:49:57 2018 -0400

use debian LLVM, rather than embedded copy

diff --git a/CMakeLists.txt b/CMakeLists.txt
index e8099454..578d80ce 100644
--- a/CMakeLists.txt
+++ b/

Processed: RFP: swiftshader -- high-performance CPU-based implementation of OpenGL ES graphics APIs

2018-09-18 Thread Debian Bug Tracking System
Processing control commands:

> affects -1 anbox chromium-browser
Bug #909156 [wnpp] RFP: swiftshader -- high-performance CPU-based 
implementation of OpenGL ES graphics APIs
Added indication that 909156 affects anbox and chromium-browser

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



Processed: retitle to RFP: libpoly -- a C library for manipulating polynomials

2018-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 864834 RFP: libpoly -- a C library for manipulating polynomials
Bug #864834 [wnpp] ITP: libpoly -- a C library for manipulating polynomials
Changed Bug title to 'RFP: libpoly -- a C library for manipulating polynomials' 
from 'ITP: libpoly -- a C library for manipulating polynomials'.
> noowner 864834
Bug #864834 [wnpp] RFP: libpoly -- a C library for manipulating polynomials
Removed annotation that Bug was owned by Ian A Mason .
> stop
Stopping processing here.

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



Processed: retitle to RFP: yices2 -- satisfiability modulo theory solver by SRI

2018-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 864786 RFP: yices2 -- satisfiability modulo theory solver by SRI
Bug #864786 [wnpp] ITP: yices2 -- satisfiability modulo theory solver by SRI
Changed Bug title to 'RFP: yices2 -- satisfiability modulo theory solver by 
SRI' from 'ITP: yices2 -- satisfiability modulo theory solver by SRI'.
> noowner 864786
Bug #864786 [wnpp] RFP: yices2 -- satisfiability modulo theory solver by SRI
Removed annotation that Bug was owned by Ian A Mason .
> stop
Stopping processing here.

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



Processed: libmd5-rfc: block ITP 909116 by RFS 909117

2018-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 909116 by 909117
Bug #909116 [wnpp] ITP: libmd5-rfc -- RFC1321-based (RSA-free) MD5 library
909116 was not blocked by any bugs.
909116 was not blocking any bugs.
Added blocking bug(s) of 909116: 909117
> stop
Stopping processing here.

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



Bug#699469: marked as done (RFP: fonts-googlechromeos -- Default fonts of Google ChromeOS)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 22:20:01 +
with message-id 
and subject line closing RFP: fonts-googlechromeos -- Default fonts of Google 
ChromeOS
has caused the Debian Bug report #699469,
regarding RFP: fonts-googlechromeos -- Default fonts of Google ChromeOS
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.)


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

* Package name: fonts-googlechromeos
* URL : 
http://commondatastorage.googleapis.com/chromeos-localmirror/distfiles/croscorefonts-0.0.3.tar.gz
* License : ?
  Description : Default fonts of Google ChromeOS

See:

https://profiles.google.com/100132233764003563318/buzz/RWkh9Dhabia
http://code.google.com/p/chromium-os/issues/detail?id=5287

-- 
Juhapekka "naula" Tolvanen * http colon slash slash iki dot fi slash juhtolv
"Quidquid Latine dictum sit altum videtur."
--- End Message ---
--- Begin Message ---
RFP 699469 has no visible progress for a long time, so closing.--- End Message ---


Bug#861128: RFP: elpa-markdown-toc -- Generate a TOC in markdown file with Emacs

2018-09-18 Thread Nicholas D Steeves

Hey Antoine,

Package ready for testing from:
  dget -x 
https://mentors.debian.net/debian/pool/main/m/markdown-toc-el/markdown-toc-el_0.1.2-1.dsc

Upstream included an autoload cookie so 'markdown-toc-generate-toc'
works out of the box.  I can provide a deb and signed changes if that
would be more convenient.  In particular someone needs to test
'markdown-toc-user-toc-structure-manipulation-fn' before I can
responsibly file an RFS bug.

Cheers,
Nicholas


signature.asc
Description: PGP signature


Bug#840742: RFP: golang-github-kardianos-service -- Run go programs as a service on major platforms

2018-09-18 Thread Guillem Jover
Hi!

On Fri, 2016-10-14 at 13:45:40 +0200, Guillem Jover wrote:
> Package: wnpp
> Severity: wishlist
> Tags: patch
> Control: block 793749 by -1
> 
> * Package name: golang-github-kardianos-service
>   Version : 0.0~git20160824.0.7a88211-1
>   Upstream Author : Daniel Theophanes
> * URL : https://github.com/kardianos/service
> * License : zlib
>   Programming Lang: Go
>   Description : Run go programs as a service on major platforms
> 
>  service will install / un-install, start / stop, and run a program as a
>  service (daemon). Currently supports Linux/(systemd | Upstart | SysV),
>  OSX/Launchd and Windows XP+.
>  .
>  Windows controls services by setting up callbacks that are non-trivial. This
>  is very different than other systems. This package provides the same API
>  despite the substantial differences. It also can be used to detect how a
>  program is called, from an interactive terminal or from a service manager.

> Attached a working and tested packaging, where only the ITP bug number
> needs to be filled in the debian/changelog, Maintainer changed, and Vcs
> fields added.

Attached updated packaging to current standards.

Thanks,
Guillem


golang-github-kardianos-service_0.0~git20160824.0.7a88211-0.1.debian.tar.xz
Description: application/xz


Bug#909144: RFP: golang-github-tidwall-gjson -- JSON Parser for Go

2018-09-18 Thread Guillem Jover
Package: wnpp
Severity: wishlist
Tags: patch
Control: block 793749 by -1

* Package name: golang-github-tidwall-gjson
  Version : 1.1.3-1
  Upstream Author : Josh Baker
* URL : https://github.com/tidwall/gjson
* License : Expat
  Programming Lang: Go
  Description : JSON Parser for Go

 Go package that provides a fast and simple way to get values from a json
 document. It has features such as one line retrieval , dot notation paths,
 iteration, and parsing json lines.


This package is a dependency of the latest telegraf upstream release.

Attached a working and tested packaging, where only the ITP bug number
needs to be filled in the debian/changelog, and Maintainer changed.

Thanks,
Guillem


golang-github-tidwall-gjson_1.1.3-0.1.debian.tar.xz
Description: application/xz


Processed: RFP: golang-github-tidwall-gjson -- JSON Parser for Go

2018-09-18 Thread Debian Bug Tracking System
Processing control commands:

> block 793749 by -1
Bug #793749 [wnpp] RFP: telegraf -- plugin-driven server agent for reporting 
metrics into InfluxDB
793749 was blocked by: 840627 794252 840747 793836 793750 909137 798230 840759 
841121 841081 840742 909141 841120 909143 846614
793749 was not blocking any bugs.
Added blocking bug(s) of 793749: 909144

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



Bug#909143: RFP: golang-github-tidwall-match -- simple string pattern matcher for Go

2018-09-18 Thread Guillem Jover
Package: wnpp
Severity: wishlist
Tags: patch
Control: block 793749 by -1

* Package name: golang-github-tidwall-match
  Version : 0.0~git20171002.1731857-1
  Upstream Author : Josh Baker
* URL : https://github.com/tidwall/match
* License : Expat
  Programming Lang: Go
  Description : simple string pattern matcher for Go

 Match is a very simple pattern matcher where '*' matches on any number
 characters and '?' matches on any one character.


This package is a dependency of the latest telegraf upstream release.

Attached a working and tested packaging, where only the ITP bug number
needs to be filled in the debian/changelog, and Maintainer changed.

Thanks,
Guillem


golang-github-tidwall-match_0.0~git20171002.1731857-0.1.debian.tar.xz
Description: application/xz


Processed: RFP: golang-github-tidwall-match -- simple string pattern matcher for Go

2018-09-18 Thread Debian Bug Tracking System
Processing control commands:

> block 793749 by -1
Bug #793749 [wnpp] RFP: telegraf -- plugin-driven server agent for reporting 
metrics into InfluxDB
793749 was blocked by: 909141 793836 840627 841120 840742 909137 846614 841121 
841081 798230 840759 793750 840747 794252
793749 was not blocking any bugs.
Added blocking bug(s) of 793749: 909143

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



Processed: RFP: golang-github-influxdata-go-syslog -- Go parser for syslog messages

2018-09-18 Thread Debian Bug Tracking System
Processing control commands:

> block 793749 by -1
Bug #793749 [wnpp] RFP: telegraf -- plugin-driven server agent for reporting 
metrics into InfluxDB
793749 was blocked by: 840747 793836 793750 841120 846614 840627 798230 909137 
841081 840759 794252 841121 840742
793749 was not blocking any bugs.
Added blocking bug(s) of 793749: 909141

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



Bug#909141: RFP: golang-github-influxdata-go-syslog -- Go parser for syslog messages

2018-09-18 Thread Guillem Jover
Package: wnpp
Severity: wishlist
Tags: patch
Control: block 793749 by -1

* Package name: golang-github-influxdata-go-syslog
  Version : 1.0.1-1
  Upstream Author : InfluxData
* URL : https://github.com/influxdata/go-syslog
* License : Expat
  Programming Lang: Go
  Description : Go parser for syslog messages

 This package provides:
 • a RFC5424-compliant parser
 • a RFC5424-compliant builder
 • a RFC5425-compliant parser


This package is a dependency of the latest telegraf upstream release.

Attached a working and tested packaging, where only the ITP bug number
needs to be filled in the debian/changelog, and Maintainer changed.

Thanks,
Guillem


golang-github-influxdata-go-syslog_1.0.1-0.1.debian.tar.xz
Description: application/xz


Bug#909137: RFP: golang-github-influxdata-tail -- Go package for reading from continuously updated files (tail -f)

2018-09-18 Thread Guillem Jover
Package: wnpp
Severity: wishlist
Tags: patch
Control: block 793749 by -1

* Package name: golang-github-influxdata-tail
  Version : 1.0.0+git20180327.c434825-1
  Upstream Author : InfluxData
* URL : https://github.com/influxdata/tail
* License : Expat
  Programming Lang: Go
  Description : Go package for reading from continuously updated files 
(tail -f)

Description: Go package for reading from continuously updated files (tail -f)
 tail is a Go library striving to emulate the features of the BSD tail
 program (like tail -f). It comes with full support for truncation/move
 detection as it is designed to work with log rotation tools.


This package is a required dependency for the latest telegraf upstream
release. This is a fork of the golang-github-hpcloud-tail that got
removed some time ago from the archive.

Attached the initial packaging. It requires filling the ITP bug number,
and setting proper Uploaders.

Thanks,
Guillem


golang-github-influxdata-tail_1.0.0+git20180327.c434825-0.1.debian.tar.xz
Description: application/xz


Processed: RFP: golang-github-influxdata-tail -- Go package for reading from continuously updated files (tail -f)

2018-09-18 Thread Debian Bug Tracking System
Processing control commands:

> block 793749 by -1
Bug #793749 [wnpp] RFP: telegraf -- plugin-driven server agent for reporting 
metrics into InfluxDB
793749 was blocked by: 794252 840747 798230 846614 793836 793750 841081 840627 
841120 840742 841121 840759
793749 was not blocking any bugs.
Added blocking bug(s) of 793749: 909137

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



Bug#861128: RFP: elpa-markdown-toc -- Generate a TOC in markdown file with Emacs

2018-09-18 Thread Nicholas D Steeves
Control: tag -1 - moreinfo
Control: retitle -1 ITP: elpa-markdown-toc -- Generate a TOC in markdown file 
with Emacs
Control: owner -1 !

Hi Antoine,

On Tue, Sep 18, 2018 at 09:44:19AM -0400, Antoine Beaupré wrote:
> On 2018-09-17 22:40:10, Nicholas D Steeves wrote:
> >
> > Re: a couple of markdown-toc bugs:
> >
> > https://github.com/ardumont/markdown-toc/issues/29
> >   * Solve in Debian with a hard depends on >= markdown-mode 2.2?
> >   * You mentioned markdown-mode 2.1 is bad, 20161222.1416 is good,
> > and 2.2 is from 20170526, thus 2.2 should be good.
> >   * possibly fixed in markdown-toc?
> >
> > https://github.com/ardumont/markdown-toc/issues/15
> >   * "Don't assume that a document has an h1"
> >   * How serious is this one?  Seems like it could be annoying.
> >
> > https://github.com/ardumont/markdown-toc/issues/35
> >   * "Lines starting with # in code sections are treated as headings"
> >   * I imagine this one will frustrate many users.
> 
> I'm not sure how that's relevant to this RFP. Sure, like any other
> software, markdown-toc has bugs. :) Those are not critical and the thing
> generally works in my use cases. I think it can be packaged as is.

Ok, will do!  Yes, all software has bugs...when considering
maintaining a pkg I ask myself "is this something will have to fix,
and will a lot of people be unhappy if I don't?" vs "I've got a
year's old back queue of stuff that's important to me".  Thinking
optimistically, maybe a Debian user will submit a patch for #15 and
#35? ;-)

> > By the way, if you'd like I'd be happy to give you an intro on dh-elpa
> > packaging.  With the exception of a couple of autopkgtest on LXC
> > workarounds it's easy stuff--the trickiest bit is identifying why an
> > upstream self-test doesn't work on buildd.  Also, we're working on
> > improving dh-elpa's documentation, so alternatively it would be nice
> > to hear about your experiences with it--and than make improvements if
> > necessary!  dh_elpa(1), dh_elpa_test(1), dh-make-elpa(1), plus 
> 
> I'm sure you guys did a great job and it's nice to see so many ELPA
> packages being added into Debian. Unfortunately, I don't have much time
> to handle the packaging myself so if you do not mind I'll stay on this
> side of the packaging for now. :) If I do find the time, you'll be the
> first to know (here) that I can work on a package of course.

Cool :-)

Cheers,
Nicholas


signature.asc
Description: PGP signature


Processed: Re: Bug#861128: RFP: elpa-markdown-toc -- Generate a TOC in markdown file with Emacs

2018-09-18 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 - moreinfo
Bug #861128 [wnpp] RFP: elpa-markdown-toc -- Generate a TOC in markdown file 
with Emacs
Removed tag(s) moreinfo.
> retitle -1 ITP: elpa-markdown-toc -- Generate a TOC in markdown file with 
> Emacs
Bug #861128 [wnpp] RFP: elpa-markdown-toc -- Generate a TOC in markdown file 
with Emacs
Changed Bug title to 'ITP: elpa-markdown-toc -- Generate a TOC in markdown file 
with Emacs' from 'RFP: elpa-markdown-toc -- Generate a TOC in markdown file 
with Emacs'.
> owner -1 !
Bug #861128 [wnpp] ITP: elpa-markdown-toc -- Generate a TOC in markdown file 
with Emacs
Owner recorded as Nicholas D Steeves .

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



Bug#846614: RFP: golang-github-influxdata-wlog -- simple log level based Golang logger

2018-09-18 Thread Guillem Jover
Hi!

On Fri, 2016-12-02 at 17:26:34 +0100, Guillem Jover wrote:
> Package: wnpp
> Severity: wishlist
> Tags: patch
> Control: block 793749 by -1
> 
> * Package name: golang-github-influxdata-wlog
>   Version : 0.0~git20160411.0.7c63b0a-1
>   Upstream Author : InfluxData
> * URL : https://github.com/influxdata/wlog
> * License : MIT
>   Programming Lang: Go
>   Description : simple log level based Golang logger
> 
>  Provides an io.Writer that filters log messages based on a log level
>  prefix. Valid log levels are: DEBUG, INFO, WARN, ERROR, OFF.
> 
> 
> This package is a dependency of the new telegraf 1.1.1 upstream release.
> 
> Attached a working and tested packaging, where only the ITP bug number
> needs to be filled in the debian/changelog, and Maintainer changed.

Attached updated packaging.

Thanks,
Guillem


golang-github-influxdata-wlog_0.0~git20160411.0.7c63b0a-0.1.debian.tar.xz
Description: application/xz


Processed: Re: Bug#890360: RFP: vlc-plugin-bittorrent -- Bittorrent plugin for VLC

2018-09-18 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 ITP: vlc-plugin-bittorrent -- Bittorrent plugin for VLC
Bug #890360 [wnpp] RFP: vlc-plugin-bittorrent -- Bittorrent plugin for VLC
Changed Bug title to 'ITP: vlc-plugin-bittorrent -- Bittorrent plugin for VLC' 
from 'RFP: vlc-plugin-bittorrent -- Bittorrent plugin for VLC'.
> owner -1 p...@debian.org
Bug #890360 [wnpp] ITP: vlc-plugin-bittorrent -- Bittorrent plugin for VLC
Owner recorded as p...@debian.org.

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



Bug#890360: RFP: vlc-plugin-bittorrent -- Bittorrent plugin for VLC

2018-09-18 Thread Petter Reinholdtsen


Control: retitle -1 ITP: vlc-plugin-bittorrent -- Bittorrent plugin for VLC
Control: owner -1 p...@debian.org

I plan to upload this into Debian.

-- 
Happy hacking
Petter Reinholdtsen



Bug#909133: ITP: auto-dictionary-el -- automatic dictionary switcher for Emacs spell checking

2018-09-18 Thread Nicholas D Steeves
Package: wnpp
Severity: wishlist
Owner: Nicholas D Steeves 

Package name: auto-dictionary-el
Version : 1.1
Upstream Author : Nikolaj Schumacher
URL : https://wiki.debian.org/EmacsenTeam/Team
License : GPL-2+
Programming Lang: elisp
Description : automatic dictionary switcher for Emacs spell checking

 Auto-dictionary is a minor mode that automatically sets
 'ispell-dictionary'.  It hooks into flyspell's on-the-fly spell
 checking, and extends these checks to also detect language.  This
 package is useful for Emacs users who work in multiple languages.
  .
 Auto-dictionary supports the following languages:
   Catalan
   Classical Greek - ἑλληνικά
   Danish - Dansk
   English
   Esperanto
   French - Français
   German - Deutsch
   Hindi - हिन्दी
   Hungarian - Magyar
   Modern Greek - νέα ελληνικά
   Norwegian Bokmål
   Norwegian Nynorsk
   Portuguese - Português
   Romanian - Românâ, Româneşte
   Slovak - Slovenčina
   Slovene - Slovenian
   Spanish - Español
   Swedish - Svenska
 
--

Antoine, does it detect language with per-buffer granularity, or
support mixing languages in the same buffer?  Thanks for mentioning
that you use this software on #debian-emacs :-) P.S. please ping me if
I take more than two weeks to package this

I do not yet use this package and have been manually switching between
languages, which is why I'm motivated to package it.  I plan to
maintain it as part of the Debian Emacsen Team, and the team policy is
here: https://wiki.debian.org/EmacsenTeam/Team

I will require a sponsor for the initial upload.

Regards,
Nicholas


Bug#909116: ITP: libmd5-rfc -- RFC1321-based (RSA-free) MD5 library

2018-09-18 Thread Yangfl
Package: wnpp
Severity: wishlist
Owner: Yangfl 

* Package name: libmd5-rfc
  Version : 0.0+20020413
  Upstream Author : Aladdin Enterprises
* URL : https://sourceforge.net/projects/libmd5-rfc/
* License : zlib
  Programming Lang: C
  Description : RFC1321-based (RSA-free) MD5 library
 This is a very small C library implementing RFC1321, the MD5 message digest
 function. Unlike the existing W3C libmd5, it was written from the
 specifications (not the sample code) in RFC1321, and therefore is not required
 to acknowledge RSA in any way.



Bug#909093: marked as done (ITP: libinfluxdb-lineprotocol-perl -- write and read InfluxDB LineProtocol)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 16:20:06 +
with message-id 
and subject line closing ITP: libinfluxdb-lineprotocol-perl -- write and read 
InfluxDB LineProtocol
has caused the Debian Bug report #909093,
regarding ITP: libinfluxdb-lineprotocol-perl -- write and read InfluxDB 
LineProtocol
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.)


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

* Package name: libinfluxdb-lineprotocol-perl
  Version : 1.010
  Upstream Author : Thomas Klausner 
* URL : https://metacpan.org/release/InfluxDB-LineProtocol
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : write and read InfluxDB LineProtocol

 The InfluxDB time series database (since version 0.9) uses a LineProtocol
 to write time series data into the database. InfluxDB::LineProtocol makes
 it possible to generate such a line from a data-structure, handling all
 the annoying escaping and sorting. It can also be used to parse a line
 (perhaps produced by other code) so that it can be further modified.

The package will be maintained under the pkg-perl umbrella.

regards,
-mika-
--- End Message ---
--- Begin Message ---
Please retitle bug 851780 from RFP to ITP and set yourself as the owner.--- End Message ---


Processed: retitle to RFP: sogoupinyin-installer -- Sogou Pinyin Input Method installer

2018-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 864828 RFP: sogoupinyin-installer -- Sogou Pinyin Input Method 
> installer
Bug #864828 [wnpp] ITP: sogoupinyin-installer -- Sogou Pinyin Input Method 
installer
Changed Bug title to 'RFP: sogoupinyin-installer -- Sogou Pinyin Input Method 
installer' from 'ITP: sogoupinyin-installer -- Sogou Pinyin Input Method 
installer'.
> noowner 864828
Bug #864828 [wnpp] RFP: sogoupinyin-installer -- Sogou Pinyin Input Method 
installer
Removed annotation that Bug was owned by Shengjing Zhu .
> stop
Stopping processing here.

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



Processed: retitle to RFP: psyclone -- Domain-specific compiler for Finite Difference/Volume/Element Earth-system models in Fortran

2018-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 864817 RFP: psyclone -- Domain-specific compiler for Finite 
> Difference/Volume/Element Earth-system models in Fortran
Bug #864817 [wnpp] ITP: psyclone -- Domain-specific compiler for Finite 
Difference/Volume/Element Earth-system models in Fortran
Changed Bug title to 'RFP: psyclone -- Domain-specific compiler for Finite 
Difference/Volume/Element Earth-system models in Fortran' from 'ITP: psyclone 
-- Domain-specific compiler for Finite Difference/Volume/Element Earth-system 
models in Fortran'.
> noowner 864817
Bug #864817 [wnpp] RFP: psyclone -- Domain-specific compiler for Finite 
Difference/Volume/Element Earth-system models in Fortran
Removed annotation that Bug was owned by Alastair McKinstry 
.
> stop
Stopping processing here.

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



Processed: libjsonparser: block ITP 909106 by RFS 909113

2018-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 909106 by 909113
Bug #909106 [wnpp] ITP: libjsonparser -- Very low footprint JSON parser written 
in portable ANSI C
909106 was not blocked by any bugs.
909106 was not blocking any bugs.
Added blocking bug(s) of 909106: 909113
> stop
Stopping processing here.

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



Bug#847937: RFP: lollypop -- Modern music player

2018-09-18 Thread nikolaibitinit
I have already created a "/debian" including all rules and control
files. I also successfully created a package for it. But due to lack of
time, I won't able to maintain this package. If anybody interested
packaging this program, kindly take a look at 
https://github.com/fr0xk/lollypop-debian.git to save some time of yours
before getting into the dark side of debian packaging :)

Of course, this is a fantastic music player for sure, and Debian should
provide it, because why not? :-D

On Mon, 12 Dec 2016 14:08:11 + Sam Morris 
wrote:
> Package: wnpp
> Severity: wishlist
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA256
> 
> * Package name: lollypop
>   Version : 0.9.223
>   Upstream Author : Cédric Bellegarde 
> * URL : https://gnumdk.github.io/lollypop-web/
> * License : GPL
>   Programming Lang: Python
>   Description : Modern music player
> 
> A Music player for GNOME featuring intuitive browsing of your music
> collection. Supports downloading of lyrics and cover art, syncing
music
> with MTP devices, and has a kiosk (party) mode view.
> 
> -BEGIN PGP SIGNATURE-
> 
> iQJGBAEBCAAwFiEEyqqqGsppqDqJKxhV0gtCAlzaJ7kFAlhOr0YSHHNhbUByb2Jv
> dHMub3JnLnVrAAoJENILQgJc2ie5jHMP/i6ZM8yQilCpdla9YzgeFK8sqvwj65TS
> qgNXEXrVXHmXQ4y4DVvvHpmuhVNIwGivinD4/N9bTVRwV+UEQ3Ukk2FsdFI3QrvL
> SRwZdDrEj3pZtp07AnOqgfaQttzW+4KC3LR0vbPBjYsThg0dGuC49Cr4ieqTkkyq
> MRqctKZi14jsXZSur9Jq8MTCIuStrPPxk26WGulhS4FCkqg1plfTUk485+zvARlN
> slLOV5+mUIXq7mhM7T14G/ueZCQPR8aJAAak/cPu+0VsjqBvXNveB91lNHVHDZgr
> Yg7V+ldQrR4DAdos2iKW8ICg4q486NDo7UYVRGcKBPFoiEHrdn4gkHi6aZb9sHcs
> R6ths1+YGBiiE36sHklFfZiLz6UteFIMu85ZOg2ufP2SSVzE0HC6YsrEhoRwH/dN
> CVGdA+mS/bxY3dK8eIKWpG74q/hutKW/ver7Mga4W+WSGYJcEbLlhbF36EvtyO69
> TWVnZ9uLHWKNxFpAruHS0H3kXxyboHp5/sSlglXCB5jdFe2fBP/KzXQjec4L7ZR2
> xXU0CApgsnDh6luTWn+r4CDCKFMe9XmuhOWeyi/MNXQei1YP6nAzix4U5+GBER/5
> VJtXsJkGy6mhb8ARlX/pFebPND6HXJYqFWXy3VVMrCV++bB8e7FfQiPvzSSOe/Rn
> eNgyMt7K1dC5
> =x9Ov
> -END PGP SIGNATURE-
> 
> 
-- 
 



Bug#909106: ITP: libjsonparser -- Very low footprint JSON parser written in portable ANSI C

2018-09-18 Thread Yangfl
Package: wnpp
Severity: wishlist
Owner: Yangfl 

* Package name: libjsonparser
  Version : 1.1.0
  Upstream Author : James McLaughlin
* URL : https://github.com/udp/json-parser
* License : BSD
  Programming Lang: C
  Description : Very low footprint JSON parser written in portable ANSI C
 It's a very low footprint JSON parser written in portable ANSI C. Features
 include:
  * BSD licensed with no dependencies (i.e. just drop the C file into your
project)
  * Never recurses or allocates more memory than it needs
  * Very simple API with operator sugar for C++



Bug#861128: RFP: elpa-markdown-toc -- Generate a TOC in markdown file with Emacs

2018-09-18 Thread Antoine Beaupré
On 2018-09-17 22:40:10, Nicholas D Steeves wrote:
> Control: tag -1 + moreinfo
>
> Hi Antoine,
>
> On Mon, Apr 24, 2017 at 04:22:35PM -0400, Antoine Beaupre wrote:
>> Package: wnpp
>> Severity: wishlist
>> 
>> * Package name: elpa-markdown-toc
>>   Version : 0.1.2
>>   Upstream Author : Antoine R. Dumont
>> * URL : https://github.com/ardumont/markdown-toc/
>> * License : GPL-3+
>>   Programming Lang: Elisp
>>   Description : Generate a TOC in markdown file
> [...]
>> 
>> I use this when I write markdown reports that get translated in
>> standalone HTML documents that I ship to clients. I used to rely on
>> pandoc's --toc functionality, but that was too limited: I couldn't
>> control output levels and fix headings the way I wanted.
>> 
>> It depends on markdown-mode, certain versions:
>> 
>> https://github.com/ardumont/markdown-toc/issues/29
>> 
>> Happy to comaintain...
>
> Re: a couple of markdown-toc bugs:
>
> https://github.com/ardumont/markdown-toc/issues/29
>   * Solve in Debian with a hard depends on >= markdown-mode 2.2?
>   * You mentioned markdown-mode 2.1 is bad, 20161222.1416 is good,
> and 2.2 is from 20170526, thus 2.2 should be good.
>   * possibly fixed in markdown-toc?
>
> https://github.com/ardumont/markdown-toc/issues/15
>   * "Don't assume that a document has an h1"
>   * How serious is this one?  Seems like it could be annoying.
>
> https://github.com/ardumont/markdown-toc/issues/35
>   * "Lines starting with # in code sections are treated as headings"
>   * I imagine this one will frustrate many users.

I'm not sure how that's relevant to this RFP. Sure, like any other
software, markdown-toc has bugs. :) Those are not critical and the thing
generally works in my use cases. I think it can be packaged as is.

> By the way, if you'd like I'd be happy to give you an intro on dh-elpa
> packaging.  With the exception of a couple of autopkgtest on LXC
> workarounds it's easy stuff--the trickiest bit is identifying why an
> upstream self-test doesn't work on buildd.  Also, we're working on
> improving dh-elpa's documentation, so alternatively it would be nice
> to hear about your experiences with it--and than make improvements if
> necessary!  dh_elpa(1), dh_elpa_test(1), dh-make-elpa(1), plus 

I'm sure you guys did a great job and it's nice to see so many ELPA
packages being added into Debian. Unfortunately, I don't have much time
to handle the packaging myself so if you do not mind I'll stay on this
side of the packaging for now. :) If I do find the time, you'll be the
first to know (here) that I can work on a package of course.

> Failing that I think I'd like to package this one :-)

Please be my guest!

a.
-- 
I believe that if someone choose arts as their subject but do not
criticize the issues of their society, they have have betrayed
themselves, their conscience, and their society.
- Atena Farghadani



Bug#908703: marked as done (ITP: r-cran-purrrlyr -- GNU R Tools at the Intersection of 'purrr' and 'dplyr')

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:16 +
with message-id 
and subject line Bug#908703: fixed in r-cran-purrrlyr 0.0.3-1
has caused the Debian Bug report #908703,
regarding ITP: r-cran-purrrlyr -- GNU R Tools at the Intersection of 'purrr' 
and 'dplyr'
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.)


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

* Package name: r-cran-purrrlyr
  Version : 0.0.3
  Upstream Author : Lionel Henry, Hadley Wickham, RStudio
* URL : https://cran.r-project.org/package=purrrlyr
* License : GPL-3
  Programming Lang: GNU R
  Description : GNU R Tools at the Intersection of 'purrr' and 'dplyr'
 This GNU R package provides some functions at the intersection of
 r-cran-dplyr and and r-cran-purrr that formerly lived in the
 package r-cran-purrr.

Remark: This package is maintained by Debian R Packages Maintainers at
   https://salsa.debian.org/r-pkg-team/r-cran-purrrlyr
This package is needed to run the autopkgtest of r-cran-snakecase.
--- End Message ---
--- Begin Message ---
Source: r-cran-purrrlyr
Source-Version: 0.0.3-1

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

Debian distribution maintenance software
pp.
Andreas Tille  (supplier of updated r-cran-purrrlyr package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 12 Sep 2018 22:44:58 +0200
Source: r-cran-purrrlyr
Binary: r-cran-purrrlyr
Architecture: source amd64
Version: 0.0.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian R Packages Maintainers 
Changed-By: Andreas Tille 
Description:
 r-cran-purrrlyr - GNU R Tools at the Intersection of 'purrr' and 'dplyr'
Closes: 908703
Changes:
 r-cran-purrrlyr (0.0.3-1) unstable; urgency=medium
 .
   * Initial release (closes: #908703)
Checksums-Sha1:
 6d9fc3fd03e058ef4e588316c60b09294c41f9b2 2126 r-cran-purrrlyr_0.0.3-1.dsc
 cd73bd1a5ce29efd79463e557d569c6b0785ab1e 32370 
r-cran-purrrlyr_0.0.3.orig.tar.gz
 137daabd4cfeba2c79d6f106b189453fc9c46092 1832 
r-cran-purrrlyr_0.0.3-1.debian.tar.xz
 d6c5a8518a8816987a71eca30735e4db439b385c 930182 
r-cran-purrrlyr-dbgsym_0.0.3-1_amd64.deb
 0d26938147d085008db892a6902d72a1e38f906e 10167 
r-cran-purrrlyr_0.0.3-1_amd64.buildinfo
 5bf72cc7b1229f238b10123d4fba797eae7410d3 103664 
r-cran-purrrlyr_0.0.3-1_amd64.deb
Checksums-Sha256:
 1fe317856ad6cbc61c6c125a593af9cb5a3cc38d54a50a2c59baee3b1bf2 2126 
r-cran-purrrlyr_0.0.3-1.dsc
 fd72527a304b195aa0707ba9b97bdc5358ef520856c2761f33bba136f3dfa333 32370 
r-cran-purrrlyr_0.0.3.orig.tar.gz
 c6145564e014f5844aab4d844757ed1d2307d9f1419d6c2926eb12ff14f93e8f 1832 
r-cran-purrrlyr_0.0.3-1.debian.tar.xz
 76d9e31b4ebf97e00bba2d6a191f8d328411f1591faeb47b91e93c47e31cd747 930182 
r-cran-purrrlyr-dbgsym_0.0.3-1_amd64.deb
 0c84fe49fb7b0b2c08db95b82cd16f1574a56bea8c742cf951698f248f291e4f 10167 
r-cran-purrrlyr_0.0.3-1_amd64.buildinfo
 39ab5806d7e4cedeea432fbc28f84625c6690d0fcf75d8419b2f8346c63b3ce5 103664 
r-cran-purrrlyr_0.0.3-1_amd64.deb
Files:
 b502d51a6544abeb4d6536433dafc0b0 2126 gnu-r optional 
r-cran-purrrlyr_0.0.3-1.dsc
 a0c6c38e5ff870efa930bb87d601dd80 32370 gnu-r optional 
r-cran-purrrlyr_0.0.3.orig.tar.gz
 5f39cd1b87fb4dd373368831b4e0f8ca 1832 gnu-r optional 
r-cran-purrrlyr_0.0.3-1.debian.tar.xz
 91ee29a990a9a34cc854aba574d45990 930182 debug optional 
r-cran-purrrlyr-dbgsym_0.0.3-1_amd64.deb
 837769bd0379209e6caf152b71c4f29b 10167 gnu-r optional 
r-cran-purrrlyr_0.0.3-1_amd64.buildinfo
 d2b20b2392f9213d09097886a251be44 103664 gnu-r optional 
r-cran-purrrlyr_0.0.3-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEE8fAHMgoDVUHwpmPKV4oElNHGRtEFAluZe5oRHHRpbGxlQGRl
Ymlhbi5vcmcACgkQV4oElNHGRtHafRAAj8afy2IUM/svtG1vb04onxSbYr5bqmGR
v1VNVXxlDCryx5T95VnkuRh57XSeUCibJb1HYk+u4Vy5YxfnfcNP38YLKCcUzbWm
6KGhfxlcEeqcXqbqoFZPD7yVviYmjoHsnS51RYZ3ztfqphzhM/olm4CddNr6VkZF
UR1CkTU7kiP6fhTooG+s2tJujdcLQPis9gWisDaVfBuNFGNBI8VrgGmTnTMHXNAM
h

Bug#903651: marked as done (ITP: ros-urdf -- parser for urdf)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:18 +
with message-id 
and subject line Bug#903651: fixed in ros-urdf 1.12.12-1
has caused the Debian Bug report #903651,
regarding ITP: ros-urdf -- parser for urdf
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.)


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

* Package name: ros-urdf
  Version : 1.13.1
  Upstream Author : Willow Garage, Inc., University of Tokyo
* URL : https://github.com/ros/urdf
* License : BSD-3-clause
  Programming Lang: C++
  Description : parser for urdf

Upstream of the existing Debian package src:ros-robot-model split the
project into four individual projects. The maintainers of
src:ros-robot-model want to follow this split and remove
src:ros-robot-model in favour of four new source packages which will
track each of the new projects, respectively.

This ITP is for the new source package src:ros-urdf.
--- End Message ---
--- Begin Message ---
Source: ros-urdf
Source-Version: 1.12.12-1

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

Debian distribution maintenance software
pp.
Leopold Palomo-Avellaneda  (supplier of updated ros-urdf 
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, 14 Jul 2018 08:25:06 +0200
Source: ros-urdf
Binary: liburdf-dev liburdf0d liburdf-parser-plugin-dev
Architecture: amd64 source
Version: 1.12.12-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Leopold Palomo-Avellaneda 
Closes: 903651
Description: 
 liburdf0d  - ROS urdf library
 liburdf-dev - Development files for ROS urdf library
 liburdf-parser-plugin-dev - Development files for ROS urdf_parser_plugin 
library
Changes:
 ros-urdf (1.12.12-1) unstable; urgency=medium
 .
   * Initial release (Closes: #903651)
Checksums-Sha1: 
 2a70ace6f50b8a45acd6cdeaafc088a3dd0c698f 7044 liburdf-dev_1.12.12-1_amd64.deb
 3a8b3252c2aa5bd34ce8f47e42a237f5821e59d1 5868 
liburdf-parser-plugin-dev_1.12.12-1_amd64.deb
 61f3827cddd1554a17d8bbcfb8e616a99438330f 697724 
liburdf0d-dbgsym_1.12.12-1_amd64.deb
 054b50dbb6fc3036ab5c4fc7b6db911bd5c5d170 59544 liburdf0d_1.12.12-1_amd64.deb
 4a1c0c04b85bbef62541abc5c6b54becef5df812 12503 
ros-urdf_1.12.12-1_amd64.buildinfo
 e94c3e880a70c7c1387dcdb6ab6c964389de20bf 2361 ros-urdf_1.12.12-1.dsc
 56f179061a1c1069df04cac01254a9eb927a139c 41778 ros-urdf_1.12.12.orig.tar.gz
 1c6f45a06fcec7f0bcfa98f8f7204124ab12c9b9 3396 ros-urdf_1.12.12-1.debian.tar.xz
Checksums-Sha256: 
 2ed0f23a0abd23b15b9df5b84a2ebb76ceda8870c47f132be457da2aedd8a000 7044 
liburdf-dev_1.12.12-1_amd64.deb
 291dde14477dd548ef0e2e17429b31b131905950600adef9b1da995dca94e76f 5868 
liburdf-parser-plugin-dev_1.12.12-1_amd64.deb
 94372715583d42ec3e19c75589fd714e6b532fe3f0c8799d1c7637a97a3646d0 697724 
liburdf0d-dbgsym_1.12.12-1_amd64.deb
 6c69470336cb2528b37408a8784700e253488f740879dfd43be57ed968ac2d95 59544 
liburdf0d_1.12.12-1_amd64.deb
 705fcaa4750c95349041e735f6a608c1f7e3abba5500c1f72a66d60d99e81afd 12503 
ros-urdf_1.12.12-1_amd64.buildinfo
 5d6331ddfbba8506f20e560e5facb7f2f2c23cb5bf09c27431af73443e4eb4ff 2361 
ros-urdf_1.12.12-1.dsc
 acedc045c23f33f05df48b73dd83fa68922f7a4daa0273c18ae5b04f8a387a76 41778 
ros-urdf_1.12.12.orig.tar.gz
 db0a4ab273b1b8be852289e9313dfc82302b7c330d61a2bb9725426dca561e15 3396 
ros-urdf_1.12.12-1.debian.tar.xz
Files: 
 770bcc27cb2ff6a0b9664ebbf4f551fb 7044 libdevel optional 
liburdf-dev_1.12.12-1_amd64.deb
 35c78c0414620986df6bd4cbe9788a7e 5868 libdevel optional 
liburdf-parser-plugin-dev_1.12.12-1_amd64.deb
 a11b5c3540f745ec09fe11871bbffeda 697724 debug optional 
liburdf0d-dbgsym_1.12.12-1_amd64.deb
 e166286f76da9fa21b44627aad2a0adb 59544 libs optional 
liburdf0d_1.12.12-1_amd64.deb
 ad8ac1a33e962ae864b2685cd8c8cb01 12503 libs optional 
ros-urdf_1.12.12-1_amd64.buildinfo
 873a6ee0611dfff33aeee879cba679e9 2361 libs optional ros-urdf_1.12.12-1.d

Bug#908028: marked as done (ITP: python-omemo -- Python implementation of the OMEMO Multi-End Message and Object Encryption protocol)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:15 +
with message-id 
and subject line Bug#908028: fixed in python-omemo 0.7.0-1
has caused the Debian Bug report #908028,
regarding ITP: python-omemo -- Python implementation of the OMEMO Multi-End 
Message and Object Encryption protocol
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.)


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

* Package name: python-omemo
  Version : v0.7.0-alpha
  Upstream Author : Tim Henkes 
* URL : https://github.com/Syndace/python-omemo
* License : GPL-3
  Programming Lang: Python
  Description : Python implementation of the OMEMO Multi-End Message and 
Object Encryption protocol

This python library offers an open implementation of the OMEMO Multi-End
Message and Object Encryption protocol as specified here.

Goals of this implementation are:

 * Do not use libsignal but offer a solid alternative to it
 * Stay away from GPL (not possible until we move away from libsignals
   wireformat)
 * Be flexible to changes that might happen to the OMEMO protocol
 * Keep the structure close to the spec
 * Provide the parts of the protocol (X3DH, Double Ratchet) as own
   repositories

This is a new optional dependency of salutatoi, which is already in
Debian.
--- End Message ---
--- Begin Message ---
Source: python-omemo
Source-Version: 0.7.0-1

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

Debian distribution maintenance software
pp.
W. Martin Borgert  (supplier of updated python-omemo 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 08 Sep 2018 22:03:29 +
Source: python-omemo
Binary: python-omemo python3-omemo
Architecture: source all
Version: 0.7.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian XMPP Maintainers 
Changed-By: W. Martin Borgert 
Description:
 python-omemo - Python 2 implementation of the OMEMO protocol
 python3-omemo - Python 3 implementation of the OMEMO protocol
Closes: 908028
Changes:
 python-omemo (0.7.0-1) unstable; urgency=medium
 .
   * Initial package (Closes: #908028)
 Python 2 version still necessary for salutatoi
Checksums-Sha1:
 839120d3a410b031f98cd026d5e01ee58e37ab41 2280 python-omemo_0.7.0-1.dsc
 e5e36bf65d224383b35bb225d7c2e33d45c8e841 22401 python-omemo_0.7.0.orig.tar.gz
 394c1dff12586411f52886ebdd5f464e40a193f0 1812 
python-omemo_0.7.0-1.debian.tar.xz
 cce4261d89c1428d4422ee3708cbcce98d166320 22012 python-omemo_0.7.0-1_all.deb
 cc05ba901d0eeb7d6add0f9561370997888b7491 8033 
python-omemo_0.7.0-1_amd64.buildinfo
 3f59b23f7c69d34ba9758656b7d2792d389dce81 22088 python3-omemo_0.7.0-1_all.deb
Checksums-Sha256:
 14f31008386b9bee2a70ea88704e1bb2bf4cd9077fd2d155c09b26745a3e481b 2280 
python-omemo_0.7.0-1.dsc
 ce5ee5bb662bec4c7a73888a4b5ec97cf7196db5e1b6a55267c09caaeb1e7cd0 22401 
python-omemo_0.7.0.orig.tar.gz
 18b95943f8ccca382845f41066ebd3fa62e77a4877cf95751c494d064458eb6a 1812 
python-omemo_0.7.0-1.debian.tar.xz
 5ecf53d27ca3bf12eee5c6dfd20ad79015599757126c6ca557e0624cd8de3bc8 22012 
python-omemo_0.7.0-1_all.deb
 5c386b76a057bf3dfcb94c564e786a60ddae74d91bc892a1017462b2955f54f1 8033 
python-omemo_0.7.0-1_amd64.buildinfo
 eab6dc91142b44ea6d7ac5a95be207e664269eb41fe2111d6ef8ca9e60b12bf0 22088 
python3-omemo_0.7.0-1_all.deb
Files:
 14ca0b2c242975e59415f99624b1c1c6 2280 python optional python-omemo_0.7.0-1.dsc
 a416833450861f9406d9db71fa7716d3 22401 python optional 
python-omemo_0.7.0.orig.tar.gz
 7fc97bab9d6553058ce69d8c34f8b28a 1812 python optional 
python-omemo_0.7.0-1.debian.tar.xz
 009cabbbe2dc61924c102e896d4f6a21 22012 python optional 
python-omemo_0.7.0-1_all.deb
 56ae7a06b29e27bd36bd20a37f8a955e 8033 python optional 
python-omemo_0.7.0-1_amd64.buildinfo
 a6f44dc5ad8e2cc7acbdb61119d6e35b 22088 python optional 
python3-omemo_0.7.0-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEftHeo0XZoKEY1KdA4+Chwoa5Y+oFAluUR

Bug#902120: marked as done (ITP: prometheus-snmp-exporter -- Prometheus exporter for SNMP-enabled devices)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:14 +
with message-id 
and subject line Bug#902120: fixed in prometheus-snmp-exporter 0.13.0-1
has caused the Debian Bug report #902120,
regarding ITP: prometheus-snmp-exporter -- Prometheus exporter for SNMP-enabled 
devices
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.)


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

* Package name: prometheus-snmp-exporter
  Version : 0.11.0
  Upstream Author : Brian Brazil 
* URL : https://github.com/prometheus/snmp_exporter
* License : Apache-2.0
  Programming Lang: Go
  Description : Prometheus exporter for SNMP-enabled devices

Exporter that exposes information gathered from SNMP for use by the
Prometheus monitoring system.

Due to the widespread use of SNMP on networking hardware, UPSes, power
distribution etc, this exporter is very useful for gather metrics and
monitoring the health of such devices.

I plan to maintain this package with the assistance of the Go Team.
Benjamin Drung  will sponsor me.
--- End Message ---
--- Begin Message ---
Source: prometheus-snmp-exporter
Source-Version: 0.13.0-1

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

Debian distribution maintenance software
pp.
Daniel Swarbrick  (supplier of updated 
prometheus-snmp-exporter 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, 12 Sep 2018 14:10:09 +0200
Source: prometheus-snmp-exporter
Binary: prometheus-snmp-exporter
Architecture: source amd64
Version: 0.13.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Daniel Swarbrick 
Description:
 prometheus-snmp-exporter - Prometheus exporter for SNMP-enabled devices
Closes: 902120
Changes:
 prometheus-snmp-exporter (0.13.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #902120)
Checksums-Sha1:
 3ee238c87ed8227afc11e66b39bcb44189fa3e6f 2517 
prometheus-snmp-exporter_0.13.0-1.dsc
 377946cc6bd12116e719370856d2a444add18437 37631 
prometheus-snmp-exporter_0.13.0.orig.tar.gz
 6824de16861b2f9d72e45c3e9a48f685bd33dc69 3744 
prometheus-snmp-exporter_0.13.0-1.debian.tar.xz
 ad0dcd37d907866c37205ad1e9671c5ce877ba47 753420 
prometheus-snmp-exporter-dbgsym_0.13.0-1_amd64.deb
 9af323d5125ef6e5b180f67de7beba31f0d6bba3 9072 
prometheus-snmp-exporter_0.13.0-1_amd64.buildinfo
 2b7ec34b52b70fc71538de95c2fed3d02f1c4035 2749788 
prometheus-snmp-exporter_0.13.0-1_amd64.deb
Checksums-Sha256:
 fb863e7563601d55d722134260f4c488bc1a66c8020f4122b5309da685a74bc1 2517 
prometheus-snmp-exporter_0.13.0-1.dsc
 d2d593c7318944fcd4ae11fca197a840043eaa1ede232286d4cbb70ef22762db 37631 
prometheus-snmp-exporter_0.13.0.orig.tar.gz
 0e06a6ff2d9e567c4157688d29bb5b4e4c6e1bba21bc0700dd8aeb66a02e2c5f 3744 
prometheus-snmp-exporter_0.13.0-1.debian.tar.xz
 9c1cd9461a7036953c77f1d44ec275f4d306a176e99f209ec78ed377bcdfe7dc 753420 
prometheus-snmp-exporter-dbgsym_0.13.0-1_amd64.deb
 e588ace49b77396926dd86d1d6354021b1f5171aec80a58040fa62a6a344ab2e 9072 
prometheus-snmp-exporter_0.13.0-1_amd64.buildinfo
 9212e70c62d687ed411150d848998356a04732728f2f16cb9d4990cc2bebd5d4 2749788 
prometheus-snmp-exporter_0.13.0-1_amd64.deb
Files:
 1e08665a601ae2f79c558e4b0611f84e 2517 net optional 
prometheus-snmp-exporter_0.13.0-1.dsc
 8e43fbfc4775e41d33fa428cc7ffd862 37631 net optional 
prometheus-snmp-exporter_0.13.0.orig.tar.gz
 3f7c6605aa9bbfa65a139ae53bbd1c59 3744 net optional 
prometheus-snmp-exporter_0.13.0-1.debian.tar.xz
 8867cc07c9d1ed37d762ceeccab6fe40 753420 debug optional 
prometheus-snmp-exporter-dbgsym_0.13.0-1_amd64.deb
 215b17ef4881f29a988c9c5df031d70f 9072 net optional 
prometheus-snmp-exporter_0.13.0-1_amd64.buildinfo
 4771832c437810abcc0ce02414592cb5 2749788 net optional 
prometheus-snmp-exporter_0.13.0-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE5/q3CzlQJ15towl13YzVpd6MfnoFAluZDmoACgkQ3YzVpd6M
fnq

Bug#903650: marked as done (ITP: ros-kdl-parser -- converts urdf to kdl)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:18 +
with message-id 
and subject line Bug#903650: fixed in ros-kdl-parser 1.13.0-1
has caused the Debian Bug report #903650,
regarding ITP: ros-kdl-parser -- converts urdf to kdl
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.)


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

* Package name: ros-kdl-parser
  Version : 1.13.0
  Upstream Author : Willow Garage, Inc., University of Tokyo
* URL : https://github.com/ros/kdl_parser
* License : BSD-3-clause
  Programming Lang: C++
  Description : converts urdf to kdl

Upstream of the existing Debian package src:ros-robot-model split the
project into four individual projects. The maintainers of
src:ros-robot-model want to follow this split and remove
src:ros-robot-model in favour of four new source packages which will
track each of the new projects, respectively.

This ITP is for the new source package src:ros-kdl-parser.
--- End Message ---
--- Begin Message ---
Source: ros-kdl-parser
Source-Version: 1.13.0-1

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

Debian distribution maintenance software
pp.
Johannes 'josch' Schauer  (supplier of updated ros-kdl-parser 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 15 Jul 2018 11:13:49 +0200
Source: ros-kdl-parser
Binary: libkdl-parser-dev libkdl-parser1d python-kdl-parser
Architecture: all amd64 source
Version: 1.13.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 

Changed-By: Johannes 'josch' Schauer 
Closes: 903650
Description: 
 libkdl-parser1d - ROS kdl_parser library
 libkdl-parser-dev - Development files for ROS kdl_parser library
 python-kdl-parser - Robot OS kdl_parser library - Python
Changes:
 ros-kdl-parser (1.13.0-1) unstable; urgency=medium
 .
   * Team upload.
   * Initial release (Closes: #903650)
Checksums-Sha1: 
 a64df085ded7cddd651eac7b281d5b8450f26da0 7112 
libkdl-parser-dev_1.13.0-1_amd64.deb
 509fc4ec9a8d9e388e289785bee501360cb25c89 213196 
libkdl-parser1d-dbgsym_1.13.0-1_amd64.deb
 665bc67b1b9048698ef4fc7601c79006c8daa807 14188 
libkdl-parser1d_1.13.0-1_amd64.deb
 9be6cac87cd4836b4410a1f9a28d585c2725df40 4184 
python-kdl-parser_1.13.0-1_all.deb
 a6ce17cc4142de9884e4e11fd61b92af51fd6b0d 11650 
ros-kdl-parser_1.13.0-1_amd64.buildinfo
 4c0f8171cbe96a8cae664ce9970b6b272b48b9f3 2408 ros-kdl-parser_1.13.0-1.dsc
 3992bb3170d1ce8af2e7a44c5f058a7dc913519b 950647 
ros-kdl-parser_1.13.0.orig.tar.gz
 ab797da1db60d4fd2043db68c57ea62ec3fa85e8 3500 
ros-kdl-parser_1.13.0-1.debian.tar.xz
Checksums-Sha256: 
 c46125ea2ce26e3fbf48bc3ad3473b0ab47c1059a5e7e4573f614333d155cf64 7112 
libkdl-parser-dev_1.13.0-1_amd64.deb
 f86809dc95825b8533498899373ef785635ec8702a600b4494d7193e6954323e 213196 
libkdl-parser1d-dbgsym_1.13.0-1_amd64.deb
 74b3a54f254ca29738b4351ca2ece96fac018ee2ad4c209980117367bb12cb58 14188 
libkdl-parser1d_1.13.0-1_amd64.deb
 bb67c2865ea9ac4ddf1bf3835eb34a3e31be3464e6a00458a126bb23b89e22b2 4184 
python-kdl-parser_1.13.0-1_all.deb
 ffae8b1efaa65778e30fdb3969f579ec63d0fcff6e1b8351dcecb07f9584b375 11650 
ros-kdl-parser_1.13.0-1_amd64.buildinfo
 0dfb08e31af36d6425353f9bd611803eae118ba4fc1e3a27a8b7f396ba778ec1 2408 
ros-kdl-parser_1.13.0-1.dsc
 b0cd9ff305ab57a964354262902fda6f2c1be6efc22729e753cee7308868 950647 
ros-kdl-parser_1.13.0.orig.tar.gz
 5699ee8bfdd7a7321634c4cfbc08cfe84f68ee4b0a357ac44890a2ca6290d806 3500 
ros-kdl-parser_1.13.0-1.debian.tar.xz
Files: 
 fef2776a9fa01cec6ee153c616594d47 7112 libdevel optional 
libkdl-parser-dev_1.13.0-1_amd64.deb
 b4203a7e20205e0dd76a60c041ded7de 213196 debug optional 
libkdl-parser1d-dbgsym_1.13.0-1_amd64.deb
 710912fb0240c3a8e1c42c76efc5514c 14188 libs optional 
libkdl-parser1d_1.13.0-1_amd64.deb
 32a8da20aca0794fa0ed27ed52690423 4184 python optional 
python-kdl-parser_1.13.0-1_all.deb
 bcf739174ea4f88189

Bug#906097: marked as done (ITP: prometheus-haproxy-exporter -- HAProxy Exporter for Prometheus)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:14 +
with message-id 
and subject line Bug#906097: fixed in prometheus-haproxy-exporter 0.9.0-1
has caused the Debian Bug report #906097,
regarding ITP: prometheus-haproxy-exporter -- HAProxy Exporter for Prometheus
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.)


-- 
906097: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906097
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: ChangZhuo Chen (陳昌倬) 

* Package name: prometheus-haproxy-exporter
  Version : 0.9.0
  Upstream Author : Copyright 2018 The Prometheus Authors
* URL : https://github.com/prometheus/haproxy_exporter
* License : Apache 2.0
  Programming Lang: golang
  Description : HAProxy Exporter for Prometheus

 Simple server that scrapes HAProxy stats and exports them via HTTP for
 Prometheus consumption.


-- 
ChangZhuo Chen (陳昌倬) czchen@{czchen,debconf,debian}.org
http://czchen.info/
Key fingerprint = BA04 346D C2E1 FE63 C790  8793 CC65 B0CD EC27 5D5B


signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: prometheus-haproxy-exporter
Source-Version: 0.9.0-1

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

Debian distribution maintenance software
pp.
ChangZhuo Chen (陳昌倬)  (supplier of updated 
prometheus-haproxy-exporter 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, 06 Sep 2018 21:34:07 +0800
Source: prometheus-haproxy-exporter
Binary: prometheus-haproxy-exporter
Architecture: source amd64
Version: 0.9.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: ChangZhuo Chen (陳昌倬) 
Description:
 prometheus-haproxy-exporter - HAProxy Exporter for Prometheus
Closes: 906097
Changes:
 prometheus-haproxy-exporter (0.9.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #906097)
Checksums-Sha1:
 0014efb82750359538228dc5b94e86adae8da435 2407 
prometheus-haproxy-exporter_0.9.0-1.dsc
 79a158517ec4c26a9f37130c6ef363d5cee613e3 17796 
prometheus-haproxy-exporter_0.9.0.orig.tar.xz
 a37657b8694d1e63e230b743c486cca3cd62a642 1756 
prometheus-haproxy-exporter_0.9.0-1.debian.tar.xz
 d44da06189df89c3c8f24497acb5d7177753d23e 8322 
prometheus-haproxy-exporter_0.9.0-1_amd64.buildinfo
 cf130fc354026846ce67a81d267571177375e48a 2081328 
prometheus-haproxy-exporter_0.9.0-1_amd64.deb
Checksums-Sha256:
 372ae050e9b370892633a0855afa8d41d23d513c4fc64ea4897a1ebef835fe8b 2407 
prometheus-haproxy-exporter_0.9.0-1.dsc
 8773dcc10d0bdc0d8427944edca27689d6bf47c72421e1a2c8d6f01cc038e9b1 17796 
prometheus-haproxy-exporter_0.9.0.orig.tar.xz
 148de9d542464ed5c29f3a8d0af5a206263082990591c1b05e1bc3bd842aeca2 1756 
prometheus-haproxy-exporter_0.9.0-1.debian.tar.xz
 6edb0152145501e06d9e5ba13fc2f0bd428f8c34e30e9b99021c818aa62c385d 8322 
prometheus-haproxy-exporter_0.9.0-1_amd64.buildinfo
 ededcdbf5deb0e7f56182b0ac1ae03e82f5a7bbd8e1712a134b41820169ccff9 2081328 
prometheus-haproxy-exporter_0.9.0-1_amd64.deb
Files:
 eaeb0c760a10d9a20d592a310b73ea7e 2407 devel optional 
prometheus-haproxy-exporter_0.9.0-1.dsc
 d7f6297a34de79542b3d6b714b829db7 17796 devel optional 
prometheus-haproxy-exporter_0.9.0.orig.tar.xz
 4158e3dc2ce2656c534b4540f70e177e 1756 devel optional 
prometheus-haproxy-exporter_0.9.0-1.debian.tar.xz
 92bb0131f329221d5811f4d01b15051e 8322 devel optional 
prometheus-haproxy-exporter_0.9.0-1_amd64.buildinfo
 403b880037225a6050f7bdde6578bff5 2081328 devel optional 
prometheus-haproxy-exporter_0.9.0-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEugQ0bcLh/mPHkIeTzGWwzewnXVsFAluRLXoACgkQzGWwzewn
XVt5KxAAv3Xe3qYGppi78OiGhPrH+AVvkqFgN4wLtZNbGz1+9s6gh7cYCNeQjffR
LXUlntzPwH58OBOtzwbCu/eiRpSWhs+sQWOkwswQzgmfHD5x4gpI+g7eEdqvHTrx
KWWApJE46cU87fJu/48ZiaL8ow5t5+Nlg/GR54ZNtcFdHB0jru6Mg5gbwYelI5AO
8egBXvOPEIaX6f90mkKOsarYbXaFHCcpVw7zViER3PJhaoPSUwCVSZQBNbJgL+tw
Y8kn5IJ8Zkbewlhoq2iQRw+ItzgeEYBkM+2IMpmMMDWHCUb4CRc5WZw4IRmkybwo
yXQvd2Zx8xefpnrswr8syJsmz8F5C1mmumB

Bug#891601: marked as done (ITP: apriltags -- AprilTags Visual Fiducial System)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:10 +
with message-id 
and subject line Bug#891601: fixed in apriltag 0.9.8-1
has caused the Debian Bug report #891601,
regarding ITP: apriltags -- AprilTags Visual Fiducial System
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.)


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

* Package name: apriltags
  Version : 0.9.8
  Upstream Author : Edwin Olson 
* URL or Web page : https://april.eecs.umich.edu/software/apriltag.html
* License : BSD
  Description : AprilTags Visual Fiducial System
--- End Message ---
--- Begin Message ---
Source: apriltag
Source-Version: 0.9.8-1

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

Debian distribution maintenance software
pp.
Dima Kogan  (supplier of updated apriltag package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 26 Aug 2018 22:04:34 -0700
Source: apriltag
Binary: libapriltag0 libapriltag-dev
Architecture: source amd64
Version: 0.9.8-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 

Changed-By: Dima Kogan 
Description:
 libapriltag-dev - AprilTags Visual Fiducial System
 libapriltag0 - AprilTags Visual Fiducial System
Closes: 891601
Changes:
 apriltag (0.9.8-1) unstable; urgency=medium
 .
   * Initial package release (Closes: #891601)
Checksums-Sha1:
 aabe7f616d217e1e24bac8b3d9f9ee1646d56bbd 2026 apriltag_0.9.8-1.dsc
 268d7e4a56f994eb0c6ab47743d414b7d0cc2f0e 173099 apriltag_0.9.8.orig.tar.gz
 28d74b546f09c4879789ba77acad62bf447694b7 11384 apriltag_0.9.8-1.debian.tar.xz
 b81b750c2192decd107793b59a20ec5d95d61300 6353 apriltag_0.9.8-1_amd64.buildinfo
 2eb703144e0f1a2fc940ade231d6a1f4055ce8b4 41592 
libapriltag-dev_0.9.8-1_amd64.deb
 c4ccac38f224132364453cf6c7500dbead950d7b 355920 
libapriltag0-dbgsym_0.9.8-1_amd64.deb
 5e2fd4a799fb7cdb3c1e19025b704b1bdab69252 126100 libapriltag0_0.9.8-1_amd64.deb
Checksums-Sha256:
 e35bc3ded19c41e1ba22fc3b287e483afcb786c3dac9d5b174fedaacbf94c7ee 2026 
apriltag_0.9.8-1.dsc
 2ade0ebf094d4b666e02a1be9e094a4938223a921b2d48c6a7e2e826d31f1054 173099 
apriltag_0.9.8.orig.tar.gz
 82bbe9caf12214fc4957ed01ed31a1a42396ff26c84d01825bca2a283e5db54c 11384 
apriltag_0.9.8-1.debian.tar.xz
 e37b0dcb9e72011d5d50c19931f5d32446148b216704ae311c9faa3d1548a90d 6353 
apriltag_0.9.8-1_amd64.buildinfo
 7bff8c824adeac163839b6b6c7cd5226692989e6b5bcc66126adfa6ee099fe25 41592 
libapriltag-dev_0.9.8-1_amd64.deb
 51ed5038c176a13f015c207dc0cf6194239467a1be48d464bd0eb6f42fab154a 355920 
libapriltag0-dbgsym_0.9.8-1_amd64.deb
 872893a15dd34a0048cfe75a727a584bf2699be040bca0d0f3d798d1837f9413 126100 
libapriltag0_0.9.8-1_amd64.deb
Files:
 0e0aeb0b1a6bbeafa5eafdd9a12d7144 2026 libs optional apriltag_0.9.8-1.dsc
 5607f8c4eba3dfa0c62bcd77b751aef3 173099 libs optional 
apriltag_0.9.8.orig.tar.gz
 92b408ba9668ea81f1b216d407ec21ce 11384 libs optional 
apriltag_0.9.8-1.debian.tar.xz
 dfaee89c6c3ea948365b9eb5f5b9b77c 6353 libs optional 
apriltag_0.9.8-1_amd64.buildinfo
 516d1710e43114e34d25b2d2a115db7f 41592 libdevel optional 
libapriltag-dev_0.9.8-1_amd64.deb
 4ac2d39838c58ec705bc5a121d195506 355920 debug optional 
libapriltag0-dbgsym_0.9.8-1_amd64.deb
 a610893dffd3c3dcb70469599dbab080 126100 libs optional 
libapriltag0_0.9.8-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEdRwTXcLOAUM4CFTz7WO2ElodFWEFAluDi2ESHGRrb2dhbkBk
ZWJpYW4ub3JnAAoJEO1jthJaHRVh3PYQAJE+mkoRwGjGYk227lZs01bNtMg2kodz
TCws/ZQQ8o9sHdVNR6DCvZQ2KP9f2+easwrWG4YC0jnM3jtWg90xz6qdXouNGWr4
MPnsgRhhW3MRQ/nPCK/E8Pr2hAU8Tbm0ev+PM7GitjEdZTUrxXCZOl7JzypAd2wi
9JYYAr6Wt20pvLzqN/WgEuU9raRwWKe/UYz76uS3mPHnPCPDBRFZE8seLKNYDGMb
aWancgNY0u7p1PtYESPKiDRqs3JW6vnTMmuIskxsi7AjOGrJCMAGElRY50Jc0ncm
XgiLTA5DcD930lruqEq9vgymneA249oJMXcMOhB4U7OMs3S4pHfMMP9z5QN6iHdu
JSN1Hh4b+SxdSqIujWtLy/pQzAq3Gst7JAvxMJIWhvAjaQ6hvfHG5hIJqq2MCKQ1
+jeq8Qyup568pcX5bPEqcRGMvDH3wSA9Hd7q+RcytvVXHoQruxAupYCoxvfnVeOg
0+VX3X6HY4VtYTBVcgnNb8dX7bH

Bug#901620: marked as done (ITP: r-cran-tcr -- Advanced Data Analysis of Immune Receptor Repertoires)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:17 +
with message-id 
and subject line Bug#901620: fixed in r-cran-tcr 2.2.2-1
has caused the Debian Bug report #901620,
regarding ITP: r-cran-tcr -- Advanced Data Analysis of Immune Receptor 
Repertoires
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.)


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

* Package name: r-cran-tcr
  Author: : Vadim Nazarov
  Version : 2.2.1
* URL : https://github.com/imminfo/tcr/
* License : Apache-2.0
  Programming Lang: R
  Description : Advanced Data Analysis of Immune Receptor Repertoires

The package will be team-maintained on
salsa.debian.org/r-pkg-team or
salsa.debian.org/med-team
--- End Message ---
--- Begin Message ---
Source: r-cran-tcr
Source-Version: 2.2.2-1

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

Debian distribution maintenance software
pp.
Andreas Tille  (supplier of updated r-cran-tcr 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, 10 Sep 2018 23:25:04 +0200
Source: r-cran-tcr
Binary: r-cran-tcr
Architecture: source amd64
Version: 2.2.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian R Packages Maintainers 
Changed-By: Andreas Tille 
Description:
 r-cran-tcr - Advanced Data Analysis of Immune Receptor Repertoires
Closes: 901620
Changes:
 r-cran-tcr (2.2.2-1) unstable; urgency=medium
 .
   * Team upload
   * Initial release (closes: #901620).
Checksums-Sha1:
 0859f6376b4fc947a3fe8688f67133f169c404ed 2193 r-cran-tcr_2.2.2-1.dsc
 4f8c45f858136da12f3106280b212a5a0daed46c 3931180 r-cran-tcr_2.2.2.orig.tar.gz
 b7ea5a7c8c8774ef5ec8b02151439d403ec2687e 2500 r-cran-tcr_2.2.2-1.debian.tar.xz
 4fe4888dd1535848f30256cbb2043be7d413c830 414280 
r-cran-tcr-dbgsym_2.2.2-1_amd64.deb
 4496735fa28a60ac03b534bb5706bc667a56e083 11034 
r-cran-tcr_2.2.2-1_amd64.buildinfo
 e4ef64499f8bdcb0ae99f932f994c3d21096c568 3947922 r-cran-tcr_2.2.2-1_amd64.deb
Checksums-Sha256:
 fb70504e6ce5e2fc63e97e6799a7f13c76e9314121031c653e775e71a0e99d41 2193 
r-cran-tcr_2.2.2-1.dsc
 807eed83ab579b62302bc33896f1717ccbef11019e1c8501fb486e7f0fa18464 3931180 
r-cran-tcr_2.2.2.orig.tar.gz
 d1ebc4cfc32ffed8c55cdc5da8b73d1bb6fe3402d070b4fabf63e3e4a55e048a 2500 
r-cran-tcr_2.2.2-1.debian.tar.xz
 c1ad12d0200f9df3bf370fa32d3e2bb06a2fc33f8d1d6a5ed24a929071caa792 414280 
r-cran-tcr-dbgsym_2.2.2-1_amd64.deb
 ee546665f73c3da8b0fd72c21c0518bfc3a4a7cc4b7716bb13a6a9dc2e79d5ac 11034 
r-cran-tcr_2.2.2-1_amd64.buildinfo
 47145137f7c60c659d75b4a2386e71eed6fa7c5a2000d61070700dff72816abf 3947922 
r-cran-tcr_2.2.2-1_amd64.deb
Files:
 c2aa8e1ae278203dcf77525aa34ab1d8 2193 gnu-r optional r-cran-tcr_2.2.2-1.dsc
 70dac99f4d9e8c34efca18893ae92af2 3931180 gnu-r optional 
r-cran-tcr_2.2.2.orig.tar.gz
 bb8b1b679fdce35db202843ebd48a8d8 2500 gnu-r optional 
r-cran-tcr_2.2.2-1.debian.tar.xz
 4dbc22d90e910e1f693dfc218d2a76d8 414280 debug optional 
r-cran-tcr-dbgsym_2.2.2-1_amd64.deb
 072f6d2dd21654a05862081f6ae0f8df 11034 gnu-r optional 
r-cran-tcr_2.2.2-1_amd64.buildinfo
 69b1a3f80b22f44ec18c5bbbfd92596a 3947922 gnu-r optional 
r-cran-tcr_2.2.2-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEE8fAHMgoDVUHwpmPKV4oElNHGRtEFAluW4gQRHHRpbGxlQGRl
Ymlhbi5vcmcACgkQV4oElNHGRtHBFQ/8CNgNrjJcgcwIebeYwGNzrMETECmLNtOb
yFVT4xvuutzyb12g6p/VEUj/TPYFvT9+lmguc245kwb+1bag2DztsQ6rYdWeBCL7
pyjZn5VI5vr81QHmqklYarC6JasyalAEcK3mDu2aRsMcOZKRmiEriGKsFEqOuiOx
9xDgi8jJ1XzxBK6andODwfsExHz8TbEbcYfMQaFWxlPyoTxGIFkKjDskYbSdhp3H
mI0PmLrMuue3zyw9vdALKifDQ1GuddEeGJ9/xKH0K0WvG+FVDHx5pFrZMyR2EQVE
mNY0xPLcirF9Shydd40Tlxn6T/wt3C8jjB7Hr2+ifEkayy8/9npIdm6+RqE426RZ
BchmaJpLiDNBH4AUMzjwGJ3pKraM3xhw12o2JjnotBlogsKlaN6zHjESXdrF9Aws
aH6KZY8sOznEF11cn+1RQd+3G35X4bRTvdKs9z1IPWpJEQ5u/Vth5wqOfYDfHaAH
znMoXMjeWhQ7HqGEVyfFrwoLsGIv543cuEmD882gC9467bTxi7aho3NMPvVOHENc
ve14nl+VzoON93bemUeE5DSWVYpeF0fb2my1i6o3nOzAuEFUJyiY5IoPxzi1Lgf4
pgknM41wWhE5f

Bug#831988: marked as done (ITP: golang-github-jimstudt-http-authentication -- Go implementation of RFC 2617 HTTP Authentication: Basic and Digest Access Authentication)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:12 +
with message-id 
and subject line Bug#831988: fixed in 
golang-github-jimstudt-http-authentication 0.0~git20140401.3eca13d-1
has caused the Debian Bug report #831988,
regarding ITP: golang-github-jimstudt-http-authentication -- Go implementation 
of RFC 2617 HTTP Authentication: Basic and Digest Access Authentication
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.)


-- 
831988: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831988
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Nicolas Braud-Santoni 
Control: block 810890 by -1

* Package name: golang-github-jimstudt-http-authentication
  Version : 0.0~git20140401.0.3eca13d-1
  Upstream Author : Jim Studt 
* URL : https://github.com/jimstudt/http-authentication
* License : Expat
  Programming Lang: Go
  Description : Go implementation of RFC 2617 HTTP Authentication: Basic 
and Digest Access Authentication

 http-authentication Go implementation of RFC 2617 HTTP Authentication:
 Basic and Digest Access Authentication
--- End Message ---
--- Begin Message ---
Source: golang-github-jimstudt-http-authentication
Source-Version: 0.0~git20140401.3eca13d-1

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

Debian distribution maintenance software
pp.
Anthony Fok  (supplier of updated 
golang-github-jimstudt-http-authentication 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, 21 Jul 2018 04:36:20 -0600
Source: golang-github-jimstudt-http-authentication
Binary: golang-github-jimstudt-http-authentication-dev
Architecture: source all
Version: 0.0~git20140401.3eca13d-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 

Changed-By: Anthony Fok 
Description:
 golang-github-jimstudt-http-authentication-dev - Go implementation of RFC 2617 
HTTP Authentication
Closes: 831988
Changes:
 golang-github-jimstudt-http-authentication (0.0~git20140401.3eca13d-1) 
unstable; urgency=medium
 .
   * Initial release (Closes: #831988)
   * Apply patch from https://github.com/jimstudt/http-authentication/pull/2
 by Clément DAVID to fix HTTP test.
Checksums-Sha1:
 3881a02b148b23b6e3ebea97dfde80516dfd97b2 2540 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d-1.dsc
 fdaf0978bcd8c8d0c99605e8eb19eadde4f72e8c 40288 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d.orig.tar.xz
 260ebd752e60c03cdce57c9032656b30e6bb1080 2496 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d-1.debian.tar.xz
 60234a164fd88dfd692961c0a0f77efc2f5b7c9b 40456 
golang-github-jimstudt-http-authentication-dev_0.0~git20140401.3eca13d-1_all.deb
 484e7d4f7170339f7dcfabac9c5031e6eb8c 6198 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d-1_amd64.buildinfo
Checksums-Sha256:
 2e3d777dd51fbff6b9a5d06f8b65f1b00dfeeb8286db511400c5da40bf981799 2540 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d-1.dsc
 59eb0c0f46bb5c3ca37f47defa830932d93307ce870617dad1e12acf133738c2 40288 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d.orig.tar.xz
 2440581501fb9450ba9dc2051b0f0ffb063fc288d685a91f267fe869daeee370 2496 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d-1.debian.tar.xz
 df1eef2e7d0fcd4a3618770d6407f0c82f4fabcbca2bc0f0d772ef75a69b4a5e 40456 
golang-github-jimstudt-http-authentication-dev_0.0~git20140401.3eca13d-1_all.deb
 6d6afa96c0465b98b20558ad80592f9f5259b5ec0db1c97e8fa56f3de00e0ac6 6198 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d-1_amd64.buildinfo
Files:
 0529e22d9ab20a0722bb3b0d6a5bd432 2540 devel optional 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d-1.dsc
 dce57b096dc7f323a36e90615ddbd854 40288 devel optional 
golang-github-jimstudt-http-authentication_0.0~git20140401.3eca13d.orig.tar.xz
 39d229dd377c839e3d41fce9db6be210 2496 devel optional 
golang-github-jimst

Bug#900412: marked as done (ITP: r-bioc-cner -- CNE Detection and Visualization)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:16 +
with message-id 
and subject line Bug#900412: fixed in r-bioc-cner 1.16.1+dfsg-1
has caused the Debian Bug report #900412,
regarding ITP: r-bioc-cner -- CNE Detection and Visualization
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.)


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

* Package name: r-bioc-cner
  Version : 1.16.0
  Upstream Author : Ge Tan 
* URL : https://bioconductor.org/packages/CNEr/
* License : GPL-2
  Programming Lang: GNU R
  Description : CNE Detection and Visualization
 Large-scale identification and advanced visualization
 of sets of conserved noncoding elements.

Remark: This package is maintained by Debian R Packages Maintainers at
   https://salsa.debian.org/r-pkg-team/r-bioc-cner
This package is needed for the target r-bioc-tfbstools.
--- End Message ---
--- Begin Message ---
Source: r-bioc-cner
Source-Version: 1.16.1+dfsg-1

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

Debian distribution maintenance software
pp.
Andreas Tille  (supplier of updated r-bioc-cner 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, 09 Sep 2018 20:31:24 +0200
Source: r-bioc-cner
Binary: r-bioc-cner
Architecture: source amd64
Version: 1.16.1+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian R Packages Maintainers 
Changed-By: Andreas Tille 
Description:
 r-bioc-cner - CNE Detection and Visualization
Closes: 900412
Changes:
 r-bioc-cner (1.16.1+dfsg-1) unstable; urgency=medium
 .
   * Initial release (closes: #900412)
Checksums-Sha1:
 4acd7f0ffab5fa2061c84b6c62511687a4570bdf 2544 r-bioc-cner_1.16.1+dfsg-1.dsc
 ba9c37d1db70ee5e59a1831868f1f8790d190e65 7744804 
r-bioc-cner_1.16.1+dfsg.orig.tar.xz
 c2f9503a4477de752dbacd7502fbcd3c393369c5 2988 
r-bioc-cner_1.16.1+dfsg-1.debian.tar.xz
 1836cb98edd494f39045d23138812ec8e8741b9e 318800 
r-bioc-cner-dbgsym_1.16.1+dfsg-1_amd64.deb
 f078827143ce34d378d8e37c785b10876e676b57 12043 
r-bioc-cner_1.16.1+dfsg-1_amd64.buildinfo
 a673725fd21f39978013c7274ac0354730940e2b 8275046 
r-bioc-cner_1.16.1+dfsg-1_amd64.deb
Checksums-Sha256:
 5fde1396378d69b24df3090f981afe455618e8d808f15300a568912929c2caaa 2544 
r-bioc-cner_1.16.1+dfsg-1.dsc
 951fa1da79656834216a898b22063e1051e676b566a4758020453bc329f1804c 7744804 
r-bioc-cner_1.16.1+dfsg.orig.tar.xz
 36b7596341a97fe992b4cb5b2361cf4ba23eb18d39fb6de3047fe0b1a8616c97 2988 
r-bioc-cner_1.16.1+dfsg-1.debian.tar.xz
 7b0aa9f7f9dcd995b15e81302189772cbd977d2c1a7f88644c074407d62cf6e9 318800 
r-bioc-cner-dbgsym_1.16.1+dfsg-1_amd64.deb
 cef3a482fef5925f9f79812382b205487864747e44594a1c2ed5bf42e687b42b 12043 
r-bioc-cner_1.16.1+dfsg-1_amd64.buildinfo
 54608cabbc2a38633596d11eb37d1e188bd84f053cfc8314e0c7b2688addbe14 8275046 
r-bioc-cner_1.16.1+dfsg-1_amd64.deb
Files:
 4aa9ede04a6e2578898c8f6012bb05f7 2544 gnu-r optional 
r-bioc-cner_1.16.1+dfsg-1.dsc
 9bb1fdeb0894e3ca3709056d48119da6 7744804 gnu-r optional 
r-bioc-cner_1.16.1+dfsg.orig.tar.xz
 a05390986aa612e68962e749cc90cdc8 2988 gnu-r optional 
r-bioc-cner_1.16.1+dfsg-1.debian.tar.xz
 4d00d2315fa4616631a27f33e705 318800 debug optional 
r-bioc-cner-dbgsym_1.16.1+dfsg-1_amd64.deb
 e48200eb761cabb05d6f0bb4fcc21d16 12043 gnu-r optional 
r-bioc-cner_1.16.1+dfsg-1_amd64.buildinfo
 7e6454ba478731d90e1c719f5951071a 8275046 gnu-r optional 
r-bioc-cner_1.16.1+dfsg-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEE8fAHMgoDVUHwpmPKV4oElNHGRtEFAluVagMRHHRpbGxlQGRl
Ymlhbi5vcmcACgkQV4oElNHGRtE3CQ//Yviv8fEmwlE8l+iHlbUinrisGYOaRGES
iwGjJD9L8O0/4pR3l6qk9tCMqFVowP35cicullgYFrfWOUArRT4P4JwTZ22N8tTS
PyqfFgr+mzd6AlvjiUEXwEE5xmskNGsUrTdhxIeIjbIQ6+H0iDaCDiKKe35wC/vy
GjN34u2+YoJ0KpE3kCqPYepRLdUQIPE6/HsaudhZk/adurzemvcALFBFKncwEQ4S
bjEu40dPbRBoNVfigsJhw2HP0/rb1P64yqQNI+6PD8UuT2TyqHy4NP7UwQUw4yZX
QNHKA1XknLFusxt2HjZAaCDHFb0BU12l99239zQNaY02BXgCdumFSku3mJEFFUIt
HR+5Q+6q2oqWzke

Bug#709193: marked as done (ITP: vid.stab -- library for video stabilization)

2018-09-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Sep 2018 13:00:12 +
with message-id 
and subject line Bug#709193: fixed in libvidstab 1.1.0-1
has caused the Debian Bug report #709193,
regarding ITP: vid.stab -- library for video stabilization
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.)


-- 
709193: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=709193
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: "Rogério Brito" 

* Package name: libvidstab
  Version : 0.96
  Upstream Author : Georg Martius 
* URL : http://public.hronopik.de/vid.stab/
* License : GPL
  Programming Lang: C
  Description : video stabilization library

 Imagine you captured a nice video with your camcorder, compact camera or
 even cell phone while skiing, cycling or whatever sports and the video is
 basically just jiggled.
 .
 Modern cameras come along with hardware stabilisation, however this does
 not work if you have really strong vibrations - rather the contrary -
 sometimes this mechanism starts to oscillate.
 .
 Vid.Stab is your friend in this matter. It is designed to stabilize even
 strongly jiggled clips.

-- 
Rogério Brito : rbrito@{ime.usp.br,gmail.com} : GPG key 4096R/BCFC
http://rb.doesntexist.org/blog : Projects : https://github.com/rbrito/
DebianQA: http://qa.debian.org/developer.php?login=rbrito%40ime.usp.br
--- End Message ---
--- Begin Message ---
Source: libvidstab
Source-Version: 1.1.0-1

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

Debian distribution maintenance software
pp.
Keng-Yu Lin  (supplier of updated libvidstab 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, 01 Aug 2018 14:39:07 +0800
Source: libvidstab
Binary: libvidstab-dev libvidstab1.1
Architecture: source amd64
Version: 1.1.0-1
Distribution: unstable
Urgency: low
Maintainer: Keng-Yu Lin 
Changed-By: Keng-Yu Lin 
Description:
 libvidstab-dev - video stabilization library (development files)
 libvidstab1.1 - video stabilization library (shared library)
Closes: 709193
Changes:
 libvidstab (1.1.0-1) unstable; urgency=low
 .
   * Upstream release 1.1.0 (Closes: #709193)
Checksums-Sha1:
 7a6b229c97582f575a23e24610efa8f3c8a5d53f 1801 libvidstab_1.1.0-1.dsc
 b3743fbaa1603422fb5a34026058aa07a255c83c 77736 libvidstab_1.1.0.orig.tar.gz
 634dbfa35f93652f3d3e1cfb4b4c3b23ba356ebf 3632 libvidstab_1.1.0-1.debian.tar.xz
 b079ac54bd0a5f8c7e6edc2af3e8cacd1047acea 21284 libvidstab-dev_1.1.0-1_amd64.deb
 64fde17b4e51006cc62e89c4b55edae7ddc5cf08 88736 
libvidstab1.1-dbgsym_1.1.0-1_amd64.deb
 b7c3a7590c220a7a2393a097911d552935050578 37320 libvidstab1.1_1.1.0-1_amd64.deb
 6088b8a2e0974e528bcf0d604795af85733aa9ee 7524 
libvidstab_1.1.0-1_amd64.buildinfo
Checksums-Sha256:
 678314e813a8b4386bebaa252d4f1ff24885627fcc96623a8616fa1a8d644bac 1801 
libvidstab_1.1.0-1.dsc
 14d2a053e56edad4f397be0cb3ef8eb1ec3150404ce99a426c4eb641861dc0bb 77736 
libvidstab_1.1.0.orig.tar.gz
 0291f0ff75b72b964ba13da37102da00601f1b177fadff697f58e8a486ef2fc0 3632 
libvidstab_1.1.0-1.debian.tar.xz
 f2882cf33753a8b32a44287ec4eb3cd7e1034e0126316a92b9e55664dfc11623 21284 
libvidstab-dev_1.1.0-1_amd64.deb
 f5d2b0c178625929051d141183b3d1a544e07b607898bbc9c79a682e732c4d08 88736 
libvidstab1.1-dbgsym_1.1.0-1_amd64.deb
 4ec760b8a0bdaf684c3d590ae9f17ff7f65fe50ccc204986dc93be3d8937d5ce 37320 
libvidstab1.1_1.1.0-1_amd64.deb
 d6542f4454ecf8b84e17a6b5605788c072dde8d95c84f501fdb78980a317fa84 7524 
libvidstab_1.1.0-1_amd64.buildinfo
Files:
 e930337c10ada4793f70f107d3a6a5bd 1801 libs optional libvidstab_1.1.0-1.dsc
 633af54b7e2fd5734265ac7488ac263a 77736 libs optional 
libvidstab_1.1.0.orig.tar.gz
 0027f9b8a980f9123da568e76b39b50e 3632 libs optional 
libvidstab_1.1.0-1.debian.tar.xz
 b50b070b26257df25b440c864abe1b6e 21284 libdevel optional 
libvidstab-dev_1.1.0-1_amd64.deb
 ea6f6994de8d0b651c635c8f5f223af8 88736 debug optional 
libvidstab1.1-dbgsym_1.1.0-1_amd64.deb
 72e7d9cebec81df4b243971fea643e95 37320 libs optional 
libvidstab1.1_1.1.0-1_amd64.d

Bug#909091: RFP: ocaml-mccs -- Stripped-down version of mccs, a CUDF problem solver, with OCaml bindings

2018-09-18 Thread Ralf Jung
Package: wnpp
Severity: wishlist

* Package name: ocaml-mccs
  Version : 1.1+8
  Upstream Author : Claude Michel
* URL : https://github.com/AltGr/ocaml-mccs
* License : BSD (3-clause), GPL
  Programming Lang: C++, OCaml
  Description : Stripped-down version of mccs, a CUDF problem solver, with 
OCaml bindings

This is a a stripped-down version of the mccs solver, taken from snapshot 1.1,
with a binding as an OCaml library, and building with jbuilder.

This is needed for opam to work without an external solver.



Processed: Re: Bug#909002: RFP: python-rfc3161 -- Implementation of trusted timestamping client

2018-09-18 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 ITP: python-rfc3161ng -- Implementation of trusted timestamping 
> client
Bug #909002 [wnpp] RFP: python-rfc3161 -- Implementation of trusted 
timestamping client
Changed Bug title to 'ITP: python-rfc3161ng -- Implementation of trusted 
timestamping client' from 'RFP: python-rfc3161 -- Implementation of trusted 
timestamping client'.
> owner -1 p...@debian.org
Bug #909002 [wnpp] ITP: python-rfc3161ng -- Implementation of trusted 
timestamping client
Owner recorded as p...@debian.org.

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



Bug#909002: RFP: python-rfc3161 -- Implementation of trusted timestamping client

2018-09-18 Thread Petter Reinholdtsen
Control: retitle -1 ITP: python-rfc3161ng -- Implementation of trusted 
timestamping client
Control: owner -1 p...@debian.org

I discovered what appear to be the upstream git repository on
https://github.com/trbs/rfc3161ng/ >.  I've prepared a gbp
based package on https://salsa.debian.org/pere/python-rfc3161ng >
and plan to upload into the NEW queue today.

-- 
Happy hacking
Petter Reinholdtsen



Bug#909083: RFP: dsocks -- SOCKS client wrapper for *BSD / MacOS X

2018-09-18 Thread Traumschule
Package: wnpp
Severity: wishlist

* Package name: dsocks
  Version : 1.7
  Upstream Author : Dug Song 
* URL : https://monkey.org/~dugsong/dsocks/
* License : 2-clause BSD
  Programming Lang: C
  Description : SOCKS client wrapper for *BSD / MacOS X

It can be used as a Proxy nameserver to relay name lookups to Tor to
prevent DNS leaks as described on
https://trac.torproject.org/projects/tor/wiki/doc/PreventingDnsLeaksInTor

Source also available in git: https://github.com/dugsong/dsocks



Bug#909072: Dependencies

2018-09-18 Thread Traumschule
petardfs 0.0.2
  by Ben Martin (http://freshmeat.net/users/monkeyiq/)
  Mon, Mar 19th 2007 10:26

About: petardfs is a FUSE filesystem designed to hoist your applications
with errors. With no configuration, petardfs takes a base filesystem and
exposes it through FUSE. An XML configuration file is used to tell
petardfs which files to report errors for and what error code to use.
For example, foo.txt can have an EIO error at bytes 34 to 37. There is
explicit support for errors such as EAGAIN and EINTR, where petardfs
will only report such transient errors a nominated number of times.
This is handy for testing applications that support such I/O conditions
gracefully.

Changes: Petardfs is now a subclass of fuselagefs. Much filesystem
delegating code has now been moved to libfuselagefs. 

License: GNU General Public License (GPL)

URL: http://freshmeat.net/projects/petardfs/

Dependencies

- libxerces (0.2.8 or newer)

- libfuselage

fuselagefs consists of a C++ wrapper class for FUSE called Fuselagefs,
as well as Delegatefs, which is a Fuselagefs subclass that delegates
all operations to an underlying base filesystem. With Delegatefs, you
can expose dir1 at mountpoint dir2 very easily as a FUSE filesystem.
Subclasses of Delegatefs can then be created, which add a little extra
functionality to the delegation operation but rely on the parent class
to perform the work and return errors to FUSE in an appropriate manner.
An example subclass is petardfs.

License: GPL

URL: http://freshmeat.sourceforge.net/projects/fuselagefs/

- libfuselage depends on libpopt, which has a debian package:

libpopt-dev/testing 1.16-11 i386
  lib for parsing cmdline parameters - development files

- libattr1-dev: /usr/include/attr/xattr.h



Processed: retitle 907641 to ITP: phosh - GTK+ based pure Wayland shell for mobile devices

2018-09-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 907641 ITP: phosh - GTK+ based pure Wayland shell for mobile devices
Bug #907641 [wnpp] RFP: phosh -- Pure Wayland shell for mobile devices
Changed Bug title to 'ITP: phosh - GTK+ based pure Wayland shell for mobile 
devices' from 'RFP: phosh -- Pure Wayland shell for mobile devices'.
> thanks
Stopping processing here.

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