Re: Validating tarballs against git repositories

2024-03-30 Thread Jan-Benedict Glaw
On Sat, 2024-03-30 08:02:04 +0100, Gioele Barabucci  wrote:
> On 30/03/24 01:21, Antonio Russo wrote:
> > 3. Have tooling that automatically checks the sanitized sources against
> > the development RCSs.
> 
> git-buildpackage and pristine-tar can be used for that.

Would be nice if pristine-tar's data file would be reproducible,
too...

MfG, JBG

-- 


signature.asc
Description: PGP signature


Bug#1053568: ITP: python-lib25519 -- Python wrapper around lib25519 library

2023-10-06 Thread Jan Mojzis
Package: wnpp
X-Debbugs-Cc: debian-devel@lists.debian.org
Owner: Jan Mojzis 
Severity: wishlist

* Package name: python-lib25519
  Version : 20231006
  Upstream Contact: Jan Mojzis 
* URL : https://github.com/janmojzis/python-lib25519
* License : CC0
  Programming Lang: Python
  Description : Python wrapper around lib25519 library


lib25519 is a microlibrary for the X25519 encryption system and the Ed25519
signature system, both of which use the Curve25519 elliptic curve.

lib25519 has a very simple stateless API based on the SUPERCOP API, with
wire-format inputs and outputs, providing functions that directly match the
central cryptographic operations in X25519 and Ed25519:

lib25519.x25519.keypair(pk, sk): X25519 key generation
lib25519.x25519.dh(k, pk, sk): shared-secret generation
lib25519.ed25519.keypair(pk, sk): Ed25519 key generation
lib25519.ed25519.sign(sm, , m, mlen, sk): signing
lib25519.ed25519.open(m, , sm, smlen, pk): verification + message recovery

This package is related to: 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1051553


I'm going to maintain the package using https://salsa.debian.org/
It is being prepared here: https://salsa.debian.org/janmojzis/python-lib25519
I need sponsor for the first upload (I'm DM).

Jan



Bug#1053569: ITP: python-mceliece -- Python wrapper around libmceliece library

2023-10-06 Thread Jan Mojzis
Package: wnpp
X-Debbugs-Cc: debian-devel@lists.debian.org
Owner: Jan Mojzis 
Severity: wishlist

* Package name: python-mceliece
  Version : 20231006
  Upstream Contact: Jan Mojzis 
* URL : https://github.com/janmojzis/python-mceliece
* License : CC0
  Programming Lang: Python
  Description : Python wrapper around libmceliece library


libmceliece is a Classic McEliece microlibrary.
libmceliece has a very simple stateless API based on the SUPERCOP API,
with wire-format inputs and outputs, providing functions that directly match
the KEM operations provided by Classic McEliece, such as functions

mceliece6960119.keypair()
mceliece6960119.enc()
mceliece6960119.dec()
for the mceliece6960119 KEM

This package is related to: 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1050531

I'm going to maintain the package using https://salsa.debian.org/
It is being prepared here: https://salsa.debian.org/janmojzis/python-mceliece
I need sponsor for the first upload (I'm DM).

Jan



Bug#1051553: ITP: lib25519 -- X25519/Ed25519 microlibrary

2023-09-09 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: lix25519
  Version : 20230630
  Upstream Authort: Daniel J. Bernstein
* URL : https://lib25519.cr.yp.to/
* License : LicenseRef-PD-hp OR CC0-1.0 OR 0BSD OR MIT-0 OR MIT
  Programming Lang: C
  Description : X25519 microlibrary


lib25519 is a microlibrary for the X25519 encryption system and the Ed25519 
signature system, both of which use the Curve25519 elliptic curve. Curve25519 
is the fastest curve in TLS 1.3, and the only curve in Wireguard, Signal, and 
many other applications (see Nicolai Brown's page 
https://ianix.com/pub/curve25519-deployment.html).

lib25519 has a very simple stateless API based on the SUPERCOP API, with 
wire-format inputs and outputs, providing functions that directly match the 
central cryptographic operations in X25519 and Ed25519:

lib25519_dh_keypair(pk,sk): X25519 key generation
lib25519_dh(k,pk,sk): shared-secret generation
lib25519_sign_keypair(pk,sk): Ed25519 key generation
lib25519_sign(sm,,m,mlen,sk): signing
lib25519_sign_open(m,,sm,smlen,pk): verification + message recovery
Internally, lib25519 includes implementations designed for performance on 
various CPUs, implementations designed to work portably across CPUs, and 
automatic run-time selection of implementations.

lib25519 is intended to be called by larger multi-function libraries, including 
libraries in other languages via FFI. The idea is that lib25519 will take 
responsibility for the details of X25519/Ed25519 computation, including 
optimization, timing-attack protection, and eventually verification, freeing up 
the calling libraries to concentrate on application-specific needs such as 
protocol integration. Applications can also call lib25519 directly.

I'm using this library and I'm going to maintain using https://salsa.debian.org/
I need sponsor for the first upload (I'm DM).



Bug#1050531: ITP: libmceliece -- Classic McEliece microlibrary

2023-08-25 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libmceliece
  Version : 20230612
  Upstream Authort: Daniel J. Bernstein
* URL : https://lib.mceliece.org
* License : CC0
  Programming Lang: C
  Description : Classic McEliece microlibrary


libmceliece is a Classic McEliece microlibrary.
libmceliece has a very simple stateless API based on the SUPERCOP API,
with wire-format inputs and outputs, providing functions that directly match
the KEM operations provided by Classic McEliece, such as functions

mceliece6960119_keypair
mceliece6960119_enc
mceliece6960119_dec
for the mceliece6960119 KEM.

Internally, libmceliece is based on the official Classic McEliece software,
specifically the vec implementation (designed to work portably across CPUs) and
he avx implementation (designed for higher performance on Intel/AMD CPUs with
AVX2 instructions). libmceliece includes automatic run-time selection
of implementations.

libmceliece is intended to be called by larger multi-function libraries
(such as traditional cryptographic libraries), including libraries in other
languages via FFI. The idea is that libmceliece takes responsibility for
the details of Classic McEliece computation, including optimization,
timing-attack protection, and (in ongoing work) verification,
freeing up the calling libraries to concentrate on application-specific
needs such as protocol integration. Applications can also call libmceliece
directly.


I'm using this library and I'm going to maintain using https://salsa.debian.org/
I need sponsor for the first upload (I'm DM).



Bug#1029842: ITP: randombytes -- Library generating fresh randomness

2023-01-28 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: randombytes
  Version : 20230126
  Upstream Author : Daniel J. Bernstein
* URL : https://randombytes.cr.yp.to/
* License : Public domain
  Programming Lang: C
  Description : Library generating fresh randomness


 librandombytes is a public-domain library providing a simple API for
 applications generating fresh randomness: include ,
 call randombytes(x, xbytes) whenever desired to generate fresh random bytes
 x[0], x[1], ..., x[xbytes-1], and link with -lrandombytes.
 .
 Random bytes are often used directly in applications. Random bytes are also
 the foundation of more complicated random objects, such as random integers
 in a limited interval, random floating-point numbers from a (nearly) normal
 distribution, and random keys used in public-key cryptosystems. librandombytes
 is dedicated to obtaining fresh random bytes in the first place, and leaves
 it to higher-level libraries to convert those bytes into other types of random
 objects.
 .
 librandombytes aims for the following stringent randomness goal: no feasible
 computation will ever be able to tell the difference between the output bytes
 and true randomness (independent uniformly distributed random bytes). This
 makes the randombytes() output suitable for use in applications ranging from
 simulations to cryptography.

I'm using this library and I'm going to maintain using https://salsa.debian.org/
I need sponsor for the first upload (I'm DM).



Bug#1025515: ITP: libnginx-mod-http-brotli -- Nginx module libnginx-mod-http-brotli

2022-12-05 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-brotli
  Version : 1.0.0rc
  Upstream Author : Google Inc
* URL : https://github.com/google/ngx_brotli
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-brotli module for Nginx


libnginx-mod-http-brotli is new module for Nginx web server.
it is a set of two nginx modules:
libnginx-mod-http-brotli-filter - filter module - used to compress responses 
on-the-fly,
libnginx-mod-http-brotli-static - used to serve pre-compressed files.

I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-brotli

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024379: ITP: libnginx-mod-http-upstream-fair -- Nginx module libnginx-mod-http-upstream-fair

2022-11-18 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-upstream-fair
  Version : git20120408
  Upstream Author : Grzegorz Nosek
* URL : https://github.com/gnosek/nginx-upstream-fair
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-upstream-fair module for Nginx


libnginx-mod-http-upstream-fair module is currently a part of Debian Nginx 
package.

I would like to move the module to the separate package 
libnginx-mod-http-upstream-fair.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-upstream-fair
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-upstream-fair

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024377: ITP: libnginx-mod-nchan -- Nginx module libnginx-mod-nchan

2022-11-18 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-nchan
  Version : 1.3.5
  Upstream Author : Leo Ponomarev
* URL : https://github.com/slact/nchan
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-nchan module for Nginx


libnginx-mod-nchan module is currently a part of Debian Nginx package.

I would like to move the module to the separate package libnginx-mod-nchan.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-nchan
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-nchan

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024374: ITP: libnginx-mod-rtmp -- Nginx module libnginx-mod-rtmp

2022-11-18 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-rtmp
  Version : 1.2.2
  Upstream Author : Roman Arutyunyan
* URL : https://github.com/arut/nginx-rtmp-module
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-rtmp module for Nginx


libnginx-mod-rtmp module is currently a part of Debian Nginx package.

I would like to move the module to the separate package libnginx-mod-rtmp.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-rtmp
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-rtmp

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024372: ITP: libnginx-mod-http-geoip2 -- Nginx module libnginx-mod-http-geoip2

2022-11-18 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-geoip2
  Version : 3.4
  Upstream Author : Lee Valentine
* URL : https://github.com/leev/ngx_http_geoip2_module
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-geoip2 module for Nginx


libnginx-mod-http-geoip2 module is currently a part of Debian Nginx package.

I would like to move the module to the separate package 
libnginx-mod-http-geoip2.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-geoip2
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-geoip2

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024371: ITP: libnginx-mod-http-dav-ext -- Nginx module libnginx-mod-http-dav-ext

2022-11-18 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-dav-ext
  Version : 3.0.0
  Upstream Author : Roman Arutyunyan
* URL : https://github.com/arut/nginx-dav-ext-module
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-dav-ext module for Nginx


libnginx-mod-http-dav-ext module is currently a part of Debian Nginx package.

I would like to move the module to the separate package 
libnginx-mod-http-dav-ext.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-dav-ext
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-dav-ext

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024370: ITP: libnginx-mod-http-subs-filter -- Nginx module libnginx-mod-http-subs-filter

2022-11-18 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-subs-filter
  Version : 0.6.4
  Upstream Author : Weibin Yao
* URL : 
https://github.com/yaoweibin/ngx_http_substitutions_filter_module
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-subs-filter module for Nginx


libnginx-mod-http-subs-filter module is currently a part of Debian Nginx 
package.

I would like to move the module to the separate package 
libnginx-mod-http-subs-filter.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-subs-filter
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-subs-filter

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024369: ITP: libnginx-mod-http-fancyindex -- Nginx module libnginx-mod-http-fancyindex

2022-11-18 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-fancyindex
  Version : 0.5.2
  Upstream Author : Adrian Perez
* URL : https://github.com/aperezdc/ngx-fancyindex
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-fancyindex module for Nginx


libnginx-mod-http-fancyindex module is currently a part of Debian Nginx package.

I would like to move the module to the separate package 
libnginx-mod-http-fancyindex.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-fancyindex
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-fancyindex

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024213: ITP: libnginx-mod-http-cache-purge -- Nginx module libnginx-mod-http-cache-purge

2022-11-15 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-cache-purge
  Version : 2.3
  Upstream Author : FRiCKLE 
* URL : https://github.com/FRiCKLE/ngx_cache_purge
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-cache-purge module for Nginx


libnginx-mod-http-cache-purge module is currently a part of Debian Nginx 
package.

I would like to move the module to the separate package 
libnginx-mod-http-cache-purge.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-cache-purge
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-cache-purge

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024211: ITP: libnginx-mod-http-uploadprogress -- Nginx module libnginx-mod-http-uploadprogress

2022-11-15 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-uploadprogress
  Version : 0.9.2
  Upstream Author : Brice Figureau
* URL : https://github.com/masterzen/nginx-upload-progress-module
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-uploadprogress module for Nginx


libnginx-mod-http-uploadprogress module is currently a part of Debian Nginx 
package.

I would like to move the module to the separate package 
libnginx-mod-http-uploadprogress.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-uploadprogress
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-uploadprogress

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024153: ITP: libnginx-mod-http-echo -- Nginx module libnginx-mod-http-echo

2022-11-15 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-echo
  Version : 0.63
  Upstream Author : Yichun Zhang
* URL : https://github.com/agentzh/echo-nginx-module
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-echo module for Nginx


libnginx-mod-http-echo module is currently a part of Debian Nginx package.

I would like to move the module to the separate package libnginx-mod-http-echo.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-echo
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-echo

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024152: ITP: libnginx-mod-http-auth-pam -- Nginx module libnginx-mod-http-auth-pam

2022-11-15 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-auth-pam
  Version : 1.5.3
  Upstream Author : Sergio Talens Oliag
* URL : https://github.com/sto/ngx_http_auth_pam_module
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-auth-pam module for Nginx


libnginx-mod-http-auth-pam module is currently a part of Debian Nginx package.

I would like to move the module to the separate package 
libnginx-mod-http-auth-pam.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-auth-pam
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-auth-pam

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024151: ITP: libnginx-mod-http-headers-more-filter -- Nginx module libnginx-mod-http-headers-more-filter

2022-11-15 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-headers-more-filter
  Version : 0.34
  Upstream Author : Yichun Zhang
* URL : https://github.com/agentzh/headers-more-nginx-module
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-headers-more-filter module for Nginx


libnginx-mod-http-headers-more-filter module is currently a part of Debian 
Nginx package.

I would like to move the module to the separate package 
libnginx-mod-http-headers-more-filter.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-headers-more-filter
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-headers-more-filter

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1024150: ITP: libnginx-mod-http-ndk -- Nginx module libnginx-mod-http-ndk

2022-11-15 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libnginx-mod-http-ndk
  Version : 0.3.2
  Upstream Author : Marcus Clyne
* URL : https://github.com/simpl/ngx_devel_kit
* License : BSD
  Programming Lang: C
  Description : libnginx-mod-http-ndk module for Nginx


libnginx-mod-http-ndk module is currently a part of Debian Nginx package.

I would like to move the module to the separate package libnginx-mod-http-ndk.


I would like to maintain the package using 
https://salsa.debian.org/nginx-team/libnginx-mod-http-ndk
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/libnginx-mod-http-ndk

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1016866: ITP: ngx-lua -- Lua module for Nginx

2022-08-08 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: ngx-lua
  Version : 0.10.21
  Upstream Author : Yichun Zhang (agentzh) 
* URL : https://github.com/openresty/lua-nginx-module
* License : BSD-2-clause
  Programming Lang: (C, Lua)
  Description : Lua module for Nginx


Lua module is currently a part of Debian Nginx package.

I would like to move the module to the separate package ngx-lua.


I would like to maintain the package using https://salsa.debian.org/
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/ngx-lua

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1016054: ITP: lua-resty-lrucache -- Simple LRU cache for the ngx_lua module

2022-07-26 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: lua-resty-lrucache
  Version : 0.13
  Upstream Author : Yichun Zhang (agentzh) 
* URL : https://github.com/openresty/lua-resty-lrucache
* License : BSD
  Programming Lang: Lua
  Description : Simple LRU cache for the ngx_lua module

This library implements a Simple LRU cache for the ngx_lua module.

I'm currenlty maintaining NGINX package, and new ngx_lua module needs the 
lua-resty-lrucache package.

I would like to maintain the package using https://salsa.debian.org/
I would need to create a 
https://salsa.debian.org/debian/lua-team/lua-resty-lrucache repository before 
uploading.
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/lua-resty-lrucache

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1016053: ITP: lua-resty-core -- New FFI-based Lua API for NGINX lua module

2022-07-26 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: lua-resty-core
  Version : 0.10.13
  Upstream Author : Yichun Zhang (agentzh) 
* URL : https://github.com/openresty/lua-resty-core
* License : BSD
  Programming Lang: Lua
  Description : New FFI-based Lua API for NGINX lua module

This library implements a New FFI-based Lua API for NGINX lua module.

I'm currenlty maintaining NGINX package, and new ngx_lua module needs the 
lua-resty-core package.

I would like to maintain the package using https://salsa.debian.org/
I would need to create a 
https://salsa.debian.org/debian/lua-team/lua-resty-core repository before 
uploading.
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/lua-resty-core

I need sponsor only for the first upload (I'm DM).
Thank You!



Bug#1009758: ITP: flask-restx -- Flask-RESTX is an extension for Flask that adds support for quickly building REST APIs

2022-04-16 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: flask-restx
 Version : 0.5.1
 Upstream Author : python-restx Authors
* URL : https://github.com/python-restx/flask-restx
* License : BSD-3-Clause
 Programming Lang: Python
 Description : Flask-RESTX is an extension for Flask that adds support for 
quickly building REST APIs


Flask-RESTX is an extension for Flask that adds support for quickly
building REST APIs. Flask-RESTX encourages best practices with minimal setup.
If you are familiar with Flask, Flask-RESTX should be easy to pick up. It
provides a coherent collection of decorators and tools to describe your API and
expose its documentation properly using Swagger.

I would like to maintain the package using https://salsa.debian.org/
Currently is the Debian package maintained here 
https://salsa.debian.org/janmojzis/python-flask-restx

I need sponsor for the first upload (I'm DM).


Bug#1002599: ITP: binlex -- a genetic binary trait lexer

2021-12-25 Thread Jan Gru
Package: wnpp
Severity: wishlist
Owner: Jan Gru 
X-Debbugs-Cc: debian-devel@lists.debian.org, 
debian-security-to...@lists.debian.org

* Package name: binlex
  Version : 1.1.0
  Upstream Author : @c3rb3ru5d3d53c
* URL : https://github.com/c3rb3ru5d3d53c/binlex
* License : The Unlicense
  Programming Lang: C++
  Description : a genetic binary trait lexer utility

Extract basic blocks and functions as traits from binaries for malware
research, hunting and detection. Use cases range from (automated)
YARA signature generation, identification of code reuse, creation of
a good- or malware trait corpus, genetic programming and ML-based
malware detection.

* Relevance of the package
Creating detection signatures or finding code reuse and code
similarity are important steps for understanding malware threats and
defending networks. Binlex helps to simplify and automate these tasks
by providing a C++-library and a utility program to extract binary
traits from binaries.

* Maintenance Plan
I suggest to maintain binlex inside the pkg-security-team's
repository on salsa, since most of the packages related to
security and forensics live there. I am looking for a sponsor
for this package -- ideally a member of the pkg-security-team.



Bug#994594: ITP: time-decode -- timestamp decoder and converter

2021-09-18 Thread Jan Gru
Package: wnpp
Severity: wishlist
Owner: Jan Gru 
X-Debbugs-Cc: debian-devel@lists.debian.org, 
debian-security-to...@lists.debian.org

* Package name: time-decode
  Version : 3.1.1
  Upstream Author : Corey Forman
* URL : https://github.com/digitalsleuth/time_decode
* License : MIT
  Programming Lang: Python
  Description : timestamp decoder and converter

time-decode provides the functionality to decode various timestamps
and UUIDs to aid digital forensics and incident response
processes. The supported formats range from common ones, like Unix
epochs, WebKit/Chrome timestamps and Microsoft's FILETIME to more
exotic formats like LDAP/Active Directory timestamps and Metasploit
payload UUIDs. In addition, even timestamps used by some social media
services, like Twitter, are included.

** Relevance of the package
In most DFIR investigations temporal information is particularly
important. Analysts often stumble over various timestamps and need to
convert and normalize them quickly. While toolkits like plaso can help
with the normalization of logfiles in bulk, Debian's package archives
lack tooling for the convenient conversion of single timestamps of
either known or unknown format. Given this finding and my experience
from using it, time-decode seems to be an valuable prospective package
to round off Debian's collection of forensic tools.

** Maintainenace plan
I suggest to maintain time-decode inside the pkg-security-team's
repository on salsa, since most of the packages related to forensics
live there. However, I am looking for a sponsor for this package -
ideally a member of the pkg-security-team.



Bug#990302: ITP: bulk-extractor -- A stream-based forensics tool for triage and cross-evidence analysis, which scans the media and extracts recognizable content

2021-06-25 Thread Jan Gru
Package: wnpp
X-Debbugs-Cc: debian-devel@lists.debian.org, 
debian-security-to...@lists.debian.org

Owner: Jan Gru 
Severity: wishlist

* Package name: bulk-extractor
  Version : 1.6.0
  Upstream Author : Simson L. Garfinkel 
* URL : https://github.com/simsong/bulk_extractor
* License : MIT and CC0
  Programming Lang: C++, Python (and Java for the BEViewier, probably not 
packaged)
  Description : A stream-based forensics tool for triage and cross-evidence 
analysis, which scans the media and extracts recognizable content


bulk_extractor is a program for bulk data extraction and analysis, it carves 
for relevant features such as email addresses, credit card numbers, URLs,
and other types of information from digital evidence files in a stream-based 
manner by parallelized processing blocks to omit disk seeking.

** Why is this package relevant?
It is a useful tool for forensic investigations, because it is way more than 
just another file carver. The program provides several unusual capabilities 
including:

- It finds email addresses, URLs and credit card numbers that other tools miss 
because it can process compressed data (like ZIP, PDF and GZIP files) and 
incomplete or partially corrupted data.
- It can carve JPEGs, office documents and other kinds of files out of 
fragments of compressed data. It will detect and carve encrypted RAR files.
- It builds word lists based on all of the words found within the data, even 
those in compressed files that are in unallocated space. Those word lists can 
be useful for password cracking.
- It is multi-threaded; running bulk_extractor on a computer with twice the 
number of cores typically makes it complete a run in half the time.
- It creates histograms showing the most common email addresses, URLs, domains, 
search terms and other kinds of information on the drive.

The program is authored by the renowned forensics researcher Simson L. 
Garfinkel, who is probably most recognized for his work on DFXML at the Naval 
Postgraduate School (NPS) and the National Institute of Standards and 
Technology (NIST). It provides rich documentation -- for the end-users as well 
as for potential contributors [0].

To sum it up, bulk_extractor has great potential for improving triage and 
automatation workflows within digital forensics and should be therefore 
included in Debian's package sources. 

** Resolved issues
bulk_extractor is already packaged in Kali [1], but had licensing issues until 
recently.
To be more precise, it linked code with OpenSSL while not explicitly permitting 
it and used a the modified MIT-license from the
JSON-project, which is considered non-free and not DFSG-compliant. To overcome 
this issues I resolved this issues in cooperation
with upstream by sending two recent patches [2], which were already accepted.

** Maintanance plan
I plan to maintain it within the pkg-security-team's repository on salsa, where 
a lot of forensics packages live [3].
I am looking for a sponsor of this package, who would be ideally a member of 
the a/m team.

Best regards
   Jan

[0] See http://digitalcorpora.org/downloads/bulk_extractor/BEUsersManual.pdf, 
https://digitalcorpora.s3.amazonaws.com/downloads/bulk_extractor/BEProgrammersManual.pdf
 and 
https://digitalcorpora.s3.amazonaws.com/downloads/bulk_extractor/BEWorkedExamplesStandalone.pdf
[1] See https://tools.kali.org/forensics/bulk-extractor
[2] See https://github.com/simsong/bulk_extractor/issues/168, 
https://github.com/simsong/bulk_extractor/pull/169 and 
https://github.com/simsong/bulk_extractor/pull/170
[3] See https://salsa.debian.org/pkg-security-team/

  


Bug#987586: ITP: regripper -- perform forensic analysis of registry hives

2021-04-26 Thread Jan Gru
Package: wnpp
Severity: wishlist
Owner: Jan Gru 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: regripper
  Version : 3.0
  Upstream Author : Harlan Carvey 
* URL : https://github.com/keydet89/RegRipper3.0
* License : MIT
  Programming Lang: Perl
  Description : Regripper - perform forensic analysis of registry hives
Bcc: Jan Gru 

Regripper is a popular tool to perform forensic analysis of Windows Registry 
files. It can be used to surgically extract, translate, and display information 
(both data and metadata) from Registry-formatted files via plugins in the form 
of Perl-scripts.

** Why is this package relevant?
Regripper has an ancestral place in digital forensics and incident response 
with open source tools. Right now there are no other Debian packages providing 
similiar functionality. It was developed by the renowned author Harlan Carvey 
[fn:1]. It provides the capability to parse and analyze offline Windows 
registry files, which house a lot of valuable information needed in DFIR work.

Regripper is the goto tool for performing open source DFIR work on Windows 
systems [fn:2]. There exist numerous guides dealing
 with the installation procedure of regripper on Linux systems [fn:3]. 
Therefore is a need for a regripper package. I am using it myself on a regular 
basis to perform DFIR work.

** Maintenance plan
I want to suggest to maintain regripper inside the pkg-security-team's 
repository on salsa, where a lot of forensics packages live [fn:4]. I am 
looking for a sponsor for this package - ideally a member of the 
pkg-security-team.

** Footnotes
[fn:1] E.g. see https://www.sans.org/blog/book-review-windows-forensic-analysis/

[fn:2] And even giants like Autopsy rely on regripper for registry parsing, see 
https://www.sleuthkit.org/autopsy/features.php

[fn:3] See 
https://medium.com/@virtual_alloc/installing-regripper-v2-8-on-ubuntu-e30dfb41192c,
 https://blog.dfir.fi/tools/2020/02/19/install-regripper.html, 
https://thegreycorner.com/2010/04/25/running-regripper-on-linux.html to name a 
few

[fn:4] See https://salsa.debian.org/pkg-security-team/



Bug#982135: ITP: bearssl -- BearSSL is an implementation of the SSL/TLS protocol (RFC 5246) written in C

2021-02-06 Thread Jan Mojzis
Package: wnpp
Severity: wishlist
Owner: Jan Mojzis 

* Package name: bearssl
  Version : 0.6
  Upstream Author : Thomas Pornin 
* URL : https://bearssl.org
* License : MIT
  Programming Lang: C
  Description : BearSSL is an implementation of the SSL/TLS protocol (RFC 
5246) written in C


BearSSL is an implementation of the SSL/TLS protocol (RFC 5246) written in C. 
It aims at offering the following features:
- Be correct and secure. In particular, insecure protocol versions and choices 
of algorithms are not supported, by design; cryptographic algorithm 
implementations are constant-time by default.
- Be small, both in RAM and code footprint. For instance, a minimal server 
implementation may fit in about 20 kilobytes of compiled code and 25 kilobytes 
of RAM.
- Be highly portable. BearSSL targets not only “big” operating systems like 
Linux and Windows, but also small embedded systems and even special contexts 
like bootstrap code.
- Be feature-rich and extensible. SSL/TLS has many defined cipher suites and 
extensions; BearSSL should implement most of them, and allow extra algorithm 
implementations to be added afterwards, possibly  from third parties

Library doesn't have compatible API with mainstream OpenSSL.
And it's not intended as an OpenSSL 1-1 replacement.

I'm using this software and I'm going to maintain using 
https://salsa.debian.org/.
I need sponsor.


monitoring-plugins_2.3 in experimental

2020-12-22 Thread Jan Wagner
Hi there,

Am 19.12.20 um 00:56 schrieb Debian FTP Master:> Changes:
>  monitoring-plugins (2.3-1~exp1) experimental; urgency=medium
>  .
>* [3031044] New upstream version 2.3
>* [61ef2d7] Droping all patches commited upstream and beeing obsolete with 
> 2.3
>* [66c44c4] d/control: adding new build-deps fir check_curl
>* [59b52dd] d/rules: Adding check_curl to std_plugins
>* [5e59ca1] Adding check_curl check commands
>* [6cbfc78] check_uptime: Don't ship for now, check_uptime also exist in
>  nagios-plugins-contrib

I uploaded this into experimental. In case there is enough (positive)
feedback I'm thinking about to upload this into unstable targeted to
bullseye. So please test and give feedback.

Thanks and cheers, Jan.
-- 
Never write mail to , you have been warned!
-BEGIN GEEK CODE BLOCK-
Version: 3.12
GIT d-@ s+:()>- a+ C$ UL$ P+ L$ !E--- W+++$ N+++ o++ K++
!w---? O M+
!V- PS+ PE Y++ PGP++ t-- 5 X R tv- b+ DI D+ G++ e++ h r+++ y+
--END GEEK CODE BLOCK--



signature.asc
Description: OpenPGP digital signature


Bug#975630: ITP: condure -- HTTP/WebSocket connection manager

2020-11-24 Thread Jan Niehusmann
Package: wnpp
Severity: wishlist
Owner: Jan Niehusmann 

* Package name: condure
  Version : 1.1.0
  Upstream Author : Justin Karneges 
* URL : https://github.com/fanout/condure/
* License : Apache-2.0
  Programming Lang: Rust
  Description : HTTP/WebSocket connection manager

Condure is a service that manages network connections on behalf of server
applications, in order to allow controlling the connections from multiple
processes. Applications communicate with Condure over ZeroMQ.

Condure can only manage connections for protocols it knows
about. Currently this is HTTP/1 and WebSockets. See Supported protocols.

The project was inspired by Mongrel2.

The existing package pushpin supports condure as an alternative to
mongrel2, and it looks like upstream is slowly migrating from mongrel2
to condure.

As a rust software, this will be packaged as part of the debian-rust
team.



Bug#963191: RFH: aufs

2020-06-20 Thread Jan Luca Naumann
Package: wnpp
Severity: normal

At the moment aufs is nearly unmaintained since I do not have time due to 
personal issues. Therefore, I would be happy if there is somebody to 
co-maintain the package.

Open issues are:

- Update to current version
- Add a version in backports
- Support multiple kernel versions at the same time

I try to take a look at this problems in the near future but I would be happy 
about help.



Accepted aiscm 0.20.1-1 (source) into unstable

2020-01-25 Thread Jan Wedekind
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 28 Dec 2019 22:54:36 +
Source: aiscm
Architecture: source
Version: 0.20.1-1
Distribution: unstable
Urgency: low
Maintainer: Jan Wedekind 
Changed-By: Jan Wedekind 
Closes: 947434
Changes:
 aiscm (0.20.1-1) unstable; urgency=low
 .
   - Bumped Standards-Version to 4.4.1
   - Replaced debian/compat with dependency in debian/control
   - Add "Rules-Requires-Root: no" to debian/control
   - Update to LLVM version 9. Closes: #947434
Checksums-Sha1:
 d4714e4cc77c16f1b477fc274c47c7c7da69f555 2317 aiscm_0.20.1-1.dsc
 942c7c6a4e1ed1add9dd8374686c0461898ddb02 3595316 aiscm_0.20.1.orig.tar.xz
 e73d0dd499a29faf386728b8e906870e04fa6a3e 833 aiscm_0.20.1.orig.tar.xz.asc
 56a962b1587d3595a968753ef0a6ac87b9ccb77d 5856 aiscm_0.20.1-1.debian.tar.xz
 5e8b52fe77f348ad4bca4a6b5bc473e23327d1b0 15275 aiscm_0.20.1-1_amd64.buildinfo
Checksums-Sha256:
 0424f6f1cad79531b872184c76e5d25ba4b79dab4e41c2d3eb319ea9efa442e9 2317 
aiscm_0.20.1-1.dsc
 333a1e2213f1043dd82f4392035913e39389a30600548a2cd0b70f9a6bb979f5 3595316 
aiscm_0.20.1.orig.tar.xz
 cfe49e631ac6ee8ee9a88482231bb63c7447737f0ede249f3bd5bdbd0a00343f 833 
aiscm_0.20.1.orig.tar.xz.asc
 21df21520b8c3f4b7915ae4537ece6f89af22eb8fe42e5dda96da2485e6a0f64 5856 
aiscm_0.20.1-1.debian.tar.xz
 3fd994dbeab264c5238a0f968169d77c6ced10fdbee6a6ca4fa80e3bbda12979 15275 
aiscm_0.20.1-1_amd64.buildinfo
Files:
 595ac88d537e015a06bff3c6d058795c 2317 lisp optional aiscm_0.20.1-1.dsc
 9a60b7c03841916412a6fb3de9221489 3595316 lisp optional aiscm_0.20.1.orig.tar.xz
 75da3ebe3abd63602126fb4e5ec97114 833 lisp optional aiscm_0.20.1.orig.tar.xz.asc
 765203cfcf69f05a77394250985c737d 5856 lisp optional 
aiscm_0.20.1-1.debian.tar.xz
 f9f32227599918bb2b32f5683ff1688d 15275 lisp optional 
aiscm_0.20.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEolIP6gqGcKZh3YxVM2L3AxpJkuEFAl4sOfEACgkQM2L3AxpJ
kuHPPhAAjGtPLZdqYHi4E0rYjs3rM5NC4iXAa3kiLNV086dLGPS1AIZIRe5fFGpo
OHHWG2IWPELcaf1FnU2lF8FE808C/EYM9UKg9WNddvvPAvmsPl4ZQgE3krLSlytX
9nP2SITYQObkYbcedVGtmtBKI2ngWRR6hLjWyNrcxJru5/a/O0a0Iu/0Dwd0H9OR
ImGhqBNmEG+YdtZ9rLil9mo8XPW4Br7HySUipQ2SxSxccjAYMRJ2fW6+6H6HZu2M
QOiMGB4wMDcrGKtfPL6efjsQrq7kW7Zti3okpfnzzpOoxah/xXIKtobv3Gap6Rkl
vlAk7teCuAYh1FWLGBIv1BIWz5eN23qEjjrPrCLBDTDMbciHKOgjZ5syC5aH72sl
l97qZ5cuy1ZvOrCMhf5WiHcMi10Y+XxRHVfzBQWmdu9uHoCFYnnNKafeFLXjPemw
bK9MFzfyDJvKFHSIQ8278DdfVh0l6HkPgau6QvyK+jcYM/5Co5TARtNT9X6cHsoY
/Sw21+19FnRmk/7ayxTXXLLj7uTNHIVmuUrXNHh93p9s/VfMIdjpgVi7Kc2ExKbc
xi1DFe1vZtBkjfRcJhgCFNnevUINRDT4o46LD+e8/1qLbqTiFhp+0XvHsrgpT3S8
dZeTE9vyexC2+B3uRkQnA879mKL+/2FdAqkb9UYp0fEGfrCzK0Y=
=A+Df
-END PGP SIGNATURE-



Accepted mongrel2 1.12.2-2 (source) into unstable

2020-01-15 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 15 Jan 2020 20:29:16 +0100
Source: mongrel2
Architecture: source
Version: 1.12.2-2
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 mongrel2 (1.12.2-2) unstable; urgency=medium
 .
   * Fix crash when reading websocket packet after deliver task has stopped
Checksums-Sha1:
 47d4da5e9810aa3d47f9cb13627efba05d9b9017 1832 mongrel2_1.12.2-2.dsc
 6ff3645cae703ffd02d9cb89c62096894af4d9a0 20340 mongrel2_1.12.2-2.debian.tar.xz
 9a152323d49796c3f110959d24041464bce2c731 6923 mongrel2_1.12.2-2_amd64.buildinfo
Checksums-Sha256:
 fcf96acfe0f83f05a94d0ac61c4516bd91b7515a03c736052d3bbb63bc3ef70d 1832 
mongrel2_1.12.2-2.dsc
 88181d51cea958b6ef22e17e8fd0583afc23c28339958863064a72438d75b1e6 20340 
mongrel2_1.12.2-2.debian.tar.xz
 c7919fc7c0247213da1f9ca75b212bb7fa8a67eb0ea0429521a92cb1dadfa9b0 6923 
mongrel2_1.12.2-2_amd64.buildinfo
Files:
 83ace7ba3869b4cf5197cd01e2297491 1832 httpd optional mongrel2_1.12.2-2.dsc
 8c4a6c81a16914e344d2e518c0d6cbf4 20340 httpd optional 
mongrel2_1.12.2-2.debian.tar.xz
 7f0ebe2d793edc0a769ce9f6e168da50 6923 httpd optional 
mongrel2_1.12.2-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAl4fhCgPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRzpcL/jb2HBM12kvnuQv1VzO/Nn63L+t7Aw7X9ENR
X1xOV+ooGnmgQwXpeX3wtpmUCJYdSOdXGGM8Qz1IFG0pr+2lZUmG8aGZKo+wgAaX
azrbKSWu6favaTs87NA6G/IR0vZrYa39194mj9FCFe+kOdFKHmIJ1tZF5uaIyaF+
nH5I8IvqaTVY2tSzYASg1iVhK1eXBJc8FtAvjqr7GVbpRxrB3VSvlQNhgVwgswTS
Vipbz+cPLS60xgdX54Syp5508FhYAboapUgdMCQ/KFF+OBbwDtOCwul2hnBikzZd
hzxyhJKHjiLme/g0hkxKUx8ZdoRSd/88Tob8eGDocSFL57XRgx1nwcFm3ZsHDl9L
CeOjzTPJ1HhqbTmOhZ3KlHDTQzeas6SSKr3IJClkbgldKWLF7kCH8x8UGvFwrd53
uKhtaqeUMSoF7ywTUsSYcd5U46wSVUGg6Cr6R7mk3sobmjzpmm7NAf9APTNxHKR5
ZLbXQvuCXORkptriNE9Z28bLLGy5Kw==
=5C2V
-END PGP SIGNATURE-



Accepted pushpin 1.26.0-1 (source) into unstable

2019-12-13 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 13 Dec 2019 20:29:26 +0100
Source: pushpin
Architecture: source
Version: 1.26.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.26.0-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 7256b8428aa07325c3072646eecb2aa6bb73c292 1732 pushpin_1.26.0-1.dsc
 f767821ad13921a498343e2ffe1daec2bf9ca196 212438 pushpin_1.26.0.orig.tar.bz2
 35496c6d1a86d8786eacfbe8627fabae931216ed 20120 pushpin_1.26.0-1.debian.tar.xz
 9530bf31a18c88a9b71823b8a2ddd9eadf4746a7 10249 pushpin_1.26.0-1_amd64.buildinfo
Checksums-Sha256:
 5f811aee2d7802355908731cc923790e267eb95cfc3789bcccbf5d7c7ed71023 1732 
pushpin_1.26.0-1.dsc
 4b7e39c0ba1c8a129027ae9c6472a169af1db26790b3009d99d5e4f0d01d760f 212438 
pushpin_1.26.0.orig.tar.bz2
 fa9d4d29c65335345d2d78d10f3fc9722a280a07a1fff039734d05706e9e8469 20120 
pushpin_1.26.0-1.debian.tar.xz
 38442944499238750e845c3ab514bfc4426e9d860522e678d7280ac92a1351d9 10249 
pushpin_1.26.0-1_amd64.buildinfo
Files:
 e0de7ac746ac671dac59671f7a2b1906 1732 net optional pushpin_1.26.0-1.dsc
 07622e349f185d8c47850b8aefc834e9 212438 net optional 
pushpin_1.26.0.orig.tar.bz2
 bbfcb01ead67e36bfe8e6450c907c5ae 20120 net optional 
pushpin_1.26.0-1.debian.tar.xz
 a79f93c1cf3026c349a69743ac03505b 10249 net optional 
pushpin_1.26.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAl3z6twPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRGrML/iFTrUlySvY3rbDexxFSQescfV147yW5gClF
iS+nmGQaZsPWipeDMBtC6t3QWflvF0wUKopi+FKPDJdVqozmutpXrTjGZ9uGhbm3
Q+a0cqEqQj5lq+FH78d2jMR/REGCFvsvKvrZyKnIwFL6PxQpMMePpdUs8RFmAbJg
5xJUv0a0GBFV/UUNMAVbCAAffB4ZSJevcMDpptMbvZ6r2kHfIlNj+x+Ds7b7xnJl
UXIYdozdAe97+FvvrMNXSN+sbm7wwrhR7O+DJI65v/Lf3+HVXtCHLUQZSDTVJ9fr
arTy1m+NiYGvwyNzqsdLVWrbxYCBMO7j47GnQl9V/4G/SJms/xXXLjI/3Wf9g1sY
L70LPuzTIgnlsRqb5HnrZovKWMpOwmp0AjRgrLjD+ItyrcPqQjhEHO6AELdJt1cl
e0blomqPWsd5vaJGz3Ujjm1p3uh8kLLjMw7cccIaTgDCmJGm8UFFuxxav6SCeqK3
gXT69NePS3O7TSMxpJJPdmuj7d52KQ==
=4pOL
-END PGP SIGNATURE-



Accepted virtualenv-clone 0.3.0-2 (source) into unstable

2019-12-01 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 01 Dec 2019 15:24:56 +0100
Source: virtualenv-clone
Architecture: source
Version: 0.3.0-2
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Closes: 938785
Changes:
 virtualenv-clone (0.3.0-2) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * d/control: Remove ancient X-Python-Version field
   * d/control: Remove ancient X-Python3-Version field
   * d/copyright: Use https protocol in Format field
 .
   [ Nicholas D Steeves ]
   * Drop the following from Build-Depends: python-all, python-setuptools,
 python-pytest, python-virtualenv.
   * Drop bin:python-virtualenv-clone, which is the Python 2 variant package.
 (Closes: #938785)
   * Drop dummy transitional package "virtualenv-clone", because
 transitions from this old Python 2 package to the package that was
 just dropped, and because was included in the "buster" stable release.
   * Rename virtualenv-clone.docs to python3-virtualenv-clone.docs.
   * No longer build "--with python2".
Checksums-Sha1:
 c6cd5fe5598d3886f60c1cacc5811763c2de387d 1694 virtualenv-clone_0.3.0-2.dsc
 922b29c2aa856035117bae248950be8e19ff7f08 3148 
virtualenv-clone_0.3.0-2.debian.tar.xz
 d8c0634f8ced459397f7a2910d8bd54236d39b55 6477 
virtualenv-clone_0.3.0-2_amd64.buildinfo
Checksums-Sha256:
 07ef48522c972627f2d760930adfca1b4c1448e708a946b676b33eddc72e5461 1694 
virtualenv-clone_0.3.0-2.dsc
 a369699624148c44aa5a1e068faf9df34bd65403cec8c9d5fb0295db8bb5899e 3148 
virtualenv-clone_0.3.0-2.debian.tar.xz
 dd825810e15175a8b6e755284f95f7dd9af1cf9d8a65f289c15bc84298c7a048 6477 
virtualenv-clone_0.3.0-2_amd64.buildinfo
Files:
 882bf738cea956d51b4674965aa1558c 1694 python optional 
virtualenv-clone_0.3.0-2.dsc
 e7d2c3108855915cf7a80322d787b228 3148 python optional 
virtualenv-clone_0.3.0-2.debian.tar.xz
 f95f5beb5f83d8239a48c1f7bab3740e 6477 python optional 
virtualenv-clone_0.3.0-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAl3jzZYRHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdk99Qf+NJxpQOXs8T4E01xsNWjLCMXPUfzpaYGT
epsZF3TBws62vpjunVPgTcwLaOL0+S1CRePPpOIr3efUURbG6V9zgfX+Qhw71rT5
NEEC9DpdXLssTiICbXeY5xHOPoI/FnCLUkK90P1gEElClKb3Q+oZYBegD53rOVJR
lj315YeP5BvSnE7aw6WHKEC0PrygF3kMkkNt/auSotviSnNyI2zU2Xb3QNrWDJ2T
usCdmYvPpNWehgJ4l3JzFbcZd/phdKDaW8B99BWKUr1FUbOmkKQia6VgdhHSV2xm
p1SbklNdDab0RG7pXFw5Bbcm3KV7HPI+auWPEkX/yaFk0izy5KzrbQ==
=8Kt5
-END PGP SIGNATURE-



Accepted pushpin 1.25.0-1 (source) into unstable

2019-11-20 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 20 Nov 2019 17:37:43 +0100
Source: pushpin
Architecture: source
Version: 1.25.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.25.0-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 40bbc7fabc984f7a71bdbf19456f746c2eb9a9d0 1732 pushpin_1.25.0-1.dsc
 e2bc3337f1f20c68b3c74b530c86d0fe6b898f27 212393 pushpin_1.25.0.orig.tar.bz2
 8bd8f633bdb79319c786b257b8493426a9514ac2 20132 pushpin_1.25.0-1.debian.tar.xz
 a493481e62c923769d4c5d76e4d101408d6fa837 10249 pushpin_1.25.0-1_amd64.buildinfo
Checksums-Sha256:
 e3b28603f1309742d091aa8b15786eda97ebe2b3cb3dd63c29826b8656993724 1732 
pushpin_1.25.0-1.dsc
 3431cce43fa90d870010678fc5d79ba27f458e9f03b0e9fcde5b475469d0339a 212393 
pushpin_1.25.0.orig.tar.bz2
 f5b75a7ceba18abdef278ccee07c5b122f6fa29dc8743527a71baecb29144878 20132 
pushpin_1.25.0-1.debian.tar.xz
 222d76ff0c7fcc7e7306699c86a7a89229f454c2bea665a794b8f0e808c14111 10249 
pushpin_1.25.0-1_amd64.buildinfo
Files:
 9d07271986284f04abb8192d496acf1b 1732 net optional pushpin_1.25.0-1.dsc
 68809f16937a8daf6acc208ec0f9bb6b 212393 net optional 
pushpin_1.25.0.orig.tar.bz2
 0eb8e614ea70bee1d370e1fa0a695374 20132 net optional 
pushpin_1.25.0-1.debian.tar.xz
 f1d06bd64852feea6f9d0ef0cd6fa85c 10249 net optional 
pushpin_1.25.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAl3Vcu0PHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRqlML/jPXPM2LXVdVOkPWJEIQM5d9SuiZdRUHZ8b5
7HQBv8x0jkGwJW7Pg966Cj9vXHQcCRWg5jClKMRCuEo+flPmwRsADid9+ajnvAyT
Hn8zLKvLlj8a25ArAzxtt9Q2XoJwSqm/tApVQnnOj9mZyezItPI/ePojDpDCMhJk
LN47e6pbFf9LPC5oRWajlknZyzzbc/98+0SeG4GWNY35cxGeok2cI22PEPTQgiWL
Kx8Dv+538J2arTNMqSejwA/ZFX0J0zGzjKv5of0NCz5hz8FNfcOKDPiuAykBg228
npyIV+9c9RQsYvNEVyUQLT9vYHAqQSQRchDYKQwr8ozLE86kyB71mh7zW3U+d/cL
kEkpxqV2D2I3EfoIRI2NOhNxZ8uuDzOzI93tHMlrjD+u8kPLYk7bPsVGWLzoY9x8
WKhC0ijNKL0xU6YjedvP+rHfr+SyvlQpGA9fdpzZ55eudddYbmZNsKTd96YEHHSS
RRB+73N13zny4V0By0/mdSWkhBECvQ==
=sGSa
-END PGP SIGNATURE-



Accepted tnetstring3 0.3.1-3 (source) into unstable

2019-11-19 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 19 Nov 2019 21:02:05 +0100
Source: tnetstring3
Architecture: source
Version: 0.3.1-3
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Closes: 944948
Changes:
 tnetstring3 (0.3.1-3) unstable; urgency=medium
 .
   * Build-depend on dh-python (Closes: #944948)
Checksums-Sha1:
 dec0539e7664e015cfe005eb8c14f42cd2c01aff 1785 tnetstring3_0.3.1-3.dsc
 59f96f8f6244ee4e61fae6b91b73c9be3df6b301 4152 tnetstring3_0.3.1-3.debian.tar.xz
 a4b825c513dc56901aea6a33cd54428d7e670e54 6673 
tnetstring3_0.3.1-3_amd64.buildinfo
Checksums-Sha256:
 06bb24f9e8b2ac0206d01c7517dcc9e86b64da686643dec22145c4a8acd3cd78 1785 
tnetstring3_0.3.1-3.dsc
 ccc1c758ce8a626f775d5c3778169899507c3110e6ce9470518dcba16d2036c1 4152 
tnetstring3_0.3.1-3.debian.tar.xz
 7600693657ffea3f16674154f417ce963a0512d08cb351b7dfafedc9fe1f6e5b 6673 
tnetstring3_0.3.1-3_amd64.buildinfo
Files:
 49aef963cde11d73bd8f15c595f92933 1785 python optional tnetstring3_0.3.1-3.dsc
 47b9d71f3195aa285ebd23ebaa17a457 4152 python optional 
tnetstring3_0.3.1-3.debian.tar.xz
 205166ee8492ab394140f77d9d493846 6673 python optional 
tnetstring3_0.3.1-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAl3UXVAPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRYH8L/35FYIOnkgWOTsoa9TiB9h2IejQFLtnwrH0g
gE9RzlZTk/2GJQXvFeNH+fsUHbsCQhNOPTsCpRqgzmBa2D96qZTjhZgvV/DakPkL
qYfbY3+3XSekY+HEDr2aYjScuQ4QLJ18pAcLH7OdQvTF87WTgz1xW0cJ4BiN/MQ1
LFb++3LGfUOUtwdtwssDK/HXroKtluxHfaqThTnZrqy0tY/BC5Y790FAZP4RDdf3
2PMzrHp1ZYfhEHsMQJOVNPFHEHohmOYBR7vy5sjtzHSBVeYVw/uX2apB/xOna5QQ
hFRTIZwZn+9ddJ5wHPoYV9xwMuNlq/Wb8amlCfLSKwa6gpNbdGDO9TDxXmqkHLA7
rn+Jr//V9iHvebLCCtyRbbCwX9fad7JBV1bdJblNaTl9rJaJOnYtWC4oz8qQ0JY8
86nl2MtjoJWtpDP4Vatohf8KKvK6ALmUYgaBvq2qHAWQGpAKkpHf4IWga6Jk+Yhu
UgxFf1jb1a7bL2j8QpwTB9pTlpMDfA==
=BIRF
-END PGP SIGNATURE-



Nie masz pomysłu na nowy post? Poprowadzimy Twój FanPage.

2019-11-07 Thread Jan Żak . Twój Skuteczny FanPage .

Dzień dobry,

*kreowanie wizerunku* oraz *pozyskiwanie klientów*
  na *Facebooku* to nasza specjalność.

Dobra reklama jest dźwignią handlu - zwłaszcza we
  współczesnym świecie.

Wystarczy przesłać odpowiedź o treści *"TAK"* - a na
  pewno się z Państwem skontaktujemy.

...
Z wyrazami szacunku,
Twój Zleceniobiorca


Accepted aiscm 0.19.2-1 (source) into unstable

2019-10-26 Thread Jan Wedekind
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat,  5 Oct 2019 19:53:01 +0100
Source: aiscm
Architecture: source
Version: 0.19.2-1
Distribution: unstable
Urgency: low
Maintainer: Jan Wedekind 
Changed-By: Jan Wedekind 
Closes: 941779
Changes:
 aiscm (0.19.2-1) unstable; urgency=low
 .
   - Do not generate mirror.jpg. Closes: #941779
Checksums-Sha1:
 3e446421c5e5b1049100f4bb8ce1f108f00467c2 2311 aiscm_0.19.2-1.dsc
 81acc2eee4eb4046539926044997ceef38234acf 3594904 aiscm_0.19.2.orig.tar.xz
 7dd75c8b776fa5f71b299c76a0705e949cce1b75 833 aiscm_0.19.2.orig.tar.xz.asc
 baf2419c4bdef1eb5c402ff7226e02448d03e88c 5796 aiscm_0.19.2-1.debian.tar.xz
 9aada7436480cd6a0fc85db18cff3d66fef690c4 15691 aiscm_0.19.2-1_amd64.buildinfo
Checksums-Sha256:
 35f8490691f08fc170f6d44fdda55981053e964499f090fb0c99492751b98b3b 2311 
aiscm_0.19.2-1.dsc
 c193c9f52fbff7cec3350d0929cf85c36d3b3de0bca9edf0ffc8ed33e908dde4 3594904 
aiscm_0.19.2.orig.tar.xz
 be4136fd17a06aa53f1b7739708ebe96cd4c469d7991df863a7d3c8e7872a7c0 833 
aiscm_0.19.2.orig.tar.xz.asc
 b51f424cec4a1c0768b6458fdb38eb717fa5e69121e5db33049eff4933622f5e 5796 
aiscm_0.19.2-1.debian.tar.xz
 2ee830c74bad9a406e54488e449d2874108aad413098acfeadd11709fbe4352a 15691 
aiscm_0.19.2-1_amd64.buildinfo
Files:
 2418d4329549601a5ddbfa3e949f0849 2311 lisp optional aiscm_0.19.2-1.dsc
 d598d5795279d798fa84fbe5706b54bd 3594904 lisp optional aiscm_0.19.2.orig.tar.xz
 98c74282e166d040130cd648bb7f5da7 833 lisp optional aiscm_0.19.2.orig.tar.xz.asc
 29ab330e334e7992ba16e60d2fbdb9a6 5796 lisp optional 
aiscm_0.19.2-1.debian.tar.xz
 b3d4853142ffd4a2b29a747f01edff34 15691 lisp optional 
aiscm_0.19.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEolIP6gqGcKZh3YxVM2L3AxpJkuEFAl20mQIACgkQM2L3AxpJ
kuH4wQ//SrIoYJkiRD7s2kDgRIQwuAHhRkYvpH6eCzv86Qiem5iVR/ME6381dzxn
+GcZXMSmR/fQf2VMSv1Kf19Nul9/TkkEekMBRw9knh2kk0MNui3w/z6LbHCZU+Eh
fD20KIxRfDsozd1AwoiOJqQrOyPMg3/bIt8vK77LnvsYfyi6mEpqrMi1kXJ9ZiIA
PwrQTnqrqlZydoz3A+o1R2O0D/IDek12XULdIGdQPVPWZUFvSa+btSVtxN1GKDqK
POeqlpJghD85My/5RITM949esW/52WJq3x08naBMqeEU5fAhuYCeN76qR64P2eck
/kl9DTgkqXHBu1hK3327WZlYyXcdW9G1hLhLDWf0TGUg83NOtAF/IZ1liD4Ie+sY
MQ2e+clqeBbZFN4bJcQDxIorNXP98YCsp6Ub0zk80+Fx8w33iGYNlAhC4S/qYe9O
EaxObyixNNkJrr2NJ8L/WQqT5OlSQBS9a/O2nojV7YvOumALFffJcXXFwdAjUnXT
bGNffSaIX07vubdONxbVbpNFsx17m3ZGpd7YWQbDKUnTMqW0ZyVeyOlgK5Q96dgt
qo61WfOXG0+ODc8hUkzGkGUSr5E1sC8jMbtK1Q6hVusgqJPafjC6iJodScOSzk1N
QhCWsEXw9lMJUA+W9wLQX800N0hph5L/Sq9dvsvp5IZap2ADzuw=
=bewF
-END PGP SIGNATURE-



Re: Bug#942768: lcl-units-2.0: file conflict with lazarus-src-2.0 (versin 2.0.2+dfsg-5)

2019-10-23 Thread Jan Volec
Awesome, can confirm the 2.0.2+dfsg-6 version works for me again!


Best wishes,

Jan

> Hi Jan, Hi Andreas,
> > both contains the same file, namely 
> >   /usr/lib/lazarus/2.0.2/components/IdeInspector/ideinspector.lpk
> > and removing it from one of them would fix the issue.
> That is not a bug, but rather a feature that is solving previous bugs [1] and
> [2]
> The issue is that I copied some code from the Debian policy manual [3] and 
> that
> code was wrong:
> The given example is missing closing bracket. I should noticed it before, but
> for some obscure reason it is passing on my computer:if [ upgrade != "$1 || 
> dpkg
> --compare-versions "$2" lt 1.0-2; then
> I've checked it again and I've fixed it. Will upload soon.
> 
> [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=823706
> [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=898310
> [3] https://www.debian.org/doc/debian-policy/ap-pkg-diversions.html-- 
> Cheers,
> Abou Al Montacir




Accepted cracklib2 2.9.6-3 (source) into unstable

2019-10-23 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 23 Oct 2019 13:02:23 +0200
Source: cracklib2
Architecture: source
Version: 2.9.6-3
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Closes: 936339 942667 942891
Changes:
 cracklib2 (2.9.6-3) unstable; urgency=medium
 .
   * Fix "fails to build Python 3.8 extensions" by removing the
 _PYTHON_HOST_PLATFORM and _PYTHON_SYSCONFIGDATA_NAME definitions in
 debian/rules (thanks to Michael Hudson-Doyle for the patch (Closes:
 #942891)
   * Fix "cracklib2 ignores build failures" by adding set -e before iterating
 over python versions in debian/rules (Closes: #942667)
   * Bump Standards-Version to 4.4.1 (no changes)
   * Add Build-Depends-Package: libcrack2-dev to debian/libcrack2.symbols
   * Incorporate changes by Sandro Tosi to drop python2 support; (Closes:
 #936339)
Checksums-Sha1:
 5544bc96541221d9afc6fa6d4d68428be2143ac3 2099 cracklib2_2.9.6-3.dsc
 0a0236e4143f719a8679fe629bbafc17cea7b904 26816 cracklib2_2.9.6-3.debian.tar.xz
 0602d0fde15dd8ce9219df0b03c3c68c1211ecc9 10521 
cracklib2_2.9.6-3_amd64.buildinfo
Checksums-Sha256:
 6bdb013d3b05c37ee62409a4755a1e2b50583eaca8fe2699ea0e9a7bc214ed8b 2099 
cracklib2_2.9.6-3.dsc
 a31c29a0c9fc79641c960350235ede920702051b99eaddc600fef0058e648f54 26816 
cracklib2_2.9.6-3.debian.tar.xz
 a80448259bd870fae0ce2161ded502f968b1b1ebdf7e719c941a8b3dcb7bd900 10521 
cracklib2_2.9.6-3_amd64.buildinfo
Files:
 56965d31ff5bb41a38b75e004f76b7e8 2099 libs optional cracklib2_2.9.6-3.dsc
 6b37d1d35ee914ddd0ddf7e138009ee1 26816 libs optional 
cracklib2_2.9.6-3.debian.tar.xz
 e4f9040bcf4c8ce0c688575fc39c8679 10521 libs optional 
cracklib2_2.9.6-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAl2wM9ARHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdmjtggAyzgHMsuUay4kxr3LnIOlE4WKkFEg983m
rJ5mw9D9pYC4eoVkaA4zBFToq5mPltmd/wUQ45B2el8OrD4ERiiTW7A35Pcgq+Fi
PrLJzWqWhVyOZLYQ9NkUF8PbunRIOtC3HBN+OKAVEfcndJDV/wkUSP3+lnRMOKak
XVip0WQnbLk4ULNBAvoPRPmpQExZNO7hIOomM8j5RqCN/jCZDUGp1U8D/0vzz0Ur
R1eYtub34itHvRqtyAgwWPW6NdlncqV6RNSlLV9EItjHjV2BKPSDuzEZZLOOcp61
4ZCC9ZixG4c9w31JP5tJMJLdeFxlfDo1mfYKS1a+5TO5FYTHmR7DIQ==
=pz8x
-END PGP SIGNATURE-



Accepted nagios-plugins-contrib 25.20191015+1 (source) into unstable

2019-10-15 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Oct 2019 13:22:33 +0200
Source: nagios-plugins-contrib
Architecture: source
Version: 25.20191015+1
Distribution: unstable
Urgency: medium
Maintainer: Debian Nagios Maintainer Group 

Changed-By: Jan Wagner 
Changes:
 nagios-plugins-contrib (25.20191015+1) unstable; urgency=medium
 .
   * [f16daf5] d/gbp.conf: Use new config file section syntax
Checksums-Sha1:
 71ff43ab2b7e404b3e68c52d12be3243f3006a2e 2312 
nagios-plugins-contrib_25.20191015+1.dsc
 3d85451055da900519172afcd237592f40ffb230 716160 
nagios-plugins-contrib_25.20191015+1.tar.xz
 5717341d6b9e7818c10a36a05cbd651a30f3db0a 8046 
nagios-plugins-contrib_25.20191015+1_i386.buildinfo
Checksums-Sha256:
 4f9d0ab12bdf4fbdb5bffc29d6151af9c7c0741cc9e8eabefb58fb94ab0e043b 2312 
nagios-plugins-contrib_25.20191015+1.dsc
 2045dadc49d1852203882fa94d300b452d2869b710349232049809d85d2f7c3f 716160 
nagios-plugins-contrib_25.20191015+1.tar.xz
 5ba33ea9f08acac2c1ea013bd0ece1ea70f96fb27044d630e97ed7310804cec2 8046 
nagios-plugins-contrib_25.20191015+1_i386.buildinfo
Files:
 2c97468ac22b318a65be89afad15507c 2312 net optional 
nagios-plugins-contrib_25.20191015+1.dsc
 7f396e2a2b54b24e78cfebc4b3100f71 716160 net optional 
nagios-plugins-contrib_25.20191015+1.tar.xz
 7b770eef0dee28041701a7e70f5fa13d 8046 net optional 
nagios-plugins-contrib_25.20191015+1_i386.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXOdRCo+8DU5yq7qbDHBVe1oGUT4FAl2lsH4ACgkQDHBVe1oG
UT41sxAAqh54siuznnFOEVndT5lvNaOY95zCZPuwF2yVpUvu5RCBu6BnxRkHv09Z
t9ttrwrraxvflbI/SKCyIl0Kl0GYFeoL05+itEvmV1wRATqCplg8r0j0AVrt6ldZ
mudLvknKSeZSDz+p/xKYQvQJnUQVS6LNr2pIXbhx8idF6nUaLqXBeqntCejTYrqa
0VVCPSiUHwYU6IUqiP/Vw0CQyCMTuhfaX+/quarbO09Frfw6ATmqpNyeU6xlUAUG
XEKhEcvIF1/E8z5Q0zff8yVuaJbyUamwt88+Le1EpHNRqpMwDuyvlXE+avwfDwYJ
cVqel5v6kEfWoLpLb3lfsN8suzw6ypBQcD7XYhbJT20X458WlSHW9TjGB3sOFxuT
JQ011G7QwtoRfNzlrDTLzMJYgmjc/MlXvgNVgczRCX/ZsiP8Ws+cDz6wlcc8vLjd
4Stj8bx0F3drKpQ8Q/j/jFsR/QzB4otXUUPXKx6xrCRem/ZIvcJ9p/3LJpFjwi4c
atTXpzBZ1ezfCvLRau//WjB1zPhYP/wlb9v/ITM7/Gy4a8KLgt8Z4DjnmuK4elh5
iagLU0l2v6u4nGppeROt4uEtRbJy4HV7L3fhxNKkMw2iSjdfjKgLynDYxu9LGMJv
4z+tCW3HaR6JDeR5D6aqaoteop/5Hl7iRuQQxZfpkAbo2P+qqjo=
=vYd+
-END PGP SIGNATURE-



Accepted nagios-plugins-contrib 25.20191015 (source i386) into unstable

2019-10-15 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Oct 2019 09:24:51 +0200
Source: nagios-plugins-contrib
Binary: nagios-plugins-contrib nagios-plugins-contrib-dbgsym
Architecture: source i386
Version: 25.20191015
Distribution: unstable
Urgency: medium
Maintainer: Debian Nagios Maintainer Group 

Changed-By: Jan Wagner 
Description:
 nagios-plugins-contrib - Plugins for nagios compatible monitoring systems
Closes: 884328 888495 923808 929869
Changes:
 nagios-plugins-contrib (25.20191015) unstable; urgency=medium
 .
   * [17f84ce] check_rbl: Update to 1.5.0 (Closes: 929869)
   * [20d535f] check_ssl_cert: Update to 1.85.0
   * [660cd8d] d/p/check_rbl/additional_rbls: Remove blackholes.intersil.net
   * [43eac14] check_memcached: pkg-config is needed at buildtime
   * [ff0d7e1] Remove check_varnish
   * [104a97a] Update tests
   * [6eea9df] Update copyright
   * [ecc9a02] Update control
   * [3c4fe8c] check_printer: Fixing command definition (Closes: 923808)
   * [674775d] check_ssl_cert: Update to 1.96.0
   * [c0cec30] d/control.in: Bump Standards-Version to 4.4.1.0, no changes 
needed
   * [ad53eec] Update control
   * [54902b8] check_ssl_cert: Update to 1.97.0
   * [034e05c] dsa/checks/dsa-check-packages: Typo fix
   * [90938b9] dsa/checks/dsa-check-soas: Fix error when not 1 record is 
returned
   * [f8b56c7] dsa/checks/dsa-check-statusfile: Port to python3
   * [c93caae] check-running-kernel: Fixing sorting issues (Closes: #884328)
   * [d23f279] check_ssl_cert: Update to 1.98.0
   * [06f8526] Adding d/p/check_haproxy_stats/socket (Closes: #888495)
   * [c8e4991] check_ssl_cert: Update control file to version 1.98.0
   * [1e3e13e] d/control: Update
Checksums-Sha1:
 cf622691d63a5a3242934c09dafd31a4e1085da5 2304 
nagios-plugins-contrib_25.20191015.dsc
 e1220b8b323be420ef6c365aaed567134f7d9ffd 716196 
nagios-plugins-contrib_25.20191015.tar.xz
 3c1eba0c267a2a58063c285afd88627304a71eab 24084 
nagios-plugins-contrib-dbgsym_25.20191015_i386.deb
 a56a51e5ae11099968775aef1c5e3d7b9ef3a756 8026 
nagios-plugins-contrib_25.20191015_i386.buildinfo
 85a3155903467cec6646ca578fd21f6bc87a9ad3 461244 
nagios-plugins-contrib_25.20191015_i386.deb
Checksums-Sha256:
 0eb97589c2729bc7808c5067327a3239db8405fdf23531ef2fc4639f222427af 2304 
nagios-plugins-contrib_25.20191015.dsc
 1c9861c0b5a51045eff190ce8d78ea51eb91d4b2c611f96df461b8133b69fe11 716196 
nagios-plugins-contrib_25.20191015.tar.xz
 6ab99d895de402bea8f0f815fd40b0ebd5b9dad7cffb840a7abd349cf2a1e40c 24084 
nagios-plugins-contrib-dbgsym_25.20191015_i386.deb
 8e489eb1de72514f6da9bb3c9aaf6749c76160bcc4fe5d035c3813365657f643 8026 
nagios-plugins-contrib_25.20191015_i386.buildinfo
 6230cf31360a5925b164a5deb9e85dbf6f2a4d9bb43aa7550ed5ebf3966fe1fe 461244 
nagios-plugins-contrib_25.20191015_i386.deb
Files:
 541b1df39f4bd218167a0b300ef62775 2304 net optional 
nagios-plugins-contrib_25.20191015.dsc
 1328a08e8840263d1dfb7ec360e7fbb1 716196 net optional 
nagios-plugins-contrib_25.20191015.tar.xz
 7bfbb6816d8b5d54cdc020c3d46ceb94 24084 debug optional 
nagios-plugins-contrib-dbgsym_25.20191015_i386.deb
 24b3accdcb4834adea338e4103436846 8026 net optional 
nagios-plugins-contrib_25.20191015_i386.buildinfo
 14546ae6b9f696b5821785b2a2e43dcd 461244 net optional 
nagios-plugins-contrib_25.20191015_i386.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXOdRCo+8DU5yq7qbDHBVe1oGUT4FAl2ld3UACgkQDHBVe1oG
UT5IUA//eC1NKXn271uMWP8cNCFCUVZbyHdccLiGQXqgmTHfsqhxTYFC7q8Krm3w
vI1pggUoqBBHNdhloqJl5BJKIwEHMPYMuXfVaHo7m1QYe+bNtOuYiVu/da51orbj
YGSvLIQ+TyC2rDe3CjVCkVABAuEB18FxsSqjXJxJog271aqro6ktjdvjlxXbVACM
HzdaQkdf4CSj8aeDpRfDsqz/LmFUe0BBO1flKYmYC/DsVXtQwN+/M21Dw+qzRIxl
duBq5ZInagmOoKwhaGjOaFNO61mM98lKqIyZRDYrBzAQtz44r/ZsRlAn61Inlh7a
/mthiuzbfF7fReeZ7vCcsQKtbBeeaCbzuEmBX+Ku1mLpRluGBiZ0ogAHAfK4XRdn
DXPAw2snA4W33HLKQR+5i9T/39ahVLxAEm8dBcKS+gMskql4S1ZWKg28dju32Vs6
k0gjWdmbIF9MQvSZfiZOM3z2zsNTXPmi9q87oV0fSC9CjQYyqL7RAts1FuNg8BVg
9a7RB1VwdtXH1d2WgEBnizP1zE4PSRoFS8nSPU12tS3nQU7k33HWzsxz09ppCzU6
BVCVV7SSl1qJb0lKrwb6S6FgSF5xTDXyTz6SMfcyNH/QgGpuMl7f15JHL40YIEhv
vS91hDQX8xt2EI770Ea5P0Ov5yI5BkTHvnGo8mL3fm/mYhvBS8U=
=fV12
-END PGP SIGNATURE-



Accepted nitrokey-app 1.4.0-1~exp1 (source) into experimental

2019-09-29 Thread Jan Luca Naumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 28 Sep 2019 18:25:48 +0200
Source: nitrokey-app
Architecture: source
Version: 1.4.0-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Jan Luca Naumann 
Changed-By: Jan Luca Naumann 
Changes:
 nitrokey-app (1.4.0-1~exp1) experimental; urgency=medium
 .
   * New upstream release.
   * debian/control:
 - Update to Debian policy 4.4.0, no changes needed.
   * debian/compat: Update to compat version 12.
Checksums-Sha1:
 a0ffd2ce25afc414a19d2dbf385634b621a60907 2121 nitrokey-app_1.4.0-1~exp1.dsc
 92168a21abe48162632d06ec5570e6ab1059be6c 1318293 nitrokey-app_1.4.0.orig.tar.gz
 56b44574806c136472f13c7504550116f2f8b025 5588 
nitrokey-app_1.4.0-1~exp1.debian.tar.xz
 55f4ebe31675546a48bc7a2030d39cc36eb9998d 15737 
nitrokey-app_1.4.0-1~exp1_amd64.buildinfo
Checksums-Sha256:
 009a2066f525088647d43b79877efeffefe0c7b8875ccafac8ee71eeb5496dc0 2121 
nitrokey-app_1.4.0-1~exp1.dsc
 dff0730bfc27b1a630db38dc8eb05cbb337a43187738f71b51832475ed641122 1318293 
nitrokey-app_1.4.0.orig.tar.gz
 87ea2e0eba2921a23f074f7287b3af51ddf250a1687c99a804d231edcdfaf969 5588 
nitrokey-app_1.4.0-1~exp1.debian.tar.xz
 240ef69957d677df25fbc4274f98e897f39364c59d1db5eecc71e1077991535a 15737 
nitrokey-app_1.4.0-1~exp1_amd64.buildinfo
Files:
 3e88b3e3d68bbb2226eec83c0227a90e 2121 utils optional 
nitrokey-app_1.4.0-1~exp1.dsc
 d98c0175c39898a35440df94841cc19a 1318293 utils optional 
nitrokey-app_1.4.0.orig.tar.gz
 b3042fa354db66fcd2dac28ca33b65d9 5588 utils optional 
nitrokey-app_1.4.0-1~exp1.debian.tar.xz
 16d7101edfbcca3270c55ac97b5a5a6b 15737 utils optional 
nitrokey-app_1.4.0-1~exp1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEwNbeTg2NJIWRcwSlfhHX8Rn5cbsFAl2RBOkACgkQfhHX8Rn5
cbu9Aw//eUBoW3SBd1IEVAThuLZJx9c9Dqrh+MihUKHk+3SQO4IbtyqZsuRE6aNV
83/PeSj8QwWONu1px2e70Yaq0jab3VGXPuQrtMJhJpC8fVpY2KMyJ6HmWzgrTX69
z69kWLJRX+s0NPqX/rJD+Pc/mxt0pP2gw4KNlh8QatWwAUkdJtJAJksau8snlXhj
NnuMSzj8hAo/9IqTa+ipGL8YbQ1zP/wOlL1NPy69ltsqOBPMZIENSSIRiUkLSILX
l7OcwamC4Nkm0BzpTBf0BCbybVeeCZC8LaUI4lxfjso0UHM7G9TJHzcseYndTHaC
GKOvCrbKpIXUXnZorbzCO5KnWluDAkCr8Dk8g70Jf9vcGdGFQ0uL0J+PMG7gypg9
xmvICgaYdhvEnNjZ1PiplI3Ek+IxkIZMfHMbwYWPEkywg685ENw/w/nwRnSFqC+b
8rIonb7m6X8P9/uCkkSh5Yt0cWu9EYfLQ1jJkIriden0gRsBsR642TzcD5W+/AmU
bHMKFKsL7xGn1B8+ESnuAlkqQl2ANXEaiPgTGb/B24CxKO/GcIEcrjzpm3Fayf5i
144sXytfsINwj5xWWtkl5j5mEjk3yLKdJD/KTsbMxZ0vQD6y5C53uT7P/S8Rdu1Q
JUSR4nTkWzlAPnC0D1tbcfL5G34efxnkYOX05WDhZHQihYRh4Xo=
=aZNM
-END PGP SIGNATURE-



Accepted aufs 5.2+20190909-1 (source all) into unstable

2019-09-28 Thread Jan Luca Naumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 28 Sep 2019 18:17:20 +0200
Source: aufs
Binary: aufs-dev aufs-dkms
Architecture: source all
Version: 5.2+20190909-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Luca Naumann 
Changed-By: Jan Luca Naumann 
Description:
 aufs-dev   - Development files for aufs
 aufs-dkms  - DKMS files to build and install aufs
Changes:
 aufs (5.2+20190909-1) unstable; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 4091c512d7e1cb623639c12795912aa49c791298 1935 aufs_5.2+20190909-1.dsc
 9c56c67632bc8be0a331b59efcbfd9705027e191 246707 aufs_5.2+20190909.orig.tar.gz
 0c65d1aedfd1049b65c2dffbd1e440ae4813b5f0 4464 aufs_5.2+20190909-1.debian.tar.xz
 c3aadadb57f3f9b01b84f00bd342e7e1eb9a0da2 6744 aufs-dev_5.2+20190909-1_all.deb
 8d1a7f7dc906f0c8672e3b6aec3e31d2dff701e7 183828 
aufs-dkms_5.2+20190909-1_all.deb
 eeb0c57676db8142e60dcdb539be7d62debcec60 6064 
aufs_5.2+20190909-1_amd64.buildinfo
Checksums-Sha256:
 7c37855cc79c50e1494f206aca2c67480f30c8afad75406b26cca7ff48d1b1d6 1935 
aufs_5.2+20190909-1.dsc
 a6c941d098603dbe2d765b60aef9f6c0ab7cf13378d42d4c1eacd4713c089307 246707 
aufs_5.2+20190909.orig.tar.gz
 2d4b637e3d833e974662d4041e3828a4e16d4e919061fb0d5196cab95280852e 4464 
aufs_5.2+20190909-1.debian.tar.xz
 fe1203ea635113778aba955e71064ab7ba0891645917126d2864f40d145e51af 6744 
aufs-dev_5.2+20190909-1_all.deb
 7cb9f7aa7813e68eec61cb3454241bbc2e4badf36a832cd1fac5812ad7fb30e6 183828 
aufs-dkms_5.2+20190909-1_all.deb
 03070907dc67a2bb064a9403bbac46b53381f595018aa9c50be9e895acf2ca66 6064 
aufs_5.2+20190909-1_amd64.buildinfo
Files:
 7a4856b944737f6b35f8574882a99a5c 1935 kernel optional aufs_5.2+20190909-1.dsc
 1d035434d460108e0706002a27021f16 246707 kernel optional 
aufs_5.2+20190909.orig.tar.gz
 0233ca51bf1f4ab9118d4c7e0e486e16 4464 kernel optional 
aufs_5.2+20190909-1.debian.tar.xz
 339c25a2765ad71518a23500ff77b8bd 6744 kernel optional 
aufs-dev_5.2+20190909-1_all.deb
 2c429c55398bc42ea7c25a7581aea379 183828 kernel optional 
aufs-dkms_5.2+20190909-1_all.deb
 a722d6a69897ad96b7ceceaa21983ecc 6064 kernel optional 
aufs_5.2+20190909-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEwNbeTg2NJIWRcwSlfhHX8Rn5cbsFAl2PixcACgkQfhHX8Rn5
cbuMHBAAhd00YFlvXYlcmccdUPiX5vtfjme94FwXBvSfjwZWKeNEMkR49KWxYE6Y
tjOSeV+iVnoHtd2bNxGEQab2SkE8TNeTNqVVqLJWcGzVkferh9C+CP4AnIW9PK0i
qUNT2xa+htm/+zIWrM4HthrX6Jvz/b1kw4ZQrAsKayAYE1U5gcZ7uw2C7dsC5CYL
qHSoa2yjxH8hggP+d6NfYmKVPO8sQBcqw+BYirxaz/K2O1RkypzBQ7BqKFhTVYgO
Vic+HUgO+PXixxOiN+PXRgyBGDwFJGVJXtetHULUfEqo78LB2zkaU5Kuw7NBuF5n
7A5JVv5Ad/17/CT8+dkQwJhaNv/xLMBHj543uWPmszvvV5WCQHvoy6YE/vWLv1/M
lAtdRmiINDAhazNtJ82VARmz9QanNGfyy0ssWs64r9bi4CaysKut0tQoCKgQ/4be
wycHY/rMT9ayB/YpkYXIXPe3ugEE1550AC38WPBruqSpPdZbVuuxRMgPkxKB9eV1
yP/fMjLSyDCPaHirPP9ImGHuNecr17b/gjaYyutX3fMnkd8XBwfZL3jdSVEJ86oA
U4eUFPG6MCJ/C3VW88FqH8y3OgsdVvM01brConY4laqWf7edFDtmNYIKIvHUZLCV
OHuqUKUgeNiW4v7HGtLS8zdmcRM1FL3qYoa1EBBYskdLvtMeTBE=
=kucL
-END PGP SIGNATURE-



Pokaż swój FanPage klientom. Sprawdź jak.

2019-09-17 Thread Jan Żak . Twój Skuteczny FanPage .

Dzień dobry,



skuteczne administrowanie* FanPage na Facebook’u* to nasza specjalność.



W związku z tym, pragniemy zaproponować Państwu przesłanie więcej informacji w 
tym zakresie aby  zwiększyć zysk Państwa firmy oraz ilość fanów.



Przesłanie odpowiedzi o treści* Tak*, umożliwi nam kontakt z Państwem.



Ponieważ sami prowadzimy biznes, jesteśmy świadomi, że podstawą każdej firmy są 
klienci.



Zadbamy o przypływ nowych klientów dla Państwa firmy.

_ _ _ _
Serdecznie Pozdrawiamy,
Skuteczny FanPage


Accepted aufs 5.2+20190902-1 (source) into unstable

2019-09-05 Thread Jan Luca Naumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 05 Sep 2019 14:12:11 +0200
Source: aufs
Architecture: source
Version: 5.2+20190902-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Luca Naumann 
Changed-By: Jan Luca Naumann 
Closes: 935403 938961
Changes:
 aufs (5.2+20190902-1) unstable; urgency=medium
 .
   * New upstream release. (Closes: #935403, #938961)
   * debian/compat:
 - Update to debhelper compat level 12.
   * debian/control:
 - Update to Debian policy 4.4.0, no changes needed.
Checksums-Sha1:
 b05d57b0a18a97e34cec25204d6b617e696b4ffe 1935 aufs_5.2+20190902-1.dsc
 863a97e3ff3f3173234607e38c6b98290e8bbcf8 246685 aufs_5.2+20190902.orig.tar.gz
 9dc9d0662a8f9ffa4fe2101dacda50e83c4bf2c3 4432 aufs_5.2+20190902-1.debian.tar.xz
 42048305a5cb3743ab78c3c0f0885d63571ad1dc 6015 
aufs_5.2+20190902-1_amd64.buildinfo
Checksums-Sha256:
 59143f66b7edb35e88748668145b4f62389553ff457e4ad8db9ffb9e3df435ca 1935 
aufs_5.2+20190902-1.dsc
 cc2d25a54e3a87c4561516adc3c273cce25005a142254e8406f8b8429672b3f0 246685 
aufs_5.2+20190902.orig.tar.gz
 d6d0c5387af70501bfeeb9b831ac1a6d55f936bbb170a96c9c9d24108af36f5e 4432 
aufs_5.2+20190902-1.debian.tar.xz
 2848636b198d6deaf29f8146ee6b17cc165b5f851a0316607abf3646bcce23c4 6015 
aufs_5.2+20190902-1_amd64.buildinfo
Files:
 dabd8908b6416a92ea5590adf84f452b 1935 kernel optional aufs_5.2+20190902-1.dsc
 5911cf65636e0a5fae931331afae8db9 246685 kernel optional 
aufs_5.2+20190902.orig.tar.gz
 02faaf0862a8510d6f243e1b345d43de 4432 kernel optional 
aufs_5.2+20190902-1.debian.tar.xz
 318c7e186c77025311dad59a178c9cd1 6015 kernel optional 
aufs_5.2+20190902-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEwNbeTg2NJIWRcwSlfhHX8Rn5cbsFAl1xBPYACgkQfhHX8Rn5
cbu6/xAAxLP5eP3k0sEuTqn4eqsfnBIBEDZCZ0rQg/1ZIPaDmMhQALD6q5D4awe8
+aKLBx59yYSVYgIr7zdbDWQH0jBdrPl0U409oteV98Lo9gXGh4beRsSCg6754GTt
zO+dSPM9/dmJiaXuuo5HWc6tue9rWKsia3R0DmWBRMkxP1y5sJ9BRqufRFB4r6yQ
3ruxP7jKNdzVE5mFBziQDO/xOfAPkElLf/pjn/nSkKou5CiM1yqnJU9G6kAXT28o
i5aBfl/alATCh65b8Qbautes3BMcPT5wyHL7mMu1thZwtiwp8OKAJCcGcP9T4oyN
vZDimidV11lAaORg8wFRLE4SIAQg+lMZJ/PmfiCoWrwc0j7xpAgecm/aAkezJKR7
zvAajb6p9sSUmnL3UAup/3xmb7JtAQpRNea79F+n6fRz2+zQV2Ia+iHbSc7xF6J1
nsDhxXhYisJOBc/QKOOB40XFUNThUF6Ve+6xhSPYcjU4KUBofhijCh3hU3tDLdY/
a6OFtxa4UTqnN6ypNzTVeCui5tiOgmdBSLVoPC7a8acdauEPtTI9iPdUwL9QL+zh
DiIroLIQ9ijI9Dkp1zokp/zP5iJRBFoSQV8B7G6EVfOLUmmWw8BoM68igeDK6OiF
lb8cXH2/2LGSg5e/kwRv+SX/rKXgCu82VWOkcXqpFn+MpuLYzTo=
=/1oa
-END PGP SIGNATURE-



Accepted virtualenvwrapper 4.8.4-4 (source) into unstable

2019-09-03 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 03 Sep 2019 18:09:47 +0200
Source: virtualenvwrapper
Architecture: source
Version: 4.8.4-4
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Closes: 615267 857374 932923 939299
Changes:
 virtualenvwrapper (4.8.4-4) unstable; urgency=medium
 .
   * Fix "virtualenvwrapper incorrectly dropped virtualenv dependency"
 by adding it back to the virtualenvwrapper binary package (Closes:
 #939299)
   * Fix "no man pages" by applying the patch by Diane Trout and updating the
 patch content for the current package version (Closes: #615267)
   * command 'allvirtualenvs' is provided by upstream release 4.8.4 (Closes:
 #932923)
   * Fix "bash completion lacks testing for availability" by adding
 availability tests for the virtualenvwrapper scripts (Closes: #857374)
Checksums-Sha1:
 6886b772b6022762689346df0d7358fad272d36e 1944 virtualenvwrapper_4.8.4-4.dsc
 d02e97aa917c64ab67722816d98b438ea8951538 8876 
virtualenvwrapper_4.8.4-4.debian.tar.xz
 2919498ce7e2fb15a1a268b1798180fe10fe0d91 7376 
virtualenvwrapper_4.8.4-4_amd64.buildinfo
Checksums-Sha256:
 1c367ec46596f115fb99de9a0d2cedea2f7065475dec5fe8e07ff5cb3d7b8232 1944 
virtualenvwrapper_4.8.4-4.dsc
 8418a250181abebf8e3c4b0048b1028980dc01e2dd96d6f459a5cfbf26bef6bf 8876 
virtualenvwrapper_4.8.4-4.debian.tar.xz
 e5695fb4d1e8ec966b977351a1bd099653a740d8fd8e518517ba3bd8d220f3b9 7376 
virtualenvwrapper_4.8.4-4_amd64.buildinfo
Files:
 25a9225b5372cb19427ae5b59fec6f7a 1944 python optional 
virtualenvwrapper_4.8.4-4.dsc
 177152426a92ffc45f53447c83a60e4a 8876 python optional 
virtualenvwrapper_4.8.4-4.debian.tar.xz
 7e66955425f1ec7e38c286e682a0e3c4 7376 python optional 
virtualenvwrapper_4.8.4-4_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAl1ukx4RHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdkKKQgA1/rQDX+kL+dZqp77sBP5Z5NadrKwmSO2
zVeDBd9dWLTYPCGBdyu+oYYNdKpLlzWibqsXtf9hlA0RYL3SCTe8Ol5+bWHz9WcJ
clAYrQpuMcZUO9xItp33U6dMY5RB/X73r92M7tt4DC5RaUFGvHwxzru6o4X9MTis
QlDzl3Y6hBckZqK6r1BqcqAD7cP72Y1eR960Fsra7QUi1zDjI9amnCtonbAXITuw
daIEmm0XS1ht0rwxn6gMmHw6fALNyhXM9oMCDP0cGc7XtkZu60v/shwerQa1Oris
+CUDHlO+rRCO5ZcXNcSt13fdyxV6YGHstwUGkv4zTMUdCc441zDF8A==
=rpJY
-END PGP SIGNATURE-



Accepted virtualenvwrapper 4.8.4-3 (source) into unstable

2019-08-31 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 31 Aug 2019 14:17:10 +0200
Source: virtualenvwrapper
Architecture: source
Version: 4.8.4-3
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Closes: 729306 760080 805877 933822 936069 938786
Changes:
 virtualenvwrapper (4.8.4-3) unstable; urgency=medium
 .
   * Re-upload to unstable
 .
 virtualenvwrapper (4.8.4-2) experimental; urgency=medium
 .
   * add Breaks/Replaces virtualenvwrapper (<< 4.8) to virtualenvwrapper-doc
 and python3-virtualenvwrapper (Closes: #936069)
   * upload to unstable without Python2 support (Closes: #938786)
 .
 virtualenvwrapper (4.8.4-1) experimental; urgency=medium
 .
   [ Joel Cross ]
   * Add Python 3 support by splitting into multiple packages (Closes: #760080)
   * Bump Debhelper and standards version
   * Build using pybuild
   * Update Vcs-Git/Vcs-Browser fields in d/control
   * Patches: Correctly decode bytestring in fix-python3-sphinx-build.patch
   * Patches: Actually remove shebang in
 remove-virtualenvwrapper_lazy-shebang.patch
 .
   [ Ondřej Nový ]
   * d/copyright: Change Format URL to correct one
   * Use 'python3 -m sphinx' instead of sphinx-build for building docs
 .
   [ Nicholas D Steeves ]
   * d/control: Drop python-virtualenvwrapper, the Python 2 variant of this
 package which depends on cruft package python-stevedore (Closes: #933822)
   * d/rules: Drop operations on non-existent python-virtualenvwrapper.
   * d/control: Drop python2 dependencies.
   * d/rules: No longer build "--with python2".
   * d/README.Debian: Debian's virtualenv package now supports Python 3, so
 drop misleading info that says otherwise.
   * Add 0004-Use-Python-3-everywhere.patch; Fixes ftbfs caused by the py2 drop.
 .
   [ Jan Dittberner ]
   * New upstream version (Closes: #729306, #805877)
   * fix previous changelog entry's bug number
   * refresh patches
   * Install wrapper scripts via dh_install
   * Adapt debian/watch to new pypi.org
   * remove unusable upstream signing key
   * use macros from /usr/share/dpkg/pkg-info.mk instead of parsing dpkg-
 parsechangelog output
   * Update debian/control and debian/copyright
   * d/control: run wrap-and-sort
   * Switch to debhelper 12 compatibility
   * d/control: bump Standards-Version to 4.4.0 (no changes)
   * Refresh patches, drop d/patches/fix-python3-sphinx-build.patch
   * update d/patches/0004-Use-Python-3-everywhere.patch to use Python 3
 in virtualenvwrapper.sh
Checksums-Sha1:
 a86f7f5d366ce635e0edd856103378c7a642 1944 virtualenvwrapper_4.8.4-3.dsc
 43a8ac97858cfcbdc394b24cb6dde2ad0ccb2324 8300 
virtualenvwrapper_4.8.4-3.debian.tar.xz
 34498eab0af980991ddea65bcf461e6d013fafab 5474 
virtualenvwrapper_4.8.4-3_source.buildinfo
Checksums-Sha256:
 e030afce64f2835a75406fb50a84a2bae6870b3c6a30371738a8daf43581a977 1944 
virtualenvwrapper_4.8.4-3.dsc
 3edd154fd15783b68720e7e7fa8c950adc99ddfc37f12d5342e4da614f64d336 8300 
virtualenvwrapper_4.8.4-3.debian.tar.xz
 918160ad2f53983ff3d3e03a1a8544aeb1c52abd10ccfe0bceae8813492a 5474 
virtualenvwrapper_4.8.4-3_source.buildinfo
Files:
 f5c9c4786041cdca59091defe601f7df 1944 python optional 
virtualenvwrapper_4.8.4-3.dsc
 ab8772deea53422789256eb6e30e2396 8300 python optional 
virtualenvwrapper_4.8.4-3.debian.tar.xz
 d3b61a1e5cf7f4b74802009a855fbc2e 5474 python optional 
virtualenvwrapper_4.8.4-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAl1qZWARHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdnVVwgAoViThjoWKRy9A6Ya1i7Y3mzqg68qRS4v
drb+B7FFyrjKAGO386FNX2laqYtLWdntX+8zYil3vjhtgAZgal0EOljeFeomH4Q7
DBWCrjyxzqru43/Xym9I2hwGfJQdoTEGjTZ0hJF/ouqPF21+ns76IGESMi+zon28
B94xaBemJ76EU7iY6ksHn8bsF7em2vuHZz9bKtkEU2v+Z008fw5xCPgeqrLurVOL
0fGakoCnaxMlzznbE5YsLNg5DPW9p0NMswGs4qRxqfLg4dFhsRETw5S7IiXhbdVX
joBxv07ZoP7UoBma1CcJ3SUptc88cgbVxrbEHx1oBBMGiTmzCCGwoQ==
=PeS9
-END PGP SIGNATURE-



Accepted virtualenvwrapper 4.8.4-2 (source) into experimental

2019-08-31 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 31 Aug 2019 13:55:48 +0200
Source: virtualenvwrapper
Architecture: source
Version: 4.8.4-2
Distribution: experimental
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Closes: 729306 760080 805877 933822 936069 938786
Changes:
 virtualenvwrapper (4.8.4-2) experimental; urgency=medium
 .
   * add Breaks/Replaces virtualenvwrapper (<< 4.8) to virtualenvwrapper-doc
 and python3-virtualenvwrapper (Closes: #936069)
   * upload to unstable without Python2 support (Closes: #938786)
 .
 virtualenvwrapper (4.8.4-1) experimental; urgency=medium
 .
   [ Joel Cross ]
   * Add Python 3 support by splitting into multiple packages (Closes: #760080)
   * Bump Debhelper and standards version
   * Build using pybuild
   * Update Vcs-Git/Vcs-Browser fields in d/control
   * Patches: Correctly decode bytestring in fix-python3-sphinx-build.patch
   * Patches: Actually remove shebang in
 remove-virtualenvwrapper_lazy-shebang.patch
 .
   [ Ondřej Nový ]
   * d/copyright: Change Format URL to correct one
   * Use 'python3 -m sphinx' instead of sphinx-build for building docs
 .
   [ Nicholas D Steeves ]
   * d/control: Drop python-virtualenvwrapper, the Python 2 variant of this
 package which depends on cruft package python-stevedore (Closes: #933822)
   * d/rules: Drop operations on non-existent python-virtualenvwrapper.
   * d/control: Drop python2 dependencies.
   * d/rules: No longer build "--with python2".
   * d/README.Debian: Debian's virtualenv package now supports Python 3, so
 drop misleading info that says otherwise.
   * Add 0004-Use-Python-3-everywhere.patch; Fixes ftbfs caused by the py2 drop.
 .
   [ Jan Dittberner ]
   * New upstream version (Closes: #729306, #805877)
   * fix previous changelog entry's bug number
   * refresh patches
   * Install wrapper scripts via dh_install
   * Adapt debian/watch to new pypi.org
   * remove unusable upstream signing key
   * use macros from /usr/share/dpkg/pkg-info.mk instead of parsing dpkg-
 parsechangelog output
   * Update debian/control and debian/copyright
   * d/control: run wrap-and-sort
   * Switch to debhelper 12 compatibility
   * d/control: bump Standards-Version to 4.4.0 (no changes)
   * Refresh patches, drop d/patches/fix-python3-sphinx-build.patch
   * update d/patches/0004-Use-Python-3-everywhere.patch to use Python 3
 in virtualenvwrapper.sh
Checksums-Sha1:
 a7f4afcc11a491234a9b134c57fdd43090202296 1944 virtualenvwrapper_4.8.4-2.dsc
 691508b5f5bb1dbb6ba7085b2f481cde310f7905 8272 
virtualenvwrapper_4.8.4-2.debian.tar.xz
 8224d6d006e57a4bbb710af6f8d8e6470110edd1 5474 
virtualenvwrapper_4.8.4-2_source.buildinfo
Checksums-Sha256:
 69f68ca09c6fd93e4f569a03cc085aa07767f2ca20567678bc65506713872d12 1944 
virtualenvwrapper_4.8.4-2.dsc
 dc193f00cf0c113f0858b6d9ddfa27249c5abbfb30f3c74ba2b854b68d5ef722 8272 
virtualenvwrapper_4.8.4-2.debian.tar.xz
 6467ad3bbfbfa943fc8452dc2e0820ad212456c3439ef27ca9e2b1fe564e4e30 5474 
virtualenvwrapper_4.8.4-2_source.buildinfo
Files:
 5888562605023aeeeb54e63b8568e5ca 1944 python optional 
virtualenvwrapper_4.8.4-2.dsc
 f5d6ac67b256ec624433af587c07b9ba 8272 python optional 
virtualenvwrapper_4.8.4-2.debian.tar.xz
 e24e39b2617d57cf506632fe703b5e70 5474 python optional 
virtualenvwrapper_4.8.4-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAl1qYHIRHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdmTAQf9GA9ejFMHFzh6vjCRhaSjTH2fJuISDm38
Z0dQyEQIbEyjAcTrHHWbk4+fUgevoUSd3hdfy089XG8b5PxirgOQP5Od43ugHFE7
8NX9dwGr8rEVSjlZlVmNwS9CNW+VjZieZaTJBrT/o1YfHfYmfnyyy6nXFjleMesC
cg34vPLYGzHuuyRFaoNrjhSwXgYSV9roc01E1wcewsDE2gSTyNUyCDvLw0jGz3mb
3UNHn/RgKJ2/j4t0jlw7RFqm1iDm63XAbb4t+005ssIVskX5PwhXDr1uSJpaesjx
h5YS3FZ6lykbCHeEDfO5xyDFfs911oqmhwSbVbUILvUp4vwKNhyOzw==
=xOAR
-END PGP SIGNATURE-



Accepted virtualenvwrapper 4.8.4-1 (source all) into experimental, experimental

2019-08-28 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 20 Aug 2019 17:26:21 +0200
Source: virtualenvwrapper
Binary: python3-virtualenvwrapper virtualenvwrapper virtualenvwrapper-doc
Architecture: source all
Version: 4.8.4-1
Distribution: experimental
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Description:
 python3-virtualenvwrapper - extension to virtualenv for managing multiple 
environments (Py3)
 virtualenvwrapper - extension to virtualenv for managing multiple environments
 virtualenvwrapper-doc - extension to virtualenv for managing multiple 
environments (docs)
Closes: 729306 760080 805877 933822
Changes:
 virtualenvwrapper (4.8.4-1) experimental; urgency=medium
 .
   [ Joel Cross ]
   * Add Python 3 support by splitting into multiple packages (Closes: #760080)
   * Bump Debhelper and standards version
   * Build using pybuild
   * Update Vcs-Git/Vcs-Browser fields in d/control
   * Patches: Correctly decode bytestring in fix-python3-sphinx-build.patch
   * Patches: Actually remove shebang in
 remove-virtualenvwrapper_lazy-shebang.patch
 .
   [ Ondřej Nový ]
   * d/copyright: Change Format URL to correct one
   * Use 'python3 -m sphinx' instead of sphinx-build for building docs
 .
   [ Nicholas D Steeves ]
   * d/control: Drop python-virtualenvwrapper, the Python 2 variant of this
 package which depends on cruft package python-stevedore (Closes: #933822)
   * d/rules: Drop operations on non-existent python-virtualenvwrapper.
   * d/control: Drop python2 dependencies.
   * d/rules: No longer build "--with python2".
   * d/README.Debian: Debian's virtualenv package now supports Python 3, so
 drop misleading info that says otherwise.
   * Add 0004-Use-Python-3-everywhere.patch; Fixes ftbfs caused by the py2 drop.
 .
   [ Jan Dittberner ]
   * New upstream version (Closes: #729306, #805877)
   * fix previous changelog entry's bug number
   * refresh patches
   * Install wrapper scripts via dh_install
   * Adapt debian/watch to new pypi.org
   * remove unusable upstream signing key
   * use macros from /usr/share/dpkg/pkg-info.mk instead of parsing dpkg-
 parsechangelog output
   * Update debian/control and debian/copyright
   * d/control: run wrap-and-sort
   * Switch to debhelper 12 compatibility
   * d/control: bump Standards-Version to 4.4.0 (no changes)
   * Refresh patches, drop d/patches/fix-python3-sphinx-build.patch
   * update d/patches/0004-Use-Python-3-everywhere.patch to use Python 3
 in virtualenvwrapper.sh
Checksums-Sha1:
 00311f4669f0a155d9ca5bf2b99911e767ab4972 1944 virtualenvwrapper_4.8.4-1.dsc
 29a97bdf24b24f62eae6206fbd287f7b4e6a0613 90398 
virtualenvwrapper_4.8.4.orig.tar.gz
 95210a3be56501b0e27922a1b973adbb22e62428 8200 
virtualenvwrapper_4.8.4-1.debian.tar.xz
 91ce301e0f7ae721ac7827432d51143b9378b99b 30300 
python3-virtualenvwrapper_4.8.4-1_all.deb
 d337c5cf28e83da3ef5513ca34ed6e3df35d51f7 96188 
virtualenvwrapper-doc_4.8.4-1_all.deb
 85234f2bbc3d2bee8199b909fec3257725219773 34580 
virtualenvwrapper_4.8.4-1_all.deb
 9b5b2910705b835409d4ea1ce8fd536d61f075b8 7385 
virtualenvwrapper_4.8.4-1_amd64.buildinfo
Checksums-Sha256:
 a74e02cf07cbc89b7acddaed8d573346fd2c10ccc0024777a5318df9250c56ab 1944 
virtualenvwrapper_4.8.4-1.dsc
 b0327003c27172c16222084186efa11edf0c79a55ed16fc70a2323dad742e4af 90398 
virtualenvwrapper_4.8.4.orig.tar.gz
 b5dd46d6d31748d15ad19dd189bf1be06d4efc666770d4deb767ddc31b5440d0 8200 
virtualenvwrapper_4.8.4-1.debian.tar.xz
 f5f804595362afe0db6fe60e40c1024c7272e70e6d2273393d5f8b26d0dc3877 30300 
python3-virtualenvwrapper_4.8.4-1_all.deb
 4d215f15c8da9588c6d3b7cd45c8b6603d57cb4eaf9e67605da8a2d66b1fa6b1 96188 
virtualenvwrapper-doc_4.8.4-1_all.deb
 63432b94b298dea8cf13368d8ea2be969a6c6d9764776f843a90e19d3b1abbee 34580 
virtualenvwrapper_4.8.4-1_all.deb
 a4ba92549eecf54dbf9f02240b74963ad91ea0699a11e6baa7b5ca7f0c72de66 7385 
virtualenvwrapper_4.8.4-1_amd64.buildinfo
Files:
 d3517d341be85cce7f45b6d4a045c86e 1944 python optional 
virtualenvwrapper_4.8.4-1.dsc
 9fb5fe628c1b0f4cb1a7b89338a61772 90398 python optional 
virtualenvwrapper_4.8.4.orig.tar.gz
 db558add9349aaf25f2d4394ae92c5f1 8200 python optional 
virtualenvwrapper_4.8.4-1.debian.tar.xz
 8e8c74d70864d54d5a53f32f35710482 30300 python optional 
python3-virtualenvwrapper_4.8.4-1_all.deb
 d527f811909d64ffe39993c7af06fb61 96188 doc optional 
virtualenvwrapper-doc_4.8.4-1_all.deb
 4b4d3852cfd00b520d95f8062610d45e 34580 python optional 
virtualenvwrapper_4.8.4-1_all.deb
 76b246ef020c1596ae8faa52803a1829 7385 python optional 
virtualenvwrapper_4.8.4-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAl1cE08RHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdkpYQf+J9n/50D9SRsj5D9sjzyAbKY0Z+4HKEIW
cNZ0ORJTI9Q/4Xot5Di+X2orB4XQMOQU5SVVHFL2FTe3tnSPeqa0jnMKY0zA6osX
97sXUr4HPVYbDwhkZ/lfi//7/uNNJLJ5qMC4HQE2u4U0K3MUwZelwu17HZjt2H5M
GaL5ZfhAHX9yYV3K091ZK94NN5d+szM8PmFMYd8c55XtJlRAQE6Lvf3Zaow7ghMU
g/sY

Accepted aiscm 0.19.1-1 (source) into unstable

2019-08-25 Thread Jan Wedekind
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri,  2 Aug 2019 20:51:31 +0100
Source: aiscm
Architecture: source
Version: 0.19.1-1
Distribution: unstable
Urgency: low
Maintainer: Jan Wedekind 
Changed-By: Jan Wedekind 
Closes: 933705
Changes:
 aiscm (0.19.1-1) unstable; urgency=low
 .
   - New upstream release
   - Specify libomp-dev version (libomp-7-dev). Closes: #933705
   - Bumped Standards-Version to 4.4.0
   - Bumped compatibility level to 12.
   - do not run dwz on Guile object (*.go) files
   - remove library-not-linked-against-libc override
Checksums-Sha1:
 8fa7e4e23947040cff687bb164afd5f3710f7ab8 2311 aiscm_0.19.1-1.dsc
 1d073560875f47b5d70cb02302b93f1e2852acb5 3564056 aiscm_0.19.1.orig.tar.xz
 4ab0616b44d260a0de8b9505065b5fcae1557dff 833 aiscm_0.19.1.orig.tar.xz.asc
 6a2c60475f636ec1abdca6a33ecc75bf6c753125 5776 aiscm_0.19.1-1.debian.tar.xz
 073855ff0141eb6ec98ded3a6df6e71d30b95d30 15719 aiscm_0.19.1-1_amd64.buildinfo
Checksums-Sha256:
 55c44887dad5305284c803bdeabf51016d54851f59254d653df7a0073de23346 2311 
aiscm_0.19.1-1.dsc
 cea9ccd995c6f51249c063b6489dd13c8ba402829fe20565fd1482aac37e37d8 3564056 
aiscm_0.19.1.orig.tar.xz
 b225b25881501da97e52baefe5c448a85818f0326059922364a3dabc5cc693f9 833 
aiscm_0.19.1.orig.tar.xz.asc
 8ccdfcad565d989cf6ccff800ed61c31beb3312133275abd5a2d8078a4caef44 5776 
aiscm_0.19.1-1.debian.tar.xz
 e0bf13d7eadc1eaf6f270103f8d799d6965d1639763b4bcf08c8bd781ea0b378 15719 
aiscm_0.19.1-1_amd64.buildinfo
Files:
 c806ff8851eb2b8baa3e2ba68ff0bf8b 2311 lisp optional aiscm_0.19.1-1.dsc
 673214693053ff1ed33dba6c549fa1d6 3564056 lisp optional aiscm_0.19.1.orig.tar.xz
 8610c209404db6bcc4698c1ffab20377 833 lisp optional aiscm_0.19.1.orig.tar.xz.asc
 f6abde9a547f2c1c6796b4ab7bc5ac04 5776 lisp optional 
aiscm_0.19.1-1.debian.tar.xz
 aa66c8c0055c35095402d216a2df60b7 15719 lisp optional 
aiscm_0.19.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEolIP6gqGcKZh3YxVM2L3AxpJkuEFAl1i1BYACgkQM2L3AxpJ
kuFYVw/6AppiVZVyKrLRIdM4MAjflZGSBP0rFqmxDtzmsAXbHeds1EM2P7YD6OLR
iCfbyiklNSqHNDoiWS2BcDJM95D/6Go26m1/oXpt4ugx0yeSmFVWJ5Lxqmg3KDOO
1OwqXHQefCTz4t8Lii2xN6WeSeKTvXUTG2KPW84E/kBGXBNjlX7Xr7e6BNoXCJKN
X+1XPTyiOPYMQJteGJVhcnWM3iC2oHQsrl3aEthQBVllu2vVX+39UQvlPxgg0AO/
VSJJJ9wUd789IvgRe41ijQSQu946xYPRQjgpCfcPBKIlZ/VwQU75eMx5x2dnDOhM
XghR2yStUTO0++d3lBHgs9177iJIc4ouMqliloXa7LwH4gwY1q7HIw7kmZMHQgUm
8CIDyqpKzmPuAKcePaq7kTOJaSVQz00Bs2S8Kq9LjjHcsNrmHWmon2cPyDxCsOpf
Civ09GypXjkeDF5sOsWBhoMWVeVV+Abtcys8azs8n3f3mmQzSfjnxZZB06l/Y1ST
xcjG4BqbJLOaWYSgGx4B1SQzzqtPbjTyYe+WDoWEZaYgNXoYmKFbXNDw67udIse1
O2MB5Bg3/NfuY6bT6Yz8r7VeDT2XI/5r878BgNQCisKku3mAHuc8W+hMW/zbZ6j9
nnL1I3q6akz9MgVsYD+A1x0SCkCLhzs5L0K+wRQ9Ij9wgSH9FAU=
=HVBQ
-END PGP SIGNATURE-



Accepted usbrelay 0.4-2 (source) into unstable

2019-08-16 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 16 Aug 2019 10:46:39 +0200
Source: usbrelay
Architecture: source
Version: 0.4-2
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Closes: 925846
Changes:
 usbrelay (0.4-2) unstable; urgency=medium
 .
   * Fix "ftbfs with GCC-9" by applying patch by Rainer Herrmann (Closes:
 #925846)
Checksums-Sha1:
 d2d45f21d00ce92081a01ed76d005949454cb520 1506 usbrelay_0.4-2.dsc
 95db5ac7548a13c339c94889ce1fd97b8c36b8ce 3172 usbrelay_0.4-2.debian.tar.xz
 87af1b1dd1b77e4c285ee67bfffb133776821a31 5541 usbrelay_0.4-2_amd64.buildinfo
Checksums-Sha256:
 4e8b5e84ba9bc705c626f5b318751a992bb6c69e2d05720a8ac95789d829fba2 1506 
usbrelay_0.4-2.dsc
 436c7be6dd40856520e11d508b154ce48e485f1a989ad6abb4d9ab721857b94d 3172 
usbrelay_0.4-2.debian.tar.xz
 c647d996b6f8d7bb7a1af866565fd3be143964ab5c68b003ad047dccd0cbeb07 5541 
usbrelay_0.4-2_amd64.buildinfo
Files:
 e5cf0b610c0baf1bb6a4b2acda301d78 1506 electronics optional usbrelay_0.4-2.dsc
 324289e828bcd76262e9cfc11af196dd 3172 electronics optional 
usbrelay_0.4-2.debian.tar.xz
 0908a6586d8a8b0c04d69468e4b4bc43 5541 electronics optional 
usbrelay_0.4-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAl1WbhsRHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdnqswf/Sr6+qhJyqC9Rj4ZOPmJ6P7Kbt2LcPTgx
fwvW+XL0vDkT0ABvpQvCrZG1UPvpAT1WZ8tYZFa56CWPFH3aoDg6bDwYm4FqRSM0
rD1WdlTwIwDQ9arH9Jbtl+++hcqIjDObjyRbFczwijFKnGwpqtgbo1cDO8+aa4Yi
XR7stErYLx4IgywzPsy66tpfjw0k4lc/nFtJyvW8MAfSnMI3oi+xsAv4Cd54HYdD
R+rcmvneHKk+0xGScZpVCfivn6q5MLcxcatyuLL8/E7IgwK6JKXWfgORDkfFertq
3otItrChTCJ4gjO9DcTUAf25PIgQkHmQ85Wh66HMdpn9NDvdIuGDUg==
=Cqf2
-END PGP SIGNATURE-



Accepted pushpin 1.24.0-1 (source) into unstable

2019-08-13 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 13 Aug 2019 10:25:28 +0200
Source: pushpin
Architecture: source
Version: 1.24.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.24.0-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 010b239f4034d17520ea74e323587e68990f33d7 1732 pushpin_1.24.0-1.dsc
 bf778dd7686ec2edcc32381fe9e17d3089419a88 212752 pushpin_1.24.0.orig.tar.bz2
 329f4f885b5c2fb95011b323791cd343cd6f6378 20072 pushpin_1.24.0-1.debian.tar.xz
 daa20c999c49ff936773e2799fce97e015c06d7c 9992 pushpin_1.24.0-1_amd64.buildinfo
Checksums-Sha256:
 4bf7dd1b378696be8f4488d646aa36ba4c6c3ad0ea8cc204f04c6b1d8b19fbdb 1732 
pushpin_1.24.0-1.dsc
 456aee8f78cac85864ed0883f7fa93cf6f0ab688ee7ad621af4c061a25b8e7fa 212752 
pushpin_1.24.0.orig.tar.bz2
 f42d1a7af9dddf6f2386ff827e8d542249d6be4dbe44bab68e8a82bc5495863c 20072 
pushpin_1.24.0-1.debian.tar.xz
 d52d23881827151fe09d3c3cfd7414eb72f0e2d5680eb5e993a084bbb97c029f 9992 
pushpin_1.24.0-1_amd64.buildinfo
Files:
 3b8f4b0ea1850b49014519d9acfb837b 1732 net optional pushpin_1.24.0-1.dsc
 bf84478f18d557240df0708f964bae33 212752 net optional 
pushpin_1.24.0.orig.tar.bz2
 927d5fed3150978d084b8e54f2238870 20072 net optional 
pushpin_1.24.0-1.debian.tar.xz
 89503e2abc11268fafb32e4211758063 9992 net optional 
pushpin_1.24.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAl1SeL0PHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRD8QL/R65TIyAaVIQmRTWDwWmaT7efQ3BuXG2iTqe
X+RpsuuesH1AtWXxzoFNUqa5nM3L7c/2EwEqa9sQr1wI8RhAzGg5XQxog/BPRWpn
m7niXg0LPJycyXHe8RF+97u/7Zrb5KcgRRejSgpnb6naCY8kOMJxAa9+P52CjOA3
pc7L4uPzDxalWKpmxqpdFHTUa/gvWtVnIxvUoATLvSlMue6krZ5eMrz12tQDd5WX
eMEEDYWzEzo7hDaIv8NqZzlEVlAv9SBDjCD8DLzYZ6U74qK6TDsSnMrCEHnaZdvr
W5b/bztA16I0/Mg973BM0b2EjhyM7a5wsjSFmg4g3rsH+hXmEGeaAaTpMDNONN1A
5Z8Cx7gAeJYMwkweikn4ZcH/J5fFK0ZC+ZJnigFT8LfMFxIYRKSYP8fSyj4hyHu0
71TsYbtnNzpguBo3JWadsovn55kK2OURs0rXfKW0SM3GXjUltWzX9OtdFJcBtN43
kJsloO1+WLfom2Z/YffNgVoEGx7Xow==
=A9hi
-END PGP SIGNATURE-



Accepted mongrel2 1.12.2-1 (source) into unstable

2019-07-22 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 23 Jul 2019 00:07:09 +0200
Source: mongrel2
Architecture: source
Version: 1.12.2-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 mongrel2 (1.12.2-1) unstable; urgency=medium
 .
   * Update to upstream release 1.12.2:
 Workaround to prevent crashes on large files
 Disable some compiler warnings
Checksums-Sha1:
 b56d5714b145f3e04eb4c45a6b82ba5bfae9fa96 1832 mongrel2_1.12.2-1.dsc
 8ffc5a58e214d4f8349b30526176f306bb912a72 565356 mongrel2_1.12.2.orig.tar.xz
 1e41141c66961083584fb57d022cab208f600bf9 20048 mongrel2_1.12.2-1.debian.tar.xz
 e5482bf0b76a30be418b33ba7d12b3f5d1a403ce 6504 mongrel2_1.12.2-1_amd64.buildinfo
Checksums-Sha256:
 846d3b2c5ece89f3254b1c39ce057cabc40a0fa3778a2f6d748c7309450dd1b6 1832 
mongrel2_1.12.2-1.dsc
 0a49c20237c2373cde376368623d63b7c5b130bb52d0cee6875f68c4acc5abdb 565356 
mongrel2_1.12.2.orig.tar.xz
 7191ffea745ec6da33eca3149191613a07aad847845b363081c3a5bac8a2cea2 20048 
mongrel2_1.12.2-1.debian.tar.xz
 5b4e142ee951114f242eb0ee1a1645261362dbed174c5670a584843fffacee52 6504 
mongrel2_1.12.2-1_amd64.buildinfo
Files:
 73f00caca05fc1954971537ed4d8a692 1832 httpd optional mongrel2_1.12.2-1.dsc
 bdbfcc166d045813886c7b07c11aedea 565356 httpd optional 
mongrel2_1.12.2.orig.tar.xz
 badcb2d18a437189ce6864207b11613b 20048 httpd optional 
mongrel2_1.12.2-1.debian.tar.xz
 682c29b5627a9cf01eea25aa8a66137a 6504 httpd optional 
mongrel2_1.12.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAl02NEAPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRmWsL/0/f0uOkyb7sACqwjgXgTH/cPoEhEjqOltoC
vbgFiJ06ANK0V4yoavD2NZh6djGZiAjJfu/FSF7X8Ez3ottPBauLOcq5NwzGhsRW
1XnlGjVQYLOhybotvp3GT+qILL1uD5R6D5ruORCkaP2SnOV2JPA6nwAcGhfIbxhN
a/s2TIX9y/DBYzq5uXEU+U+19DI2TNoGqxcVDD0xova1dAat92dgfpUZscfy7NuY
cDScGHBImRD4BN/YTrNVmvOvKqPeZpGqe7KYcpYENjIz1UDU3vqDOeaZ4gdlHDJc
INx470/gbbndofMXY8hOPgsepS6wAwV0TQcXCXa6EeOWxLP6pnHLcfhR1kHZePXs
dWYGzSWywXNDFN0f4ticPop5689gkLz3eThsRC7zuXtcbE1RkFPewjwaR+xzqjOt
yWlpvgdQXJeGq+5KI2mrCpFaAx3MFI/uOJvfF7DH7ou2SX/6X8yQjW7zQvILFMIR
nbsZD66I66YolxZY52rEGHaZqWlQcQ==
=THVD
-END PGP SIGNATURE-



Accepted pushpin 1.23.0-1 (source) into unstable

2019-07-04 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Jul 2019 13:41:02 +0200
Source: pushpin
Architecture: source
Version: 1.23.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.23.0-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 e021c71d8e4715ecfa4c2c714945d4d9c32d1904 1732 pushpin_1.23.0-1.dsc
 b2bc45084c89489f625dbf1342ed12fbdf28de3d 211470 pushpin_1.23.0.orig.tar.bz2
 38051105162631210047c63ca0dd351f08b89e52 20068 pushpin_1.23.0-1.debian.tar.xz
 7ebd98e5c23e49c02ebaf9b6054e24ee687fefaf 9992 pushpin_1.23.0-1_amd64.buildinfo
Checksums-Sha256:
 441565d65578adcab4fc0da2ded3433ae9d045bab28ae9aff0c36d032469977d 1732 
pushpin_1.23.0-1.dsc
 9309d75f0af5e5dd8a28f89b22a572e5d8117692af0418416cdb4391f8be044e 211470 
pushpin_1.23.0.orig.tar.bz2
 e491c7e782e6fd553396514ae0c9092d56bd4dfc6f2c91759295cf9036eb990d 20068 
pushpin_1.23.0-1.debian.tar.xz
 50294a1bdcad9eb2553fbc93c7511a6c304d236bf931ed24a044304d19436af2 9992 
pushpin_1.23.0-1_amd64.buildinfo
Files:
 d52084f851a98842c38a4413b9029ab6 1732 net optional pushpin_1.23.0-1.dsc
 b13b415fdb12ede38c047c633c89aba1 211470 net optional 
pushpin_1.23.0.orig.tar.bz2
 ae2e1e90130090cf1b78cff763b99a17 20068 net optional 
pushpin_1.23.0-1.debian.tar.xz
 a61e3300115fcbde004147bdea83138f 9992 net optional 
pushpin_1.23.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAl0d6lEPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRKzgL/2OYnRxQMTf7h0tO2Md61nqOwVpQHD3JTJNd
R/3nh+2wu6GVpU298R3tENCwgD4VrNgHMcE+dbLTNp8kBMZRvca/NZxXUaDCv0P6
Tijupba/oRz3NRZc2GAIIRubXaZJRh4FqLn4RXztBouRBUN3eQfEuj6Krt9G6zLp
CqSn31wNvztX4cM2jnRRuAsjxac+hWEkjzlt1LeKvRk+HRSqU71umdfzV1g+5Q1s
7AAS8Ong0FOmbbjFYASQT/znrRN1SnNtIx23QLXh1l00fdFkacD1V7npXoR+5E4N
p5ske9Wk1DbWWpMLkmYfXDJ9bsEU+ZHPWjpHwgtfCBl5LVmABz/qZAK1Oj1A65VK
ChCBdFkGsKz2+xNH7oZAlkIs1zMPnSRJTzWbPxZjTpe/p27yEC4X3jC/9rxAioMB
45Sm2QjSk5NE6Q+IJTWvPMxFXsd+JJm9ox4OQET8vzZUjnQoRAr+9dsqd9yHSVUd
kHIkRD4mJMBrKif3EUYasRXRBfsQCg==
=Sq5D
-END PGP SIGNATURE-



Accepted pushpin 1.22.0-1 (source) into unstable

2019-06-25 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 18 Jun 2019 09:13:31 +0200
Source: pushpin
Architecture: source
Version: 1.22.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.22.0-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 6faa8d4582cf6a2749c18a24771a97e577984f79 1732 pushpin_1.22.0-1.dsc
 30a69c533e87eaa16def5c332f056b107c10f6e5 211616 pushpin_1.22.0.orig.tar.bz2
 e2faac42e5d7ba2db50500edb1b31cd3a9a2648f 20044 pushpin_1.22.0-1.debian.tar.xz
 355212dd56759b806a40432eb90bf4d509d6de1d 10834 pushpin_1.22.0-1_amd64.buildinfo
Checksums-Sha256:
 a0f0faf908b7dfc0b6dd1f0ec983ecc284a224917772669056a783c09309ee65 1732 
pushpin_1.22.0-1.dsc
 f4a1034d26ce1bfe55c1ff9071bc2c4ff038a20ab2c5e7492f5bd73de5900b1c 211616 
pushpin_1.22.0.orig.tar.bz2
 d39a37a9d307180ded25a15f406206dc979d98c65a308965558ba350ef7dd651 20044 
pushpin_1.22.0-1.debian.tar.xz
 90b1d6629300d093b696e372639daa7599952c7c25edac4c78fac4992d904624 10834 
pushpin_1.22.0-1_amd64.buildinfo
Files:
 99c1779855615f4f473f68d7e701890a 1732 net optional pushpin_1.22.0-1.dsc
 94fb0782efc044c7d384c08268d91594 211616 net optional 
pushpin_1.22.0.orig.tar.bz2
 40f497d85c00fc5d9984cbe167d3f8a5 20044 net optional 
pushpin_1.22.0-1.debian.tar.xz
 6eb59ad412d982efb599ef60a3930c79 10834 net optional 
pushpin_1.22.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAl0IqO0PHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRdLsL/AoYTEMoDDLMLHikJZf/sOfnZauEK4C+WnAy
t+GLsdPhNCUYn6xJpQld9S1K7NAuoiCnSaEtOpIWUgBwi0C40fTbCAoSS6HaHEca
NZJeJnjat2kE5O6LBQlCDrKH7FsQ+Z6u6zhuz7XYoqv5BQnY+cKIGgA7aFTnhQb7
3KXNJyN+dUSh+FtKfeQyuimd/2ov108qzaNcfl1u7GBnQr7gHraKVCCtW1rvYfqB
pcJltTFifwBsKjk2bzibLVr+9jq5f5PDNiGTcUFLM5k+OrImB7MDwx3X4rqVP2mF
lKWBe6n1T33Sfts3De/Tyn4xrHbm19+0Wzn8kyM6jIyiG5b1X4tI7kG6U6UwZomD
c2saMtiEQmElZSOJLBmFkKkODIUQldu8w5f3M5SRxNolJXPmvCu3p6PhYFDnvpW2
l4J8PkblJ12OGsOwrisktmmPNIAP6L9P3kOLT+JKfar/YOrWv9pHL6iR3EffO9/u
etE1sUqemdv5Fds3sANdLwvXltIlVw==
=Njor
-END PGP SIGNATURE-



Accepted pushpin 1.21.0-1 (source) into unstable

2019-05-02 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 02 May 2019 10:55:08 +0200
Source: pushpin
Architecture: source
Version: 1.21.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.21.0-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 499d6160de15c9ac3bb58801bbfdd881d289a7e3 1732 pushpin_1.21.0-1.dsc
 47e3b47386eac43c1238b198ec8e5ec016085728 210699 pushpin_1.21.0.orig.tar.bz2
 69e4a6883dc3c28b4b511b886b7dd3feb046bf94 20048 pushpin_1.21.0-1.debian.tar.xz
 f3504276bf222ed0e0c3ac96f69033dcb9b5083b 10834 pushpin_1.21.0-1_amd64.buildinfo
Checksums-Sha256:
 408f1608c31195f034de07f15ad3391b9fb5cc20e403710260964e6e3c6e3b8c 1732 
pushpin_1.21.0-1.dsc
 9ec095483cf4d6de2696e55a2272aeecbecbe5848fca462ea99d422c1b623c7b 210699 
pushpin_1.21.0.orig.tar.bz2
 eea3aa42f019a9c6f53a08301811ea1ba2a427d0a5ac770ecc5dd651230a18ed 20048 
pushpin_1.21.0-1.debian.tar.xz
 a2fee2731991b058ba620a8f61977dc98e0564d00d0c6505398609f286c755ca 10834 
pushpin_1.21.0-1_amd64.buildinfo
Files:
 8eaf94c2bb15b930ccb135e15f9b3ddb 1732 net optional pushpin_1.21.0-1.dsc
 0f653452abf6c1667a901e67bd148547 210699 net optional 
pushpin_1.21.0.orig.tar.bz2
 1b31be235ccdf08e8f41caf7dd7cb92e 20048 net optional 
pushpin_1.21.0-1.debian.tar.xz
 f873ae4b4a08317f563448ebfb937250 10834 net optional 
pushpin_1.21.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlzKtA8PHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRIPcMAI3BFa0lda0lHnnPfikPXFTgP10/6VnI1H52
pOLNvI67A9RD+HWN+i2sSXtY/tf3musyGeLn+Ht6sguayxIp9XkHk5++aG9JaR4U
JIBb95LUrqsIby0ue336JnuTD/KDbVDf1pfL9Ll3ClLpx5wJi9EkbhHvl/fr3hO9
u2JMydZ6nFColJSAMMkzifZaGSyQ0kSeKXnolzHh4TL8bZRyJYqweyWR545ka9+M
+lStmdpmFNYdbUBSIe4068hSXllXILlP4yo1hMEyhqFfotT4i/YA0VQ9LTa3flkr
NPuOPBIQ0qU/DkNEGUevAuDuDiQMWR2dEn7GJJpUwszK6X3PKsAwh64209dB2coe
TkYhdM9su8EFonelEaRQ7HmCIEUbTHp6Ppq89WtD+q7IsiHvjyM1SvbIB2x+kW14
lqrpjJNWEdtr056aAG/CUATtTCVM/LGAhG15Utlo/TjuyaG01y2kTj/B8A7bL4YK
4dPbPafsNYL4lFU2KCShy1bOD1Zwyg==
=HMRr
-END PGP SIGNATURE-



Accepted monitoring-plugins 2.2-6 (source i386 all) into unstable

2019-04-17 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 16 Apr 2019 19:14:10 +0200
Source: monitoring-plugins
Binary: monitoring-plugins monitoring-plugins-basic 
monitoring-plugins-basic-dbgsym monitoring-plugins-common 
monitoring-plugins-common-dbgsym monitoring-plugins-standard 
monitoring-plugins-standard-dbgsym
Architecture: source i386 all
Version: 2.2-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Nagios Maintainer Group 

Changed-By: Jan Wagner 
Description:
 monitoring-plugins - Plugins for nagios compatible monitoring systems 
(metapackage)
 monitoring-plugins-basic - Plugins for nagios compatible monitoring systems 
(basic)
 monitoring-plugins-common - Common files for plugins for nagios compatible 
monitoring
 monitoring-plugins-standard - Plugins for nagios compatible monitoring systems 
(standard)
Closes: 863981
Changes:
 monitoring-plugins (2.2-6) unstable; urgency=medium
 .
   * [697d611] travis-ci: Remove trusty from definition
   * [7b5d419] d/rules: Explicitly call ping with -4 and -6 on linux arch
 (Closes: #863981)
Checksums-Sha1:
 9690cdf34a28350025b1454fdebbb423fa632454 2535 monitoring-plugins_2.2-6.dsc
 782ee59ed5be6136337cce32f48875fe8efba118 1590008 
monitoring-plugins_2.2.orig.tar.gz
 1ecd804c5050e6c87aa47c5bb8e1488ded1df8aa 41704 
monitoring-plugins_2.2-6.debian.tar.xz
 ced55f7edb48f44f505207e1d2ce6d1b4feb727a 1592300 
monitoring-plugins-basic-dbgsym_2.2-6_i386.deb
 a2c9731ea812be41765cd3ce7aad7201386eac8c 305604 
monitoring-plugins-basic_2.2-6_i386.deb
 67c8aa2813419820e40f3ff08c8f5687c057e4a9 84896 
monitoring-plugins-common-dbgsym_2.2-6_i386.deb
 94ec1873d5e3de9f6f568d8105aa71cf32783af8 70316 
monitoring-plugins-common_2.2-6_i386.deb
 4a66c39df52da02b1d19c519c46f959b56171578 711136 
monitoring-plugins-standard-dbgsym_2.2-6_i386.deb
 118a2b87ec495451531fa10e4df1d498ac1b4aad 160176 
monitoring-plugins-standard_2.2-6_i386.deb
 41ce2a055a35f981a58297cb5409e6e730549c31 27732 monitoring-plugins_2.2-6_all.deb
 a151a58a0678c3a71252e4530c6ea40de6162fe7 9887 
monitoring-plugins_2.2-6_i386.buildinfo
Checksums-Sha256:
 22933a0c02186b2d8786bc53d9d16eb32b06297b385a80a070eacf01cc1c3265 2535 
monitoring-plugins_2.2-6.dsc
 0f01169159fc82a4bb0e6036f2d28b79c4b9e04a07a514cffd499cb31680e8fc 1590008 
monitoring-plugins_2.2.orig.tar.gz
 86fd23cfbcb018b541a7f86975a5189f92084ad530ec37f73b5ea198a45086f4 41704 
monitoring-plugins_2.2-6.debian.tar.xz
 f1815eb125ccc44e6505bdf65298ba8bbc9fb10f1d8cf4ca7d94c534f18d7b07 1592300 
monitoring-plugins-basic-dbgsym_2.2-6_i386.deb
 7ad0f3c1adeb942aacc69b514ceb93b9851bd0ae15e5fc23f3d014255b945a9f 305604 
monitoring-plugins-basic_2.2-6_i386.deb
 c4673a87bc0ef9f7b21a1df441ea97be3f518e7b354eb770f1e524bb3e4a0dcf 84896 
monitoring-plugins-common-dbgsym_2.2-6_i386.deb
 9f075d1069587d93e2441c09fe97867db697476278738279dc4cace585ba918a 70316 
monitoring-plugins-common_2.2-6_i386.deb
 afc5cff9a37c5ad3606b3bac373d418a00739206bedc43ca663f7e2136050960 711136 
monitoring-plugins-standard-dbgsym_2.2-6_i386.deb
 86bbe561792392e714762138020c0e0ad0873b4a42d9ccc673b4694209b7c88d 160176 
monitoring-plugins-standard_2.2-6_i386.deb
 48d5e63668cb62547f6d9871371a30bbc51358ffb667c9dbcb3e10c56be0e101 27732 
monitoring-plugins_2.2-6_all.deb
 049f40dd385584a23082e43d7e50e75d1f7bc8b6b83fa6b7e1ba3f794b567fa4 9887 
monitoring-plugins_2.2-6_i386.buildinfo
Files:
 a5e321a61915c5335c3f0866c8b00111 2535 net optional monitoring-plugins_2.2-6.dsc
 401a4122c5aa901c0d44e729a9ed501f 1590008 net optional 
monitoring-plugins_2.2.orig.tar.gz
 8617befcb6d4877aa78a7b16cdc5c90d 41704 net optional 
monitoring-plugins_2.2-6.debian.tar.xz
 e0fa387580ad84ef7d7aea79863b567b 1592300 debug optional 
monitoring-plugins-basic-dbgsym_2.2-6_i386.deb
 e53e83cdaebf89de7eb6aded44cdb00d 305604 net optional 
monitoring-plugins-basic_2.2-6_i386.deb
 6ea7e038ff02a220a04d2a4278b1306e 84896 debug optional 
monitoring-plugins-common-dbgsym_2.2-6_i386.deb
 b17f36a4aa49947a5bc790b11997ba1c 70316 net optional 
monitoring-plugins-common_2.2-6_i386.deb
 78a5e64cb798a9a2b50858f3c8fb4d4e 711136 debug optional 
monitoring-plugins-standard-dbgsym_2.2-6_i386.deb
 22058674da2ccb85d66acb361bb78991 160176 net optional 
monitoring-plugins-standard_2.2-6_i386.deb
 fa5495ea3554838bd5c7f5e426a2ad5b 27732 net optional 
monitoring-plugins_2.2-6_all.deb
 8d76e0703b7e5472d6d98c54b77040f8 9887 net optional 
monitoring-plugins_2.2-6_i386.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXOdRCo+8DU5yq7qbDHBVe1oGUT4FAly2Hp0ACgkQDHBVe1oG
UT5NOw/9ECchAJgvzlmoaDWEOMoF9FxeyJxY+nGFslddVushnZ5k2nlQ+R4+Vh3N
whPKYoIaRb+UsTTxETbM8eGtFFXTPsY5Qs3BdcJ8AnYDtcVROCPkdvxM1gFqEp2r
wfUD4DvFl/XWdSwun5J8EKmbe2LZO7ihdd5U4YSSUlqnicBInoFlr6g9vd1ptjQ4
nCjxr0e6e3cEXaBUXjaLSrk0hTNEISNXH1NQAuinxHhnxkMf7SygKtBIS5cZq+na
k997fJqkrhH/i8d30cot60V0JBSsv+tN+olhOF1XgliSr7hgWfBF0EdSX4RXTau/
+FEoG6lOSakY4IvdiXRl8cw1kEoaAHVAAGCPPqvMhqznKbth8RshvofZ6cFdQlJ4
13a3mgblJDiTIB2+jJqkCbaG7Kn23OVeAGZEU4HNQysvrPxYmqElxaK8UOK4Cf/8
KwDL47sJARzqvqhpk2LYmz5

Accepted pushpin 1.20.3-1 (source) into unstable

2019-04-09 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 09 Apr 2019 15:14:21 +0200
Source: pushpin
Architecture: source
Version: 1.20.3-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.20.3-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 2647dfc164d94f852c111a31e5ae13d30a1564e6 1732 pushpin_1.20.3-1.dsc
 bcce96bd9654b6547ce88e3b287be7e003ca6629 210517 pushpin_1.20.3.orig.tar.bz2
 3a99b539d0718c7032474b132fce0c51cf67db76 20036 pushpin_1.20.3-1.debian.tar.xz
 995a360ab6af5438d37cba19a142bc713ad69299 10804 pushpin_1.20.3-1_amd64.buildinfo
Checksums-Sha256:
 2eea50db6b0e862f19c8c79822d1274eafc618a15186acf78648d80f8c77235f 1732 
pushpin_1.20.3-1.dsc
 ceebe143b25aecb63bc7b059e23878472ed511d34f5e8e42542011e40195da5e 210517 
pushpin_1.20.3.orig.tar.bz2
 95ddda6586024d56025cdc84698db4db3d8a08bd9f123d718fc0b50b7fd7937d 20036 
pushpin_1.20.3-1.debian.tar.xz
 bf0808bd3b3b7fdf659eefce4320a621ba0857aae96cebcc56adf24ecc138061 10804 
pushpin_1.20.3-1_amd64.buildinfo
Files:
 95bc719f650f87b43f700dc82ff3e20c 1732 net optional pushpin_1.20.3-1.dsc
 e24e8c27cd54dcbeb7b6b4f85d7b3c87 210517 net optional 
pushpin_1.20.3.orig.tar.bz2
 e187431e9c8231aea3a202646cd476e0 20036 net optional 
pushpin_1.20.3-1.debian.tar.xz
 b6e44cbdc1a8b2c1f3382b9455b85d54 10804 net optional 
pushpin_1.20.3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlysuSEPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRp3ML/3/PcH2VqPR6M06H9Gqu75X3HTcSzRL07kkJ
EZngtodSAcKh+4xXAhjsBH/OcMYRSemkCmRcSqbT+qaKaMl8n+VBq1P56h6zcECn
Qv2nOfj/oba2dUdvX3KmjzTShj0ko3/OkBqyGdHEvyk4+H886vQrcsyodavrDD47
OmPOXxaSsswDkA3fwp1vC4Ay43KdmYxs0TIMGTe9BhiEGjOEltbktTGmBCwAYkrc
jFnZ+sk4Il9QaCWbrLFsWaYv8pBHCzzdC1pwO9Yh0f2415rlGAQFbrZ0E2rAD3pY
XCKpQ1NTIHnU9ViP7yx16zIq1EvNOfWZXL19nj+XMP5QM9NxP0U6KKohkGbUCA82
eHyWDIPSGGsf4ojQAEhq1Yo9P+Kbp2DwfSt7bq3rVWDJUxDKpHncKEYDAO0K7vX9
Go3zX6lAgKsBZ/o+snYJmFvjqOF1kOeDB3hhPRgJKL7RdZ40HACwkqP5DmhuyngH
xn8xU+Rqnlavk1c+b74Q/Wdoi9ijfg==
=p7Xo
-END PGP SIGNATURE-



Accepted zurl 1.10.1-1 (source) into unstable

2019-03-30 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 30 Mar 2019 21:18:40 +0100
Source: zurl
Architecture: source
Version: 1.10.1-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 zurl (1.10.1-1) unstable; urgency=medium
 .
   * New upstream version 1.10.1
Checksums-Sha1:
 1e58f031bc458db3c40b31bc40e3e5af6f9f3207 1748 zurl_1.10.1-1.dsc
 8872e37ab094a1d2d52c993996735015a3045b8d 138420 zurl_1.10.1.orig.tar.bz2
 75fa3dc898845ab1b3ae8d22b9a002f8c5cf3ff7 8652 zurl_1.10.1-1.debian.tar.xz
 1c160c56a801bd17ec812eb8bb5dad723d8ae6d2 11104 zurl_1.10.1-1_amd64.buildinfo
Checksums-Sha256:
 aa0c4093241038cf51ed088d228c097c0055d840ef9116e1c8f519b28b8df2c5 1748 
zurl_1.10.1-1.dsc
 8ac27fc791a7cd44e95afc42da726e8e1a2481324f4a6b5bbfce629faf1d2601 138420 
zurl_1.10.1.orig.tar.bz2
 a2faf3ce550799ef68ef7a97346ceca17cb65166cc8ae0e55dc466b7612fd5fd 8652 
zurl_1.10.1-1.debian.tar.xz
 32be319b7c9ce596d81417d78d019f207120a8c5b2c84b9cd1e7e09eb42155a5 11104 
zurl_1.10.1-1_amd64.buildinfo
Files:
 9ee5fccd68eb12638912feb08f04193b 1748 net optional zurl_1.10.1-1.dsc
 50926c75444cc8d11561a464b09f61cb 138420 net optional zurl_1.10.1.orig.tar.bz2
 bb0b0a9281381f46e9e524c9a662ee83 8652 net optional zurl_1.10.1-1.debian.tar.xz
 fa2e9014576a872dd153ba7cf78c92f2 11104 net optional 
zurl_1.10.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlyf00cPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRbzAL/iiir2pWaW7r3BVciT9ppKydohuDe3HwoFKb
70j2+94vgLAUrAJq5/7dmnMSrVT5g2NHW9YPskqmbrJmkOeORLWfxTCwLubgRpBa
l7uQZehhJZIWSllEn1rehZkWWXayUqijcsAjRkUanKFKs1GEeJVcoKi4hym6YzLg
CLAZ6u7ai3n1CWTLrG0qDGghZKbUoINkQktd9hN+fBXe7Nore1ypLGDOwUnkWSUD
6tzj5K6j5ruosgFBikUkwK8HpD2EWfLR1c02auay/B7aVWxNEj4bHRK2YMDyiWu8
I5u5Af+VX/wZ8pIoHveLouHH3F//Ig+ItUqjY9pqDSjJZ/NTG2Hh0TeKsL08090c
S7iNKxhqk5+d+rT1hyWZUUhFBLhAEd8qWSRYb6+6v8+Co4XKiEX0cRuOnWiRvpvU
HrbLCRs3sRiAU+FN7ZU53DqvWsbc6g/budXodtHMo7GovA7/Nm3cRoNWziiCAAVZ
6VuLnl9FcMmjjHGV1WPK2mqs/DcByg==
=/xQ7
-END PGP SIGNATURE-



Accepted pushpin 1.20.2-1 (source) into unstable

2019-03-29 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 29 Mar 2019 17:46:02 +0100
Source: pushpin
Architecture: source
Version: 1.20.2-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.20.2-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 e701caf017ce1476a144b032deed65fcd47727ae 1732 pushpin_1.20.2-1.dsc
 0b7a36d4794b34b108b93b1315b3417b648e7619 210573 pushpin_1.20.2.orig.tar.bz2
 52fb47181e8ff2d5d686f17ebda64a6fa94270c8 20028 pushpin_1.20.2-1.debian.tar.xz
 796aa4a43c9adeff7004be5f5da5f0ebddc5944b 10804 pushpin_1.20.2-1_amd64.buildinfo
Checksums-Sha256:
 1551c7d39fb304ba3f1a119f60194cf41f33a047e39280040547244fb142083e 1732 
pushpin_1.20.2-1.dsc
 cbf248baa1bbb27169bae4da21ac7fb2c739c955c4d0e376733838f67bf3e92f 210573 
pushpin_1.20.2.orig.tar.bz2
 43a8da27ec29249295b02780a12fbc7e43cb721d754a6d9a490f26b5345e08e1 20028 
pushpin_1.20.2-1.debian.tar.xz
 cf61dc719f3be4e4543a90bca3b1a014f59015d4f6991a6774ba3000ab537d03 10804 
pushpin_1.20.2-1_amd64.buildinfo
Files:
 033c7185b58bc22180424d8082bbb480 1732 net optional pushpin_1.20.2-1.dsc
 c826b55e2c1a2d3854cc5c6a60e00ee7 210573 net optional 
pushpin_1.20.2.orig.tar.bz2
 1b4ca33f628072b863cce79337eef774 20028 net optional 
pushpin_1.20.2-1.debian.tar.xz
 ab8572c8ea3d5c35939b7fbb9c551fc2 10804 net optional 
pushpin_1.20.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlyeTdkPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsR6oIL+QFTnt1CkZp5hLXjA0UqA/rAYCUNZ8TSQqgP
IKucR7wYGYKDv7+k3lZ4uQfEdBnWoVNB3dk7ksB0i3/xDnU/SOdEClRxMVSz1JTl
DSLiKGho5xBHIjFpzb4WikTuAICh5AgLW2gozrcxqf/QGeKRKbnh21fLMdA7dCr1
jN+NTfIEDKlPKBmmq85wQOJewEV5jdLByIVyP4n/w5nxG7as7IqlyNIqcPpM0L0+
Vght2qTF/kDg8WcUC4CZw9JINWe885lzwf8f9XCDq01RmwUXAygExyGJuwqQf3hs
zFyfcciRVAIOaZMXQq15guolVj6BNTZSFoBsFhMdvl08UHH/id29znyKrLQ0ZzCs
r4xwgTTpp6WIqJWmwN8W96kfygC5spL7Wiw8yetXC0oYUWLosHp6OqHhGc7uI1UW
8nAAZcn5ubc3fV3qZXm3XNEJmvNpbQ+hD13MCjaEXpxDDkZqUPbrnrnk2h4+Abbc
Q7bYumiO106SnqGpR0r64kc3ATDlUA==
=WwxE
-END PGP SIGNATURE-



Accepted profile-sync-daemon 6.34-1 (source) into unstable

2019-03-02 Thread Jan Luca Naumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 02 Mar 2019 14:48:44 +0100
Source: profile-sync-daemon
Architecture: source
Version: 6.34-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Luca Naumann 
Changed-By: Jan Luca Naumann 
Changes:
 profile-sync-daemon (6.34-1) unstable; urgency=medium
 .
   * New upstream release.
   * debian/compat: Update to version 12.
   * debian/control:
 - Update to Debian policy 4.3.0, no changes needed.
Checksums-Sha1:
 68632106e6560d7c8bcfcb27d841a6db79f5e2a5 1952 profile-sync-daemon_6.34-1.dsc
 c79fa685484d90ed572700f9b336518f76f05be0 20484 
profile-sync-daemon_6.34.orig.tar.gz
 ddd9aafb6205234ba7d35775ae4c80f1f2b5f63d 2692 
profile-sync-daemon_6.34-1.debian.tar.xz
 8f6f319cc7734250515cd9ff8ddcc40c75add835 5547 
profile-sync-daemon_6.34-1_amd64.buildinfo
Checksums-Sha256:
 537a205439541f306385840d9b3bcb37f1ec83615a1b5a5554a58d6437627017 1952 
profile-sync-daemon_6.34-1.dsc
 aad8f134738bac025b1d12aa175858e99690775eca5c277070b08ecdddfbde6c 20484 
profile-sync-daemon_6.34.orig.tar.gz
 6abc24767af52d9fa550b10d221d9499ae84582e5d65df8f94c172cdef3cb3de 2692 
profile-sync-daemon_6.34-1.debian.tar.xz
 17e39ebe8f891fa088717fc73dd9e2e4151a4c9088d33bcf6e310fe5f2a60973 5547 
profile-sync-daemon_6.34-1_amd64.buildinfo
Files:
 a0af3299c89e3a4f25435bbef90e7096 1952 utils optional 
profile-sync-daemon_6.34-1.dsc
 88771e05f9f18e418a150880d267b2cd 20484 utils optional 
profile-sync-daemon_6.34.orig.tar.gz
 5f503d756f9c2104bb0e7863df8f6146 2692 utils optional 
profile-sync-daemon_6.34-1.debian.tar.xz
 a4a7473f45a74fa56d8780d19a53b196 5547 utils optional 
profile-sync-daemon_6.34-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEwNbeTg2NJIWRcwSlfhHX8Rn5cbsFAlx6i9YACgkQfhHX8Rn5
cbuMQxAAov7a5gHOzDqdsdiTZSukeYuhvze0UmKWhrklalwgSIh/09QBpEzPRYiX
yTMuSnbuD5cp5G75cdmagI45c8nGBGYeBOwMpYXL23oq5rntk5IVy18XgHB7bgiE
D8Ge+nZDFoCujJ2PQrl1gIgA/Pd9sR//A1zPbRsnOTrFhAeYyMQsJgAxGYtjhZGI
tiu8DVd2LEJKWd9ejTUEaY6kurLAqqE3Al4IPxPX17szanyq77T8zSw4bRzsZWDV
rb5pq4cZY2NyJV6YmJK5o+d9Xy3Y2jivT0MFvJOVOo12JItT3VrxgQoiicGKKnhY
MWgZNVeC0EkIH3bgUyi0YM+DhhoGRYdILILZqO5fazPncw9sD9HtzOwxMr1LOD6G
WIsgdS46QQhXB3Cd9k7c4M1lUWOiIWCyWUMbavBnj/z/OzqWhbSNrFb1zWVX7lpl
HV4agOdSb0VTjbZG3K4x0/rqbqz+BUwhx/v/OopSnkf2CsqWBW7kZJjX4jrLII36
6i4Gp2xIQpoEjtiIq2wzhqBNrkTpi3vf5LY7Gq+Al7mpUxJxcJoaBU/9nsQH3B3X
BHNuDXSi8Xc3HHTW3xGQrPCc7qwimC1It5gc5z8Q+U4zgWTsTV6bTLajnFz3p11S
pyDmEUYhM+7qbKnLnOkk9FjqZC8I/SE56sa6HUh8xNzIveTjY6E=
=Mf6b
-END PGP SIGNATURE-



Accepted nagios-plugins-contrib 24.20190301 (source i386) into unstable

2019-03-01 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 01 Mar 2019 14:22:08 +0100
Source: nagios-plugins-contrib
Binary: nagios-plugins-contrib nagios-plugins-contrib-dbgsym
Architecture: source i386
Version: 24.20190301
Distribution: unstable
Urgency: medium
Maintainer: Debian Nagios Maintainer Group 

Changed-By: Jan Wagner 
Description:
 nagios-plugins-contrib - Plugins for nagios compatible monitoring systems
Changes:
 nagios-plugins-contrib (24.20190301) unstable; urgency=medium
 .
   * [94e6962] check_rbl: Update to 1.4.4
   * [26788d0] d/patches/check_rbl/additional_rbls:
 Refresh against latest ustream
   * [1ca8c61] d/patches/check_rbl/additional_rbls:
 Remove unreliable uribl.com lists
   * [c3d64f4] check_ssl_cert: Update to 1.83.0
   * [5d7462d] d/control: Auto update
Checksums-Sha1:
 2ab15ee3a0c635be6471b4450559d430e92690ba 2379 
nagios-plugins-contrib_24.20190301.dsc
 83c0b2eb88e42c9a86b416db498c0fafb73c4ca6 875856 
nagios-plugins-contrib_24.20190301.tar.xz
 f1b4bad31a96765442f0a1c7b16d76fa87ae9cff 29744 
nagios-plugins-contrib-dbgsym_24.20190301_i386.deb
 b4e74b730de0ad266183b579811bc2757fc9e19e 7874 
nagios-plugins-contrib_24.20190301_i386.buildinfo
 626d1bd4d822d1603847e0d377c5b73cc9559e8b 461260 
nagios-plugins-contrib_24.20190301_i386.deb
Checksums-Sha256:
 cc47ef785fadbda3734efc719fdfd70f10c5156b36eb348f940af8192d7db48b 2379 
nagios-plugins-contrib_24.20190301.dsc
 6c622a109795e6c2a2007c429d9e6d9d02674057a42b531221715ecb3d59d4de 875856 
nagios-plugins-contrib_24.20190301.tar.xz
 ef99085b84bacc8bf60b28ddc46ea639e8cfcc0a5d68bd94e3a2fe4d433ea1dc 29744 
nagios-plugins-contrib-dbgsym_24.20190301_i386.deb
 51db9f73ef6d9156f9bf99d2c0d7631b99bb154405a279b1ee7c5146831b1a0e 7874 
nagios-plugins-contrib_24.20190301_i386.buildinfo
 5c558e7c8dc0bb1ac9df4f9fb9d8bdc137fb9e7506d5c4684443db232e80003a 461260 
nagios-plugins-contrib_24.20190301_i386.deb
Files:
 636e64d1e8a1341f4e73a053e60b02a5 2379 net optional 
nagios-plugins-contrib_24.20190301.dsc
 eecd4d06eb660cfb4198d95717d17c38 875856 net optional 
nagios-plugins-contrib_24.20190301.tar.xz
 b270e30f8cbbce8c54c2f92c4f999de2 29744 debug optional 
nagios-plugins-contrib-dbgsym_24.20190301_i386.deb
 a82eee0ad3b8a5369373723bb8bffe0c 7874 net optional 
nagios-plugins-contrib_24.20190301_i386.buildinfo
 2adf1530db66cd21c11e39c184f5bb4c 461260 net optional 
nagios-plugins-contrib_24.20190301_i386.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXOdRCo+8DU5yq7qbDHBVe1oGUT4FAlx5M2kACgkQDHBVe1oG
UT7BEw//WjTe71nNyvJJhj/zJek0OB4Q6Gz4eFjjEiE9s/yu/Y0fXbq8E/Qpk/4T
HHwEvufaM4oTmybJ/QCdn7weDAizHHikR/UuRGF9uT9rIWDIGA3MG+Y57Rko7//C
gezSv+YqPTHRTOpcYt2E9Y8vI/2O4Y3mTt8w7Q25iaUjysrdmrlt5Mbb/wCH/A8f
mseJ778d49MKqL24nyqJ1kWD+zZyhPrmxCjh1qvOKdfacFH0R++oVg/PpGdkJB6C
baEQmD/u8kbiuwQR1x9kQsf27Tis/0aOQFuTgSPGWxiE2vrYVc16I5CstZjfZXNL
DB28IrUfJe3etzWBuVHrkYfjsl5e4eRD7BjOOk9fj5BuP9+Z1T2/YtueP7oymTEA
s0GE8t00t+dWE+te9Om77Z2lZO048i7wx9KJlY9tLquK/zF4UkiIXCx4cAi1u0Qq
qKfs3HCtEBq80GP0ypCAzSI/NtuWVnCARyjY4j2nJ2dmTYxW+oY09U2nQpJeeEZn
NRTlFG5cUsCVXrDl1miAIrrtIT2YavPfag7xm85B/Qf/54P4mp9MpDU5NvN7U3C2
069Pe0Q3gz9bFh44AOfpV1TBJZsuHfrqZs+QZ/HrdDbSVsc17iEjefaGpSQZv4hT
aFnMUDstyonwk7Wf4ZE545tYF5sjDstDLpxHJoKACHg7W0pLMJE=
=KDx5
-END PGP SIGNATURE-



Accepted aufs-tools 1:4.14+20190211-1 (source) into unstable

2019-02-26 Thread Jan Luca Naumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 26 Feb 2019 09:58:39 +0100
Source: aufs-tools
Architecture: source
Version: 1:4.14+20190211-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Luca Naumann 
Changed-By: Jan Luca Naumann 
Changes:
 aufs-tools (1:4.14+20190211-1) unstable; urgency=medium
 .
   * New upstream release.
   * debian/control:
 - Update to Debian policy 4.3.0, no changes needed.
Checksums-Sha1:
 b93e855dfe81c0ce07f9e19f0a75383acd329b60 1965 aufs-tools_4.14+20190211-1.dsc
 ddb673c9b34fb5b60c6ca42b106fd947a4fb6fa9 125040 
aufs-tools_4.14+20190211.orig.tar.gz
 3410f8e07b362953652fa2abdf7ef9c343830a68 5776 
aufs-tools_4.14+20190211-1.debian.tar.xz
 5b05b174598e35983b46efe59b0958ad14cf1702 5865 
aufs-tools_4.14+20190211-1_amd64.buildinfo
Checksums-Sha256:
 94ff5b0736cfbae0bf4f2fb0bae1bc9077690be37338909b2cd1ede6421402e7 1965 
aufs-tools_4.14+20190211-1.dsc
 5d628b4ee8dc3cc298b26a5eadcf0b49f636eee41a717cbe7f4a445472c3eea2 125040 
aufs-tools_4.14+20190211.orig.tar.gz
 4db79f473dd21f0273534c6854e61ce0351471bfe099c0ef2b577af1931e95bb 5776 
aufs-tools_4.14+20190211-1.debian.tar.xz
 e8a04f5527e9b400726e4fc1eae3e71768b10729a0a6406070198fe5dc8319c1 5865 
aufs-tools_4.14+20190211-1_amd64.buildinfo
Files:
 dea8533074e8186154dc68da6d94ae9a 1965 kernel optional 
aufs-tools_4.14+20190211-1.dsc
 b9ad536032a92e741aba32af3ed841e5 125040 kernel optional 
aufs-tools_4.14+20190211.orig.tar.gz
 ee886dedecebcb9b58d42d966e42ed99 5776 kernel optional 
aufs-tools_4.14+20190211-1.debian.tar.xz
 c869b10bcc5ac3c9f0cacad20a157887 5865 kernel optional 
aufs-tools_4.14+20190211-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEwNbeTg2NJIWRcwSlfhHX8Rn5cbsFAlx2NicACgkQfhHX8Rn5
cbvcvg/9G95fhu8TryTLHY2dHYWCF49QsG5dcR0Iyi7mG/J04cHzniX+xLicD+A5
vJ28Bovf/wb0oWgau2gb1LdceFwy+7DSsVCsuzVrm8r8maczixqNCK0XSExPA9wZ
FjRpLDFpqzaCuMx5DyUIYo2E6oBnXTXB3P9mFENr+lkmNcigAhw08AGq2hBDFxx6
OkcgR5Dc/qudj4EtSgwfOkzGByEJlKCppESM1JzdH0fPZ76asNQUenG3txVx5V/7
9AE4F+rAzLzI7bqfTg+CxPQrJeTOtEjg/i3pRm8A67Xdpc94GLgpJOwUK3L3P88Y
ElDX/CFT9bbWbwWtcVjURj4cDIv5MpY9FtttfDU1zDyVQoZxa0BD2ukX85VRNFMq
A9x5TIjA/Oj8WgSkAzQZs4pEkkf0xf785I0zaLc6fGv/xLJhoQDdWvASzTbkxiwv
1miIaTYaReyUMu74TTWNSUWieA/wuLzl/kFtdBItXzCmPOWFurXbFEi61CG0B0BB
AYSK2ZkMQjZ347NIrRdcU3JbypIfNDyjmg2i9ZzVU0j2ZevKb4U0I4vRr7EqJ2K4
0isgCO23P2ZlQsRhCSK+WqStPGqiLeXuqY2LyAwzR8WZOoTVlHdCX3O8F62dHyb/
H7hOrlG4ATj9UU4jRsgIVOieklbBnHxSrYmd/By2W9XUwJpWP7g=
=FVV3
-END PGP SIGNATURE-



Accepted aufs 4.19+20190211-1 (source) into unstable

2019-02-26 Thread Jan Luca Naumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 25 Feb 2019 17:22:56 +0100
Source: aufs
Architecture: source
Version: 4.19+20190211-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Luca Naumann 
Changed-By: Jan Luca Naumann 
Changes:
 aufs (4.19+20190211-1) unstable; urgency=medium
 .
   * New upstream release.
   * debian/control:
 - Update to Debian policy 4.3.0, no changes needed.
Checksums-Sha1:
 cd2a9076453822c879181f30e5f111849bfb5946 1943 aufs_4.19+20190211-1.dsc
 9ae53a85229b038692b049083a0e2e1a99786a20 246641 aufs_4.19+20190211.orig.tar.gz
 6bb5745043a3413aea35f5f94e398d357ab59f2e 4384 
aufs_4.19+20190211-1.debian.tar.xz
 893ed0ce2b7c35fbc68a6623c0ff33f66e1b0d83 5918 
aufs_4.19+20190211-1_amd64.buildinfo
Checksums-Sha256:
 5a7b796ba0a92755910089e247a25e03c6b7e6053f74a813514b0da1b94bdf56 1943 
aufs_4.19+20190211-1.dsc
 835e616aee4fac49981a38a605f4f5e71a97f61ad7c3ddc38141e9bc7baa60b3 246641 
aufs_4.19+20190211.orig.tar.gz
 0627fa658c879d66d2dca426bae3d9d808c0ffdf54a534953ab5e15efae46dce 4384 
aufs_4.19+20190211-1.debian.tar.xz
 a95642d458e074ea8c9374a745f8f1e808bdacdca12315556b687ec87f9c025c 5918 
aufs_4.19+20190211-1_amd64.buildinfo
Files:
 c7f0812e32d3351a538e21c1c563075f 1943 kernel optional aufs_4.19+20190211-1.dsc
 9d72280a9ed817371c4d705690356fdb 246641 kernel optional 
aufs_4.19+20190211.orig.tar.gz
 90eb06c838986ed0fd19cb3a9413aa90 4384 kernel optional 
aufs_4.19+20190211-1.debian.tar.xz
 5f7d840a8a1eb9e57b119c3ab97669ec 5918 kernel optional 
aufs_4.19+20190211-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEwNbeTg2NJIWRcwSlfhHX8Rn5cbsFAlx0+UEACgkQfhHX8Rn5
cbshNw//QGck3bU+C6CNh1R+fGlcCm4kt9AO9VVIvS+T3tLYot+z/FQ71HYPB3kZ
1H6x/Q0c0DrFUjvnyIXX8m6Kn7jNG4Ll8y91R2f0o1da949JXW+G4TY5/c4WtG6d
jZePDOYZDvM2Ct6jblz+0P06Wl/tD0NKIuTd4Mruf6G3O9VtOXorEFSfXnouIc2e
N4XgkeLtod7YqVoDA1lt15ccFbG0hpYezapufPyoF5Z3OwnxGNA7J7JHQrec5vau
pYWDDalCALvcZYkGoHDi/8Yo+njqsDxhkGX6kfIlYWr+YP3C4RLDaLhwMJkT4gSC
Qo8rM/eCyO8gcNI+hl9Q4KEYa7FylxrJsuvXhTpw9GRyT5tFv+3sYboOde3FE8tX
FsidbdhcvNG+7eOIPsgPzqCEh8DTwIuNCBM0Et15qkpUJgOyoP2AYitYxdhglQkT
ciPGUNk3PTFKJ5mhD6tx4KvHTXIgqM7BwGgPJvldJh/7dexd2XFUjzBnqHuX1tBN
JTZC1oE2+3qsRhwUPk6tO2LQI+LyBxXGPUi3llxcfRr4k/fq7vFAxoCdKAczfh9L
IHeogPuZxIcDhS5GuVJ1xANv1Ayz1e79TE0eKyatHtgeHXUWLm/w7LfgcLBVEoeN
qlpTgPBaLTiqqAxYCqN7Iz6oy2sOs9/9JwMQTlph38DquyRLnFo=
=xnsl
-END PGP SIGNATURE-



Accepted pushpin 1.20.1-1 (source) into unstable

2019-02-21 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 21 Feb 2019 18:17:01 +0100
Source: pushpin
Architecture: source
Version: 1.20.1-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.20.1-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 b72f464d38242f58cb8f2f0cee156af7b637f9af 1732 pushpin_1.20.1-1.dsc
 3c761f47868120228e33c1ad77e09c3a7e0eb281 209791 pushpin_1.20.1.orig.tar.bz2
 029d6d6661df8093560c90d06537468f42a801ed 20008 pushpin_1.20.1-1.debian.tar.xz
 e7f16dbb7204c6b460bd2308e77c10f3589a7140 10813 pushpin_1.20.1-1_amd64.buildinfo
Checksums-Sha256:
 54e165ab7b7b730f4dc7577862454f95018dd7d8ebe5d884148cc2cbc6a4b6de 1732 
pushpin_1.20.1-1.dsc
 ffeeaf0108e1897639dd3dd0ad0eea32b622b8a3199ed904788106dd978fdc50 209791 
pushpin_1.20.1.orig.tar.bz2
 684d55c3eeca887e40d7a931df64e56a59a81efbe818bbaf80938126a01f7fbb 20008 
pushpin_1.20.1-1.debian.tar.xz
 3ae61d17f6d61738aa5f79f55623169a741ee3abe5b667a098948d76ef5c0b3d 10813 
pushpin_1.20.1-1_amd64.buildinfo
Files:
 593914c92060e459edc02ec8bfff9156 1732 net optional pushpin_1.20.1-1.dsc
 b5ef7699f74979d1a84b7dc3393e4039 209791 net optional 
pushpin_1.20.1.orig.tar.bz2
 13ce14f02840913d024b45980b944f41 20008 net optional 
pushpin_1.20.1-1.debian.tar.xz
 2326e7c0c04180bd83f5f41c02b71a4c 10813 net optional 
pushpin_1.20.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlxu50wPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRFOMMAJwSvW3pqLMjT9Wp0cdLceq2P3/fEdOalKRw
4tU+345AdfBN7x4Cczf+fYHic5l3Le6u+mluJuT/DpXyxIH4nWv7o/25MbPt9ia0
/Ca2TkpK2MMlFMVbtD7v4ZyYr/oJiAcuUhjuc/v2IecZLpzy1VT78ZGpybnbcDMi
fcTH8oxbXppKCYsRKpJjolE+qEwp0SrRSaLRhwK7a/KL5EelnpTUQtJlv+giymuk
SjlUq7BbO0Etbx0ofWsWLFlaYN1/A3wHh7jqs8L/0L2hVfnf0QltVH8iqIO0SoHo
C+OgxZ5rK39WfgLLvvh+7zGz8puyNaU/cFsaAUkbj18O4iUa8Ep3WgH2nIiL7Uq5
knPzjYCYE6ZNX749t6KFutp4ugz6ix2sznNaOefmO9Oi83CvV9rnb26no2fBKlYr
L97leQFglQ1iF1u4yVC0DB2EqZIdBbDEydN00cqU+aJeDse55Y19nmmFDIEt0H9L
jD2gwPNdJxm8rvkQIeYzlKBjiy3/mg==
=GnRA
-END PGP SIGNATURE-



Accepted pushpin 1.20.0-1 (source) into unstable

2019-02-20 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 20 Feb 2019 09:36:05 +0100
Source: pushpin
Architecture: source
Version: 1.20.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 pushpin (1.20.0-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 6f91fed280f273416e1034835159164575cc8eb4 1732 pushpin_1.20.0-1.dsc
 5a6f76053b1dd886b5ab06a7ed1242c757bfc184 210325 pushpin_1.20.0.orig.tar.bz2
 b51b97c67a60d3ca13526cbecfe11ea15bb382c5 20008 pushpin_1.20.0-1.debian.tar.xz
 031a25b38628fbc7f7c97d0bad08ae9d0b45ac2d 10813 pushpin_1.20.0-1_amd64.buildinfo
Checksums-Sha256:
 f412added292887cbfa2cb18984b5a1e768222bcd348816cf23c8e1142086947 1732 
pushpin_1.20.0-1.dsc
 8f89113e6d353bab4ddad5cc90e65f3b73b396241742b97d8b7ec75e1de2ca80 210325 
pushpin_1.20.0.orig.tar.bz2
 ece41e0e0bce6aa0c2162addc3fed4cf60d0c01b72ab47597f5daf2a9e38fe7a 20008 
pushpin_1.20.0-1.debian.tar.xz
 9ce4d8976fe8aac65af98d78ee7920e6b84dc275af11dda288c1f540a0dddf9d 10813 
pushpin_1.20.0-1_amd64.buildinfo
Files:
 809ec6cc109156e2026d01213f34d2cd 1732 net optional pushpin_1.20.0-1.dsc
 29781e9f9d3b67bf5fc8c1f6db0f64f4 210325 net optional 
pushpin_1.20.0.orig.tar.bz2
 81e10caac110a6875a86cb4d928f67b1 20008 net optional 
pushpin_1.20.0-1.debian.tar.xz
 f4e35db46b3f1c976e54265cffb9cf87 10813 net optional 
pushpin_1.20.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlxtFigPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRFrML/0q+oEVfC0jK3WXtKv6GxLuaz26GBmwv/VsU
s+B/k4FmHHwFkndhZ31YaLVz8LyukQkan9kgeDldMrGbZYP4Lf+8Kn30+N/R+lbL
ncAvzbvYptLlrcAE3mhvrqZhUoC0lLjpybnh9XxqIHNhV1Jvnm7eb/ApwQTLW0KM
4dYTVOC8zWTLdOxrym/DXYd7A6nIXkvNpwDPqytwlneIljozw176+36Qu5H+1pJN
cOt1JY9wRwpZurZNO7x4M697mfrcP2J1fWSFQHy+80scqBygxlMHHT2oC5vd4HC3
t4hcQLyeORFlKgrHed3Gj4rUTooiROFffK9P2LvKNCWmh+m9iglzUv2SntkdHdb/
Bul22kHoJfctp1c8Z7p6xXYv9n5dMFZ/1t6/Vl0o13BWTYlUEa3SvCRPZF7T3OMV
vkz94O5WVHrK+EIww7PZTe12ilTw1p011w+++btecCSGzkAZLknxSBeOQKO4OGNe
/66AuFNbbwqF2qSbus6cIYXpRhrn+A==
=Wc9h
-END PGP SIGNATURE-



Accepted mongrel2 1.12.0-2 (source) into unstable

2019-02-19 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 19 Feb 2019 09:21:39 +0100
Source: mongrel2
Architecture: source
Version: 1.12.0-2
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 mongrel2 (1.12.0-2) unstable; urgency=medium
 .
   * Build with authbind support
   * Set Standards-Version: 4.3.0
Checksums-Sha1:
 b072319869db33ef2ec440bcbeb517a7c30a37ed 1832 mongrel2_1.12.0-2.dsc
 d47c4a9a063fcdb96c8218151381a2c9384f5367 19972 mongrel2_1.12.0-2.debian.tar.xz
 bcc2fd64f0d6e39287c81c04e3fdfa92a6eea29d 7357 mongrel2_1.12.0-2_amd64.buildinfo
Checksums-Sha256:
 b44519576d7134173a9749001761232884bb0267e9d3b0ed09cb35527b666b58 1832 
mongrel2_1.12.0-2.dsc
 ff3e8ef0b191fa39c3fff28f35419b59bf7611eebb2c1a4205d29f9850fbe998 19972 
mongrel2_1.12.0-2.debian.tar.xz
 5fe6e2899a51ebb17f8f1382ca069961b489d271df9a806ee2f711154f8bc6ad 7357 
mongrel2_1.12.0-2_amd64.buildinfo
Files:
 70dd5dce74580eee7dabd8d52dd2e43b 1832 httpd optional mongrel2_1.12.0-2.dsc
 f85262991254e8475ee5ecdb7e9cae16 19972 httpd optional 
mongrel2_1.12.0-2.debian.tar.xz
 ae2a0b10c078a307eaefe01b9535e310 7357 httpd optional 
mongrel2_1.12.0-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlxrv6YPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRtZwMAJsvdEjrKFSQzR9ygZKX/FzdQ+JNEh7mpUtz
R+ZRbAhVI7tHNJ28BbYQp3NkVUXdMkud9kydxn/S11jE4iv8T+7/9u5gM4TDYbRj
l5GVK4NzE50uDVPB59hKW0PGxgvs/y8pJnL83xHcps0Q2JyqXVb6nD4wRZr8bsKg
KRSC6pqRBZ/5U4fOISzvwNCt/mewjITH1fp7g9/yrlOjLziDRiseBWyro4fmDmQm
eq6ldgx17+czxf5YqXEiW0B1YsHUHKav12Q1zn15OEn5TgMWhTJk57UJ/Qk7aWFX
1e9QUowUAsh7oojU0QNsiCTVXHOXFcWeD/hjQCQbKZrCfWPnKFI8JnNTKxF//sWr
cQBk6BmABJ/cpfi5FIhxR68uJdhkSmTZjA0jWo048Ky/Q3NG9uoY6RgDWnVVY03t
iyc0ikacJeEhyGXe+DjcoRLJhdXI1ClZFHjJmgCPE0f6cNE6Z3Js/Ffr6siDpWgj
lrk5C5Ji6lEWlZ2LEYB9jpFJyRxKjg==
=9Lxl
-END PGP SIGNATURE-



Accepted psi-translations 1.12 (source) into unstable

2019-02-17 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 17 Feb 2019 14:33:20 +0100
Source: psi-translations
Architecture: source
Version: 1.12
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Changes:
 psi-translations (1.12) unstable; urgency=medium
 .
   * Set Vcs-* entries in debian/control
Checksums-Sha1:
 4c734fc6572609a50ddc48802680533c352b7e5d 1487 psi-translations_1.12.dsc
 e64de72be884249bf3a2731defb1b8bf5a56f5a7 949864 psi-translations_1.12.tar.xz
 b858228361fbf641b60719908d3b290ede27e2c5 11205 
psi-translations_1.12_amd64.buildinfo
Checksums-Sha256:
 3cc51fa5429aacb31264bd656b5e32d8f337fdfd16d15027a4cf0c4835cc1cbf 1487 
psi-translations_1.12.dsc
 59154ff89861b816ff02ef00e4c9427350a83fb6c13da1838842ecd369af3932 949864 
psi-translations_1.12.tar.xz
 60a5e7e006c0026e1f346ff8748d07a5439cb9ba7ff386458d4d01cc2f9c32ed 11205 
psi-translations_1.12_amd64.buildinfo
Files:
 76441a267fa095c974fd113f9a64a4e6 1487 net optional psi-translations_1.12.dsc
 5135c9f3747d385aea91828392459df1 949864 net optional 
psi-translations_1.12.tar.xz
 1b448d7d11233dfa95399e7125145989 11205 net optional 
psi-translations_1.12_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlxpch0PHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRKygL/3yglh3QvgxqMjhI+6NQNsW224EwuKxEWb8j
XKN6oWqx/eFCD5edOnNyzWGQ3eJjUQGlc6eGcNG0izX1GnhDgwV7CLd0TDfOYb+8
l7g7q1cUPoL8wtz3cAWY+kMLvGv9rYTt5D5iQ4d1OzSC5xw1ZzgZwrdyB+jXY72R
mugqfnHCtJQvOcu6l1wReGvzUDXWlvB3CxWNRl0/KUih3b/yo313eP93wTtA7muN
dkCrhVXSzp7z9em2hN/40IgBxRMPP/0ZdzJL/BtrRx+RGNodZ/pHyvjTUO0vstoq
MPXNI5AOJeTypCVvArv69Zvj97H3nMk98UJmulM5JCYnNxitjSvDvLLHgt9vCKA7
uNrOMW5lzXkhE0uSPqmwyqR8PYfuBkcQYUBCxHKMgxZ8jwyQevrbopjSRPTNVQmH
K7JbF2jiVd9n0/7pD+rox09WbdcmW3FgFt2BOJdfiCXXa48ygW2mWTZcTgLoDOC6
EH7Py++DZJhEfs+ouhpocRIlxTHO2g==
=qiID
-END PGP SIGNATURE-



Accepted nagios-plugins-contrib 23.20190206 (source i386) into unstable

2019-02-06 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 06 Feb 2019 13:45:06 +0100
Source: nagios-plugins-contrib
Binary: nagios-plugins-contrib nagios-plugins-contrib-dbgsym
Architecture: source i386
Version: 23.20190206
Distribution: unstable
Urgency: medium
Maintainer: Debian Nagios Maintainer Group 

Changed-By: Jan Wagner 
Description:
 nagios-plugins-contrib - Plugins for nagios compatible monitoring systems
Closes: 882982
Changes:
 nagios-plugins-contrib (23.20190206) unstable; urgency=medium
 .
   * [314b5a6] Add patch check_uptime/missing_backslash, thanks Sven Wegener.
 (Closes: #882982)
   * [98f42fd] dsa/*: Update to latest upstream
   * [00a3557] p/dsa/status_directory: Refresh against latest upstream
   * [f96eeae] check_ssl_cert: Update to 1.80.1
   * [b0b3391] d/control.in: Update Vcs headers
   * [f4a960f] d/control.in: Bump Standards-Version to 4.3.0, no changes needed
   * [cec13f3] Revert "Remove check_varnish for now."
   * [5388c58] Adding d/p/check_varnish/fix_for_v56,
 thanks Jean-Louis Dupond 
   * [1abad16] d/copyright: Auto update
   * [e30d668] d/tests/control: Auto update
   * [37ee667] check_varnish/control: Adding automake-1.15 as build dep
   * [2491dc7] d/control: Auto update
   * [c3aa205] check_ipmi_sensor: Update to 3.13
   * [67f7f48] Adding d/p/check_haproxy_stats/interpreter, fixing interpreter
   * [0d80aa9] check_raid/control: Fixing invalid control statement
   * [1dfe25a] check_raid: Update to 4.0.9
   * [23a69f5] d/control: Auto update
   * [bc48c7b] d/control.in: Using priority optional
   * [5bb1937] d/control: Auto update
   * [bc2cc30] check_mongo: Update to 46d27ab
   * [8375691] dsa/*: Update to latest upstream
   * [7bb2be2] dsa/checks/dsa-check-cert-expire-dir: Fix permissions
   * [71b0bfc] check_mongodb: Updating to latest version b33e763
   * [4fdfeb3] check_ssl_cert: Update to 1.81.0
   * [cf52b63] check_varnish/control: Update to latest upstream commit,
 no code changes
   * [679d52b] d/control: Auto update
Checksums-Sha1:
 ee1634f39c6414297e257d7e5153f9618d847331 2379 
nagios-plugins-contrib_23.20190206.dsc
 3260a9828dd0baa91e99a229f8df7c7901968693 874556 
nagios-plugins-contrib_23.20190206.tar.xz
 7e63d9f3d477ebbdfc40b3ae23609eda2619e550 29800 
nagios-plugins-contrib-dbgsym_23.20190206_i386.deb
 968bbeacc22bf2f5a696549c324b062ead0be7d8 7849 
nagios-plugins-contrib_23.20190206_i386.buildinfo
 bb5fa35b9f7631cf65980e554b20f52c7ef0868d 460300 
nagios-plugins-contrib_23.20190206_i386.deb
Checksums-Sha256:
 e8b6a4cac0a21f18960fff3f8c1323262d60f2fd29e8758e0805b8f213f80c95 2379 
nagios-plugins-contrib_23.20190206.dsc
 8fb6ad0632a65ca6d71ac62820f1e8cc7ffb6a7fa18d9a024750268eeb99b6bc 874556 
nagios-plugins-contrib_23.20190206.tar.xz
 31fa814049173a91e88956dc2919bf579d6c5c9c0708c86a8781172053e605f2 29800 
nagios-plugins-contrib-dbgsym_23.20190206_i386.deb
 76c22720553d7f5183bfd4c29bd4800a87147a924a97064337dacb8019a71226 7849 
nagios-plugins-contrib_23.20190206_i386.buildinfo
 77c90f70480de35708e07ed3e6f4ff57533cb7d6baed0e2bef638645dec572d0 460300 
nagios-plugins-contrib_23.20190206_i386.deb
Files:
 7075bd451a0610295500c3e6ab5bf27c 2379 net optional 
nagios-plugins-contrib_23.20190206.dsc
 06f012e114b23ffb8151876b6ce0337f 874556 net optional 
nagios-plugins-contrib_23.20190206.tar.xz
 5377472d40fb456090abf9fa0b7a63ce 29800 debug optional 
nagios-plugins-contrib-dbgsym_23.20190206_i386.deb
 d74a08eae0285bf052af59dcec84d834 7849 net optional 
nagios-plugins-contrib_23.20190206_i386.buildinfo
 6264fd026549f7c30be27f74fbc38305 460300 net optional 
nagios-plugins-contrib_23.20190206_i386.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXOdRCo+8DU5yq7qbDHBVe1oGUT4FAlxa2IMACgkQDHBVe1oG
UT6TIhAAgq7hHm6FMVxC3A57l7W47rNBPa4aOxNo2eK1q9fuBrMAeCi23tHXVU4K
4B23shAiYB85qhkIX9Fn4pT5A9cSCGXkTGJdg1R0B31Mu6InieQynZ811bnmUNIY
Ftct9Xq8hS5HVZRQdO4qHgwwlENmIh6YMfYLJ2gaHbQGHMdqfV48qQTiNOXMnmfx
VYaW0zEmw6O65qCWEGiS12dJbC8jpF3WahuHzta7XZnw2d61WMEXcGce8DW+egK0
K9MpvKwYCfkzW08IYDD66poKy1vs3eqi1zSYVhksJgjyQKD1JYKH9XX/LKbQYRCU
swoEhqbXkHqTnrI8gD22eTMfgArkt0Wb2bwZ7qFXJ3EHKskqLaGbcO4cSp0qQzi/
KOK2TNA5hqI4Kqx9tIWSRpr1B3fXb2y0PFtQsA0C44ZoBj2cvgCox+ZxEwsvXYYA
2dFmIJwR01YiPa1Sq3WbxfTqrMfcoJIyK5xuEPSJCTcF8ZBILpyR3k+xgxQWHRp+
WhJn2U7CFl6B+P47/i7oWoA08xjaS22l9QFebdAeTYrmVRLTsM+6F+MvL2Lxdc2i
Xysu+wF1Bauzwvi/RohK9vH4LMkU1/hCTAhVtQYU1zhohJ9Los6oo0TVPTTHJ6oR
kc8H2B7EZnSQb++aZ2ey3n6hBwH5kAAtJnsL2a8pTeDK3WVefyU=
=cmQI
-END PGP SIGNATURE-



Accepted dns-flood-detector 1.20-5 (source i386) into unstable

2019-01-24 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 24 Jan 2019 10:45:28 +0100
Source: dns-flood-detector
Binary: dns-flood-detector
Architecture: source i386
Version: 1.20-5
Distribution: unstable
Urgency: medium
Maintainer: Jan Wagner 
Changed-By: Jan Wagner 
Description:
 dns-flood-detector - detect abusive usage levels on high traffic nameservers
Changes:
 dns-flood-detector (1.20-5) unstable; urgency=medium
 .
   * [d1ee939] travis-ci: Use xenial image
   * [187c4cb] d/control: Bump Standards-Version to 4.3.0, no changes needed
   * [0f96e5a] d/rules: don't touch opmimisations cflags directly
Checksums-Sha1:
 28dcfd84066a965b8150c384264ba2c42ad74055 1926 dns-flood-detector_1.20-5.dsc
 f0ce585973b152912818f98282bca788732648f4 19909 
dns-flood-detector_1.20.orig.tar.gz
 75dcfacaa5d201c8708ba7829f90bd76afe1b784 5416 
dns-flood-detector_1.20-5.debian.tar.xz
 a2a3327c92d1e7de489af8aa67426c225284ee01 22976 
dns-flood-detector-dbgsym_1.20-5_i386.deb
 654f3c822e28aaafafe517be9a4105d91dd2ef73 6774 
dns-flood-detector_1.20-5_i386.buildinfo
 845f0ffe4b37867c51489e2675215541b0da2cf6 18668 
dns-flood-detector_1.20-5_i386.deb
Checksums-Sha256:
 2b9acc4199e26b74e302dbab16525d061433af1ea0af3411a2b0dc23dd4a115e 1926 
dns-flood-detector_1.20-5.dsc
 0becfb1976d469f26e7d1406acefbff8700f26c0d73ef4731e1ac261d1391201 19909 
dns-flood-detector_1.20.orig.tar.gz
 29123c4494ee7460207ea0b30ad3fc6194e27915df4599fe5849f0190fc1248d 5416 
dns-flood-detector_1.20-5.debian.tar.xz
 34d18dba647839a894b8c812bafd2f52a0d3677d5e0dc72e6220f87fdfb19c2a 22976 
dns-flood-detector-dbgsym_1.20-5_i386.deb
 c547d38afc2bcb095f28681bdf1c8353224ffaf45e84b6ff281c9c22d639c68d 6774 
dns-flood-detector_1.20-5_i386.buildinfo
 49b371a1a4ad956f7db0984a9d05c9a71024d642bc67de93567d2f35fdc0b4b2 18668 
dns-flood-detector_1.20-5_i386.deb
Files:
 520f2cb54af67dc814fa018daf7d000f 1926 net optional 
dns-flood-detector_1.20-5.dsc
 0bca7082210d8cb15ece64a661c7330c 19909 net optional 
dns-flood-detector_1.20.orig.tar.gz
 946f29d48b48f798e1e02eb3b183b23e 5416 net optional 
dns-flood-detector_1.20-5.debian.tar.xz
 e6c9560057b24e0bc6cbd57a39a52eff 22976 debug optional 
dns-flood-detector-dbgsym_1.20-5_i386.deb
 96d16bd39a04f557acceed44f8b49565 6774 net optional 
dns-flood-detector_1.20-5_i386.buildinfo
 acf7d78b6457b85400364cbe7b6b76b2 18668 net optional 
dns-flood-detector_1.20-5_i386.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXOdRCo+8DU5yq7qbDHBVe1oGUT4FAlxJi7IACgkQDHBVe1oG
UT6zPQ/7BSRrIePWtiJ4mkA9YnceWUT5xUpB50Ws3fXrgAHf/0F3fJLVeP87j5hL
9URSYAizIGCpH4F36SPRSzLq51uEL25G81SPFKM8Ey1DXp6u9cY2vqdiUAqfoL6M
wYF0V0OeApwG2b/nSykRRC5tiTrVx08CaG1Q1+C+6vqSPAoqd6ZiLdjqTavUIEAl
Dp9rsxYKg0MSzaIwB6h+7QIuipatc72n22R8wjq+N+6N1/ddE46tA/uPAgf0lGMc
+VpGrJWbJ6sPjnOHN9YmBqyVal3nDGc6qqUf9Ttyu1DM87GAad6TbqM0QzCNr+Ao
CaYQFouG4SLqhr0hHJgCY6H7a/DXFQYvRSG5ULDb+ebCd3wXZllktP/kr0sikzsK
edF61ReWUmAR0Qoun+wlzNypgL4fzDfZ4UNQ31WnxZpTao6yTxrDa2l4JSFFTGs2
zzXi5fSbdeRtku5y3H+JG9RvbZi+CFudbj7d11wv2eMuaZ+yD8h9TOJIP8o8Z5V6
GcHdJy1q5udgJnb04GbsJY2yJ6tRuznXE7gEcd8KSZlIJcouG4tLQp6UpnF9NWwV
Z178zs0xufsG8eTXo4ipAnKwjg/GLY1KRHM0fG2aaW3AogyITw+wxYtO84G+FT4r
ZZ1VOx002gkFqUJWT6/FWrfW81ECg4pxYYO8S9UqgK/TYCUCwhw=
=NUiW
-END PGP SIGNATURE-



Accepted postfwd 1.35-5 (source all) into unstable

2019-01-24 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 24 Jan 2019 09:37:19 +0100
Source: postfwd
Binary: postfwd hapolicy
Architecture: source all
Version: 1.35-5
Distribution: unstable
Urgency: medium
Maintainer: Jan Wagner 
Changed-By: Jan Wagner 
Description:
 hapolicy   - Balancing and fallback postfix policy delegation service
 postfwd- Postfix policyd to combine complex restrictions in a ruleset
Changes:
 postfwd (1.35-5) unstable; urgency=medium
 .
   * [217213b] Adding systemd unit file
   * [8e419b4] Add a bit documentation about systemd (and sysvinit)
   * [62139a7] travis-ci: Use xenial image
   * [ac0ac42] d/control: Bump Standards-Version to 4.3.0, no changes needed
   * [e438455] d/postfwd.postrm: detect existens of command by which and
 not 'test -x'
Checksums-Sha1:
 4a588583f7e60f7cb5e7873d094341eb75381c04 1854 postfwd_1.35-5.dsc
 77277ddca5fc7ce98ff265b12e9a94406e76f9dc 354609 postfwd_1.35.orig.tar.gz
 179a84814c5ca5581599b5a10522742417391fc5 15140 postfwd_1.35-5.debian.tar.xz
 6da3faa9d3c0b3fdb3df2a1a192fa08f7054629f 81624 hapolicy_1.35-5_all.deb
 d280d71da58868f23a90c46df60ee97d042c3dc8 216336 postfwd_1.35-5_all.deb
 33e8fd63532c61b7ca65ef14628b33b77730702d 6612 postfwd_1.35-5_i386.buildinfo
Checksums-Sha256:
 86acb3d8609c610b711f0b0b07a6c8717e9c1f0bf202083bbde11343e40b6f31 1854 
postfwd_1.35-5.dsc
 42abf8fc1229e8a09fa0141b6e23e34c6e1b654a56f6e7556d04067eafc77c41 354609 
postfwd_1.35.orig.tar.gz
 78134d64841764f37063272976ba485d8f349c3408d0d9d3b4c5d47f295be98e 15140 
postfwd_1.35-5.debian.tar.xz
 c013004dbad29f3c2954207e321502a7cffbf357a04f101a35cf5cbfde27ca72 81624 
hapolicy_1.35-5_all.deb
 de8e0044dad70500d448bbecb873b1c15bb6054c5ee96f8409fef8cdc08a6602 216336 
postfwd_1.35-5_all.deb
 75d51790f737c63f12d7f2422dfa520da684b848adc8629281ddbc432e43621d 6612 
postfwd_1.35-5_i386.buildinfo
Files:
 7b2b6961a87613400847e9e8953f 1854 mail optional postfwd_1.35-5.dsc
 8e01328416c735d55efec90dede8bff2 354609 mail optional postfwd_1.35.orig.tar.gz
 4bca993e17fb8b0eb2faddfca170622c 15140 mail optional 
postfwd_1.35-5.debian.tar.xz
 583b25c0c58fa5a1492e30baf4816948 81624 mail optional hapolicy_1.35-5_all.deb
 b08b9dda54e859206fa2e247eff33a6e 216336 mail optional postfwd_1.35-5_all.deb
 32ecd6323cc0bc03fa44b52510eae25d 6612 mail optional 
postfwd_1.35-5_i386.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXOdRCo+8DU5yq7qbDHBVe1oGUT4FAlxJe5gACgkQDHBVe1oG
UT7Q8w//SirWHif/T4ChdcbIPIp7eFh0yKm7qviX5kZ2AqTVrzd6ymONkd77512I
6RVVRoDriwz4i3rYgNSrhG7RMpc9QAHeqijCWpjaoFbmHjRmvTC9fhS21TmQQBX3
p/0EOD0d3bb08iUDnOEagXynx27R3zV1Z2BLjimxpFSBdAs3kBZ5zh4KdcFMorxD
CXVdxeNmyS4zqjbw/y9e1Fw2YrjdJBFpmek2mJ3+1Bt050mJpO436p/PWQqE55sI
N1V6UT/TLfbKKGE/vXg1cQUCwtlark1YVOJlYYxwlF6LNUm8yTkuG7a7WBSC8F0H
SyYoOTMeSDiHXujZqJ8DdO03RKIztCVG9ANAiOnkfRhpq2rRSfW+jaCX64m663Xe
nmxW9hWjGWzBo0RIWAt1npQlAGj7/JOnINGjPYNVSnaSQ5FjdJJU3FLlwNMxOYF9
sFvX9ZPmE0zSyL7RBIGnjPf6eKXG0VB6pc5f7zGAt0GFTWn12tYJV0beksSMo3cv
BxhPMeyRxsOqOSyhOkzXDu+9JqcE/cyW1SW2FI3BtigpAPRyElQI/fVtM0dVmhUT
Wvh0QM18BmrINK9hN5Aw5kQzvTpTXaKwbwbgL6SdivrSok5IJRYUqWZmHUVoH8rm
NxUKXpYRJ9KsQmPV/X8mYlRnSJeqW4+/Iuk5eSzhbn0tTtAQAyc=
=f+1f
-END PGP SIGNATURE-



Accepted ps-watcher 1.08-9 (source all) into unstable

2019-01-24 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 24 Jan 2019 08:18:46 +0100
Source: ps-watcher
Binary: ps-watcher
Architecture: source all
Version: 1.08-9
Distribution: unstable
Urgency: medium
Maintainer: Jan Wagner 
Changed-By: Jan Wagner 
Description:
 ps-watcher - monitoring a system via ps-like commands
Changes:
 ps-watcher (1.08-9) unstable; urgency=medium
 .
   * [adb45ae] travis-ci: Use xenial image
   * [910f8b9] d/control: Bump Standards-Version to 4.3.0, no changes needed
   * [14f90dd] d/control: Priority extra is deprecated, using optional
Checksums-Sha1:
 1cfd046d41f5a101cfe060e1d6ed8f6c1218eda7 1898 ps-watcher_1.08-9.dsc
 921888a9c700f9f58a7404ab2e71329a96076d93 134850 ps-watcher_1.08.orig.tar.gz
 d77c0d13ba7f534f1cd1a4a3f1e9947abef61343 8928 ps-watcher_1.08-9.debian.tar.xz
 bcd3087ef37dce814edafb2dba03f390d4669c84 40016 ps-watcher_1.08-9_all.deb
 07fb992cb3e4ced4c384cc456b3d0ea49f645887 6407 ps-watcher_1.08-9_i386.buildinfo
Checksums-Sha256:
 109402193d68bbef5877c5453adfb6f42b959f885c0cb5d076fff110cd033f17 1898 
ps-watcher_1.08-9.dsc
 2bd9a45123d720468b0c84549e124fddd2553f76838797b0ad1b19202760ca57 134850 
ps-watcher_1.08.orig.tar.gz
 b71e923d280ebcfc012d13d4cac325c9ba6d44f79c41681acd58a6110649d549 8928 
ps-watcher_1.08-9.debian.tar.xz
 5edc8bf15fc70e8c76c1d2962d56dc55fba873ec308863a7e5090916e60c902f 40016 
ps-watcher_1.08-9_all.deb
 4505238d16a029121adae07d574b4e4a39a20d7891485c360c50292b547857e2 6407 
ps-watcher_1.08-9_i386.buildinfo
Files:
 843a617e58d43bfa21715d8a1c6da051 1898 admin optional ps-watcher_1.08-9.dsc
 fd350ba30716ee5727e53c0f7496f16f 134850 admin optional 
ps-watcher_1.08.orig.tar.gz
 bc65cbf418da6557dc1cc0ed0ba328da 8928 admin optional 
ps-watcher_1.08-9.debian.tar.xz
 99829e819947f60e4b804608da1204d2 40016 admin optional ps-watcher_1.08-9_all.deb
 313ca1d499d9da70deee1106e4ba2a05 6407 admin optional 
ps-watcher_1.08-9_i386.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXOdRCo+8DU5yq7qbDHBVe1oGUT4FAlxJZ30ACgkQDHBVe1oG
UT6/mQ/+Ou0gylN8PSCc3JA8EoO0keX9icl/kl4W44emxGPnz6B/5AKHqSgqkiSC
qPTHGK2bq4h5YW1oG3fXpRLLk0D/CrKhSTj+BamCpIon72y18ugcYnSRkUmxOuCr
TAOrJNykhbwQ1Hh6WfSpxk+jSxlPAfngXQKvRz+ujZieT7xIkJQo76k0njmeCxgv
78S7V1EXRjFqKHJhRGH8Ead3c3Nc7bnGnfaRERgZyIC4p5Ndc0pNGIMS1FYljl3E
FtXGR4ENzhD0Z43acU2W5jcaHlely0SJCYE35ouycMCdPueCzN8TtOvMXgCb3gU8
Wz3LznVGWQsqw4o8ZWChqdNHB0J1gGItkynLYxwIGvKhQ+R+VkHQI/VnNKNiDf+7
x1HPQb5BvT6Mph9koMmitFZsEDbXoSNY6BQDWs9FiBECxDiwgNArpaXi8EyjK/Pn
TehzAsE6SuUM/R1nDbwki+QdpdvoD0JxWAungmU0xdELm49JPOkM90RN/Ij27lXL
fXmlPxwfs4l1EbehAkXmW6cqXO3zJ+bWaFmh4VeNxpFVX2IgpliKb5I19qHIy58Y
GNi55pmawwLnpWHaySCH2X/K3Odv72s2EC2PGwr0kqYzpvy1PL60ZilTbUPjAWDv
I42wxGDe4zNXRHfUCPc7bhVu91hKHuMfuH+anQoi8DXhovAn/cI=
=B2jN
-END PGP SIGNATURE-



Accepted nagios-snmp-plugins 2.1.0-1 (source all) into unstable

2019-01-23 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Jan 2019 20:44:01 +0100
Source: nagios-snmp-plugins
Binary: nagios-snmp-plugins
Architecture: source all
Version: 2.1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Nagios Maintainer Group 

Changed-By: Jan Wagner 
Description:
 nagios-snmp-plugins - SNMP Plugins for nagios
Changes:
 nagios-snmp-plugins (2.1.0-1) unstable; urgency=medium
 .
   [ Jan Wagner ]
   * [75687e0] New upstream version 2.1.0
   * [181c319] Refresh patches
   * [568042e] d/rules: Adjust new documentation source path
   * [ea34bcb] d/patches/51_fix_privacy_doc: Remove more potential privacy
 breach
   * [117e400] d/control: Bump Standards-Version to 4.1.1, no changes needed
   * [f2e8ac9] d/docs: Fix location of the README
   * [c0535e4] Adding .travis-ci.yml
   * [019d443] d/control: Update VCS-headers
 .
   [ Bas Couwenberg ]
   * [c07faf2] Bump Standards-Version to 4.1.5, no changes.
   * [53cdb54] Bump Standards-Version to 4.2.0, no changes.
   * [70b7138] Bump Standards-Version to 4.2.1, no changes.
   * [3d095b1] Bump Standards-Version to 4.3.0, no changes.
 .
   [ Jan Wagner ]
   * [cb66729] Delete old unused patches
   * [bcc13b4] Adding d/p/10_check_snmp_storage_error_handling
   * [af07b7c] Adding d/p/11_check_snmp_int_agent_workaround
   * [890a780] Adding d/p/12_check_snmp_mem_perf
   * [f45e77a] Adding d/p/13_check_snmp_process_new_features
   * [cb17d7e] d/control: Updating Homepage-field to
 https://github.com/dnsmichi/manubulon-snmp
Checksums-Sha1:
 8ca131b3f4b73f07c75fbf8eea9b4765ecd0b4d0 2044 nagios-snmp-plugins_2.1.0-1.dsc
 4c9d91f38a5e90a8f9df36b428dfb0343f5a3f5b 126375 
nagios-snmp-plugins_2.1.0.orig.tar.gz
 a7b6f84f1e317d4527c46dc298b42e6b8e3ff9ea 17360 
nagios-snmp-plugins_2.1.0-1.debian.tar.xz
 baff4605c51d67ae6d6f874b0364d423a8c16f36 88396 
nagios-snmp-plugins_2.1.0-1_all.deb
 0d0633a359f15c2141e0911aac0a058eda83d81f 6445 
nagios-snmp-plugins_2.1.0-1_i386.buildinfo
Checksums-Sha256:
 0d7cf80087072377c1367727d1dd30e473494c985aa034aa23cc89a98691ef9a 2044 
nagios-snmp-plugins_2.1.0-1.dsc
 fc0736553b1e59f8751d76e241c377bca7b76d99e22934cc538e70176664eb1a 126375 
nagios-snmp-plugins_2.1.0.orig.tar.gz
 1905dc61de3a23ba9842f3697eb0e2e6e41736cc7a67da3a8e39ab266c58af2c 17360 
nagios-snmp-plugins_2.1.0-1.debian.tar.xz
 fff1ae879efb3336594b668d7a29f16b8b83408fa7fc8c5e76e30f3e9da870a7 88396 
nagios-snmp-plugins_2.1.0-1_all.deb
 306f7e1d32c7b1e065c5f7a59e3e47d7c3e5f798946f149cb785fbbd200b9d78 6445 
nagios-snmp-plugins_2.1.0-1_i386.buildinfo
Files:
 70a1bfcef234a67abf9f9316da2dee47 2044 net optional 
nagios-snmp-plugins_2.1.0-1.dsc
 604a60ecb0649bf3d693b855d3139b49 126375 net optional 
nagios-snmp-plugins_2.1.0.orig.tar.gz
 3f79714f26a447040014f234a462b9f0 17360 net optional 
nagios-snmp-plugins_2.1.0-1.debian.tar.xz
 7289b67ae06c71398a645669da108bc4 88396 net optional 
nagios-snmp-plugins_2.1.0-1_all.deb
 97c4f62316a30ffb8424fa64ba48d2fc 6445 net optional 
nagios-snmp-plugins_2.1.0-1_i386.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEXOdRCo+8DU5yq7qbDHBVe1oGUT4FAlxI3NoACgkQDHBVe1oG
UT41LA//RI1u/x+rjg+mE7Mm3zcXnRnV7V+41yiYZhPjvMZKqRy51eEFfTokJuLU
4BOQLz8wwP4uQIDAeKvlvPOgBdlLtzjprru4w/qfR5IRLyfpy1TDf7tG/s0aW/Ep
9ZBdv34zsuXObGPu8s4WVokyhX9KQiPVpQ0bxhGkyN4oKYWTbQoYgZuNpTIm6Wz4
5l50GnQwvGJ4hrt85G8KvzhdR8ghRPWJ6lEM3jjfIM4ak/rOQRDXB8mOaVwExTqO
wWFEniaAiJLoKPur5jgsf79AJe+2iT3vISjp6xOZjWD6JgWSXwqaWEL0rK3sLxkq
09gCGI76VudLKHeVAaZXZlnZAuVm2FeZmqLHJ84eRLpw7KlNbDheYzGTWEzvzWCu
fnshgR7XBojEDWhhEM08oGGhA8ZnHb9Dd7j0lLufCk0uxHR62f0hymn9Zfn/Cy8x
W/vjVg3+g5FaIhcCa2WFXlk/HB3SEpZqIgSSg0NC/kfNRB4EYz2PSz48p8IOXS0h
OcBaJO3h7AN7nmKww/6a8sTqIDA93TRHvTdfEexi445Q1SpP6qamTtU39+AP5O4K
OBrNvSL9E01acMxf0f7AIzb0ze4ns3RabVh/+PXHUTDBnIm4v9+Ew3ETxLpYpcHN
2TfdUb4ZX9u+DawYmqZ0YuNN6959L8ctOMfM45XoA481RFe4YoY=
=ghdE
-END PGP SIGNATURE-



Accepted monitoring-plugins 2.2-5 (source i386 all) into unstable

2019-01-20 Thread Jan Wagner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 20 Jan 2019 19:40:25 +0100
Source: monitoring-plugins
Binary: monitoring-plugins monitoring-plugins-common monitoring-plugins-basic 
monitoring-plugins-standard
Architecture: source i386 all
Version: 2.2-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Nagios Maintainer Group 

Changed-By: Jan Wagner 
Description:
 monitoring-plugins - Plugins for nagios compatible monitoring systems 
(metapackage)
 monitoring-plugins-basic - Plugins for nagios compatible monitoring systems 
(basic)
 monitoring-plugins-common - Common files for plugins for nagios compatible 
monitoring
 monitoring-plugins-standard - Plugins for nagios compatible monitoring systems 
(standard)
Closes: 879084 905318 907484 914092 919375
Changes:
 monitoring-plugins (2.2-5) unstable; urgency=medium
 .
   [ Bas Couwenberg ]
   * [890cd8c] Bump Standards-Version to 4.1.5, no changes.
   * [59073f6] Bump Standards-Version to 4.2.0, no changes.
   * [e07a06c] Bump Standards-Version to 4.2.1, no changes.
 .
   [ Jan Wagner ]
   * [40b9004] travis-ci: Use xenial image
   * [56443b1] d/control: Add Provides for 'old' nagios-plugins
 .
   [ Bas Couwenberg ]
   * [c70710f] Apply path by Andreas Henriksson to fix usrmerge issue.
 (closes: #914092)
   * [377eec3] Bump Standards-Version to 4.3.0, no changes.
 .
   [ Jan Wagner ]
   * [73f2273] Add d/p/14_mariad to fix FTBFS with MariaDB 10.3.
 (Closes: #919375)
   * [4f75b28] Add d/p/15_check_smtp_initialize to fix check_smtp with custom
 commands and SSL
   * [61315ee] d/rules: Configure with sudo (Closes: 905318)
   * [d8a134e] d/control: Add sudo to Recommends
   * [1fe1cd2] Symlink /usr/lib/nagios/plugins/utils.* to /usr/lib/icinga/
 (Closes: #879084, #907484)
Checksums-Sha1:
 e5a69a2b76194fd88bc371998bd25b314e782d86 2535 monitoring-plugins_2.2-5.dsc
 782ee59ed5be6136337cce32f48875fe8efba118 1590008 
monitoring-plugins_2.2.orig.tar.gz
 a3b50468d81d3c6855b85228be6b13d6a4cb9f3b 41624 
monitoring-plugins_2.2-5.debian.tar.xz
 984b79f340729caac4aec2e9ff803c1bd1928b3e 1590168 
monitoring-plugins-basic-dbgsym_2.2-5_i386.deb
 704bde15d9a91afda572f58f749f86f8a2f2263e 305288 
monitoring-plugins-basic_2.2-5_i386.deb
 a55aa161a3caed52221a93bf477997dd6ee1330e 84952 
monitoring-plugins-common-dbgsym_2.2-5_i386.deb
 82a78be17a84dca2ad5041e189a8ba915e24ebd1 70232 
monitoring-plugins-common_2.2-5_i386.deb
 6ca2ade15aa765349ed93238458bc5c70da6ef0d 710760 
monitoring-plugins-standard-dbgsym_2.2-5_i386.deb
 f9334ce1869b42092a9a6709c91f778875f0f67b 159908 
monitoring-plugins-standard_2.2-5_i386.deb
 1493d627bd3d2be3b03508eed6d5b2d666dab463 27640 monitoring-plugins_2.2-5_all.deb
 dbb536b79be37ab631943a1649bd029d7e431926 9520 
monitoring-plugins_2.2-5_i386.buildinfo
Checksums-Sha256:
 e12ffb4dc208e2bd301079828493f91289976d5ded02ea907ddb3ff1d7d52bdf 2535 
monitoring-plugins_2.2-5.dsc
 0f01169159fc82a4bb0e6036f2d28b79c4b9e04a07a514cffd499cb31680e8fc 1590008 
monitoring-plugins_2.2.orig.tar.gz
 a890ddf5d7f5b45942ab6373ba346c531498f19d60da52a4a6ace7379bf0fc48 41624 
monitoring-plugins_2.2-5.debian.tar.xz
 11df7746fbbf270850a4cbae7fd5b19c770c4c851b4130e56a8805389642e474 1590168 
monitoring-plugins-basic-dbgsym_2.2-5_i386.deb
 975b2ec25eca2a956efa890f6de0d6c2e9a11637f4945e48d8a35a3883c10b0a 305288 
monitoring-plugins-basic_2.2-5_i386.deb
 456491d7c92b57ada86a48a9b86ff1f60fc2cb54565e6fbfc7508c93fac0f75d 84952 
monitoring-plugins-common-dbgsym_2.2-5_i386.deb
 9f7e27c6f210a49f98bf642f559d2b3462185ce78ccf33e63eb824e23abd4088 70232 
monitoring-plugins-common_2.2-5_i386.deb
 0da1e61c31c47cb62b776ff8d1562a81419de25bc132311026689cc89b10ccee 710760 
monitoring-plugins-standard-dbgsym_2.2-5_i386.deb
 50dafe79f075430cb00b2206de682ebb66d08db0dd619f28ed31054433f30e07 159908 
monitoring-plugins-standard_2.2-5_i386.deb
 0f401a56c08c3afa07405469360011ed1d1cd3c7b97117fc779977526812879f 27640 
monitoring-plugins_2.2-5_all.deb
 94fa3da8910160050aa3b5ac07de055db2460b4776e1224d35c14620d16b77ea 9520 
monitoring-plugins_2.2-5_i386.buildinfo
Files:
 88ad5c541142bc6596d215b54fb2e6d6 2535 net optional monitoring-plugins_2.2-5.dsc
 401a4122c5aa901c0d44e729a9ed501f 1590008 net optional 
monitoring-plugins_2.2.orig.tar.gz
 f614ab4127ab039544dc9b4a04e1e865 41624 net optional 
monitoring-plugins_2.2-5.debian.tar.xz
 a464a095b7fa10a064c447b7d785a735 1590168 debug optional 
monitoring-plugins-basic-dbgsym_2.2-5_i386.deb
 5cdd19dbc0f339cd3d0a8dc842deae9b 305288 net optional 
monitoring-plugins-basic_2.2-5_i386.deb
 5457b98729efc6983c1b00bf7c5e437f 84952 debug optional 
monitoring-plugins-common-dbgsym_2.2-5_i386.deb
 973e1c2bfd38efca783932ee79104c4e 70232 net optional 
monitoring-plugins-common_2.2-5_i386.deb
 965561e5c351eb58b374acd4463e162e 710760 debug optional 
monitoring-plugins-standard-dbgsym_2.2-5_i386.deb
 f4245907b0678199d123029eb6a21f9e 159908 net optional 
monitoring-plugins-standard_2.2-5_i386.deb
 4c06d3eb63adc45da0b6edbfe507b9f3 27640 net optional

Accepted pushpin 1.19.1-1 (source) into unstable

2019-01-10 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Jan 2019 21:17:11 +0100
Source: pushpin
Binary: pushpin
Architecture: source
Version: 1.19.1-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Description:
 pushpin- HTTP reverse proxy server for streaming and long-polling services
Changes:
 pushpin (1.19.1-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 5b43972ed1795f34b227d39bcb0c67c34d9171bc 1732 pushpin_1.19.1-1.dsc
 8e3c26d4ae7940bc5edf52e18aae97e17e00285f 209882 pushpin_1.19.1.orig.tar.bz2
 8f3a084010d88af43d6684a9d1c31b2fe654650c 19984 pushpin_1.19.1-1.debian.tar.xz
 0d7cae4e5bdf11756195fb218e2302029bd78ff5 10670 pushpin_1.19.1-1_amd64.buildinfo
Checksums-Sha256:
 435ab8dd698389334ff462e019143b7bc8bc1d6a1c93dbfec7b984aa15c1ffd7 1732 
pushpin_1.19.1-1.dsc
 69453b42585b79384b54c73722b451967f236bccf12d9768a90eb65a559258d3 209882 
pushpin_1.19.1.orig.tar.bz2
 68e2c855f1f5d6bb90c30cb81c05a2677cca563de645b91cb60a1a616d01506e 19984 
pushpin_1.19.1-1.debian.tar.xz
 bb4157fb6e27f253cc0564b323f34438f7f1c604aa6b0a06e6d21c6c62e35002 10670 
pushpin_1.19.1-1_amd64.buildinfo
Files:
 888e103f32298b1680fb9218b794fff0 1732 net optional pushpin_1.19.1-1.dsc
 b19a2bb0ff7463d24d038f1c88d13c5e 209882 net optional 
pushpin_1.19.1.orig.tar.bz2
 1b4584637a8b7dd896ddabb05458de3a 19984 net optional 
pushpin_1.19.1-1.debian.tar.xz
 43eff33bb09d616400cfa39932d00f2e 10670 net optional 
pushpin_1.19.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlw3sxgPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRakkL/3da8pdm9M3tBFCVL9fZGV6d+xXbReJNAPdR
nMs8oTZgfqLprc1WEW4fG59OTnJaMZj/SDBMDBytLqr0ZOoI5Z7FiPgNDlqBQt9m
QGiJUZHFykqAIyIifObzFJ8Ejw2VqV6NiJfhbqBAqIg9yd+it9mo3ZrnLHhkwt0c
5Rx5BCY5WzDlqylSMhrza1/TqPGKG548p1Fem1qxs2FGSAQtkjxBDPq6cLgio3pX
hRAh/V8uspTrHckHkoOOuC6nqGu6sMsP/UXc3kIO5xVaNdMH/7PPcN/LxKA5I9Bq
Hll/wSnwrvWJE0MlK8fx8SZzRiqpxStP/W8DgX4WTdcx9lpiwXiHvlM5MaahGyhx
T1h/RBVMgyO9tFa4tNzFR3qkV/Nd2KfaSJdAuhTN/B54xTZ7q1n0e4SPYVuHEZTO
2QE6oym7zyr4+OVv1muQljqXFCkXlTorLw8kkNP7nn1vyT1Bj8vFj1eI9EKEm8xr
/VhG9jHWygkJArsXJPEar+UlXe1XMg==
=m2wQ
-END PGP SIGNATURE-



Accepted sniproxy 0.6.0-1 (source amd64) into unstable

2019-01-10 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 Jan 2019 21:18:35 +0100
Source: sniproxy
Binary: sniproxy
Architecture: source amd64
Version: 0.6.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Description:
 sniproxy   - Transparent TLS and HTTP layer 4 proxy with SNI support
Changes:
 sniproxy (0.6.0-1) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * d/copyright: Use https protocol in Format field
   * d/control: Set Vcs-* to salsa.debian.org
 .
   [ Jan Dittberner ]
   * New upstream release
   * Update debian/copyright
   * Add debian/gbp.conf for git-buildpackage
   * Fix policy violation by removing ENABLED=0 from
 debian/sniproxy.default and using dh_installinit --no-enable in
 debian/rules and bumping the required debhelper version to support
 this functionality, bump debian/compat to 11
   * debian/control: remove unneeded Build-Depends dh-autoreconf
   * Bump Standards-Version (no changes)
Checksums-Sha1:
 3f06bc38b4ea546fd8a734b4859e4f67c61ed952 1570 sniproxy_0.6.0-1.dsc
 26ff187c46eb4f98f9f1731cd26f341383ea6454 78515 sniproxy_0.6.0.orig.tar.gz
 acb01af046925cdbb3d3905b8717cd81313abc4d 5424 sniproxy_0.6.0-1.debian.tar.xz
 f9a106771a07bd9ee10eac2609165a78d4f6948a 99840 
sniproxy-dbgsym_0.6.0-1_amd64.deb
 1036bb0afe7f40609a8f1c32633db70009a72747 6443 sniproxy_0.6.0-1_amd64.buildinfo
 faa99942a1260c6e3c6e448d55be72d1ae3baf3b 39896 sniproxy_0.6.0-1_amd64.deb
Checksums-Sha256:
 dfc687df980517e49d887e137e5a2e4fa8cb3ae6cfbd5f1a4eb4812e3e57c3cb 1570 
sniproxy_0.6.0-1.dsc
 d73c77a9fa8199ae7ac551c0332d3e0a3ff234623f53d65369a8fa560d9880e2 78515 
sniproxy_0.6.0.orig.tar.gz
 36181220534001a4b3474131f40c9485c066003f9f3a1cae366b2fb17c898267 5424 
sniproxy_0.6.0-1.debian.tar.xz
 b0692429d5ad20ecad10e5a53f91598562b81dd4c65b7d27e86e539a3e244375 99840 
sniproxy-dbgsym_0.6.0-1_amd64.deb
 6a5cfe7abbb90da8da5e7a3c59fa708670867fbe1bf9379235515c9e5d281ac5 6443 
sniproxy_0.6.0-1_amd64.buildinfo
 71326b8ab10df0685acd07a226653f5029acc1046f73bac77dda326913fa6ab6 39896 
sniproxy_0.6.0-1_amd64.deb
Files:
 eb84bf5fbf83e4135730c336868644f4 1570 web optional sniproxy_0.6.0-1.dsc
 bcfb5d1efe045b8b356a4229f2339f02 78515 web optional sniproxy_0.6.0.orig.tar.gz
 50f56815bd9e19aeb68a374eaf7aa747 5424 web optional 
sniproxy_0.6.0-1.debian.tar.xz
 3e137a8cb2b4a1a81d0e41f50c206f18 99840 debug optional 
sniproxy-dbgsym_0.6.0-1_amd64.deb
 6e3b9174d706ce487eb5108d82c3070e 6443 web optional 
sniproxy_0.6.0-1_amd64.buildinfo
 b47ead026b3dfe3888028c77fca5a471 39896 web optional sniproxy_0.6.0-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAlw3qU0RHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdkMLgf/cMQgtFWraXuQXL8iniSxi623E4DgEp68
3quuTUa5tohLdgB32lJvx58FXBshGZm9z4XKD0AEJtVEmLLXR4PWzCAjsX06dUtX
AZRXp9BQC6d1mMGftaiU0LIwV9oCOTqEfoJ27MnD3YIO7l1aFfbanbks4m8kjeeP
q+hTI8dAK+7Orjp21JX0y8mzk+hgRmZSkiXQdOtrlLdcKvdGL0eQ9n+GYbKHmanJ
tPsgLjchyoEbHeUEJsIxXBVnk07UWv1ks2f2sqxVv9vSj+kFxypn8vGKo/e3QvrS
UhI9SMfWJfkAzajAwIvxU49WAZpkG94pjkYW/WMFdDy3Nr9k91HSTg==
=eXho
-END PGP SIGNATURE-



Accepted tinyssh 20190101-1 (source) into unstable

2019-01-07 Thread Jan Mojžíš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 02 Jan 2019 06:01:58 +0100
Source: tinyssh
Binary: tinysshd
Architecture: source
Version: 20190101-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Mojžíš 
Changed-By: Jan Mojžíš 
Description:
 tinysshd   - Tiny SSH server - daemon
Changes:
 tinyssh (20190101-1) unstable; urgency=medium
 .
   * d/tests - added 03exitcodes test, it creates ssh connection, exits
 with status 0-255 and checks if tinyssh server sends the status code
 to the client
   * d/tests - added 04sftp test, it tests sftp subsystem
   * d/tests - added 05authorizedkeys, it tests if tinyssh rejects login
 using malformed authorized_keys
   * d/upstream - updated minimal signing-key.asc, removed extra signatures
   * d/tests - fixed 02handshake tests. Runs and tests tinyssh on port 222,
 because default port 22 in autopkgtest environment is used by OpenSSH.
   * d/tests - added 06transfer, tries to send random data to tinyssh server,
 than tries to receive data from tinyssh server and compares checksums.
   * New upstream version 20190101:
 - tinysshd binary optimized for smaller size
 - created multi-call tinysshd binary
 - removed aes256,nistp256,hmacsha256
 - added postquantum KEX sntrup4591761x25519-sha...@tinyssh.org
   * d/.links - tinysshd-{printkey,makekey} is symbolic link to tinysshd binary
   * d/control - bump to standards version 4.3.0 (no modifications)
   * d/tinysshd.default - removed aes256,nistp256,hmacsha256 options
   * d/control - removed info about aes256,nistp256,hmacsha256
   * d/compat - bump debhelper compat level to 12 and use debhelper-compat
Checksums-Sha1:
 7d6b278b985b10016a5824dc1579bdce301f7271 2215 tinyssh_20190101-1.dsc
 5d3924b40ab8af43dc7b596939b80f87e74d06d1 244848 tinyssh_20190101.orig.tar.gz
 728a1b51970f3b7b4517c30b0b1d2ac038bfe8c1 833 tinyssh_20190101.orig.tar.gz.asc
 7b02f02d0850ab6cb6183984fb59212ac6fe905c 14048 tinyssh_20190101-1.debian.tar.xz
 708c87fd262fffee6064a9134a76e1df459a5ac8 5763 
tinyssh_20190101-1_amd64.buildinfo
Checksums-Sha256:
 41d793a3c53d17c012d2a2b03c6bf4351c4ddf4528457cc1458b9eb2def0b400 2215 
tinyssh_20190101-1.dsc
 554a9a94e53b370f0cd0c5fbbd322c34d1f695cbcea6a6a32dcb8c9f595b3fea 244848 
tinyssh_20190101.orig.tar.gz
 1d33ee6c174831a9870f0f56343175ece3b76095a15191f715975c6712624441 833 
tinyssh_20190101.orig.tar.gz.asc
 602afb42d7626eb479c1617e3b4227611967e435f4fc5d285d2665a032452978 14048 
tinyssh_20190101-1.debian.tar.xz
 0f53fa5c5293adca8998ecf2dc6d2be9b9a1f6c8eb9228a693894f0d68967b28 5763 
tinyssh_20190101-1_amd64.buildinfo
Files:
 4fe3faf6a9c308bff50a41334f1c5127 2215 net optional tinyssh_20190101-1.dsc
 11cad89e3c31d5bdd6da6aea00edd52f 244848 net optional 
tinyssh_20190101.orig.tar.gz
 ff65df6aeaa1750115821cc4b6815629 833 net optional 
tinyssh_20190101.orig.tar.gz.asc
 a53d3c6cb36450241b13ee8f164a353c 14048 net optional 
tinyssh_20190101-1.debian.tar.xz
 24503151c161081689e4ce81240390c9 5763 net optional 
tinyssh_20190101-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEPZg8UuuFmAxGpWCQNXMSVZ0eBksFAlwzLO4ACgkQNXMSVZ0e
Bktq3w//RNHxkWb5kZZHeAuh5Czq8iSRp45FXo5TG1X5gyePR4jBMaZYyJEgxpnM
6Tld5YGaF0GzdnrRQ2GTjPwW2iulPKwUX3EX6WcFNm5PQXroTl0Blu6re0JayGeU
f99Uo96UeQG7qTGcPgcSEuNMkS3AiR0oIK/Y9wCqjPZpqdWa1nCZ6Cwk+5LywRwc
JtqTH24Fkppn5Yy3dMKTTYufJ31GsF3xN9Ds5MIxr6hr0ZwP5UtViQdKh156LHF0
UQePqJlCic0ux4LOnWtulCb1bKf0XufXQ7WZMhq4S9ht90EodNkwfGb8blLpwHT5
YeY5mOMl9q6fh1DyYdp7JUyiAp3a7iNitkheY3wA6wNXGDFwDr/Fzx/lYmqwmeMz
/twJ4O5jTAaUT++Xjh/L4gcLNuVUmpGL+JxeRLroztM6flnOiic+YS+/ompE8Duq
2BcFgTTYV0/PNqnLgtxSoy1m2vGi7jWt7XWoe21vI+/1pdRUSBxwzdGw9McQQ138
0GmpIwndVX1A80o4BfHdpeKmoPDaNjluhvWeDGkS4XtJikEcLxE0vHuekVUyMzh6
GukYEAVROyRRgUVe7qYz/PMBqrxHQqLvLhaScBwyaCr9M932gst2XEIqto9TrcQe
vhTr7DwYxxFqnYwoAhyg8fxs26tI3uWuHr4ZMUePOI66B86/4YE=
=77pE
-END PGP SIGNATURE-



Accepted zurl 1.10.0-1 (source) into unstable

2018-12-31 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 31 Dec 2018 16:13:57 +0100
Source: zurl
Binary: zurl
Architecture: source
Version: 1.10.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Description:
 zurl   - HTTP client worker with ZeroMQ interface
Changes:
 zurl (1.10.0-1) unstable; urgency=medium
 .
   * New upstream version 1.10.0
Checksums-Sha1:
 fb81c17aa8b0579b800d607d95813ee34c85c7d6 1748 zurl_1.10.0-1.dsc
 958b5cbc6d07af43f9dfeb063703df034a5d093b 138309 zurl_1.10.0.orig.tar.bz2
 f611af31078ee03a2797a12ed047eda9ea9fbb81 8644 zurl_1.10.0-1.debian.tar.xz
 d7950d1c753d64be01ecc21520f454e4f065bfe8 10970 zurl_1.10.0-1_amd64.buildinfo
Checksums-Sha256:
 2f06b30d6003048e3c08a1a5f27711d8a75b96bb80a0c777a394cf7606f4a2b4 1748 
zurl_1.10.0-1.dsc
 027636eb2cf9caaf7dda39031c80bc27dd3d0111990c20eedc355baa52579f4a 138309 
zurl_1.10.0.orig.tar.bz2
 d5e0eb030241d9617cb7af705bd4e51b1ae293a0212f54e12592d6953aa21f92 8644 
zurl_1.10.0-1.debian.tar.xz
 3b015a81a31a4085460e14795bb72b06f7dab251adc66fcd6cd18f71866a5335 10970 
zurl_1.10.0-1_amd64.buildinfo
Files:
 03345b5c44b72e73fe758fa8d7534cc6 1748 net optional zurl_1.10.0-1.dsc
 3e6ffa9739900343e0190138e86226ca 138309 net optional zurl_1.10.0.orig.tar.bz2
 8d18f067fabcb57eb4f114c7a1fb1a9f 8644 net optional zurl_1.10.0-1.debian.tar.xz
 2f0d1f202edde95f6752bf51c16aaa66 10970 net optional 
zurl_1.10.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlwqNNQPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsR/x8L/R28tUlIOt+7PpeoCUohl0Ef0aNKK4FjG/d2
5P/tmE0ctmrv+OTx6ErQnx7sJSBpW/F7aU0VLx8/3Uqq5lTspCN3boDy5e/9Ayy6
744Iz60j924BNn7528Y3SbeARjaWDeNCoZYwKowwYjm5UEVtnPb3cUKLBPRCnI5b
sHOdIW0QsCTOgrPTHEPxM8gVqv/GJ+rZe8t3v0VA/D0upSFe0n4WbGNSzXbYNNB0
K1klQXxLHqqerKtesfcn5HHFIwbe6a7bcliGMtL7YlM/AYOh9xpAWLzobR9saSkW
l6JM53xr8epXLa65KeaxE0kPj6IejPr6enDnEBenblDZzBBjJ7158A0zYq/O1nMY
SpzetAlKJkHjnkS0qDGZ2QcMLVbHwbDM7n/2v5+QtHrlxnyOvx3VgyJ1sOzT8NKT
DXeJ/x9qGZVnzqd1EujS4mZoKA5wiyH4gQ7QT87O8L7uc0jLzzRQJHsmyNl3eCsN
pMT5hmRjY9r35XcscyySGRJM9i4U6A==
=8ZUH
-END PGP SIGNATURE-



Accepted pushpin 1.19.0-1 (source) into unstable

2018-12-31 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 31 Dec 2018 15:57:13 +0100
Source: pushpin
Binary: pushpin
Architecture: source
Version: 1.19.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Description:
 pushpin- HTTP reverse proxy server for streaming and long-polling services
Changes:
 pushpin (1.19.0-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 1d180a61f4661597b4921a2ec4d21450089d6d59 1732 pushpin_1.19.0-1.dsc
 91c80bfbe7595bea14ab6033f279acb207c12bf1 209222 pushpin_1.19.0.orig.tar.bz2
 a2632efe25bbb4b0bf05c865f6bfd08c3cf3461a 19988 pushpin_1.19.0-1.debian.tar.xz
 1a67db713de68cd30da8f302c01b54e99e739ba9 10670 pushpin_1.19.0-1_amd64.buildinfo
Checksums-Sha256:
 e9b03da69b9c1e953039732e87b824052d940c31a779e9edd3195dbfd401334c 1732 
pushpin_1.19.0-1.dsc
 75582b97bd394ac8ada058bd840cf58145b3a60e7e59b7f762a020c043b6d46b 209222 
pushpin_1.19.0.orig.tar.bz2
 7db330b18db749620ef03a21d97f4ced722880d6795b61a7b477d3ed0c2c594c 19988 
pushpin_1.19.0-1.debian.tar.xz
 c581b3fc6cd6bdd9874d91d25765a8d9e925b61220b3f1eb5bd3216ceae072c7 10670 
pushpin_1.19.0-1_amd64.buildinfo
Files:
 69d035fe13e1d489d9a4607147f32b50 1732 net optional pushpin_1.19.0-1.dsc
 36203797325d9c9fcc883296390b5e14 209222 net optional 
pushpin_1.19.0.orig.tar.bz2
 8e9fdb3408b322767f72a8b35e8a2a8d 19988 net optional 
pushpin_1.19.0-1.debian.tar.xz
 602291ce6dba915a148feff543038b59 10670 net optional 
pushpin_1.19.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlwqNMkPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRy/EMAKMLESAkoi0eTboWYnUzveGMnGYSOjUTEEqc
Z0jQCXqYdHaDalJK1I7N/ADwXTy1dO18Gs+cnR6FCq7LDMn3f0k099z4JFcwcPVY
fd6sQjvq6VGp8l5peE89WJv6MWvhqk97PLFVi/FKmtm++s0NkDi4CbyV61d3EzaF
YfrM/xRA+3kdb/ypcC3fIv5smKpMVo9T3SjPdLVe8itbrhiORtTX7iYUqFyVf1Jy
5dFrh925OTTv6R2Fddudg9xF/BEsZkossLwoZXvnLZBHdQiFZt/SIuFs4G5395qx
Zpt/eQH7WjVSmoEQg4w02MQZpDy7IJMIu1YgvkqQw7sjXptYixmsxqfEUdULH0Ma
QtXIAFWUn3Ywnlq6FHxjhbHQLqz2MWhBl6dyeSUS6YmwR/1SHVQYyFal8rD3ZeQd
3La8qdsUSGtofeuCaatIG3Ilf/KZeijybqBNCGhrTCr5FD6Ia7IdZUkhMoom09MJ
N6LbgrPcyUN7arlaIPZVVIsl5Hg0PQ==
=xBsM
-END PGP SIGNATURE-



Accepted lsyncd 2.2.3-1 (source amd64) into unstable

2018-12-31 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 31 Dec 2018 13:25:54 +0100
Source: lsyncd
Binary: lsyncd
Architecture: source amd64
Version: 2.2.3-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Description:
 lsyncd - daemon to synchronize local directories using rsync
Closes: 862747
Changes:
 lsyncd (2.2.3-1) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * d/copyright: Use https protocol in Format field
   * d/control: Set Vcs-* to salsa.debian.org
 .
   [ Jan Dittberner ]
   * New upstream version (Closes: #862747)
   * Refresh debian/patches/out-of-tree-manpage-build.patch
   * Update lua dependencies to lua 5.3
   * Fix paths in debian/lsyncd.docs
   * Add DEB_BUILD_MAINT_OPTIONS = hardening=+all to debian/rules to
 improve hardening
   * debian/control: bump Standards-Version to 4.3.0 (no changes)
   * Update debian/copyright
   * debian/control: Update to debhelper >= 10, use compat level 10 in
 debian/compat
Checksums-Sha1:
 71dbf57ae6685196ca333b06f9dbf2fd474eeba0 1607 lsyncd_2.2.3-1.dsc
 e16ff0aee89576b08cb4d7b255f64a6238c4b523 85165 lsyncd_2.2.3.orig.tar.gz
 8bf902e7cd2a9ec16696f27757a7d03a3bcc8eb9 5424 lsyncd_2.2.3-1.debian.tar.xz
 afe87f44df092e1122a599d5b6c5f885d739c18e 42504 lsyncd-dbgsym_2.2.3-1_amd64.deb
 68fdcf0e860852928ba1c249a4d0a78c446374ee 7386 lsyncd_2.2.3-1_amd64.buildinfo
 6f4508b1efcba3fc9de0eb3764d35bb019daf15c 74088 lsyncd_2.2.3-1_amd64.deb
Checksums-Sha256:
 f2b56e0231abb376477989470841948b66b82d9af3f08853b84f1170bdaf8444 1607 
lsyncd_2.2.3-1.dsc
 7bcd0f4ae126040bb078c482ff856c87e61c22472c23fa3071798dcb1dc388dd 85165 
lsyncd_2.2.3.orig.tar.gz
 4efa3d4d9b6e9360937b7e9baea4c9a46887c1cf32b7676a0a6c00ea051664e1 5424 
lsyncd_2.2.3-1.debian.tar.xz
 cad554306ab0c61a31c129f0fb5bb0464534bc4e5848a815e54d207692153a58 42504 
lsyncd-dbgsym_2.2.3-1_amd64.deb
 8a7761dd37f9ce2f0b280d2b03f6b3be0fb11f08401b547db88949c9e2f234e5 7386 
lsyncd_2.2.3-1_amd64.buildinfo
 256d5dda4d90688f68f09124babee7f1aa3f39ea3b6d7cf46e0919f51c9a23f8 74088 
lsyncd_2.2.3-1_amd64.deb
Files:
 57c3b0234050770df4715ea72cf623de 1607 admin optional lsyncd_2.2.3-1.dsc
 25d36b73946bec822d5c7f258262d9f3 85165 admin optional lsyncd_2.2.3.orig.tar.gz
 9bbe41178cf529b43f63651c0f49dff0 5424 admin optional 
lsyncd_2.2.3-1.debian.tar.xz
 6737b8a40a0dadb874ed57fc325d6a7e 42504 debug optional 
lsyncd-dbgsym_2.2.3-1_amd64.deb
 1ca100ae3481e841ab1f9c1f0639b553 7386 admin optional 
lsyncd_2.2.3-1_amd64.buildinfo
 3dcd56cfaaa7d3072528765c311f9042 74088 admin optional lsyncd_2.2.3-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAlwqCzERHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdkbPwgAjLPSJhzevfaD5u3Mk/vE0wxAyXKVXCzu
kwh9J+2HwrcST3NPu/cj77BoMCUYTUQcaj/Vx4QsB0hbjN+O1XP+5bZ2mVVrGOSh
6Lqa2cnLpmKhQtDvmLcLtq2tbmF530ozCblsZFrJykkshgUN7SViiQns1eb1ginv
ac7DP1rM37MIQJRwayrLl7y6yAonynUAX98YkOxY6w1JwLQVfOR6S/hWrY4yL4T+
+hbAkTnyDZb88kJnmBlI8JwaN5PtPFfAiPwrCyQAbjhhUDEWUMqEHVg+WYB2y8y9
Q/byL56KDEh276qLlARYgsS39jHH/AvDN6+VnQHIUPs1hyQRwbRDSw==
=1FJi
-END PGP SIGNATURE-



Accepted cracklib2 2.9.6-2 (source amd64) into unstable

2018-12-31 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 31 Dec 2018 12:04:32 +0100
Source: cracklib2
Binary: libcrack2 libcrack2-udeb libcrack2-dev cracklib-runtime python-cracklib 
python3-cracklib
Architecture: source amd64
Version: 2.9.6-2
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Description:
 cracklib-runtime - runtime support for password checker library cracklib2
 libcrack2  - pro-active password checker library
 libcrack2-dev - pro-active password checker library - development files
 libcrack2-udeb - pro-active password checker library (udeb)
 python-cracklib - Python bindings for password checker library cracklib2
 python3-cracklib - Python3 bindings for password checker library cracklib2
Closes: 913401 917835
Changes:
 cracklib2 (2.9.6-2) unstable; urgency=medium
 .
   * Add missing 2.9.6-1 changelog bug tracker references
   * Add patch by Helmut Grohne to fix FTBFS with nopython build profile
 (Closes: #917835)
   * debian/control: Bump Standards-Version to 4.3.0 (no changes)
   * Apply patch by Helmut Grohne to fix FTCBFS (Closes: #913401)
 + Multiarchify python Build-Depends
 + Tell setup.py what to cross for
 + Honour DEB_BUILD_OPTIONS=nocheck
Checksums-Sha1:
 12c864004878be84ffc022f757e2519930d938d7 2302 cracklib2_2.9.6-2.dsc
 069fb06020b13ee3c0b57475e93faa5022e32884 26916 cracklib2_2.9.6-2.debian.tar.xz
 65bdc924549f66a9c0543c052aa28add38d80c46 11076 
cracklib-runtime-dbgsym_2.9.6-2_amd64.deb
 5c2f0a04b1cf887b482f19018664482eca8adc82 154688 
cracklib-runtime_2.9.6-2_amd64.deb
 df8e29aeebb1383ac6baed97d444bd1b092c4220 12414 
cracklib2_2.9.6-2_amd64.buildinfo
 e7f67f8bd8e4adc16eff9dc581195641dc0c6d98 25508 
libcrack2-dbgsym_2.9.6-2_amd64.deb
 6ba7f9a74a19887d37c9e10845e847a5b6d4ef37 32780 libcrack2-dev_2.9.6-2_amd64.deb
 82187f2d1c31ba68ed8b854a908388a0e7cbd0fb 125780 
libcrack2-udeb_2.9.6-2_amd64.udeb
 5b3bae68924bd21d4e24ea8c270da0850b602f82 55404 libcrack2_2.9.6-2_amd64.deb
 d646721001591445fac50ec07891b81840c3fd2b 13232 
python-cracklib-dbgsym_2.9.6-2_amd64.deb
 4b6fc2697aed68d20367c41006962f50651debbc 24056 
python-cracklib_2.9.6-2_amd64.deb
 f546b46042ba1fecb4357309b6f794713e0df74d 15412 
python3-cracklib-dbgsym_2.9.6-2_amd64.deb
 44ba694534fe94a9b33146920726860a5c7af35f 24080 
python3-cracklib_2.9.6-2_amd64.deb
Checksums-Sha256:
 c2c5cf3bcdfbff8deab382f296c1a133fbee78198286d6418b03f3d0929d 2302 
cracklib2_2.9.6-2.dsc
 f6fb155bd87755d9fd6d5ad8b57ffc4a2669ff8c1efb1cc5ba4c6b60cd31f198 26916 
cracklib2_2.9.6-2.debian.tar.xz
 56a862c1bf544ca9f07b9eb7fb17c98ae3809f002ef263088b6a0a695da0c943 11076 
cracklib-runtime-dbgsym_2.9.6-2_amd64.deb
 944aab555a69850e84f88343802fa8d3779804c304a463be1754329934b5f964 154688 
cracklib-runtime_2.9.6-2_amd64.deb
 6dfc15954e15971cfadddc9c5824a83dcd938300f349d7741bf8194da8c16e31 12414 
cracklib2_2.9.6-2_amd64.buildinfo
 d4d8ac1f65b791ba43d2616730a9e7595650d36d2eaaeb0da08aef98f1da7a8c 25508 
libcrack2-dbgsym_2.9.6-2_amd64.deb
 734cdc4f95d3e8107ade3381ad2cbb2d9d7d07d4d9faf9c29165fff469dccb70 32780 
libcrack2-dev_2.9.6-2_amd64.deb
 61a844b048b637768ceb4bc02e06391736874275154495213bf7a2a9ba701bc5 125780 
libcrack2-udeb_2.9.6-2_amd64.udeb
 15e9760092af19b314bd876018bf8a8d46913adeed93c38cb5c255e6413afe76 55404 
libcrack2_2.9.6-2_amd64.deb
 526b0a41bad0cf26a14a286673d507176aa46a37291033af488d19b8027f95c3 13232 
python-cracklib-dbgsym_2.9.6-2_amd64.deb
 8b7ab6b89cf4d8b2ef28576b940a0a74e78ef11f228cdbf322265ecd767a6f98 24056 
python-cracklib_2.9.6-2_amd64.deb
 05b502b6bf87fe85e166bfe807fa44e7563c97b71ffefe91d985d36515cfaeb3 15412 
python3-cracklib-dbgsym_2.9.6-2_amd64.deb
 3f7f0897f3e66535ec028ad60ca3fd0d956b61d85df5c58ec73f4dacaab033de 24080 
python3-cracklib_2.9.6-2_amd64.deb
Files:
 22ad4ec9eb2b6aa4c78e51bcd52fd5cb 2302 libs optional cracklib2_2.9.6-2.dsc
 6af239dbba1fa8ce3ecc0724babe5078 26916 libs optional 
cracklib2_2.9.6-2.debian.tar.xz
 7a30a7dc3526fd96d5222f4e0807886a 11076 debug optional 
cracklib-runtime-dbgsym_2.9.6-2_amd64.deb
 f700bc486a73de686c298128824f34ec 154688 admin optional 
cracklib-runtime_2.9.6-2_amd64.deb
 a125e6ea024054151cb05dbe1ad6b3f2 12414 libs optional 
cracklib2_2.9.6-2_amd64.buildinfo
 753c8df195d451d3bf1164ed1e2fa445 25508 debug optional 
libcrack2-dbgsym_2.9.6-2_amd64.deb
 821937ec662cbeeb184671816ca18f93 32780 libdevel optional 
libcrack2-dev_2.9.6-2_amd64.deb
 de031fe1639c02d7071e64a952831aa9 125780 debian-installer optional 
libcrack2-udeb_2.9.6-2_amd64.udeb
 95718ea3000107f8231ac14e383dc302 55404 libs optional 
libcrack2_2.9.6-2_amd64.deb
 23524ca4885481f64419938a87b87ad9 13232 debug optional 
python-cracklib-dbgsym_2.9.6-2_amd64.deb
 7b35ccb63444559a375a37eaaef15895 24056 python optional 
python-cracklib_2.9.6-2_amd64.deb
 cd44c251b13409767d63010702443422 15412 debug optional 
python3-cracklib-dbgsym_2.9.6-2_amd64.deb
 cc8b7dbbb88e000d6c6beaf16670ddf2 24080 python optional 
python3-cracklib_2.9.6-2_amd64.deb

-BEGIN PGP SIGNATURE

Accepted cracklib2 2.9.6-1 (source amd64) into unstable

2018-12-28 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 28 Dec 2018 23:19:25 +0100
Source: cracklib2
Binary: libcrack2 libcrack2-udeb libcrack2-dev cracklib-runtime python-cracklib 
python3-cracklib
Architecture: source amd64
Version: 2.9.6-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Description:
 cracklib-runtime - runtime support for password checker library cracklib2
 libcrack2  - pro-active password checker library
 libcrack2-dev - pro-active password checker library - development files
 libcrack2-udeb - pro-active password checker library (udeb)
 python-cracklib - Python bindings for password checker library cracklib2
 python3-cracklib - Python3 bindings for password checker library cracklib2
Closes: 839532 865623
Changes:
 cracklib2 (2.9.6-1) unstable; urgency=medium
 .
   [ Jan Dittberner ]
   * New upstream version
   * Lintian fix: add missing symbols to debian/libcrack2.symbols
   * Update VCS and Homepage URLs in debian/control
   * Update copyright information in debian/copyright
   * Fix lintian warning override_dh_auto_test-does-not-check-
 DEB_BUILD_OPTIONS
   * Add DEB_BUILD_MAINT_OPTIONS for hardening
   * Update debian/watch file to use the github release page
   * debian/control: Bump Standards Version to 4.1.5
 - remove Priority: extra for libcrack2-dev
   * Apply patch by Chris Lamb to make contents of /var/cache/cracklib/src-dict
 reproducible by sorting the file lists (Closes: #865623)
   * Bump debian/compat level and debhelper dependency to 10
   * Remove --with_autotools_dev use debhelper dh_update_autotools_config
 instead
   * Fix "FTBFS if built twice in a row: aborting due to unexpected
 upstream changes" by removing config.h.in that is regenerated by
 autoheader (Closes: #839532)
 .
   [ Ondřej Nový ]
   * d/copyright: Use https protocol in Format field
 .
   [ Jan Dittberner ]
   * Remove useless autotools-dev from Build-Depends to fix lintian
 warning
Checksums-Sha1:
 87e571401f24304f1b97125c7aaa6841cd59c2f7 2549 cracklib2_2.9.6-1.dsc
 9199e7b8830717565a844430653f5a90a04fcd65 642402 cracklib2_2.9.6.orig.tar.gz
 64212ee255af5d9c2a9952b1e308ca303f6bd0d4 26700 cracklib2_2.9.6-1.debian.tar.xz
 36342ac55be5f6ba9826bf460a20eae39fc02c14 11080 
cracklib-runtime-dbgsym_2.9.6-1_amd64.deb
 97044eefc716cac7311d76083cbba4c251cf361b 154780 
cracklib-runtime_2.9.6-1_amd64.deb
 bafa6138c61c006f98977c04090bcf60ca70c8ef 12629 
cracklib2_2.9.6-1_amd64.buildinfo
 21d145370f213e6b79b314488298aa887b4d11c8 25512 
libcrack2-dbgsym_2.9.6-1_amd64.deb
 165e50634896a4d553a1d2c4ab1c1ef76c640b57 32652 libcrack2-dev_2.9.6-1_amd64.deb
 b29ceb2cd24fedd5f473c9e45f3521abd3da8b9a 125756 
libcrack2-udeb_2.9.6-1_amd64.udeb
 17de19195a9c715b7805673f2c36c4198bc0c8a7 55256 libcrack2_2.9.6-1_amd64.deb
 760a96696eaf5c7a5a8115f92ff2265aabfdeea8 13232 
python-cracklib-dbgsym_2.9.6-1_amd64.deb
 f80bb6b622ab2856d868bd25bfa7dc307fd8a8c2 23920 
python-cracklib_2.9.6-1_amd64.deb
 0cd8f7844a5c058875693b2d6d31c179d3bce63c 15412 
python3-cracklib-dbgsym_2.9.6-1_amd64.deb
 044209a6752a582fbea45d5b86a6dafc27f19f7d 23956 
python3-cracklib_2.9.6-1_amd64.deb
Checksums-Sha256:
 bbde9841146ef5d6e0dcf606cf3f05858b6c41079a7d2a8af929fac748da60d8 2549 
cracklib2_2.9.6-1.dsc
 17cf76943de272fd579ed831a1fd85339b393f8d00bf9e0d17c91e972f583343 642402 
cracklib2_2.9.6.orig.tar.gz
 25bc6a4591e36fb72b687612a9777186dbba4336d6821efb7c513d0cbf2d 26700 
cracklib2_2.9.6-1.debian.tar.xz
 33e26365dd0405e29fd183ddf4c0cd4db4c40daba0aff27400aaa3b9e69b206a 11080 
cracklib-runtime-dbgsym_2.9.6-1_amd64.deb
 cab09fca33f6087a9198af758c099f78206d7520657119acad7c79fbb8403ea3 154780 
cracklib-runtime_2.9.6-1_amd64.deb
 f698eef70e4138404550a87a51c1dbd7410e48a09b3ad410a4b3c20fe20bc803 12629 
cracklib2_2.9.6-1_amd64.buildinfo
 768ce657a43a651c7635382c0f9600202a3ad991c0a02156c158660347cf1b43 25512 
libcrack2-dbgsym_2.9.6-1_amd64.deb
 86c11fb5edda3d6d68de7097331eb502e03533d3eb2793d9438ea43835ac2ef3 32652 
libcrack2-dev_2.9.6-1_amd64.deb
 6b666e234d2934d86b087fc67df70e52d4f2d23a94361334c8289c721757dd6a 125756 
libcrack2-udeb_2.9.6-1_amd64.udeb
 8bac75376f756655f56b01587155d63c7f9e9b689f3895786045453b301f1e18 55256 
libcrack2_2.9.6-1_amd64.deb
 3de50a666f12e4581127787fc1e0598d448cc15d3e943c3cdaa186a0f80d3744 13232 
python-cracklib-dbgsym_2.9.6-1_amd64.deb
 ccc5aca29222d1717b688afe7cf38d0089150e58b164c12c2915fdd6b123cff9 23920 
python-cracklib_2.9.6-1_amd64.deb
 13468f4268fb7a44ad65baddb3f2cb01454fbb2d19ca59426d158445a820378c 15412 
python3-cracklib-dbgsym_2.9.6-1_amd64.deb
 383bbf6fb40d00263de2bd4655f20085d20d2d35ea1ede9341a4a8de3cd1a268 23956 
python3-cracklib_2.9.6-1_amd64.deb
Files:
 6ae57bfc5d103735e567695149407046 2549 libs optional cracklib2_2.9.6-1.dsc
 c52f463585d85924b28cdc1e373ae06d 642402 libs optional 
cracklib2_2.9.6.orig.tar.gz
 a7717462f2c5559c4bd6f2dfa5a78589 26700 libs optional 
cracklib2_2.9.6-1.debian.tar.xz
 b52322ad108a670943083cade49b

Accepted nitrokey-app 1.3.2-1 (source) into unstable

2018-12-24 Thread Jan Luca Naumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 12 Dec 2018 13:24:37 +0100
Source: nitrokey-app
Binary: nitrokey-app
Architecture: source
Version: 1.3.2-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Luca Naumann 
Changed-By: Jan Luca Naumann 
Description:
 nitrokey-app - Application to manage the Nitrokey
Changes:
 nitrokey-app (1.3.2-1) unstable; urgency=medium
 .
   * New upstream release.
   * debian/copyright: Update copyright infos for new upstream version.
   * debian/control:
 - Update to Debian policy 4.3.0, no changes needed.
Checksums-Sha1:
 e23089ffcb497d1cbaa1a4a2c18abfd6cc0fbe1d 2101 nitrokey-app_1.3.2-1.dsc
 eaa0ed261c8060cbedcda6f2c7d81c40e9bbbe60 1299214 nitrokey-app_1.3.2.orig.tar.gz
 3c96aa1961601631a18152e38ff9e64b37684d48 5544 
nitrokey-app_1.3.2-1.debian.tar.xz
 f07a3c0f25fc27f0e7112ebf4a3987de5517fc7a 15157 
nitrokey-app_1.3.2-1_amd64.buildinfo
Checksums-Sha256:
 df9f99f1a7a2955a3062d60ce78ad024d51c10d6e7cc24bc49e5e81995997f1d 2101 
nitrokey-app_1.3.2-1.dsc
 f11bfd72305a450a7caf2a6c8cc265af510c667ec8d61e70f3bd49f60c70aa99 1299214 
nitrokey-app_1.3.2.orig.tar.gz
 d853d09fbc94c162e5f127686f49c208c019102e8eb4530f5ba3715c59e5f48c 5544 
nitrokey-app_1.3.2-1.debian.tar.xz
 aaa8f5db9526625be93a76ac1073bb1a02ec87cececc5e77e9e3c0f66ad5950e 15157 
nitrokey-app_1.3.2-1_amd64.buildinfo
Files:
 1d140f148934dc0311b2c84d45e3b243 2101 utils optional nitrokey-app_1.3.2-1.dsc
 504187db26b2c7c938bafb43e37d13f2 1299214 utils optional 
nitrokey-app_1.3.2.orig.tar.gz
 032dbff84efdcf46846e95554476efb8 5544 utils optional 
nitrokey-app_1.3.2-1.debian.tar.xz
 a2969d57a99d22dc05a44d797227194d 15157 utils optional 
nitrokey-app_1.3.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEwNbeTg2NJIWRcwSlfhHX8Rn5cbsFAlwgq+UACgkQfhHX8Rn5
cbtilg/+Lx9ufcTBBMVFr1Jhwm9ao1QWh1ZwXsZ17uEYnutfzXS/wOFTLIeW4j5y
dSyQdHJipO97tUi8hnjjdtjiR6rzmtcH01csKNyhmkDQLNbuZtarL6qtnoCcIRVN
A2RoLMyZuzTCmbusI58s62EHnenxwS7IzkXvS1FxllQJuXfcoaOy1gIPmOYMgwRG
JPSgrwKMVYfvmjckWxcNCiG5atrwoGSveOCgWF/hboR0Vh9SuGcAh+relxEceA5K
sfion44/bXqWwbaMsBhS73TKli6USYtWOX4AWm8Z5Mm2/Q0KYBnVypBxblE359no
fec5ZF7jO5itRPPjDjuWcZdjuaWzyYnrL97REx3v9JBXUQ4stS74mKs5C5s5s4mQ
DGlLeC6ajcTo37BtNHuBwoPeOfqLGUlEvNLTwoDhyBjNsZsOKmtLFq03Ae1QiIiZ
qlEGVf32FkmfbzCLPkq8f58yRNNI2n0J088+BDQj+RDbH89iFcSKgykybO/F37+Z
GngpLB4QAOmUrDCOm+a+HabAnqyB1sOnVQ1nkL5RMQFrqdAQodmOfjLNcIDrJNnc
hIeZwaGcIbGxAqIRQ4Pqj5t6s+Oo+Cqk6IjbpBAqLwDxgjUWfDjmRHvfXc3OGbV1
rUGbsxD1BFx1ZXHyTGEYhQgA+fwS7oseWmw8CYkIaAfLUpue7WA=
=O+DC
-END PGP SIGNATURE-



Accepted aiscm 0.18.1-1 (source) into unstable

2018-12-09 Thread Jan Wedekind
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue,  6 Nov 2018 20:57:33 +
Source: aiscm
Binary: aiscm
Architecture: source
Version: 0.18.1-1
Distribution: unstable
Urgency: low
Maintainer: Jan Wedekind 
Changed-By: Jan Wedekind 
Description:
 aiscm  - Guile numerical arrays and tensor extension
Closes: 912798
Changes:
 aiscm (0.18.1-1) unstable; urgency=low
 .
   - New upstream release
   - Update LLVM dependency to 7.0. Closes: #912798
   - Use clang-7 instead of gcc
Checksums-Sha1:
 d8a9be41b7ef75457246fdbe097d66e6f74ed290 2309 aiscm_0.18.1-1.dsc
 7f3cc8d6f0d5705fd8c106dff6fb6b7415be1ddc 3819003 aiscm_0.18.1.orig.tar.gz
 91e19a57638f1c143fb3efc5a198884172af00ec 833 aiscm_0.18.1.orig.tar.gz.asc
 478d4fd9e0f4bd44b1b1d76a44a39e8ddc7a33e4 5724 aiscm_0.18.1-1.debian.tar.xz
 6efd5f3cc4b6b2da5cc190f66c5734332e2683b6 14986 aiscm_0.18.1-1_amd64.buildinfo
Checksums-Sha256:
 f73afc952233d028be00f80118e87f1b50443f18e5010bb067af6597fc01377c 2309 
aiscm_0.18.1-1.dsc
 c3c2911f5fadba3e0880a1aac33e40c886a1b8c9cb145aaec47cef39976d0a92 3819003 
aiscm_0.18.1.orig.tar.gz
 1797388dcaae66babaeccf86e30a07b35908132d87aac615e61b66e79a628ba3 833 
aiscm_0.18.1.orig.tar.gz.asc
 76c2e2cc470e72e2a86933b2b44c59c285b24e3ac925a5c7c10aaaf33fb9d1e2 5724 
aiscm_0.18.1-1.debian.tar.xz
 4971dcf1dbc3cc791da2fdc537d8c97d570fc08daab2ee40952741ae1d5bad34 14986 
aiscm_0.18.1-1_amd64.buildinfo
Files:
 a219d92926a76096a002cf1371b19785 2309 lisp optional aiscm_0.18.1-1.dsc
 68ebfd1a4fe52e847aae8721834340ca 3819003 lisp optional aiscm_0.18.1.orig.tar.gz
 63c60c796fb201942cf31389af8108d1 833 lisp optional aiscm_0.18.1.orig.tar.gz.asc
 a043522b3ab590a4dcd9efd58e31a8ca 5724 lisp optional 
aiscm_0.18.1-1.debian.tar.xz
 28094a696f338ef450e04f96622d1eba 14986 lisp optional 
aiscm_0.18.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEolIP6gqGcKZh3YxVM2L3AxpJkuEFAlwM2BEACgkQM2L3AxpJ
kuF4ww/9H6/dRljx3s8ZRnTvUTOkiDv6PmAVp1P7B9+nJ0tix74K5qdiBGQj/cCd
fSVmdQ4BNAUU2bJr9qZ1eeRV4ewjc5uP3Lp65eU24F/6HOO4JXn2zsPEr+2AC1Sf
3G1dxcDo/+zhCyRIar/WwH0gcKkFq3Ea3xZYTroSptF0UR9KtsbfqvcgKoqk/tEr
tbU0aQRv9fF6gTN3Ozye6EzThnGz4JL9MQiU/DT9a7nx/Pu3FX8ncacwy3Cdc0bu
QXTxb9bLc88IlNeCga6gf+VYd+ntuZSLt+MXdZ4lAojJJ5WdjtFPk32nkT6XiDPZ
eTLYIvR6QbgUj6HAhTRTevT6uw33SvOrzdQim2jgDMOEo0JxUXJ53PhVjUzeZNbP
qOrOw8UgUyCrGpN2HcwOUHXi4ZDm9Ckd73WFfZpYUOuykSHoN2EHDXjA+B/gayPu
UDznrZBlhNrH1vf3XWhQj7x7Riz46EioL6stQFAhapeBZJXbYvTiziX1wecxVvyQ
3B8WNqjbB8fs5H2p1KTe6msnGxf2SIi0b5wBds8zNX+5ThP3alN5YwAXdpgSYvSW
Pmmc3HS16P8Gh/0dVeGzKLFRAfmBXouuTYhJv5rCq0y1Uiwtw1Tvs+cKPQRoCSVe
aU1tnQFvYeDLG9rauGvbBo34453g+Z0GCN2v9jIAzDrlnrRHYJg=
=BoiC
-END PGP SIGNATURE-



Accepted zurl 1.9.1-5 (source) into unstable

2018-11-10 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 10 Nov 2018 16:45:16 +0100
Source: zurl
Binary: zurl
Architecture: source
Version: 1.9.1-5
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Description:
 zurl   - HTTP client worker with ZeroMQ interface
Closes: 913379
Changes:
 zurl (1.9.1-5) unstable; urgency=medium
 .
   * Fix build with libcurl >= 7.62 (Closes: Bug#913379)
Checksums-Sha1:
 67865a5d71267aaba384ae166a4079df3f90bfc0 1741 zurl_1.9.1-5.dsc
 35eda27162e62b7d50aa3eea6e43392eb37fa28d 8744 zurl_1.9.1-5.debian.tar.xz
 820afa453a92f1c33720542a5f989979afe4b290 10962 zurl_1.9.1-5_amd64.buildinfo
Checksums-Sha256:
 97745f4ea79673e0f5d8946ca3c02495194a1eed42a9d93dd92814bd74caf5c5 1741 
zurl_1.9.1-5.dsc
 8d89d2772f90cf0440c5eae9a6c409b8133430a37aca77b9ae49bc4ba590eea8 8744 
zurl_1.9.1-5.debian.tar.xz
 be2a6c866d8d6b116c4223041261e1b168db21c63fc1271b9478b48dc831abfb 10962 
zurl_1.9.1-5_amd64.buildinfo
Files:
 21ca01b7b22deec0d005a1f9e346a04f 1741 net optional zurl_1.9.1-5.dsc
 5be151d7646b889889c349a21a22d0ec 8744 net optional zurl_1.9.1-5.debian.tar.xz
 eeaac2b9ab0edb2f4367d93e327c6808 10962 net optional 
zurl_1.9.1-5_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlvm/o8PHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRzIgL/0Vhia4zdwf664FJuOF+V9Vfo+vdcV50rPkY
yQjDRU4ODWV4bsfl2N6XsW4PSA43jZm3eoDCGLL9vFOQIDhTXu/tVNuAX1XpSzZQ
JRMVEapU96k528uo8o0Lh7oZezPPxvZwP0sFVChu6D0Kpx6B4Y8RxMcEVIzMMYkv
ruGpV70MhUEc2/F0NcVS2+zesov4m6u+rKYxWrvljH931OO4n1qP27N5QdCrvfWx
pTQ5qmE/oaS23C300QMpx0miIfAobNRBmf9k7O6Y35CHzphKpX45slQiciSrqOUM
6Ld7POt0O6r5qX4HZoO8ufFx+uCYjjYpZu293465p49grytgZNLX8yN+8MiBJDlZ
DkCm0l01CNNRk9GjtofAxf0MxSjdDzt+TLkrXVFuKy1mV6cKBdnlwR3+d1uVvZiz
0L4Bw4pc6M5PAlvdOFIl1l7VXdYrmDh1ytujemSybXXDKl4/QjrvNt325bDNtvPe
4KtTYQDgTTCVlF0VmZDOFiZTEIf4Xg==
=dTYO
-END PGP SIGNATURE-



Accepted daemontools 1:0.76-7 (source) into unstable

2018-10-30 Thread Jan Mojžíš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 29 Oct 2018 08:35:17 +0100
Source: daemontools
Binary: daemontools daemontools-run
Architecture: source
Version: 1:0.76-7
Distribution: unstable
Urgency: medium
Maintainer: Gerrit Pape 
Changed-By: Jan Mojžíš 
Description:
 daemontools - collection of tools for managing UNIX services
 daemontools-run - daemontools service supervision
Closes: 854145
Changes:
 daemontools (1:0.76-7) unstable; urgency=medium
 .
   [ Gianfranco Costamagna ]
   * QA upload.
 .
   [ Jan Mojžíš ]
   * d/implicit: sorted DEBIAN/md5sums to produce reproducible
 output (Closes: #854145)
Checksums-Sha1:
 de26dfef391d37ef31dc9d17d7fa7f1183126be7 1689 daemontools_0.76-7.dsc
 0b51f5f2bb98855aa17fef3eb8f265c0fceedde4 19455 daemontools_0.76-7.diff.gz
 907c86348aad46fe0ddcd5856aaad9e2aff5cb36 5261 
daemontools_0.76-7_source.buildinfo
Checksums-Sha256:
 d301702cf165a3dc2ce926eb398108e480fb0eb752abdb72979abe76f6fcb6c6 1689 
daemontools_0.76-7.dsc
 3fbd3222006550139bf66cc73afcd73d07a954b3a0403aac6da7032f44f13e0c 19455 
daemontools_0.76-7.diff.gz
 ce9aafd9f892a157f3ee39e99a557b041e5077edd76c2680e11889ea846ee21d 5261 
daemontools_0.76-7_source.buildinfo
Files:
 66fb2f32ed166128b78634588873a58d 1689 admin optional daemontools_0.76-7.dsc
 ebe0d200216ed97c83279a1d43c8d4cf 19455 admin optional 
daemontools_0.76-7.diff.gz
 863e4fdf9223d7e369017a0c3a5494ec 5261 admin optional 
daemontools_0.76-7_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEkpeKbhleSSGCX3/w808JdE6fXdkFAlvYaLkACgkQ808JdE6f
XdlUrQ/6A0U6rwOOJYSLqIj7crNQ9kmW2WtjIxdkyBrChWtuTjsDk7wzuyxnrUA0
rDgWGqCBlFHPXo6lxFKR45WzVgrgto2/GEPZCqX2NSL1RbCaKQhNZku9SJCwIZ+1
sGZ/bpRv3DnzebuGl9s0sRbszqI8sO0frdIC+pkfnTP+mn2/KHtWhOfddx+uygmu
EPYG0WvqN1LSdrd4TEsvaX/3MZcU4rX+OoGdl82yqg0NBjnxMQtz/jV6XDunT3lb
4WRdFEoe1UDKsSTYOUfiVgAx+OrccRBVvCxOJj+7N8OYTgHbqCET8ZV6PqYCqrjO
ltVm9U2rFooMbn8Xq3S7T4g+IwJgOLp8Iu6Ur1G6kuiiRjQw9s6UOjiSKITaIOp+
kUr+GJPuPOi3veb9xwUPw38bdTHjS59MDJd9VIfkqrwHQqNwLUAjni2P11CDG8Fx
YqQCQbX/SVxxOqHXYNEfGIexR/SPl+oCQklft8lTzIOw827RXfBEw4wuMXn/Aogs
2hjfTjw6+fj1irKknUTpAamav9hI2RxtuQiz5UDpn66qEC+2gC5QHcg1O+aP4167
6CFyNgnH2wLO24yHxbUEOJ20f5cp4TBfs7Mxo4kC46415qyC5iBQPoAOR4fuYbfe
50w/2nzIChZM1AoKAJ9tyhjxQ4r56caNW1jlwXs5XoqT7LecNYk=
=L0Hg
-END PGP SIGNATURE-



Accepted dq 20181021-1 (source) into unstable

2018-10-24 Thread Jan Mojžíš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 24 Oct 2018 15:10:22 +0200
Source: dq
Binary: dq dqcache
Architecture: source
Version: 20181021-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Mojžíš 
Changed-By: Jan Mojžíš 
Description:
 dq - DNS/DNSCurve query tool
 dqcache- DNS/DNSCurve recursive server
Changes:
 dq (20181021-1) unstable; urgency=medium
 .
   * d/control - bump to standards version 4.2.1
   * d/compat - switched to debhelper 11
   * d/upstream/signing-key.asc - added
   * d/watch - added gpg signature checking
   * d/copyright fixed url http->https
   * d/tests/dqcachetest - added simple autopkgtest
   * d/control - Vcs-* moved to salsa.debian.org
   * Convert git repository from git-dpm to gbp layout
   * d/upstream/metadata - added
   * dqcache pkg. - runs under systemd,
 dqcache-run pkg. - removed and added to
 d/control - dqcache breaks and replaces dqcache-run << 20181021-1
   * d/control - removed build dependency on libnacl-dev
   * New upstream version 20181021:
 - fixed IPSEND6/IPSEND4 env. parsing
 - randomized cached A and  response
 - removed little-endian detection/optimization and added full
   processor independent implementation of poly1305,salsa20
   to fix segmentation faults on armhf architecture
Checksums-Sha1:
 08995f09c9d745cc71254b4850812f655041aaf6 2119 dq_20181021-1.dsc
 0db878a23b33caa8370638eb5019fec5962093b0 142389 dq_20181021.orig.tar.gz
 bc481de7167652b3afc5aee842a275316710561f 833 dq_20181021.orig.tar.gz.asc
 9f3ccdfd658edba96b0e9cf5165b175142ca0455 13912 dq_20181021-1.debian.tar.xz
 ed5d89713160a77874a3133241f3afc93cbe1868 6332 dq_20181021-1_amd64.buildinfo
Checksums-Sha256:
 7b7d5e5d048e37ead5f906ab57a81c96a16f1733cb1b3eab381d26cbc1c0426f 2119 
dq_20181021-1.dsc
 b1797538dd7dfe8e6d9c2964eee0b569589b448c8a2e636bbee4cf2a19bc7ea4 142389 
dq_20181021.orig.tar.gz
 95a1ef3e41ca8a420f1dce53bc802ca645daa93638574cf532b1c1d9d07f9e2e 833 
dq_20181021.orig.tar.gz.asc
 8d697fd0515661569204775905fe7032349a088125fdb1eafd9c5d720d036039 13912 
dq_20181021-1.debian.tar.xz
 aefea00ca115b1ff50c36826cf190e93d86fab89c5c935d725b792c90b81f0c2 6332 
dq_20181021-1_amd64.buildinfo
Files:
 39f30fb912b1ccd597f184e21cce2c41 2119 net optional dq_20181021-1.dsc
 bbeff0d478a7aa6a4de3c916a24d0527 142389 net optional dq_20181021.orig.tar.gz
 869e34c2940421ddb1cb0cb9f7575a97 833 net optional dq_20181021.orig.tar.gz.asc
 c1ba64c9d655be37857d82735152e5c6 13912 net optional dq_20181021-1.debian.tar.xz
 f5ef525f5707525e27e27990c7ee3688 6332 net optional 
dq_20181021-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEPZg8UuuFmAxGpWCQNXMSVZ0eBksFAlvQb6cACgkQNXMSVZ0e
BkvxJw//bS6YdQPiHWVIjnLS2e4nihYrvth1tNSAFQJaVT5pzmvz5NDWMs2FAO4S
hY1IzQBYo+us6x8eFXbbmn0oNogF4zsyAdAsgNc+CqOPB8mTm4zdrn/AUbV8c9HU
G1qSmkETMMl52R7krZCSjvaC3AN+SjHVkPiq3qpF0ylQvOEfiBNIwMcjkw72Qaam
N+FNb4zphI9Otjmr1vJsUdoDhitlB+mu5aqk2LTTpjnviR9Dx/gy7Ko0hteponT/
sHLSMJ/0YGyFAtTJ0O0ErWI60jddVLSXPm8vZhPgUMu+YScpPPKzf+PhuVJ/lUVF
jHEUh+1iW+zCUBzFHcpDOZfQDpU4LVYKD+PNMW71QFTN40ZFAFtZeWwLA1nSq072
XFJS7SZA6AI8QmFfIwG6tawjDlQr6CrtKtDSRb+Mx1SxS+NLy5fBU2AxHOCPOw9r
2J9H8IHMeeFEZ8eqwtirAM3rOqLIgHlna7x9QCv6LZSsMfTZK6Msr8I00/sVt4Y9
EE5XZoDsAPu6N183UhZElwLiXeD2LJMumXdjMkH9YsEloLGv7XBvcP6cStzwO/bf
8P49dNFbBLSFwxKF9a54tIjlB/SZLgMkd7OUwhRJeDiBkE1PABFMT/Z80JVfjGAB
BPSf+O+K0zcVdumqPeutdfdJcBsVbiRU9lbuLuVPJt5RVX+Ejec=
=q698
-END PGP SIGNATURE-



Accepted nacl 20110221-6 (source) into unstable

2018-10-23 Thread Jan Mojžíš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 23 Oct 2018 15:04:30 +0200
Source: nacl
Binary: nacl-tools libnacl-dev
Architecture: source
Version: 20110221-6
Distribution: unstable
Urgency: medium
Maintainer: Jan Mojžíš 
Changed-By: Jan Mojžíš 
Description:
 libnacl-dev - High-speed software library for network communication
 nacl-tools - NaCl and CurveCP tools
Closes: 699397 774581
Changes:
 nacl (20110221-6) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP.
 .
   [ Jan Mojžíš ]
   * d/watch: added
   * Convert git repository from git-dpm to gbp layout
   * d/copyright: Bump my copyright year
   * Autopkgtest - rework
   * d/copyright - fixed url http->https
   * d/control - Vcs-* moved to salsa.debian.org
   * d/compat, d/control - debhelper >= 11
   * d/control - priority: optional
   * d/control - bump to standards version 4.2.1
   * Cpucycles library workaround for successful compilation
 on more architectures (Closes: #699397)
   * Disabled superfluous implementations to allow
 reproducible build (Closes: #774581)
   * d/lintian-overrides removed
   * d/source/lintian-overrides removed
Checksums-Sha1:
 ffe0cae2ccab26e96f290c9a49bd91b388e05d9d 1880 nacl_20110221-6.dsc
 f1c8017af8089df7d7fefe157f3b5a67337e9353 11120 nacl_20110221-6.debian.tar.xz
 38f9b3c026fd1e540507218004f39bcbd0d7e489 6142 nacl_20110221-6_amd64.buildinfo
Checksums-Sha256:
 d85b0165fc086242f79bca883f7607d764d7dc7c8ad2258fef2a46958db8cead 1880 
nacl_20110221-6.dsc
 a86c7fb64bb916abf6a612b23119d632b67a360e9f0c52e5ce4e9aee57c43856 11120 
nacl_20110221-6.debian.tar.xz
 84cd18435876b9d9b601bc32e8b1a90471d2f13debacfe483f631bd87eb84b4e 6142 
nacl_20110221-6_amd64.buildinfo
Files:
 bc3077a46eebece5d4ab1062f2cf2ba4 1880 libs optional nacl_20110221-6.dsc
 d6119cc010cd7f6b5341fee48ccf022f 11120 libs optional 
nacl_20110221-6.debian.tar.xz
 cf5c5b18219e17ed6adb6e4c4b318041 6142 libs optional 
nacl_20110221-6_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEPZg8UuuFmAxGpWCQNXMSVZ0eBksFAlvPHdMACgkQNXMSVZ0e
BksbkRAAkmKj/ZtDmpRJZQphimMV9KqaAuOmzglOu8RH6k3gvECi4AjXhTINWwT8
S2XB0i+7h8Al7GAoo7SRGdRPiKhomWlmPlgr7geSC6oSiT5rJLqBufspT2F8ds7r
/0WLSA3gCW31huf9BkOR39ANelf2ceCrVCXgN+pnLZG3l4NHUV7BT29m7sogcYqf
9Ky4TFRjnPieOwre+2tGKzx5gad4m94g1phC6yn5pH9+th/K9qohaGgPBwwm9Ql1
BmEdDZ1oBrVbqoAK17zVCfRxo/xtVMnJRHurX2CV/kGItae5H9DhX8tED0AMYsf0
RIPt7GxMMG4kbPKxEbTjAWKKbQKokOIs3kLiRsYmFXTRmtOLhHkPgWkQchd4pTJ0
+ptYgUCpKYRv192EL0AS5beljUUEUpNYZPDCyLXe/fL9U8+jV4FOIDs6cu2+aDGV
HCg+QoCtyi4Q5M8y/C4UtlUDBpPzW03N+2SY/pmBdyZUn4bNM/EUvdLA2bhUcFfz
tDP0lwshD1C3iXMkw73GReYwQY3No5SgZ7FKZ26OPtKxm+sWquiZwgaa7QwyXmLG
m9Wve2ftja8St9e/VDulaNxUMa8IUfcMHsPaVWI4ZmF3obV5owkUR2TirQx0Gtgh
u9peupTNru5UY5h7xqxgvgP0JVrEkmVyuynynudji4mdH8X212A=
=HUPA
-END PGP SIGNATURE-



Accepted tinyssh 20180201-2 (source) into unstable

2018-10-23 Thread Jan Mojžíš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 23 Oct 2018 14:49:24 +0200
Source: tinyssh
Binary: tinysshd
Architecture: source
Version: 20180201-2
Distribution: unstable
Urgency: medium
Maintainer: Jan Mojžíš 
Changed-By: Jan Mojžíš 
Description:
 tinysshd   - Tiny SSH server - daemon
Closes: 911539
Changes:
 tinyssh (20180201-2) unstable; urgency=medium
 .
   * d/copyright - fixed url http->https
   * d/control - bump to standards version 4.2.1
   * d/control - Vcs-* moved to salsa.debian.org
   * Convert git repository from git-dpm to gbp layout
   * d/upstream/metadata - added
   * d/TODO - removed
   * d/control - removed dependency on systemd (Closes: #911539)
   * d/tinysshd.lintian-overrides removed
   * d/tests/control - added restrictions isolation-container and
 added dependency on systemd-sysv, systemd
Checksums-Sha1:
 775214c726bf20bc2731d34ba91a4f1522c70e1a 2164 tinyssh_20180201-2.dsc
 fc76bc2cd6c48c3573669f9a5ceaa2d25ac5e4e8 14340 tinyssh_20180201-2.debian.tar.xz
 4475bb5795b9e64c585d2ac266deaf01c132ff5d 5881 
tinyssh_20180201-2_amd64.buildinfo
Checksums-Sha256:
 f548d7298d45a739866d62337085156a809f39700703e55b6b509f4828847115 2164 
tinyssh_20180201-2.dsc
 68f8de183173ede473898ce4d5f8c7a8365a3aec6c7374bfa97ce0e739af62c8 14340 
tinyssh_20180201-2.debian.tar.xz
 c8ff98482aaaceea9498e4d5172419119fee252315f7327f8a87ebbfd73efd64 5881 
tinyssh_20180201-2_amd64.buildinfo
Files:
 21ebdc931feb6a4764a513b9c1a5ee61 2164 net optional tinyssh_20180201-2.dsc
 9238dfdccfed68669763a07df70a16fd 14340 net optional 
tinyssh_20180201-2.debian.tar.xz
 6e5e4d337f58753e6f53d88da9948db3 5881 net optional 
tinyssh_20180201-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEPZg8UuuFmAxGpWCQNXMSVZ0eBksFAlvPGoQACgkQNXMSVZ0e
BkvqSA/+LxnLR4ieLFl9YDQIt6cPjHYQGsOHPwv3F5de3mJttc6g3opZuQAjp8ip
jLsfpB0gNftUIR62owNudhLT7AJELtC+nTUuRldmeC3IGTL2sjMRIY2f56e5iIhN
rTFSfymGVhhf6Q5zw420N0pQ9DgLqNrKOYV/ZVOf/Vo0jBZaABgId/TrpuaoYvvx
dn82d+RtBSojLAY73cY1xwzRRqBhDCVhDs9NMnU1TFrNY0tcO9NKrFrCd+vNPJjg
3KJzguYxyaBAD37wLgwNxl2udH5bDi96dSdB7qGrL7eAxBD/mBRtzSyC6u62fM2w
7wajw4qPkAopbiXjPmBZSugoTBCuFkG8Q5RIReEh3Ryj3DX1ks1D4ZvRHb18ha8U
+e56Kb9mCgWloXD2vViddClwEs6fJBQZXbRoNPCbd9c+GQgJQWxXCZerfD2uuImE
QaUeQreKFIGbAHmLi5Cb21UKa4ST604Gz1rTeBnUwMIePEIXNafaX1m/mrHdtb1c
rVnV3TOFNVExBNTvBIWGA/oXK09gS84P+sHN0hBhfaq7LTs49fVkPajiWx3XwwtK
XpteuS5r45n1tqDzLhdEAhbgvPNHoo9DSdjnnbv18zriACmXVnDVBW1iSIZsfbYu
PnUQGQdMJoUlNtFND8s5wD8EMICAhV4vvfI4QD4Haa9EX6IJoT0=
=BR4Q
-END PGP SIGNATURE-



Re: Bug#911539: tinysshd: Use Recommends: systemd rather than Depends

2018-10-21 Thread Jan Mojzis
Hello,

fixed here: 
https://salsa.debian.org/debian/tinyssh/commit/64ab1d6729ecf5e0a7115bffa634beb8dbb5b3e6
 
<https://salsa.debian.org/debian/tinyssh/commit/64ab1d6729ecf5e0a7115bffa634beb8dbb5b3e6>

Jan


> On 21 Oct 2018, at 19:01, Marvin Renich  wrote:
> 
> Package: tinysshd
> Version: 20180201-1
> 
> [Jan Mojžíš: this is a reply to a thread on debian-devel; some of the
> statements below are directed toward that thread, not to you
> personally.]
> 
> * Vincent Bernat  [181021 11:29]:
>> ❦ 21 octobre 2018 13:15 GMT, Ivan Shmakov :
>> 
>>>>>> tinysshd only ships a systemd unit file; neomutt links against
>>>>>> libgpgme11 which again Depends on gnupg.  It’s the kind of
>>>>>> dependencies that individually make sense,
>>> 
>>> I beg to differ; I suppose (though haven’t actually tried) I
>>> can start tinysshd straight from rc.local just as well, or even
>>> write my own init.d script, right?  Having the dependency in
>>> place just makes it harder to me to contribute an init.d script
>>> for the package.
>> 
>> tinysshd requires some kind of socket server to run. It could run from
>> inetd, so if you were an actual user, I would propose you file a bug
>> report against the package to let the maintainer knows the dependency is
>> too strong for your use (and maybe propose a patch to integrate with
>> inetd).
>> 
>> As you are not, please, do not. Our resources are scarce and we already
>> cater for the need of many non-existent users.
> 
> Recommends, rather than Depends is correct, based on your description,
> even without a patch to enable use with inetd.  Anyone who is not using
> systemd, either out of dislike of systemd or because they have real
> requirements for no or a stripped-down init system, is able to add a
> single line to inetd (or one of its successors).
> 
> However, adding Depends just because the package ships with a systemd
> unit file, and no other init integration, is simply wrong.
> 
> Don't let the fact that systemd antagonists keep annoying you prevent
> you from doing the right thing.  openssh-server has an uncompressed size
> of 922k with a long list of Depends.  tinysshd has an uncompressed
> size of 606k with only two Depends, libc6 and systemd.  Changing systemd
> to a Recommends would make tinysshd significantly more useful in some
> of the use cases where its stated description "minimalistic SSH server"
> already makes it the preferred ssh server.
> 
> As a general rule, please use Recommends over Depends whenever it will
> not truly break the package.  This is exactly what Recommends is for.
> 
> ...Marvin



Accepted usbrelay 0.4-1 (source amd64) into unstable

2018-10-21 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 21 Oct 2018 17:30:50 +0200
Source: usbrelay
Binary: usbrelay
Architecture: source amd64
Version: 0.4-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Dittberner 
Changed-By: Jan Dittberner 
Description:
 usbrelay   - USB HID relay driver
Changes:
 usbrelay (0.4-1) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * d/copyright: Use https protocol in Format field
   * d/control: Set Vcs-* to salsa.debian.org
 .
   [ Jan Dittberner ]
   * New upstream version
   * replace debian/patches/0001-use-LDLIBS-instead-of-LDFLAGS.patch with more
 generic
 debian/patches/0001-make-CFLAGS-LDFLAGS-and-CPPFLAGS-customizable.patch
   * bump Standards-Version to 4.2.1 (no changes)
   * bump debhelper compatibility to 10
   * include /usr/share/dpkg/buildflags.mk for hardening
Checksums-Sha1:
 f92c170bb12ec5ed014ae0f3241cf731cf4954cc 1506 usbrelay_0.4-1.dsc
 faffdb1c1a582701ab444acf72aa8a1034f4bc98 345461 usbrelay_0.4.orig.tar.gz
 442be22e9962819965d03a16e49a43f6c640867b 3020 usbrelay_0.4-1.debian.tar.xz
 157494a62d12fd30a87c0220768bd7934853 8900 usbrelay-dbgsym_0.4-1_amd64.deb
 23704e25a0b89250031093626b7bde0590d75d04 5827 usbrelay_0.4-1_amd64.buildinfo
 7d549fd9df1db8388c6578cd55a8bdefcac2629b 343760 usbrelay_0.4-1_amd64.deb
Checksums-Sha256:
 10ba0c6d23bd5cb666b9eb18ea315f170b497d7bf2d0ccc308facbfcf6bec22c 1506 
usbrelay_0.4-1.dsc
 d6e1b6ae4bf0a57d3280385f11ebda981052c5c50db68127b5f276d5c2f20bbf 345461 
usbrelay_0.4.orig.tar.gz
 f4f3c009c21e30f9073ead53572d45986c055590196361e0564bb5d6aaf129b1 3020 
usbrelay_0.4-1.debian.tar.xz
 2e720f579a9e494393046d0962a053510c4730410ccdd5579fbc1287eca0ab5a 8900 
usbrelay-dbgsym_0.4-1_amd64.deb
 296c5a2fe222c4c4b1d36c84adbd4f2ff08c24e2853b66192e481d910231dc99 5827 
usbrelay_0.4-1_amd64.buildinfo
 e1b628857198529a6ef7d9034120e3f78951baf0a61d1635dd6e8cfbedabb157 343760 
usbrelay_0.4-1_amd64.deb
Files:
 f67687747cd5c7c1b17734a4f96d42ba 1506 electronics optional usbrelay_0.4-1.dsc
 d143ebc7897804bca3a53d4b83512c73 345461 electronics optional 
usbrelay_0.4.orig.tar.gz
 70b6308ed5499dd078717a1c00110d9a 3020 electronics optional 
usbrelay_0.4-1.debian.tar.xz
 b7babd13ee731ba8452c423f0d083f20 8900 debug optional 
usbrelay-dbgsym_0.4-1_amd64.deb
 06609acfce83e858946c6553db490bb4 5827 electronics optional 
usbrelay_0.4-1_amd64.buildinfo
 6ccc87b0f030fe3cc5eeec95f8fe9141 343760 electronics optional 
usbrelay_0.4-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQFFBAEBCgAvFiEEKHuXKkUYdvdO9493DXkdyNc3wdkFAlvMnUARHGphbmRkQGNh
Y2VydC5vcmcACgkQDXkdyNc3wdn+ZggAgIyI4DooIjaH53cJru8Gr+CfQGUaryz8
8bIwb/NchQH6TD1A7ISXrhrNgqE9MmWvjXdKJzwYw2aic5SjbGzsHa8X46jjw64Q
SjBNovILUP1kafcTjWr3smYkpa2oOfU7T/0o1nANq/6JsF7xplTFMjaBtQBwqu6n
eenEsGf+fFRY1FyPlzi3B18XmLgu5Fk6DUo0XvHlf541tHdccGflmLV3peSFvdU3
99pqdO7oneLTr6K8yAz9GNaqsgCaZlocCMwaM44akSPIkj6Umy0wwvJ/er8cALE6
wSzvT2llC0JbjzObDW2xkAt9zGhh7SxG/0taacFvpgTB1tPPFzfawA==
=8jc1
-END PGP SIGNATURE-



Accepted aiscm 0.16.2-1 (source) into unstable

2018-09-20 Thread Jan Wedekind
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 19 Sep 2018 21:43:00 +0100
Source: aiscm
Binary: aiscm
Architecture: source
Version: 0.16.2-1
Distribution: unstable
Urgency: low
Maintainer: Jan Wedekind 
Changed-By: Jan Wedekind 
Description:
 aiscm  - Guile numerical arrays and tensor extension
Changes:
 aiscm (0.16.2-1) unstable; urgency=low
 .
   - New upstream release.
   - Package reverted back to arch:amd64 only
Checksums-Sha1:
 cf7746ab209388a16fe9e0eed43e9fc0a4adb3f1 2292 aiscm_0.16.2-1.dsc
 36748887283c847d508c1484ebdbb96e3da9a392 3806920 aiscm_0.16.2.orig.tar.gz
 e17cf80deea55061fb0f34309a866ab74b45f672 833 aiscm_0.16.2.orig.tar.gz.asc
 19d3863c70dfd914ceabedc4a691e327abdb8e87 5600 aiscm_0.16.2-1.debian.tar.xz
 17c2f7b583c88b778a4f677649d125d912cc5546 15232 aiscm_0.16.2-1_amd64.buildinfo
Checksums-Sha256:
 f4ef3cd414bf5b226b0c6af8e6c61acf6a952b7656d2df150daab899fb536fbc 2292 
aiscm_0.16.2-1.dsc
 55ef0b77ea200a09875b2cbefb7cd25d8386e79f4dad75e1aebba5bde3a04721 3806920 
aiscm_0.16.2.orig.tar.gz
 8f7d4249bdb0e63f6ddd3e0aed9591f0865887f8eb8d104931d08e4a699e7646 833 
aiscm_0.16.2.orig.tar.gz.asc
 88da2dd42b7a7df977fe60d5507489e73ec0cff6202c8e2b4a595748303f0d76 5600 
aiscm_0.16.2-1.debian.tar.xz
 c07290e7011b8a924a3a85902cfcbc7eefe39810c213635eea1d833c701fbb5f 15232 
aiscm_0.16.2-1_amd64.buildinfo
Files:
 2de89e4095be5f5f86184cae25297da7 2292 lisp optional aiscm_0.16.2-1.dsc
 a43ec50605035a39bdca4f8076f06b8d 3806920 lisp optional aiscm_0.16.2.orig.tar.gz
 8d18047836b37ab94235d2c701fe707b 833 lisp optional aiscm_0.16.2.orig.tar.gz.asc
 aee1027c30b4618a406bd271d2a6f176 5600 lisp optional 
aiscm_0.16.2-1.debian.tar.xz
 0fa02be81632c235cccfd0c511456dc2 15232 lisp optional 
aiscm_0.16.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEolIP6gqGcKZh3YxVM2L3AxpJkuEFAlujRKcACgkQM2L3AxpJ
kuH1vhAAjl6SwXlHMvpVz9glIWkjKkhwjzfl6nfQhZKggklyc8Bc/wXYXwRSnCro
gLHqcmW9ltqRA0jWrhIF1J5IyG7LhhNb3AftCWNm7dBTIBMccsa9CtwO5zIrjC+Y
Po6c3OBf5UumFChyUEbVD8E+qNCbyaK+7Tqy0d2Bdpg8Uw3Qi21UqhWWr8S63uCH
+wI/vACWxIkRi3lhuPO+0Jiw08lZh0jFLQphvAcLExYzMM1+pH3t4g1Y42ucnstZ
DR2MPusxYFs52juedy+w1gHAfqsffyf3spUFYPVrxi8xfEJLloFreLdbu8RvXQyn
vmzwXX9i0MxKd1dmARg2MEOcMn6uu99XjhvXndPcEHJPJykmCuIyLRCwbfXYGmc5
ISgGbdKZih4H03PZHWCDlaD1BpIpaH+fffTiXcQAyCQieoBetK1XJqTw6vndvO6g
Nkj/KNIU450Ra9wc3I74c9Y4R3F08t8c/JAguLz+s1XWNXbXSiFR7iEiif6eUn0j
D2VdXjKLoEF12RU/yXyRAgub4Juj87XnQfUrOe5jvpARzoPkNc6b8I369c6bk6tM
M1YIaJYmbLxS4QURilTC/OKnZ/+e3xu+C69vjjU80X/idjLY1QKvafiWuIsFGJ4T
9LoKZy399os7N+QT+kdsWsJ7ULwKJyP+sd8aCOYxFCz4vS3rz0s=
=raYw
-END PGP SIGNATURE-



Accepted aiscm 0.16.1-1 (source) into unstable

2018-09-19 Thread Jan Wedekind
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 10 Sep 2018 21:24:52 +0100
Source: aiscm
Binary: aiscm
Architecture: source
Version: 0.16.1-1
Distribution: unstable
Urgency: low
Maintainer: Jan Wedekind 
Changed-By: Jan Wedekind 
Description:
 aiscm  - Guile numerical arrays and tensor extension
Changes:
 aiscm (0.16.1-1) unstable; urgency=low
 .
   - New upstream release.
   - Added LLVM to build dependencies.
   - Package now arch:any instead of amd64 only
Checksums-Sha1:
 d39a732ece476b71796c1fc5d2d476c620cab72e 2288 aiscm_0.16.1-1.dsc
 597a8d25082495b5e0aa50466c0da0d5713071b5 3804439 aiscm_0.16.1.orig.tar.gz
 9056111c07d35b3105a75fad2349287a8aca 833 aiscm_0.16.1.orig.tar.gz.asc
 5f06dc49fea50125718771227d4c1407c6b01934 5552 aiscm_0.16.1-1.debian.tar.xz
 607d89533f457444e36a61aea46e960f54536495 15232 aiscm_0.16.1-1_amd64.buildinfo
Checksums-Sha256:
 e33998afc454a09ef6f90abd177ca071b861addf35e209dec1fad91ff2ef215b 2288 
aiscm_0.16.1-1.dsc
 db15641f04a09efa4315851e6e1ba94aad58743f5a8df4439b9260da09092ceb 3804439 
aiscm_0.16.1.orig.tar.gz
 61f57b9691ad4381cb1938e0c4403e9c352a780fd33c22ef33a6ea43927fc1d6 833 
aiscm_0.16.1.orig.tar.gz.asc
 bb587a64c7658f01e98fe2407235b4fd02e6d75d6010dd1a9d35b2ac8d5bcb74 5552 
aiscm_0.16.1-1.debian.tar.xz
 0b3511d2e406fe64a34568e1968b45feeaf50c95c650340e9081998a7b617b8b 15232 
aiscm_0.16.1-1_amd64.buildinfo
Files:
 19f0162d841a25b8e9227e3c50ba3554 2288 lisp optional aiscm_0.16.1-1.dsc
 56e2b48537fe3227576d40c06185e455 3804439 lisp optional aiscm_0.16.1.orig.tar.gz
 411054fd3db13f8e33257f7906fa29e1 833 lisp optional aiscm_0.16.1.orig.tar.gz.asc
 4bc30f92cb790777bc01f074ce36608c 5552 lisp optional 
aiscm_0.16.1-1.debian.tar.xz
 5116646124f53db38b3a65bb332113ce 15232 lisp optional 
aiscm_0.16.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEolIP6gqGcKZh3YxVM2L3AxpJkuEFAluikXUACgkQM2L3AxpJ
kuHe/g//UuDhFZ8+744oKJA7yH5R3f3owJFO3503C1yVCaWc+nWoRFs1TDVzC1mv
uhJX+XkXH6tRQBCAEuiOOcBCfuweykq+yOylBpZCJzYGsHOG6PETReUvZJ04k38T
qR4o9y2QdPQWuvrSPEdczpZmpGdfI6wNa6c22ceLrO4zX1bgx7F8IWhQc5OD0r0O
L5zQHWMPFx7y99dGJT33FMQl593fE8onIB84OtEt5j/a5ej7/0V7gl+96MOERfYP
EU2zAdxmo5BKDHoOvOAHbaUgUog0CuVlK23R3xzCyXpIHeqKxwUsbwiav18sAdxf
g3GOwTJLBaXgAl2folCE4bT0TKOvPN7me/iUiCWqKKYlkiLMFwM12YQn8Rs7kt8Z
Dk9Wyfzwh6eCw2VzrwsFzoFDlfuA52mNWWJUGfHQwLtZnBkdOoDgc7WsQ/xlgeZw
PdpeOPTyqMvzOuFoEdv+LzWng8IUMuDleNe4GQGx7eBajHcCGjn908+rayPR1cd7
B8MmdxeWZDNBd/1p6ishGC8KJ2A+g2PcnYJVcCnmO7vIu8qc4IrEpK7ZNmkkpP3i
x6ESRsMSOk1eZdHbFuFPGjdAa5NtIRQqw95BZpYH9o9NWHmPV4H8jedyYAnAY7Fg
ZYqOmyh9u0NS30LS4RcjnvPDehzXIJq6zJydP/Z2N0pP3ZpWDXQ=
=nEtS
-END PGP SIGNATURE-



Accepted aufs 4.18+20180903-1 (source) into unstable

2018-09-07 Thread Jan Luca Naumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 07 Sep 2018 10:45:49 +0200
Source: aufs
Binary: aufs-dkms aufs-dev
Architecture: source
Version: 4.18+20180903-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Luca Naumann 
Changed-By: Jan Luca Naumann 
Description:
 aufs-dev   - Development files for aufs
 aufs-dkms  - DKMS files to build and install aufs
Changes:
 aufs (4.18+20180903-1) unstable; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 4b69f13f0f472c12b598120a0e5bbe4ebf71fdbd 1961 aufs_4.18+20180903-1.dsc
 b93b56e21049fccb0746be8ae3533247074cf135 242910 aufs_4.18+20180903.orig.tar.gz
 346f320dba91fc6c105018c8c90138caccedd4ed 4216 
aufs_4.18+20180903-1.debian.tar.xz
 0ad949807dd435b82a2df334d9854e1e6e358383 6042 
aufs_4.18+20180903-1_amd64.buildinfo
Checksums-Sha256:
 f532fd7280c36fa5014879050931fe2c7cb884f1379b220a55459e7725e836a9 1961 
aufs_4.18+20180903-1.dsc
 1ee2931a44fca1881d49759c55cde7ad65acfddf8e8244cd2bccc6f4f5a1b5ef 242910 
aufs_4.18+20180903.orig.tar.gz
 14ffa3208f39d85900496f20ccf5f5ec0d3a7df585227ea1242dec4d71f4ed8b 4216 
aufs_4.18+20180903-1.debian.tar.xz
 c25bf9696411ffe5a82d25146ba1e78cc3de8c8a1624a23cd566e5b31efad4fc 6042 
aufs_4.18+20180903-1_amd64.buildinfo
Files:
 4e827a6d1ac0a12699e2bf579bf3344e 1961 kernel optional aufs_4.18+20180903-1.dsc
 52e4dda78b284e2e07af17f9c948d052 242910 kernel optional 
aufs_4.18+20180903.orig.tar.gz
 626bb4e60ddefeef7ccc192cbec42988 4216 kernel optional 
aufs_4.18+20180903-1.debian.tar.xz
 558dcd4ef22b203bf33cf3e90905dc44 6042 kernel optional 
aufs_4.18+20180903-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEwNbeTg2NJIWRcwSlfhHX8Rn5cbsFAluSPFkACgkQfhHX8Rn5
cbtUBBAAvEb1HRhMc/HhtTIfItaS1d4lMbbOaMS72Hw1LbLJ52blLvB9hl6bkNJO
Q/NWpCVRwOHB2z/lcgpsJoNTzqYFe7wNyFoFx/AvNgYkLjlCw5pOtSth15jsWd0o
2FTdK3mlLAkZWb76NqtrL4aKab5+pntljuqrQrO1ZigShNLmkgAgmaByGWiji/Hx
T059A5lCiMeGv+XbTnewvMj3LBfT2IHSt2DD0DaSxYysURjanSl+BsZ7BY3aTXcB
NtLqCH/34H5U1RIbPr82IAbzL58nzyCmWlSnFXKo6S4jQwrUCV6arlvCPx/Ztu0k
7xIXAvzynR/KyV7WwdWjX89ytkTbg1tUusvDru4GhRlkLBw0zMTeCG1a6h1+QHp3
4cHvtacRFozU4aViTNJRH/40IHqcSu+863vNOJsHmqYwV2WiU5x+/fS9UsOoeOlx
6FwmbS82gUEtGH2dgrLya72ZZI33J0eHWpoBNYY2j0C/WbE8G1/rFRCvVly0ccBu
eWFExcAzAHDt6Ai/ONDOVdCn5hyXzFfJ6vFMWdbKLV5yH3QAweCOPjC4+C9e+Gcz
w9Kkbfd2/rcrcU1FUR42hI6zN5PO8ukCVAg1RLMUmnLyR2ksT5Vpt4eGnQFCCBoS
CCRdRpSqrxoynirMwucHlFx4ASf1wc8r6z6z1GdQFg3C2JpwrKI=
=r6cX
-END PGP SIGNATURE-



Accepted aufs 4.17+20180827-1 (source) into unstable

2018-08-27 Thread Jan Luca Naumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 27 Aug 2018 10:40:35 +0200
Source: aufs
Binary: aufs-dkms aufs-dev
Architecture: source
Version: 4.17+20180827-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Luca Naumann 
Changed-By: Jan Luca Naumann 
Description:
 aufs-dev   - Development files for aufs
 aufs-dkms  - DKMS files to build and install aufs
Changes:
 aufs (4.17+20180827-1) unstable; urgency=medium
 .
   * New upstream release.
   * debian/control:
 - Update to Debian policy 4.2.1, no changes needed.
Checksums-Sha1:
 a8f8fa036c821ef0d49b1f911be98e5b4e19d510 1961 aufs_4.17+20180827-1.dsc
 40a4cd31ab97055a13d8c412545dc9d2cddf862f 242993 aufs_4.17+20180827.orig.tar.gz
 0aced74d5580c62c06e9caa1590b9d970f2270c5 4200 
aufs_4.17+20180827-1.debian.tar.xz
 1696b4fcb7ad7d723f7c7eb0332d633aec2fcd8e 6141 
aufs_4.17+20180827-1_amd64.buildinfo
Checksums-Sha256:
 cdd68bd75aad65e85ddaad8c961d8daa8132e9c2253f2a3403a27280964c5b7e 1961 
aufs_4.17+20180827-1.dsc
 c56a0cdd33a7e8e5deff3dc40fe9a8729095cd352be7d65056aaed6d5ab9b3d6 242993 
aufs_4.17+20180827.orig.tar.gz
 93b742f2d92ba1656e42889cc50c372918a60eb29e8043bc405da085f0ae1efe 4200 
aufs_4.17+20180827-1.debian.tar.xz
 40926c5701ae56ba94091b37e2aaa353bd28b825247cf3697b912a30d44ff5b1 6141 
aufs_4.17+20180827-1_amd64.buildinfo
Files:
 ebffd5ec2b27d8f9c47bd4cf745b3e4e 1961 kernel optional aufs_4.17+20180827-1.dsc
 afd0f3786c069d90206139f7e39ccfc6 242993 kernel optional 
aufs_4.17+20180827.orig.tar.gz
 0b73d8356ab066471e35647f7679f0cf 4200 kernel optional 
aufs_4.17+20180827-1.debian.tar.xz
 341a96d50579462f5c763588ec1788c3 6141 kernel optional 
aufs_4.17+20180827-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEwNbeTg2NJIWRcwSlfhHX8Rn5cbsFAluDvbwACgkQfhHX8Rn5
cbvpIg/9Gps1bAUO2ZS38iokFftDijIE6jeZZXE09AIeUF/x12NvYYtK0Yubw6g0
RGNo23ow7Cl3GudlnrBi4KeLtHj3NvLmrI4P3QFHezTtN8qNZQTOBlAe4A0H56Ok
TeXbLg2sdqvlLWSEOsaUIdrAKqf93mSN9+2vUWreE59AxA1JXEhSog4zDB8WEKis
CxzE5iJVg8UpgDlp+APZ/xmIWH2IeuSqbUsRXqvWnIimg/4kchrn0gMVhjDuI/R1
pdcsmvDOLSpUc8k09cbJd8lS2c9MqvD7KGvewb2f7h0wwCRaIlfCyai8C+KsmEIk
iwx278UXbXSxMLKvcCYmNXZs40j2LFAc+3gV5baDIzSMCxDNhoOkHA0Jon1nbzOT
DMLDZ3l+hEprS1YadJn0X73pvgnjl4DBcALc9mkEUo9TZHtCLL3bAAYGK7Ze02eW
xmJOh8w786ZGZbHeR1+ZuTi1WB0cAHzCXTT8Wu2vLAwFAAQbamnb7913KlHPFpqU
L3OX0PSM5g0PkYO+HVBNoeLuQpK6LJuW7zwssJzbo4wobt1bO9M9fHPwNSGJXzEz
8Qxc3BMZoycSfzEW1kGjmzuyNijgMJMOJ2RFec1sWWsNEuoDBDqKwCutTN8f8Ojh
oz1/PB/OFVlxrCX7ey4Z7pqAR23VD0x3EGzET7jrZBJssDOnbis=
=kdXp
-END PGP SIGNATURE-



Accepted psi 1.3-5 (source) into unstable

2018-08-25 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 25 Aug 2018 10:37:28 +0200
Source: psi
Binary: psi
Architecture: source
Version: 1.3-5
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Description:
 psi- Jabber client using Qt
Closes: 907205
Changes:
 psi (1.3-5) unstable; urgency=medium
 .
   * Cherry-pick fix for compilation with qt 5.11
 (Closes: Bug#907205)
Checksums-Sha1:
 7e9ef9dfcb925bbfcf5d7a23126fad3ca78a4d43 1653 psi_1.3-5.dsc
 03691d9730a4c784f7aab098c0d2aa640d462904 2 psi_1.3-5.debian.tar.xz
 f8d1e83450068f924be2b969d3234b5d5912a3a8 12618 psi_1.3-5_amd64.buildinfo
Checksums-Sha256:
 0de53cafd64b64e92b99c707b6fdebac1f0a95cbefe81bde252956c9d775fa21 1653 
psi_1.3-5.dsc
 bddf6629a674cf37b0809d7082026cec92f9ace3922e4049bfbced84f7dd 2 
psi_1.3-5.debian.tar.xz
 b8bafc7ffd80cad30c12f67fb386bca8bfd25e77d05cd914c3a95815b0d25b64 12618 
psi_1.3-5_amd64.buildinfo
Files:
 bcbc907d10013fbb1151d3af60d4cb3f 1653 net optional psi_1.3-5.dsc
 125f229b437e3a3aaab97d86ea640274 2 net optional psi_1.3-5.debian.tar.xz
 be35407d5456b5fea367b09254a290cc 12618 net optional psi_1.3-5_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAluBHXMPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRviwL+QETe685M1YRREhyH7upJbARmtPmEsP3FgQa
lXfc7alltCNdiEBYfWvU/xltlqsW7FbyfI/BraCrtsTxClYzm96ixfhNUwrgn8r0
2eO9rrbt4qcxZtUAxPXrrDCBQruPxCLW5LFttawJj1aS/Uhg6Vvfb0uXEQxxwo2s
aVaIX+cJt9ir4gtJzQfQmsIk3B3j07GejdEXqH32SfCIdMUVZk9J8CiMD6Z1H7Xh
8edieFyP4Tkqtp7bAIleAqJoRy1yZi3kxXoDB9C+EI+Lks0LxtnSipZgHJCbhiqW
dAmQkrDcfCxQ1TOwU3Hrrb8gzHjlgqiXVsVOs/lLUIJ3f9nx531K/oQZFiy6/Rk7
DCLX0YAY9DAD7/qDfghdNWv9nTLFY0BOwwoncZ5nep8GaE6SLlL+SOXUrkdiBNNd
Nq3h2X51Ojdeni21ToAxorq43f6Y4x5bjqDSF34Nb9fYLzf/NGU34vRl8MKej2E/
m7hLo+xRrdWU5AJRM725fuRBS9uHXA==
=30nj
-END PGP SIGNATURE-



Accepted pushpin 1.18.0-1 (source amd64) into unstable

2018-08-22 Thread Jan Niehusmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 22 Aug 2018 15:32:05 +0200
Source: pushpin
Binary: pushpin
Architecture: source amd64
Version: 1.18.0-1
Distribution: unstable
Urgency: medium
Maintainer: Jan Niehusmann 
Changed-By: Jan Niehusmann 
Description:
 pushpin- HTTP reverse proxy server for streaming and long-polling services
Changes:
 pushpin (1.18.0-1) unstable; urgency=medium
 .
   * New upstream version
Checksums-Sha1:
 81dbb61a0dcf265e5f77aa17e6c9ebeffd3433c4 1732 pushpin_1.18.0-1.dsc
 a4a6c2f7d7e643ad18de9304e77ef99dbe714d8b 208868 pushpin_1.18.0.orig.tar.bz2
 204bf8375c993152584254523bf20e4467d419cb 19968 pushpin_1.18.0-1.debian.tar.xz
 77543b4501684793c0ed30cbedefce348e182781 10700 pushpin_1.18.0-1_amd64.buildinfo
 709786c8a06cd1dc66a49ddf00634fd7d2247396 821556 pushpin_1.18.0-1_amd64.deb
Checksums-Sha256:
 f4dfa6f089e04774e93d2f559b6ed6501ed067b86f4472c089648c2c284f71ea 1732 
pushpin_1.18.0-1.dsc
 8d37a195d7cdffc9dc7a00f9555dddee8f668238840e265f94278fc26fb26dab 208868 
pushpin_1.18.0.orig.tar.bz2
 b589be573fb1c8073b8309f44cdc347e58d547336ceaa69fa2d773fb4b708a91 19968 
pushpin_1.18.0-1.debian.tar.xz
 41caf3ca632c4317e565c60817bd87fa259a0a651d06e6efb0b8cb3feb5738b2 10700 
pushpin_1.18.0-1_amd64.buildinfo
 eaf64fadd5119ef517a3ab064e671818fa9b7f35b07f6413737591ebf1d86e1f 821556 
pushpin_1.18.0-1_amd64.deb
Files:
 1c465bcb92c8b372fb7ba2387adb9910 1732 net optional pushpin_1.18.0-1.dsc
 09bebd2e5147033f952b606458d9ada9 208868 net optional 
pushpin_1.18.0.orig.tar.bz2
 8e5f79dcdc71a444c82db6276cf834de 19968 net optional 
pushpin_1.18.0-1.debian.tar.xz
 b207b036914758ed8e8c8d025aadd78b 10700 net optional 
pushpin_1.18.0-1_amd64.buildinfo
 572fb519e88b495b8860192452837546 821556 net optional pushpin_1.18.0-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQHDBAEBCgAtFiEE+20yASySVog94MmzwkDOmV0CaxEFAlt9Z1QPHGphbkBkZWJp
YW4ub3JnAAoJEMJAzpldAmsRFAYL/3nZBw6C3Ti4GV0XraMZj2CJtjbJyPzyTLaH
VGKoBnWwsmiWX75qpw0xFrsycHQYNGBywyBR4srkNLgnOIGFsgXkvZbvOCdvDalf
GDrr0SLmmwIzYAwOUuLYc8sTOj7a84IoUUT6n0No1ZIIDb7SKV3L0KKdKODlK+xp
Di0bj1Fc12MO1vgcrE0zVKQxGpKqxhzXWcjXlIGgizls3NxZYCuszGeFqnmPnCGy
JkIGzoAxACchYwB7t/ioj+J/fJqnvk7Lv49EWb9HwMKo7nTR+ZsYtN6O1Nxtj3yr
WRsjoc/e1yFzHTU22bU2EU9UybgU3qtkIzdSLvn8jQ7A1Lm1yWawL3P36Eeo26LY
5hGj9YPRzFsXlxOgDJlnXXQIHnMgXHVX3+CzxmIPh5fhi06AziMz7Q7Q5WCTLk93
vzzSQ58g5spmy7o7i3sjENCKaDo1fLLEVRbm/qrKhZngfZkK85zDcCgqKEAb+IIn
TyKydWUK1f1srHbhLYEjJOAH/7qqFQ==
=56o9
-END PGP SIGNATURE-



  1   2   3   4   5   6   7   8   9   10   >