Re: Reaction to potential PGP schism

2023-12-21 Thread Daniel Kahn Gillmor
Hi Gioele--

On Thu 2023-12-21 11:02:06 +0100, Gioele Barabucci wrote:
> On 21/12/23 04:16, Daniel Kahn Gillmor wrote:
> As the Uploader of rust-sequoia-openpgp, what do you think of the 
> related sequoia-chameleon-gnupg project [1] (drop-in replacement for gpg 
> that uses sequoia internally)?
>
> Would it work as a stop-gap measure while the Debian infrastructure 
> moves from GnuPG to something else (to `sop`, for instance)?
>
> [1] https://gitlab.com/sequoia-pgp/sequoia-chameleon-gnupg not yet in 
> Debian AFAIK

Thanks for pointing this out!  It looks interesting, but i've never used
it (or even tested it) myself.  I don't think it can be a completely
perfect, feature-for-feature replacement for GnuPG, given the
overwhelming complexity and peculiarity of the GnuPG interface, but I
imagine it would work for some people, for some purposes.

I certainly wouldn't object to anyone packaging it for debian as long as
it ships its binary interface someplace other than /usr/bin/gpg.  Modulo
dealing with the rust dependencies, that seems like an obviously
reasonable and straightforward thing to try to do.

I don't know how the "chameleon" would compare with GnuPG itself in
terms of performance or some of the scaling concerns i mentioned in my
earlier e-mail, but such a straightforward deployment should make it
easy to test.

If you're asking about using /etc/alternatives or something like that to
provide some sort of generic swapping capability, or a dpkg Provides:,
such that /usr/bin/gpg on some systems would point toward the
"chameleon", i would want to see some significant archive-wide testing
done before we even consider inflicting that on our normal users.  This
would be the kind of thing that the experimental archive is designed
for.

One of the ongoing challenges with GnuPG development is the fear of
dropping or mis-handling some feature or flag or option or configuration
that someone has stuffed into some script somewhere and completely
forgotten about.  GnuPG itself deals with this kind of problem
regularly, and sometimes things like this do break during an upgrade.
Clawing the way back from such a break actually ends up making the
interface even more complex and surprising to those people who haven't
seen how it accreted in the first place :/ It was scary enough to change
/usr/bin/gpg to move from the 1.4 branch to the 2.x branch many years
ago (we shipped the 2.0 branch as /usr/bin/gpg2, and only finally made
/usr/bin/gpg update when the 2.1.x branch was sufficiently mature). And
even thenm we dealt with the fallout from that change for years
(e.g. see /usr/bin/migrate-pubring-from-classic-gpg in the gnupg-utils
package).  The differences were enough that I resisted using
/etc/alternatives to let each installation decide which package offered
/usr/bin/gpg1, because of the dangerous side effects of switching back
and forth (see #806904 for example, and the conversations at DebConf14).
I can only imagine that trying to ship the "chameleon" as /usr/bin/gpg
would face some of the same challenges, probably even more severely.

At best, something like this would be a stop-gap, as you say.  i
wouldn't want the long-term health of *PGP functionality in debian to
depend specifically on the command-line interface for /usr/bin/gpg,
regardless of who is implementing it.  Even GnuPG upstream appears to
agree with this sentiment, as they encourage programmatic users of GnuPG
to use libgpgme, which is supposed to hide some of the command-line
complexity.

  --dkg


signature.asc
Description: PGP signature


Re: Reaction to potential PGP schism

2023-12-20 Thread Daniel Kahn Gillmor
hey folks--

[ This message won't make sense unless the reader distinguishes clearly
  between OpenPGP the protocol and GnuPG the implementation! As a
  community we have a history of fuzzily conflating the two terms, which
  is one of the reasons that we're in this mess today.  Please read
  explicitly. ]

[ Background: for those who don't know, i've been a maintainer in debian
  of GnuPG and other OpenPGP-related tooling for several years, and i'm
  also the co-chair of the IETF's OpenPGP working group; i participated
  in many of the discussions that led to the current sorry situation,
  and it is happening despite my best efforts to avoid this problem.
  I'm probably as responsible for this situation as anyone in Debian
  is. My apologies. ]

The best outcome, in my opinion, would be for GnuPG to go ahead and
implement the pending updated OpenPGP specification (the so-called
"crypto-refresh"). I say this despite personally preferring some of the
concrete ways that i think the GnuPG project would have preferred to (as
indicated by the latest "LibrePGP" Internet-Draft, at least) diverge
from the OpenPGP specification.  There are enough other advantages to
the OpenPGP crypto-refresh that it doesn't make sense for GnuPG to
deliberately avoid implementing the community consensus. The GnuPG
project clearly has all the underlying cryptographic and engineering
capability to do this, if it wants to, and the OpenPGP crypto-refresh
process took deliberate measures to avoid collisions with any
prematurely deployed code that implements a draft that hadn't managed to
reach a rough consensus.

Can debian make GnuPG interoperate with the rest of the OpenPGP
ecosystem?  Probably not without GnuPG's cooperation: it would be a
substantial patchset to carry in Debian, and even trickier to do if
GnuPG upstream sees such a patchset as hostile.

Read on below if you want to consider some other options.

Stephan Verbücheln wrote:
> As you probably know, Debian relies heavily on GnuPG for various
> purposes, including:
> - developer communication
> - signing of tarballs and patches
> - automated processes such as update validation by APT

Debian by policy and by mechanism relies heavily on the OpenPGP protocol
for these things.  And i'd also add certificate verification, aka "web
of trust" for Debian developer identities to the list as well.

In particular, we use OpenPGP for cryptographic signing of software
source, packaging information, archive control, and distribution
mechanisms; for developer identities; and for cryptographic verification
of all of these things.  As a project, we don't make much use of the
encryption/decryption parts of OpenPGP, since we develop mainly in the
open.  But not everyone uses GnuPG for these purposes.  There are
multiple interoperable OpenPGP implementations in Debian beyond the
GnuPG family (C), including RNP (C/C++), pgpainless (java), pgpy
(Python), GOpenPGP (Go), hOpenPGP (haskell), and Sequoia (Rust).

But it is also true that the GnuPG implementation specifically is baked
into some of our infrastructure.  I'll get into why that is below (see
"Why is GnuPG on Debian's Critical Path?").

> How can Debian deal with this? Should Debian intervene to prevent the
> worst?

I don't think Debian can make a specific intervention that will avoid
the global problem, but i think there are things we can consider going
forward.

One possible approach is to drop the use of OpenPGP (or "LibrePGP")
entirely, and instead base our internal cryptographic dependencies on
bespoke cryptographic implementations.

I think that would be a mistake.

I do not want Debian's long-term health to depend on any particular
implementation.  If the implementation fails then we would have to (as a
project) decide on our own upgrade path.  For a failure due to
cryptanalytic advances, that can be particularly harrowing: I don't
think we as a project have the necessary expertise to do that well.  For
failures due to buggy implementations, we can always patch, but i wonder
about the amount of cryptanalytic review a bespoke implementation will
have as opposed to publicly audited generic tooling.

If we have to decide as a project on LibrePGP vs. OpenPGP, i'd prefer
the wider community project with a stable reference, functioning (albeit
sometimes rough) consensus, a range of diverse implementations, and
substantial public interoperability testing.  That means OpenPGP.

To be clear, the IETF OpenPGP working group actively solicited input
from the GnuPG team, and tried to work with the project as one
significant implementation among many.  But ultimately, the GnuPG
project decided to break away from the community process, and created
this "LibrePGP" split, which threatens interoperability for the *PGP
ecosystem as a whole.  Maybe the end result of this will be to put a
nail in *PGP's coffin, and we'll all just go back to bespoke
cryptographic implementations that have no stable reference other than
the source code, and little 

Bug#1038812: ITP: sexp -- S-expressions parser and generator C++ library and command-line tool

2023-06-21 Thread Daniel Kahn Gillmor
Package: wnpp
Severity: wishlist
Owner: Daniel Kahn Gillmor 
X-Debbugs-Cc: debian-devel@lists.debian.org, d...@fifthhorseman.net

* Package name: sexp
  Version : 0.8.5
  Upstream Contact: Maxim Samsonov 
* URL : https://github.com/rnp/sexp
* License : MIT
  Programming Lang: C++
  Description : S-expressions parser and generator C++ library and 
command-line tool

S-expressions are data structures fr representing complex data as a
variation on LISP S-Expressions.  They are similar to (but older than)
JSON.  There are a handful of variations in format and
canonicalization that it can be useful to translate between, and to
abstract away from.

This C++ library inherits from the the original canonical MIT-licensed
s-expression code offered by Rivest and Lampson, and is augmented to
include parsing capabilities for extensions made by the GnuPG project.

This library is used by the current upstream version of librnp
(Ribose's OpenPGP implementation), for the purpose of interoperability
with GnuPG's local file storage.



Bug#1017688: ITP: rust-sequoia-octopus-librnp -- librnp reimplementation in Rust for Thunderbird

2022-08-18 Thread Daniel Kahn Gillmor
Package: wnpp
Severity: wishlist
Owner: Daniel Kahn Gillmor 
X-Debbugs-Cc: debian-devel@lists.debian.org, d...@fifthhorseman.net
Control: affects -1 + thunderbird librnp0

* Package name: rust-sequoia-octopus-librnp
  Version : 1.4.1
  Upstream Author : Sequoia Project
* URL : https://gitlab.com/sequoia-pgp/sequoia-octopus-librnp
* License : LGPL-2-or-later
  Programming Lang: Rust
  Description : librnp reimplementation in Rust for Thunderbird

This package contains a dynamic library (shared object) with the same
interface as librnp.so.0, at least the parts used by Thunderbird.
This implementation is built in Rust by the Sequoia OpenPGP project.

This is not a complete replacement for librnp0, as Sequoia targets
only the features used by Thunderbird.

When the octopus is used in place of baseline librnp0, users should
get a number of different features, including:

- better integration with existing GnuPG keyrings, secret keys
  (including smartcards), and trust annotations, for those who already
  have a GnuPG installation.

- automatic background keyring refresh ("parcimonie"-style)

- carefully-planned cryptographic algorithm deprecation

- protection from surreptitious forwarding using OpenPGP's "intended
  recipients" subpacket

- SHA1 collision detection

- secret keys locked while in memory, as a defense against memory
  dumping attacks

The intention of this package is ultimately for a Thunderbird user to
be able to switch from librnp to the octopus with a simple package
installation (and to revert to librnp with a package uninstallation).

Early experimental versions will likely just ship the pre-built .so
and let the adventurous user handle the system integration.



Bug#1011388: ITP: sequoia-wot -- Authenticate OpenPGP certificates using the "Web of Trust"

2022-05-21 Thread Daniel Kahn Gillmor
Package: wnpp
Severity: wishlist
Owner: Daniel Kahn Gillmor 
X-Debbugs-Cc: debian-devel@lists.debian.org, d...@fifthhorseman.net

* Package name: sequoia-wot
  Version : 0.2.0
  Upstream Author : Neal H. Walfield 
* URL : https://gitlab.com/sequoia-pgp/sequoia-wot
* License : LGPL 2.0 or later
  Programming Lang: Rust
  Description : Authenticate OpenPGP certificates using the "Web of Trust"

The "Web of Trust" describes a network of identity assertions
("OpenPGP certifications") and signing delegations ("OpenPGP trust
signatures"), which can be used to formally validate identity
information in a cryptographic certificate.

In particular, this tooling allows the user to associate OpenPGP User
IDs (or simply the e-mail address part of the User ID) with some set
of OpenPGP certificates on the basis of explicit certifications made
by trusted parties.

The validation rules and certificate formats used in the Web of Trust
support corroborative, multiparty certification, so there is no need
to assign full trust to any single party.

This tooling offers a means to explore the Web of Trust by a library
in Rust, and a command-line interface capable of working with either
certificates in the filesystem or interacting with GnuPG's certificate
store and trust database.



Bug#1009621: ITP: python-sasl -- Python bindings for Cyrus libsasl2

2022-04-13 Thread Daniel Kahn Gillmor
Package: wnpp
Severity: wishlist
Owner: Daniel Kahn Gillmor 
X-Debbugs-Cc: debian-devel@lists.debian.org, d...@fifthhorseman.net

* Package name: python-sasl
  Version : 0.3.1
  Upstream Author : Todd Lipcon 
* URL : https://github.com/cloudera/python-sasl
* License : Apache-2.0
  Programming Lang: C, Python
  Description : Python bindings for libsasl2

This package should enable a Python-based tool to take advantage of
any installed SASL module.

This should be useful for testing tools like sasl-xoauth2 (see for
example #1006888)



Bug#963027: ITP: sequoia-sop -- Stateless OpenPGP command-line interface (Sequoia)

2020-06-17 Thread Daniel Kahn Gillmor
Package: wnpp
Severity: wishlist
Owner: Daniel Kahn Gillmor 

* Package name: sequoia-sop
  Version : 0.17.0
  Upstream Author : Justus Winter 
* URL : 
https://sequoia-pgp.org/blog/2020/06/12/202006-sequoia-0.17.0/
* License : GPL 2+
  Programming Lang: Rust
  Description : Stateless OpenPGP command-line interface (Sequoia)

This package contains a rust-based implementation of the Stateless
OpenPGP command-line interface, aka "sop".  It is useful as a
minimalist utility, and as a component in test suites and other
OpenPGP-based verification tools.

https://datatracker.ietf.org/doc/draft-dkg-openpgp-stateless-cli/



Accepted rust-clang-sys 0.28.1-5 (source) into unstable

2020-01-28 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 28 Jan 2020 17:21:11 -0500
Source: rust-clang-sys
Architecture: source
Version: 0.28.1-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-clang-sys (0.28.1-5) unstable; urgency=medium
 .
   * Team upload.
   * Package clang-sys 0.28.1 from crates.io using debcargo 2.4.2 plus
 changes from Wolfgang Silbermeyer that address #949959.
Checksums-Sha1:
 da3f9602e2e9df3635da26c50a77896dec5dc116 2525 rust-clang-sys_0.28.1-5.dsc
 52d2ac9ff048a08a8241c1c09a002ab7cf34df5e 3016 
rust-clang-sys_0.28.1-5.debian.tar.xz
 1e95c7b72dd82937fd16ef2d01a4a1707dab9bd1 7362 
rust-clang-sys_0.28.1-5_source.buildinfo
Checksums-Sha256:
 43a80ef6fabb58dca33c7b0b4366930b5c3e1a0ab138a900b86101cb6c72f766 2525 
rust-clang-sys_0.28.1-5.dsc
 aaec21ffd4049b4d5497149c3478fdfbe8cd7864b932238f818bcb74142a8926 3016 
rust-clang-sys_0.28.1-5.debian.tar.xz
 7f9347818b353e41ef6e306ec88fa5c8e62890954003588d2eff533a9c930044 7362 
rust-clang-sys_0.28.1-5_source.buildinfo
Files:
 123ca89734e72319922f96773214307f 2525 rust optional rust-clang-sys_0.28.1-5.dsc
 911c705c5dc07435b891930bffb279c4 3016 rust optional 
rust-clang-sys_0.28.1-5.debian.tar.xz
 b28c58ee516da319b2e1cf88a7cc0495 7362 rust optional 
rust-clang-sys_0.28.1-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXjCz2wAKCRDEDyVUMvKB
D0yGAP42l4sB29mzeU1Lvw3uaFlbLTNgmI+UKbzj8BLCa1GY7QD/T8s8BkzZ+Ti7
21YyX6P8rSM/jI3dhr5bnjVhhYHTdgg=
=aBEO
-END PGP SIGNATURE-



Accepted gpgme1.0 1.13.1-4 (source) into unstable

2020-01-28 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 28 Jan 2020 14:06:56 -0500
Source: gpgme1.0
Architecture: source
Version: 1.13.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 gpgme1.0 (1.13.1-4) unstable; urgency=medium
 .
   * fix up tests, cover all supported python3 versions
Checksums-Sha1:
 ced15f24533d9fa965102f3edfc57431a744e689 2282 gpgme1.0_1.13.1-4.dsc
 3ad405106549025cb4ee4659dbc629b8a50b7b83 19936 gpgme1.0_1.13.1-4.debian.tar.xz
 bec22b58272444d0a371ad147f21cb78e8a3d299 14012 
gpgme1.0_1.13.1-4_source.buildinfo
Checksums-Sha256:
 d298cfa2e5ff066259911228a5350cb07ef515afe60dea6fe91089ba71ebb7f3 2282 
gpgme1.0_1.13.1-4.dsc
 4261625e521ab5801f9b69054fd3dd4eedab3afcd9044dbd8e6ec6de16e9c233 19936 
gpgme1.0_1.13.1-4.debian.tar.xz
 007f9ab67925929ecabad4c197faf7c0b76b0d5d8acc99675c14eb8834491f12 14012 
gpgme1.0_1.13.1-4_source.buildinfo
Files:
 2a34c2be84f7ea3f1d5bd62d30f30386 2282 libs optional gpgme1.0_1.13.1-4.dsc
 f8cfa57defc683145c57b2415b77f41f 19936 libs optional 
gpgme1.0_1.13.1-4.debian.tar.xz
 b840c9a4e4cde4686c681893485f1b86 14012 libs optional 
gpgme1.0_1.13.1-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXjCGegAKCRDEDyVUMvKB
D428AP9ngDj+NhnaJZjQvuYd/lPBK9B/XkB/kBdWtfwlL9cJkgEAwzHulKRUZTMR
Y2f7DdACGfS8XPNTRAZZ8YFfjdoOCAE=
=9LWj
-END PGP SIGNATURE-



Accepted rust-clang-sys 0.28.1-4 (source) into unstable

2020-01-27 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 27 Jan 2020 16:52:54 -0500
Source: rust-clang-sys
Architecture: source
Version: 0.28.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-clang-sys (0.28.1-4) unstable; urgency=medium
 .
   * Team upload.
   * Package clang-sys 0.28.1 from crates.io using debcargo 2.4.2
Checksums-Sha1:
 f07c96f173870155d864614c8aba74ec50748e36 2512 rust-clang-sys_0.28.1-4.dsc
 2b0c921cb33dd6169ef1203720b529b3bf20fc91 2948 
rust-clang-sys_0.28.1-4.debian.tar.xz
 f70668a1de0c6bcaee0e69bce4c28e08ecabaeb8 7362 
rust-clang-sys_0.28.1-4_source.buildinfo
Checksums-Sha256:
 728eb837d067d6f2f5432e789da65bc8c57f3e7b5cc43ffc5fb91ed0b01dd9a1 2512 
rust-clang-sys_0.28.1-4.dsc
 b106f4d01226f3bfd0339a915379861a92688acbd743fa9c0322fee74847998e 2948 
rust-clang-sys_0.28.1-4.debian.tar.xz
 e3b68a308483d21c2b578b309a32c90fad58446ad7fdc22106abcf67a7e7d0d6 7362 
rust-clang-sys_0.28.1-4_source.buildinfo
Files:
 e762278c74f9851ccd0ab1ea2d2a52f6 2512 rust optional rust-clang-sys_0.28.1-4.dsc
 b89fd2e0ac2a3549df94889ac5927c55 2948 rust optional 
rust-clang-sys_0.28.1-4.debian.tar.xz
 e2469f2e8a710d15c0aa27c58653a9ad 7362 rust optional 
rust-clang-sys_0.28.1-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXi9buQAKCRDEDyVUMvKB
D4SGAQDJ+Fj71h0BTuPssEMfXFzD+XQ2XtIPdLFGtUpcsVy4YgEAmdZrS/YLrTR5
Po2/vSBD+KmBcoAIfsS9BfxhzfUYYAM=
=Xb3K
-END PGP SIGNATURE-



Accepted gpgme1.0 1.13.1-3 (source) into unstable

2020-01-23 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 23 Jan 2020 17:46:46 -0500
Source: gpgme1.0
Architecture: source
Version: 1.13.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 gpgme1.0 (1.13.1-3) unstable; urgency=medium
 .
   * drop ${python3:Versions} from python3-gpg, i clearly don't know how to
 use it properly.
Checksums-Sha1:
 01219db0d8fe0de04f31455686d105eaabd56e2a 2258 gpgme1.0_1.13.1-3.dsc
 a6218ea4a02bc4a3c4d2f0ce60a3b156df99d467 19800 gpgme1.0_1.13.1-3.debian.tar.xz
 eb455523d19d05fdb45029b225746266d6091a42 18420 
gpgme1.0_1.13.1-3_amd64.buildinfo
Checksums-Sha256:
 341257a975f21d7e2d2018de0beb13367c614c953a6f4ffc37637120886845b6 2258 
gpgme1.0_1.13.1-3.dsc
 28ee993f96a6b4898f0b376271280cea23766117b854d5eacb980a6330055ad2 19800 
gpgme1.0_1.13.1-3.debian.tar.xz
 08703c3d1981ae03e815a3a793e15593f89d81e8b7695c5bf1f1b0acab87957e 18420 
gpgme1.0_1.13.1-3_amd64.buildinfo
Files:
 46bf81e931982a686cee555218bf5594 2258 libs optional gpgme1.0_1.13.1-3.dsc
 9947b2a39911588fd2d90ac8ddacf710 19800 libs optional 
gpgme1.0_1.13.1-3.debian.tar.xz
 cd1a4adf5431c104f76ee84cdb78bee2 18420 libs optional 
gpgme1.0_1.13.1-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXiokJQAKCRDEDyVUMvKB
D7lPAQC9sCr9gmXXH8vVKt7a8Yg6JCPdyL63JbQje83PJa+vZwEAzj8kmE6zdrPH
4QdEMrYiPy+fGvA35+HNs5ThD3ffoQk=
=VwGd
-END PGP SIGNATURE-



Accepted gpgme1.0 1.13.1-2 (source) into unstable

2020-01-23 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 23 Jan 2020 17:11:25 -0500
Source: gpgme1.0
Architecture: source
Version: 1.13.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Closes: 943111 943390 944774
Changes:
 gpgme1.0 (1.13.1-2) unstable; urgency=medium
 .
   * rebuild, pulling in python 3.8 (Closes: #944774)
- requires patching upstream, changes to cross-building logic
   * Update standards version to 4.4.1, no changes needed.
   * add buildtime and runtime tests for platform time limits
   * remove python-gpg autopkgtest entirely (Closes: #943390, #943111)
   * update lintian-overrides for untracked C++ symbols
   * fix json tests
   * d/control: drop unused ${shlibs:Depends} from libgpgmepp-dev
   * d/control: added ${python3:Versions} to python3-gpg
Checksums-Sha1:
 9bbddb05ec952566ee04383b0f6ef2ed73bff8b6 2258 gpgme1.0_1.13.1-2.dsc
 1ca56c058541a8318bb988558664bb4a49efe6a4 19768 gpgme1.0_1.13.1-2.debian.tar.xz
 04add7c3f8d33e76b90e135f95ba2cc467693a60 18420 
gpgme1.0_1.13.1-2_amd64.buildinfo
Checksums-Sha256:
 81d8a2db4746c8fdfb3b9ff2bf18ddc0e1df74d23f0cad6db3c992e4afd5a783 2258 
gpgme1.0_1.13.1-2.dsc
 bddc4d6725af83c38a1b9953683bb9c2e40049867bef205e428cea307207925d 19768 
gpgme1.0_1.13.1-2.debian.tar.xz
 2664dcdd10cd7de57f0a3c253f2b4c690f04a388cfb53065b480c6ca9493f40e 18420 
gpgme1.0_1.13.1-2_amd64.buildinfo
Files:
 9e98e39414139a0715bc591a009b5f1b 2258 libs optional gpgme1.0_1.13.1-2.dsc
 edd5f7455ef8ec0f3fc1df0867f04fa1 19768 libs optional 
gpgme1.0_1.13.1-2.debian.tar.xz
 0973764309265760b6737b192e741bf8 18420 libs optional 
gpgme1.0_1.13.1-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXiog8wAKCRDEDyVUMvKB
D6+BAPwLZHTK7GdDRpAgA8qL2VYE0EB3xHIEtdFlW/L4J3pJjQEAnaLN3n8qUlR9
H3k2O0JEMxP/YxcSeyoSv7K3xlX1gQw=
=2R8I
-END PGP SIGNATURE-



Accepted wireguard-linux-compat 0.0.20200121-3 (source) into unstable

2020-01-23 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 23 Jan 2020 10:57:44 -0500
Source: wireguard-linux-compat
Architecture: source
Version: 0.0.20200121-3
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Closes: 949670 949672
Changes:
 wireguard-linux-compat (0.0.20200121-3) unstable; urgency=medium
 .
   * ensure dkms runs in postinst before we consider reloading the module
 (Closes: #949672, #949670)
Checksums-Sha1:
 8e6545fcab2842cad4316f897df57bed85808b04 1473 
wireguard-linux-compat_0.0.20200121-3.dsc
 bb9ca187808f498264aef2369646ad73bacaca1a 11592 
wireguard-linux-compat_0.0.20200121-3.debian.tar.xz
 cd801d40e81dbc3f5109a29d2689f954ab3e569c 6377 
wireguard-linux-compat_0.0.20200121-3_amd64.buildinfo
Checksums-Sha256:
 b92b6cb57a274119736ac6baa1ecc4777a0c7918f259d767a430e41e16f49c36 1473 
wireguard-linux-compat_0.0.20200121-3.dsc
 cc6a0d4b44dc2da0ef28b7b399e123ad9fd89ec832c39fcf63674694e648bd38 11592 
wireguard-linux-compat_0.0.20200121-3.debian.tar.xz
 db7e0bf60dd719916f05d2f9dcc9134aba7aef155e3073e3fa118d14ec0f6632 6377 
wireguard-linux-compat_0.0.20200121-3_amd64.buildinfo
Files:
 4b6911fee28119dfd61e6769bb97ff48 1473 net optional 
wireguard-linux-compat_0.0.20200121-3.dsc
 d86218e5aa63b9848cd4ba13a1a2ac6f 11592 net optional 
wireguard-linux-compat_0.0.20200121-3.debian.tar.xz
 da384dd88ac79010daccd876b7206279 6377 net optional 
wireguard-linux-compat_0.0.20200121-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXinC3QAKCRDEDyVUMvKB
D92vAP9+fvp2kf9+vPJ16E/LMfVKTfbgREHtYvh96XN5DiFSdAEAzSN+JGREQrVQ
degADCYlHJky2nK3s0rs3XZEBJ5e5Ac=
=YpBz
-END PGP SIGNATURE-



Accepted enigmail 2:2.1.5+ds1-1 (source) into unstable

2020-01-22 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 22 Jan 2020 14:52:18 -0500
Source: enigmail
Architecture: source
Version: 2:2.1.5+ds1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 enigmail (2:2.1.5+ds1-1) unstable; urgency=medium
 .
   * new upstream release
   * drop patches already upstreamed
   * drop workaround for util/Preprocessor.py, since it is not used any longer
   * refresh patches
   * import bugfixes from upstream
   * fix parallel build
   * drop unnecessary debian/source/include-binaries
   * drop shlibs:Depends, since enigmail is now arch: all
   * standards-version: bump to 4.5.0 (no changes needed)
Checksums-Sha1:
 e06cfd3710e0bb74b989364bdb52a727abdf827f 1554 enigmail_2.1.5+ds1-1.dsc
 4b01f13c5374fbbdfeeb71da15ede4a8d72058c3 1384400 enigmail_2.1.5+ds1.orig.tar.xz
 14efddcee49d5b5ba3410affac76d133158b8957 39508 
enigmail_2.1.5+ds1-1.debian.tar.xz
 b5f69ac82dbd05dc023bce90b19dbe6b6c65a12b 6194 
enigmail_2.1.5+ds1-1_amd64.buildinfo
Checksums-Sha256:
 6e101f6aa919ba201f3a1504473f3f2eec7eb42b64502b41b96b1f68d056cee3 1554 
enigmail_2.1.5+ds1-1.dsc
 768503ce1c43b0ed405ad5788b4de4e615bcfd753c608864f582f0ea166f8029 1384400 
enigmail_2.1.5+ds1.orig.tar.xz
 f329743460313838669b146451f7c0e1fe6dd229eb07a96580a84687238921de 39508 
enigmail_2.1.5+ds1-1.debian.tar.xz
 f87b68db77b02f589e976e956d48bf5161596c78e447881df237eb84447090f7 6194 
enigmail_2.1.5+ds1-1_amd64.buildinfo
Files:
 bc51e1199e2944e830e0260b1c5dd956 1554 mail optional enigmail_2.1.5+ds1-1.dsc
 f1dd78448ee7038f8e536edb8dba14ca 1384400 mail optional 
enigmail_2.1.5+ds1.orig.tar.xz
 d05d9cd8bb9e5db14718ef3ab6d7c4df 39508 mail optional 
enigmail_2.1.5+ds1-1.debian.tar.xz
 46845b838397b73338b19acbef289fe5 6194 mail optional 
enigmail_2.1.5+ds1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXii2gQAKCRDEDyVUMvKB
D04XAQCqeULlY49+yROsuDiQ+a5cusjluJeGBSeUHtIpQXHt1AD/VooGREcZ/3VK
+BOSn4O8mlRw+GM7k6D5DXICOHPEUA0=
=nYT+
-END PGP SIGNATURE-



Accepted wireguard-linux-compat 0.0.20200121-2 (source) into unstable

2020-01-22 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 22 Jan 2020 13:08:02 -0500
Source: wireguard-linux-compat
Architecture: source
Version: 0.0.20200121-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard-linux-compat (0.0.20200121-2) unstable; urgency=medium
 .
   * Import module reload postinst script from wireguard package
Checksums-Sha1:
 10c43e000ad463374521a739dacaaf3a31526f14 1473 
wireguard-linux-compat_0.0.20200121-2.dsc
 6023a00bce1cd1ab6ab264a0fbf09b119db2c2f2 11536 
wireguard-linux-compat_0.0.20200121-2.debian.tar.xz
 bdd5891b74b234a7f8a4d3fc038f9e1163ebb515 6377 
wireguard-linux-compat_0.0.20200121-2_amd64.buildinfo
Checksums-Sha256:
 5ac6c5c94e42c50c0f5a88ebb21651caa588ab75a77c71528536599195db6684 1473 
wireguard-linux-compat_0.0.20200121-2.dsc
 b6363600145787fdb1ad7442bf46cebbc4531eebec63990d6dad303796d20f69 11536 
wireguard-linux-compat_0.0.20200121-2.debian.tar.xz
 b2bee071773fa8e1094682822b943fe04fb7c7fcf3cb5fab8a04de81647f13b7 6377 
wireguard-linux-compat_0.0.20200121-2_amd64.buildinfo
Files:
 f4c48a28c4923a1a83e5e50bf30160be 1473 net optional 
wireguard-linux-compat_0.0.20200121-2.dsc
 b263a7999782b2ed157e27cc929a6042 11536 net optional 
wireguard-linux-compat_0.0.20200121-2.debian.tar.xz
 a7b76740e821e656a11cf90ad5d1618f 6377 net optional 
wireguard-linux-compat_0.0.20200121-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXiiQ9AAKCRDEDyVUMvKB
D0hjAQCAY0oLvVnIGJIelgQ6HL2s5GoucRwzW2r3KMtacw1N3gEAwMktU87Y+Pv8
SLBKMosIsM5iR25kUUohccH3Xu3Ougg=
=VMKW
-END PGP SIGNATURE-



Accepted wireguard 1.0.20200121-2 (source) into unstable

2020-01-22 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 22 Jan 2020 13:16:57 -0500
Source: wireguard
Architecture: source
Version: 1.0.20200121-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (1.0.20200121-2) unstable; urgency=medium
 .
   * Transfer module reload postinst script to wireguard-dkms package
   * standards-version: bump to 4.5.0 (no changes needed)
Checksums-Sha1:
 ce6bb008e5d399b23dcbe5804c0313eca1cc6998 1449 wireguard_1.0.20200121-2.dsc
 973da4c5f133e8fb7cd30409224055e0e45149cd 10700 
wireguard_1.0.20200121-2.debian.tar.xz
 928f508b4757734959978eb17685340342656ba5 7568 
wireguard_1.0.20200121-2_amd64.buildinfo
Checksums-Sha256:
 fbc4163f664bdd3a5880256b612ae1feb71d0527d00ffc1550991d2e0ef8ad34 1449 
wireguard_1.0.20200121-2.dsc
 5efdc733b1c9b2d4300f2bc2d8b134718e4b4ad06ea646dd96b8042a41a8c0b2 10700 
wireguard_1.0.20200121-2.debian.tar.xz
 d7bbc239eeea386fd2ff88878f7f14ed7f9398b406684a4ed782ca4b416f268a 7568 
wireguard_1.0.20200121-2_amd64.buildinfo
Files:
 7489ef6d091d52bae9838ebe849167f0 1449 net optional wireguard_1.0.20200121-2.dsc
 d7041048808c19fbb3c3ffb7c14190a7 10700 net optional 
wireguard_1.0.20200121-2.debian.tar.xz
 66de02a1bf94e96c1ace43da6bc05be1 7568 net optional 
wireguard_1.0.20200121-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXiiSxwAKCRDEDyVUMvKB
Dw5qAQDKZVbGNvItyB4yXak+MAQovE3rU2gh7jtM+OmMEWjigAEAkrulFfz8g6wo
WjV3wfSxDkGVFpWjh0NQoxjL957wTQI=
=mHnd
-END PGP SIGNATURE-



Accepted wireguard-linux-compat 0.0.20200121-1 (source) into unstable

2020-01-21 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 21 Jan 2020 16:05:08 -0500
Source: wireguard-linux-compat
Architecture: source
Version: 0.0.20200121-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard-linux-compat (0.0.20200121-1) unstable; urgency=medium
 .
   * New upstream release
   * standards-version: bump to 4.5.0 (no changes needed)
Checksums-Sha1:
 2f65da530cecb5ba2b37efe310b77426b5845fd4 1473 
wireguard-linux-compat_0.0.20200121-1.dsc
 4f784bb2087875df23c923f979f12590b558037b 262064 
wireguard-linux-compat_0.0.20200121.orig.tar.xz
 19ff21c696c536fdad07f1d893d5dcd21520b102 10700 
wireguard-linux-compat_0.0.20200121-1.debian.tar.xz
 2b94f929e5533c6f90ca60aa5675f3547913dca9 6377 
wireguard-linux-compat_0.0.20200121-1_amd64.buildinfo
Checksums-Sha256:
 e9ec81003a2799cbea1f114e266f42da5d78388c05018651de87aa01fc2abcc4 1473 
wireguard-linux-compat_0.0.20200121-1.dsc
 7726c2994d11913c4543fd3dc83636f7ce573ca689b15e11b83e980acc04422b 262064 
wireguard-linux-compat_0.0.20200121.orig.tar.xz
 61e00d9a22081080e2b2c5512c46c52e26eca654e7b42178773c8a3e5b973bcf 10700 
wireguard-linux-compat_0.0.20200121-1.debian.tar.xz
 2c43bee839942e0c75a2b0b83e6b0ce96fd2f2c6ee60dfb9dfa09ab25a2e71d9 6377 
wireguard-linux-compat_0.0.20200121-1_amd64.buildinfo
Files:
 a0e5a9ac292bfe4c9a35944f8f11a523 1473 net optional 
wireguard-linux-compat_0.0.20200121-1.dsc
 a8ff7261066f1a85f1968c2df548eb68 262064 net optional 
wireguard-linux-compat_0.0.20200121.orig.tar.xz
 225ea9c6ee7c21fba2b91fdcd461d568 10700 net optional 
wireguard-linux-compat_0.0.20200121-1.debian.tar.xz
 fe241dc79ba1284bca5479892a5ad2fb 6377 net optional 
wireguard-linux-compat_0.0.20200121-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXidppgAKCRDEDyVUMvKB
D725AP4liJAVhgbD/pnG9SfL33Zc6awBDD1yLxiRs+VDPdN3fgEA6y+8d95S94KK
dYbOO+MAYnZouc8Rn/yZ+yui6TX3jAA=
=fEsK
-END PGP SIGNATURE-



Accepted wireguard 1.0.20200121-1 (source) into unstable

2020-01-21 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 21 Jan 2020 10:12:22 -0500
Source: wireguard
Architecture: source
Version: 1.0.20200121-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (1.0.20200121-1) unstable; urgency=medium
 .
   * new upstream release
Checksums-Sha1:
 01652aab80392f1f241297d5e292a5a229949aac 1449 wireguard_1.0.20200121-1.dsc
 9c4af79734b60e349a770f199ce87abe319cbdfb 92836 
wireguard_1.0.20200121.orig.tar.xz
 d6b2f0f2561caf66134c37f04b5e979e8b58291d 11352 
wireguard_1.0.20200121-1.debian.tar.xz
 a4254ac3ed27ce5c556f51d6e37a6e6bbee3514b 7566 
wireguard_1.0.20200121-1_amd64.buildinfo
Checksums-Sha256:
 b64ccd6630b3b0d986025b1a50bace5ec8271e8e123b8de66fcd3990d2e7b6fd 1449 
wireguard_1.0.20200121-1.dsc
 00971583ea47f6ca4f731cc88e3a37ffaba64710749d2cef113abf1e22b302e3 92836 
wireguard_1.0.20200121.orig.tar.xz
 6663747f57a7994c5c3ac797ca578a22d93a42b73e21d16185e3f0e8e20beabf 11352 
wireguard_1.0.20200121-1.debian.tar.xz
 b0e6e38832ce638105102ad0497cdc9d0d4a23338eb40ed6d5aca5cf5bdac37f 7566 
wireguard_1.0.20200121-1_amd64.buildinfo
Files:
 9b3701b13e0af1e36d32a609fe09af13 1449 net optional wireguard_1.0.20200121-1.dsc
 1edd28cf805cdbd6f4d790fe7a46f3ea 92836 net optional 
wireguard_1.0.20200121.orig.tar.xz
 ff23387ee669ec3942d51c76e55f3917 11352 net optional 
wireguard_1.0.20200121-1.debian.tar.xz
 8de71c27fc58d3990e37a39d7b25ed33 7566 net optional 
wireguard_1.0.20200121-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXicWbAAKCRDEDyVUMvKB
D2ZgAQCkNbhwal4n9MDs8bnCko9RB99VYIjRTRVf5rLN5EYG+QD9FzEc32ktfHC0
zKv7CZn3CMGJJfUQb1pSWw3op3Ndswc=
=9W2a
-END PGP SIGNATURE-



Accepted wireguard-linux-compat 0.0.20200105-1 (source) into unstable

2020-01-20 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 18 Jan 2020 09:55:11 -0500
Source: wireguard-linux-compat
Architecture: source
Version: 0.0.20200105-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard-linux-compat (0.0.20200105-1) unstable; urgency=medium
 .
   * New upstream release
Checksums-Sha1:
 50abed2b93befaec463f2920d262e2bfde0df0d3 1473 
wireguard-linux-compat_0.0.20200105-1.dsc
 94f311ff5f1877dc57320b9f59e452f2a1367207 261236 
wireguard-linux-compat_0.0.20200105.orig.tar.xz
 328e9b12322a0a9f8fb3d981df73f64ef56f28f2 32548 
wireguard-linux-compat_0.0.20200105-1.debian.tar.xz
 04cc629cfc84268b42b7cea420fbbca397eaf2d1 6375 
wireguard-linux-compat_0.0.20200105-1_amd64.buildinfo
Checksums-Sha256:
 683f81886eb77bc75e7423b838b01b2ba934bbd0df0caaef86c104933157b994 1473 
wireguard-linux-compat_0.0.20200105-1.dsc
 9f12f68e96f6865325995c38213e09b05751cd1ef03e0bbc9f1bdc3e5680b337 261236 
wireguard-linux-compat_0.0.20200105.orig.tar.xz
 32734f2d0f02d3a60558cc2e9677ade7adfafa0368d91ddc26ccd776beb30a40 32548 
wireguard-linux-compat_0.0.20200105-1.debian.tar.xz
 5bc11d52b02efc468f4ff0d40969166b543bd86879a751ccb0f54c95e7fe4f70 6375 
wireguard-linux-compat_0.0.20200105-1_amd64.buildinfo
Files:
 bf941091b78876daf8a4ba7bb5d9a91e 1473 net optional 
wireguard-linux-compat_0.0.20200105-1.dsc
 c2f2d5803623a71a086eab41c29d9b15 261236 net optional 
wireguard-linux-compat_0.0.20200105.orig.tar.xz
 a9b1ab88e47456933f241c25df9a791c 32548 net optional 
wireguard-linux-compat_0.0.20200105-1.debian.tar.xz
 d9ac18b74711c0418e3ea61666c34ae1 6375 net optional 
wireguard-linux-compat_0.0.20200105-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQQsv6x2UaqQJzY+dXHEDyVUMvKBDwUCXiXxGwAKCRDEDyVUMvKB
D74BAP9gC1vxYkVH6v17rblLKZ9E88jfGOAzolidnSS7HLNqcgEA5VuPUV0ZIF3X
VTcf7XbU/mBkGZyuoo/h1brrwuFhDA0=
=jkz8
-END PGP SIGNATURE-



Accepted wireguard-linux-compat 0.0.20191226-1 (source all) into unstable, unstable

2020-01-16 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 09 Jan 2020 09:54:29 -0500
Source: wireguard-linux-compat
Binary: wireguard-dkms
Architecture: source all
Version: 0.0.20191226-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Description:
 wireguard-dkms - fast, modern, secure kernel VPN tunnel (DKMS version)
Closes: 948503
Changes:
 wireguard-linux-compat (0.0.20191226-1) unstable; urgency=medium
 .
   * new upstream source package (Closes: #948503)
Checksums-Sha1:
 f1e9c1b73c85e34d78ddbab023709d208ac36d9c 1473 
wireguard-linux-compat_0.0.20191226-1.dsc
 1eda51a7d13d7e5e38b265cf1d4fb53b9ca29dad 261488 
wireguard-linux-compat_0.0.20191226.orig.tar.xz
 7d767a369df827a654392e85ccdae6e752347b64 32528 
wireguard-linux-compat_0.0.20191226-1.debian.tar.xz
 b4ea19b3adca432a2e58f81e04640a2bf675b5dc 277288 
wireguard-dkms_0.0.20191226-1_all.deb
 b4717a4f78b655958951a98e21b679b08d78dc41 6361 
wireguard-linux-compat_0.0.20191226-1_amd64.buildinfo
Checksums-Sha256:
 595078a08234f131c0f35bbb7e877cd954ee4c8c3a0f7d77e48fcda141bad7fc 1473 
wireguard-linux-compat_0.0.20191226-1.dsc
 7c0e576459c6337bcdea692bdbec561719a15da207dc739e0e3e60ff821a5491 261488 
wireguard-linux-compat_0.0.20191226.orig.tar.xz
 f939a78c927606fe41bad68a707f671a9db14bf590a3af4ae52c3bc676ee4eb6 32528 
wireguard-linux-compat_0.0.20191226-1.debian.tar.xz
 a8d88ad68252a4c3966784343b27522efc4699fff5025ea56321a1b2c0157697 277288 
wireguard-dkms_0.0.20191226-1_all.deb
 bfbe253d23b9af2ea5cec58ded0718ea8117a25367555bcc92693ea90d180b35 6361 
wireguard-linux-compat_0.0.20191226-1_amd64.buildinfo
Files:
 a282340d36b2446e5408a85a43cdc91c 1473 net optional 
wireguard-linux-compat_0.0.20191226-1.dsc
 e1e16af3f2706e1734d78d2836296877 261488 net optional 
wireguard-linux-compat_0.0.20191226.orig.tar.xz
 493a7069e11eb9521ecd5f1ba5231dd6 32528 net optional 
wireguard-linux-compat_0.0.20191226-1.debian.tar.xz
 2b6e8b623a57c0cf36718b5ef727a10e 277288 kernel optional 
wireguard-dkms_0.0.20191226-1_all.deb
 cfd50527eb848d21a5fc9d2081de23d2 6361 net optional 
wireguard-linux-compat_0.0.20191226-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXhdmtgAKCRB2GBllKa5f
+FTgAP9vvS+IockbCtXHT0vEH60XqYqS3TGhTxR2RkyOWSyHgwEA3qpz5JQEoPEa
dqk//F2wS5UMT5DF5U3TLoOu8iEO8gw=
=gk4D
-END PGP SIGNATURE-



Accepted rust-sequoia-sqv 0.13.0-2 (source) into unstable

2020-01-15 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 Jan 2020 17:24:58 -0500
Source: rust-sequoia-sqv
Architecture: source
Version: 0.13.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-sequoia-sqv (0.13.0-2) unstable; urgency=medium
 .
   * Update sqv.1 manually
   * Package sequoia-sqv 0.13.0 from crates.io using debcargo 2.4.2
Checksums-Sha1:
 23a19a64c05d060c6c876c59276b5e32d35746d8 1625 rust-sequoia-sqv_0.13.0-2.dsc
 093eeabb000a9314a45e024e47dac647d021c466 2704 
rust-sequoia-sqv_0.13.0-2.debian.tar.xz
 915f22fe337503b8981be3bf493099d890eed8d3 7825 
rust-sequoia-sqv_0.13.0-2_source.buildinfo
Checksums-Sha256:
 0a88a79d24f099ed5394a0665e58b3160690675d30c0fa6590e8a8c5b43db57d 1625 
rust-sequoia-sqv_0.13.0-2.dsc
 decbee273ba8c33ec1a1895472932773eefd76ca29b15f6eaaa9dd947a3a6324 2704 
rust-sequoia-sqv_0.13.0-2.debian.tar.xz
 73396bc2eb95feeddc7cf4b1b842d6ec3b9b026537d12279c626dc2896c0362f 7825 
rust-sequoia-sqv_0.13.0-2_source.buildinfo
Files:
 a5c433dcd9675f9b9671b72ee3d3795f 1625 utils optional 
rust-sequoia-sqv_0.13.0-2.dsc
 c8146fe3e1645044484cac3e2727e017 2704 utils optional 
rust-sequoia-sqv_0.13.0-2.debian.tar.xz
 0cedee7c5246298a99039fc46ff68003 7825 utils optional 
rust-sequoia-sqv_0.13.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXh+RPgAKCRB2GBllKa5f
+NGUAQC5D3DtNSgRVzWeJWeqPRmWW8Ezrql0GEEcduneVijekwD+JnwVNA2nZAri
XdR0Q94ylxECe7Zz8kLe5BeAt34dRAk=
=EIg9
-END PGP SIGNATURE-



Accepted rust-sequoia-sqv 0.13.0-1 (source) into unstable

2020-01-15 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 Jan 2020 12:47:14 -0500
Source: rust-sequoia-sqv
Architecture: source
Version: 0.13.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-sequoia-sqv (0.13.0-1) unstable; urgency=medium
 .
   * Package sequoia-sqv 0.13.0 from crates.io using debcargo 2.4.2
Checksums-Sha1:
 04eb49818cbb02836032def1895f5c6c36928b2d 1625 rust-sequoia-sqv_0.13.0-1.dsc
 4b780291c1031f6b31d258255d31080c1e7e258f 31016 
rust-sequoia-sqv_0.13.0.orig.tar.gz
 4b56715138e7c3506c34a5a2c01a18a33d9f8f0c 2660 
rust-sequoia-sqv_0.13.0-1.debian.tar.xz
 0ec0abeca0991133b0d7ccc8fbe99569c3344bf2 7825 
rust-sequoia-sqv_0.13.0-1_source.buildinfo
Checksums-Sha256:
 ed66d0374866eef9c2c9cb74bc2aacb2b4d3fa837022295fa374fa4c529fb680 1625 
rust-sequoia-sqv_0.13.0-1.dsc
 5247859c5ee7f68975a44ab0b6dd8b5f29bbc8470de8aa768177bfa9a0bf65d7 31016 
rust-sequoia-sqv_0.13.0.orig.tar.gz
 91229a5c31dd1c07adccc652c33b992ef5a331b252b4601cd4144e4d58fea0d1 2660 
rust-sequoia-sqv_0.13.0-1.debian.tar.xz
 7eb4e0d94fc8611750957a977d748c331ccd1cd051bf013f477827eede1de5a4 7825 
rust-sequoia-sqv_0.13.0-1_source.buildinfo
Files:
 aed6bdc2d40bb23525c560eb58615312 1625 utils optional 
rust-sequoia-sqv_0.13.0-1.dsc
 a7fc481d2ec83910477f0c5ea5bf918b 31016 utils optional 
rust-sequoia-sqv_0.13.0.orig.tar.gz
 1990d8db51f1b002ec71edda9ddcabaa 2660 utils optional 
rust-sequoia-sqv_0.13.0-1.debian.tar.xz
 1ba6fec2e7349f009a6c87d8421d168e 7825 utils optional 
rust-sequoia-sqv_0.13.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXh9QJwAKCRB2GBllKa5f
+AEiAQCZ+cVVBKjE174XUapis274LS4kCsMw29Jyd0iKcbrfbgEA8CAy0KiU+oVA
vsWKU/e1678UZAZSxYwrx689req/SA4=
=ML6g
-END PGP SIGNATURE-



Accepted wireguard 1.0.20200102-1 (source) into unstable

2020-01-15 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 15 Jan 2020 11:25:16 -0500
Source: wireguard
Architecture: source
Version: 1.0.20200102-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (1.0.20200102-1) unstable; urgency=medium
 .
   * new upstream release
   * drop wireguard-dkms binary package, now supplied by the
 wireguard-linux-compat source package
   * refresh patches
   * drop lintian override of version-substvar-for-external-package
   * ship examples from new upstream path
   * update debian/copyright
   * avoid using git during build to override src/version.h
Checksums-Sha1:
 f0add89fec16b99f02f85bc4127d9f775d322f85 1449 wireguard_1.0.20200102-1.dsc
 311e56802c847eb19901a6bae521a7f49ffab067 91564 
wireguard_1.0.20200102.orig.tar.xz
 3d33fa8f66de3f2b09c2d93d02e5dca20e4f42cb 11324 
wireguard_1.0.20200102-1.debian.tar.xz
 c659221c373764e26168c2d6ccac9a02fea2a884 7569 
wireguard_1.0.20200102-1_amd64.buildinfo
Checksums-Sha256:
 c9abafb0423a18ff7c9797c2c666ada13cc54b7564a50cb497468ce963144808 1449 
wireguard_1.0.20200102-1.dsc
 86d1bd101b054d0ba75d99737733306984ac2ca85b340f804ae2bfa033e9b5af 91564 
wireguard_1.0.20200102.orig.tar.xz
 340db3b41aff3e79591bbd01823f73c2b843352765651d0e7c58b77f10187031 11324 
wireguard_1.0.20200102-1.debian.tar.xz
 a537ade4c40c14c50b19aefaaa2cc93f9b513035f8eb60227dbb4e6d48f6e4b7 7569 
wireguard_1.0.20200102-1_amd64.buildinfo
Files:
 bdc2616dff994a5ae734b70a91d7a2c2 1449 net optional wireguard_1.0.20200102-1.dsc
 ac41c90b984c62610e1a41c9737838f1 91564 net optional 
wireguard_1.0.20200102.orig.tar.xz
 cc2ee58cf4d030576d8e5e327e16d6e0 11324 net optional 
wireguard_1.0.20200102-1.debian.tar.xz
 75d72e5e2d8e60b8c16eb0d6d138cc18 7569 net optional 
wireguard_1.0.20200102-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXh8+LQAKCRB2GBllKa5f
+GX/AQCP4MAkr7cb+KW0SqqIhITqNlQ0eDCMXP2YdKkSjWmaPAD/aXSZwzQ93yX4
GA5oTTDdeOfZTTONB4A0g0GP/LYOXg4=
=An//
-END PGP SIGNATURE-



Accepted rust-sequoia-openpgp 0.13.0-1 (source) into unstable

2020-01-14 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 Jan 2020 17:32:40 -0500
Source: rust-sequoia-openpgp
Architecture: source
Version: 0.13.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-sequoia-openpgp (0.13.0-1) unstable; urgency=medium
 .
   * Package sequoia-openpgp 0.13.0 from crates.io using debcargo 2.4.2
Checksums-Sha1:
 f3d9ab4f71a02ab6bd68944b4c7e7f45bb8d4bde 3163 rust-sequoia-openpgp_0.13.0-1.dsc
 2e4b88d47bf87fe4551598f36e31f4665848f13b 1386720 
rust-sequoia-openpgp_0.13.0.orig.tar.gz
 64f5c5ae84645481027b69f95c1f56542495282d 3136 
rust-sequoia-openpgp_0.13.0-1.debian.tar.xz
 f08068e4060a1625a09ec965e3ac6e785b8bbcda 8886 
rust-sequoia-openpgp_0.13.0-1_source.buildinfo
Checksums-Sha256:
 36cc086052e34afcb8854857245b7b30a9ffd7b165ea4e4dd63dc0551715 3163 
rust-sequoia-openpgp_0.13.0-1.dsc
 3b1acca7ce28b65b47bac59da9bf39636427c54445dc4740aed0c093ff7bc9a8 1386720 
rust-sequoia-openpgp_0.13.0.orig.tar.gz
 4781c6dc12dfdeb90150f09f78b6ac77559f3177f41b59d2ba438a2011cdbab4 3136 
rust-sequoia-openpgp_0.13.0-1.debian.tar.xz
 ce8ca25b110bc20eb800d862b50c803a94cb1d954a1fa8bf0c43e4e66d52d615 8886 
rust-sequoia-openpgp_0.13.0-1_source.buildinfo
Files:
 e1f5908561cc12e781f9237bc8756779 3163 rust optional 
rust-sequoia-openpgp_0.13.0-1.dsc
 3e1e256d4916240e0680b6db3999ec91 1386720 rust optional 
rust-sequoia-openpgp_0.13.0.orig.tar.gz
 aeb9d262e8ca426d37bca3295edd8804 3136 rust optional 
rust-sequoia-openpgp_0.13.0-1.debian.tar.xz
 ccc872c13a5266038570e472a4ef5281 8886 rust optional 
rust-sequoia-openpgp_0.13.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXh5BjgAKCRB2GBllKa5f
+JgUAP9H71aHhl7xZhO607n8K1CfMC8mPvqpuUgVPqnqSwh4FQEA9fG0aSdh3aUT
VmMZwIIBh0c6+PIVKaDUaL7SI6EYZQ0=
=0+8k
-END PGP SIGNATURE-



Accepted rust-lalrpop 0.17.2-4 (source) into unstable

2020-01-13 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 13 Jan 2020 16:32:03 -0500
Source: rust-lalrpop
Architecture: source
Version: 0.17.2-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-lalrpop (0.17.2-4) unstable; urgency=medium
 .
   * bump dependency on rust-petgraph to 0.5
   * Package lalrpop 0.17.2 from crates.io using debcargo 2.4.2
Checksums-Sha1:
 e06004407c1e4f467139781011c0706b2095db99 2152 rust-lalrpop_0.17.2-4.dsc
 1bd4ec73ed39b1fe39ae385a8fb93898a2432e86 3180 
rust-lalrpop_0.17.2-4.debian.tar.xz
 af9b66429645593ee24ca213029f900d225994eb 7918 
rust-lalrpop_0.17.2-4_source.buildinfo
Checksums-Sha256:
 7b235453d295978ba1c14624b0e212c3b70071736ebc86822c197f5cba369e64 2152 
rust-lalrpop_0.17.2-4.dsc
 a7d3b09ddde1ec9b09e3c0390023c75dfde6adca15f1e328d1afc2ab6d1a8cc1 3180 
rust-lalrpop_0.17.2-4.debian.tar.xz
 7f97342faadc526f51aed7a975d96977504467f2526ec62b6ee006705e02844f 7918 
rust-lalrpop_0.17.2-4_source.buildinfo
Files:
 dc0969c6cffdf8aaebfdb8d6838b0cd1 2152 rust optional rust-lalrpop_0.17.2-4.dsc
 232b6182028590f480f3e87b351d55a0 3180 rust optional 
rust-lalrpop_0.17.2-4.debian.tar.xz
 d633be2b37a41250807887a38d983e2b 7918 rust optional 
rust-lalrpop_0.17.2-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXhzh2AAKCRB2GBllKa5f
+ClhAP0drB85zrNGfUMRuapgXsT/EDJpGQC7LXCjNMOPsbHdXAEAxUSaN+uprHjh
BtpfTu+kYuvVxF5sKJOwMkoZo5TC4QU=
=6z9U
-END PGP SIGNATURE-



Accepted rust-unicode-normalization 0.1.11-1 (source) into unstable

2020-01-13 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 13 Jan 2020 13:40:14 -0500
Source: rust-unicode-normalization
Architecture: source
Version: 0.1.11-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-unicode-normalization (0.1.11-1) unstable; urgency=medium
 .
   * Package unicode-normalization 0.1.11 from crates.io using debcargo 2.4.2
Checksums-Sha1:
 ca62fb6596b229c1ceb008cd99814e21c0b40573 1807 
rust-unicode-normalization_0.1.11-1.dsc
 bccdefd243e3e84652c77732e5e5d56fee27158f 91048 
rust-unicode-normalization_0.1.11.orig.tar.gz
 c6ab1c7ba5e35c213d0847e6e6901cec41742ee7 2872 
rust-unicode-normalization_0.1.11-1.debian.tar.xz
 57ee0de9f848bda950a63afc5c28c3a1db2c28bf 7012 
rust-unicode-normalization_0.1.11-1_source.buildinfo
Checksums-Sha256:
 a036c56d4dd38646b5808048c165ee3b25de358f59ec76c7ebae801cacb4977c 1807 
rust-unicode-normalization_0.1.11-1.dsc
 b561e267b2326bb4cebfc0ef9e68355c7abe6c6f522aeac2f5bf95d56c59bdcf 91048 
rust-unicode-normalization_0.1.11.orig.tar.gz
 f1814cbe16fb1159615c9517e06542f5b23bc033a39c83e0044f651c983209d5 2872 
rust-unicode-normalization_0.1.11-1.debian.tar.xz
 9cd4245380fe050ac47728059731606a09e201dac5b3cc34fea4a269060b3f0a 7012 
rust-unicode-normalization_0.1.11-1_source.buildinfo
Files:
 bedd3b91acd3abc217ac2fc18d740253 1807 rust optional 
rust-unicode-normalization_0.1.11-1.dsc
 a9cab683aed77cef7b446d2bc9014b12 91048 rust optional 
rust-unicode-normalization_0.1.11.orig.tar.gz
 b4f5ecf7fbf71e064a589a60afa42f97 2872 rust optional 
rust-unicode-normalization_0.1.11-1.debian.tar.xz
 c7ec661442ae736317afd62904d72438 7012 rust optional 
rust-unicode-normalization_0.1.11-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXhy5kwAKCRB2GBllKa5f
+DHRAP0QUsxLcqvAepi7PsGlH8fojXmvugAUr2c+uCPasU6IcwD/RJLtVlVhk8No
z1x2+bfPfTvKDZtCUFapuN0dJW/bjQg=
=cXOv
-END PGP SIGNATURE-



Accepted gnupg2 2.2.19-1 (source) into unstable

2020-01-08 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 08 Jan 2020 10:33:12 -0500
Source: gnupg2
Architecture: source
Version: 2.2.19-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Closes: 931954 932474
Changes:
 gnupg2 (2.2.19-1) unstable; urgency=medium
 .
   * New upstream release
 .
   [ Roger Shimizu ]
   * d/control: Update Build-Depends: libgpg-error-dev (>= 1.35)
 .
   [ Daniel Kahn Gillmor ]
   * clean up unnecessary whitespace
   * Ship identifiers for Librem Key (Closes: #932474)
   * drop extra systemd user service links (Closes: #931954)
   * update signing key for Werner
   * fixup patch
   * drop patches already upstream
   * refresh patches
   * cherry-pick fix from upstream
   * dirmngr-idling: add some commentary about dns housekeeping
   * bump standards-version to 4.4.1 (no changes needed)
   * sort scdaemon metainfo.xml modalias
   * announce librem key in scdaemon metainfo.xml
   * add lintian overrides for executables shipped by upstream in 
/usr/lib/gnupg/
Checksums-Sha1:
 e12ed6bb4124df7bba97117e424ddea1a8f93ca1 3238 gnupg2_2.2.19-1.dsc
 e24a1208ffe69d7436b2f27e99542a85f34d0ac0 6754972 gnupg2_2.2.19.orig.tar.bz2
 b3a5f29a376505589c1d6b4be5216f3b5bd6bf3f 906 gnupg2_2.2.19.orig.tar.bz2.asc
 8c64f4e56f07d7193aed4d388a0f883b498bfe55 62404 gnupg2_2.2.19-1.debian.tar.xz
 a56b1dfdb598b1c8c6a05156af11f8c1add060e3 18202 gnupg2_2.2.19-1_amd64.buildinfo
Checksums-Sha256:
 958502240d50a73c62ef47c53b19c111c754341f4001ac4585beb892846ad80a 3238 
gnupg2_2.2.19-1.dsc
 242554c0e06f3a83c420b052f750b65ead711cc3fb5e7274fcdbb4e9dec0 6754972 
gnupg2_2.2.19.orig.tar.bz2
 9665fd179a29412115289bd18109629b855bf78adb6d262cfd4fb00ea09491d7 906 
gnupg2_2.2.19.orig.tar.bz2.asc
 5a1680501e4a6b2da3ac4d019ef3266088f4adf2f59906d1c1882a866089a04e 62404 
gnupg2_2.2.19-1.debian.tar.xz
 75a4cd01d434f8fad5f9947ef507728d7faf9e4e39cd0e9805db44dc9b9f3c3d 18202 
gnupg2_2.2.19-1_amd64.buildinfo
Files:
 a827e6f2860fbd3f1ba84471cee634b1 3238 utils optional gnupg2_2.2.19-1.dsc
 cb3b373d08ba078c325299945a7f2818 6754972 utils optional 
gnupg2_2.2.19.orig.tar.bz2
 0c01f35796533d834c476d02b68af8e4 906 utils optional 
gnupg2_2.2.19.orig.tar.bz2.asc
 c2bd97bf8db0e7a698430ddedc9ada26 62404 utils optional 
gnupg2_2.2.19-1.debian.tar.xz
 0ffcad8d4759fb3eb533f3b7df49581f 18202 utils optional 
gnupg2_2.2.19-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXhX7+AAKCRB2GBllKa5f
+P81AP4lrGIJrfxtoSaUzafxV/ncv4a4vQJMQvubsIHCwXUksQD/T0aiLy9QRzoB
aD++jm2Q199pXLPSUJNrjz69LWIq7gk=
=X7nb
-END PGP SIGNATURE-



Accepted rust-lalrpop 0.17.2-3 (source) into unstable

2020-01-08 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 08 Jan 2020 10:52:31 -0500
Source: rust-lalrpop
Architecture: source
Version: 0.17.2-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-lalrpop (0.17.2-3) unstable; urgency=medium
 .
   * Package lalrpop 0.17.2 from crates.io using debcargo 2.4.1
   * (source-only rebuild, aiming for fixes from dh-cargo 23)
Checksums-Sha1:
 f159ac7ca0880450a44bcae7084a9bd5079fc72a 2167 rust-lalrpop_0.17.2-3.dsc
 b406ed5b8fb2188ea58212a687281b24c8c1a2df 3064 
rust-lalrpop_0.17.2-3.debian.tar.xz
 31e3ac1486ba2d72bc7dc7c4ff0c0b284280abb2 7919 
rust-lalrpop_0.17.2-3_source.buildinfo
Checksums-Sha256:
 19b79586576eebf711c66f1e14b5419be0b64ac632631bd1034799a2dd568771 2167 
rust-lalrpop_0.17.2-3.dsc
 ad78b9bdb94bce92cb1eb9de872e9ea24d8fb308953d1645bdd80a085d3e1d59 3064 
rust-lalrpop_0.17.2-3.debian.tar.xz
 e592f00dc9f85940377037e8e4d8b1d6cd8b4c1bd8098b34fbb8e18789a56919 7919 
rust-lalrpop_0.17.2-3_source.buildinfo
Files:
 a2c592fb0f7ad247664a82bd481d8861 2167 rust optional rust-lalrpop_0.17.2-3.dsc
 987c9d53c0ca852668ed51afabe47499 3064 rust optional 
rust-lalrpop_0.17.2-3.debian.tar.xz
 39c2a48459825d3dad8de754281b363b 7919 rust optional 
rust-lalrpop_0.17.2-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXhX6yAAKCRB2GBllKa5f
+OV3AP0beE3S/qroNs4CEHRJA14IrUfOKj6OvmaYWYy6JQ2J5AD5AccUCnrNb40m
/G7NEqbcJ2XBB/1KANtmSZ3G2gqalwQ=
=RD4I
-END PGP SIGNATURE-



Accepted rust-lalrpop 0.17.2-2 (source) into unstable

2020-01-06 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 06 Jan 2020 15:01:15 -0500
Source: rust-lalrpop
Architecture: source
Version: 0.17.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-lalrpop (0.17.2-2) unstable; urgency=medium
 .
   * source-only upload.
Checksums-Sha1:
 f4529bb1c06c2ced25d1906aacef33c5fed42f22 2167 rust-lalrpop_0.17.2-2.dsc
 bd2ab9813ef4ad8971848f9007f70e456f8759af 3028 
rust-lalrpop_0.17.2-2.debian.tar.xz
 297d1da7506ce99613582989ec388f91ae8156bf 7919 
rust-lalrpop_0.17.2-2_source.buildinfo
Checksums-Sha256:
 65aca46f536a0cbbafc8491edd1e7a26dbd82757ac3e7cce8a078dc275a8e827 2167 
rust-lalrpop_0.17.2-2.dsc
 8cce154f89bac9a851f9cfe46491042f92e1d36cd5ecb51f2ef5fa238f43ebf7 3028 
rust-lalrpop_0.17.2-2.debian.tar.xz
 3bba2854aef2191acd35e1583ef64369aa18c7c0aeb32d0d22c98968a682fc9e 7919 
rust-lalrpop_0.17.2-2_source.buildinfo
Files:
 05f6cbbfe61682c99228b74b34200c86 2167 rust optional rust-lalrpop_0.17.2-2.dsc
 37e1bc8a33e22e26ebfed082d6eaa42c 3028 rust optional 
rust-lalrpop_0.17.2-2.debian.tar.xz
 b7ff75dd18e6e7bff4c0096cee9b37d6 7919 rust optional 
rust-lalrpop_0.17.2-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXhOSEAAKCRB2GBllKa5f
+MTjAP4qCm8Ic+oIMLstOr9I5PTHd0WoC0B2YOxm+k+22ibAOwD9EaoywzGvPz8P
LexcAFi5KVDHv49lKf6gdvI9rx6wvAo=
=DrOO
-END PGP SIGNATURE-



Accepted rust-buffered-reader 0.13.0-1 (source) into unstable

2019-12-20 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 20 Dec 2019 14:41:18 -0500
Source: rust-buffered-reader
Architecture: source
Version: 0.13.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-buffered-reader (0.13.0-1) unstable; urgency=medium
 .
   * Package buffered-reader 0.13.0 from crates.io using debcargo 2.4.0
Checksums-Sha1:
 7e8cd184b7ee2600b8bdbd805a18be235615737e 2135 rust-buffered-reader_0.13.0-1.dsc
 04d4f014e2209a6b86c394d3f6a001b514e05782 49009 
rust-buffered-reader_0.13.0.orig.tar.gz
 2b837b085de0bf258bf2c2df0374fcb18b00e1a6 2692 
rust-buffered-reader_0.13.0-1.debian.tar.xz
 cf58316a6636033faef1904cc29f5c71727d1e3f 7454 
rust-buffered-reader_0.13.0-1_source.buildinfo
Checksums-Sha256:
 a0baa90e172537da139cd0f86e29d7668b1a17987176cfe05da49c315a5bf0fd 2135 
rust-buffered-reader_0.13.0-1.dsc
 3be74401b94b816fb7995f12ca903a248363523099f40d993b7070aa8a8cacdf 49009 
rust-buffered-reader_0.13.0.orig.tar.gz
 9aa629f044dae89d85b96f2b627121bfd88f124a9a455b0634c3000df70e7dbe 2692 
rust-buffered-reader_0.13.0-1.debian.tar.xz
 f42094e16622730536be77cfe1792c0d672a496e7ea34971ec5a8d3a64207c84 7454 
rust-buffered-reader_0.13.0-1_source.buildinfo
Files:
 62725d5791d00cc88c3e7c277afeb29e 2135 rust optional 
rust-buffered-reader_0.13.0-1.dsc
 df833e3420e116fca8b767685f16c271 49009 rust optional 
rust-buffered-reader_0.13.0.orig.tar.gz
 97574f86abb3ce7d0e797b66b0582bfb 2692 rust optional 
rust-buffered-reader_0.13.0-1.debian.tar.xz
 749a2674493a680ed805cb0d5ecc1000 7454 rust optional 
rust-buffered-reader_0.13.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHQEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXf0j4wAKCRB2GBllKa5f
+EojAPjsaG39yeGyRpz5BxOhvbIgPoPlqY//djyY5lnrtnYIAQCj4HOVnLSTvk/Y
pvyAAXNbht54olJuWRTmy5daW7knAA==
=JIod
-END PGP SIGNATURE-



Accepted rust-string-cache 0.8.0-1 (source) into unstable

2019-12-19 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 19 Dec 2019 11:49:31 -0500
Source: rust-string-cache
Architecture: source
Version: 0.8.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-string-cache (0.8.0-1) unstable; urgency=medium
 .
   * Team upload.
   * Package string_cache 0.8.0 from crates.io using debcargo 2.4.0
Checksums-Sha1:
 565a973f3772bf992d180345d1a98006db8b8b3a 1780 rust-string-cache_0.8.0-1.dsc
 8ce94a2c9046d3ce0cdb083ecb2a2f8b3dc587e8 14691 
rust-string-cache_0.8.0.orig.tar.gz
 2d312f8d928ca69be38eb1cedb952f0914399355 2740 
rust-string-cache_0.8.0-1.debian.tar.xz
 2213c9193c264033487db9339e126cccba8d676b 7093 
rust-string-cache_0.8.0-1_source.buildinfo
Checksums-Sha256:
 8ae7b878aac3e6b589097196e746129ce514ba0e2169c7ebf287f15ebd461938 1780 
rust-string-cache_0.8.0-1.dsc
 2940c75beb4e3bf3a494cef919a747a2cb81e52571e212bfbd185074add7208a 14691 
rust-string-cache_0.8.0.orig.tar.gz
 7e3c8b88656bffc40bcba91b6d008d3afab14c1593a03510257e01369d115c79 2740 
rust-string-cache_0.8.0-1.debian.tar.xz
 fcb37d9f1b830fffcfd60907f3031ca23bde5bddac6360b4adc12bbb5722ff85 7093 
rust-string-cache_0.8.0-1_source.buildinfo
Files:
 dcbd935387c126809ebbfc19ec145694 1780 rust optional 
rust-string-cache_0.8.0-1.dsc
 ae441c6dde3dc4088b2ba668015af865 14691 rust optional 
rust-string-cache_0.8.0.orig.tar.gz
 b60a595496d6b6c59db9bdf68066e0ae 2740 rust optional 
rust-string-cache_0.8.0-1.debian.tar.xz
 a140465da11df3cdb0a05b4bd98dc306 7093 rust optional 
rust-string-cache_0.8.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXfuqHgAKCRB2GBllKa5f
+NwOAQDNlSmN4raUU8pwlt/Xy/pScCJBtkUFpFm5BSXfEZa3ZgD/dNmxTEVoLioZ
wYCtsRoMUQjtUs3X97Nc72a7lE9VTA8=
=/IZf
-END PGP SIGNATURE-



Accepted wireguard 0.0.20191219-1 (source) into unstable

2019-12-19 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 19 Dec 2019 11:33:41 -0500
Source: wireguard
Architecture: source
Version: 0.0.20191219-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (0.0.20191219-1) unstable; urgency=medium
 .
   * new upstream release
Checksums-Sha1:
 6c30d8451b2f71e530effa6a0600aa1ebb36e8d9 1513 wireguard_0.0.20191219-1.dsc
 3495ffda26b276dbbf32e95bcdf3500c034b787a 333180 
wireguard_0.0.20191219.orig.tar.xz
 6209c6a13025893b6301c198f93f948500d82916 25380 
wireguard_0.0.20191219-1.debian.tar.xz
 96ccfd6405b395ec8ba85f2f19ce4b1941a3d97e 7773 
wireguard_0.0.20191219-1_amd64.buildinfo
Checksums-Sha256:
 110dcc1cc1994753d851bdac808a82468ef3ee8583fe56c1eb6a90caff4f6d52 1513 
wireguard_0.0.20191219-1.dsc
 41dd4a98e052d6d46f68f135c70f042030d92c0c8e6d53dd8b221dd5d1190d1e 333180 
wireguard_0.0.20191219.orig.tar.xz
 c5d96d34942bf43b4d10a2356e591a2e27622526624dfb4ef0445bbaa5591bb6 25380 
wireguard_0.0.20191219-1.debian.tar.xz
 70cf91f1effe371735b923140ae2add5d526f599cbe9f906674d8a0bfac0ef94 7773 
wireguard_0.0.20191219-1_amd64.buildinfo
Files:
 c1cf87f6550ff3ebe169735f9bbefbc4 1513 net optional wireguard_0.0.20191219-1.dsc
 21dbf77901ab5fe1634d2e47d96039f2 333180 net optional 
wireguard_0.0.20191219.orig.tar.xz
 f6a30eb713e8f8c7e5ef4d72cf951bee 25380 net optional 
wireguard_0.0.20191219-1.debian.tar.xz
 80fddf0f3853737857fad46c02c34244 7773 net optional 
wireguard_0.0.20191219-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXfvEoQAKCRB2GBllKa5f
+MG+AP9zr8fCg/JN+16bONPYkCa1yoggLeU32KiC1oNIRfjm8gEAvCAkE+l4w0eC
qplLx7MIhP9q4Bsniczh4fI/Wj8R+gE=
=VAjt
-END PGP SIGNATURE-



Accepted rust-getrandom 0.1.13-4 (source) into unstable

2019-12-16 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 16 Dec 2019 15:06:26 -0500
Source: rust-getrandom
Architecture: source
Version: 0.1.13-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-getrandom (0.1.13-4) unstable; urgency=medium
 .
   * Source-only upload
Checksums-Sha1:
 34352307361b8a5c824c117dc34e690f5d34a4d3 2040 rust-getrandom_0.1.13-4.dsc
 e43d9548b50d2455ddcd2ec6c943d460ccdc704b 3584 
rust-getrandom_0.1.13-4.debian.tar.xz
 9c25984cf89304b1233d45b05e569f002ad22e2d 7038 
rust-getrandom_0.1.13-4_source.buildinfo
Checksums-Sha256:
 753ecbe7ebaf06513ef149897483705d0cad28d6d3a1ad8ad7ecc41842b5a8d6 2040 
rust-getrandom_0.1.13-4.dsc
 756850297b50e6d0ca3308d2a71bca3d2266434dfe6073556c3f3d97d9b1a021 3584 
rust-getrandom_0.1.13-4.debian.tar.xz
 b04705912812c80775e5ec91ddfe94ae16033fe4e06d20a19b9b0dcab0c1d0f3 7038 
rust-getrandom_0.1.13-4_source.buildinfo
Files:
 5a94ced6b82d958b2aa120d4a6c3c345 2040 rust optional rust-getrandom_0.1.13-4.dsc
 67ebd9d5abb500459a2b3da662b4cdde 3584 rust optional 
rust-getrandom_0.1.13-4.debian.tar.xz
 d046022904ca76c6e2948ea2ca44889e 7038 rust optional 
rust-getrandom_0.1.13-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXffjyAAKCRB2GBllKa5f
+CRiAP0ZmQlOlmhF9Ob592kMW2vi8PfNvQmVuJlZ9BuBaS20AgEA+yToIY1QMWA4
hoT0kqFX9c+jm1achfKgr8pFWU1XUA4=
=RG/S
-END PGP SIGNATURE-



Accepted rust-bindgen 0.51.1-3 (source) into unstable

2019-12-13 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 13 Dec 2019 14:14:07 -0500
Source: rust-bindgen
Architecture: source
Version: 0.51.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-bindgen (0.51.1-3) unstable; urgency=medium
 .
   * mark feature-specific autopkgtests as flakey (see #945560)
Checksums-Sha1:
 5a6f5885c89211eef215b9ca222939952607f356 2781 rust-bindgen_0.51.1-3.dsc
 456edd30f2f6f3208f2e772a4c394c6e90c965bc 3848 
rust-bindgen_0.51.1-3.debian.tar.xz
 01c4134b02b9e183bc3ee25341bc78eb48cfea8b 7908 
rust-bindgen_0.51.1-3_source.buildinfo
Checksums-Sha256:
 d567b2208402a58bab6d1a17ccb26743302930a2da514d10c77423de450a87e2 2781 
rust-bindgen_0.51.1-3.dsc
 5463280b8cba12456357f8cf2f3062c777c9019c9817d9b5aaadd0eb5f12822e 3848 
rust-bindgen_0.51.1-3.debian.tar.xz
 199b6f3af868eaef18a80a13b643cba040f1c2794b1fbd94cf46f6f070217788 7908 
rust-bindgen_0.51.1-3_source.buildinfo
Files:
 6bfdf33965e296937ed1d7c388dc0d60 2781 rust optional rust-bindgen_0.51.1-3.dsc
 c9f2efac0be85f564f9fd0c64ec0d097 3848 rust optional 
rust-bindgen_0.51.1-3.debian.tar.xz
 763cdb4a7b9279fddef1e5a8f6227d2e 7908 rust optional 
rust-bindgen_0.51.1-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXfPjAgAKCRB2GBllKa5f
+J29AQCFz4PZo5HH4Yrk6O/XPvBxM+oCd2WgWQndoJr8wMvpOwD+MngpXropUxRr
aEbGcraEcoiNbGRXixoWC3O4ArJ/6Qg=
=CrZy
-END PGP SIGNATURE-



Accepted rust-sequoia-sqv 0.12.0-2 (source) into unstable

2019-12-13 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 13 Dec 2019 09:32:49 -0500
Source: rust-sequoia-sqv
Architecture: source
Version: 0.12.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-sequoia-sqv (0.12.0-2) unstable; urgency=medium
 .
   * rebuild for source-only upload now that it has passed NEW
Checksums-Sha1:
 f8d1f2c815a7035066653b4aa80e8e074a5d1eae 1625 rust-sequoia-sqv_0.12.0-2.dsc
 5f5a01b7178fcde53805e87cef52879123cf766b 2700 
rust-sequoia-sqv_0.12.0-2.debian.tar.xz
 63ed7d690cc99a0515376eb53437af3e15acefe0 7658 
rust-sequoia-sqv_0.12.0-2_source.buildinfo
Checksums-Sha256:
 adf5277a2fc58412d06d43bf82b66f2a534fb1b4af5c8cb159365cc45d60f00e 1625 
rust-sequoia-sqv_0.12.0-2.dsc
 545a1596600adf5dbe5fe2f37d33068afad1e9fe8b2488b4469401921b0ffcf8 2700 
rust-sequoia-sqv_0.12.0-2.debian.tar.xz
 3d104025ce58464afe607f3e3eccfc5724c3295342cb47a3134c18bcd47a6608 7658 
rust-sequoia-sqv_0.12.0-2_source.buildinfo
Files:
 db87e0819e6d3bdab685305061bf4466 1625 utils optional 
rust-sequoia-sqv_0.12.0-2.dsc
 8b8ae7d03e67642ba7146741ee8f8834 2700 utils optional 
rust-sequoia-sqv_0.12.0-2.debian.tar.xz
 ebd0e8e3ed0253f7538c99f5cd5e514c 7658 utils optional 
rust-sequoia-sqv_0.12.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXfOhFAAKCRB2GBllKa5f
+Dd/AP4+DWQYmgS28n2k5AkjsUU1S6BdAYI5w0YUHNPYpfQSsgD/SbLVwjrhRPYg
d5PABmD1Qp21uqvNAKQYX0550fZQJgw=
=ZrNy
-END PGP SIGNATURE-



Accepted rust-sequoia-sqv 0.12.0-1 (amd64 source) into unstable, unstable

2019-12-12 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed,  4 Dec 2019 13:59:32 EST
Source: rust-sequoia-sqv
Binary: sqv sqv-dbgsym
Architecture: amd64 source
Version: 0.12.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description: 
 sqv - Simple signature verification program
Changes:
 rust-sequoia-sqv (0.12.0-1) unstable; urgency=medium
 .
   * Package sequoia-sqv 0.12.0 from crates.io using debcargo 2.4.0
Checksums-Sha256: 
 450d994329370494c9c9e5927faf2de3b712ad7d2602974de86cf99836ce61d2 12244 
rust-sequoia-sqv_0.12.0-1_amd64.buildinfo
 698c5811c524d7c4c86d04a1f8a4ebdacc830a355f73c2a0d05c174cc89b4245 9018672 
sqv-dbgsym_0.12.0-1_amd64.deb
 a86be39ebaa6d3d475dd7cb16384ee88bc24d1339f420853654d98681a367473 637824 
sqv_0.12.0-1_amd64.deb
 9e021a63c86dcffb920c732070837f073b19a423694df778316040a907fe5f98 1625 
rust-sequoia-sqv_0.12.0-1.dsc
 fd0a692e3787a93c6c8b2423136ce0e1961e687e000afb60abe5087b32937771 25372 
rust-sequoia-sqv_0.12.0.orig.tar.gz
 10fb77f157cd5c74d44beee5e37511b064a3897ae5a3cabd7acbaf4b95045c67 2644 
rust-sequoia-sqv_0.12.0-1.debian.tar.xz
Checksums-Sha1: 
 8d9e1d9ee74f82b8000dfbcc99ff8b2727536c75 12244 
rust-sequoia-sqv_0.12.0-1_amd64.buildinfo
 dd0be4d58f772e56aab9a6c217a440674889b1f5 9018672 sqv-dbgsym_0.12.0-1_amd64.deb
 c6c619af6ca47feaab6daf7f5d86ff21064c0e8e 637824 sqv_0.12.0-1_amd64.deb
 c5657de5de7f3163504504ef21bdbcb39f012cbb 1625 rust-sequoia-sqv_0.12.0-1.dsc
 a9203241b3fff54fac2ffd89b52f2310941a4590 25372 
rust-sequoia-sqv_0.12.0.orig.tar.gz
 541d9c6939310f76798fd66537e9442c1269145e 2644 
rust-sequoia-sqv_0.12.0-1.debian.tar.xz
Files: 
 38ea74e71414f1081a8ac8a38d33b32a 12244 utils optional 
rust-sequoia-sqv_0.12.0-1_amd64.buildinfo
 170f386364b947491f2c0988684038df 9018672 debug optional 
sqv-dbgsym_0.12.0-1_amd64.deb
 acf621fc95de3825eb166427b9a4ab43 637824 utils optional sqv_0.12.0-1_amd64.deb
 4efd9dce75e6f2e3b5d33fdf97434cf9 1625 utils optional 
rust-sequoia-sqv_0.12.0-1.dsc
 476e757f5ac88fff748568d9ecedcb61 25372 - - rust-sequoia-sqv_0.12.0.orig.tar.gz
 9e1d36da3c4cb90a944003db369e8c36 2644 - - 
rust-sequoia-sqv_0.12.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXegSQwAKCRB2GBllKa5f
+A6HAQDUB9PMVfsKCrS3xVS9v3NnRod5nMA2qH8HSMsXWWo5HwD/SVpT9rgI7V6U
LRpjkGXx9qWsG0oBVJVZlHwTpjPMfgM=
=9cqw
-END PGP SIGNATURE-



Accepted wireguard 0.0.20191212-1 (source) into unstable

2019-12-12 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Dec 2019 10:53:37 -0500
Source: wireguard
Architecture: source
Version: 0.0.20191212-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (0.0.20191212-1) unstable; urgency=medium
 .
   * new upstream release
   * encourage nftables instead of iptables
Checksums-Sha1:
 8a6c94026b2657e3e61dcb03c10d9495e86bc750 1513 wireguard_0.0.20191212-1.dsc
 3278c8030247058b4d4c1bd3867b7bbf31e3ba03 332940 
wireguard_0.0.20191212.orig.tar.xz
 a102d8576620d25b09c0af0d91abe656f97ee315 25368 
wireguard_0.0.20191212-1.debian.tar.xz
 07d053b1429a3fac8336e4ce630720294cf7bdcd 7781 
wireguard_0.0.20191212-1_amd64.buildinfo
Checksums-Sha256:
 6d36bbd1603ca960c20534a43e113e53fa75a3ed5a5919d8f58439f1e684abde 1513 
wireguard_0.0.20191212-1.dsc
 c0232c76d813ee6c0202f845234c2d8489bf763de0a1fded3968f86262834283 332940 
wireguard_0.0.20191212.orig.tar.xz
 08dc2672c24683a80e36b3407a5e2bba97b0319d8281d9e7d04224f511bc8ed0 25368 
wireguard_0.0.20191212-1.debian.tar.xz
 09174b78fd892e7006a6b72a618bc4f846ba20332e5cbf179a6385511bc66748 7781 
wireguard_0.0.20191212-1_amd64.buildinfo
Files:
 9bdf4754e21271b44f456f94b4e1c7cc 1513 net optional wireguard_0.0.20191212-1.dsc
 fc48e3d884fd65e5f7362ab010b3a9c3 332940 net optional 
wireguard_0.0.20191212.orig.tar.xz
 0554196d23f117366ca683c4281d2495 25368 net optional 
wireguard_0.0.20191212-1.debian.tar.xz
 189c7586f9343867d0692e9584a40e37 7781 net optional 
wireguard_0.0.20191212-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXfJldAAKCRB2GBllKa5f
+KWoAPkBvj2+3HfeG2DYSsb5CYHu05dpCUhJphByJRJN6t0NVwD/YR8MnASCQ6Fk
wq2SEUnpIanYHupRHRiU/cyNDPI9dgE=
=cyab
-END PGP SIGNATURE-



Accepted wireguard 0.0.20191206-1 (source) into unstable

2019-12-06 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 06 Dec 2019 17:32:38 -0500
Source: wireguard
Architecture: source
Version: 0.0.20191206-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (0.0.20191206-1) unstable; urgency=medium
 .
   * new upstream release
Checksums-Sha1:
 8047b4badf8a7439fe71d54ce837ebbfb05b026c 1513 wireguard_0.0.20191206-1.dsc
 6822b7f600c627ce9daba1b05c5896d4253c0be7 331988 
wireguard_0.0.20191206.orig.tar.xz
 7527486e3fcbd92426aaa16846b54e25ca1e21cc 25332 
wireguard_0.0.20191206-1.debian.tar.xz
 36cd0fc2cc368158a31a69b5e22f3cc0509ec55f 7780 
wireguard_0.0.20191206-1_amd64.buildinfo
Checksums-Sha256:
 d628798b51c74f7b2b8a83ecc12f4306cd5942f03880d8712dd2950fe55b3d06 1513 
wireguard_0.0.20191206-1.dsc
 ad4edc4ee2c1d6b5b3ac1e05a3549e5a42e659c3f4ea517615f55298258cfd35 331988 
wireguard_0.0.20191206.orig.tar.xz
 0dc24d58dc1254c837b2e0f967ccaed961b6c1a0437c7d5637acd54cab721f9e 25332 
wireguard_0.0.20191206-1.debian.tar.xz
 55d1bada2198c051ed6bf178168e0d2f5a08c0caa5973bf04a134ab237f22504 7780 
wireguard_0.0.20191206-1_amd64.buildinfo
Files:
 d887b0a8586480195e6df4c443a34479 1513 net optional wireguard_0.0.20191206-1.dsc
 f077d916ac78783f1d002653cb4c1f3d 331988 net optional 
wireguard_0.0.20191206.orig.tar.xz
 4f0a652db2039590aa273009abd944e2 25332 net optional 
wireguard_0.0.20191206-1.debian.tar.xz
 12233aad492644ed965bc1be6a548346 7780 net optional 
wireguard_0.0.20191206-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXerYLQAKCRB2GBllKa5f
+HhFAQCN/owkcJxXste1PaeGTpIca5oUCS+RSBYgqxcw3PX28gD9EowimWaZQvwN
E7fv+/nbeq+ezwYk53OOT0oK6GwNPAo=
=lEAV
-END PGP SIGNATURE-



Accepted wireguard 0.0.20191127-2 (source) into unstable

2019-12-04 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 04 Dec 2019 10:46:36 -0500
Source: wireguard
Architecture: source
Version: 0.0.20191127-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (0.0.20191127-2) unstable; urgency=medium
 .
   * wireguard-tools now Recommends: iptables because of wg-quick
Checksums-Sha1:
 d5185ef7f81e87a6d781ecbbde2a3b1d9ac4aca6 1513 wireguard_0.0.20191127-2.dsc
 55ac3927336ba73579b8a41a0f7363726e60e49e 25328 
wireguard_0.0.20191127-2.debian.tar.xz
 fda76d1f454ccada2b076ae8360e662e7e8cb25c 7780 
wireguard_0.0.20191127-2_amd64.buildinfo
Checksums-Sha256:
 989ebf5ec5181af28909b7837451ae3167e38670a344e9d25ae41b8dfa93cdaf 1513 
wireguard_0.0.20191127-2.dsc
 1e9c2855891c2fc6d311c2266c08cfce7748a012b5cce87c847e6cc68457f1ee 25328 
wireguard_0.0.20191127-2.debian.tar.xz
 b17728f90358019ea7f1acf27c56e8e2a47c33fed47e9876470096906fa93c48 7780 
wireguard_0.0.20191127-2_amd64.buildinfo
Files:
 536ffd578f1345aa80a880def47e7cce 1513 net optional wireguard_0.0.20191127-2.dsc
 0d7f3a95e6518c2a619c7a18c8d93830 25328 net optional 
wireguard_0.0.20191127-2.debian.tar.xz
 e3df821a898cf721067df3c81bc7931c 7780 net optional 
wireguard_0.0.20191127-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXefVFgAKCRB2GBllKa5f
+O0bAP4+HwwneosaQux4EdyhGJiG2CY55812Ayvn2nk8uz6e6wD9F98f25ttxxMF
0+701vDY3rCZl66h9lCMCilft2O0Wws=
=1Dlo
-END PGP SIGNATURE-



Accepted wireguard 0.0.20191127-1 (source) into unstable

2019-12-02 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 02 Dec 2019 09:44:34 -0500
Source: wireguard
Architecture: source
Version: 0.0.20191127-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (0.0.20191127-1) unstable; urgency=medium
 .
   * new upstream release
Checksums-Sha1:
 52e73cc95c0c5eac2b406a7a5bc93b0b86f6d8bd 1513 wireguard_0.0.20191127-1.dsc
 8e7c954f1fa8312237eafa6529c723266b577d27 331868 
wireguard_0.0.20191127.orig.tar.xz
 82845740358059822de1dba6ff2e01dbcc7c95d6 25288 
wireguard_0.0.20191127-1.debian.tar.xz
 2bce1e31b902650ee0c2fa712d2a2bde48aedac9 7780 
wireguard_0.0.20191127-1_amd64.buildinfo
Checksums-Sha256:
 09c6dc5cb13b4afd930373882cd1c5468109aa2b82ca898294813aa6c5c31032 1513 
wireguard_0.0.20191127-1.dsc
 320b44726ba10864c47fd426068493ac77223c64635773394f7d611a07517aaf 331868 
wireguard_0.0.20191127.orig.tar.xz
 ebd03af310952b226087071f1b3ac7511f6374bee1044cba70023086aa426339 25288 
wireguard_0.0.20191127-1.debian.tar.xz
 7607ed6d7e29b7915f9dec0a4653b57f0c103399c78f646cb2598f0487fac2fa 7780 
wireguard_0.0.20191127-1_amd64.buildinfo
Files:
 177ea03c0c524c9cb7a88793d0ec6ebd 1513 net optional wireguard_0.0.20191127-1.dsc
 984662dc6bcbf5647547629dc3b7a92c 331868 net optional 
wireguard_0.0.20191127.orig.tar.xz
 5845c7a986a191176abecd9bb00948a8 25288 net optional 
wireguard_0.0.20191127-1.debian.tar.xz
 2493a657bfda58737b98474faba2734a 7780 net optional 
wireguard_0.0.20191127-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXeWOpwAKCRB2GBllKa5f
+CbJAQCYHvxCzrALOg9gHP7djYua899JhJLx9AINSMK1bNEuMwD/WfG6URj29Q4R
e9KKcuMtruo0YpY3u+NjejBCLCX+YAE=
=KsUs
-END PGP SIGNATURE-



Bug#945537: ITP: rnp -- high-performance C++ OpenPGP library

2019-11-26 Thread Daniel Kahn Gillmor
Package: wnpp
Severity: wishlist
Owner: Daniel Kahn Gillmor 

* Package name: rnp
  Version : 0.12.0
  Upstream Author : Ronald Tse , Daniel Wyatt 
, Nickolay Olshevsky , Krzysztof 
Kwiatkowski 
* URL : https://www.rnpgp.com/
* License : BSD
  Programming Lang: C++
  Description : high-performance C++ OpenPGP library

A set of portable OpenPGP (RFC4880) tools, derived originally from
NetPGP and dependent on Botan for cryptographic primitives.

"rnp" offers a command-line interface of comparable functionality to
GnuPG's gpg tool.

"librnp" offers a C library that exposes OpenPGP functionality.

Newer versions of Mozilla Thunderbird appear to be likely to
incorporate tooling from RNP for handling OpenPGP natively [0], so we
should have this available in debian directly.

[0] https://bugzilla.mozilla.org/show_bug.cgi?id=1599233



Accepted rust-clang-sys 0.28.1-3 (source) into unstable

2019-11-26 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 26 Nov 2019 09:45:14 -0500
Source: rust-clang-sys
Architecture: source
Version: 0.28.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-clang-sys (0.28.1-3) unstable; urgency=medium
 .
   * Team upload.
   * Package clang-sys 0.28.1 from crates.io using debcargo 2.4.0
   * source-only upload to help migration.
Checksums-Sha1:
 f5e52e8ce8d592905c6d589ef600aa3dc6ab90ac 2512 rust-clang-sys_0.28.1-3.dsc
 67015ea93880afafd202d1ed417e226b88e17665 2912 
rust-clang-sys_0.28.1-3.debian.tar.xz
 2967fda8a1777fb9e8cd48c491d3277eb8187309 7250 
rust-clang-sys_0.28.1-3_source.buildinfo
Checksums-Sha256:
 2bee33a7c2e66e6812c78c3f2f4da0604d23f5dac9d21f3988d317b893ef90c1 2512 
rust-clang-sys_0.28.1-3.dsc
 ee84f39f446564efee52c00f21e9f5ac2caa27654dfa214d539f10c077515769 2912 
rust-clang-sys_0.28.1-3.debian.tar.xz
 d2568fc80c13b2b0ec99cb2b3438985aaf6bb2bacde62c65dce851b0edabcb0f 7250 
rust-clang-sys_0.28.1-3_source.buildinfo
Files:
 565ffc82489b7b3ccb543fd349841b21 2512 rust optional rust-clang-sys_0.28.1-3.dsc
 a9fe2bbd1b4cae6d081355bb37486e9d 2912 rust optional 
rust-clang-sys_0.28.1-3.debian.tar.xz
 2c22a17ec1a1f6cbce9f9d90f7851ad0 7250 rust optional 
rust-clang-sys_0.28.1-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXd06fQAKCRB2GBllKa5f
+GIZAQCngV6RaoDiKTAtFzznte52nTU8VBzQvLH5bzBTEMVnMAD/UVcAll5gFdHj
oTU2mFbXSm2Q7yXdJ8lOn4KpxBSSdgc=
=zqxo
-END PGP SIGNATURE-



Accepted rust-nettle 5.0.3-2 (source) into unstable

2019-11-25 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 26 Nov 2019 00:39:52 -0500
Source: rust-nettle
Architecture: source
Version: 5.0.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-nettle (5.0.3-2) unstable; urgency=medium
 .
   * Package nettle 5.0.3 from crates.io using debcargo 2.4.0
   * source-only rebuild now that nettle is out of NEW
Checksums-Sha1:
 641b94aeca4d325d9f06ef1e3834da6023a47f25 1704 rust-nettle_5.0.3-2.dsc
 1d91d037b352821ae843d1030d89423b10aa3f15 2220 rust-nettle_5.0.3-2.debian.tar.xz
 74432c8ce35e0659d1406cb2d4a37c4229abd754 7804 
rust-nettle_5.0.3-2_source.buildinfo
Checksums-Sha256:
 20d1d416ff0decc0390f77e2d8f1cc97733ff18e321de64f6f971975cc15615a 1704 
rust-nettle_5.0.3-2.dsc
 67f978ab7c09141ac00d5a7f1445f70dec848c397306cfd94ed2067545ef68f3 2220 
rust-nettle_5.0.3-2.debian.tar.xz
 cf954f09676f8cc2d533de9513b4e974c70016dede88a511a797a0e515796a99 7804 
rust-nettle_5.0.3-2_source.buildinfo
Files:
 2bb0b13b508c7e58ce2ca7b4157f2bad 1704 rust optional rust-nettle_5.0.3-2.dsc
 d9d5f5f3c9ec2c77dc6b8426659f0259 2220 rust optional 
rust-nettle_5.0.3-2.debian.tar.xz
 c1cb4533045e66af6d196aa4d24c 7804 rust optional 
rust-nettle_5.0.3-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXdy6qwAKCRB2GBllKa5f
+JdSAP9FsFWORg0rRhNSmWlGVOLJfdgWGr7jC+RdTPoK+unQ4QEAyJjFo9K8CAfe
9+0AT+oRLk3S9abxFt77yEwUaSvTNAI=
=Rdge
-END PGP SIGNATURE-



Accepted rust-nettle-sys 2.0.4-2 (source) into unstable

2019-11-25 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 26 Nov 2019 00:05:55 -0500
Source: rust-nettle-sys
Architecture: source
Version: 2.0.4-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-nettle-sys (2.0.4-2) unstable; urgency=medium
 .
   * clean up "vendored" fake feature to avoid autopkgtest failures
Checksums-Sha1:
 e83153d7c41cb42d3b4145e8836ce755a6067ad8 1696 rust-nettle-sys_2.0.4-2.dsc
 762131ac9945ca6a79e2cf4de7f02392de9e9221 2896 
rust-nettle-sys_2.0.4-2.debian.tar.xz
 063f45caff6706a40dd95c098fb2664b63fb915b 7004 
rust-nettle-sys_2.0.4-2_source.buildinfo
Checksums-Sha256:
 436144c2149db27915dd6ed5c6585aadc20089ac2ecdbf4189dbb0749255cc14 1696 
rust-nettle-sys_2.0.4-2.dsc
 95c468db4177fa0d6f279bd54d144d1c2cb67cce2075e590f4b8b762f72d683b 2896 
rust-nettle-sys_2.0.4-2.debian.tar.xz
 cd11282c0edff33b7fc34777bba761e1c8e8e48d5b44672bc219c48b1e37116f 7004 
rust-nettle-sys_2.0.4-2_source.buildinfo
Files:
 f3dfe4b7d28f794c08c1540517a4b758 1696 rust optional rust-nettle-sys_2.0.4-2.dsc
 4df4a362d97b3a36d8c070ab239db828 2896 rust optional 
rust-nettle-sys_2.0.4-2.debian.tar.xz
 548c0821d4550e2c7abdaac6f09fdd64 7004 rust optional 
rust-nettle-sys_2.0.4-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXdyytgAKCRB2GBllKa5f
+IhJAP4kQDXZZBA+cqGYFblQXW/ulsDu8LmWU15VmyQKOVWsMwD/VdCLX+D8jUyH
/6BLYOG52n1ZTrKZzu4GZemAUwlYjQw=
=kcc8
-END PGP SIGNATURE-



Accepted rust-sequoia-openpgp 0.12.0-1 (source) into unstable

2019-11-25 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 25 Nov 2019 23:41:12 -0500
Source: rust-sequoia-openpgp
Architecture: source
Version: 0.12.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-sequoia-openpgp (0.12.0-1) unstable; urgency=medium
 .
   * Package sequoia-openpgp 0.12.0 from crates.io using debcargo 2.4.0
Checksums-Sha1:
 2343d8d354a03c251d3bf243d40ad6a781e2d808 3060 rust-sequoia-openpgp_0.12.0-1.dsc
 4c3e34fe859062912aeaa094b21ddde45f4c79a3 1377949 
rust-sequoia-openpgp_0.12.0.orig.tar.gz
 d060604b4253aab08eac8a0bb53c435be0606c69 3040 
rust-sequoia-openpgp_0.12.0-1.debian.tar.xz
 c0dd7d6dbee7cf84c14b2df720147c76e978a9e2 11555 
rust-sequoia-openpgp_0.12.0-1_source.buildinfo
Checksums-Sha256:
 6a78ee55a38eeed5b98f4a1cdebfaa9bc136c34879db8708c45705ee90122750 3060 
rust-sequoia-openpgp_0.12.0-1.dsc
 33554f73114b96e1275ebec51131010c15e6c91f18a8d29a7d234112f9be43c5 1377949 
rust-sequoia-openpgp_0.12.0.orig.tar.gz
 3e65197b2404e4661ba228d1e35b8f29ab46fd4b7b790dba7b530c4d25df3af0 3040 
rust-sequoia-openpgp_0.12.0-1.debian.tar.xz
 70ede71dc2a210a1022357f88436dd25e9ec79eeb4fd1594688a2a8ed118ab56 11555 
rust-sequoia-openpgp_0.12.0-1_source.buildinfo
Files:
 aa54e860796e24b3c6ffecf09550745e 3060 rust optional 
rust-sequoia-openpgp_0.12.0-1.dsc
 6d6b6e653c8a68c05dfd77548967d668 1377949 rust optional 
rust-sequoia-openpgp_0.12.0.orig.tar.gz
 398f9687d3f97d591373784609d21793 3040 rust optional 
rust-sequoia-openpgp_0.12.0-1.debian.tar.xz
 4e8cd0bcf5e8c8b0255d8d44e948ff39 11555 rust optional 
rust-sequoia-openpgp_0.12.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXdys6wAKCRB2GBllKa5f
+B90AQCEKc16zG+SH86Jv4srEkX2x0lpD+tO/F44nKBh8DLCzwD/bHPgo1nSYr3u
+a14xLml09wTBUSuY61C1ueFSpsmfwo=
=gZ7E
-END PGP SIGNATURE-



Accepted rust-buffered-reader 0.12.0-1 (source) into unstable

2019-11-25 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 25 Nov 2019 18:47:03 -0500
Source: rust-buffered-reader
Architecture: source
Version: 0.12.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-buffered-reader (0.12.0-1) unstable; urgency=medium
 .
   * Package buffered-reader 0.12.0 from crates.io using debcargo 2.4.0
Checksums-Sha1:
 d17257cbd89b389fd994cc789d2881167320558a 2135 rust-buffered-reader_0.12.0-1.dsc
 36d386b8d3ae2a347ea41029e80204d27c7d100e 49011 
rust-buffered-reader_0.12.0.orig.tar.gz
 f2afb130a525ce557a423f000d10a4c3793f3ab3 2604 
rust-buffered-reader_0.12.0-1.debian.tar.xz
 8a98e1c79b6c8deec7d8a86ae6231174a7b30e7b 7487 
rust-buffered-reader_0.12.0-1_source.buildinfo
Checksums-Sha256:
 3a31f884587ce26a5eced1586379eddca22acbf0fed8f20fcddbffe5934a 2135 
rust-buffered-reader_0.12.0-1.dsc
 926c9f1c816da9ee57eec1e951483e5d1b1617b4f5131e48902e7ae63154826c 49011 
rust-buffered-reader_0.12.0.orig.tar.gz
 090a436197d634719bed5c6614704aa8cade712ff336ba59d081f3bc3bf22d2e 2604 
rust-buffered-reader_0.12.0-1.debian.tar.xz
 29ca1aec9aab77f4fb0d6311f04384dbe70cd87f4cb2e604ce5c0676a4858379 7487 
rust-buffered-reader_0.12.0-1_source.buildinfo
Files:
 dc6549c23047cb98c53e07df450c3c92 2135 rust optional 
rust-buffered-reader_0.12.0-1.dsc
 5fa9992bfd32a57e1a2e85b7fff37434 49011 rust optional 
rust-buffered-reader_0.12.0.orig.tar.gz
 b9f0dcfa14cb13f15b40090d88114a21 2604 rust optional 
rust-buffered-reader_0.12.0-1.debian.tar.xz
 02d236098da70ca3ada060283ace35c1 7487 rust optional 
rust-buffered-reader_0.12.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXdxn+gAKCRB2GBllKa5f
+Kg7AP4yV1HVKiNN/32y0HEmUsAUTOWujoB7b667jrAJa1InVwEA2smlFalCkFrw
vnMTSqJOjIRYC+LArTwNRKHKlLpHngc=
=pgW4
-END PGP SIGNATURE-



Accepted publicsuffix 20191120.1745-1 (source) into unstable

2019-11-24 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 24 Nov 2019 19:12:34 -0500
Source: publicsuffix
Architecture: source
Version: 20191120.1745-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 publicsuffix (20191120.1745-1) unstable; urgency=medium
 .
   * new upstream version
Checksums-Sha1:
 9e4a7ddf551bd51f783a9b0536233f18b828e8de 1406 publicsuffix_20191120.1745-1.dsc
 5b29f651218fd10180a99c5e8ff3ccb7c5f8ce3c 93131 
publicsuffix_20191120.1745.orig.tar.gz
 a3077c3887e03eaa616ad32181e0ef36bfd53ce2 14720 
publicsuffix_20191120.1745-1.debian.tar.xz
 398067bbab7e19c2bd1f29ac1bc66ee16f9e2bad 6202 
publicsuffix_20191120.1745-1_amd64.buildinfo
Checksums-Sha256:
 0e13c1ded55e1d7bd525b5ead210161956e2b8d8326101c01d532ca692762714 1406 
publicsuffix_20191120.1745-1.dsc
 5a788e7583f34cd63944d78daac1c6d3be7bb119f89a35ae354dba17240d922a 93131 
publicsuffix_20191120.1745.orig.tar.gz
 13b30af3a8cbc41d624adc6036302f0054b9361e5a3af58ca41d694aa357a4a2 14720 
publicsuffix_20191120.1745-1.debian.tar.xz
 164ec1bed49d6d42690e3edbca2972b8d807813b466e2e87a649c4bd0bdf2b81 6202 
publicsuffix_20191120.1745-1_amd64.buildinfo
Files:
 5a1e627646ee9009d81c8408a506311f 1406 net optional 
publicsuffix_20191120.1745-1.dsc
 200e32384fe4cd867da9e5873ef7217f 93131 net optional 
publicsuffix_20191120.1745.orig.tar.gz
 eaad8b9d6937e535bb90dd26942e8e91 14720 net optional 
publicsuffix_20191120.1745-1.debian.tar.xz
 dc085e91d050120a149321c168eab677 6202 net optional 
publicsuffix_20191120.1745-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXdscfwAKCRB2GBllKa5f
+JguAQDLW5yMpjR9AC9uW/KkN4gdHlSQcLt3n9mRnF3I08K2QQD/bO3Ta6yPQxzG
sEB0JEuCdi/VOowJwP3MaV4Ghi6/sQE=
=WUTv
-END PGP SIGNATURE-



Accepted rust-sequoia-openpgp 0.11.0-1 (amd64 source) into unstable, unstable

2019-11-12 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat,  9 Nov 2019 23:53:59 EST
Source: rust-sequoia-openpgp
Binary: librust-sequoia-openpgp+bzip2-dev 
librust-sequoia-openpgp+compression-bzip2-dev 
librust-sequoia-openpgp+compression-deflate-dev 
librust-sequoia-openpgp+compression-dev librust-sequoia-openpgp+flate2-dev 
librust-sequoia-openpgp-dev
Architecture: amd64 source
Version: 0.11.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description: 
 librust-sequoia-openpgp+bzip2-dev - OpenPGP data types and associated 
machinery - feature "bzip2"
 librust-sequoia-openpgp+compression-bzip2-dev - OpenPGP data types and 
associated machinery - feature "compressio
 librust-sequoia-openpgp+compression-deflate-dev - OpenPGP data types and 
associated machinery - feature "compressio
 librust-sequoia-openpgp+compression-dev - OpenPGP data types and associated 
machinery - feature "compressio
 librust-sequoia-openpgp+flate2-dev - OpenPGP data types and associated 
machinery - feature "flate2"
 librust-sequoia-openpgp-dev - OpenPGP data types and associated machinery - 
Rust source code
Changes:
 rust-sequoia-openpgp (0.11.0-1) unstable; urgency=medium
 .
   * Package sequoia-openpgp 0.11.0 from crates.io using debcargo 2.4.0
Checksums-Sha256: 
 fbb0b6504f9108f0f66953b1a272ec33b9c10cbebac0e202180215cdb58119fe 1080 
librust-sequoia-openpgp+bzip2-dev_0.11.0-1_amd64.deb
 5babea6b54ad36cb6b6e3c2da0b857191ba58d460e56704f4e0477cfb3c6faa7 1124 
librust-sequoia-openpgp+compression-bzip2-dev_0.11.0-1_amd64.deb
 aaf4be6e1b0b44b87290ec3456f820317b3e4f52e8bad1b0dfccebffce7db401 1124 
librust-sequoia-openpgp+compression-deflate-dev_0.11.0-1_amd64.deb
 2d6d642189754fa550ed6bccaa46efc1564b9525ba3fb53aefd4a54d812a763a 1136 
librust-sequoia-openpgp+compression-dev_0.11.0-1_amd64.deb
 2228067acde045a133312d5554bb6a480cbd0bf9301cd9dd3c59406081d53766 1084 
librust-sequoia-openpgp+flate2-dev_0.11.0-1_amd64.deb
 0797975eb8b0150240c195d991108e99f2b8ba6a42d8452bc568eb0b9b39de1c 1230964 
librust-sequoia-openpgp-dev_0.11.0-1_amd64.deb
 4c57930c124ff4b60003714f3c1cea33dd53b1f0129bb4f7a549fededd4e33bc 13799 
rust-sequoia-openpgp_0.11.0-1_amd64.buildinfo
 314947f20be87bf2409a7349fbf929a38d07c730a4976232295b70a1861210e3 3062 
rust-sequoia-openpgp_0.11.0-1.dsc
 e414fea7ba6c55d07c3752a8d8f8e14f7c96f1b83cdbb5d3fad9e17be6009a3a 1391932 
rust-sequoia-openpgp_0.11.0.orig.tar.gz
 e4b1391f7877e9c99b03da16398ca824e55ac3d3a0f0a2820379842bf35a852b 2760 
rust-sequoia-openpgp_0.11.0-1.debian.tar.xz
Checksums-Sha1: 
 b9fa75a677460cd1b68f25df5e18da43b656201d 1080 
librust-sequoia-openpgp+bzip2-dev_0.11.0-1_amd64.deb
 65b2824eabce0551d96955f306e81223e88c90d5 1124 
librust-sequoia-openpgp+compression-bzip2-dev_0.11.0-1_amd64.deb
 93e0fb94bdbb7905954d6386d9a9463c249d5707 1124 
librust-sequoia-openpgp+compression-deflate-dev_0.11.0-1_amd64.deb
 97f5833b6d44eada2c2d4ac0e5eb6f0d3f5d8751 1136 
librust-sequoia-openpgp+compression-dev_0.11.0-1_amd64.deb
 3e612fc871a174302f21c395109b6c3d45024fcf 1084 
librust-sequoia-openpgp+flate2-dev_0.11.0-1_amd64.deb
 fdd7019ae3ea37101ee6dc1df80ab81fdb464bc6 1230964 
librust-sequoia-openpgp-dev_0.11.0-1_amd64.deb
 3ac62cce45cf86783e9b89bbd0afeed5f8c54796 13799 
rust-sequoia-openpgp_0.11.0-1_amd64.buildinfo
 7b622affaec267fe23386a0f23a2b3bdcfa0 3062 rust-sequoia-openpgp_0.11.0-1.dsc
 59fd2a872b25996d4b44ced012c02650ee9b925b 1391932 
rust-sequoia-openpgp_0.11.0.orig.tar.gz
 783a91643563bb8d623ec585aff4eac4509a152a 2760 
rust-sequoia-openpgp_0.11.0-1.debian.tar.xz
Files: 
 871598d9c79464fa8d702fc96ddc2a1e 1080 rust optional 
librust-sequoia-openpgp+bzip2-dev_0.11.0-1_amd64.deb
 d46c3b64e2e344a201d924922dbc68e9 1124 rust optional 
librust-sequoia-openpgp+compression-bzip2-dev_0.11.0-1_amd64.deb
 1e0d579eaa7c6a2f2190246ad6f3c554 1124 rust optional 
librust-sequoia-openpgp+compression-deflate-dev_0.11.0-1_amd64.deb
 305d73a69cea0baa6196ba6834ba221a 1136 rust optional 
librust-sequoia-openpgp+compression-dev_0.11.0-1_amd64.deb
 2818cc6922a9f7827ec23f0762da7e1a 1084 rust optional 
librust-sequoia-openpgp+flate2-dev_0.11.0-1_amd64.deb
 343092b8cfd7a97780aec965b479c654 1230964 rust optional 
librust-sequoia-openpgp-dev_0.11.0-1_amd64.deb
 c201d2d63f26f0a38228bce9b05bff22 13799 rust optional 
rust-sequoia-openpgp_0.11.0-1_amd64.buildinfo
 8d94b96621b3df1a34485cd3c96ab0cb 3062 rust optional 
rust-sequoia-openpgp_0.11.0-1.dsc
 1d2a3919b31c58982bc1e7847b1c77a2 1391932 - - 
rust-sequoia-openpgp_0.11.0.orig.tar.gz
 8c1e09235cb5d1d9f4bdf79b8a7f9cc4 2760 - - 
rust-sequoia-openpgp_0.11.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXceZBgAKCRB2GBllKa5f
+Aq1AP9dKxw7xN3WPQqr68rZieZkLkZvQesyCAJ5uXCQU0JVDgEA9o53SjDpUk+6
aMdd9XT0SN5j9La0KM4CDmu1eFimsws=
=HWUm
-END PGP SIGNATURE-



Accepted python-sop 0.1.3-1 (source all) into unstable, unstable

2019-11-12 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 28 Oct 2019 22:01:35 -0400
Source: python-sop
Binary: python3-sop
Architecture: source all
Version: 0.1.3-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Description:
 python3-sop - Framework for implementing the Stateless OpenPGP CLI in Python
Closes: 943742
Changes:
 python-sop (0.1.3-1) unstable; urgency=medium
 .
   * First upload into debian (Closes: #943742)
Checksums-Sha1:
 40804d58d096d10493030ecb608aac245a9d563a 1636 python-sop_0.1.3-1.dsc
 1436236a0193f9e736c2bb4b47cce73ed860878b 10673 python-sop_0.1.3.orig.tar.gz
 332297daa5be8d367cc0ced839f12a7d25f0e5d9 228 python-sop_0.1.3.orig.tar.gz.asc
 a3c562678592bc27b391cc96282649050ce03176 3612 python-sop_0.1.3-1.debian.tar.xz
 e5d205b874ac405ede5b3860f189ab56c744d4dd 6461 
python-sop_0.1.3-1_amd64.buildinfo
 e349a6ae31a1f6ffdd084c27d2c8ffa5b410ca7d 10664 python3-sop_0.1.3-1_all.deb
Checksums-Sha256:
 db18837715dbd34645b3b31c9e5082cabf1bcd86db3be5c583ecfefb3f20737b 1636 
python-sop_0.1.3-1.dsc
 4abebbc3c32dd0232f8952cd422620431683faa45b767f0ed959bcf8d4706c1d 10673 
python-sop_0.1.3.orig.tar.gz
 05ae535524148d833b87e2adb8e6a86dadecd47ace5af2dfd733c62142b51b9f 228 
python-sop_0.1.3.orig.tar.gz.asc
 060984c9fa9f98e9aaacff3b3be8f67723572a5c093a938d85e991fa81a5c1c2 3612 
python-sop_0.1.3-1.debian.tar.xz
 87e4dbebef72d54edbfa03790ca0c22ff708f66d1cb3eff1280f149dc19fc99b 6461 
python-sop_0.1.3-1_amd64.buildinfo
 c1f383d3ed5aaf7c499f80777c7152b8dfbacf00f893336ed31692e6a600c0f2 10664 
python3-sop_0.1.3-1_all.deb
Files:
 b36ddac71e418b3c464dd1362fa52f4f 1636 python optional python-sop_0.1.3-1.dsc
 3f2e08bf9d1136660c53b413b38f8f61 10673 python optional 
python-sop_0.1.3.orig.tar.gz
 5e28473c6c99d46e48ee4097b6c3321c 228 python optional 
python-sop_0.1.3.orig.tar.gz.asc
 477c3df7025e5951e60ea18b6fe900cb 3612 python optional 
python-sop_0.1.3-1.debian.tar.xz
 4127a08460df9b0c877d91f2c1c5c7d3 6461 python optional 
python-sop_0.1.3-1_amd64.buildinfo
 982dd6551d4377f3f4a29461e84f26c4 10664 python optional 
python3-sop_0.1.3-1_all.deb

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXbe0rAAKCRB2GBllKa5f
+GEFAQDeimB5BGsbp2TvC4A5DRope746GCPKQLmSmucStDSlrwD8Dg4XLZIfokEj
+7nsGGYwF/zZA6OK2uh82qO3nMkQPwM=
=I1Hb
-END PGP SIGNATURE-



Accepted python-sop 0.2.0-1 (source all) into unstable, unstable

2019-11-12 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 08 Nov 2019 00:49:13 -0500
Source: python-sop
Binary: python3-sop
Architecture: source all
Version: 0.2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Description:
 python3-sop - Framework for implementing the Stateless OpenPGP CLI in Python
Closes: 943742
Changes:
 python-sop (0.2.0-1) unstable; urgency=medium
 .
   * New upstream release (Closes: #943742)
Checksums-Sha1:
 70d26742295725f0c8d60abf8b638e71e2870513 1636 python-sop_0.2.0-1.dsc
 640d88f96867e46944217bf0ad747ba32decf1f6 10827 python-sop_0.2.0.orig.tar.gz
 0f799dda61a991f687c7b7ec39806cf4071509d4 228 python-sop_0.2.0.orig.tar.gz.asc
 493959cc4ae69173cfe374e0c81507c184f43315 3648 python-sop_0.2.0-1.debian.tar.xz
 d972fb12cee39807c44590e8aedde28d444619ce 6496 
python-sop_0.2.0-1_amd64.buildinfo
 3eb66ac0f9035ccffcae8cca3b803fd8e12a2e5a 10780 python3-sop_0.2.0-1_all.deb
Checksums-Sha256:
 bad868838369f1b3bde1684bf0f6d560dadb4b737f54c2d44f6be37c6aa8da9b 1636 
python-sop_0.2.0-1.dsc
 cecb329153c0f4341ab8ddedaa7e34370cc0802eaf2cce29af0d1adbb4f4923e 10827 
python-sop_0.2.0.orig.tar.gz
 a8980d12569760c9be5d18d99e9565b0b47c08679f397dfa701ae1bab04430c4 228 
python-sop_0.2.0.orig.tar.gz.asc
 64c52e6b5d76d12dd4b97597a70e08e842bb061438d1354b53ccb28f8ba1f728 3648 
python-sop_0.2.0-1.debian.tar.xz
 f922af9fda0cc5b9e30131df86114870d89758057dc3a23f0f1dc82da44d547c 6496 
python-sop_0.2.0-1_amd64.buildinfo
 288e225708930b7ec6a2f2ceefca70defc8af75581ee67bbf4db6117aa4cf7b2 10780 
python3-sop_0.2.0-1_all.deb
Files:
 e248086b5606f1024fdf4469deb6f00f 1636 python optional python-sop_0.2.0-1.dsc
 a8044de705aaa3f80e624f00e4997b3c 10827 python optional 
python-sop_0.2.0.orig.tar.gz
 cef03b5bbd66e0fc97a026c7617dec8f 228 python optional 
python-sop_0.2.0.orig.tar.gz.asc
 2e19c28e126c02423f6bb4e11c73b499 3648 python optional 
python-sop_0.2.0-1.debian.tar.xz
 50dbf2fe61db5e736a38f73dc7b547e7 6496 python optional 
python-sop_0.2.0-1_amd64.buildinfo
 f29c4571fae112f2067df8221883b370 10780 python optional 
python3-sop_0.2.0-1_all.deb

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXcUDVwAKCRB2GBllKa5f
+AOCAP0RXeUwPPLhDqp0t/lkOAlp7PepMdfnoUqpafgdXQDzzAD/Q7ue4V1eto3R
kdq1MsyZ+Gx841VcFnTZsL88MOVlogw=
=EL+J
-END PGP SIGNATURE-



Accepted enigmail 2:2.1.3+ds1-4 (source) into unstable

2019-11-09 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 09 Nov 2019 15:31:55 -0500
Source: enigmail
Architecture: source
Version: 2:2.1.3+ds1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 enigmail (2:2.1.3+ds1-4) unstable; urgency=medium
 .
   * convert to python3
   * convert unit tests to python3 as well
   * wrap-and-sort -ast
Checksums-Sha1:
 d846c8e69d77c422281f23fa496d0056f441b432 1554 enigmail_2.1.3+ds1-4.dsc
 2c6cda5a27cb23677ec8306f27d5834eacd8 45200 
enigmail_2.1.3+ds1-4.debian.tar.xz
 08f02873bcdd34de6f34e6c2f26f798747342e93 5920 
enigmail_2.1.3+ds1-4_source.buildinfo
Checksums-Sha256:
 700b41749ed5ab122f12d6e973c3e041e4e02e55472a66b3fc78370e4e20fb54 1554 
enigmail_2.1.3+ds1-4.dsc
 77efaeda8d6f74c4796664e88dfa33a16f62d8da5f392983aa76e99a5a1bbbf7 45200 
enigmail_2.1.3+ds1-4.debian.tar.xz
 e9359b7e55b2fb83009e8f9882c4966a18ff289139ad2dc1774d018e46e7d9c9 5920 
enigmail_2.1.3+ds1-4_source.buildinfo
Files:
 0a92e2da1d636a4fd042b7483f488fc2 1554 mail optional enigmail_2.1.3+ds1-4.dsc
 f3e2f732ff9604bb98a85f1dfa2b6bf6 45200 mail optional 
enigmail_2.1.3+ds1-4.debian.tar.xz
 1b96c354698b04e6b0f0bc34cdae6d14 5920 mail optional 
enigmail_2.1.3+ds1-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXcciZgAKCRB2GBllKa5f
+PttAQD4DA/+3YRzyZqAbqdNR/F4x9qIYwflCBT2Ee5iJuxOGQEA2mF63ICuY4td
k6Ggst+g4fQNr2k2NpzjwDpgjhuQYwE=
=3P6T
-END PGP SIGNATURE-



Accepted rust-buffered-reader 0.11.0-1 (source) into unstable

2019-11-09 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 09 Nov 2019 11:45:15 -0500
Source: rust-buffered-reader
Architecture: source
Version: 0.11.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-buffered-reader (0.11.0-1) unstable; urgency=medium
 .
   * Package buffered-reader 0.11.0 from crates.io using debcargo 2.4.0
Checksums-Sha1:
 e70df22d39e626c27e3fd5060cd82a0ee9dca25b 2135 rust-buffered-reader_0.11.0-1.dsc
 dc119192d3fbfb550abef550ed8d1431f4945d26 48895 
rust-buffered-reader_0.11.0.orig.tar.gz
 b85b36f0a9a562c7bab79471ac8549be2a39e548 2444 
rust-buffered-reader_0.11.0-1.debian.tar.xz
 fa65e19c3f1e67dad78efc7ba378af1abe196ac1 7507 
rust-buffered-reader_0.11.0-1_source.buildinfo
Checksums-Sha256:
 e78b4bfa0ce6b6e7f0b59fed539a15c4f8a49b8855639d4e344a41e93a6b0c8b 2135 
rust-buffered-reader_0.11.0-1.dsc
 2f4841b73b4705c268f16b2d808c199b7469f1011a5b845b8c68f9180d42ddaa 48895 
rust-buffered-reader_0.11.0.orig.tar.gz
 869c1831f4d1ae5830c6ae3c992ad7fc16d3aeed702ecc770e00d39d8fad5f87 2444 
rust-buffered-reader_0.11.0-1.debian.tar.xz
 2665abaebbff2348016ba0bd56a7c21983cef0bb144bdde9c5c1167519ebd394 7507 
rust-buffered-reader_0.11.0-1_source.buildinfo
Files:
 eae66edd2e444b8cf725c697e22e955f 2135 rust optional 
rust-buffered-reader_0.11.0-1.dsc
 188a986ddb67e3a746c167ec59800c15 48895 rust optional 
rust-buffered-reader_0.11.0.orig.tar.gz
 6cb0093993c9d9a171be08aa0a1514be 2444 rust optional 
rust-buffered-reader_0.11.0-1.debian.tar.xz
 c518fb8171ffadede2a14d01a4573495 7507 rust optional 
rust-buffered-reader_0.11.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXcbtHwAKCRB2GBllKa5f
+IakAP46bYTGdJ207uU0HewdU0wuVgDa3zNhsxD2b7G9xaR3sAEAmFGe+ZaLCFlh
4tSWW3B40eI1hAYmPPpcUNb1TXNS8wA=
=e29b
-END PGP SIGNATURE-



Accepted enigmail 2:2.1.3+ds1-3+exp2 (source) into experimental

2019-11-09 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 09 Nov 2019 11:02:59 -0500
Source: enigmail
Architecture: source
Version: 2:2.1.3+ds1-3+exp2
Distribution: experimental
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 enigmail (2:2.1.3+ds1-3+exp2) experimental; urgency=medium
 .
   * convert unit tests to python3 as well
   * try adding unit tests back to debian build process
   * wrap-and-sort -ast
Checksums-Sha1:
 26d510166d173b43a235df6e334be291959a0ee8 1634 enigmail_2.1.3+ds1-3+exp2.dsc
 512f0c994490f3322e5f6ed912d65895ba49497b 45220 
enigmail_2.1.3+ds1-3+exp2.debian.tar.xz
 92440ed6686aa0aece3b824bc23ed83607036fcf 10785 
enigmail_2.1.3+ds1-3+exp2_source.buildinfo
Checksums-Sha256:
 98262ee015e2d2fe06ab33ca41f90051e56fb8dceaa01a4a9cb0293b1d03f440 1634 
enigmail_2.1.3+ds1-3+exp2.dsc
 5f44d8db9b14dda0e64a774fbc8fcb94eab6a32de198eeefa133588e244e7f88 45220 
enigmail_2.1.3+ds1-3+exp2.debian.tar.xz
 de1f97122de5d929583dc7e544dbbc8c029ec8aaa742f980a3257960b96b9375 10785 
enigmail_2.1.3+ds1-3+exp2_source.buildinfo
Files:
 644ce8f6d370bb9bf6e5038c381c37a0 1634 mail optional 
enigmail_2.1.3+ds1-3+exp2.dsc
 fa22d22da31869f89d6894b11d458862 45220 mail optional 
enigmail_2.1.3+ds1-3+exp2.debian.tar.xz
 3cdec4bbc89be46d48daaf9a6f549aa5 10785 mail optional 
enigmail_2.1.3+ds1-3+exp2_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXcbjWAAKCRB2GBllKa5f
+EvhAQDaaIOd8RtNpxhvkef30tD8FWVYZOcfJ97lkHzVyhwvoQEA61uQy4vecBHN
6NjaIvtOTSSBM7BV49Jwbigf7YF7Ngk=
=z+lK
-END PGP SIGNATURE-



Accepted enigmail 2:2.1.3+ds1-3+exp1 (source) into experimental

2019-11-08 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 08 Nov 2019 23:40:31 -0500
Source: enigmail
Architecture: source
Version: 2:2.1.3+ds1-3+exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Daniel Kahn Gillmor 
Closes: 936482
Changes:
 enigmail (2:2.1.3+ds1-3+exp1) experimental; urgency=medium
 .
   * move to debian/experimental
   * convert packaging to python3 (Closes: #936482)
Checksums-Sha1:
 2eee9658e1994ff001561a49883842fe0e734b0f 1579 enigmail_2.1.3+ds1-3+exp1.dsc
 fe7a117380f6ac80bc001a13ab4994e6d17c69b8 45172 
enigmail_2.1.3+ds1-3+exp1.debian.tar.xz
 f18c670f8b484ac4bdb637abd798f6a017bf5ef8 5940 
enigmail_2.1.3+ds1-3+exp1_source.buildinfo
Checksums-Sha256:
 d8973548aa2e920cb57fe09415267d8585f1c93f489078af952e4515a41474b6 1579 
enigmail_2.1.3+ds1-3+exp1.dsc
 b57d030780ced5441c1f5dcbdbc8e301ef88d73b3d96745e104d19ef863c0909 45172 
enigmail_2.1.3+ds1-3+exp1.debian.tar.xz
 1a9cacd15fea6dcf43b29a5a04fc65d106eea555334f589fb1501157042a4c0b 5940 
enigmail_2.1.3+ds1-3+exp1_source.buildinfo
Files:
 8733d07d849c89d8041aa49c83c678f4 1579 mail optional 
enigmail_2.1.3+ds1-3+exp1.dsc
 cacc8fe88bfc2909fd2542231e62a14a 45172 mail optional 
enigmail_2.1.3+ds1-3+exp1.debian.tar.xz
 eec82f3874cf20e3a5344df029a7d75c 5940 mail optional 
enigmail_2.1.3+ds1-3+exp1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXcZE8AAKCRB2GBllKa5f
+NaRAP4gd0iQaa67vI3v0d7kW7qo+LeS1d3k8rH4Z2bdoWW/bgEAz4Hi/sorwGdN
DLpwfIAkgTbfvweeTWCv+gd4LX4uyA0=
=3/tG
-END PGP SIGNATURE-



Accepted enigmail 2:2.1.3+ds1-3 (source) into unstable

2019-11-08 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 08 Nov 2019 18:53:42 -0500
Source: enigmail
Architecture: source
Version: 2:2.1.3+ds1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 enigmail (2:2.1.3+ds1-3) unstable; urgency=medium
 .
   * d/tests: permit stderr on tbird-sqlite
Checksums-Sha1:
 61d4c402818abbc24fd45f3456f9a32a27902bcd 1552 enigmail_2.1.3+ds1-3.dsc
 9dd15f8918a28fd4d2f0e27d2df8fd7ae2e9e237 39448 
enigmail_2.1.3+ds1-3.debian.tar.xz
 85118814da6db0db633b7b060dc9731ac33b4476 6244 
enigmail_2.1.3+ds1-3_amd64.buildinfo
Checksums-Sha256:
 3c7a9e5ea0d275ab66edee06375a2072cb1ea77ccb578819c00a50933e7a1816 1552 
enigmail_2.1.3+ds1-3.dsc
 d0fe77b13e1178f21eed481b8972042be34d94ac36be0514e096222c88006f6c 39448 
enigmail_2.1.3+ds1-3.debian.tar.xz
 807a7b9bffdf5b542c46fd13a24f1ebe88cc9be3b638aa7b421adad9e3955c1f 6244 
enigmail_2.1.3+ds1-3_amd64.buildinfo
Files:
 056c8c50072b6beeb204e023a4896e44 1552 mail optional enigmail_2.1.3+ds1-3.dsc
 000fe0488c51004113b81d995f4e1e78 39448 mail optional 
enigmail_2.1.3+ds1-3.debian.tar.xz
 7d786a140c4b7a6a33a06f1789d06bcc 6244 mail optional 
enigmail_2.1.3+ds1-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXcYANgAKCRB2GBllKa5f
+GhUAP9V4zxaGzVEC/wd2y4GYh4n/kLfZKUIslmkmVPpJM9PhAD/btumFDZRlWBy
dGwYGXEv4k3/CfaLuhSs6XwfK3OGnws=
=nN+f
-END PGP SIGNATURE-



Accepted rust-nettle 5.0.3-1 (amd64 source) into unstable, unstable

2019-11-08 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Oct 2019 19:20:25 EDT
Source: rust-nettle
Binary: librust-nettle-dev
Architecture: amd64 source
Version: 5.0.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description: 
 librust-nettle-dev - Rust bindings for the Nettle cryptographic library - Rust 
source
Changes:
 rust-nettle (5.0.3-1) unstable; urgency=medium
 .
   * Package nettle 5.0.3 from crates.io using debcargo 2.4.0
Checksums-Sha256: 
 006b6daac5975dde6552c04f0aeca573a6a881d7db434c17a6d4b7016b4917ea 237868 
librust-nettle-dev_5.0.3-1_amd64.deb
 1e8911417f4c69a7d136fcd68959aedd587c540dfc09469d9660bd0854db95bb 8336 
rust-nettle_5.0.3-1_amd64.buildinfo
 70571221f55854bd35c8284aa63b59e1cb7405564a8c93ab323984793d9ee43a 1704 
rust-nettle_5.0.3-1.dsc
 c40aad15a496df1ae843b5ca10cef328e64d04854404464f464fd5e11aa6d77d 285460 
rust-nettle_5.0.3.orig.tar.gz
 963a5db14d590e5fd707c4c63b282438f3a6c17f2bd9510c7f9fd9866826f61f 2164 
rust-nettle_5.0.3-1.debian.tar.xz
Checksums-Sha1: 
 3afd2b5b9d3c55e1bff0807898d9e0b8c4ed3f46 237868 
librust-nettle-dev_5.0.3-1_amd64.deb
 f817163ff24f897004e1ba5280da9db77379b9fb 8336 
rust-nettle_5.0.3-1_amd64.buildinfo
 23aa6a98357efc9c4cf00d8b01ef7497eccd4a3f 1704 rust-nettle_5.0.3-1.dsc
 abd15bfbf5897819864330366f77bf4db70b818d 285460 rust-nettle_5.0.3.orig.tar.gz
 1f781326ed66da8204212c6c6fb22ef036dbaaed 2164 rust-nettle_5.0.3-1.debian.tar.xz
Files: 
 0d9950f7e0caa6c190f5bc6012639fbb 237868 rust optional 
librust-nettle-dev_5.0.3-1_amd64.deb
 7cdb9c4f39a1c1d8d384b61094ceac17 8336 rust optional 
rust-nettle_5.0.3-1_amd64.buildinfo
 a0b66de892004b48075ac0e0d71466a1 1704 rust optional rust-nettle_5.0.3-1.dsc
 4efcff62875dacbb1f20cda2728d1a62 285460 - - rust-nettle_5.0.3.orig.tar.gz
 716bc9c29fe8f7e4cfbf98ed724c35a9 2164 - - rust-nettle_5.0.3-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXbDggQAKCRB2GBllKa5f
+OjyAQC2bJNz37jX7iRSIc36fqoYOJUKpxgyisUuZdCx6644QgEArs9XZTMxWyXR
ofeaT9v6A0EMIjg6ko9gNCWpdBk8KwA=
=4rUD
-END PGP SIGNATURE-



Accepted rust-lalrpop 0.17.2-1 (amd64 source) into unstable, unstable

2019-11-08 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Oct 2019 12:25:43 EDT
Source: rust-lalrpop
Binary: lalrpop lalrpop-dbgsym librust-lalrpop-dev
Architecture: amd64 source
Version: 0.17.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description: 
 lalrpop - Convenient LR(1) parser generator
 librust-lalrpop-dev - Convenient LR(1) parser generator - Rust source code
Changes:
 rust-lalrpop (0.17.2-1) unstable; urgency=medium
 .
   * Package lalrpop 0.17.2 from crates.io using debcargo 2.4.0
Checksums-Sha256: 
 9656b35403d56df1b9e387f5307a7362dbacc2d1333c8501c93bbd2ac89cf13b 10433716 
lalrpop-dbgsym_0.17.2-1_amd64.deb
 b3d741c997465820942e3c68086a4a49394a2a1233d7b42366b904b2adb65e66 1123884 
lalrpop_0.17.2-1_amd64.deb
 182925c9f32df408c62d2f68b58c8100e0b4c71068f4c2694d63675fad3d6b87 182108 
librust-lalrpop-dev_0.17.2-1_amd64.deb
 d8979b54edac18c93800798d2c31340972f07f8d50b954098ceeca6fa4d1c551 9852 
rust-lalrpop_0.17.2-1_amd64.buildinfo
 75b5edfe9b541e0f0049d99189c3105ed43206a92f15e6dd6d43ed45e71491c0 2181 
rust-lalrpop_0.17.2-1.dsc
 64dc3698e75d452867d9bd86f4a723f452ce9d01fe1d55990b79f0c790aa67db 230071 
rust-lalrpop_0.17.2.orig.tar.gz
 ca607f1e5ea7be0424458c04df3ecf3c1f37ace86023dbc5b5703e6e73fe2a9b 2892 
rust-lalrpop_0.17.2-1.debian.tar.xz
Checksums-Sha1: 
 350b4bcc0440082853177b9e9fdb9545cc24c306 10433716 
lalrpop-dbgsym_0.17.2-1_amd64.deb
 c2bd16afc5ba748347a0ad2236145bad7aace6e4 1123884 lalrpop_0.17.2-1_amd64.deb
 0bcfcbe20887bf0b4d40e355d7656359a1d90a7c 182108 
librust-lalrpop-dev_0.17.2-1_amd64.deb
 0444a13846a422aa722f1c5557b22cd6299aa6a3 9852 
rust-lalrpop_0.17.2-1_amd64.buildinfo
 43168a25f161587d8951f63c2eef1b546d3eb832 2181 rust-lalrpop_0.17.2-1.dsc
 22532b40308e26a0cf1b0945bf7ea5e2f0b9b69b 230071 rust-lalrpop_0.17.2.orig.tar.gz
 92b27cdfe63b1cc1c337933e36df3a57376a26c1 2892 
rust-lalrpop_0.17.2-1.debian.tar.xz
Files: 
 773723cf84ae3816a81603cd39e89df6 10433716 debug optional 
lalrpop-dbgsym_0.17.2-1_amd64.deb
 b1d4221ff23e18ffa31a7be8c7ab8a68 1123884 rust optional 
lalrpop_0.17.2-1_amd64.deb
 4368f21587192a910f720d1984e5a1b2 182108 rust optional 
librust-lalrpop-dev_0.17.2-1_amd64.deb
 25934b8cbc8980b4312bb00df6973ffb 9852 rust optional 
rust-lalrpop_0.17.2-1_amd64.buildinfo
 4195c8fcc3da88614627c2273ea3e0f8 2181 rust optional rust-lalrpop_0.17.2-1.dsc
 8059e152264bb6acfc1edc7dbcdcd13d 230071 - - rust-lalrpop_0.17.2.orig.tar.gz
 5d165255afe251269e2fbbcebf260813 2892 - - rust-lalrpop_0.17.2-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXbB/SQAKCRB2GBllKa5f
+Gz2AQC0LcNwjfJmGAXw2O2XwCjK9On90Sj6PLkfvf/ecmzoSgD/VcZUNaF/n/zn
G2qQ4++2tB7+VvDo9f7RIQRtETAU4wQ=
=dz1l
-END PGP SIGNATURE-



Accepted enigmail 2:2.1.3+ds1-2 (source) into unstable

2019-11-07 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 07 Nov 2019 20:44:22 -0500
Source: enigmail
Architecture: source
Version: 2:2.1.3+ds1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Daniel Kahn Gillmor 
Closes: 944216
Changes:
 enigmail (2:2.1.3+ds1-2) unstable; urgency=medium
 .
   * Address autopkgtest failures (Closes: #944216)
Checksums-Sha1:
 b6f0bbc292027cd12a4c0f41bbc4ffcaa999c980 1552 enigmail_2.1.3+ds1-2.dsc
 4afd4a17e83cb3cde0f2553e5eead3671c1010b2 39440 
enigmail_2.1.3+ds1-2.debian.tar.xz
 a4dbb9f0020b2a6a16a564c240b231b1003cd4c2 6244 
enigmail_2.1.3+ds1-2_amd64.buildinfo
Checksums-Sha256:
 4d4ba073e81b047858d1f13c7398486feea043ea30f3b17f9a93616250934bb0 1552 
enigmail_2.1.3+ds1-2.dsc
 5b3483041d491f968d00dc4fdede5906282c4b1e757f0797ebd3ce4d405afb40 39440 
enigmail_2.1.3+ds1-2.debian.tar.xz
 6d4523b8a27cd36edb44ce85841988119a78069895a93d70a67fa5469ae9deb3 6244 
enigmail_2.1.3+ds1-2_amd64.buildinfo
Files:
 b0494bcc55ae632b4b5d1895169ab7bf 1552 mail optional enigmail_2.1.3+ds1-2.dsc
 2c274ddc047efb337420c026944bc6e5 39440 mail optional 
enigmail_2.1.3+ds1-2.debian.tar.xz
 4070d1047b60554b53d25bb9f1055f9f 6244 mail optional 
enigmail_2.1.3+ds1-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXcTIpwAKCRB2GBllKa5f
+FfWAQCJBZB0fk3YhNULaTvKaQiHK7pCRIDcMjBepM+WdAr+uwD/dPruMy709XTX
qE9wIVouQYSifDkDZYRBGS8R6ohjXAE=
=DKU8
-END PGP SIGNATURE-



Accepted enigmail 2:2.1.3+ds1-1 (source) into unstable

2019-11-05 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Nov 2019 23:33:42 -0500
Source: enigmail
Architecture: source
Version: 2:2.1.3+ds1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Daniel Kahn Gillmor 
Closes: 933832
Changes:
 enigmail (2:2.1.3+ds1-1) unstable; urgency=medium
 .
   * new upstream version (closes: #933832)
   * prepare to exclude more pieces of OpenPGP.js from upstream
   * upstream renamed the openpgp.worker javascript file
   * standards-version: bump to 4.4.1 (no changes needed)
   * drop mozilla-devscripts due to lack of install.rdf
   * strip out config.guess and config.sub when importing orig tarballs
   * refresh patches
   * strip even more OpenPGP.js when building
   * build in build-tb/ instead of build/
   * d/copyright: drop unnecessary stanzas
   * enigmail 2.1.3 needs thunderbird 68
   * d/run-tests: adapt to enigmail 2.1 test practices
   * use thunderbird --headless and rely on main.js to identify jsunit test
   * Avoid testing dependency on X11 for sqlite
   * ensure that we see some output when testing.
   * JSUnit is provided globally if jsunit 0.2.2 is installed
   * make unit test run without xvfb
   * always use system config.{guess,sub}
   * whittle down errors in the test suite
Checksums-Sha1:
 d98b65e958857ad1d24d1feed93ccc82a2cd73ca 1552 enigmail_2.1.3+ds1-1.dsc
 2c03dff2b4ffe72408ca190a6805d76cfed505d0 1381264 enigmail_2.1.3+ds1.orig.tar.xz
 7392e2f9dce9e27e1ac8e7edefdb3aea3dfadb34 38544 
enigmail_2.1.3+ds1-1.debian.tar.xz
 93c1326a1970cfb90881e4f26f71791758201caa 6244 
enigmail_2.1.3+ds1-1_amd64.buildinfo
Checksums-Sha256:
 649dfbdb279fe4419ca81fb3b396b7cf9c34ed137061a433a926271df38bd922 1552 
enigmail_2.1.3+ds1-1.dsc
 ee323e17f04f8d3a6ae7e00b79107e57d08f292a81bf4603e153b986f00415f1 1381264 
enigmail_2.1.3+ds1.orig.tar.xz
 4b53f97e8348454ecd1b9f5561a37ccdc1569c82598511bdaaf3e1cb8f37a79c 38544 
enigmail_2.1.3+ds1-1.debian.tar.xz
 0b0c69affa054edc0ef54cfa7941c705af921fbd5028dd581f0f4e99a8820385 6244 
enigmail_2.1.3+ds1-1_amd64.buildinfo
Files:
 36a7341c5f4ee398f3fcb12eda9aa79c 1552 mail optional enigmail_2.1.3+ds1-1.dsc
 e707422a8d81db09c268d3cefef8b7c3 1381264 mail optional 
enigmail_2.1.3+ds1.orig.tar.xz
 304cde53c696d6796f4bd061a31aa394 38544 mail optional 
enigmail_2.1.3+ds1-1.debian.tar.xz
 ab817e31523136e7f4bd11be1b17347e 6244 mail optional 
enigmail_2.1.3+ds1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXcJOnQAKCRB2GBllKa5f
+L1ZAP990yCSK3eEXASvb/QN7hmGgSfToDhOh0iv/HSdDtN53gEA9LLC48kneZYV
1c77AvERDZf+riVaLlGN8HxFFkQbZwc=
=2ZO5
-END PGP SIGNATURE-



Accepted jsunit 0.2.2-2 (source) into unstable

2019-11-05 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 05 Nov 2019 09:36:54 -0500
Source: jsunit
Architecture: source
Version: 0.2.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 jsunit (0.2.2-2) unstable; urgency=medium
 .
   * standards-version: bump to 4.4.1 (no changes needed)
   * Release to unstable
Checksums-Sha1:
 179e13c4a3e97588dd812e0444d9b7c389722bde 1382 jsunit_0.2.2-2.dsc
 8f0d37860dd133bf6869444a4493420fa758dd86 7660 jsunit_0.2.2-2.debian.tar.xz
 83f64a5354547714460f182303fb361203a46510 5752 jsunit_0.2.2-2_amd64.buildinfo
Checksums-Sha256:
 c4ef019e14d02a53da3dc1fcb8fa9e82234c40fb4252e8c8e21bd9cb9e5c692e 1382 
jsunit_0.2.2-2.dsc
 79ae107502456310d1298fa17d14634b502ae0ac4e8e06ed3675ef3b94a64b86 7660 
jsunit_0.2.2-2.debian.tar.xz
 8224cc8e24a958280f6843122491a79bb95cc8cba1d35caf8f2a68aae431f820 5752 
jsunit_0.2.2-2_amd64.buildinfo
Files:
 73849e9fac8409caf8d76abd0d6ceb43 1382 libdevel optional jsunit_0.2.2-2.dsc
 dc3897da514871b7e7e5ba68826af6fc 7660 libdevel optional 
jsunit_0.2.2-2.debian.tar.xz
 7a9baa5be1b0d110ad301b23e4e8d510 5752 libdevel optional 
jsunit_0.2.2-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXcGJkgAKCRB2GBllKa5f
+Nz1AQCAhdZTDlyOZxRhVN2nfS9aNsCkfKmG+z4DMb8pOZzOwgD/YzNpDHvO6ZL1
Ko8PLR/8FEmBrWf2N4/Pl7zx3Ko4DQY=
=/78X
-END PGP SIGNATURE-



Accepted python-expiringdict 1.1.4-1 (source) into unstable

2019-10-28 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 28 Oct 2019 23:49:01 -0400
Source: python-expiringdict
Architecture: source
Version: 1.1.4-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 python-expiringdict (1.1.4-1) unstable; urgency=medium
 .
   * new upstream release
   * Rules-Requires-Root: no and d/copyright cleanup
   * d/gbp.conf: note DEP-14 and avoid unsightly setuptools artifact changes
   * drop unnecessary patches
Checksums-Sha1:
 b54be41e39507233cf3b5c27abbf16f96b096f3b 1437 python-expiringdict_1.1.4-1.dsc
 745f0f919b020ca77689945668ab15369079a396 6900 
python-expiringdict_1.1.4.orig.tar.gz
 7121e064ef8f27b9cc8b9237632d04943169068f 2048 
python-expiringdict_1.1.4-1.debian.tar.xz
 301e618b14dcf7b7036a10a4c7de4ce1614ac507 6342 
python-expiringdict_1.1.4-1_amd64.buildinfo
Checksums-Sha256:
 5aeaf5d80d3b60b622634f2269821a6c1d743af2e54a4b5064b79ea9f2a065e7 1437 
python-expiringdict_1.1.4-1.dsc
 9275c3f3aa6cabe394355b6454100eb1cdfe395c6b592c26603a2a0f9e3a0587 6900 
python-expiringdict_1.1.4.orig.tar.gz
 25dc3aa60ad3e372b9a1291e688e508d480b4fc6dc109fbf23762b8340f55af9 2048 
python-expiringdict_1.1.4-1.debian.tar.xz
 9bf859d0764884d33b37d1608f7bbd6482165fa4cb565364e2d3e99a17f7f31d 6342 
python-expiringdict_1.1.4-1_amd64.buildinfo
Files:
 696b3e1831fbb8a80cbb685c9b06be93 1437 python optional 
python-expiringdict_1.1.4-1.dsc
 2dacf06b2f48f99e7f6a5d7449eaa8d2 6900 python optional 
python-expiringdict_1.1.4.orig.tar.gz
 90685d67bf5e398812cfdc36e76678d3 2048 python optional 
python-expiringdict_1.1.4-1.debian.tar.xz
 bbb85a5fab440fa1607928ed4744a178 6342 python optional 
python-expiringdict_1.1.4-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXbe3bwAKCRB2GBllKa5f
+HvDAP9huXbrk9cgAmbClAIMAYLFSCuKsXVhpJ1MSaldFCxDTgD7B+84q9Iqvidl
spGO8IOlItFnHgbiq7PU5ABsM6xRjg0=
=Xg3w
-END PGP SIGNATURE-



Bug#943742: ITP: python-sop -- Framework for implementing the Stateless OpenPGP CLI in Python

2019-10-28 Thread Daniel Kahn Gillmor
Package: wnpp
Severity: wishlist
Owner: Daniel Kahn Gillmor 

* Package name: python-sop
  Version : 0.1.1
  Upstream Author : Daniel Kahn Gillmor 
* URL : https://gitlab.com/dkg/python-sop
* License : MIT
  Programming Lang: Python
  Description : Framework for implementing the Stateless OpenPGP CLI in 
Python

The Stateless OpenPGP Command-Line Interface (or `sop`) is a
specification that encourages OpenPGP implementators to provide a
common, relatively simple command-line API for purposes of object
security.

This Python module helps implementers build such a CLI from any
implementation accessible to the Python interpreter.

It does *not* provide such an implementation itself -- this is just
the scaffolding for the command line, which should make it relatively
easy to supply a handful of Python functions as methods to a class.

-

This is a useful component in building out a `sop` implementation.  I
am hoping to convince the upstream maintainer of PGPy to build one,
and to convince the GnuPG team to maintain one as part of GPGME.
Having this framework available should make it easier to get wider
adoption.



Accepted ruby-kramdown-rfc2629 1.2.12-0.1 (source) into unstable

2019-10-27 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 20 Oct 2019 14:11:16 -0400
Source: ruby-kramdown-rfc2629
Architecture: source
Version: 1.2.12-0.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Daniel Kahn Gillmor 
Closes: 942581
Changes:
 ruby-kramdown-rfc2629 (1.2.12-0.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
 .
   [ Utkarsh Gupta ]
   * Add salsa-ci.yml
 .
   [ Daniel Kahn Gillmor ]
   * New upstream release (Closes: #942581)
   * Use secure copyright file specification URI.
   * Use secure URI in Homepage field.
   * Bump debhelper from old 11 to 12.
   * Set upstream metadata fields: Repository.
   * refresh patches
   * Rules-Requires-Root: no
Checksums-Sha1:
 1c2e30955d8450ade36ec27d5c1749c0bfeb364d 1569 
ruby-kramdown-rfc2629_1.2.12-0.1.dsc
 2e7bbcc9e680c9c737d05dca0ee81f8bcdc26334 26819 
ruby-kramdown-rfc2629_1.2.12.orig.tar.gz
 48322b1b34229cb94976c1344402e47e9ee1dc8a 4620 
ruby-kramdown-rfc2629_1.2.12-0.1.debian.tar.xz
 febab831fb0acff0a8deb8da9e09eca9aa978731 14731 
ruby-kramdown-rfc2629_1.2.12-0.1_amd64.buildinfo
Checksums-Sha256:
 932615248e2ac3706c954ec4c9b4c226f0154cab4ca862996087838a237c942c 1569 
ruby-kramdown-rfc2629_1.2.12-0.1.dsc
 87473228366645f90603abae4a53c724227ab4f3bf963d2acdc0752cd5ca18f7 26819 
ruby-kramdown-rfc2629_1.2.12.orig.tar.gz
 81c939bb155199e5d6984236723fc7ba4f061a26fca4ec2bdba5e022d1a285cd 4620 
ruby-kramdown-rfc2629_1.2.12-0.1.debian.tar.xz
 872c7694834ccc24051e140b0fdbd6f8901487005ce5289934d8ed93e9cff63f 14731 
ruby-kramdown-rfc2629_1.2.12-0.1_amd64.buildinfo
Files:
 55512e6798d693132f58a086003b18c0 1569 ruby optional 
ruby-kramdown-rfc2629_1.2.12-0.1.dsc
 318a76c1bb7c342190eac1271819784d 26819 ruby optional 
ruby-kramdown-rfc2629_1.2.12.orig.tar.gz
 50d57790ebf4d125952fff82b67401be 4620 ruby optional 
ruby-kramdown-rfc2629_1.2.12-0.1.debian.tar.xz
 017b7375c6bebfc1a90c5ae12a74fc00 14731 ruby optional 
ruby-kramdown-rfc2629_1.2.12-0.1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXaykFQAKCRB2GBllKa5f
+P6BAQDAB/VFS91JmVQ1OK5yRsVG4Hn7ionBjUHW9tsg8sYCgwD+LW/5EmMadg9o
INaaazXbNkVhZ1htsWoQXvW+b3oM4Qg=
=f3TL
-END PGP SIGNATURE-



Accepted python-pgpy 0.5.2-2 (source) into unstable

2019-10-25 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 25 Oct 2019 14:24:38 -0400
Source: python-pgpy
Architecture: source
Version: 0.5.2-2
Distribution: unstable
Urgency: medium
Maintainer: Michael Greene 
Changed-By: Daniel Kahn Gillmor 
Changes:
 python-pgpy (0.5.2-2) unstable; urgency=medium
 .
   * import minor bugfixes reported upstream
   * Update standards version to 4.4.1, no changes needed.
   * Set upstream metadata fields: Repository.
   * Rules-Requires-Root: no
Checksums-Sha1:
 9e23617a0f2bde09ff3f063360efe4fcd0fb29fd 1832 python-pgpy_0.5.2-2.dsc
 965ed5ef86b66506f510e7c7cfe5a9fb39be 10704 
python-pgpy_0.5.2-2.debian.tar.xz
 08440fb14d1c27e033168930399bb13793d770f5 14492 
python-pgpy_0.5.2-2_amd64.buildinfo
Checksums-Sha256:
 d077028f4d00c9d034882e39fd577ab826441e1e52aab7aab226598bdd3a38c0 1832 
python-pgpy_0.5.2-2.dsc
 6f7692b3699932292abc1fd07081c0fd003e2111ad07215a9786c5f91dabe65f 10704 
python-pgpy_0.5.2-2.debian.tar.xz
 63ca8113752127f019c9814f37a97435fe06b7924479e035d02639d3989aba6b 14492 
python-pgpy_0.5.2-2_amd64.buildinfo
Files:
 a94735c337831a5fc34718b4eed67407 1832 python optional python-pgpy_0.5.2-2.dsc
 a959729e235160988697be641b5030ba 10704 python optional 
python-pgpy_0.5.2-2.debian.tar.xz
 89d754528f3bb8d3f430d89aa0dda9b3 14492 python optional 
python-pgpy_0.5.2-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXbNIUwAKCRB2GBllKa5f
+AxNAQC4s4Es6oy4clmceqId7xWl1zTpvPkeIQfto65uhG7ufAD9EP6gFsIxowa1
GstAzesmHumKcG7GVTvQsRDShNLN7AI=
=W52E
-END PGP SIGNATURE-



Accepted rust-memsec 0.5.6-2 (source) into unstable

2019-10-23 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Oct 2019 18:48:36 -0400
Source: rust-memsec
Architecture: source
Version: 0.5.6-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-memsec (0.5.6-2) unstable; urgency=medium
 .
   * source-only release, no changes
Checksums-Sha1:
 8178c167d62b8be2c99aa61f435fb9673821d3ae 2251 rust-memsec_0.5.6-2.dsc
 4a1275c4e83cf01187b097a33ce4461d8f59b150 2988 rust-memsec_0.5.6-2.debian.tar.xz
 c6bc4c00bcad3e63af20ef1e97b645c21ca00922 7156 
rust-memsec_0.5.6-2_source.buildinfo
Checksums-Sha256:
 0e166cd03a3f313b1c96c1931512a3c7735984268f2467639bc75c814570d26f 2251 
rust-memsec_0.5.6-2.dsc
 449450008e5a3451a313376ab641c85d00deb858a219bb013037684dc2f94bd2 2988 
rust-memsec_0.5.6-2.debian.tar.xz
 16c2219842197cfc1399762349dac2eef177ff2610a69db47095a22621ecd3cc 7156 
rust-memsec_0.5.6-2_source.buildinfo
Files:
 a777e3c70ef1c64d5a25ef0b2f894a2f 2251 rust optional rust-memsec_0.5.6-2.dsc
 71de20b129f209ff1801b524485b4502 2988 rust optional 
rust-memsec_0.5.6-2.debian.tar.xz
 36f41607d9c85d2f2467dcdfe7536293 7156 rust optional 
rust-memsec_0.5.6-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXbDY2AAKCRB2GBllKa5f
+M2AAQCwWM5u7I4mXerkT+evHrLmy658prUCBYh++ulHp14EPgD+Mdfi4+f5Q7rW
SSzna2Fv8oHH8gQPoUupASJoXRH2EgE=
=v4F4
-END PGP SIGNATURE-



Accepted rust-bindgen 0.51.1-2 (source) into unstable

2019-10-23 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Oct 2019 15:52:09 -0400
Source: rust-bindgen
Architecture: source
Version: 0.51.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-bindgen (0.51.1-2) unstable; urgency=medium
 .
   * source-only release, no changes
Checksums-Sha1:
 6a0c120f8c34dfdeb1c3375b96b19f247d74249c 2781 rust-bindgen_0.51.1-2.dsc
 b09b57c13cfff0189161cc92507b0ead825b7e61 3736 
rust-bindgen_0.51.1-2.debian.tar.xz
 4f0eaa2f32781705b335dff446ee17917f94accd 8178 
rust-bindgen_0.51.1-2_source.buildinfo
Checksums-Sha256:
 697cec8ccf4856c15607e715509343b5378ba5e41cce4b390c891a7de8d83098 2781 
rust-bindgen_0.51.1-2.dsc
 3fa0ffbe29bf46b447ebb6238ef285ee5b96aa35a77ba433aa5cc1b50a63894a 3736 
rust-bindgen_0.51.1-2.debian.tar.xz
 9575f215f4da3a00ce6808e09670731ea9c6e26430e45e69cf32f29e4cc2d4c9 8178 
rust-bindgen_0.51.1-2_source.buildinfo
Files:
 b40e497704c3ff4abaf62c317f37cad9 2781 rust optional rust-bindgen_0.51.1-2.dsc
 0cc10d17fa73adc20532d37e0b0f0e6f 3736 rust optional 
rust-bindgen_0.51.1-2.debian.tar.xz
 46c6976ed6e40ff323949c9890cba341 8178 rust optional 
rust-bindgen_0.51.1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXbCvbAAKCRB2GBllKa5f
+PpvAP46GdHW5v3K9DRIraPMBcbLJp0wP4ULFbjWioxK0NhdFwEAoX3GaqFb6mxV
TlP9E7fdle4S74N1lfTnUEUAGEeqPQw=
=xw2I
-END PGP SIGNATURE-



Accepted rust-nettle-sys 2.0.4-1 (source) into unstable

2019-10-23 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 23 Oct 2019 14:12:45 -0400
Source: rust-nettle-sys
Architecture: source
Version: 2.0.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-nettle-sys (2.0.4-1) unstable; urgency=medium
 .
   * Package nettle-sys 2.0.4 from crates.io using debcargo 2.4.0
Checksums-Sha1:
 c810bfbb2aeac9dda68587ad3d3f683f46ff6898 1696 rust-nettle-sys_2.0.4-1.dsc
 57095cbbb21fc601822b74c6bab57cc680c490d8 24226 
rust-nettle-sys_2.0.4.orig.tar.gz
 31cab1a4a75dae3d2a52cbc21c14ba56b6fc202b 2440 
rust-nettle-sys_2.0.4-1.debian.tar.xz
 3bf66248f57fa58cb9bc27c010195e8224886bf0 8211 
rust-nettle-sys_2.0.4-1_source.buildinfo
Checksums-Sha256:
 6b3ca77fad3f6e50f0ff2d4eede84212acfff9704718b01859a60de398a74b6e 1696 
rust-nettle-sys_2.0.4-1.dsc
 b8629333ff5f3b74d251dae253e383cda9242410fac4244a4fe855469be101fb 24226 
rust-nettle-sys_2.0.4.orig.tar.gz
 6672549279995dd8edca1b24b3bdf9ec33769d92a23b13ce400843542c8fbf50 2440 
rust-nettle-sys_2.0.4-1.debian.tar.xz
 5a96b61c562f0b70976e5eff56cb36b225a94d9741e6b3aae96c91fbf7165598 8211 
rust-nettle-sys_2.0.4-1_source.buildinfo
Files:
 4ddac26f9ff7355272dbd5bbc14414e8 1696 rust optional rust-nettle-sys_2.0.4-1.dsc
 1707c33c76e35521144737ba4e7c7a91 24226 rust optional 
rust-nettle-sys_2.0.4.orig.tar.gz
 ff585e68aa7a9d8f5875be8b0939e151 2440 rust optional 
rust-nettle-sys_2.0.4-1.debian.tar.xz
 21dc188ce3770f0b066d84e154819f95 8211 rust optional 
rust-nettle-sys_2.0.4-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYIAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXbCYIAAKCRB2GBllKa5f
+GMTAQC0Q62ZU2rHL+CHOhsrOZbh5IMs3rjzDfpRszeOo8fzDgD9GCDQDe/HkRBU
4djoDBhXM9iBDS+RFlMHfMTo1nMKwgc=
=259/
-END PGP SIGNATURE-



Accepted rust-bindgen 0.51.1-1 (amd64 source) into unstable, unstable

2019-10-23 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 22 Oct 2019 07:57:55 EDT
Source: rust-bindgen
Binary: bindgen bindgen-dbgsym librust-bindgen+clap-dev 
librust-bindgen+default-dev librust-bindgen+env-logger-dev 
librust-bindgen+log-dev librust-bindgen+logging-dev librust-bindgen+which-dev 
librust-bindgen-dev
Architecture: amd64 source
Version: 0.51.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description: 
 bindgen - Automatically generates Rust FFI bindings to C and C++ libraries
 librust-bindgen+clap-dev - Automatically generates Rust FFI bindings to C and 
C++ libraries
 librust-bindgen+default-dev - Automatically generates Rust FFI bindings to C 
and C++ libraries
 librust-bindgen+env-logger-dev - Automatically generates Rust FFI bindings to 
C and C++ libraries
 librust-bindgen+log-dev - Automatically generates Rust FFI bindings to C and 
C++ libraries
 librust-bindgen+logging-dev - Automatically generates Rust FFI bindings to C 
and C++ libraries
 librust-bindgen+which-dev - Automatically generates Rust FFI bindings to C and 
C++ libraries
 librust-bindgen-dev - Automatically generates Rust FFI bindings to C and C++ 
libraries
Changes:
 rust-bindgen (0.51.1-1) unstable; urgency=medium
 .
   * Package bindgen 0.51.1 from crates.io using debcargo 2.4.0
Checksums-Sha256: 
 55c4bada761603a812a0f23d098f93e1fc20945a5f416a9a429b00ca2bc7be27 10384928 
bindgen-dbgsym_0.51.1-1_amd64.deb
 e4bbdda87ad5e970172aa1642656998ce45d037c9fe9708a52f44fc480b4f443 1027608 
bindgen_0.51.1-1_amd64.deb
 dd86bbda956ad25016df6a88069f52b871482fc6a94000a31c1c05fcaeba5c15 1072 
librust-bindgen+clap-dev_0.51.1-1_amd64.deb
 c7951533ba10131489da35521f191c8029963cd123c7ab63990c6f76d99b47b8 1096 
librust-bindgen+default-dev_0.51.1-1_amd64.deb
 402fcbfa7b276a91e2cc2fef882fb377a5bd24509fdc50064081e62de31d4052 1092 
librust-bindgen+env-logger-dev_0.51.1-1_amd64.deb
 d4f768f852856906aa4a604e74e7fdf34de6d7517edbee505296e93943a8c14c 1068 
librust-bindgen+log-dev_0.51.1-1_amd64.deb
 cacd4d4d852a695690b7b8ce5adfddbe0266708a69d972dd8a8938389a16387c 1092 
librust-bindgen+logging-dev_0.51.1-1_amd64.deb
 e52b8fd841b7b5e6883b4edb5eb694ed5a406dd589b14e2e306116daaf1fc394 1124 
librust-bindgen+which-dev_0.51.1-1_amd64.deb
 cc79d0eb9eeaf89326315ccf6c3e62362ce51fca4eec52f6cd19493c7f2ed1ef 146864 
librust-bindgen-dev_0.51.1-1_amd64.deb
 c26c903441b3867b4b4a2019170edfb8bbb9ce3df6e03f0c1e187b3898f56185 10647 
rust-bindgen_0.51.1-1_amd64.buildinfo
 98e33a53bf6a85923f521427c02bf181a0ae916939c89e071b8682e6dcfcceea 2781 
rust-bindgen_0.51.1-1.dsc
 ebd71393f1ec0509b553aa012b9b58e81dadbdff7130bd3b8cba576e69b32f75 185858 
rust-bindgen_0.51.1.orig.tar.gz
 b68e5772df5b523034682ad1f8bf3033d2dea00b9e18bb9f51bf74e5f276a5bf 3704 
rust-bindgen_0.51.1-1.debian.tar.xz
Checksums-Sha1: 
 2acb1f6596fd1782407cd801c1ec40e605c99f9a 10384928 
bindgen-dbgsym_0.51.1-1_amd64.deb
 69b10c04ba2830ac0fb4455ea6caeacbd7fc446d 1027608 bindgen_0.51.1-1_amd64.deb
 6437706ec0588e7e32c19a0b86576d7ac6183bcb 1072 
librust-bindgen+clap-dev_0.51.1-1_amd64.deb
 85bbf288a62ba4734d35295b21cff2ecded1ae14 1096 
librust-bindgen+default-dev_0.51.1-1_amd64.deb
 45031d1f7240f1dcaba2a1bd6b987aac6bb7c399 1092 
librust-bindgen+env-logger-dev_0.51.1-1_amd64.deb
 be391ae92e564aa8cef875f338fad5832bfa7ec6 1068 
librust-bindgen+log-dev_0.51.1-1_amd64.deb
 e189027fd117f208750da8a9f91e53ce1ea32bd5 1092 
librust-bindgen+logging-dev_0.51.1-1_amd64.deb
 7201c0401fd05f134a00a32e344473a7b3f822da 1124 
librust-bindgen+which-dev_0.51.1-1_amd64.deb
 3022fd69fa137b7a5986bf533f6520a4e48fe034 146864 
librust-bindgen-dev_0.51.1-1_amd64.deb
 e491e01cd8da1fb33892546aec2183567cda0429 10647 
rust-bindgen_0.51.1-1_amd64.buildinfo
 d644942aad96a10ec2806b3382336f776c91f207 2781 rust-bindgen_0.51.1-1.dsc
 4ca2e25be611297a74e1c16e2c96ac1c30e6af96 185858 rust-bindgen_0.51.1.orig.tar.gz
 2afb6aa473d36367e99bb9f0116da54a53862be2 3704 
rust-bindgen_0.51.1-1.debian.tar.xz
Files: 
 98ef271d4b814cf700c44d089d8cab99 10384928 debug optional 
bindgen-dbgsym_0.51.1-1_amd64.deb
 86cc4f91026a9571fbde7b0476dcbd7e 1027608 rust optional 
bindgen_0.51.1-1_amd64.deb
 9aa62477158a47d553cfd9cc494abb40 1072 rust optional 
librust-bindgen+clap-dev_0.51.1-1_amd64.deb
 312e5b0b322a55c43d604e0f4b9f7efe 1096 rust optional 
librust-bindgen+default-dev_0.51.1-1_amd64.deb
 7e612d2b9a03475ad1a39b591a874ed7 1092 rust optional 
librust-bindgen+env-logger-dev_0.51.1-1_amd64.deb
 b1161ca79d35c43339b7eda6b919fb76 1068 rust optional 
librust-bindgen+log-dev_0.51.1-1_amd64.deb
 8302a4db48d74fcd500d926944967ae1 1092 rust optional 
librust-bindgen+logging-dev_0.51.1-1_amd64.deb
 b586b7ab0a7a13f3f4e52cd859bb629e 1124 rust optional 
librust-bindgen+which-dev_0.51.1-1_amd64.deb
 c9bd4f80f0975510b058c57935d80870 146864 rust optional 
librust-bindgen-dev_0.51.1-1_amd64.deb
 9cfc27388ef83058202e735c38217f57 10647 rust optional 
rust-bindgen_0.51.1-1_amd64.buildinfo

Accepted rust-memsec 0.5.6-1 (amd64 source) into unstable, unstable

2019-10-16 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 23 Sep 2019 23:36:24 EDT
Source: rust-memsec
Binary: librust-memsec+alloc-dev librust-memsec+default-dev 
librust-memsec+getrandom-dev librust-memsec+libc-dev 
librust-memsec+mach-o-sys-dev librust-memsec+use-os-dev 
librust-memsec+winapi-dev librust-memsec-dev
Architecture: amd64 source
Version: 0.5.6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description: 
 librust-memsec+alloc-dev - Rust implementation `libsodium/utils` - feature 
"alloc"
 librust-memsec+default-dev - Rust implementation `libsodium/utils` - feature 
"default"
 librust-memsec+getrandom-dev - Rust implementation `libsodium/utils` - feature 
"getrandom"
 librust-memsec+libc-dev - Rust implementation `libsodium/utils` - feature 
"libc"
 librust-memsec+mach-o-sys-dev - Rust implementation `libsodium/utils` - 
feature "mach_o_sys"
 librust-memsec+use-os-dev - Rust implementation `libsodium/utils` - feature 
"use_os"
 librust-memsec+winapi-dev - Rust implementation `libsodium/utils` - feature 
"winapi"
 librust-memsec-dev - Rust implementation `libsodium/utils` - Rust source code
Changes:
 rust-memsec (0.5.6-1) unstable; urgency=medium
 .
   * Team upload.
   * Package memsec 0.5.6 from crates.io using debcargo 2.4.0
Checksums-Sha256: 
 42abc4d252bf646293807fe5976ef081e822cfb5d4757e6ededd54b187c2e1ce 1036 
librust-memsec+alloc-dev_0.5.6-1_amd64.deb
 e3b38f44c615291b2ca981763cfdaaf7a7938b11c516afa5b4d2dec8812e04c0 1024 
librust-memsec+default-dev_0.5.6-1_amd64.deb
 3432f881f2a8afd8ad33c89067d85a79e279673a284794ce6da0a74e5d0add78 1032 
librust-memsec+getrandom-dev_0.5.6-1_amd64.deb
 e05debc24249e75a1d94dd714ddd6004e544fac3f4251ab84074f80119d60135 1024 
librust-memsec+libc-dev_0.5.6-1_amd64.deb
 7c7ba2738872e77cfd7c708d8d4382f3c0e671458a79467b9db2d9b59e0dae40 1044 
librust-memsec+mach-o-sys-dev_0.5.6-1_amd64.deb
 c6904e0d1ebc745874030a1ff33cf4bee9f2de3bddd37b22e2c4cf832f45ac21 1068 
librust-memsec+use-os-dev_0.5.6-1_amd64.deb
 cef417561c71146be3c889dd2524a80c9fde1d23f09cf24dcaced6ae94184ce7 1044 
librust-memsec+winapi-dev_0.5.6-1_amd64.deb
 f40370304ec32c7ebae019b662cae5dc118330f79b5088fb9e9d4c4f9e69dcee 7500 
librust-memsec-dev_0.5.6-1_amd64.deb
 4a7707a447b36789d354589311ddf784e41f7596155d9b07a1e787ed6b9f2a79 8588 
rust-memsec_0.5.6-1_amd64.buildinfo
 99a44a2d1cb7f9db165d18484d60b689d449c7c04c1820594b8743401be79966 2286 
rust-memsec_0.5.6-1.dsc
 eb533fe65772974839709b9bcbbc3cd435691605c9cdb1b8c1d7ca7bfefb17bc 5905 
rust-memsec_0.5.6.orig.tar.gz
 2e7efaea3f2dd59a51e57c049d18e0c32c3105fa0335ca36f0ec04213867334b 2684 
rust-memsec_0.5.6-1.debian.tar.xz
Checksums-Sha1: 
 59e0a7700a3b3197ea5a5d652df79e9fc4620b3d 1036 
librust-memsec+alloc-dev_0.5.6-1_amd64.deb
 4aaa55cc6ef301080d8e5c310ed490d049b5828e 1024 
librust-memsec+default-dev_0.5.6-1_amd64.deb
 5f5b836507a06a33414f460a8b03431520040b11 1032 
librust-memsec+getrandom-dev_0.5.6-1_amd64.deb
 82f941e854792eb9846444301a23f58e15c34e9b 1024 
librust-memsec+libc-dev_0.5.6-1_amd64.deb
 f4bc289e8c2ed57f3cd8e914cdb7e003a95be1fd 1044 
librust-memsec+mach-o-sys-dev_0.5.6-1_amd64.deb
 a620deff928946d512266ec6e8232e77684dc265 1068 
librust-memsec+use-os-dev_0.5.6-1_amd64.deb
 415cb8c08bb0aa3a4fc6a9c10944dcdc60739218 1044 
librust-memsec+winapi-dev_0.5.6-1_amd64.deb
 b35a5e982d166dc9415fc78859ab53da6d03ebad 7500 
librust-memsec-dev_0.5.6-1_amd64.deb
 e2344f82840826cbe0dce2c37d6cb42601ec8898 8588 
rust-memsec_0.5.6-1_amd64.buildinfo
 eb96441999e0cfe3ee393d4009ac88f542976130 2286 rust-memsec_0.5.6-1.dsc
 12e583bef0549de4e22205768f3480dc731b6e52 5905 rust-memsec_0.5.6.orig.tar.gz
 f4b8f21573d63f7e7b25d870075b4f8d28e3c217 2684 rust-memsec_0.5.6-1.debian.tar.xz
Files: 
 dec96f692cc2482089b30c83c67361c6 1036 rust optional 
librust-memsec+alloc-dev_0.5.6-1_amd64.deb
 fa69359f627a09a194c27a3b738bbaa1 1024 rust optional 
librust-memsec+default-dev_0.5.6-1_amd64.deb
 70d97f48c88060708243c22998c4e441 1032 rust optional 
librust-memsec+getrandom-dev_0.5.6-1_amd64.deb
 413dd743670e3eb2e3c97962ec908efb 1024 rust optional 
librust-memsec+libc-dev_0.5.6-1_amd64.deb
 b6463f20093ab48d26b9a3700be0c4e1 1044 rust optional 
librust-memsec+mach-o-sys-dev_0.5.6-1_amd64.deb
 299492317aac778212a1c0da914e2449 1068 rust optional 
librust-memsec+use-os-dev_0.5.6-1_amd64.deb
 261e229acd6bee516ec7681d241be0b4 1044 rust optional 
librust-memsec+winapi-dev_0.5.6-1_amd64.deb
 cfe4e7f14276b0c55b18ce0e8abb1ec0 7500 rust optional 
librust-memsec-dev_0.5.6-1_amd64.deb
 d66f7436565128a17cce620480b15b06 8588 rust optional 
rust-memsec_0.5.6-1_amd64.buildinfo
 a5c951c8a41b6195ee2b577331f4810b 2286 rust optional rust-memsec_0.5.6-1.dsc
 4548af86a86250f058564d8e9357ac45 5905 - - rust-memsec_0.5.6.orig.tar.gz
 3f8bb5f0d9be4f2d264dcf3faeb2e469 2684 - - rust-memsec_0.5.6-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkio

Accepted wireguard 0.0.20191012-1 (source) into unstable

2019-10-15 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 15 Oct 2019 17:41:38 +0200
Source: wireguard
Architecture: source
Version: 0.0.20191012-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (0.0.20191012-1) unstable; urgency=medium
 .
   * new upstream release
   * d/clean: clean up generated assembler
   * more notes about autopkgtest
   * standards-version: bump to 4.4.1 (no changes needed)
Checksums-Sha1:
 c7c1d44ca831246ecb8855c9ec4e2eba8620eb5f 1513 wireguard_0.0.20191012-1.dsc
 73c6f4308653805e0b2a7edaa5d9f3af34411317 331176 
wireguard_0.0.20191012.orig.tar.xz
 681aa44dfaa581b027c1c6ad1b68fc67793f 25268 
wireguard_0.0.20191012-1.debian.tar.xz
 1497aba6382542dc581bc1ac85a1b267fea2adc8 7448 
wireguard_0.0.20191012-1_amd64.buildinfo
Checksums-Sha256:
 08e521e972128ab01b327215853aad65425c12b75b630df9dd6c784bbbca69ec 1513 
wireguard_0.0.20191012-1.dsc
 f98968ec83b334ffa8eddf401f896c2ab49da1d4b6bc1c02e2219fe589e271d1 331176 
wireguard_0.0.20191012.orig.tar.xz
 31870b62bf9d04212c17cb83c1bd068c2796350a04e635fd273fba6cf3e74857 25268 
wireguard_0.0.20191012-1.debian.tar.xz
 29fe4107bd78519dc52cecf6d04244df1bb88e2eb1adfa89fc2783b47f835051 7448 
wireguard_0.0.20191012-1_amd64.buildinfo
Files:
 9abfa9e58c1c56538b38c7dad4d22043 1513 net optional wireguard_0.0.20191012-1.dsc
 b6316792324437dc9cc6092d2f6f43a7 331176 net optional 
wireguard_0.0.20191012.orig.tar.xz
 df9a76671ff7053b8c5267d915528633 25268 net optional 
wireguard_0.0.20191012-1.debian.tar.xz
 5157892a26a7678b08e3a62a1ad8485e 7448 net optional 
wireguard_0.0.20191012-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXaXu/AAKCRB2GBllKa5f
+IwKAP9OTN6mAx0ELYgwFDPl9hXYBX3dsGRBajAAiOtxtucSVQD8CxrXzqHQsP8G
iuQSOI500hRSzTxrJu2lg1valeGoSgk=
=LtpY
-END PGP SIGNATURE-



Accepted rust-clang-sys 0.28.1-1 (amd64 source) into unstable, unstable

2019-10-12 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 27 Sep 2019 20:57:01 EDT
Source: rust-clang-sys
Binary: librust-clang-sys+clang-3-7-dev librust-clang-sys+clang-3-8-dev 
librust-clang-sys+clang-3-9-dev librust-clang-sys+clang-4-0-dev 
librust-clang-sys+clang-5-0-dev librust-clang-sys+clang-6-0-dev 
librust-clang-sys+clang-7-0-dev librust-clang-sys+clang-8-0-dev 
librust-clang-sys+libloading-dev librust-clang-sys-dev
Architecture: amd64 source
Version: 0.28.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description: 
 librust-clang-sys+clang-3-7-dev - Rust bindings for libclang - feature 
"clang_3_7"
 librust-clang-sys+clang-3-8-dev - Rust bindings for libclang - feature 
"clang_3_8"
 librust-clang-sys+clang-3-9-dev - Rust bindings for libclang - feature 
"clang_3_9"
 librust-clang-sys+clang-4-0-dev - Rust bindings for libclang - feature 
"clang_4_0"
 librust-clang-sys+clang-5-0-dev - Rust bindings for libclang - feature 
"clang_5_0"
 librust-clang-sys+clang-6-0-dev - Rust bindings for libclang - feature 
"clang_6_0"
 librust-clang-sys+clang-7-0-dev - Rust bindings for libclang - feature 
"clang_7_0"
 librust-clang-sys+clang-8-0-dev - Rust bindings for libclang - feature 
"clang_8_0"
 librust-clang-sys+libloading-dev - Rust bindings for libclang - feature 
"libloading" and 1 more
 librust-clang-sys-dev - Rust bindings for libclang - Rust source code
Changes:
 rust-clang-sys (0.28.1-1) unstable; urgency=medium
 .
   * Team upload.
   * Package clang-sys 0.28.1 from crates.io using debcargo 2.4.0
 .
   [ kpcyrd ]
   * Package clang-sys 0.28.0 from crates.io using debcargo 2.2.10
Checksums-Sha256: 
 45b4b79d3e7f972798df89c92406aa7f8cfeec1aa47ae4bd09cc57c4a4d9df94 1028 
librust-clang-sys+clang-3-7-dev_0.28.1-1_amd64.deb
 5b61ead90aa0d1a25cc4a417394b2ed21e6f642482b65d56a98e0d59da9e2b1e 1028 
librust-clang-sys+clang-3-8-dev_0.28.1-1_amd64.deb
 ad1a94a61ff339e86bd160446afc54561171ad0136ef51fb0f4060f918e6f057 1032 
librust-clang-sys+clang-3-9-dev_0.28.1-1_amd64.deb
 740f7e48fe4c8de34422c2f145226d57cef10389c45380cb4d8a90135967efab 1036 
librust-clang-sys+clang-4-0-dev_0.28.1-1_amd64.deb
 5d3d31982a23c99d9deae61ef4c5c5ea2cd55d89d87770aa8333cff7276e09fd 1040 
librust-clang-sys+clang-5-0-dev_0.28.1-1_amd64.deb
 04468d2adf6c165118a2d13da0d6f91e2d6d6c08a158fea08837314fcde5f313 1036 
librust-clang-sys+clang-6-0-dev_0.28.1-1_amd64.deb
 83f38ba9066ef4d2ab18bd04eeb8e141dba904cab036774008a4e465aa9a5ed3 1044 
librust-clang-sys+clang-7-0-dev_0.28.1-1_amd64.deb
 e7efe73042704d50ced21e6cda5fa277d87c732a6cc1834cc2b37e0ad65dc864 1044 
librust-clang-sys+clang-8-0-dev_0.28.1-1_amd64.deb
 07ce5aad35abff66d46a18e23cbfa5aebf99607b613e4cc78fafb80064e11caf 1084 
librust-clang-sys+libloading-dev_0.28.1-1_amd64.deb
 54ee7a301f230ba8d68893ae72f70ce50b3f97a7160b1706cafed0609a6bb5f5 33996 
librust-clang-sys-dev_0.28.1-1_amd64.deb
 83955d162781b3ba4e5451769d8ac4b0738a49a999fcf4d7d2f82f70f3dc832b 9745 
rust-clang-sys_0.28.1-1_amd64.buildinfo
 8eee00640d637d65ab698d3971d2ddbe38bf8b39d2c93455c3c8ff876222f2d1 2512 
rust-clang-sys_0.28.1-1.dsc
 b815ab04648ee1aa17df7ac939bf5ef488cdec2da1c4cbdbc9b003e62b43d39c 33291 
rust-clang-sys_0.28.1.orig.tar.gz
 87295bb738730928c1e00855daf176a2f0b58fb9e0cb6236bb4edde7869d0d14 2808 
rust-clang-sys_0.28.1-1.debian.tar.xz
Checksums-Sha1: 
 6550b3cc7f7c0a63eddbddcfa22f3c7c94fb2911 1028 
librust-clang-sys+clang-3-7-dev_0.28.1-1_amd64.deb
 58ce648f8faf466189d2b7e4e6b9790fc3199f7a 1028 
librust-clang-sys+clang-3-8-dev_0.28.1-1_amd64.deb
 c91e45c72c9717dbb027dfe0891a679a3cdedda3 1032 
librust-clang-sys+clang-3-9-dev_0.28.1-1_amd64.deb
 ae19d8cc0edc7fae17f08c0c8bc93379ac32c969 1036 
librust-clang-sys+clang-4-0-dev_0.28.1-1_amd64.deb
 0d521a4a7236cc5691b92c768a3b075b3ae1bdeb 1040 
librust-clang-sys+clang-5-0-dev_0.28.1-1_amd64.deb
 55702e8d5e94aab713fe9bda48473742cabfad50 1036 
librust-clang-sys+clang-6-0-dev_0.28.1-1_amd64.deb
 14c05e3cc252ad2109cccd04ce65ff5468297b3e 1044 
librust-clang-sys+clang-7-0-dev_0.28.1-1_amd64.deb
 4cf408a4e95dcfff179fd20db867b8d23524857c 1044 
librust-clang-sys+clang-8-0-dev_0.28.1-1_amd64.deb
 a8a6128ba049477582021aebda48440f013821f8 1084 
librust-clang-sys+libloading-dev_0.28.1-1_amd64.deb
 3dfe2d52cd4235e4183f21972eaeeec2a3ab6771 33996 
librust-clang-sys-dev_0.28.1-1_amd64.deb
 b3102c715a2672776163aa9247ccc794604f35b1 9745 
rust-clang-sys_0.28.1-1_amd64.buildinfo
 dc1cc36c57ea0e0687be976934c7a1c001244a79 2512 rust-clang-sys_0.28.1-1.dsc
 1bf75d177fc5355fa225afe2500542d17623f03a 33291 
rust-clang-sys_0.28.1.orig.tar.gz
 69060edd25b1db35a7d53b2e15856086221422f7 2808 
rust-clang-sys_0.28.1-1.debian.tar.xz
Files: 
 d1dc494e284b0831165f34d1a6450511 1028 rust optional 
librust-clang-sys+clang-3-7-dev_0.28.1-1_amd64.deb
 792b45567f8060aa3b221baa319aad96 1028 rust optional 
librust-clang-sys+clang-3-8-dev_0.28.1-1_a

Accepted rust-which 3.0.0-1 (amd64 source) into unstable, unstable

2019-10-12 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 27 Sep 2019 20:37:55 EDT
Source: rust-which
Binary: librust-which+failure-dev librust-which-dev
Architecture: amd64 source
Version: 3.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description: 
 librust-which+failure-dev - Rust equivalent of Unix command "which" - feature 
"failure" and 2
 librust-which-dev - Rust equivalent of Unix command "which" - Rust source code
Changes:
 rust-which (3.0.0-1) unstable; urgency=medium
 .
   * Team upload.
   * Package which 3.0.0 from crates.io using debcargo 2.4.0
Checksums-Sha256: 
 3d3b7f4510e0cd7ce38e3a1c4ec956cf3e29052afd12f87fd9af01414d39686c 1144 
librust-which+failure-dev_3.0.0-1_amd64.deb
 92ace6e26e61c5f6d21719f3b8f9c4ccbc27ae182c44c39c516f2ff793c13609 9664 
librust-which-dev_3.0.0-1_amd64.deb
 f556ea707de44c0a2a2d1bbd68c2f9030510b23f9d1a9b53c976bd60fcd05945 6745 
rust-which_3.0.0-1_amd64.buildinfo
 e4f035e437238cf6331bb7f68e70e366e0ad5a8dffd1fd0d8c55e6b3720082ff 1695 
rust-which_3.0.0-1.dsc
 240a31163872f7e8e49f35b42b58485e35355b07eb009d9f3686733541339a69 7940 
rust-which_3.0.0.orig.tar.gz
 a12c91cfe06188f01a6bf23ac552bb5d53a9de94c2bffb0f6a7bac39d3bf5391 2768 
rust-which_3.0.0-1.debian.tar.xz
Checksums-Sha1: 
 7737e0d4a2e12f41c3719406aa739b075c93fcfe 1144 
librust-which+failure-dev_3.0.0-1_amd64.deb
 6d70a6d66c77a2f6bca2427a84fa272172a97b6d 9664 
librust-which-dev_3.0.0-1_amd64.deb
 edc4a1f486293091fb14e81cf6fd643911dd9017 6745 
rust-which_3.0.0-1_amd64.buildinfo
 3ecf1b48a297f3b9eba5b382ebadc9e0bb9149fc 1695 rust-which_3.0.0-1.dsc
 ac92ac9351800ea3dc826a1fb8875b1ac974c4fd 7940 rust-which_3.0.0.orig.tar.gz
 06f4c878723431be4cc30236562045c18487e375 2768 rust-which_3.0.0-1.debian.tar.xz
Files: 
 16ba4df759d34e248a6e7e4691bfc961 1144 rust optional 
librust-which+failure-dev_3.0.0-1_amd64.deb
 25162a16b4a414d38822573f8498d5a8 9664 rust optional 
librust-which-dev_3.0.0-1_amd64.deb
 56b46d5a6d1657942837f1ebf5f849f0 6745 rust optional 
rust-which_3.0.0-1_amd64.buildinfo
 49176799628dae363fbb4e99e529580a 1695 rust optional rust-which_3.0.0-1.dsc
 e0e3e7ce632bd20c0ad11f7cdb26 7940 - - rust-which_3.0.0.orig.tar.gz
 1d84f25dbe2a850b3d577c50d24daa16 2768 - - rust-which_3.0.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXY6r4AAKCRB2GBllKa5f
+CxOAP4u8RjVgTk6UgK3R161NLDq+sP8a0QDbiZoX1f0RYJj5QEAvTxkHAs00Vni
SJ9kw0BSzHtBosgWzHJzt0e+3cLkWQU=
=NoMA
-END PGP SIGNATURE-



Accepted socket-activate 0.1-2 (source) into unstable

2019-10-04 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 04 Oct 2019 16:57:50 -0400
Source: socket-activate
Architecture: source
Version: 0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 socket-activate (0.1-2) unstable; urgency=medium
 .
   * imported minor patches from upstream
Checksums-Sha1:
 9a91a27b0dda3ee56d053ad606e2f14f492474ee 1375 socket-activate_0.1-2.dsc
 6439f8e1c0df5521995a875d620d0eea24557e55 4204 
socket-activate_0.1-2.debian.tar.xz
 3957f39254599c10df0d7f0d880372e66f8addcc 5986 
socket-activate_0.1-2_amd64.buildinfo
Checksums-Sha256:
 b1a142c343a40dc3fac42b39a899ed17941d1e532fcd2fa447df1d0e508042c4 1375 
socket-activate_0.1-2.dsc
 2b044ac6a91f50203d60cb19aa068e9800e5c962d890718e9c6bd63f8d9be228 4204 
socket-activate_0.1-2.debian.tar.xz
 ee5675bb1a8a03443bc83a8b3c9700c3461de474bbbe74da93e99be258b36eb8 5986 
socket-activate_0.1-2_amd64.buildinfo
Files:
 d2ffd99adcba0ef2710419f95d44bbbe 1375 net optional socket-activate_0.1-2.dsc
 de88d42fbab90d9e20d5c6f97638c95a 4204 net optional 
socket-activate_0.1-2.debian.tar.xz
 e9abf9e47b3b7bf82020b389cb02c06f 5986 net optional 
socket-activate_0.1-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXZeyeQAKCRB2GBllKa5f
+BH/AQC7NLnepjUp8zlR5tT7Ac9w7t9RxRMavbPjoreW0d7vGwEAjHJml6xZ/U4i
w2ucANtlvnKE51U1+ZOgz+oMkorsGgM=
=vbb+
-END PGP SIGNATURE-



Accepted gmime 3.2.4-1 (source) into unstable

2019-10-03 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 03 Oct 2019 22:24:33 -0400
Source: gmime
Architecture: source
Version: 3.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 gmime (3.2.4-1) unstable; urgency=medium
 .
   * New upstream release
   * dropped patches already upstream
Checksums-Sha1:
 93df46e542c53a09af84711559f0a56082d5acff 1829 gmime_3.2.4-1.dsc
 c7f2fbb50e123ba34348ae52c073e1f97e7a8502 2219876 gmime_3.2.4.orig.tar.xz
 da9c134125c785f3a8f518a87394296f4e128900 12828 gmime_3.2.4-1.debian.tar.xz
 1a0a1d6f04287b7979c405c2179a2c658aac8ac2 17302 gmime_3.2.4-1_amd64.buildinfo
Checksums-Sha256:
 c308c9f7201f8fd86d219de1269e2ac93ee5fdefca3f8b8108f392cc058f6f30 1829 
gmime_3.2.4-1.dsc
 249ea7c0e080b067aa9669162c36b181b402f6cf6cebc4999d838c6f1e81d024 2219876 
gmime_3.2.4.orig.tar.xz
 de8b4a3e3df4aeffae26a7e5eb55e169c92f5cfb285c9dda936ac79849e610f6 12828 
gmime_3.2.4-1.debian.tar.xz
 03e0a1b55876347e393dfd273cd26b6978e5a86f5a6dac1f7bb9d9f975840644 17302 
gmime_3.2.4-1_amd64.buildinfo
Files:
 376c7c4a76d9315e4b83e961f158b4d5 1829 libs optional gmime_3.2.4-1.dsc
 b6b4e9fdc8f3336551d23872c83b539a 2219876 libs optional gmime_3.2.4.orig.tar.xz
 1337288bcf063e1c11c01dc9273d8585 12828 libs optional 
gmime_3.2.4-1.debian.tar.xz
 7817e386218cf344b76895f99224eb80 17302 libs optional 
gmime_3.2.4-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXZaulgAKCRB2GBllKa5f
+PzDAQDFh4kMHNzTljop44eAv6xot4AbSnGN/AQOiubu8rKd4wD/Sat3G7Ns1zxs
q44mxc1m8L3TeylRAxlZcFrx1cm9Ag8=
=ONyS
-END PGP SIGNATURE-



Accepted gmime 3.2.3-2 (source) into unstable

2019-09-30 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 30 Sep 2019 17:34:39 -0400
Source: gmime
Architecture: source
Version: 3.2.3-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 gmime (3.2.3-2) unstable; urgency=medium
 .
   * enable session key retrieval by requiring gpgme >= 1.8.0
   * move to unstable
   * standards-version: bump to 4.4.1 (no changes needed)
Checksums-Sha1:
 e85b762662a4b7aa6187891fb208a9bebd155350 1829 gmime_3.2.3-2.dsc
 fc4100a405ba3a400e309d1bb2f46ac04a4f92f5 13528 gmime_3.2.3-2.debian.tar.xz
 4d9caca80cb3fb8c7b71eb3b5b99c60d8dbe1d0a 17301 gmime_3.2.3-2_amd64.buildinfo
Checksums-Sha256:
 5d0b2d78be831443c094af61594ec7a7e576ec558313ab335d812133bcfbce07 1829 
gmime_3.2.3-2.dsc
 27a44ab4548be585c1178ffc5db042b46fcbbddde09b54ab48ccba1ba1cec445 13528 
gmime_3.2.3-2.debian.tar.xz
 ecedfd0c25535fedb6c33045fb837cc49f17ca1e946cc5b1324faf34ba39a73c 17301 
gmime_3.2.3-2_amd64.buildinfo
Files:
 6230425bd0cf5ca6bd31cccb6c40e336 1829 libs optional gmime_3.2.3-2.dsc
 9a41df2da26b5efedb2fd3288554f8f5 13528 libs optional 
gmime_3.2.3-2.debian.tar.xz
 4b8e84936f4e14c0ea4f205fdc09a7c1 17301 libs optional 
gmime_3.2.3-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXZJ18gAKCRB2GBllKa5f
+GyIAP4z6UZvwv834thqR4ZTNUUF4mQ1MpWCyZhFo5zq8Z+zNwD/Xss5bgjcO/Ya
XinlM3uDFAMMYruurQRf9Wusnjvy9AQ=
=PBkN
-END PGP SIGNATURE-



Accepted publicsuffix 20190925.1705-1 (source) into unstable

2019-09-27 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 27 Sep 2019 13:36:30 +0200
Source: publicsuffix
Architecture: source
Version: 20190925.1705-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 publicsuffix (20190925.1705-1) unstable; urgency=medium
 .
   * new upstream version
Checksums-Sha1:
 d18d5d1c6dfc2e62254fcd3ad2f54a4597adebb9 1406 publicsuffix_20190925.1705-1.dsc
 85d47144a17a6ee5455c3e214a9896ad2abc81ff 93268 
publicsuffix_20190925.1705.orig.tar.gz
 bbb35b9d3645faf32f4bb3c432cb8cdd56016c39 14840 
publicsuffix_20190925.1705-1.debian.tar.xz
 94aed376fcce2f1bda0b187ec5fc0712585e16c7 6220 
publicsuffix_20190925.1705-1_amd64.buildinfo
Checksums-Sha256:
 4b42fda15407f047fa8a6d7ecd871c55d0e9786db0a7993e78e14f75fe40783a 1406 
publicsuffix_20190925.1705-1.dsc
 29c763373846cd788285ad74cf899cbf929e40647f88daa1d705610aae2885e8 93268 
publicsuffix_20190925.1705.orig.tar.gz
 9ca263a1345d2a25d9c2fa09c0e87216456f215a321ce54ee3e0d85a7f8ae268 14840 
publicsuffix_20190925.1705-1.debian.tar.xz
 d0a67c53d9552dc6cb4bae5bc379fba40fcbb03f39f8153c8e6111655b0c386c 6220 
publicsuffix_20190925.1705-1_amd64.buildinfo
Files:
 44ab3f4e183f3998b20f50c410d66cea 1406 net optional 
publicsuffix_20190925.1705-1.dsc
 8bdc4407a763586be8514dff69f1a937 93268 net optional 
publicsuffix_20190925.1705.orig.tar.gz
 8a809141ff511c6f14016e7e58190932 14840 net optional 
publicsuffix_20190925.1705-1.debian.tar.xz
 939c211ffcf78969cf56966ab9ce30c0 6220 net optional 
publicsuffix_20190925.1705-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXY30SQAKCRB2GBllKa5f
+KzRAQDEYaSSCfzsvJaKvtKHhXMAS7OZLlbAi8BsB7D67SlnbgD9H3Isa/vyEGuv
/0TkgAjQta+Gi4quP2RSiEaM8Jeowgs=
=o7Kx
-END PGP SIGNATURE-



Accepted wireguard 0.0.20190913-1 (source) into unstable

2019-09-26 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 26 Sep 2019 10:29:32 +0200
Source: wireguard
Architecture: source
Version: 0.0.20190913-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (0.0.20190913-1) unstable; urgency=medium
 .
   * new upstream release
   * verbose build to satisfy compiler-flags-hidden complaint from bls
Checksums-Sha1:
 220f00d63e821ea90992b80673140dd67efe2690 1513 wireguard_0.0.20190913-1.dsc
 d13fb55427637af567e06dd20a6ebdad5a3c7c91 328176 
wireguard_0.0.20190913.orig.tar.xz
 4cd248cdb399c7c13e89ebac1b27bd41a988a3c3 25028 
wireguard_0.0.20190913-1.debian.tar.xz
 8bcc3c1acd704adc352fe09f2438cccbbebedffc 7443 
wireguard_0.0.20190913-1_amd64.buildinfo
Checksums-Sha256:
 af8021dc1c8ebb8d430d3e22e5703ddbbff7c1dde779826714ea03ee300665a2 1513 
wireguard_0.0.20190913-1.dsc
 f10ab610e60a6ab2a3770a4908050ecee21117e78fc655e936430c057beb5758 328176 
wireguard_0.0.20190913.orig.tar.xz
 5c63e7c5d8f2d1b654852bdad9c1b2963b6f7bd3b285b2effd46cf51d1a0d96b 25028 
wireguard_0.0.20190913-1.debian.tar.xz
 e0b7a3f77d4f31bc49177e0d5b2c2d8a069d5f5afcc3b743156b053c96879797 7443 
wireguard_0.0.20190913-1_amd64.buildinfo
Files:
 5b83ace906f15be62c2cdb1dceccef5b 1513 net optional wireguard_0.0.20190913-1.dsc
 91e4f48db0537a551e684f804dca5935 328176 net optional 
wireguard_0.0.20190913.orig.tar.xz
 d613cdfe213d91ef89a9e867ff8b554b 25028 net optional 
wireguard_0.0.20190913-1.debian.tar.xz
 e3f551b81307b65bd93878a316655e73 7443 net optional 
wireguard_0.0.20190913-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXYx34wAKCRB2GBllKa5f
+JDgAQDQdkiQGf82psmgeb3ta4O2grygq9jyMOdBSkO2ZD2rVAD+OEksaoZDbaKm
VVvLvTqK3Gh6wmzFO8gTDWbCDP+NnwA=
=N0/G
-END PGP SIGNATURE-



Accepted rust-lalrpop-util 0.17.2-1 (source) into unstable

2019-09-24 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 24 Sep 2019 08:00:13 +0200
Source: rust-lalrpop-util
Architecture: source
Version: 0.17.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 rust-lalrpop-util (0.17.2-1) unstable; urgency=medium
 .
   * Package lalrpop-util 0.17.2 from crates.io using debcargo 2.4.0
Checksums-Sha1:
 e74b638df07a3d35ef1f722a0fb40e35ecf7 1566 rust-lalrpop-util_0.17.2-1.dsc
 4b2d571953b187c87e3445f70885c93f0dfb95b5 9110 
rust-lalrpop-util_0.17.2.orig.tar.gz
 814854d9fcad8478a8cf4607dfad4ed0ce830677 2648 
rust-lalrpop-util_0.17.2-1.debian.tar.xz
 d24bc08a97ee8830b180bde45851c28f2b80b7e6 6874 
rust-lalrpop-util_0.17.2-1_source.buildinfo
Checksums-Sha256:
 91b9ccc2ea704cf1406f302d4a27741d69490a4ef5e9497ae1a57dfeba5711f9 1566 
rust-lalrpop-util_0.17.2-1.dsc
 c277d18683b36349ab5cd030158b54856fca6bb2d5dc5263b06288f486958b7c 9110 
rust-lalrpop-util_0.17.2.orig.tar.gz
 9deda54cbfba647ceb2b8041221aa45b121448659b70f7e17a2643a7d49f2fce 2648 
rust-lalrpop-util_0.17.2-1.debian.tar.xz
 93b09c2262e54391d6bf6857e4107adbc1e6ccad100d78fcf1e6f59aadfe6ea1 6874 
rust-lalrpop-util_0.17.2-1_source.buildinfo
Files:
 ca4045d5a31cada01ff49104e50ae7ac 1566 rust optional 
rust-lalrpop-util_0.17.2-1.dsc
 d363f3004cf22523cb5aa20baedaee73 9110 rust optional 
rust-lalrpop-util_0.17.2.orig.tar.gz
 bf0fecd067d66f7c07adaaa97e3f6e2f 2648 rust optional 
rust-lalrpop-util_0.17.2-1.debian.tar.xz
 407bad63676ea717a0d6240b4a7de620 6874 rust optional 
rust-lalrpop-util_0.17.2-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXYmw8QAKCRB2GBllKa5f
+PcRAQDGXqmKj8eQh8oBf1v3ZLJi3up4MypJLmxgRGuG0YLsDQEAvCGyVuSeTHNJ
sneb4Ab2KBeUe9bFEUuveO5tzcFstA8=
=nOc8
-END PGP SIGNATURE-



Accepted jsunit 0.2.2-1 (source) into experimental

2019-09-17 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2019 12:22:55 -0400
Source: jsunit
Architecture: source
Version: 0.2.2-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 

Changed-By: Daniel Kahn Gillmor 
Changes:
 jsunit (0.2.2-1) experimental; urgency=medium
 .
   * new upstream release (targets Thunderbird 68)
 .
   [ Olivier Tilloy ]
   * d/jsunit.install: update install paths
   * d/tests/sample-test: update test script
 .
   [ Daniel Kahn Gillmor ]
   * Standards-Version: bump to 4.4.0 (no changes needed)
   * move to dh 12
Checksums-Sha1:
 6594d730ebbf7a2bec465e5c870f809d6368705e 1382 jsunit_0.2.2-1.dsc
 8dd429a03d6c45da599f4745ec9c101e95742ad8 10576 jsunit_0.2.2.orig.tar.gz
 8aa3e9103deb3dba9e17ab8e6057017e44406cdf 7624 jsunit_0.2.2-1.debian.tar.xz
 ce77b66027a794e285c4b99c1e57eac26751f2b7 5748 jsunit_0.2.2-1_amd64.buildinfo
Checksums-Sha256:
 6f56f2ddd996c78b22d00e179cbbf69fb28e055516d340732a055525a1780d16 1382 
jsunit_0.2.2-1.dsc
 2f7b7a44f9f36f318226f0ff7f63a427989a80273f8aceb34a5798a33c82f5d8 10576 
jsunit_0.2.2.orig.tar.gz
 913ef03958db0c9fcd01b247b411a1a0da087c9a25e7aad9fc7d5fdb8bea84fd 7624 
jsunit_0.2.2-1.debian.tar.xz
 a22c598898693667105726cf8e2674c75c41598ffdc6ecc3952b55e19dfeb531 5748 
jsunit_0.2.2-1_amd64.buildinfo
Files:
 8362cc0c37904c77aef5e820def71f77 1382 libdevel optional jsunit_0.2.2-1.dsc
 8cdcbe8c7a6a5c9655a5309a2938c909 10576 libdevel optional 
jsunit_0.2.2.orig.tar.gz
 0b516aa3f449ef0aa76a18ea845faaee 7624 libdevel optional 
jsunit_0.2.2-1.debian.tar.xz
 ab2b544df401ff8385dac7a07425ac9a 5748 libdevel optional 
jsunit_0.2.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXYEaDwAKCRB2GBllKa5f
+DsTAQCHIaLVd3oznK2H/8iFkXOApNgMNd8tNr0v6aASXQrGbgEAv8NK3GAqi8Pu
F9wu26wAIZjCi1sMOAB0Qa8INJCnoQg=
=IHEA
-END PGP SIGNATURE-



Accepted publicsuffix 20190904.1802-1 (source) into unstable

2019-09-10 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 10 Sep 2019 09:19:28 -0400
Source: publicsuffix
Architecture: source
Version: 20190904.1802-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 publicsuffix (20190904.1802-1) unstable; urgency=medium
 .
   * new upstream version
Checksums-Sha1:
 ecf5b281592b6968a98940cec0cc8e1d1f639b6f 1406 publicsuffix_20190904.1802-1.dsc
 9ebfd0ff3f4e75170ef43812eb5b800b01e7984c 93106 
publicsuffix_20190904.1802.orig.tar.gz
 3b4abeaf7dafa075cecc3a78d5cfef6d696a3efc 14672 
publicsuffix_20190904.1802-1.debian.tar.xz
 4efbe3da951be03e210a6b2d69dc4d2d33069d5a 5878 
publicsuffix_20190904.1802-1_amd64.buildinfo
Checksums-Sha256:
 c409a8fea06452aae3595a77a80a8fb1e3ee347266de0c3dde651aa312b156b7 1406 
publicsuffix_20190904.1802-1.dsc
 315fadc6d15be977f7f375513940c103675762055d1f106a79182588fb2b50d2 93106 
publicsuffix_20190904.1802.orig.tar.gz
 44a9fe0874ca102ebd8aba48c2262ed67d7df879c993533f1f8c26c4a517d8e3 14672 
publicsuffix_20190904.1802-1.debian.tar.xz
 bd6575c78bc7e1d7f3ab3ef7d98c14f8bb933c55bce3b2ee40bf515ac74ef555 5878 
publicsuffix_20190904.1802-1_amd64.buildinfo
Files:
 404a94f60beee68c040cd4fb5d36776b 1406 net optional 
publicsuffix_20190904.1802-1.dsc
 c2e9f2a46d11e7d8346342da9d50a596 93106 net optional 
publicsuffix_20190904.1802.orig.tar.gz
 e88539d7fc9af312d0e0683461167ca7 14672 net optional 
publicsuffix_20190904.1802-1.debian.tar.xz
 b8b314b0da328cc2395d577e1e170488 5878 net optional 
publicsuffix_20190904.1802-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXXei8QAKCRB2GBllKa5f
+IKtAQDffjC9cGXUeAEFb9HG+MDUErOPd69vcyl4a/y3wZ5NqQD/a7b6YkwUz+tN
RWEgR+GBz8zRlFlJ1JgYcbKrPLCHPwY=
=RWa/
-END PGP SIGNATURE-



Accepted wireguard 0.0.20190905-1 (source) into unstable

2019-09-08 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 08 Sep 2019 15:42:09 -0400
Source: wireguard
Architecture: source
Version: 0.0.20190905-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 wireguard (0.0.20190905-1) unstable; urgency=medium
 .
   * new upstream release
   * refresh patches
   * include ${perl:Depends} in wireguard-dkms
Checksums-Sha1:
 07da7024624d5f34ce94d348644c6f947eafda50 1513 wireguard_0.0.20190905-1.dsc
 11532ac229e440584a8928b7043a95911a9bf7fd 328048 
wireguard_0.0.20190905.orig.tar.xz
 5cc7eb9a6468e795e90aaa413bebaf414b6e5157 24980 
wireguard_0.0.20190905-1.debian.tar.xz
 f92316d39d5b6d381e0403d5b08288a95de4a329 7304 
wireguard_0.0.20190905-1_amd64.buildinfo
Checksums-Sha256:
 4ef728f67914d8f28040ebc88f2dc7ab1a885aac3f14c470e5dfb80fa7a22f1e 1513 
wireguard_0.0.20190905-1.dsc
 d008494d47c530d7c1c202ddcba158e2da815e1a31644cc79a282cfd153e0ab7 328048 
wireguard_0.0.20190905.orig.tar.xz
 2482d7c73eb990eb80ebf8c2974dd90276e81b9152d9b94f46a66b66e28d5bd4 24980 
wireguard_0.0.20190905-1.debian.tar.xz
 140c3cf7b28389d27cadd22d7e512564c686468996ba024f3db6bf32fe1058a8 7304 
wireguard_0.0.20190905-1_amd64.buildinfo
Files:
 2ae6b0ab06ee1b27ea39b7be2ccc4ff5 1513 net optional wireguard_0.0.20190905-1.dsc
 3f320020495ff875431d88a62f0d2317 328048 net optional 
wireguard_0.0.20190905.orig.tar.xz
 80ba2697e116a6486d66a7d2f5d27b1d 24980 net optional 
wireguard_0.0.20190905-1.debian.tar.xz
 cc9060f9aa2b3683524097b1be4c2da4 7304 net optional 
wireguard_0.0.20190905-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXXVePAAKCRB2GBllKa5f
+OgHAQCJ5vbVhDS5ps17qTaDnlXDTqDije2JLswIz3XArjm+3QEA5YJEULyZRF3X
mgeBUuIONeB7x3W57Lgex2xiYzQ8www=
=RNy5
-END PGP SIGNATURE-



Accepted gpgme1.0 1.13.1-1 (source) into unstable

2019-08-26 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 26 Aug 2019 15:24:31 -0400
Source: gpgme1.0
Architecture: source
Version: 1.13.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 gpgme1.0 (1.13.1-1) unstable; urgency=medium
 .
   * new upstream release
   * release to unstable
   * d/{control,gpb.conf}: fix up Vcs branch name for DEP-14
   * make sure to test python decryption and verification
   * Standards-Version: bump to 4.4.0 (no changes needed)
   * Drop python2 support, only build for python3
   * go with upstream python, ignoring intermittent decrypt problems
Checksums-Sha1:
 8644aaa24911c4a375d4425dd0af491027f6a526 2265 gpgme1.0_1.13.1-1.dsc
 f87f34e695e8d74ccc7c8f42864d50630afebb0e 1759616 gpgme1.0_1.13.1.orig.tar.bz2
 1aba44e2c4f898cd3b68a3290eacb8b2c09e252a 488 gpgme1.0_1.13.1.orig.tar.bz2.asc
 0b79b04feb95dfc46393465f18db48abbb577eeb 18216 gpgme1.0_1.13.1-1.debian.tar.xz
 de157cc478097a858bfab0e48e50244e8d0b909c 17925 
gpgme1.0_1.13.1-1_amd64.buildinfo
Checksums-Sha256:
 854b60df12eff600d36d404980688003c229096f4451ecd88136a8de7365b3ce 2265 
gpgme1.0_1.13.1-1.dsc
 c4e30b227682374c23cddc7fdb9324a99694d907e79242a25a4deeedb393be46 1759616 
gpgme1.0_1.13.1.orig.tar.bz2
 2759362727500bc9ddee86c6383b63bee0e230bd6159e63ea3cb48dc1de0f303 488 
gpgme1.0_1.13.1.orig.tar.bz2.asc
 accd5ea02f5fdace58580b369a75d870d6c419461d893a54a7d4a7d0c18a41c9 18216 
gpgme1.0_1.13.1-1.debian.tar.xz
 887fda9eedb9b2dc5f68b9ef76331a5659983e755738bfcb20f6ae8e07e18b36 17925 
gpgme1.0_1.13.1-1_amd64.buildinfo
Files:
 0fa087fc647ae5660f14eddc0d2969da 2265 libs optional gpgme1.0_1.13.1-1.dsc
 198f0a908ec3cd8f0ce9a4f3a4489645 1759616 libs optional 
gpgme1.0_1.13.1.orig.tar.bz2
 3f805136c39a7015116136564a21ef91 488 libs optional 
gpgme1.0_1.13.1.orig.tar.bz2.asc
 3cd2fc5dca674f13bf3242970f3d421a 18216 libs optional 
gpgme1.0_1.13.1-1.debian.tar.xz
 eaff48b4d9941515af4e3f1365fd6dd1 17925 libs optional 
gpgme1.0_1.13.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXWQzOwAKCRB2GBllKa5f
+MvXAQCm/Tj7moBTx9TEWL+QPDAgXyJnm2RGZOAv8AelilLVswEA+bXeiyRZ9+HT
YGwcieD8ByraCWFlLJ/5/a1cVyMQZwQ=
=YpbG
-END PGP SIGNATURE-



Accepted wireguard 0.0.20190702-3 (source) into unstable

2019-08-19 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 19 Aug 2019 20:52:22 -0400
Source: wireguard
Architecture: source
Version: 0.0.20190702-3
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Closes: 930432
Changes:
 wireguard (0.0.20190702-3) unstable; urgency=medium
 .
   * clean up wireguard-modules versioned dependency (Closes: #930432)
Checksums-Sha1:
 b767595d0f8599d84953366ed75b029824e033e8 1513 wireguard_0.0.20190702-3.dsc
 bdcd39fbc7948a2b4d30a5e06819df84e6652cf5 24960 
wireguard_0.0.20190702-3.debian.tar.xz
 fb8d1c795c49a63433d7963362881553d23484ca 7203 
wireguard_0.0.20190702-3_amd64.buildinfo
Checksums-Sha256:
 d1d5b566dbd4a18ef1872b5f5b9798464c72a181e1d48abf8d3a3f78721f3000 1513 
wireguard_0.0.20190702-3.dsc
 b6b4d019836f72df8391c848358e189a63fb86b29b4f6f47d1f871bfae842193 24960 
wireguard_0.0.20190702-3.debian.tar.xz
 9dab5dddf981ce514406a051a4cc2ec3871ec50a65fc34d3d58f41b95a847f36 7203 
wireguard_0.0.20190702-3_amd64.buildinfo
Files:
 1bb13266234379e10844ef3fda94f028 1513 net optional wireguard_0.0.20190702-3.dsc
 60a5d27eee4a2858af04d55c2e7abbd3 24960 net optional 
wireguard_0.0.20190702-3.debian.tar.xz
 438ef200c65856211627e37230d87e26 7203 net optional 
wireguard_0.0.20190702-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXVtG/AAKCRB2GBllKa5f
+OoYAP4m80J2VN71QjnWChUqSK+RWDTgFCdwVHGNRptO8Ies/QD+K8jFcr2wsVAM
JyEu2dahWYZwajJ8QBnZrGe+fnnykAU=
=Q2w+
-END PGP SIGNATURE-



Accepted libreswan 3.29-2 (source) into unstable

2019-08-19 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 19 Aug 2019 18:57:33 -0400
Source: libreswan
Architecture: source
Version: 3.29-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 libreswan (3.29-2) unstable; urgency=medium
 .
   * Release to unstable
   * fix up more upstream orthography
   * standards-version: bump to 4.4.0 (no changes needed
   * change lintian override of spelling-error-in-copyright to match new
 reporting
Checksums-Sha1:
 e60f506e5509457074c4efa14dfc0007974e02b0 1995 libreswan_3.29-2.dsc
 beddc1e0692afb673bdffe6822a83455ec88234f 18852 libreswan_3.29-2.debian.tar.xz
 379a666135aad6161c11f7353a8e9bba84ce396d 10256 libreswan_3.29-2_amd64.buildinfo
Checksums-Sha256:
 bf9bc50b4956c9cbdda4a26456cc370af83eedc72078b5ce2d3e510b196fed9d 1995 
libreswan_3.29-2.dsc
 d5430ca142ff7f057eaeb2ccd324e0c2803ba4b243d8acc72be494b99020b639 18852 
libreswan_3.29-2.debian.tar.xz
 cbfef9fa80f355a232e64ce50a03485a934cbab1a6f2aad07f2c04a6a824d665 10256 
libreswan_3.29-2_amd64.buildinfo
Files:
 a894f2af31dedfa7c099cd8257bc64e8 1995 net optional libreswan_3.29-2.dsc
 fe14aa65527d2d5185f49ec8b1af6591 18852 net optional 
libreswan_3.29-2.debian.tar.xz
 19a54b9a7a7b114218fb9db875a27560 10256 net optional 
libreswan_3.29-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXVtGqgAKCRB2GBllKa5f
+CVGAQDexYO3vr7k3mzaH5D820TD9WLzMPKXNmeeBHOlZk/fUQD/YW1u1/tEGeyS
S1PV0ZR9sk+qMiTEBGkQfUdtGhXXZAM=
=g74t
-END PGP SIGNATURE-



Accepted wireguard 0.0.20190702-2 (source) into unstable

2019-08-19 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 19 Aug 2019 18:07:59 -0400
Source: wireguard
Architecture: source
Version: 0.0.20190702-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Closes: 934763
Changes:
 wireguard (0.0.20190702-2) unstable; urgency=medium
 .
   * Work around faulty siphash backport (Closes: #934763)
   * standards-version: bump to 4.4.0 (no changes needed)
   * override package-supports-alternative-init-but-no-init.d-script for
 wireguard-tools
Checksums-Sha1:
 805ca733140aafd5cd39882a26de75cef6fec032 1513 wireguard_0.0.20190702-2.dsc
 24f551e92cb79d5b3e926d75882223f232a828d2 24928 
wireguard_0.0.20190702-2.debian.tar.xz
 089f298a36721aa3acc2269f06753b63fc1bb034 7203 
wireguard_0.0.20190702-2_amd64.buildinfo
Checksums-Sha256:
 120abca332fcae09027b5f39bd0eac89551bb20e533a71b1f8ff357401e7c324 1513 
wireguard_0.0.20190702-2.dsc
 3ab2c496aa8f663756cda16041ac95a0f1103edacc2fdb79f8aad62a031640e8 24928 
wireguard_0.0.20190702-2.debian.tar.xz
 71b64aa2c149dfd77745d5423ff2d9f9dd1f74b54dc756f2ef5f1c1e9c8c1fce 7203 
wireguard_0.0.20190702-2_amd64.buildinfo
Files:
 f39352e6ae294a5b0168c5ff336f04ab 1513 net optional wireguard_0.0.20190702-2.dsc
 e306aead7658217250af28884dafe245 24928 net optional 
wireguard_0.0.20190702-2.debian.tar.xz
 2c88699219fcb20c3a7a5f068152eff8 7203 net optional 
wireguard_0.0.20190702-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXVshmwAKCRB2GBllKa5f
+EmfAQC1oVUpnactNNVkGEPkl+bpj4QJgiaPfykLwo0jVQ/amQD/WpwlNdMHW4Qb
5dCb7FiXscl8eQv9BQKuxHhb9nAU7wA=
=KUPR
-END PGP SIGNATURE-



Accepted rust-fuchsia-cprng 0.1.1-1 (source amd64) into unstable, unstable

2019-08-14 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 22 May 2019 13:48:05 -0400
Source: rust-fuchsia-cprng
Binary: librust-fuchsia-cprng-dev
Architecture: source amd64
Version: 0.1.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description:
 librust-fuchsia-cprng-dev - The Fuchsia cryptographically secure pseudorandom 
number generato
Changes:
 rust-fuchsia-cprng (0.1.1-1) unstable; urgency=medium
 .
   * Package fuchsia-cprng 0.1.1 from crates.io using debcargo 2.2.10
Checksums-Sha1:
 83c2ddce42c2a89ac5a4c3a805a10acf99c76d85 1518 rust-fuchsia-cprng_0.1.1-1.dsc
 1182289713ae2ef9a909f17e0ee87f372972c23e 2950 
rust-fuchsia-cprng_0.1.1.orig.tar.gz
 37b8d551f6c91b900f75717cccff9f68f7566e34 2528 
rust-fuchsia-cprng_0.1.1-1.debian.tar.xz
 879bff6cda1fb1ad5c859379eed13c988a07e476 4648 
librust-fuchsia-cprng-dev_0.1.1-1_amd64.deb
 3e8f030994739220e93889d0f440bbcb561e0c71 6728 
rust-fuchsia-cprng_0.1.1-1_amd64.buildinfo
Checksums-Sha256:
 e8937d0c8bb08d7f4bfe758876a3eb1bafdb41627a7374672f56e0e8732a89ac 1518 
rust-fuchsia-cprng_0.1.1-1.dsc
 a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba 2950 
rust-fuchsia-cprng_0.1.1.orig.tar.gz
 c873c5d2452e1fc5fc3c440fd38fd8c4518401a591c98fbec4c651ac38e61a9d 2528 
rust-fuchsia-cprng_0.1.1-1.debian.tar.xz
 5922c0141454272766f55d586faa5baed20c5d20132511049fb40b96f5099639 4648 
librust-fuchsia-cprng-dev_0.1.1-1_amd64.deb
 6d7d9497ac2f1cd90239cbea4e34b7428f68089c64afe63f0512bf12c2c48eb9 6728 
rust-fuchsia-cprng_0.1.1-1_amd64.buildinfo
Files:
 483fc368206d43f2ede4d148673cb029 1518 rust optional 
rust-fuchsia-cprng_0.1.1-1.dsc
 27260b46db6b9ac40318143d70a80ba3 2950 rust optional 
rust-fuchsia-cprng_0.1.1.orig.tar.gz
 237aafd3f417b26f1d1553e15d2abb2e 2528 rust optional 
rust-fuchsia-cprng_0.1.1-1.debian.tar.xz
 c8797bdeadba63643a1adbc0becbda7e 4648 rust optional 
librust-fuchsia-cprng-dev_0.1.1-1_amd64.deb
 8af158bbc80ed0fb4317c20ee1dca50a 6728 rust optional 
rust-fuchsia-cprng_0.1.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXOWLkQAKCRB2GBllKa5f
+HwyAPsG9xxSr2+RVcQbf9ON9VURe03MIUdZi65fot87nV2q6AD9Eyqi816PSKrW
qyGll+m1UJtMRPLqfCV7naiLDNOUgQ8=
=HKPX
-END PGP SIGNATURE-



Accepted python-pgpy 0.5.2-1 (source) into unstable

2019-08-02 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 02 Aug 2019 12:16:03 -0400
Source: python-pgpy
Architecture: source
Version: 0.5.2-1
Distribution: unstable
Urgency: medium
Maintainer: Michael Greene 
Changed-By: Daniel Kahn Gillmor 
Changes:
 python-pgpy (0.5.2-1) unstable; urgency=medium
 .
   * new upstream release
- adds Curve25519 and Ed25519 support
   * move to debhelper 12
   * standards-version: bump to 4.4.0 (no changes needed)
   * drop python3-singledispatch from build, since it is part of core
   * drop patches already upstream
   * pull in upstream facepalm version number fix
   * update dependency version for python3-cryptography
   * clean up python and pytest cache
   * wrap-and-sort debian/tests/control, mark module load test as superficial
   * drop X-Python3-Version: PGPy supports all modern py3 in debian
Checksums-Sha1:
 5c3bebd3e5b07e1f9cbac0a62879d350fd2f5da3 1829 python-pgpy_0.5.2-1.dsc
 eca6bcd8afbfb34b8665672b0f14a7508ff4ec18 591935 python-pgpy_0.5.2.orig.tar.gz
 43de7b6d03f88cf7c7098c77f502e42588ec3245 4684 python-pgpy_0.5.2-1.debian.tar.xz
 10f1024b91b5dcfde5e8f44837c5aff4d6ca7f2a 14211 
python-pgpy_0.5.2-1_amd64.buildinfo
Checksums-Sha256:
 45df796fc500449f282d2a51e5f1c718f14954812d64534e9262fd96a1ded19b 1829 
python-pgpy_0.5.2-1.dsc
 483be032cfcf8edd2d881dc5f3bd80ad8048cc8dfe3b5fea8ddf9d981ee37b17 591935 
python-pgpy_0.5.2.orig.tar.gz
 17f7a17f04b06e8db9483379eb72814af3946b3ea384a7103d2320e387d44371 4684 
python-pgpy_0.5.2-1.debian.tar.xz
 e024dcfeabf01c4291460196f4a7a19675bebda8dd9970e4fde508ad238bef2c 14211 
python-pgpy_0.5.2-1_amd64.buildinfo
Files:
 38de388b10367c4b6f319070974beea2 1829 python optional python-pgpy_0.5.2-1.dsc
 9f254badfc72419a2f4b4d8a68542e52 591935 python optional 
python-pgpy_0.5.2.orig.tar.gz
 65c9bf62625f21baf07881b8f1f4dc68 4684 python optional 
python-pgpy_0.5.2-1.debian.tar.xz
 4b7fd6f1c31eb81b9048041d14e4acb2 14211 python optional 
python-pgpy_0.5.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXURrRwAKCRB2GBllKa5f
+JuSAQCPN1G9Cz3LD+RNZljK6Pu+xAeNHb2gr9t4Hb10P7Q0uAEAjvK+zboRXsEy
S9S/sKLn/R+o4sIFj9oMPvj+H7nKjgw=
=DJkH
-END PGP SIGNATURE-



Accepted pinentry 1.1.0-3 (source) into unstable

2019-07-26 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 26 Jul 2019 20:37:37 -0400
Source: pinentry
Architecture: source
Version: 1.1.0-3
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 pinentry (1.1.0-3) unstable; urgency=medium
 .
   * Standards-Version: bump to 4.4.0 (no changes needed)
   * move to debhelper 12
   * apply upstream qt bugfix
   * ship the version of pinentry.info installed (not from the source)
   * avoid spuriously flagging /usr/bin/pinentry as not-installed
   * drop shlibs:Depends from Arch: all pinentry-{doc,qt4} packages
   * use dh_missing --fail-missing
   * minimize debian/upstream/signing-key.asc
Checksums-Sha1:
 a039ea7f9d0e22cf529fbbc3e507dfab06afd797 2060 pinentry_1.1.0-3.dsc
 68e9cb670a1b32191ab59cd173ad31cbb78514dd 17124 pinentry_1.1.0-3.debian.tar.xz
 4d2a8298462a7e2ede54fb2899f70dfbde244acc 19498 pinentry_1.1.0-3_amd64.buildinfo
Checksums-Sha256:
 007e0ef8f0c289d8df814c2ef6fc66c880eb587f4b2ffcab2e229ea324076921 2060 
pinentry_1.1.0-3.dsc
 41315d69b0c0c06f2c1bff846b2d87519a6fa59e8d295d9e6d1a6b7e343b6168 17124 
pinentry_1.1.0-3.debian.tar.xz
 393352686aebeddcd737e926f2d935e6d371965c373ebf244f555823b6d84e27 19498 
pinentry_1.1.0-3_amd64.buildinfo
Files:
 5f3c81f87860ffb1595babcaa97e91de 2060 utils optional pinentry_1.1.0-3.dsc
 4f30b6128d3d667bb4b044d78b7034e9 17124 utils optional 
pinentry_1.1.0-3.debian.tar.xz
 1279beaaede93b03dea9abb54f7ebd11 19498 utils optional 
pinentry_1.1.0-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXTvLUgAKCRB2GBllKa5f
+MmHAPwL2DcJ2pUeW3+Yw1LMiA3vfWenFtTjvIpiOeGFn6EvjgD/Xwugt9vQC/WV
0OxAQP8XJzdaPNLTQQTwlId3/KPTgQ4=
=Ar0s
-END PGP SIGNATURE-



Accepted publicsuffix 20190723.1836-1 (source) into unstable

2019-07-24 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 24 Jul 2019 12:06:21 -0400
Source: publicsuffix
Architecture: source
Version: 20190723.1836-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 publicsuffix (20190723.1836-1) unstable; urgency=medium
 .
   * new upstream version
Checksums-Sha1:
 bbc6eebfa04a7976ea179f75da9ae69e9930cb5a 1406 publicsuffix_20190723.1836-1.dsc
 0d1a132a05ee8768f9e39ce14f133f6156699b05 93137 
publicsuffix_20190723.1836.orig.tar.gz
 fee2cde33fa94d9307050b82bd33dd569595c225 14408 
publicsuffix_20190723.1836-1.debian.tar.xz
 4f47ff58aae8f2fd258c18e1ac3d422b5fe9a42b 5851 
publicsuffix_20190723.1836-1_amd64.buildinfo
Checksums-Sha256:
 9c055eda03a21a7f227144238dd30a0b04c3d24f14b97b44ae9ae12fbeb38cb2 1406 
publicsuffix_20190723.1836-1.dsc
 e76d2c3bc1af6656be41fd01ffa68aac99822459d215c450b640c82cdcbc2c6a 93137 
publicsuffix_20190723.1836.orig.tar.gz
 c9ab96c8ad8686cb92413f5fa54ee7c36606f533e5d6a7a2178662b9efcabf3d 14408 
publicsuffix_20190723.1836-1.debian.tar.xz
 6909713b2460c091178b88693da07db63323f0a6185c0d97b8840b6e649d54d7 5851 
publicsuffix_20190723.1836-1_amd64.buildinfo
Files:
 fce0e9b1e1cbf08fec166435b4c21865 1406 net optional 
publicsuffix_20190723.1836-1.dsc
 95295b9265f5812bc445d1074fb12375 93137 net optional 
publicsuffix_20190723.1836.orig.tar.gz
 de1b4bab6ff3fc56d9f7f8b7fd2859b9 14408 net optional 
publicsuffix_20190723.1836-1.debian.tar.xz
 cd76b9d0e745fa3c4a8006bf67b47e83 5851 net optional 
publicsuffix_20190723.1836-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXTiCCQAKCRB2GBllKa5f
+H4UAQD47GF3wgSerTT1vzFVFvL9qFdWnenYmGqU05qKgjAJUgD+MItqsGBSPyyN
Qy7VkoLyIzWosmZkQ4hV+wvsbuy8PQU=
=ntC3
-END PGP SIGNATURE-



Accepted libassuan 2.5.3-7 (source) into unstable

2019-07-17 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 17 Jul 2019 11:09:10 -0400
Source: libassuan
Architecture: source
Version: 2.5.3-7
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG-Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 libassuan (2.5.3-7) unstable; urgency=medium
 .
   * export CPPFLAGS_FOR_BUILD as well
Checksums-Sha1:
 0d40c4f57e7801949efc227ddaa6d9d67eb94dee 2014 libassuan_2.5.3-7.dsc
 d009d417fa20df20f8dbd8ecee24e2d5a9c455bf 13732 libassuan_2.5.3-7.debian.tar.xz
 97cfe6c779f141f55cefb75d8f6a7c3041182510 6825 libassuan_2.5.3-7_amd64.buildinfo
Checksums-Sha256:
 f23373705283a028f78b8286e662c563fdbb520fab46f3e679023821653bf2fa 2014 
libassuan_2.5.3-7.dsc
 6a617dab31e06d3db0258e90f3ec87531978d4c28fd0c00f92641fae1d3ebb45 13732 
libassuan_2.5.3-7.debian.tar.xz
 4f99793155e7f99b21be215dee13b23ea3ae229604f3a7bf7f4a343524cbc6e6 6825 
libassuan_2.5.3-7_amd64.buildinfo
Files:
 37b0748262e2fd10156c376a80f43d6a 2014 libs optional libassuan_2.5.3-7.dsc
 7ae199e5c9278b4312e4db46a94a0abf 13732 libs optional 
libassuan_2.5.3-7.debian.tar.xz
 4d89a35e68061dfe80d0eaa4c3130632 6825 libs optional 
libassuan_2.5.3-7_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXS864AAKCRB2GBllKa5f
+GKqAP9/HUAi8utL8m9U2PpegaEiGZ9Mty3GhUCPJE4V45YOCgEAweyczL1nA9Lm
YiYqcsFEOgAWQFDutP80ruQJzZxUhAM=
=5zvj
-END PGP SIGNATURE-



Accepted publicsuffix 20190716.1812-1 (source) into unstable

2019-07-17 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 17 Jul 2019 00:16:20 -0400
Source: publicsuffix
Architecture: source
Version: 20190716.1812-1
Distribution: unstable
Urgency: medium
Maintainer: Daniel Kahn Gillmor 
Changed-By: Daniel Kahn Gillmor 
Changes:
 publicsuffix (20190716.1812-1) unstable; urgency=medium
 .
   * debhelper: move to version 12
   * standards-version: bump to 4.4.0 (no changes needed)
   * new upstream version
Checksums-Sha1:
 3493ca6287a927eb05bc70481e22645f530d2d3b 1406 publicsuffix_20190716.1812-1.dsc
 d44eb42af069183485a62919fc003c19991683c6 93095 
publicsuffix_20190716.1812.orig.tar.gz
 6b009ec8469ad41cdfadeb4b369c536b343b3703 14304 
publicsuffix_20190716.1812-1.debian.tar.xz
 36f94ee72aca748ddb1c3dcc308558e7774dbfc3 5806 
publicsuffix_20190716.1812-1_amd64.buildinfo
Checksums-Sha256:
 bb1e0831c7b780606698128e2b113b94c65a8063be1ba33fbb3c147b8a9129ea 1406 
publicsuffix_20190716.1812-1.dsc
 9d2f46b09b383ab96120d087aefa44fb69c58137f34b0e1f2b62d234f80d5a73 93095 
publicsuffix_20190716.1812.orig.tar.gz
 ee97ce42f328a020e1900d609df790eae11859c1d409c239413523198992fded 14304 
publicsuffix_20190716.1812-1.debian.tar.xz
 6939d4d534158a024fdf4bed942d2f31e83dde4557480eff2f59d1c6e5a47651 5806 
publicsuffix_20190716.1812-1_amd64.buildinfo
Files:
 f19570bb8046a82b7f3b6ff2ac11d520 1406 net optional 
publicsuffix_20190716.1812-1.dsc
 85d42c918b8768f42eeb8727359f3b33 93095 net optional 
publicsuffix_20190716.1812.orig.tar.gz
 6bf7349a365b232722bcdde6249aad73 14304 net optional 
publicsuffix_20190716.1812-1.debian.tar.xz
 c5aeb6ca3fd2dae0270bc42ed446b963 5806 net optional 
publicsuffix_20190716.1812-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXS6hHwAKCRB2GBllKa5f
+DPmAQD+ylNx2rYARpOnJeU7IL7pLw3Rsgy+JtgjMzFVlX0NMwEA01eAlMca3Dbu
fydsT9OFLrdN32pmyhCHR/2+ujUYPQg=
=iEu2
-END PGP SIGNATURE-



Accepted gnupg2 2.2.17-3 (source) into unstable

2019-07-16 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 16 Jul 2019 20:20:39 -0400
Source: gnupg2
Architecture: source
Version: 2.2.17-3
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 gnupg2 (2.2.17-3) unstable; urgency=medium
 .
   * avoid data loss when using keyservers (see https://dev.gnupg.org/T4628)
   * avoid O(N^2) operations when listing certificates with many sigs
   * d/tests/gpgv-win32: make more robust
   * avoid system CAs for HKPS pool
   * build-depend on gpgrt-tools for yat2m
Checksums-Sha1:
 d03eb2b7f023c4fb40cc4e4d58f2a00c5bd85110 3241 gnupg2_2.2.17-3.dsc
 016188a5770f5ba7095ad65aac80d17ad6579d86 64484 gnupg2_2.2.17-3.debian.tar.xz
 359ae4b27cc6d6f384c9d05014bf458fcf0102fc 19263 gnupg2_2.2.17-3_amd64.buildinfo
Checksums-Sha256:
 e8210d8ddf6b27f54776c2fee967e17bea6ba87fdc20620df015ae6a3df9ba4d 3241 
gnupg2_2.2.17-3.dsc
 29ca36fb03e5863812617b9480c7fc06ce7008b51d4f7a7f3abdbeb119e5ff62 64484 
gnupg2_2.2.17-3.debian.tar.xz
 b1b00721da4266b7795fcbbb79a2eb5217cf56508a9d619b1be49446e1785b26 19263 
gnupg2_2.2.17-3_amd64.buildinfo
Files:
 62c296838f89840eb1ce73bf945dbfb9 3241 utils optional gnupg2_2.2.17-3.dsc
 f6b17e9547c96879512ef70594d9c2a5 64484 utils optional 
gnupg2_2.2.17-3.debian.tar.xz
 1ef0baca1b594a84dd38c715ac3b27eb 19263 utils optional 
gnupg2_2.2.17-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXS5r3AAKCRB2GBllKa5f
+JLgAQDfZy9MEZK+mVeJXAUQ2bPARK+98GMNjfaMtKZEZzpJmAD/ck5ilTPzncdQ
YkO/kSAOIgVlgi3FGCTR1S8JaTqRIQc=
=WnYZ
-END PGP SIGNATURE-



Accepted libassuan 2.5.3-6 (source) into unstable

2019-07-16 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 16 Jul 2019 14:02:45 -0400
Source: libassuan
Architecture: source
Version: 2.5.3-6
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG-Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 libassuan (2.5.3-6) unstable; urgency=medium
 .
   * libassuan-mingw-w64-dev is Multi-Arch: foreign (thanks, Multi-Arch hinter!)
   * make d/tests/build-windows executable (thanks, LocutusOfBorg)
   * d/tests/build-windows: export WINESERVER (see #932201)
   * d/tests/build-windows: avoid stderr spew from wine initialization
   * avoid build log hardening check warnings for helper programs
Checksums-Sha1:
 e5f2312b95d774bed8d1574d8854b20940b97d3d 2014 libassuan_2.5.3-6.dsc
 4085c825ed115544f346b53a671648df0e7305c9 13700 libassuan_2.5.3-6.debian.tar.xz
 76245f9d0232b9425d07d7986ed540b4930c1547 6825 libassuan_2.5.3-6_amd64.buildinfo
Checksums-Sha256:
 762a27a17b4b6f218e0341ea75c5f4afc41757aceb4a393cede2fa451bd74937 2014 
libassuan_2.5.3-6.dsc
 ec182bf1ff7cf61bc1ce884e221d795891f01441fe17d8a6d09b2b7d0aa74fb5 13700 
libassuan_2.5.3-6.debian.tar.xz
 cf4780680f87ae0d794f57de1237565e9b553fb7a8d6692ea320b57ff5e6279d 6825 
libassuan_2.5.3-6_amd64.buildinfo
Files:
 e86d9c4c868efc0fd16053b9d3950744 2014 libs optional libassuan_2.5.3-6.dsc
 9793eb17a2c52dc0c12c550deb10b805 13700 libs optional 
libassuan_2.5.3-6.debian.tar.xz
 8c655019b8842f2490f2e8bea100932d 6825 libs optional 
libassuan_2.5.3-6_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXS4SKgAKCRB2GBllKa5f
+OX+AQDyT/3EaRiNZDJvbedDlNHvOncodfQQorZfPQhPhixoUgEAjJYYsYfX9MfK
r0FsYZSWK2e7d4bnD2BiL9iMvMenegA=
=SBiI
-END PGP SIGNATURE-



Accepted libgpg-error 1.36-7 (source) into unstable

2019-07-16 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 16 Jul 2019 13:32:03 -0400
Source: libgpg-error
Architecture: source
Version: 1.36-7
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 libgpg-error (1.36-7) unstable; urgency=medium
 .
   * d/tests/windows: specify WINESERVER
   * d/tests/windows: initialize wine to get stderr spam out of the way
   * avoid build log hardening check warnings for helper programs
Checksums-Sha1:
 74f3a96a9d767c52ad893a06fb34a3c6104e3f32 2220 libgpg-error_1.36-7.dsc
 efb44ff48420216279b08947807d98e94a12f665 17208 
libgpg-error_1.36-7.debian.tar.xz
 b1805a48d947114f272df2ee39157d5d1fc9d3b2 8148 
libgpg-error_1.36-7_amd64.buildinfo
Checksums-Sha256:
 08d532f83371e4e2def8ba8c80ab3c830eb2a749a9d40d7a529ee8cf3e058bce 2220 
libgpg-error_1.36-7.dsc
 2ece6be72b1cea60990d75f7806f8dabb94114c89367b09fe8964cd343f5aebd 17208 
libgpg-error_1.36-7.debian.tar.xz
 d45433d04a271309c9199ab875e3ca507c858981baf15554dad1342535df2267 8148 
libgpg-error_1.36-7_amd64.buildinfo
Files:
 d21f7b4625eaed0b9c17857c0ede1e1b 2220 libs optional libgpg-error_1.36-7.dsc
 616eb98a943f3d9ba1094e906d67e2cd 17208 libs optional 
libgpg-error_1.36-7.debian.tar.xz
 c88693718ceb2a204645e826cb58cae0 8148 libs optional 
libgpg-error_1.36-7_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXS4NigAKCRB2GBllKa5f
+J1rAQCmJMC2jK9k2yHyNPWiOo8rlKJzdmX8mVkmGqi1QesvwgD/a/StVXnnxA9O
32vVABdcyg3cYIbra/zv36+jBpAmwQ8=
=0hh/
-END PGP SIGNATURE-



Accepted rust-ascii-canvas 2.0.0-1 (source amd64) into unstable, unstable

2019-07-16 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 22 May 2019 12:16:05 -0400
Source: rust-ascii-canvas
Binary: librust-ascii-canvas-dev
Architecture: source amd64
Version: 2.0.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 

Changed-By: Daniel Kahn Gillmor 
Description:
 librust-ascii-canvas-dev - Simple canvas for drawing lines and styled text and 
emitting to t
Changes:
 rust-ascii-canvas (2.0.0-1) unstable; urgency=medium
 .
   * Package ascii-canvas 2.0.0 from crates.io using debcargo 2.2.10
Checksums-Sha1:
 fdb19f8394f20678bba4969a1cc724037d0d3964 1551 rust-ascii-canvas_2.0.0-1.dsc
 d43d0ffd5d3736f2aa0eba25dded724e10d21bab 10347 
rust-ascii-canvas_2.0.0.orig.tar.gz
 310f6b8a622a3378692c6a3079660d62d33072a0 2396 
rust-ascii-canvas_2.0.0-1.debian.tar.xz
 d1f78bf4eeb57ec4151af428f3ca41611893a6e7 11700 
librust-ascii-canvas-dev_2.0.0-1_amd64.deb
 50f5183186e2361f9e9a86caaf9a40861d64cfb4 6931 
rust-ascii-canvas_2.0.0-1_amd64.buildinfo
Checksums-Sha256:
 f1a0fb6507f86973c7c330d19d6d3b5197b8169734cdbc8cd6ec0c0ae1ed9aa6 1551 
rust-ascii-canvas_2.0.0-1.dsc
 35b3dc5ac1edb913d269b8d3f6891de42d627d8c28db308e836fea1dd2feae7b 10347 
rust-ascii-canvas_2.0.0.orig.tar.gz
 2d052a67b3873fbd46a731e96e241963d258ef51516a21f0d7fe89f58a62fc33 2396 
rust-ascii-canvas_2.0.0-1.debian.tar.xz
 1b4edd1752810a3a794ee17f36374bcdcb2124be3279cc55017bc493a2428621 11700 
librust-ascii-canvas-dev_2.0.0-1_amd64.deb
 43749969db04968d278e35ca2389327a5d16e145b1aa17a80c89e5c1008ccffa 6931 
rust-ascii-canvas_2.0.0-1_amd64.buildinfo
Files:
 f31153e2d6dadfa2de7a0c1d0975abb0 1551 rust optional 
rust-ascii-canvas_2.0.0-1.dsc
 31b42c5553e675f9bf1c7e0659c65ffd 10347 rust optional 
rust-ascii-canvas_2.0.0.orig.tar.gz
 850f0a3ca1c6e32d8470ec6f0f08c778 2396 rust optional 
rust-ascii-canvas_2.0.0-1.debian.tar.xz
 552cb9996885e5dabd0b60af3f79873b 11700 rust optional 
librust-ascii-canvas-dev_2.0.0-1_amd64.deb
 e7efc80340b0425359f0acfe69727b4a 6931 rust optional 
rust-ascii-canvas_2.0.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXOV2HQAKCRB2GBllKa5f
+EfeAP9WrPPN0Z+7U1W0Mc6Kbi+RkGY193/WpNw6edfaFqW7KgEAuw61Ziar/fRh
r9zYNZgvPsil93lfzHSJG/eaLf6vGAo=
=0W62
-END PGP SIGNATURE-



Accepted libassuan 2.5.3-5 (source) into unstable

2019-07-15 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 15 Jul 2019 18:36:06 -0400
Source: libassuan
Architecture: source
Version: 2.5.3-5
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG-Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 libassuan (2.5.3-5) unstable; urgency=medium
 .
   * d/tests/build-windows: clean up
Checksums-Sha1:
 1554d2d166ca3be04511b79858c051702fb49088 2014 libassuan_2.5.3-5.dsc
 9b626458d8f22b64a6c21b450e0abb11807a7522 13184 libassuan_2.5.3-5.debian.tar.xz
 ee4db509d6cecd302cc5d4930f06c58b8bf73251 5186 
libassuan_2.5.3-5_source.buildinfo
Checksums-Sha256:
 4924dc2f11b175e0af93eeb99d69a1b20e13c2235fd425d95169564450b195a1 2014 
libassuan_2.5.3-5.dsc
 4e06a751165aef346d9f4c6f9fbdac6788e731eeec1a6a342da19ac6134d 13184 
libassuan_2.5.3-5.debian.tar.xz
 4153f12af6a7327f2192ae2f9b6141db904ba2aa64e58ec43d6746ee4801998b 5186 
libassuan_2.5.3-5_source.buildinfo
Files:
 411744d403b0a63a37876c5d822c4d14 2014 libs optional libassuan_2.5.3-5.dsc
 5161268477ecd33cc13178f406ba033a 13184 libs optional 
libassuan_2.5.3-5.debian.tar.xz
 6dfbc1316aa5c8ab5b326b750b66cd70 5186 libs optional 
libassuan_2.5.3-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXSz/8gAKCRB2GBllKa5f
+K/5APwPfkUDrOUTTn3vkCrdpVeBxD+O+eZMhC7L7VWuBJ1aFwEApLwhc7oAin4t
DPFUa7pjOx1/SE/AKng8vI1fxXm+/QM=
=3+TY
-END PGP SIGNATURE-



Accepted libgpg-error 1.36-6 (source) into unstable

2019-07-15 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 15 Jul 2019 18:30:39 -0400
Source: libgpg-error
Architecture: source
Version: 1.36-6
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 libgpg-error (1.36-6) unstable; urgency=medium
 .
   * d/tests/windows: use full path for wine64
Checksums-Sha1:
 be73131c94d5dba3c4b6db669db65eaf89197ef8 2220 libgpg-error_1.36-6.dsc
 6f1f38dab2c9d7243233f41be5c4da6ec6e9b395 16556 
libgpg-error_1.36-6.debian.tar.xz
 7be8354238a6faf978b072681d551ff8dafb14ac 5480 
libgpg-error_1.36-6_source.buildinfo
Checksums-Sha256:
 cd62d6c7e25cf5c985bb81831894053f88f3ed3dba231e2b733da13785ac0567 2220 
libgpg-error_1.36-6.dsc
 46312c5c60d6d285b4eadbaf1664fccf42ba3a37e93bc85f49828b76ba5f9e38 16556 
libgpg-error_1.36-6.debian.tar.xz
 5dbca5f7e6855e99684d6f462e67569b0e3bb63db9f5637cc4d7f8bd764bc20a 5480 
libgpg-error_1.36-6_source.buildinfo
Files:
 14a38ddd882f8c3e911ab43290343140 2220 libs optional libgpg-error_1.36-6.dsc
 1ac3241c0dfcac6936b6981ba196fb51 16556 libs optional 
libgpg-error_1.36-6.debian.tar.xz
 2f6a9720ab7cb681188abd49a99a38f0 5480 libs optional 
libgpg-error_1.36-6_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXSz+sAAKCRB2GBllKa5f
+IfSAQCqrj9hwoC6OsvhFAUtCNdc0n2iTmlsk3i6bQwO/CjTjwD/YEaDC+cWbO8P
C5JlwxwB+6A01gIV8JEw3mqjRS36uwY=
=65MU
-END PGP SIGNATURE-



Accepted libassuan 2.5.3-4 (source) into unstable

2019-07-15 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 15 Jul 2019 13:25:20 -0400
Source: libassuan
Architecture: source
Version: 2.5.3-4
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG-Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 libassuan (2.5.3-4) unstable; urgency=medium
 .
   * correct autopkgtest control
Checksums-Sha1:
 185062e070235701a0d51cf38e80218efbd3e98b 2013 libassuan_2.5.3-4.dsc
 ffb5d38c0c5c792c65458662577bd21c2eb6e90e 13168 libassuan_2.5.3-4.debian.tar.xz
 8250a20e7b964a492fef99f362069ab6cb647a50 5186 
libassuan_2.5.3-4_source.buildinfo
Checksums-Sha256:
 4fba28ffe99a5ac0b8bbc4f523432c8f20fcf617337734b8710a9168cd7f9020 2013 
libassuan_2.5.3-4.dsc
 ed199fb4b49686c50e2e2a50611ebc5c0bb85f627fff09863a83828ccc533400 13168 
libassuan_2.5.3-4.debian.tar.xz
 43d570d5b00a8e010304592c799cc3a2650a0dc0cb812be2c21d80428e0a6d5c 5186 
libassuan_2.5.3-4_source.buildinfo
Files:
 35f627fdcf1685db723f78779a2da2a7 2013 libs optional libassuan_2.5.3-4.dsc
 0a7395c56b4ff74926ab9b7c655f41e3 13168 libs optional 
libassuan_2.5.3-4.debian.tar.xz
 315a2c97f8775704fed17fe527a3ca8b 5186 libs optional 
libassuan_2.5.3-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXSy3IwAKCRB2GBllKa5f
+G44AQDuL6REnUMSYVJ2njvYPkYjPTCam4ZazAx60qUcwjoMogD+OwwE63mVxhTg
tu1u64vsTtEbkt/FX93x1IoF4VCdwgI=
=rRIW
-END PGP SIGNATURE-



Accepted libgpg-error 1.36-5 (source) into unstable

2019-07-15 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 15 Jul 2019 13:22:11 -0400
Source: libgpg-error
Architecture: source
Version: 1.36-5
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 libgpg-error (1.36-5) unstable; urgency=medium
 .
   * d/tests: add test-name for windows invocations
   * d/tests/windows: clean up and normalize
Checksums-Sha1:
 587e6149036ca328173624de9a2df42ed930c1d2 2220 libgpg-error_1.36-5.dsc
 df38b4ef37b2fc14a6f018eab7ac418fdb8b4d4e 16524 
libgpg-error_1.36-5.debian.tar.xz
 d401431600d79000f25461b93d29b74e3220a115 5480 
libgpg-error_1.36-5_source.buildinfo
Checksums-Sha256:
 def2e4a1a51a88675eeed45e5e28140b655a2d7cc0ba9e228719d506fd882cbd 2220 
libgpg-error_1.36-5.dsc
 31406555ed7840d79024bbccedda15b6dd2e13a9393c31db50110accdc0ab371 16524 
libgpg-error_1.36-5.debian.tar.xz
 e78759106b64fd3beb616cdc18242d258a8f1789d816603a7d09c97a28c2ac67 5480 
libgpg-error_1.36-5_source.buildinfo
Files:
 ada93e73b907b69b934ba98b143ebdad 2220 libs optional libgpg-error_1.36-5.dsc
 fb54c43115696b95d85fc6ac2b492586 16524 libs optional 
libgpg-error_1.36-5.debian.tar.xz
 29902b584ba8212894df6cbf8a7993e0 5480 libs optional 
libgpg-error_1.36-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXSy2cQAKCRB2GBllKa5f
+AiRAPwNxmJSHPmrsm953nBwIi0gVv+0YWAfUZ8IMkdwLwG7ZgD8DG+HgHn9Z1RD
NFHHsnthrv16fDWzJC7T5iP+m3jf5w0=
=VzxM
-END PGP SIGNATURE-



Accepted libassuan 2.5.3-3 (source) into unstable

2019-07-15 Thread Daniel Kahn Gillmor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 15 Jul 2019 00:53:15 -0400
Source: libassuan
Architecture: source
Version: 2.5.3-3
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuPG-Maintainers 
Changed-By: Daniel Kahn Gillmor 
Changes:
 libassuan (2.5.3-3) unstable; urgency=medium
 .
   * d/control: fix up Vcs-Git branch
   * Standards-Version: bump to 4.4.0 (no changes needed)
   * Development packages should depend on corresponding libgpg-error-dev
   * libassuan-ming64-w64-dev now Recommends: mingw-w64
   * d/tests/build: improve ordering for as-needed linkers
   * d/tests/build-windows: add tests for exercising windows builds
Checksums-Sha1:
 d78defe5ef2ad17203c44f7a96b9fb2cf5b7a911 2013 libassuan_2.5.3-3.dsc
 49dc9e07929e2f470643e475bcefc5004080e545 13144 libassuan_2.5.3-3.debian.tar.xz
 7d243e2278bee1aa62c70aa876ec133ae386723c 5189 
libassuan_2.5.3-3_source.buildinfo
Checksums-Sha256:
 90a4265a62ebb224e14624bb0a628a94c4dc973456f149322a505bf64b532389 2013 
libassuan_2.5.3-3.dsc
 0a7ea2abdaa88401dc45778c34066003005fdca12f3af44208b132cef611d05b 13144 
libassuan_2.5.3-3.debian.tar.xz
 f41006096c14e83a2b6cd30b2b320d69bc1209dd7001da3541b3f1c5e9e01ae3 5189 
libassuan_2.5.3-3_source.buildinfo
Files:
 6b15bf6c4848cf13c8174841bd67ecba 2013 libs optional libassuan_2.5.3-3.dsc
 a248b0997273e97ae80f8262f5be82d9 13144 libs optional 
libassuan_2.5.3-3.debian.tar.xz
 d8fab815b15d2bb00f8db941a297b36f 5189 libs optional 
libassuan_2.5.3-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iHUEARYKAB0WIQTJDm02IAobkioVCed2GBllKa5f+AUCXSwG3gAKCRB2GBllKa5f
+AzhAQC3Q/0Z69bJVZo7yNuGQ5sPlxpbkS6rSYVYpbVz1zH+BQEAifLl2V2XhRaN
sZaJ0XHTUNiYT2QKC+HsWEkF3DHFZg4=
=YFbc
-END PGP SIGNATURE-



  1   2   3   4   5   6   7   8   9   10   >