Bug#1066184: ITP: networking-generic-switch -- OpenStack virtual network service - networking-generic-switch

2024-03-13 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: networking-generic-switch
  Version : 7.2.0
  Upstream Contact: OpenStack Foundation 
* URL : https://github.com/openstack/networking-generic-switch
* License : Apache-2.0
  Programming Lang: Python
  Description : OpenStack virtual network service - 
networking-generic-switch

 Neutron provides an API to dynamically request and configure virtual networks.
 These networks connect "interfaces" from other OpenStack services (such as
 vNICs from Nova VMs). The Neutron API supports extensions to provide advanced
 network capabilities, including QoS, ACLs, and network monitoring.
 .
 This package provides the networking-generic-switch ML2 plugin.



Bug#904233: Adoption of persp-projectile

2024-03-13 Thread Xiyue Deng
Control: tags -1 pending

Sean Whitton  writes:

> Hello,
>
> On Tue 12 Mar 2024 at 08:47pm -07, Xiyue Deng wrote:
>
>> Sean Whitton  writes:
>>
>>> Hello Xiyue,
>>>
>>> Do you still intend to adopt persp-projectile?
>>>
>>> Thanks.
>>
>> Yes.  And it seems I forgot to close this ITA bug in the Changelog.  Can
>> we close this directly instead?
>
> We could, but I don't think you actually adopted it :)

Ah indeed.  I've pushed a few more commits with one that adds myself as
an uploader.  So tagging this bug pending and waiting for the next upload.

-- 
Xiyue Deng



Processed: Re: Bug#904233: Adoption of persp-projectile

2024-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 pending
Bug #904233 [wnpp] ITA: persp-projectile -- integrate perspective.el with 
projectile
Added tag(s) pending.

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



Bug#1063380: ITP: libuio -- Linux Kernel UserspaceIO helper library

2024-03-13 Thread Traut Manuel LCPF-CH
> On Thu, Mar 07, 2024 at 05:02:29PM +0200, Peter Pentchev wrote:
>> On Thu, Mar 07, 2024 at 03:25:01PM +0100, Manuel Traut wrote:
>>> On 7 Feb 2024, at 18:27, Dima Kogan  wrote:
>>>
>>> Hi. Thanks for your contribution. I looked at the upstream code a tiny
>>> bit, and it looks like it might have portability bug, at least on
>>> big-endian architectures. For instance:
>>>
>>> https://github.com/missinglinkelectronics/libuio/blob/6ef3d8d096a641686bfdd112035aa04aa16fe81a/irq.c#L78
>>>
>>> This assumes that sizeof(long)==4. Maybe this is benign, but it would be
>>> nice to fix. Are you upstream or do you know upstream? Can yall fix
>>> these?
>>>
>> The kernel expects a 4 byte write here, since unsigned long is defined as at 
>> least 32 bit this shall work on all architectures.
>>
>> If your concern is about endianess this is not in the current scope of 
>> libuio and needs to be addressed by a higher layer.
>>
>> I am very familiar with library and in close contact with upstream.
>>
> In the case of uio_disable_irq() the bug is nicely hidden by the fact
> that tmp is guaranteed to be all-zeroes. However, consider the previous
> function in the file, uio_enable_irq(). If sizeof(unsigned long) == 8,
> then the "tmp" variable's value of 1 will be encoded in memory as
> 8 bytes containing the values 0, 0, 0, 0, 0, 0, 0, and 1 respectively.
> When uio_enable_irq() calls write(..., &tmp, 4), it will only send
> the first four bytes to the kernel - and they are 0, 0, 0, and... 0.
> So it turns out that uio_disable_irq() and uio_enable_irq() do
> exactly the same - send a 32-bit zero value to the kernel.
>
> ...of course, this will only happen on a big-endian system, as
> Dima Kogan was concerned about. On a little-endian system, this
> will work by chance.
>
> Is this the expected behavior indeed?

No it is not :) Thanks for the detailed explanation.

Looks this fix sane to you?
https://github.com/manut/libuio/commit/1edcf262fbfaf0b7f8519875ed5b357964dd1e55

I am not sure if users also expect an automatic conversion for the read/write 
functions:
https://github.com/manut/libuio/commit/d0319169359bffc73374f1011e942702e9bafb1e

It will be somehow inconsistent since a user could also access the device 
memory by pointer:
https://github.com/manut/libuio/blob/add-ci/mem.c#L93
and than needs to take care on the endianess by its own anyway.

Bug#1066188: ITP: golang-github-schollz-pake -- Generate a strong secret over an insecure channel

2024-03-13 Thread Guilherme Puida Moreira
Package: wnpp
Severity: wishlist
Owner: Guilherme Puida Moreira 

* Package name: golang-github-schollz-pake
  Version : 3.0.5-1
  Upstream Author : Zack
* URL : https://github.com/schollz/pake
* License : Expat
  Programming Lang: Go
  Description : Generate a strong secret over an insecure channel

 Password-authenticated key exchange (PAKE) allows two parties to generate a
 mutual secret key by using a weak key that is known to both beforehand (e.g
 via some other channel of communication).
 .
 This library exposes a simple API for an implementation of PAKE.

This is a dependency of croc, which I'm also working on packaging.



Bug#1063380: ITP: libuio -- Linux Kernel UserspaceIO helper library

2024-03-13 Thread Peter Pentchev
On Wed, Mar 13, 2024 at 10:40:51AM +, Traut Manuel LCPF-CH wrote:
> > On Thu, Mar 07, 2024 at 05:02:29PM +0200, Peter Pentchev wrote:
> >> On Thu, Mar 07, 2024 at 03:25:01PM +0100, Manuel Traut wrote:
> >>> On 7 Feb 2024, at 18:27, Dima Kogan  wrote:
> >>>
> >>> Hi. Thanks for your contribution. I looked at the upstream code a tiny
> >>> bit, and it looks like it might have portability bug, at least on
> >>> big-endian architectures. For instance:
> >>>
> >>> https://github.com/missinglinkelectronics/libuio/blob/6ef3d8d096a641686bfdd112035aa04aa16fe81a/irq.c#L78
> >>>
> >>> This assumes that sizeof(long)==4. Maybe this is benign, but it would be
> >>> nice to fix. Are you upstream or do you know upstream? Can yall fix
> >>> these?
> >>>
> >> The kernel expects a 4 byte write here, since unsigned long is defined as 
> >> at least 32 bit this shall work on all architectures.
> >>
> >> If your concern is about endianess this is not in the current scope of 
> >> libuio and needs to be addressed by a higher layer.
> >>
> >> I am very familiar with library and in close contact with upstream.
> >>
> > In the case of uio_disable_irq() the bug is nicely hidden by the fact
> > that tmp is guaranteed to be all-zeroes. However, consider the previous
> > function in the file, uio_enable_irq(). If sizeof(unsigned long) == 8,
> > then the "tmp" variable's value of 1 will be encoded in memory as
> > 8 bytes containing the values 0, 0, 0, 0, 0, 0, 0, and 1 respectively.
> > When uio_enable_irq() calls write(..., &tmp, 4), it will only send
> > the first four bytes to the kernel - and they are 0, 0, 0, and... 0.
> > So it turns out that uio_disable_irq() and uio_enable_irq() do
> > exactly the same - send a 32-bit zero value to the kernel.
> >
> > ...of course, this will only happen on a big-endian system, as
> > Dima Kogan was concerned about. On a little-endian system, this
> > will work by chance.
> >
> > Is this the expected behavior indeed?
> 
> No it is not :) Thanks for the detailed explanation.
> 
> Looks this fix sane to you?
> https://github.com/manut/libuio/commit/1edcf262fbfaf0b7f8519875ed5b357964dd1e55

Yeah, after I sent the e-mails I realized that I forgot to mention that
using uint32_t would be one of the best ways to fix that.

Thanks for the fast reaction!

> I am not sure if users also expect an automatic conversion for the read/write 
> functions:
> https://github.com/manut/libuio/commit/d0319169359bffc73374f1011e942702e9bafb1e
> 
> It will be somehow inconsistent since a user could also access the device 
> memory by pointer:
> https://github.com/manut/libuio/blob/add-ci/mem.c#L93
> and than needs to take care on the endianess by its own anyway.

...and this part I have no opinion about. I don't have any realistic
idea about how people actually use libuio (or how they will use it),
and I do not think that I will use it soon, so this should be left for
others to decide.

Thanks again for paying attention to the comments!

G'luck,
Peter

-- 
Peter Pentchev  r...@ringlet.net r...@debian.org p...@storpool.com
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint 2EE7 A7A5 17FC 124C F115  C354 651E EFB0 2527 DF13


signature.asc
Description: PGP signature


Bug#1065479: RFA: gtk-gnutella -- The Most Efficient Gnutella Client

2024-03-13 Thread Facundo Gaich
On Tue, 5 Mar 2024 09:42:59 +0100 Lucio Marinelli 
wrote:
> Package: wnpp
> Severity: normal
>
> I am part of gtk-gnutella developing team and would like to add again
> the deb package to Debian since it has been removed and no longer part
> of the distribution: https://tracker.debian.org/pkg/gtk-gnutella
>
> Gtk-gnutella has been recently updated to version 1.2.3, this is the
> website: https://gtk-gnutella.sourceforge.io
>
> --
> Lucio Marinelli
>
>

Hi Lucio,

Maybe you'll want to retitle this to an RFP since the package no longer
exists in
Debian and add the relevant info [1]

[1]: https://www.debian.org/devel/wnpp/


Bug#1066808: ITP: gtk-gnutella -- The Most Efficient Gnutella Client

2024-03-13 Thread Lucio Marinelli

Package: wnpp
Severity: whishlist

* Package name: gtk-gnutella
  Version : 1.2.3
  Upstream Author : Raphael Manfredi
* URL : https://gtk-gnutella.sourceforge.io
* License : GPL
  Programming Lang: C++
  Description : P2P Gnutella server/client

This is the follow-up of bug 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065479


gtk-gnutella is a server/client for the Gnutella peer-to-peer network. 
It was previously included in Debian repository.
The source code is hosted in Github: 
https://github.com/gtk-gnutella/gtk-gnutella
I already prepared the .deb package here: 
https://sourceforge.net/projects/gtk-gnutella/files/gtk-gnutella/1.2.3/


--
Lucio Marinelli



Bug#1050339: marked as done (ITP: python-annotated-types - Reusable constraint types to use with typing.Annotated)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:20 +
with message-id 
and subject line Bug#1050339: fixed in python-annotated-types 0.6.0-1
has caused the Debian Bug report #1050339,
regarding ITP: python-annotated-types - Reusable constraint types to use with 
typing.Annotated
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

* Package name: python-annotated-types
  Version : 0.5.0
  Upstream Contact:  Zac Hatfield-Dodds 
* URL : https://github.com/annotated-types/annotated-types/
* License : MIT
  Programming Lang: Python
  Description : metadata objects for python annotations

>From GitHub:

PEP-593 added typing.Annotated as a way of adding context-specific metadata to
existing types, and specifies that Annotated[T, x] should be treated as T by
any tool or library without special logic for x.
This package provides metadata objects which can be used to represent common
constraints such as upper and lower bounds on scalar values and collection
sizes, a Predicate marker for runtime checks, and descriptions of how we intend
these metadata to be interpreted. In some cases, we also note alternative
representations which do not require this package.


Not really important to me, but python3-iminuit has a possible test case using
this package.
--- End Message ---
--- Begin Message ---
Source: python-annotated-types
Source-Version: 0.6.0-1
Done: Edward Betts 

We believe that the bug you reported is fixed in the latest version of
python-annotated-types, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1050...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Edward Betts  (supplier of updated python-annotated-types 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 09 Mar 2024 10:52:08 +0100
Source: python-annotated-types
Binary: python3-annotated-types
Architecture: source all
Version: 0.6.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Edward Betts 
Description:
 python3-annotated-types - Reusable constraint types to use with 
typing.Annotated
Closes: 1050339
Changes:
 python-annotated-types (0.6.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1050339)
Checksums-Sha1:
 34f28701f906ecf280941ead794feb74dc7b4e75 2245 
python-annotated-types_0.6.0-1.dsc
 4c5ff25a39965e30458cdb89e7897afd1f5339f3 13934 
python-annotated-types_0.6.0.orig.tar.gz
 b1a633a688dcb94d533df79ef246d33d4572df11 2740 
python-annotated-types_0.6.0-1.debian.tar.xz
 341c56b3c51a93ebf430c95c7d8f28861fe3af15 7491 
python-annotated-types_0.6.0-1_amd64.buildinfo
 d7ce9a3f6a4baec4186d68e6ae5ae4b237ee6315 16840 
python3-annotated-types_0.6.0-1_all.deb
Checksums-Sha256:
 c29571286808b9079d972aba2de6b25de6be4091bfebc177ae9d59547b074e0f 2245 
python-annotated-types_0.6.0-1.dsc
 552235e78916907f21a6c6f57abc2f77bb9a8a42379f2e9475bdb29f310b83eb 13934 
python-annotated-types_0.6.0.orig.tar.gz
 74935c81a08c8632c01f0f261dc2e7c3fb452ed933633c042522d5f4773a9f21 2740 
python-annotated-types_0.6.0-1.debian.tar.xz
 e09d728207c40572a643ffb880eabc08c2df54d7dff0aeaba2511086fd62748a 7491 
python-annotated-types_0.6.0-1_amd64.buildinfo
 302c7bc38b442df6ad1c5c5b4ce3e482d2336a3119dcba8448e333f7d454853a 16840 
python3-annotated-types_0.6.0-1_all.deb
Files:
 3b979360fb01e31a052960d1af98fb7c 2245 python optional 
python-annotated-types_0.6.0-1.dsc
 09e1e2b535a4daa630978724b78dcec8 13934 python optional 
python-annotated-types_0.6.0.orig.tar.gz
 e5caf9e92ef66cfa4eaecbcc623a76b7 2740 python optional 
python-annotated-types_0.6.0-1.debian.tar.xz
 a60d6accc67fe20bdac4531a7dd5c30a 7491 python optional 
python-annotated-types_0.6.0-1_amd64.buildinfo
 1a921b5b3386436fcece2e6f0e597f61 16840 python optional 
python3-annotated-types_0.6.0-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE+4rPp4xyYInDitAmlgWhCYxjuSoFAmXsMmAACgkQlgWhCYxj
uSqo4w//SrZ86fugmLkrJFR+yxnngqRBO3imEua+7VJju0Pw3/07SIorA

Bug#1063496: marked as done (ITP: golang-github-rluisr-mysqlrouter-go -- Go client for MySQL router)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:12 +
with message-id 
and subject line Bug#1063496: fixed in golang-github-rluisr-mysqlrouter-go 
1.2.0-1
has caused the Debian Bug report #1063496,
regarding ITP: golang-github-rluisr-mysqlrouter-go -- Go client for MySQL router
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1063496: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1063496
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Lena Voytek 
X-Debbugs-Cc: debian-de...@lists.debian.org, l...@voytek.dev

* Package name: golang-github-rluisr-mysqlrouter-go
  Version : 1.2.0
  Upstream Author : Hasegawa Takuya 
* URL : https://github.com/rluisr/mysqlrouter-go
* License : Apache
  Programming Lang: Go
  Description : Go client for MySQL router

mysqlrouter-go acts as a client for MySQL Router using its
rest API. It provides a useful way to interact with MySQL
databases in Go.

I intend to actively maintain this package within the Debian Go
Packaging team.
--- End Message ---
--- Begin Message ---
Source: golang-github-rluisr-mysqlrouter-go
Source-Version: 1.2.0-1
Done: Lena Voytek 

We believe that the bug you reported is fixed in the latest version of
golang-github-rluisr-mysqlrouter-go, which is due to be installed in the Debian 
FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1063...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Lena Voytek  (supplier of updated 
golang-github-rluisr-mysqlrouter-go package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 09 Feb 2024 08:10:14 -0700
Source: golang-github-rluisr-mysqlrouter-go
Binary: golang-github-rluisr-mysqlrouter-go-dev
Architecture: source all
Version: 1.2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Lena Voytek 
Description:
 golang-github-rluisr-mysqlrouter-go-dev - client for mysql-router (library)
Closes: 1063496
Changes:
 golang-github-rluisr-mysqlrouter-go (1.2.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #1063496)
Checksums-Sha1:
 a46e16fa82b2e0316261d8c5f5bb22c5c849f79c 2318 
golang-github-rluisr-mysqlrouter-go_1.2.0-1.dsc
 1a13206c572e000cf2b6ba7b7555c483c3b8062c 18994 
golang-github-rluisr-mysqlrouter-go_1.2.0.orig.tar.gz
 eadd5d3adf03bdb6078edbbca8d296d0cc42539a 2072 
golang-github-rluisr-mysqlrouter-go_1.2.0-1.debian.tar.xz
 e7fe7a11d8ed7a450f64ab7e610ae4558e25aa17 4956 
golang-github-rluisr-mysqlrouter-go-dev_1.2.0-1_all.deb
 c4026f853892413a24745cc6a7573cd611901d21 7013 
golang-github-rluisr-mysqlrouter-go_1.2.0-1_amd64.buildinfo
Checksums-Sha256:
 ca6058ed389229ab8278850cac3f3e2884a6ad2c9a684903956221aab6cdd9c3 2318 
golang-github-rluisr-mysqlrouter-go_1.2.0-1.dsc
 268ddfd740398f067a66f6bfb281d2c6e96e46c5d2ac8c6f79c1719cc5656ca1 18994 
golang-github-rluisr-mysqlrouter-go_1.2.0.orig.tar.gz
 06f18e82c976685d669d64e20aeae0700f59a831c71c7a191e08c89a5deade01 2072 
golang-github-rluisr-mysqlrouter-go_1.2.0-1.debian.tar.xz
 5d19ed4a3cedccef9f4bfb7d269a0534eb1c585ae02d291800f1c121cf958cfa 4956 
golang-github-rluisr-mysqlrouter-go-dev_1.2.0-1_all.deb
 0e35f5e602d210ae4eb788e3293f7d024f844ff392df6981a2292c508cd77cf6 7013 
golang-github-rluisr-mysqlrouter-go_1.2.0-1_amd64.buildinfo
Files:
 68e7bc4177a0cefc64c137d6173b3a03 2318 golang optional 
golang-github-rluisr-mysqlrouter-go_1.2.0-1.dsc
 fb7b37d8d84d9d5a3d9c8c51db0f0179 18994 golang optional 
golang-github-rluisr-mysqlrouter-go_1.2.0.orig.tar.gz
 7742e92a0eb4882b2b55c28158bccd76 2072 golang optional 
golang-github-rluisr-mysqlrouter-go_1.2.0-1.debian.tar.xz
 a1f6a39840842c61e1319861a5bff5a0 4956 golang optional 
golang-github-rluisr-mysqlrouter-go-dev_1.2.0-1_all.deb
 bce948e4dc32e34c07d980d313c4597e 7013 golang optional 
golang-github-rluisr-mysqlrouter-go_1.2.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEbJ0QSEqa5Mw4X3xxgj6WdgbDS5YFAmXgOqYACgkQgj6WdgbD
S5aJqw//Us0/daCyTe6rWpg60gBB7wnFH2Jt5nG9f+5E/Acqj3jR193AZUYY7GxS
3U0ssmqGjhpNasOF5MC43VHYZGautkEOOzC56in7PI+52zCuoCbKBqQNJGnEjwVF
2Sbpho6EK8fDkxNFHEqzNfEFYvFcTN3xYlzzS10xK6NVlnS1vWig3jR24IWuPkF6
CNo/MgA7cKRJuuwi

Bug#1064153: marked as done (ITP: golang-k8s-metrics -- Kubernetes metrics-related API types and clients)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:14 +
with message-id 
and subject line Bug#1064153: fixed in golang-k8s-metrics 0.29.0-1
has caused the Debian Bug report #1064153,
regarding ITP: golang-k8s-metrics -- Kubernetes metrics-related API types and 
clients
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

* Package name: golang-k8s-metrics
  Version : 0.29.0-1
  Upstream Author : Kubernetes
* URL : https://github.com/kubernetes/metrics
* License : Apache-2.0
  Programming Lang: Go
  Description : Kubernetes metrics-related API types and clients

 This package contains API type definitions and client code for the
 Kubernetes metrics APIs that Kubernetes makes use of.
--- End Message ---
--- Begin Message ---
Source: golang-k8s-metrics
Source-Version: 0.29.0-1
Done: Arthur Diniz 

We believe that the bug you reported is fixed in the latest version of
golang-k8s-metrics, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Arthur Diniz  (supplier of updated golang-k8s-metrics 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 17 Feb 2024 19:04:38 +
Source: golang-k8s-metrics
Binary: golang-k8s-metrics-dev
Architecture: source all
Version: 0.29.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Arthur Diniz 
Description:
 golang-k8s-metrics-dev - Kubernetes metrics-related API types and clients 
(library)
Closes: 1064153
Changes:
 golang-k8s-metrics (0.29.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #1064153)
Checksums-Sha1:
 b0fde086df965a0a1d71687d16fb52a629b7841c 2269 golang-k8s-metrics_0.29.0-1.dsc
 892088b010ff6526c5dee4cc0913e9a9cba31689 71636 
golang-k8s-metrics_0.29.0.orig.tar.gz
 83c72528a9738b80d17791428fb98ef01ba25f87 2072 
golang-k8s-metrics_0.29.0-1.debian.tar.xz
 12f285dafe971ddce92f6a28b84bbdbc41869280 41624 
golang-k8s-metrics-dev_0.29.0-1_all.deb
 3bd8fabd508aefedbe4875d202d2dc618f5f6b9b 11040 
golang-k8s-metrics_0.29.0-1_amd64.buildinfo
Checksums-Sha256:
 af08d211e26a26d7047f141c898cef372c2bf80416c0fd02bef45f231b695086 2269 
golang-k8s-metrics_0.29.0-1.dsc
 de3fefee65257efc352567041352f43d88d2c8f475877e3fccf88914ff56ad7f 71636 
golang-k8s-metrics_0.29.0.orig.tar.gz
 dca1430b1da7459d28821ad41f05172946d4b580596103d52c5c70d25c17406f 2072 
golang-k8s-metrics_0.29.0-1.debian.tar.xz
 d4a4dac0d0739fbfecc4fb2c71bbe0625e3ac4ac5e06ca63913965aa5dbc10ef 41624 
golang-k8s-metrics-dev_0.29.0-1_all.deb
 9e5e5ac1476400bf99f764751e9e17df02eced39aafd4325ce8c3f0635fdad42 11040 
golang-k8s-metrics_0.29.0-1_amd64.buildinfo
Files:
 121bda23db9313cf832751384c13fec6 2269 golang optional 
golang-k8s-metrics_0.29.0-1.dsc
 045901e5c19a917ae910c2c58c54e09d 71636 golang optional 
golang-k8s-metrics_0.29.0.orig.tar.gz
 2a6ff4a615945a9199e4a767c09de444 2072 golang optional 
golang-k8s-metrics_0.29.0-1.debian.tar.xz
 6fe2aebf38afd22efd693fb0ae852796 41624 golang optional 
golang-k8s-metrics-dev_0.29.0-1_all.deb
 6344c8dbe9be042c7f8a949b57d31c25 11040 golang optional 
golang-k8s-metrics_0.29.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEI3pUsQKHKL8A7zH00Ot2KGX8XjYFAmXs078ACgkQ0Ot2KGX8
XjZ3wA//b8H8jfjV69EnguXSc0lWvRQwvgLJjIfpkBWqkBUdbBHqHUFsq5WF0AAN
E9yjtKwLwLIAv4yC1NI4bxqs0acQSSidtPOLvuAITE6vFT9Gcog5+npHXk5vQJBU
5UVs1jDVb5vkELURFw5VAF6WZ+zJeLlthZTr7JUxq8ZThYi7jS51sjp6Wvbgwymi
KQUKZ9p0AgMpoPQE6ESv6MyzDiX1OPxAEjLVVblGnyZS06D+vRNNHnefWSCkZOuD
MrxJSVr42o/RD/G5ZS/DfuUt381MjSoypDr5CMEwwbbuIHvkYi77JzBJnKDGxgfA
Ysp8ZL215cne/tOnKFnurvr4Zj+5W7h0Ft8/5oWmDL8NlpmShS7tiLeZ9EEoYLAD
zQkemLCWy/dmjdXLzKYZtytQz60dVRvUiZXZ/tpTJUnHQeiDemZorlnSKF3TuoE2
BOxS1DMz9zJCN2l3xigiFLKFzP+aw0qiNbNhSTZZCxHzCyiY8xaooePPuKUsRzhQ
3jfZ1vgGHAJknuPICJlmB+MEpvZYxSKH3HxFsMKCXCiQwatNdCczaSVrHJDK2fjY
UVv3lsFiYDJ9ZxB9e34wY3fYK1wBhuggcBkb6ssWm6n5Vh/IrrGy5abIVIY6e7op
xGZXkpEzNnlxcqvpFy82w+gceuC2AdqxoBib1cqjMPQc

Bug#1061199: marked as done (ITP: python-mbedtls -- Cryptographic library for Python with Mbed TLS backend)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:24 +
with message-id 
and subject line Bug#1061199: fixed in python-mbedtls 2.8.0-1
has caused the Debian Bug report #1061199,
regarding ITP: python-mbedtls -- Cryptographic library for Python with Mbed TLS 
backend
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1061199: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1061199
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Josenilson Ferreira da Silva 
X-Debbugs-Cc: debian-de...@lists.debian.org, nilsonfsi...@hotmail.com

* Package name: python-mbedtls
  Version : 2.8.0
  Upstream Contact: Mathias Laurin 
* URL : https://github.com/Synss/python-mbedtls
* License : MIT/expat
  Programming Lang: Python
  Description : Cryptographic library for Python with Mbed TLS backend

 mbedtls is an open source library that implements lightweight and
 efficient solutions for security protocols, including TLS (widely
 used in security between network communications)
 .
 Library Key Features:
  - TLS/SSL: Provides support for implementing the TLS/SSL protocol, which
is widely used to ensure secure communications over the internet.
  - Cryptography: Offers a variety of cryptographic algorithms for symmetric
and asymmetric encryption, hashing, and digital signatures
  - Network Protocol Support: Implements security protocols for secure
communication, such as DTLS (Datagram Transport Layer Security) for
real-time communication.
  - TLS Server and Client: Allows the creation of both secure servers and
clients using the TLS protocol.
  - Clean and Simple C API: Features a C-language API designed to be clear,
concise, and easy to use.
--- End Message ---
--- Begin Message ---
Source: python-mbedtls
Source-Version: 2.8.0-1
Done: Josenilson Ferreira da Silva 

We believe that the bug you reported is fixed in the latest version of
python-mbedtls, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1061...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Josenilson Ferreira da Silva  (supplier of updated 
python-mbedtls package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 18 Jan 2024 22:41:14 -0300
Source: python-mbedtls
Binary: python3-mbedtls python3-mbedtls-dbgsym
Architecture: source amd64
Version: 2.8.0-1
Distribution: unstable
Urgency: medium
Maintainer: Josenilson Ferreira da Silva 
Changed-By: Josenilson Ferreira da Silva 
Description:
 python3-mbedtls - Cryptographic library for Python with Mbed TLS backend
Closes: 1061199
Changes:
 python-mbedtls (2.8.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1061199)
Checksums-Sha1:
 96d589ad9bc0e5b160e6b49a01e70fdb162bd9e0 2154 python-mbedtls_2.8.0-1.dsc
 55be07d0468dded734f0448fd30df891b4fefaaa 84888 python-mbedtls_2.8.0.orig.tar.xz
 aa530bf9b791e13325073a1db2263f9e418367b2 3144 
python-mbedtls_2.8.0-1.debian.tar.xz
 ac2a4704668e77f4ca482c8fa7885248b79c3e60 8204 
python-mbedtls_2.8.0-1_amd64.buildinfo
 da10a3775c305344042b6f1eed0e37cf8045721a 10404196 
python3-mbedtls-dbgsym_2.8.0-1_amd64.deb
 d8646b9fd217c66d8ac9f95c7bf170efc73d288e 1173872 
python3-mbedtls_2.8.0-1_amd64.deb
Checksums-Sha256:
 d91e7f62c4b77796b21ba1264c3d10c264a5dc9bda2fcd0eea904459d64792a5 2154 
python-mbedtls_2.8.0-1.dsc
 0b66b0e12af06571b624e499180a4e3031f85f3f3cf93704e5fb48d47843592c 84888 
python-mbedtls_2.8.0.orig.tar.xz
 f56e07c9b384f50e05600556149a032c4272f9e867448947c87c7256e456ac5e 3144 
python-mbedtls_2.8.0-1.debian.tar.xz
 eb036cfebd9c92f5b9af289cc132a4c53e4969af2e9ee22ba5935ecfc1348eb6 8204 
python-mbedtls_2.8.0-1_amd64.buildinfo
 806a6c9cbc09f85c845949665bad7b7dad498a63690438741768031a8a95a8de 10404196 
python3-mbedtls-dbgsym_2.8.0-1_amd64.deb
 9308bdf1accfdaf5acc93d5eee3975c2169cd1e2470cf41554fba9008ca9f3e9 1173872 
python3-mbedtls_2.8.0-1_amd64.deb
Files:
 4d75f2e06eedc6f131a79c479a2cef57 2154 python optional 
python-mbedtls_2.8.0-1.dsc
 a8307bcb32ab6a297c2444f223ca49e8 84888 python optional 
python-mbedtls_2.8.0.orig.tar.xz
 3746ece8496af4aa5883307c3aa9ea03 3144 python opti

Bug#1064179: marked as done (ITP: python-sphinx-contributors -- Sphinx extension to recognize the people contributed to an open-source project)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:26 +
with message-id 
and subject line Bug#1064179: fixed in python-sphinx-contributors 0.2.7-1
has caused the Debian Bug report #1064179,
regarding ITP: python-sphinx-contributors -- Sphinx extension to recognize the 
people contributed to an open-source project
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1064179: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064179
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Yogeswaran Umasankar 
X-Debbugs-Cc: debian-de...@lists.debian.org, kd8...@gmail.com

* Package name: python-sphinx-contributors
  Version : 0.2.7
  Upstream Contact: David Garcia 
* URL : https://github.com/dgarcia360/sphinx-contributors
* License : Expat
  Programming Lang: Python
  Description : Sphinx extension to recognize the people contributed to an 
open-source project

Sphinx extension that helps you recognize the people who have
 contributed to an open-source project. Show the list of users
 who have contributed to a repository in your docs. Choose how
 many contributors show and sort them by the number of commits.
 It is depends for other python packages. I planned to maintain
 it under DPT, and need sponsorship.
--- End Message ---
--- Begin Message ---
Source: python-sphinx-contributors
Source-Version: 0.2.7-1
Done: Yogeswaran Umasankar 

We believe that the bug you reported is fixed in the latest version of
python-sphinx-contributors, which is due to be installed in the Debian FTP 
archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yogeswaran Umasankar  (supplier of updated 
python-sphinx-contributors package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 17 Feb 2024 23:00:00 +
Source: python-sphinx-contributors
Binary: python-sphinx-contributors-doc python3-sphinx-contributors
Architecture: source all
Version: 0.2.7-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Yogeswaran Umasankar 
Description:
 python-sphinx-contributors-doc - Documentation for python-sphinx-contributors
 python3-sphinx-contributors - Sphinx extension to recognize the people 
contributed to an open-s
Closes: 1064179
Changes:
 python-sphinx-contributors (0.2.7-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1064179)
Checksums-Sha1:
 1eec162e6c5c41040bc6b2524a0712d812a813b3 2437 
python-sphinx-contributors_0.2.7-1.dsc
 2637abfa13957e2736f6dc9e71a8f8f6d7f68c40 393547 
python-sphinx-contributors_0.2.7.orig.tar.gz
 00265dab701efe0e58f82599ddecd0f94ed0365f 2924 
python-sphinx-contributors_0.2.7-1.debian.tar.xz
 456763a8a635322b54386bd7f211ed017cd24acf 418740 
python-sphinx-contributors-doc_0.2.7-1_all.deb
 a6e6615e4c4cc8d421ddd88b4cb67b31ed75a0bf 8943 
python-sphinx-contributors_0.2.7-1_amd64.buildinfo
 b5cdfd5746acd118f6a9ee790c6dae982c0e7f06 6352 
python3-sphinx-contributors_0.2.7-1_all.deb
Checksums-Sha256:
 2efe6107425d5a80f234fea78e69f04dc7816f7ac942d6f9d02f7007849a0e9f 2437 
python-sphinx-contributors_0.2.7-1.dsc
 4d9dfcef11958d7923f8399fc98a33e0f5702f22b71340b6e2ec736fd368a432 393547 
python-sphinx-contributors_0.2.7.orig.tar.gz
 ace89076d37974727b3c956a504bbb355b5d2b0acf8bac18116baedeba06f823 2924 
python-sphinx-contributors_0.2.7-1.debian.tar.xz
 795a5e6bdc29c400ca288c8f81d35cb15c11d78e7d161dd47402c0e1c7e03df2 418740 
python-sphinx-contributors-doc_0.2.7-1_all.deb
 1a4b35dfc006f52bf42c8bbd6bff23b7a347c92438100a7b64d5970c76ec061b 8943 
python-sphinx-contributors_0.2.7-1_amd64.buildinfo
 b49fd59b9c723e2ad4e3e9d434cc4251387e282ff34a125152066b96056c7890 6352 
python3-sphinx-contributors_0.2.7-1_all.deb
Files:
 c5e040c3b373be02e2193bab5f9aff61 2437 python optional 
python-sphinx-contributors_0.2.7-1.dsc
 e12a60768b53ed7db2e0722058fca42d 393547 python optional 
python-sphinx-contributors_0.2.7.orig.tar.gz
 572c50a960beda1fd9f49aae8dfe683a 2924 python optional 
python-sphinx-contributors_0.2.7-1.debian.tar.xz
 46ee1636a667fad4accc3ec1a6d90935 418740 doc optional 
python-sphinx-contributors-doc_0.2.7-1_all.deb
 ae4b

Bug#1064352: marked as done (ITP: python-duet -- Duet is a simple future-based async library for python)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:22 +
with message-id 
and subject line Bug#1064352: fixed in python-duet 0.2.9-1
has caused the Debian Bug report #1064352,
regarding ITP: python-duet -- Duet is a simple future-based async library for 
python
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1064352: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064352
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Pulak Bhushan 
X-Debbugs-Cc: debian-de...@lists.debian.org, pulakbhus...@gmail.com

* Package name: python-duet
  Version : 0.2.9
  Upstream Contact: The Duet Authors 
* URL : https://github.com/google/duet
* License : Apache-2.0
  Programming Lang: Python
  Description : Duet is a simple future-based async library for python

Duet takes inspiration from the amazing trio library and the 
 structured concurrency approach to async programming that it uses.

 This is a depend for other Python packages. I want to maintain this under DPT.
 I need sponsorship. 
--- End Message ---
--- Begin Message ---
Source: python-duet
Source-Version: 0.2.9-1
Done: Pulak Bhushan 

We believe that the bug you reported is fixed in the latest version of
python-duet, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pulak Bhushan  (supplier of updated python-duet package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 20 Feb 2024 18:15:00 +
Source: python-duet
Binary: python3-duet
Architecture: source all
Version: 0.2.9-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Pulak Bhushan 
Description:
 python3-duet - Duet is a simple future-based async library for Python
Closes: 1064352
Changes:
 python-duet (0.2.9-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1064352)
Checksums-Sha1:
 40def5b4b4fcf94bf925e359a351e8382865fc22 2190 python-duet_0.2.9-1.dsc
 1cf708e6d703d41e02b8e858ca739b2ade87369d 25506 python-duet_0.2.9.orig.tar.gz
 9af8da2fe3294605f56c3aa4bcc6c41e1e0ed6ce 1924 python-duet_0.2.9-1.debian.tar.xz
 939b4bf6275eff02c55dad24f9bb28ccefc65de2 7546 
python-duet_0.2.9-1_amd64.buildinfo
 0883cb63a89ed617eb09a3e1763c547441631209 14904 python3-duet_0.2.9-1_all.deb
Checksums-Sha256:
 bb7d129db10649aeaa8651d1da3a926c87a0bbb57471194008575873f2b9dd80 2190 
python-duet_0.2.9-1.dsc
 1edd9ecfb9be24dcdf2041e716eb2dd049219cf5c6c901a494c273c43a056256 25506 
python-duet_0.2.9.orig.tar.gz
 1c8680473b5d5e56d87606dbdb8384d4a0fafd1ee0046a3941c2c6abb72a840f 1924 
python-duet_0.2.9-1.debian.tar.xz
 87cdb6dc6ad4b9fbcdbc52498a4515b801103f40f8dbb629e87376cdf3642308 7546 
python-duet_0.2.9-1_amd64.buildinfo
 6fa7b4aadbf352526e887a83b35d890ce98105f08fba3003ccbf3bab4abdc096 14904 
python3-duet_0.2.9-1_all.deb
Files:
 9eb93caae5978009cec3370f15e9722c 2190 python optional python-duet_0.2.9-1.dsc
 76feda0f9e98575cf7f69a9f687a1e72 25506 python optional 
python-duet_0.2.9.orig.tar.gz
 34c305e7d127462c8e64778d04e67b61 1924 python optional 
python-duet_0.2.9-1.debian.tar.xz
 946a753a68d269afed39fde05673b4dc 7546 python optional 
python-duet_0.2.9-1_amd64.buildinfo
 c293f0c98718a5722a775365c53da348 14904 python optional 
python3-duet_0.2.9-1_all.deb

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEE3lnVbvHK7ir4q61+p3sXeEcY/EFAmXdt8ISHGVhbWFudUBk
ZWJpYW4ub3JnAAoJEPqd7F3hHGPx3ikP/0oCOuB8Xl77mF6PqYFSAsB0dBZPfj7R
aZVO1RlMa12RZzc49BgZqgPg2rFjZ1yhx8bp+TTqoUKq8OKYKE16A7RFxeIiUtPh
FfL3OBSnBh1NU4M3AZe3P4ZfsizZ7eUtp3H4S9ChzGGZvw/3RKmitB5aGmqy1kbT
v1I9q/DcOKZfnNjC0/mCpoy/e3g5GOsO84YEs0ndU7l5PM+eqW+rvFjRD0a9XjqO
Nvu+C7uWpnf9ebqzcYHqyn+zw5hzZwCXZ1NNpJKQryzWfkafb9Z6cDzJ7VzSaCGX
auFBWiAuPfkOSzl7Spx+daeXz8rAyRMWx4AaHwo6wX20PWCmWlExpHX181Du321I
+8VVfifaQ1irDyP4vc51GUWtyCFzYLDQtyPzefxh+oyoHIBY9n1ZALReFx32hqxu
HyHpC1N5cV+Gt0Z46UPEri2rlTwkSki4RheFj6+6iND31unHfQw09yMcujP0JzUg
fpI4tHpCAtQCW6tXvhHwxbu8wevpv/0VM0p7F2eePgTeq5RcmWn2xJTzNzDx9vM6
HjdHzUG30nEBPIxsNuXsXuGSJjwEEoTAiGppQo7uE+axHWi7w1pYPDXA7tdd25JL
zAolrYAO5CkRbr+m2cEtanPwjC3ugzOdCB7N2wcKrCjCZVBE+8FuWRk0pquTgNpT
U6Wa7evbDQK

Bug#1064527: marked as done (ITP: golang-github-schollz-logger -- Simplistic, opinionated logging for Golang)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:12 +
with message-id 
and subject line Bug#1064527: fixed in golang-github-schollz-logger 1.2.0-1
has caused the Debian Bug report #1064527,
regarding ITP: golang-github-schollz-logger -- Simplistic, opinionated logging 
for Golang
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

* Package name: golang-github-schollz-logger
  Version : 1.2.0-1
  Upstream Author : Zack
* URL : https://github.com/schollz/logger
* License : Expat
  Programming Lang: Go
  Description : Simplistic, opinionated logging for Golang

 Simplistic, opinionated logging for Golang
  * Zero dependencies
  * Global logger (with optional local logger)
  * Leveled
  * Useful defaults / i.e. zero-config
  * Simple API
  * Colors on Linux (Windows colors are horrible and unnecessary)
  * Set leveling via environmental variables
LOGGER=trace|debug|info|warn|error

This is a dependency of croc, which I'm also working on packaging.
--- End Message ---
--- Begin Message ---
Source: golang-github-schollz-logger
Source-Version: 1.2.0-1
Done: Guilherme Puida Moreira 

We believe that the bug you reported is fixed in the latest version of
golang-github-schollz-logger, which is due to be installed in the Debian FTP 
archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Guilherme Puida Moreira  (supplier of updated 
golang-github-schollz-logger package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 23 Feb 2024 11:46:04 -0300
Source: golang-github-schollz-logger
Binary: golang-github-schollz-logger-dev
Architecture: source all
Version: 1.2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Guilherme Puida Moreira 
Description:
 golang-github-schollz-logger-dev - Simplistic, opinionated logging for Golang 
(library)
Closes: 1064527
Changes:
 golang-github-schollz-logger (1.2.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1064527)
Checksums-Sha1:
 0528e433182ab5458709451d16b19d104cfc4ce5 2278 
golang-github-schollz-logger_1.2.0-1.dsc
 7459f71979be5b5d2f6500f2df984ded7e21f582 3259 
golang-github-schollz-logger_1.2.0.orig.tar.gz
 ea50b2e9f60da1da6a8083b942b767923ddc9fab 2272 
golang-github-schollz-logger_1.2.0-1.debian.tar.xz
 4b08a4cf2d0cd833aac7da53e81c1dfe3747ce87 3824 
golang-github-schollz-logger-dev_1.2.0-1_all.deb
 c02eb575b82023ee798188a09a4ef1c0776b92e5 6494 
golang-github-schollz-logger_1.2.0-1_amd64.buildinfo
Checksums-Sha256:
 b001696723ff4b1c87ab084021b1f3ee2ce1cbe009eb6d82c5e763782ad26442 2278 
golang-github-schollz-logger_1.2.0-1.dsc
 4115131b95f853571689e8b1202d872e40715e247cbc1b6998f4fbc628600f73 3259 
golang-github-schollz-logger_1.2.0.orig.tar.gz
 0f248c3d291a6232237acfee548f49884d9ec10ffbacacfcd6b4db213fa5d35e 2272 
golang-github-schollz-logger_1.2.0-1.debian.tar.xz
 1e7609abb6827492607f2340d86b97c2a6521afa1ec2299037d39695c0c471ca 3824 
golang-github-schollz-logger-dev_1.2.0-1_all.deb
 b05fe4a0af85e04aa0b780400e0bedf0de644e70f840680eadd3eb38e6783d8b 6494 
golang-github-schollz-logger_1.2.0-1_amd64.buildinfo
Files:
 e71c4859d43984bceee2847886335eaf 2278 golang optional 
golang-github-schollz-logger_1.2.0-1.dsc
 d0f966020c8da95e5404b44f70ffa4ad 3259 golang optional 
golang-github-schollz-logger_1.2.0.orig.tar.gz
 e107ffca9a5413a4d69560571431a727 2272 golang optional 
golang-github-schollz-logger_1.2.0-1.debian.tar.xz
 9875a4ebe9a9e7bb25e59035eab5ef2f 3824 golang optional 
golang-github-schollz-logger-dev_1.2.0-1_all.deb
 e7511b79a90ccf94aedcec8120852b9d 6494 golang optional 
golang-github-schollz-logger_1.2.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJIBAEBCgAyFiEEI3pUsQKHKL8A7zH00Ot2KGX8XjYFAmXszBUUHHNlcmdpb2Rq
QGRlYmlhbi5vcmcACgkQ0Ot2KGX8XjbB5Q/7BCGDpCUDI4zlfFsFYXqNuc18BpH7
C1HBkBVFsfDZsYF41SbIeK2sWzWkGQ4njLgOygHmmDIzZ2AxUyQ7pOIJBxIq2Zvd
KDKWggzibRVW8eZXVuV3ZdBeRA4ufhaWsS59xhQ9YYulQt+kkCiOacb

Bug#1064261: marked as done (ITP: python-sphinx-autodoc2 -- Sphinx extension to automatically generate API doc for Py packages)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:26 +
with message-id 
and subject line Bug#1064261: fixed in python-sphinx-autodoc2 0.5.0-1
has caused the Debian Bug report #1064261,
regarding ITP: python-sphinx-autodoc2 -- Sphinx extension to automatically 
generate API doc for Py packages
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1064261: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064261
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Yogeswaran Umasankar 
X-Debbugs-Cc: debian-de...@lists.debian.org, kd8...@gmail.com

* Package name: python-sphinx-autodoc2
  Version : 0.5.0
  Upstream Contact: Chris Sewell 
* URL : https://github.com/sphinx-extensions2/sphinx-autodoc2
* License : Expat
  Programming Lang: Python
  Description : Sphinx extension to automatically generate API doc for Py 
packages

There is no need to install your package to generate the
 documentation, and `sphinx-autodoc2` will correctly handle
 `if TYPE_CHECKING` blocks and other typing only features. You
 can even document packages from outside the project (via `git clone`).
 This is a depend for other packages in python and science. I planned
 to maintain it under DPT, and need sponsorship.
--- End Message ---
--- Begin Message ---
Source: python-sphinx-autodoc2
Source-Version: 0.5.0-1
Done: Yogeswaran Umasankar 

We believe that the bug you reported is fixed in the latest version of
python-sphinx-autodoc2, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yogeswaran Umasankar  (supplier of updated 
python-sphinx-autodoc2 package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 18 Feb 2024 20:30:00 +
Source: python-sphinx-autodoc2
Binary: python3-sphinx-autodoc2
Architecture: source all
Version: 0.5.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Yogeswaran Umasankar 
Description:
 python3-sphinx-autodoc2 - Sphinx extension to automatically generate API doc 
for Py package
Closes: 1064261
Changes:
 python-sphinx-autodoc2 (0.5.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1064261)
Checksums-Sha1:
 12e454ebc1bba45335f17bc996f9045af0821a73 2464 
python-sphinx-autodoc2_0.5.0-1.dsc
 5f33351b604f7c2555abc12c48605974d0397089 113947 
python-sphinx-autodoc2_0.5.0.orig.tar.gz
 b98caa383a055b2b1f7470720a3255d0778f9595 3152 
python-sphinx-autodoc2_0.5.0-1.debian.tar.xz
 1ccc28df8d9350e25c28856327cab3aa5571699c 9652 
python-sphinx-autodoc2_0.5.0-1_amd64.buildinfo
 b1bd3a6487756ae57ffde478b7fde3b549a1156d 30652 
python3-sphinx-autodoc2_0.5.0-1_all.deb
Checksums-Sha256:
 2825a908726ebbcaa94d9c9072300ec187fa4a1f0be1e8b0baccf64bf43ca2e5 2464 
python-sphinx-autodoc2_0.5.0-1.dsc
 6d27cc623a2560952a379798598fc87dd2bb949e6a55706d9ae3d86bd4c9279a 113947 
python-sphinx-autodoc2_0.5.0.orig.tar.gz
 07314de4e3769116624d6885fe045f2db6c12627a40d8139c654d6511d104252 3152 
python-sphinx-autodoc2_0.5.0-1.debian.tar.xz
 2c7ca0340a4729746678a812067e64fe2944f0f0dfa1833303c41622594db368 9652 
python-sphinx-autodoc2_0.5.0-1_amd64.buildinfo
 554e7f9bd323685a1a86c813be48e48bd37ec7384c46014347a2b69d56823f26 30652 
python3-sphinx-autodoc2_0.5.0-1_all.deb
Files:
 9a5d93fadcf1f357f255a16d10a6e33a 2464 python optional 
python-sphinx-autodoc2_0.5.0-1.dsc
 7035976574edc114f7a5fd745e09b48f 113947 python optional 
python-sphinx-autodoc2_0.5.0.orig.tar.gz
 9873f8b2b38e5456d2b53ee14361ebd7 3152 python optional 
python-sphinx-autodoc2_0.5.0-1.debian.tar.xz
 45c905c9d158f67fc0056dcfdd55523c 9652 python optional 
python-sphinx-autodoc2_0.5.0-1_amd64.buildinfo
 0accb1b224b0f5e7455f65aa27194b33 30652 python optional 
python3-sphinx-autodoc2_0.5.0-1_all.deb

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEdyKS9veshfrgQdQe5fQ/nCc08ocFAmXgNoESHG1lcmt5c0Bk
ZWJpYW4ub3JnAAoJEOX0P5wnNPKH8HoP/iXNpIZhG9/zEIvKGFcsjUIKzFFIhqqt
ssTpwQwGRmLJaI8Omw8UdkCJ/I90IIeDFz16C718N0O6ObSw79pW7l3qSOGhweSq
a+k3U76lgsfr3W8KI4bOV1FrEDZf7aQKMU9XrLzt5GN+dYfU/1Jb+QzNG5dK7hsp
TqcJRz2jZNwhTqRfOS1AcbWTbkfimKGkDkEm

Bug#1064541: marked as done (ITP: python-autoray -- Lightweight Python AUTOmatic-arRAY library for abstracting tensor operations)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:20 +
with message-id 
and subject line Bug#1064541: fixed in python-autoray 0.6.8-1
has caused the Debian Bug report #1064541,
regarding ITP: python-autoray -- Lightweight Python AUTOmatic-arRAY library for 
abstracting tensor operations
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1064541: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064541
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Yogeswaran Umasankar 
X-Debbugs-Cc: debian-de...@lists.debian.org, kd8...@gmail.com

* Package name: python-autoray
  Version : 0.6.8
  Upstream Contact: Johnnie Gray 
* URL : https://github.com/jcmgray/autoray
* License : Apache-2.0
  Programming Lang: Python
  Description : Lightweight Python AUTOmatic-arRAY library for abstracting 
tensor operations

Primarily it provides an automatic dispatch mechanism that
 means you can write backend agnostic code that works for
 numpy, pytorch, jax, cupy, dask, autograd, tensorflow,
 sparse, mars, etc., and indeed any library that provides a
 numpy-ish API, even if it knows nothing about autoray. This
 is a depend for other python and science packages. I planned
 to maintain it under DPT, and need sponsorship.
--- End Message ---
--- Begin Message ---
Source: python-autoray
Source-Version: 0.6.8-1
Done: Yogeswaran Umasankar 

We believe that the bug you reported is fixed in the latest version of
python-autoray, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yogeswaran Umasankar  (supplier of updated python-autoray 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 04 Mar 2024 15:30:00 +
Source: python-autoray
Binary: python-autoray-doc python3-autoray
Architecture: source all
Version: 0.6.8-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Yogeswaran Umasankar 
Description:
 python-autoray-doc - Documentation for python-autoray
 python3-autoray - Lightweight Python AUTOmatic-arRAY library for abstracting 
tensor
Closes: 1064541
Changes:
 python-autoray (0.6.8-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1064541)
Checksums-Sha1:
 e5a7d2a2d6ee13c4f6980886818abb54c60f8621 2513 python-autoray_0.6.8-1.dsc
 82a12092d3fa579beb798b371ccea06d155fcbb0 1214743 
python-autoray_0.6.8.orig.tar.gz
 1847841a37b947173e6585e4bb4695f6bb506f1b 3100 
python-autoray_0.6.8-1.debian.tar.xz
 03e290bd4d5299ffaa1f73f9018ccab447c2daf1 141152 
python-autoray-doc_0.6.8-1_all.deb
 9a0d3fd439cbf5c0e5f5d7c06d48184d8c386b21 9973 
python-autoray_0.6.8-1_amd64.buildinfo
 894c1e747b0d899aeb2e950ee023f5734189167e 39724 python3-autoray_0.6.8-1_all.deb
Checksums-Sha256:
 2fe16a1c5bba87058809d043f713397c6b8700df990c4ebb2d001f34d13e5767 2513 
python-autoray_0.6.8-1.dsc
 caafc0b4396a13ceaed64ec3167a7e910cd0a6b7b844fd676d8d21d74f787c7a 1214743 
python-autoray_0.6.8.orig.tar.gz
 c7ab74d6f3b6fb3dc10d812810e21d5ee3b9a7e439a50567740e36f597959f42 3100 
python-autoray_0.6.8-1.debian.tar.xz
 d0ef49b83d01c105a1fe734e239fd40733fe2f934ee4fe5cb7eac7868e2ac4e6 141152 
python-autoray-doc_0.6.8-1_all.deb
 8adca0924e0e027d393a76448c150502ed82dc806990663d83cde6c8cf6bafc7 9973 
python-autoray_0.6.8-1_amd64.buildinfo
 aec06fee5a9b503ad6a60938355c35665ff3761280af792fabd3eb9b0a1f7304 39724 
python3-autoray_0.6.8-1_all.deb
Files:
 eccee66731a81cf56957e48ad5e6da2d 2513 python optional 
python-autoray_0.6.8-1.dsc
 ca27170b7975d216115a945abb6f51c2 1214743 python optional 
python-autoray_0.6.8.orig.tar.gz
 b4821c59d5fe84ef2facd7ca80c05efa 3100 python optional 
python-autoray_0.6.8-1.debian.tar.xz
 915362e9c090a43cdf28b028ed5b95bb 141152 doc optional 
python-autoray-doc_0.6.8-1_all.deb
 b3b324bcc2336e697366a02f4e54ef1b 9973 python optional 
python-autoray_0.6.8-1_amd64.buildinfo
 b8f366a8be6038bc6e146d75ebefca07 39724 python optional 
python3-autoray_0.6.8-1_all.deb

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEdyKS9veshfrgQdQe5fQ/nCc08ocFAmXl96ISHG1lcmt5c0Bk
ZWJpYW4ub3JnAAoJEOX0P5wnNPKHjsIP

Bug#1064537: marked as done (ITP: golang-github-schollz-peerdiscovery -- Library for cross-platform local peer discovery using UDP multicast)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:13 +
with message-id 
and subject line Bug#1064537: fixed in golang-github-schollz-peerdiscovery 
1.7.2-1
has caused the Debian Bug report #1064537,
regarding ITP: golang-github-schollz-peerdiscovery -- Library for 
cross-platform local peer discovery using UDP multicast
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

* Package name: golang-github-schollz-peerdiscovery
  Version : 1.7.2-1
  Upstream Author : Zack
* URL : https://github.com/schollz/peerdiscovery
* License : Expat
  Programming Lang: Go
  Description : Pure-Go library for cross-platform local peer discovery 
using UDP multicast :woman: :repeat: :woman:

 Pure-go library for cross-platform thread-safe local peer discovery using
 UDP multicast.

This is a dependency of croc, which I'm also working on packaging
--- End Message ---
--- Begin Message ---
Source: golang-github-schollz-peerdiscovery
Source-Version: 1.7.2-1
Done: Guilherme Puida Moreira 

We believe that the bug you reported is fixed in the latest version of
golang-github-schollz-peerdiscovery, which is due to be installed in the Debian 
FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Guilherme Puida Moreira  (supplier of updated 
golang-github-schollz-peerdiscovery package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 23 Feb 2024 11:31:12 -0300
Source: golang-github-schollz-peerdiscovery
Binary: golang-github-schollz-peerdiscovery-dev
Architecture: source all
Version: 1.7.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Guilherme Puida Moreira 
Description:
 golang-github-schollz-peerdiscovery-dev - Library for cross-platform local 
peer discovery using UDP multica
Closes: 1064537
Changes:
 golang-github-schollz-peerdiscovery (1.7.2-1) unstable; urgency=medium
 .
   * Initial release (Closes: #1064537)
Checksums-Sha1:
 e7e6662c041f10a55a1dbabcbcf69f653064d320 2424 
golang-github-schollz-peerdiscovery_1.7.2-1.dsc
 cb731ac0088cbc72f123d22c658fef6ecb6749d7 12035 
golang-github-schollz-peerdiscovery_1.7.2.orig.tar.gz
 a2cfb351b8f3a357bebea6dc56707a92768120e9 2232 
golang-github-schollz-peerdiscovery_1.7.2-1.debian.tar.xz
 51c76d4cdbded04d71af808359351eaaae904984 11384 
golang-github-schollz-peerdiscovery-dev_1.7.2-1_all.deb
 4831d87b1f2ff05363a35ac58b105b7b92504033 7009 
golang-github-schollz-peerdiscovery_1.7.2-1_amd64.buildinfo
Checksums-Sha256:
 5f194612bb69cb4cc7112631267fde5a4f6cb9e9a5b24e02473144a969ebb317 2424 
golang-github-schollz-peerdiscovery_1.7.2-1.dsc
 37e79b329a9522d630b541bdd0a58652cfcb701968899dccfa6bdfe7a511 12035 
golang-github-schollz-peerdiscovery_1.7.2.orig.tar.gz
 6b42c80f8618d1180cdf3fe66161e2f8db3b91b65c9d2f23e1af156d2c4cb0ee 2232 
golang-github-schollz-peerdiscovery_1.7.2-1.debian.tar.xz
 331d60adaca1ee07c1fdd8d8806aa63510a5073dcd085a66d17299cdba1d9a13 11384 
golang-github-schollz-peerdiscovery-dev_1.7.2-1_all.deb
 6409df12fec48a2cc66c6a865b628254ea20a3db65f6f3fbf90730e8e404579c 7009 
golang-github-schollz-peerdiscovery_1.7.2-1_amd64.buildinfo
Files:
 925e45707776d8c0693a4b80d1a61ed9 2424 golang optional 
golang-github-schollz-peerdiscovery_1.7.2-1.dsc
 08b3b81f126f46515bcbcd7db75ec5d4 12035 golang optional 
golang-github-schollz-peerdiscovery_1.7.2.orig.tar.gz
 54395d2afd5033e9d5c2c8e22f9a91c1 2232 golang optional 
golang-github-schollz-peerdiscovery_1.7.2-1.debian.tar.xz
 d0bd01d90c843ddfe169425c310f3b66 11384 golang optional 
golang-github-schollz-peerdiscovery-dev_1.7.2-1_all.deb
 ad3c02a00f8e7a941358487fe000b478 7009 golang optional 
golang-github-schollz-peerdiscovery_1.7.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJIBAEBCgAyFiEEI3pUsQKHKL8A7zH00Ot2KGX8XjYFAmXsz0oUHHNlcmdpb2Rq
QGRlYmlhbi5vcmcACgkQ0Ot2KGX8XjY+Aw//YIxjekAj25xFKkuMENYR48JHpJuU
f6R1U2AWEHq0YkBLZta5vrcrH21refUmWnDVHOMjitA2johMtkSm5ZkkVR+XeJk4
ZvStDugB6

Bug#1064591: marked as done (ITP: python-googleapis-common-protos -- Common protobufs used in Google APIs)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:22 +
with message-id 
and subject line Bug#1064591: fixed in python-googleapis-common-protos 1.62.0-1
has caused the Debian Bug report #1064591,
regarding ITP: python-googleapis-common-protos -- Common protobufs used in 
Google APIs
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1064591: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064591
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Yogeswaran Umasankar 
X-Debbugs-Cc: debian-de...@lists.debian.org, kd8...@gmail.com

* Package name: python-googleapis-common-protos
  Version : 1.62.0
  Upstream Contact: Google LLC 
* URL : https://github.com/googleapis/python-api-common-protos
* License : Apache-2.0
  Programming Lang: Python
  Description : Common protobufs used in Google APIs

googleapis-common-protos contains the Python classes generated
 from the common protos in the `googleapis/googleapis
 ` repository. This is depend
 for other Python packages. I would like to maintain it under DPT, and
 need sponsorship.
--- End Message ---
--- Begin Message ---
Source: python-googleapis-common-protos
Source-Version: 1.62.0-1
Done: Yogeswaran Umasankar 

We believe that the bug you reported is fixed in the latest version of
python-googleapis-common-protos, which is due to be installed in the Debian FTP 
archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yogeswaran Umasankar  (supplier of updated 
python-googleapis-common-protos package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 24 Feb 2024 13:00:00 +
Source: python-googleapis-common-protos
Binary: python3-googleapis-common-protos
Architecture: source all
Version: 1.62.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Yogeswaran Umasankar 
Description:
 python3-googleapis-common-protos - Common protobufs used in Google APIs
Closes: 1064591
Changes:
 python-googleapis-common-protos (1.62.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1064591)
Checksums-Sha1:
 a5e3ca0b02b25b7038d9045770e8195dc026 2417 
python-googleapis-common-protos_1.62.0-1.dsc
 b98846ca9bceeb44e48b68d1484d1d0b0b13eb36 157035 
python-googleapis-common-protos_1.62.0.orig.tar.gz
 fbafceebb7bb953ebec4a8edce8565eaa37dc41d 1756 
python-googleapis-common-protos_1.62.0-1.debian.tar.xz
 e8070b33a41793145c34bcdf4efae69ed67f9e54 7590 
python-googleapis-common-protos_1.62.0-1_amd64.buildinfo
 db33924345b288e56f00c6600e0b53ad978c17fe 98060 
python3-googleapis-common-protos_1.62.0-1_all.deb
Checksums-Sha256:
 d38edae057dadcbaebbc6053ddcded5652e683639bef77bb16fc1d8a53537340 2417 
python-googleapis-common-protos_1.62.0-1.dsc
 b4c603d50fab170a432082af36d99b4f3604979600bc3bd2e102b836a4a3c002 157035 
python-googleapis-common-protos_1.62.0.orig.tar.gz
 3ce9caf6641037c2d4b312b1dbf7bdaa7e211e24785482fde1d1dd2817ebb33b 1756 
python-googleapis-common-protos_1.62.0-1.debian.tar.xz
 6a51e224895dce87bb16e1c930b77a8fc4746320b827506cd0acb3f68d3da11e 7590 
python-googleapis-common-protos_1.62.0-1_amd64.buildinfo
 65faf36614f681a8e54b84ddaed8c1fb8df65806eff495793846c3ef2f1a4144 98060 
python3-googleapis-common-protos_1.62.0-1_all.deb
Files:
 d386bd6badac7e95a24466469169fdb4 2417 python optional 
python-googleapis-common-protos_1.62.0-1.dsc
 7cc427dd82a65a2713bfacc2772ab58d 157035 python optional 
python-googleapis-common-protos_1.62.0.orig.tar.gz
 872d27d46d7701aa1da16f090b0368dc 1756 python optional 
python-googleapis-common-protos_1.62.0-1.debian.tar.xz
 2031bbcce1172582a4801170187de341 7590 python optional 
python-googleapis-common-protos_1.62.0-1_amd64.buildinfo
 0136c1ddaae1d3ee25b82db7e1896706 98060 python optional 
python3-googleapis-common-protos_1.62.0-1_all.deb

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEE3lnVbvHK7ir4q61+p3sXeEcY/EFAmXjh1sSHGVhbWFudUBk
ZWJpYW4ub3JnAAoJEPqd7F3hHGPxW58P/1wrNV3ZFHubE5Skr1fxkV96prjpZYtg
3z+ExOgzQAEr9zT5xsLqp482ub4W28uxIg1ZzDiaTuu1kyhkR13h6VbW5NH1pFwJ
LQUiTZYIezvh2pwWw4XTfvgYptjnZZSGFk

Bug#1064959: marked as done (ITP: python-usb-devices -- Python tools for mapping, describing, and resetting USB devices)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:27 +
with message-id 
and subject line Bug#1064959: fixed in python-usb-devices 0.4.5-1
has caused the Debian Bug report #1064959,
regarding ITP: python-usb-devices -- Python tools for mapping, describing, and 
resetting USB devices
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1064959: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064959
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Edward Betts 
X-Debbugs-Cc: debian-de...@lists.debian.org, debian-pyt...@lists.debian.org

* Package name: python-usb-devices
  Version : 0.4.5
  Upstream Author : J. Nick Koston 
* URL : https://github.com/bluetooth-devices/usb-devices
* License : MIT
  Programming Lang: Python
  Description : Python tools for mapping, describing, and resetting USB 
devices

  A comprehensive toolkit for interacting with USB and Bluetooth devices in
  Python. Offering functionally to map USB device connections, describe
  device attributes, and perform device reset operations.
  .
  Ideal for developers aiming to integrate USB device management into their
  projects, it supports asynchronous programming paradigms and is designed to
  work seamlessly with modern Python async features.

I plan to maintain this package as part of the Python team.
--- End Message ---
--- Begin Message ---
Source: python-usb-devices
Source-Version: 0.4.5-1
Done: Edward Betts 

We believe that the bug you reported is fixed in the latest version of
python-usb-devices, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Edward Betts  (supplier of updated python-usb-devices 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 01 Mar 2024 09:44:37 +
Source: python-usb-devices
Binary: python3-usb-devices
Architecture: source all
Version: 0.4.5-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Edward Betts 
Description:
 python3-usb-devices - Tools for mapping, describing, and resetting USB devices
Closes: 1064959
Changes:
 python-usb-devices (0.4.5-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1064959)
Checksums-Sha1:
 06d0116492c2b1ed2d5c74756a944306efa1f34c 2246 python-usb-devices_0.4.5-1.dsc
 2d32a2a5b3083f6cef9153892352a00f0aef4ab0 35434 
python-usb-devices_0.4.5.orig.tar.gz
 73649e2a4a66c89eddee3fbfe934992f45a65537 2360 
python-usb-devices_0.4.5-1.debian.tar.xz
 ca696d85595f3765ad3194498bbb9fdd509d6537 8002 
python-usb-devices_0.4.5-1_amd64.buildinfo
 9aec38217c2b3e5b55438ffd4a7c43d96c8bfea9 9616 
python3-usb-devices_0.4.5-1_all.deb
Checksums-Sha256:
 3cb665f661b8558efb10672d39b53787e5dfce45203a9d6fcfc774a1e45aef36 2246 
python-usb-devices_0.4.5-1.dsc
 a0aed461bf2663e6c3205d5ed9f47359641cc247d2208d1617472759f281a3bd 35434 
python-usb-devices_0.4.5.orig.tar.gz
 02e748a2a742d581b18e90c178356288fff279daecfd801e502c7f04c4275ae9 2360 
python-usb-devices_0.4.5-1.debian.tar.xz
 3838c35e2d21c8029dbe9596c9692f2f3f581b4ab7f0c407de8a9368ac4ff717 8002 
python-usb-devices_0.4.5-1_amd64.buildinfo
 38349572cf2836e77303c82188c6f1859ef85608ed0ac4c95edeed810657ac13 9616 
python3-usb-devices_0.4.5-1_all.deb
Files:
 da505d265590b030f215770c6a65d86d 2246 python optional 
python-usb-devices_0.4.5-1.dsc
 2c6db93d0e9859ef83a5af70b419ebc8 35434 python optional 
python-usb-devices_0.4.5.orig.tar.gz
 a40417c7627d690ab62387dd02ec6093 2360 python optional 
python-usb-devices_0.4.5-1.debian.tar.xz
 3cd9f55b3e90f9e3ecce65276f05fe13 8002 python optional 
python-usb-devices_0.4.5-1_amd64.buildinfo
 35fcc39ba6fd8ddcfd91bcb5e7a7fb7d 9616 python optional 
python3-usb-devices_0.4.5-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE+4rPp4xyYInDitAmlgWhCYxjuSoFAmXhq6IACgkQlgWhCYxj
uSoxKRAAhxgeMzaZLeNlQzf89TXbtkKlDPPvSnefnJ44LjEhK7kMe0Td72LhbqsD
nlr09I6GLED/MWm3LETH8L1y3kNrouk3sVuB36KFJzmrlr9aiuMXIaYa4zrAYUK4
sWDX9JnL2TS7dxvEp7NXiltg4WcMWfghFuxDib2s6gC/NCuI3V6Y7I4blshDiit6
MOs5uYxILiUHO7b8E8SpFGLbmQuZWoL0Le9ZY4+RssB/eUN5aFXqSeP+Cry2JMN8
5lpBQXGnn7

Bug#1064622: marked as done (ITP: python-chocolate -- Improvement to Python's kwargs)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:21 +
with message-id 
and subject line Bug#1064622: fixed in python-chocolate 0.0.2-1
has caused the Debian Bug report #1064622,
regarding ITP: python-chocolate -- Improvement to Python's kwargs
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1064622: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064622
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Yogeswaran Umasankar 
X-Debbugs-Cc: debian-de...@lists.debian.org, kd8...@gmail.com

* Package name: python-chocolate
  Version : 0.0.2
  Upstream Contact: Seungjae Ryan Lee 
* URL : https://github.com/seungjaeryanlee/chocolate
* License : Expat
  Programming Lang: Python
  Description : Improvement to Python's kwargs

Chocolate is a Python package that improves Python's
 `**kwargs`. It is a depend for other python packages. I am planning to
 maintain it under DPT, and need sponsorship.
--- End Message ---
--- Begin Message ---
Source: python-chocolate
Source-Version: 0.0.2-1
Done: Yogeswaran Umasankar 

We believe that the bug you reported is fixed in the latest version of
python-chocolate, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yogeswaran Umasankar  (supplier of updated python-chocolate 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 24 Feb 2024 23:00:00 +
Source: python-chocolate
Binary: python3-chocolate
Architecture: source all
Version: 0.0.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Yogeswaran Umasankar 
Description:
 python3-chocolate - Improvement to Python's kwargs
Closes: 1064622
Changes:
 python-chocolate (0.0.2-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1064622)
Checksums-Sha1:
 dab31b3215dc33161b74cfbf674b205489997ba0 2133 python-chocolate_0.0.2-1.dsc
 dead144ad65317d7e59590be907ae1892d7422a5 1651 
python-chocolate_0.0.2.orig.tar.gz
 1da68c781573b13f06d1cda77f920aeba6bf3365 1944 
python-chocolate_0.0.2-1.debian.tar.xz
 e3577f2e5a41d1d1e42c2343a7673ea591917766 7083 
python-chocolate_0.0.2-1_amd64.buildinfo
 618945e47f4b3ff7114c8918e9b396d16d8721da 3552 python3-chocolate_0.0.2-1_all.deb
Checksums-Sha256:
 2f2ad293bd1ed7cef9933883197f3db766dc45dcb3c238d494dc4928df91657f 2133 
python-chocolate_0.0.2-1.dsc
 3474af447e11c592635afae2578d8f425351045949dc1c2fd3a98dd859b5816c 1651 
python-chocolate_0.0.2.orig.tar.gz
 84f4f35c707838351ab77e5fa1f392440ee9e5f7c6873c5a1181783ca870ccc0 1944 
python-chocolate_0.0.2-1.debian.tar.xz
 7162604209a572d091370e238d79805b4a978781b6aa08bdb6d882e54c691e34 7083 
python-chocolate_0.0.2-1_amd64.buildinfo
 d9523c128697048deff2f98e1afeec55b14068519445cc6aa49ff1a3b583d670 3552 
python3-chocolate_0.0.2-1_all.deb
Files:
 f9d148ddf2a7a44e46b14e98f59c94f5 2133 python optional 
python-chocolate_0.0.2-1.dsc
 03c04aa18c0f6240581a3c815de50882 1651 python optional 
python-chocolate_0.0.2.orig.tar.gz
 83aece3abdad0fecf2d5825fcb01a415 1944 python optional 
python-chocolate_0.0.2-1.debian.tar.xz
 32c61dfabdc37481e3aa3a7e0cc6a4b1 7083 python optional 
python-chocolate_0.0.2-1_amd64.buildinfo
 fe62ae8fb7f3bf68817aaa82f98c0122 3552 python optional 
python3-chocolate_0.0.2-1_all.deb

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEE3lnVbvHK7ir4q61+p3sXeEcY/EFAmXkgW4SHGVhbWFudUBk
ZWJpYW4ub3JnAAoJEPqd7F3hHGPxczMP/jJ+ZeB7ZjV0WWzCRmfVoqUXQJaXOLL5
QUNmK5G7oyIbYnaUo3MYg8Oy8pkmii5S49Kg8MSn5SwR6A4YQOP9Qrop2f91kp4L
g4O5IAuTaE7wAfEoZTn6qPQah4Rel+x4H8rGoDS7fKwdC5SrPVN4+8pLXsZ4bHNq
Df46oVWkqijq2dAoDoOx+USAkw37SfEyi9gJEJAY8NatvMn7aIJOUdPt3IEC/2Yy
FIFJ29MNhJmbmhtTzU12LyUTDqgfexB/N5n6Vw4lZns0f+MJo3NiaozdJYRi+nSy
taBS0HD2hZ0dz/oZd8JhvKsUTuUD+uzcUah97Z0Uyl5f2/HCbxh99L051Uz0oR4/
VpvYSSXX7ma89kIg/DyuJ4GpTm7lIs2J4zrCOgBql5qxUSAygq7FViNbhdgu2Chn
h0h3JT9yviudI2lB0w0QAyUx49c3OSTtUomHXhOecaz4WzNZI7QvrMJFVccxkMl0
JDgnMBv8gB/CYnratOtGNqeP4hoE6PhkVG591hVIoHFQLbHnJBQx0Gp4T1vl+Yqh
AYFB1jzuE8urxdmdd68nVkgE32rwTAaYEJFbMSJBpznvrrd4ptdctNmTsbb6WWtL
esx/0+hB/5N0AyenXqc4ftYifrQLfwxuLcCHtL8zdnTNh69S/BpfOoMl

Bug#1064623: marked as done (ITP: golang-github-tscholl2-siec -- Super-Isolated Elliptic Curve Implementation in Go)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:14 +
with message-id 
and subject line Bug#1064623: fixed in golang-github-tscholl2-siec 
0.0~git20210707.9bdfc48-1
has caused the Debian Bug report #1064623,
regarding ITP: golang-github-tscholl2-siec -- Super-Isolated Elliptic Curve 
Implementation in Go
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

* Package name: golang-github-tscholl2-siec
  Version : 0.0~git20210707.9bdfc48-1
  Upstream Author : Travis Scholl
* URL : https://github.com/tscholl2/siec
* License : Expat
  Programming Lang: Go
  Description : Super-Isolated Elliptic Curve Implementation in Go

 Super-Isolated Elliptic Curve Implementation in Go
 .
 This package exports a super-isolated elliptic curve. Over the base field
 𝔽ₚ, the curve E does not admit any isogenies to other curves.

This is a dependency of croc, which I'm also working on packaging
--- End Message ---
--- Begin Message ---
Source: golang-github-tscholl2-siec
Source-Version: 0.0~git20210707.9bdfc48-1
Done: Guilherme Puida Moreira 

We believe that the bug you reported is fixed in the latest version of
golang-github-tscholl2-siec, which is due to be installed in the Debian FTP 
archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Guilherme Puida Moreira  (supplier of updated 
golang-github-tscholl2-siec package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 24 Feb 2024 11:15:10 -0300
Source: golang-github-tscholl2-siec
Binary: golang-github-tscholl2-siec-dev
Architecture: source all
Version: 0.0~git20210707.9bdfc48-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Guilherme Puida Moreira 
Description:
 golang-github-tscholl2-siec-dev - Super-Isolated Elliptic Curve Implementation 
in Go (library)
Closes: 1064623
Changes:
 golang-github-tscholl2-siec (0.0~git20210707.9bdfc48-1) unstable; 
urgency=medium
 .
   * Initial release (Closes: #1064623)
Checksums-Sha1:
 f7b842a54e9f682bf6d0da225b3fd61f0d39e3a4 2394 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48-1.dsc
 1e1167a5e1ff08b21761e1779763fc1715e57952 64507 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48.orig.tar.gz
 553e06bb9506729f7bb871ccfd7f41d14fab3a11 3296 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48-1.debian.tar.xz
 a73f859a613f9718a52003e0e112281eb67daabe 54880 
golang-github-tscholl2-siec-dev_0.0~git20210707.9bdfc48-1_all.deb
 1dac5deee813f7abfbb429d47414ababdb5f731d 6637 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48-1_amd64.buildinfo
Checksums-Sha256:
 c0e21153574f77aa0237c268da3f8f93829c0f955e7f0aeb4619f52326568ba1 2394 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48-1.dsc
 3806a4af0a47a6a62fad4de10f34d322d88c28e464da7e0b1c0013b2bdc461bf 64507 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48.orig.tar.gz
 b67baece10d258e44d1967c023051a9631f9f9152d649cd11fb510ba9d1740fd 3296 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48-1.debian.tar.xz
 dee1321cd523ac9427c0c713ff5795c0df2e794710de400aa08dc914517c359d 54880 
golang-github-tscholl2-siec-dev_0.0~git20210707.9bdfc48-1_all.deb
 dfeda728daea47560a6fe12fc395d4998575cbdb4e65240c4e27af1f2212fd42 6637 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48-1_amd64.buildinfo
Files:
 6d51062b0356d94b398858d947f396a4 2394 golang optional 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48-1.dsc
 c0a979e587bad66380f9d2bdf7673d49 64507 golang optional 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48.orig.tar.gz
 a6345a296d733862f53d75b2aa74b197 3296 golang optional 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48-1.debian.tar.xz
 690f50b88ca399711e969513cb3f3414 54880 golang optional 
golang-github-tscholl2-siec-dev_0.0~git20210707.9bdfc48-1_all.deb
 7883f12e7b80d493e5fb85b995d1473a 6637 golang optional 
golang-github-tscholl2-siec_0.0~git20210707.9bdfc48-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJIBAEBCgAyF

Bug#1064625: marked as done (ITP: golang-github-schollz-mnemonicode -- Encode binary data into a sequence of words)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:13 +
with message-id 
and subject line Bug#1064625: fixed in golang-github-schollz-mnemonicode 1.0.1-1
has caused the Debian Bug report #1064625,
regarding ITP: golang-github-schollz-mnemonicode -- Encode binary data into a 
sequence of words
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

* Package name: golang-github-schollz-mnemonicode
  Version : 1.0.1-1
  Upstream Author : Zack
* URL : https://github.com/schollz/mnemonicode
* License : Expat
  Programming Lang: Go
  Description : Encode binary data into a sequence of words

 Mnemonicode is a method for encoding binary data into a sequence of
 words which can be spoken over the phone, for example, and converted
 back to data on the other side.

This is a dependency of croc, which I'm also working on packaging.
--- End Message ---
--- Begin Message ---
Source: golang-github-schollz-mnemonicode
Source-Version: 1.0.1-1
Done: Guilherme Puida Moreira 

We believe that the bug you reported is fixed in the latest version of
golang-github-schollz-mnemonicode, which is due to be installed in the Debian 
FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1064...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Guilherme Puida Moreira  (supplier of updated 
golang-github-schollz-mnemonicode package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 24 Feb 2024 23:30:55 -0300
Source: golang-github-schollz-mnemonicode
Binary: golang-github-schollz-mnemonicode-dev
Architecture: source all
Version: 1.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Guilherme Puida Moreira 
Description:
 golang-github-schollz-mnemonicode-dev - Encode binary data into a sequence of 
words (library)
Closes: 1064625
Changes:
 golang-github-schollz-mnemonicode (1.0.1-1) unstable; urgency=medium
 .
   * Initial release (Closes: #1064625)
Checksums-Sha1:
 86ca11c223a46d42d212a1bdd0ab3748db25e804 2343 
golang-github-schollz-mnemonicode_1.0.1-1.dsc
 83d18cf07805176269cd4422b31ec9351fc40ef6 18201 
golang-github-schollz-mnemonicode_1.0.1.orig.tar.gz
 e251d7922c7639f7888a1e35fb59bb80b31e3719 3500 
golang-github-schollz-mnemonicode_1.0.1-1.debian.tar.xz
 31f08ff1532c19c87f7b14cee6d3c136cab28ab2 14196 
golang-github-schollz-mnemonicode-dev_1.0.1-1_all.deb
 f629d8763e0d0e9ae634cc7c894bfad25a87a1fb 6558 
golang-github-schollz-mnemonicode_1.0.1-1_amd64.buildinfo
Checksums-Sha256:
 a1b61de78b78d40894bbc87638c04b91c8b8d130f849ddc2051fdd7c7d67b0e4 2343 
golang-github-schollz-mnemonicode_1.0.1-1.dsc
 d51fc669327f7893ae19441f727c31a50589c52d9319d851014b066195fea774 18201 
golang-github-schollz-mnemonicode_1.0.1.orig.tar.gz
 db7d97ea5d2ca90f37534b07fcfbc6f948867c38715fd900780b40438a5933e6 3500 
golang-github-schollz-mnemonicode_1.0.1-1.debian.tar.xz
 5a8c590ee8baa34a2957f7217ce44de7c818f3e32332ec0df41278d74bd4c307 14196 
golang-github-schollz-mnemonicode-dev_1.0.1-1_all.deb
 3c8ce8b2006c9e6d5af17cab486c015085ecf50445ee9a70855a82cbf576a93c 6558 
golang-github-schollz-mnemonicode_1.0.1-1_amd64.buildinfo
Files:
 496453d194797aafba8ea76a9ffc6c6f 2343 golang optional 
golang-github-schollz-mnemonicode_1.0.1-1.dsc
 5f70772fc1348eeea6e198552e756216 18201 golang optional 
golang-github-schollz-mnemonicode_1.0.1.orig.tar.gz
 334e76ecca490f309d97a0c4b29100ac 3500 golang optional 
golang-github-schollz-mnemonicode_1.0.1-1.debian.tar.xz
 791201448705b6724748eee1d057a822 14196 golang optional 
golang-github-schollz-mnemonicode-dev_1.0.1-1_all.deb
 12e005ec40683a53c4efefdf0c2040f3 6558 golang optional 
golang-github-schollz-mnemonicode_1.0.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEI3pUsQKHKL8A7zH00Ot2KGX8XjYFAmXsni4ACgkQ0Ot2KGX8
Xja+9w/+PXqdXDe9T2oDgwRtPDV0dd3rFcEp9QkBD2EuALg5UQOUanQK7se+z8wb
wa8wVWO/JKygF6cFiZDJ9fRdVwOsMzkepDiaddrWaJQ/G4quMUJByAgUU9YQIKeA
xlUF9HFErHwYiZPiAehi5fO9lbJW8e5n23tloZ0bdhXH18FzDbqzZnh+CB5NtG88
XWhwABxYW

Bug#1066087: marked as done (ITP: python-influxdb-client -- InfluxDB 2.0 Python client library)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:23 +
with message-id 
and subject line Bug#1066087: fixed in python-influxdb-client 1.40.0-1
has caused the Debian Bug report #1066087,
regarding ITP: python-influxdb-client -- InfluxDB 2.0 Python client library
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1066087: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066087
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-influxdb-client
  Version : 1.40.0
  Upstream Contact: InfluxData, Inc.
* URL : https://github.com/influxdata/influxdb-client-python
* License : Expat
  Programming Lang: Python
  Description : InfluxDB 2.0 Python client library

 Client library for use with InfluxDB 2.x and Flux. InfluxDB 3.x users should
 instead use the lightweight v3 client library (influxdb3-python). InfluxDB 1.x
 users should use the v1 client library (influxdb-python). For ease of
 migration and a consistent query and write experience, v2 users should
 consider using InfluxQL and the v1 client library (influxdb-python).
 .
 The API of the influxdb-client is not the backwards-compatible with the old
 one influxdb-python.
--- End Message ---
--- Begin Message ---
Source: python-influxdb-client
Source-Version: 1.40.0-1
Done: Thomas Goirand 

We believe that the bug you reported is fixed in the latest version of
python-influxdb-client, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1066...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Thomas Goirand  (supplier of updated python-influxdb-client 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 12 Mar 2024 13:37:23 +0100
Source: python-influxdb-client
Binary: python3-influxdb-client
Architecture: source all
Version: 1.40.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian OpenStack 
Changed-By: Thomas Goirand 
Description:
 python3-influxdb-client - InfluxDB 2.0 Python client library
Closes: 1066087
Changes:
 python-influxdb-client (1.40.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1066087)
Checksums-Sha1:
 a4d9620303b4bdc7cdfd6d14c1f5f911eba2e9f3 2470 
python-influxdb-client_1.40.0-1.dsc
 1ce2491675fcb2a4715f5267924544b22d279010 1554452 
python-influxdb-client_1.40.0.orig.tar.xz
 24c79ae02f938754390adf920277de7f81d1dc49 2432 
python-influxdb-client_1.40.0-1.debian.tar.xz
 babd38a7bdc569f40023f34d8d0c1a33e32174f4 9917 
python-influxdb-client_1.40.0-1_amd64.buildinfo
 d9cd9dd28ecda08a49d24afdee8ce1d2bc690884 217860 
python3-influxdb-client_1.40.0-1_all.deb
Checksums-Sha256:
 5ef5a8ede030bab1c4e8709af90f8711e2c9c04fd7c009cb396818037e850fc6 2470 
python-influxdb-client_1.40.0-1.dsc
 bfa33c7b51b421f128b09343369ceca5637abebcc2ed4b0e13ab419103104089 1554452 
python-influxdb-client_1.40.0.orig.tar.xz
 47625ba584095a3996b3636d2d790ec8b20e21e58908af12926b4a16a66824fb 2432 
python-influxdb-client_1.40.0-1.debian.tar.xz
 fed3ed796053f8036bf0e136877e0d67af6f07984b10d505e9e2ab0634081924 9917 
python-influxdb-client_1.40.0-1_amd64.buildinfo
 8474193b097afad42f09f27604945a67d630ecd14f8af9c9ad79092cfaecd60f 217860 
python3-influxdb-client_1.40.0-1_all.deb
Files:
 dfdb03d3392a44cb67149c3e9df7ea16 2470 python optional 
python-influxdb-client_1.40.0-1.dsc
 75aafdebae52b8292fe22ec92582ac21 1554452 python optional 
python-influxdb-client_1.40.0.orig.tar.xz
 8e797191f0853592d2497c8312a25c4c 2432 python optional 
python-influxdb-client_1.40.0-1.debian.tar.xz
 91aa1217ffe88b4018753f96da4c7403 9917 python optional 
python-influxdb-client_1.40.0-1_amd64.buildinfo
 7497bb086ddf9cfef3bb7a82ace91c58 217860 python optional 
python3-influxdb-client_1.40.0-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEoLGp81CJVhMOekJc1BatFaxrQ/4FAmXwcioACgkQ1BatFaxr
Q/6CiQ//WyXF8nVNBTXr1wtBGPrk65NWIgrhvlIDKsvIJ1NxBEMHcOWeQVOuTjbL
2zkBLnJPJUzbLw+vFBLvwBu9Kzo3oA1cGhM84/YmBADi4w3itEgGiTPPh1iIyo1I
9xnq0swKd4qTszSyMJ4Lfe6PVkT9wYamBxk197rt6CqtUMKYWJ5LmReg7mAQP7tJ
MDx0I5Q/dtVUg5tcV71I8cltUtrYS9C0UrXVUiPIIC7f4d/b

Bug#1065468: marked as done (ITP: python-rpcq -- RPC framework and message specification for Rigetti QCS)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:25 +
with message-id 
and subject line Bug#1065468: fixed in python-rpcq 3.11.0-1
has caused the Debian Bug report #1065468,
regarding ITP: python-rpcq -- RPC framework and message specification for 
Rigetti QCS
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1065468: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065468
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Yogeswaran Umasankar 
X-Debbugs-Cc: debian-de...@lists.debian.org, kd8...@gmail.com

* Package name: python-rpcq
  Version : 3.11.0
  Upstream Contact: Rigetti Computing 
* URL : https://github.com/rigetti/rpcq
* License : Apache-2.0
  Programming Lang: Python
  Description : RPC framework and message specification for Rigetti QCS

Asynchronous RPC client-server framework and message
 specification for Rigetti Quantum Cloud Services (QCS).
 Implements an efficient transport protocol by using
 ZeroMQ (ZMQ) sockets and MessagePack (msgpack) serialization.
 Not intended to be a full-featured replacement for other
 frameworks like gRPC or Apache Thrift. It is depend for other python
 packages such as pyquil. I planned to maintain it under DPT, and need
 sponsorship.
--- End Message ---
--- Begin Message ---
Source: python-rpcq
Source-Version: 3.11.0-1
Done: Yogeswaran Umasankar 

We believe that the bug you reported is fixed in the latest version of
python-rpcq, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1065...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yogeswaran Umasankar  (supplier of updated python-rpcq 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 04 Mar 2024 23:30:00 +
Source: python-rpcq
Binary: python3-rpcq
Architecture: source all
Version: 3.11.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Yogeswaran Umasankar 
Description:
 python3-rpcq - RPC framework and message specification for Rigetti QCS
Closes: 1065468
Changes:
 python-rpcq (3.11.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1065468)
Checksums-Sha1:
 2fdd7dc4cf0b38fab751d27e9f06d094f80cb1a2 2145 python-rpcq_3.11.0-1.dsc
 b7ca8463b1f9ed4de72720501e48c28fbb282725 45589 python-rpcq_3.11.0.orig.tar.gz
 8e09c111debfee543270ea12d5bcbf37b3767a6c 1872 
python-rpcq_3.11.0-1.debian.tar.xz
 ce1112215b66464070f34e36feaa09f636a9739b 7307 
python-rpcq_3.11.0-1_amd64.buildinfo
 70638ee6e51fc0de2ef21073b90dfe0cc55b99cb 37932 python3-rpcq_3.11.0-1_all.deb
Checksums-Sha256:
 6d9ba8edfb2f2c1ac7d4cba784f0bbc2b8e51682d4c045a15833a46b3c5d7b25 2145 
python-rpcq_3.11.0-1.dsc
 4361e759782f58dd0b8aa3a6d901e3ea5709f91c6a060bd444081fbb007b05a9 45589 
python-rpcq_3.11.0.orig.tar.gz
 03b6f7c6b945f8e462c09d45222de4e550f7a5270a2b4c579255e2c91b1b7b3f 1872 
python-rpcq_3.11.0-1.debian.tar.xz
 f93d93d70171b57ebcbcd27abaa35ac9411fa9c6b8d0ae16838d2a4250bb7e57 7307 
python-rpcq_3.11.0-1_amd64.buildinfo
 0422179b29b38c4da178824129be658c4a08ce4aae02a02a6d7564cf50be6c7a 37932 
python3-rpcq_3.11.0-1_all.deb
Files:
 7be0db08246418e0d8abfa238a97b8c8 2145 python optional python-rpcq_3.11.0-1.dsc
 4ed235583eb32a94625962bd9ac397e8 45589 python optional 
python-rpcq_3.11.0.orig.tar.gz
 bd2c9fa8d046f5dc86eec4196c400d53 1872 python optional 
python-rpcq_3.11.0-1.debian.tar.xz
 d3d36c36dbc3da1e69ab3d73b74a9c59 7307 python optional 
python-rpcq_3.11.0-1_amd64.buildinfo
 1a6700f3421193b25d7c4b90d3cfe78b 37932 python optional 
python3-rpcq_3.11.0-1_all.deb

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEE3lnVbvHK7ir4q61+p3sXeEcY/EFAmXq4SISHGVhbWFudUBk
ZWJpYW4ub3JnAAoJEPqd7F3hHGPxofkP/j1Xe7EsCgsZYCVce0CE5iy7NOv3y+5z
FykUtFWgvzXFQbftpTjt8GpQM868gObi39jGQ4F9M+7k14m/TVS15h9rWeIn3uei
Wi7fOaOuprgcZjsoxznp8BG77VhI2FIZ0M8yPXadV1DFsiUEhTfyvHAAURsSd2Uk
qBZEPAjBPi6nkvrLc6qi9ug6c/MVU+gRgd1x1DT/Ldzkc8WaoSMrYZ0LPveJ1d4S
eqw+mUn2wX+DE/AeChozHI+8EsIyeCG6mROUBDRluH+iW6Mm80ZTbQ5xbY5Meb90
IE1toKSM926zktX8oDfLQOjmuLB895HhHcytazldMMtlY4VtOE1SPM+sP9y266CP
GYQobj2xUqStMb5G5BMgQzwvQ6vJy8FIQadhULTdVEymqzXT9UMr1JHgZVkn3Ouc
+F4YgGmGxEEFlFXc

Bug#1065009: marked as done (ITP: golang-github-muhlemmer-httpforwarded -- Library for parsing the HTTP Forwarded header (RFC-7239))

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:11 +
with message-id 
and subject line Bug#1065009: fixed in golang-github-muhlemmer-httpforwarded 
0.1.0-1
has caused the Debian Bug report #1065009,
regarding ITP: golang-github-muhlemmer-httpforwarded -- Library for parsing the 
HTTP Forwarded header (RFC-7239)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

* Package name: golang-github-muhlemmer-httpforwarded
  Version : 0.1.0-1
  Upstream Author : Tim Möhlmann
* URL : https://github.com/muhlemmer/httpforwarded
* License : BSD-3-clause
  Programming Lang: Go
  Description : Library for parsing the HTTP Forwarded header (RFC-7239)

 The httpforwarded go package provides utility functions for working
 with the Forwarded HTTP header as defined in RFC-7239
 (https://tools.ietf.org/html/rfc7239). This header is proposed to
 replace the X-Forwarded-For and X-Forwarded-Proto headers, amongst
 others.
 .
 This package was heavily inspired by the mime package in the standard
 library, more specifically the ParseMediaType() function.

This is a new dependency required to update golang-github-zitadel-oidc
and will be team-maintained within the Go Packaging Team.


signature.asc
Description: This is a digitally signed message part
--- End Message ---
--- Begin Message ---
Source: golang-github-muhlemmer-httpforwarded
Source-Version: 0.1.0-1
Done: Mathias Gibbens 

We believe that the bug you reported is fixed in the latest version of
golang-github-muhlemmer-httpforwarded, which is due to be installed in the 
Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1065...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mathias Gibbens  (supplier of updated 
golang-github-muhlemmer-httpforwarded package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 28 Feb 2024 22:45:09 +
Source: golang-github-muhlemmer-httpforwarded
Binary: golang-github-muhlemmer-httpforwarded-dev
Architecture: source all
Version: 0.1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Go Packaging Team 
Changed-By: Mathias Gibbens 
Description:
 golang-github-muhlemmer-httpforwarded-dev - Library for parsing the HTTP 
Forwarded header (RFC-7239)
Closes: 1065009
Changes:
 golang-github-muhlemmer-httpforwarded (0.1.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #1065009)
Checksums-Sha1:
 38d2c6402774d09d098aca0aab5fc4cc77ae53b8 2399 
golang-github-muhlemmer-httpforwarded_0.1.0-1.dsc
 931085d48d9e48222542c5050ca44dc0cb1e593e 6922 
golang-github-muhlemmer-httpforwarded_0.1.0.orig.tar.gz
 a5ae69fcc2f26d6a354f462823d20b5e47ce553e 2484 
golang-github-muhlemmer-httpforwarded_0.1.0-1.debian.tar.xz
 6d00397c122e64d627a9d777f17b4040d93b18e2 7104 
golang-github-muhlemmer-httpforwarded-dev_0.1.0-1_all.deb
 87adc65b4dd17f90ebb242adba182147b53978d5 7432 
golang-github-muhlemmer-httpforwarded_0.1.0-1_amd64.buildinfo
Checksums-Sha256:
 614bf742819384b81cb4a359466ac553ad77d5a65116b9dd69a0eced82ce482b 2399 
golang-github-muhlemmer-httpforwarded_0.1.0-1.dsc
 9697b6025b1ead39581f843e816c87af84a03f7dd6399e232d465ea6dcdca988 6922 
golang-github-muhlemmer-httpforwarded_0.1.0.orig.tar.gz
 4894b96559fadcdcaf51bf0282206e4cc867a8c9050bf92754c9e2ed2add5b39 2484 
golang-github-muhlemmer-httpforwarded_0.1.0-1.debian.tar.xz
 ee5ad93340954af5b925335904f48cf85109da6eb0eec66354fcedeb22701215 7104 
golang-github-muhlemmer-httpforwarded-dev_0.1.0-1_all.deb
 184dd2918404b0ed41eab67ac766890641667a93c736c215701cf2996c9983e1 7432 
golang-github-muhlemmer-httpforwarded_0.1.0-1_amd64.buildinfo
Files:
 3311a95bc651cdadae473479048f167f 2399 golang optional 
golang-github-muhlemmer-httpforwarded_0.1.0-1.dsc
 f37e243bc6f3df53f13b968de973778d 6922 golang optional 
golang-github-muhlemmer-httpforwarded_0.1.0.orig.tar.gz
 98d842679cc251de33a42721ad3b3175 2484 golang optional 
golang-github-muhlemmer-httpforwarded_0.1.0-1.debi

Bug#1065536: marked as done (ITP: python-bluetooth-adapters -- Enumerate and find Bluetooth Adapters in Python)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:21 +
with message-id 
and subject line Bug#1065536: fixed in python-bluetooth-adapters 0.18.0-1
has caused the Debian Bug report #1065536,
regarding ITP: python-bluetooth-adapters -- Enumerate and find Bluetooth 
Adapters in Python
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1065536: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065536
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Edward Betts 
X-Debbugs-Cc: debian-de...@lists.debian.org, debian-pyt...@lists.debian.org

* Package name: python-bluetooth-adapters
  Version : 0.18.0
  Upstream Author : J. Nick Koston 
* URL : https://github.com/bluetooth-devices/bluetooth-adapters
* License : MIT
  Programming Lang: Python
  Description : Enumerate and find Bluetooth Adapters in Python

  Provides tools for enumerating and identifying available Bluetooth adapters.
  Facilitates the detection and interaction with various Bluetooth adapters,
  aiding in the development of applications requiring Bluetooth communication.
  .
  Features include:
- discovering Bluetooth adapters
- adapter details
- perform scans for devices
- manage Bluetooth connections

I plan to maintain this package as part of the Python team.
--- End Message ---
--- Begin Message ---
Source: python-bluetooth-adapters
Source-Version: 0.18.0-1
Done: Edward Betts 

We believe that the bug you reported is fixed in the latest version of
python-bluetooth-adapters, which is due to be installed in the Debian FTP 
archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1065...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Edward Betts  (supplier of updated python-bluetooth-adapters 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 07 Mar 2024 14:24:17 +0100
Source: python-bluetooth-adapters
Binary: python3-bluetooth-adapters
Architecture: source all
Version: 0.18.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team 
Changed-By: Edward Betts 
Description:
 python3-bluetooth-adapters - Enumerate and find Bluetooth Adapters in Python
Closes: 1065536
Changes:
 python-bluetooth-adapters (0.18.0-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1065536)
Checksums-Sha1:
 adbc4c6ce12b0d238e1bdd62b9a84d5e9d5dc146 2576 
python-bluetooth-adapters_0.18.0-1.dsc
 cb65714c6f53aa444d95747cc1c493c8d5672f1c 60984 
python-bluetooth-adapters_0.18.0.orig.tar.gz
 f83fe4d4df6f967873d7d636a872fbdc1675bcb0 2384 
python-bluetooth-adapters_0.18.0-1.debian.tar.xz
 5ed6f39f4ab8bd1cd4587b965acdac340bcb70e6 8978 
python-bluetooth-adapters_0.18.0-1_amd64.buildinfo
 29317432bce14fafc0c1225ef17a1655f24dd7ed 15200 
python3-bluetooth-adapters_0.18.0-1_all.deb
Checksums-Sha256:
 a8e5c7e3b7d5e5084672c2cf71572e0c52a13c666fbe4c201d80abf96483d072 2576 
python-bluetooth-adapters_0.18.0-1.dsc
 1a79109cb8ab8f94b8e3d709f1ae147d2cd4278fc66311e6fa5a9583c12efc47 60984 
python-bluetooth-adapters_0.18.0.orig.tar.gz
 2d040ea9d495331f5cb0888130b69d25171c52dcc7b980a0862030c16da2021e 2384 
python-bluetooth-adapters_0.18.0-1.debian.tar.xz
 1c6efe7d5aeb363654c9c641c4bc02230cbb01d7779942e43a7b259212725962 8978 
python-bluetooth-adapters_0.18.0-1_amd64.buildinfo
 a131a545d07fd740f81a279bd758ecd5b2cee72f5773807a9980a86168e331f5 15200 
python3-bluetooth-adapters_0.18.0-1_all.deb
Files:
 fbebdab66458635906e291d522f6c997 2576 python optional 
python-bluetooth-adapters_0.18.0-1.dsc
 b975af067aae205eef03f1a74851725a 60984 python optional 
python-bluetooth-adapters_0.18.0.orig.tar.gz
 1d6a7647914c859b82ce8d7b55e6e47a 2384 python optional 
python-bluetooth-adapters_0.18.0-1.debian.tar.xz
 3ab4e6684210ec5190fca7749f35879b 8978 python optional 
python-bluetooth-adapters_0.18.0-1_amd64.buildinfo
 465c62a91640aabb46f1f7aa4b700674 15200 python optional 
python3-bluetooth-adapters_0.18.0-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE+4rPp4xyYInDitAmlgWhCYxjuSoFAmXpxnsACgkQlgWhCYxj
uSqngBAAtcQ31oRGIcAwU0xvl5aWKQAUCd4yc1KMC4boQ6OssmMQwxrIxJNEg11d
B3g9lARA5J5Aq2xIZswSkHGwlBMXg5M8mFdceHJHSwjsQvGnLjyjTqSTHrtLEi2c
Mlqevr7

Bug#1066026: marked as done (ITP: python-pytest-retry -- Adds the ability to retry flaky tests in pytest)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:24 +
with message-id 
and subject line Bug#1066026: fixed in python-pytest-retry 1.6.2-1
has caused the Debian Bug report #1066026,
regarding ITP: python-pytest-retry -- Adds the ability to retry flaky tests in 
pytest
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

Package: wnpp
Severity: wishlist
X-Debbugs-Cc: cru...@debian.org

Subject: ITP: python-pytest-retry -- Adds the ability to retry flaky 
tests in pytest

Package: wnpp
Owner: Michael R. Crusoe 
Severity: wishlist

* Package name : python-pytest-retry
Version : 1.6.2
Upstream Author : Copyright: (c) 2022 Silas
* URL : https://github.com/str0zzapreti/pytest-retry
* License : expat
Programming Lang: Python
Description : Adds the ability to retry flaky tests in pytest
A plugin for Pytest which adds the ability to retry flaky tests,
thereby improving the consistency of the test suite results.

Remark: This package is maintained by Debian Python Team at
https://salsa.debian.org/python-team/packages/python-pytest-retry

--
Michael R. Crusoe



OpenPGP_signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: python-pytest-retry
Source-Version: 1.6.2-1
Done: Michael R. Crusoe 

We believe that the bug you reported is fixed in the latest version of
python-pytest-retry, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1066...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael R. Crusoe  (supplier of updated python-pytest-retry 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 Mar 2024 08:22:50 +
Source: python-pytest-retry
Binary: python3-pytest-retry
Architecture: source all
Version: 1.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Team 
Changed-By: Michael R. Crusoe 
Description:
 python3-pytest-retry - Adds the ability to retry flaky tests in pytest
Closes: 1066026
Changes:
 python-pytest-retry (1.6.2-1) unstable; urgency=low
 .
   * Initial release; Closes: #1066026
Checksums-Sha1:
 2fdd04b640ac0e61b0dd557a0b40516d039019ea 2190 python-pytest-retry_1.6.2-1.dsc
 8af631dee4d54650be56f0d66624e2e6e311fac0 18935 
python-pytest-retry_1.6.2.orig.tar.gz
 183f52670680a6480dedc0c2b07ff9cae2700175 1968 
python-pytest-retry_1.6.2-1.debian.tar.xz
 8161b44d503f5c8450babaed16a0262fae8305f1 7698 
python-pytest-retry_1.6.2-1_amd64.buildinfo
 2986133ecfee5c919fe4a9e7c7af97625c443d11 15288 
python3-pytest-retry_1.6.2-1_all.deb
Checksums-Sha256:
 9d8f05134f23bad39191085ef97bb337d71372ef11651da8e162dd49d82e 2190 
python-pytest-retry_1.6.2-1.dsc
 8278634e21b0e8afa2b8bf85615700b9ae1a5da78463b13576b6c05aed2dbf5e 18935 
python-pytest-retry_1.6.2.orig.tar.gz
 6267434b7c88b2ece71337f2a2870a5b77c66a490fb0c578da3c0472b20214ba 1968 
python-pytest-retry_1.6.2-1.debian.tar.xz
 952e380f7f712206956d07b55f832a2f9593a95b37eef7f923bf6e51bcd51e96 7698 
python-pytest-retry_1.6.2-1_amd64.buildinfo
 4a4856b74ebc8ac58656328ecc5cd13ebaeb583fdf5d6d1f814eef433b7ad3df 15288 
python3-pytest-retry_1.6.2-1_all.deb
Files:
 73c6171c51b3f3eda35728a7ec305f1d 2190 python optional 
python-pytest-retry_1.6.2-1.dsc
 45983a15667ebd3f5621a38fc2a3de83 18935 python optional 
python-pytest-retry_1.6.2.orig.tar.gz
 c7856ca34464393fbe3ada6912ecb638 1968 python optional 
python-pytest-retry_1.6.2-1.debian.tar.xz
 d13962e85927370be0e885375aad6d8f 7698 python optional 
python-pytest-retry_1.6.2-1_amd64.buildinfo
 2b2c035015dd17461a3c29743251a227 15288 python optional 
python3-pytest-retry_1.6.2-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEck1gkzcRPHEFUNdHPCZ2P2xn5uIFAmXu1YgACgkQPCZ2P2xn
5uK7oxAAveQwWvDawbPkBqSembJcMqhfdk3z2KRUrGzD1uejNm7z7iCpF2O4Q6y/
NmnbZSWnqfInz0UvAW/yYKQJG+0ool4lS4UzYPpjmI+JwDSw51rKXBVZ7AI6fG87
G1exBAa5M/ujoI8T5VsSN26dHy8PKs5tZt+2DqelTq1vNNjSfa0t+7x1C67/rE0q
Rfpnuc+EqgsNGSCK+guQ7nZVnKepprqe99JFgBr8sxg9jRluYSQCwyap8s6LKx6p
4LSdH3/08/LQ74k0X8ONFqwBMPaX0pyNhMiiR4qpWLQMYJi4vQaPcMA3JxXasl+j
o32orMWp6di6zwu/TF0I74/2liRjyH0ul4HjaJ1jj8+m

Processed: retitle 1049339 to O: kannel -- WAP and SMS gateway

2024-03-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 1049339 O: kannel -- WAP and SMS gateway
Bug #1049339 [wnpp] RFA: kannel -- WAP and SMS gateway
Changed Bug title to 'O: kannel -- WAP and SMS gateway' from 'RFA: kannel -- 
WAP and SMS gateway'.
> thanks
Stopping processing here.

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



Bug#1066089: marked as done (ITP: python-reactivex -- asynchronous and event-based programs using observable collections)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 19:10:25 +
with message-id 
and subject line Bug#1066089: fixed in python-reactivex 4.0.4-1
has caused the Debian Bug report #1066089,
regarding ITP: python-reactivex -- asynchronous and event-based programs using 
observable collections
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1066089: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066089
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand 
X-Debbugs-Cc: debian-de...@lists.debian.org

* Package name: python-reactivex
  Version : 4.0.4
  Upstream Contact: Dag Brattli 
* URL : http://reactivex.io, https://github.com/ReactiveX/RxPY
* License : Expat
  Programming Lang: Python
  Description : asynchronous and event-based programs using observable 
collections

 This package provides a library for composing asynchronous and event-based
 programs using observable collections and query operator functions in Python.
 Using Rx, developers represent asynchronous data streams with Observables,
 query asynchronous data streams using operators, and parameterize concurrency
 in data/event streams using Schedulers.
--- End Message ---
--- Begin Message ---
Source: python-reactivex
Source-Version: 4.0.4-1
Done: Thomas Goirand 

We believe that the bug you reported is fixed in the latest version of
python-reactivex, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1066...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Thomas Goirand  (supplier of updated python-reactivex package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 12 Mar 2024 13:51:04 +0100
Source: python-reactivex
Binary: python3-reactivex
Architecture: source all
Version: 4.0.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian OpenStack 
Changed-By: Thomas Goirand 
Description:
 python3-reactivex - asynchronous and event-based programs using observable 
collection
Closes: 1066089
Changes:
 python-reactivex (4.0.4-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #1066089)
Checksums-Sha1:
 15f029468b3641a89a33917d7863f165ae957565 2341 python-reactivex_4.0.4-1.dsc
 aea3426c243e3f3335c7cc04524381b176801e90 828796 
python-reactivex_4.0.4.orig.tar.xz
 a03482a5914858347d59a581e661cf037fc6b3e5 2356 
python-reactivex_4.0.4-1.debian.tar.xz
 40a179c793b7663d139c4664fdb7c9353ec3ec67 7956 
python-reactivex_4.0.4-1_amd64.buildinfo
 6d899450c8adc417453a3141a06e781fdbae89f8 89428 
python3-reactivex_4.0.4-1_all.deb
Checksums-Sha256:
 e8768faa4055146d25501d65121117c628ef870e2783c265b2449405580d0315 2341 
python-reactivex_4.0.4-1.dsc
 d2a3a3257f649acbc9bd69c7ab385574af57460f493d5eafd5af5dd357f596b8 828796 
python-reactivex_4.0.4.orig.tar.xz
 ae8cc0d95c524ae486d433a1a58312946b43d2777041fa3b2fc6446282a4afaf 2356 
python-reactivex_4.0.4-1.debian.tar.xz
 8c071733f2d1fcc351e4e0f496e1647dfc731bf4dbd2bca8dd67ee326beda6bf 7956 
python-reactivex_4.0.4-1_amd64.buildinfo
 bb4f7f37deb9968485e29c6d9681e16383c4e2000f04b5499b2e42abcd98632a 89428 
python3-reactivex_4.0.4-1_all.deb
Files:
 04993b72ad1c648e18e9c6e629e450a0 2341 python optional 
python-reactivex_4.0.4-1.dsc
 e49914df9a44ec9320eb09f6397e3799 828796 python optional 
python-reactivex_4.0.4.orig.tar.xz
 dbfee33192f258e0a7dc7fab560cdf27 2356 python optional 
python-reactivex_4.0.4-1.debian.tar.xz
 6a6d3c2afb10ddad0ff8f28e61bef18e 7956 python optional 
python-reactivex_4.0.4-1_amd64.buildinfo
 aee7ba4ed6c9c7d7f4097bf7ef56cce0 89428 python optional 
python3-reactivex_4.0.4-1_all.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEoLGp81CJVhMOekJc1BatFaxrQ/4FAmXwYEAACgkQ1BatFaxr
Q/4jAxAAgRtL9INYuRW8Rmx1X2mBRq2bDrKf9j5YvsnjIQJGXTWXwHkH9WXX05OB
mjYl84A3o0kt5q5RZaHchYBSaUVAYr6KM5f8lRHndQn8JuUpB0LvHU3x5SKiNDKV
VyjczJACnjniXMxrlSh8Ww2446ayvZhoZq01thjUBdRTJuEuRzuUl+Nw2TiPCsWF
51AbzUfBMf/7DQzfanOHxaTIeD520eB+k3GzY+Cy3hEb0+sNcTCB+ZB/LpiOZW3u
s1f6BywBhLewoekew8NFBAMyvT6PnAeST9Gd7jG5XeiVXe7tKXaMCGw9f7lYeFjX
WDfK55hVhdGDR4itG4RLbAKg7dOlqethhls/4GmfBi9PC6kK2x2KMqqjTpoXqZwV
bRixfrk6Qvz1tOEMh/ml3SxoeybihvGYiILaUWJQXCV9OzAdt1M341rn/

Processed: Bug#1065240 marked as pending in logilab-constraint

2024-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #1065240 [wnpp] O: logilab-constraint -- constraints satisfaction solver in 
Python - Python 3
Added tag(s) pending.

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



Bug#1066815: ITP: golang-github-woblerr-pgbackrest-exporter -- Prometheus exporter for pgBackRest

2024-03-13 Thread Lena Voytek
Package: wnpp
Severity: wishlist
Owner: Lena Voytek 
X-Debbugs-Cc: debian-de...@lists.debian.org, l...@voytek.dev

* Package name: golang-github-woblerr-pgbackrest-exporter
  Version : 0.16.2
  Upstream Author : Anton Kurochkin 
* URL : https://github.com/woblerr/pgbackrest_exporter
* License : MIT
  Programming Lang: Go
  Description : Prometheus exporter for pgBackRest

pgBackRest Exporter is a Prometheus exporter tool designed to collect and
expose metrics from pgBackRest, a PostgreSQL backup and restore system. For
more information on pgBackRest see https://pgbackrest.org/ and for exporters
in general see https://prometheus.io/docs/instrumenting/exporters/

I intend to actively maintain this package within the Debian Go
Packaging team.



Bug#1040070: ITP texlab

2024-03-13 Thread Matthias Geiger
On Sun, 31 Dec 2023 00:50:23 +0100 Matthias Geiger 
 wrote:

> On Wed, 26 Jul 2023 22:45:19 +0100 Sebastian Crane
>  wrote:
> > Dear Matthias,
> >
> > > This seems like a nice thing to have in debian. Do you need any
> help with
> > > rust packaging ? From a first glance it doesn't look like there's
> that much
> > > missing. itertools and logos look like a good starting point.
> >
> > I would receive such help gratefully! I'll join the IRC channel as per
> > your suggestion.
> >
>
>
> I got isocountry accepted. this equals only the logos-* stack missing;
> currently it's not packageable because a dependency had an api change.

Just packaged the logos stack, will look into getting it uploaded to the 
archive.


Haven't looked into whether anything else is missing for the new upstream.

best,

--
Matthias Geiger 
Debian Maintainer
"Freiheit ist immer Freiheit des anders Denkenden" -- Rosa Luxemburg



OpenPGP_0x18BD106B3B6C5475.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1066818: ITP: python-msgspec -- Fast serialization and validation library

2024-03-13 Thread Stein Magnus Jodal
Package: wnpp
Severity: wishlist
Owner: Stein Magnus Jodal 
X-Debbugs-Cc: debian-de...@lists.debian.org, jo...@debian.org

* Package name: python-msgspec
  Version : 0.18.6
  Upstream Contact: Jim Crist-Harif 
* URL : https://jcristharif.com/msgspec/
* License : BSD-3-Clause
  Programming Lang: Python
  Description : Fast serialization and validation library

A fast serialization and validation library, with builtin support for JSON,
MessagePack, YAML, and TOML.
.
 * High performance encoders/decoders for common protocols. The JSON and
   MessagePack implementations regularly benchmark as the fastest options for
   Python.
 * Support for a wide variety of Python types. Additional types may be
   supported through extensions.
 * Zero-cost schema validation using familiar Python type annotations. In
   benchmarks msgspec decodes and validates JSON faster than orjson can decode
   it alone.
 * A speedy Struct type for representing structured data. If you already use
   dataclasses or attrs, structs should feel familiar. However, they're 5-60x
   faster for common operations.
.
All of this is included in a lightweight library with no required
dependencies.

I will maintain this package as part of the Python team.



Bug#1040070: ITP texlab

2024-03-13 Thread Matthias Geiger

Am 13.03.24 um 21:55 schrieb Matthias Geiger:


>
>
> I got isocountry accepted. this equals only the logos-* stack missing;
> currently it's not packageable because a dependency had an api change.

Just packaged the logos stack, will look into getting it uploaded to 
the archive.


Haven't looked into whether anything else is missing for the new 
upstream.



Additionally missing:

human_name v2.0.2

unicode-case-mapping v0.4.0

 unidecode v0.3.0

--
Matthias Geiger 
Debian Maintainer
"Freiheit ist immer Freiheit des anders Denkenden" -- Rosa Luxemburg



OpenPGP_0x18BD106B3B6C5475.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Processed: Bug#1065250 marked as pending in python-cycler

2024-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #1065250 [wnpp] O: python-cycler -- composable kwarg iterator 
(documentation)
Added tag(s) pending.

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



Bug#1065240: marked as done (O: logilab-constraint -- constraints satisfaction solver in Python - Python 3)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 21:55:38 +
with message-id 
and subject line Bug#1065240: fixed in logilab-constraint 1.0-1
has caused the Debian Bug report #1065240,
regarding O: logilab-constraint -- constraints satisfaction solver in Python - 
Python 3
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1065240: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065240
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: normal
X-Debbugs-Cc: logilab-constra...@packages.debian.org, mo...@debian.org
Control: affects -1 + src:logilab-constraint

I intend to orphan the logilab-constraint package.

The package description is:
 Extensible constraint satisfaction problem solver written in pure
 Python, using constraint propagation algorithms. The
 logilab.constraint module provides finite domains with arbitrary
 values, finite interval domains, and constraints which can be applied
 to variables linked to these domains.
--- End Message ---
--- Begin Message ---
Source: logilab-constraint
Source-Version: 1.0-1
Done: Alexandre Detiste 

We believe that the bug you reported is fixed in the latest version of
logilab-constraint, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1065...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Alexandre Detiste  (supplier of updated logilab-constraint 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 13 Mar 2024 20:40:30 +0100
Source: logilab-constraint
Architecture: source
Version: 1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team ,
Changed-By: Alexandre Detiste 
Closes: 1065240
Changes:
 logilab-constraint (1.0-1) unstable; urgency=medium
 .
   * New upstream version 1.0
   * adopt package (Closes: #1065240)
Checksums-Sha1:
 9fded37a129cbf6cc2542142221fb7fea24ac344 2130 logilab-constraint_1.0-1.dsc
 1a914aa07eae12a62ae45fc6d554e5d1f8ac1c8d 46054 
logilab-constraint_1.0.orig.tar.gz
 21d6b6ad107ac5a4b9bb8bf787d0310d4c19a169 4324 
logilab-constraint_1.0-1.debian.tar.xz
 11c7cad1f0b679a073252adb41b32ecaea420502 6609 
logilab-constraint_1.0-1_source.buildinfo
Checksums-Sha256:
 446981c02a84630a669cafcf94e6fa6a369742061bde56036aeea331d56f6f55 2130 
logilab-constraint_1.0-1.dsc
 52213516c1d8271bc977e96a0902894240075dae62450604cd4f670e0ad1e986 46054 
logilab-constraint_1.0.orig.tar.gz
 606af086ac1defe8fa70797a4a6548b192ca8aa7e077989c22a5ffd378245892 4324 
logilab-constraint_1.0-1.debian.tar.xz
 6a251e585a603987cb4a103dcca02cf5904d826f8605f3f2b55446bcdcd6fe9c 6609 
logilab-constraint_1.0-1_source.buildinfo
Files:
 5155f8b58da42e3313d9d77290cb3518 2130 python optional 
logilab-constraint_1.0-1.dsc
 23c2f27004809ace31968f151101c4e5 46054 python optional 
logilab-constraint_1.0.orig.tar.gz
 b219527a30db8b0174c1023de123484e 4324 python optional 
logilab-constraint_1.0-1.debian.tar.xz
 5212561bed7c72984d6d610e6b98937f 6609 python optional 
logilab-constraint_1.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCgAvFiEEj23hBDd/OxHnQXSHMfMURUShdBoFAmXyAvURHHRjaGV0QGRl
Ymlhbi5vcmcACgkQMfMURUShdBoF5Q//Ve0kRYzeXjz9nkFyLxW0egJxDIADPjEJ
lg6+3qcFfEsZM7R/+JNRPswpLtgeO2r+bX/w+yKXuhSQ3o1W+a8lUEiEp+xa+4vA
LH3Gfyj56sQFN+WPE781y3Phyn90GCPxFFIU3anihC13eXJWoQmP/aYP3Z1gugPy
ztcOYNG1BHA4F+jUvjlx8M0jo8kZbegAYht04smMvfoC8xZ/k5RNUra7PEYzapVk
B4K6Bo8RXSLft8FJNvsMveMHuoegSl6a9dgx1WF5iBEnFvsdqtTAzJEHrlsANOur
kCdyhcWHDX5+FWQltjfgze86wHvpfCQPmt2i4M4E8wMixfrHjVFzgKqm2bWX7WZn
YjSsu6d9cfVKsEKOEyeHvXJDoAx+5XLqYOpaGRCD89C6zK9wiT2DtYwZgmQrxmK2
Xp3htm3gGBd138hGIzwGMt2bWULmlD+I+WaPU+C1RR5qPZm5NjA647jIG/+g1uRC
7de5N63ARxdtE5115XuUV3LZ1uUIdGi79KHbFnjQT09xQKVFAaO1uGUhUoSvLvyM
/dMeA3YDMo9fuXiEByTakuDpQLJn2SSlZH1RNJavQxBEK+8t4QxWO7kFOzAUvmNK
tWBq8sQEqY9tPApmR7W4ll7RkkwQ5fvifu4aNrlBK3QTRMbmEZsCLV7EHE+7tA8S
CmoBtKjQJRg=
=672t
-END PGP SIGNATURE-



pgp3O_VWjkwf3.pgp
Description: PGP signature
--- End Message ---


Processed: Bug#1065233 marked as pending in python-dmidecode

2024-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #1065233 [wnpp] O: python-dmidecode -- Python extension module for 
dmidecode (debug) - Data
Added tag(s) pending.

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



Processed: Bug#888079 marked as pending in python-hpilo

2024-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #888079 [wnpp] O: python-hpilo -- HP iLO XML interface access from Python
Added tag(s) pending.

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



Processed: Bug#888079 marked as pending in python-hpilo

2024-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #888079 [wnpp] O: python-hpilo -- HP iLO XML interface access from Python
Ignoring request to alter tags of bug #888079 to the same tags previously set

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



Bug#1065233: marked as done (O: python-dmidecode -- Python extension module for dmidecode (debug) - Data)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 23:22:17 +
with message-id 
and subject line Bug#1065233: fixed in python-dmidecode 3.12.3-3
has caused the Debian Bug report #1065233,
regarding O: python-dmidecode -- Python extension module for dmidecode (debug) 
- Data
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1065233: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065233
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: normal
X-Debbugs-Cc: python-dmidec...@packages.debian.org, mo...@debian.org
Control: affects -1 + src:python-dmidecode

I intend to orphan the python-dmidecode package.

The package description is:
 DMI (the desktop management interface) provides a standardized description of
 a computer's hardware, including characteristics such as BIOS serial number
 and hardware connectors.
 .
 This package contains the common data files for dmidecode.
--- End Message ---
--- Begin Message ---
Source: python-dmidecode
Source-Version: 3.12.3-3
Done: Emmanuel Arias 

We believe that the bug you reported is fixed in the latest version of
python-dmidecode, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1065...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Emmanuel Arias  (supplier of updated python-dmidecode 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 13 Mar 2024 18:52:12 -0300
Source: python-dmidecode
Architecture: source
Version: 3.12.3-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team ,
Changed-By: Emmanuel Arias 
Closes: 1065233
Changes:
 python-dmidecode (3.12.3-3) unstable; urgency=medium
 .
   * d/control: Adopt package. Add myself as Uploaders. Closes: #1065233.
   * d/control: Bump debhelper-compat to 13 (from 12). No further changes
 needed.
   * d/control: Bump Standards-Version to 4.6.2 (from 4.5.0; no further changes
 needed).
   * Reorder sequence of d/control fields by cme (routine-update)
   * Testsuite: autopkgtest-pkg-python (routine-update)
   * Build-Depends: s/dh-python/dh-sequence-python3/ (routine-update)
   * Rules-Requires-Root: no (routine-update)
Checksums-Sha1:
 f54d591c86a9424982a0d8bb908d59abdd5af292 2250 python-dmidecode_3.12.3-3.dsc
 116b4a60f9c784908d635b4ecf217898fe519fe0 7384 
python-dmidecode_3.12.3-3.debian.tar.xz
 b6207f4fed6910437ed625975431755d16bb6ab7 8204 
python-dmidecode_3.12.3-3_amd64.buildinfo
Checksums-Sha256:
 6cd9d5503a7e4195d91a5c103cba92fe4f486b42b38db9645fa9300c6cd8f0e1 2250 
python-dmidecode_3.12.3-3.dsc
 2561f04ee057c63a9ef9d2730bcfb2088ccf26ae53efca23e6dfb277fd6f4fac 7384 
python-dmidecode_3.12.3-3.debian.tar.xz
 22ac63dd351ef02ad6b40335badad36e2a4da855fe0f0f9851974ecba7447b0b 8204 
python-dmidecode_3.12.3-3_amd64.buildinfo
Files:
 9e60ba2e7e476d720ee5117fdb4c9388 2250 python optional 
python-dmidecode_3.12.3-3.dsc
 45186bd0046ef318bd22cf512e4dab29 7384 python optional 
python-dmidecode_3.12.3-3.debian.tar.xz
 7dbd6afdf2c512620eae263b598432c9 8204 python optional 
python-dmidecode_3.12.3-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEE3lnVbvHK7ir4q61+p3sXeEcY/EFAmXyIN8SHGVhbWFudUBk
ZWJpYW4ub3JnAAoJEPqd7F3hHGPxCPoP/0hu+BpWtX0cCl4o73AMy7nvvDxsHBf/
C0RMG+BZBXsDte7S4SNUikJ6cDGC+NpMVxtEXHGUNVBGnyGxqXhA2PDvLNveah4Y
5YbHDaH5majCmlSHGqHn7zHH0y+wG4zH8Zz5a/93BZbJI3E5BXXXF8qPLyV16c+v
R7Hn8mbpUCBvRRPOY5BjphIAcm9QCGIr/2Z0C+Gpx1sag2rZTSDQAXlXaL8q1LB8
5Li0FQl10xKjSHm2ss28dhphvppza29b0h+kiHbQYVRT/NzENXiafjQlDqqJYchE
jph5pCMVhriblagQfhLkg7l04Khcq9mihOlptrWxFF1InUmyfpz8glNEC3qUlpuV
g/ffSZ1CsWEXHpyyxby9mdRHKQzKMUlXFCRmX8W5H+Npb3fT0nDHkAtg1ARAO3SF
lSdaACg44BAvWKiFK13FSywg0U/yzxXwxBFU6fm+d6sprvFGPWNRZHk+891xGzBp
I0K9nKiK0V/ctw7yLc+fdNB5JM85ZskxLps+6SBUw8iV2V8mPqE75oY5/GDronCZ
ErrkotFr6EVviN9IM1Ie2FRvOAD23mKAm1TxlFHPpygNJjjtlvTt0h/V6k/WG0QU
aXmG1//8XIPCuwehyFzpOd3ZeHwDJjeFPs4ZbqPJ27gQCTwx78KT7p53T+vts7QH
7/Cz5YI1kuLA
=mXlT
-END PGP SIGNATURE-



pgpQryu4s8hyh.pgp
Description: PGP signature
--- End Message ---


Bug#1065250: marked as done (O: python-cycler -- composable kwarg iterator (documentation))

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 23:22:09 +
with message-id 
and subject line Bug#1065250: fixed in python-cycler 0.12.1-1
has caused the Debian Bug report #1065250,
regarding O: python-cycler -- composable kwarg iterator (documentation)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1065250: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065250
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: normal
X-Debbugs-Cc: python-cyc...@packages.debian.org, mo...@debian.org
Control: affects -1 + src:python-cycler

I intend to orphan the python-cycler package.

The package description is:
 When using matplotlib and plotting more than one line, it is common to want to
 be able to cycle over one  or more artist styles; but the plotting logic can
 quickly become very involved.
 .
 To address this and allow easy cycling over arbitrary 'kwargs' the `Cycler`
 class, a composable kwarg iterator, was developed.
 .
 This package contains the documentation for Cycler.
--- End Message ---
--- Begin Message ---
Source: python-cycler
Source-Version: 0.12.1-1
Done: Emmanuel Arias 

We believe that the bug you reported is fixed in the latest version of
python-cycler, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1065...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Emmanuel Arias  (supplier of updated python-cycler package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 13 Mar 2024 18:18:27 -0300
Source: python-cycler
Architecture: source
Version: 0.12.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team ,
Changed-By: Emmanuel Arias 
Closes: 1046161 1049518 1065250
Changes:
 python-cycler (0.12.1-1) unstable; urgency=medium
 .
   * d/control: Adopt package. Add myself as Uploaders. Closes: #1065250.
   * d/rules: override dh_auto_clean to remove doc/build and
 doc/source/generated folder (Closes: #1046161, #1049518).
   * New upstream version
   * Testsuite: autopkgtest-pkg-python (routine-update)
   * d/control: Add Build dependency to pybuild-plugin-pyproject.
   * Rules-Requires-Root: no (routine-update)
   * Set upstream metadata fields: Security-Contact.
   * Remove field Testsuite on binary package python-cycler-doc that duplicates 
source.
   * watch file standard 4 (routine-update)
Checksums-Sha1:
 b11626318ac746ee5f0d56d0d5e35aca27798f02 2246 python-cycler_0.12.1-1.dsc
 12170f0147aa8eb7e50982154423eb3cb1f469ae 23326 python-cycler_0.12.1.orig.tar.gz
 0983f3963073b33a0c0f1928b3f1f931f7278651 3676 
python-cycler_0.12.1-1.debian.tar.xz
 e4274257e94bebeca5fa7762e392b61c5d6709cb 10981 
python-cycler_0.12.1-1_amd64.buildinfo
Checksums-Sha256:
 fc77df96b78b93e777050ca6e62989379642eb1c422dc65862353d6b9e87b47d 2246 
python-cycler_0.12.1-1.dsc
 e83c1956b154ceb252c32e079ac7a95860a76c9ce894858dd082cc881008cae0 23326 
python-cycler_0.12.1.orig.tar.gz
 1f0725a852f2da3f062da0cf5ffa3d52dc395d4d8a74c89c10d9b87379eed318 3676 
python-cycler_0.12.1-1.debian.tar.xz
 088cbd67dfb2217df3f77b6e79ea41acd4a09829d1af29220802f6a7d8f2a00d 10981 
python-cycler_0.12.1-1_amd64.buildinfo
Files:
 9f5e8c70b3ee441359b83e5e31653740 2246 python optional 
python-cycler_0.12.1-1.dsc
 1f6077c5e7adf8824d50c3a01c8104f6 23326 python optional 
python-cycler_0.12.1.orig.tar.gz
 b8d041b9d6d792a8010c4edccef779f6 3676 python optional 
python-cycler_0.12.1-1.debian.tar.xz
 9b92ea7928990adb5ed72e193bce6ee1 10981 python optional 
python-cycler_0.12.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJGBAEBCgAwFiEEE3lnVbvHK7ir4q61+p3sXeEcY/EFAmXyHDUSHGVhbWFudUBk
ZWJpYW4ub3JnAAoJEPqd7F3hHGPxM+gQALyrvTzP42Y6FztgB3+J2hZe2fpAED1x
0LplpoZryUUrosiNmPjkBkOnG28Kj8yGEu5uoDFE28EYBxOOK/2QQ8/02CMYuHLl
frHgGmgG8mbxidhQ3+iWWDzcRy6ZWtMZUAt1gfYX3yvojTjvP1bB8wiZPzdsxLYs
C14lLAsQpjVv7z7+pltcNEFREudcyIMw3TFDyorJF+94UXfGdWs5BFZvWf/sX81E
i1/x0LYQPMILGP1yYjj8U4RrhBzbn+xL2v4rk+Dq4z41TSqny0PTU2Li/DU1u6Xt
NIlJLhiHCQRacIiJDldOK1ngVSTyiBb5uiqs/Y1CQc8LC68z6CtxoYTLgyW0tl40
9MsMOwmD8SE9upHTWHtWlfVXve0d8DM9hgqh6h40iVE2AS6wRkbBKgqMLeCNyj4o
ASuaTG/bzn04HPTyTxdjcSb7Rqcu8bIoFI2jIZfJalE1jPCeYM1lBFdfZFSvf+FQ
Zy8N46StSBKdItW/3JQjXNRJRj62

Bug#1066829: ITP: assetfinder -- Find domains and subdomains related to a given domain

2024-03-13 Thread aquilamacedo
Package: wnpp
X-Debbugs-Cc: debian-de...@lists.debian.org
Owner: Aquila Macedo Costa 
Severity: wishlist

* Package name: assetfinder
  Version : 0.1.1
  Upstream Contact: Tom Hudson 
* URL : https://github.com/tomnomnom/assetfinder
* License : MIT 
  Programming Lang: Golang
  Description : Find domains and subdomains related to a given
domain

assetfinder is a command-line tool to find domains and subdomains
potentially
related to a specified domain. Enhances domain discovery for
comprehensive analysis.

I'm writing to submit an Intention to Package (ITP) for assetfinder
under
the pkg-security team's umbrella.



Bug#986936: ITA: libcdk5 -- C-based curses widget library

2024-03-13 Thread Steven Robbins
Control: owner 986936 !

On Tue, 19 Jul 2022 13:02:08 +0200 "Jose G. López"  
wrote:
> owner 986936 !
> retitle 986936 ITA: libcdk5 -- C-based curses widget library
> thanks
> I intend to adopt it as I worked on it before but never uploaded it as
> maintainer in Debian. I have special affection for it because it was
> one of the first packages I worked with and learned.
> 

Hi again Jose,

I don't mean to take anything away from you, if you truly desire to maintain 
this package.  However, it's been over 18 months with no apparent action and 
emails to you over the last week have not been answered.  So I will 
tentatively conclude that you don't have the time for this package.  If that 
changes, do let me know and you can certainly change the maintainership.

For now, I will adopt this package and upload a new version to unblock this 
package and downstream dependencies.

Best,
-Steve


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


Processed: Re: ITA: libcdk5 -- C-based curses widget library

2024-03-13 Thread Debian Bug Tracking System
Processing control commands:

> owner 986936 !
Bug #986936 [wnpp] ITA: libcdk5 -- C-based curses widget library
Owner changed from "Jose G. López"  to Steven Robbins 
.

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



Bug#986936: marked as done (ITA: libcdk5 -- C-based curses widget library)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Thu, 14 Mar 2024 04:35:27 +
with message-id 
and subject line Bug#986936: fixed in libcdk5 5.0.20230201-1
has caused the Debian Bug report #986936,
regarding ITA: libcdk5 -- C-based curses widget library
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


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

The current maintainer of libcdk5, Herbert Parentes Fortes Neto 
,
is apparently not active anymore.  Therefore, I orphan this package now.

Maintaining a package requires time and skills. Please only adopt this
package if you will have enough time and attention to work on it.

If you want to be the new maintainer, please see
https://www.debian.org/devel/wnpp/#howto-o for detailed
instructions how to adopt a package properly.

Some information about this package:

Package: libcdk5
Binary: libcdk5nc6, libcdk5-dev, libcdk5-doc
Version: 5.0.20180306-3
Maintainer: Herbert Parentes Fortes Neto 
Build-Depends: debhelper (>= 9), libncurses-dev (>= 6.1+20180210), pkg-config
Architecture: any all
Standards-Version: 4.1.3
Format: 3.0 (quilt)
Files:
 246cca1f9320ebc66f47cb05f97292e0 2078 libcdk5_5.0.20180306-3.dsc
 3b52823d8a78c6d27d4be8839edd279e 515705 libcdk5_5.0.20180306.orig.tar.gz
 27aa23ecdc00a195b5cf960c41e974fe 44068 libcdk5_5.0.20180306-3.debian.tar.xz
Vcs-Browser: https://salsa.debian.org/debian/libcdk5
Vcs-Git: https://salsa.debian.org/debian/libcdk5.git
Checksums-Sha256:
 a030ef1a22a841deb891e54b7214e352a98e22b6bc7c92882487d3634d85e7ae 2078 
libcdk5_5.0.20180306-3.dsc
 cca9e345c6728c235eb3188af9266327c09c01da124a30b0cbd692ac08c6ebd0 515705 
libcdk5_5.0.20180306.orig.tar.gz
 702b8596088d784e2f9889a9f0e6f90d0fa7e250ae0d50abae84b2f6c39cdb61 44068 
libcdk5_5.0.20180306-3.debian.tar.xz
Homepage: http://invisible-island.net/cdk
Package-List: 
 libcdk5-dev deb libdevel optional arch=any
 libcdk5-doc deb doc optional arch=all
 libcdk5nc6 deb libs optional arch=any
Testsuite: autopkgtest
Directory: pool/main/libc/libcdk5
Priority: source
Section: libs

Package: libcdk5nc6
Source: libcdk5
Version: 5.0.20180306-3
Installed-Size: 355
Maintainer: Herbert Parentes Fortes Neto 
Architecture: amd64
Replaces: libcdk5
Depends: libc6 (>= 2.14), libncurses6 (>= 6), libtinfo6 (>= 6)
Conflicts: libcdk5
Description-en: C-based curses widget library
 CDK stands for "Curses Development Kit". CDK sits on top of the curses
 library and provides 22 ready to use widgets for rapid application
 development of text-based interfaces. CDK delivers many of the common
 widget types required for a robust interface. Widgets can be combined
 to create complex widgets if needed.
Description-md5: 9c4f30c429aa32a4a99bbda6393138fc
Multi-Arch: same
Homepage: http://invisible-island.net/cdk
Tag: role::shared-lib
Section: libs
Priority: optional
Filename: pool/main/libc/libcdk5/libcdk5nc6_5.0.20180306-3_amd64.deb
Size: 129420
MD5sum: e48f816fad7d85572ab4e4c172e455d8
SHA256: f51859b45efd0eb77c103dd7023f70e517c723ea8619804f3a58e464659f2332

Package: libcdk5-dev
Source: libcdk5
Version: 5.0.20180306-3
Installed-Size: 1932
Maintainer: Herbert Parentes Fortes Neto 
Architecture: amd64
Depends: libcdk5nc6 (= 5.0.20180306-3), libncurses-dev
Description-en: C-based curses widget library (development files)
 CDK stands for "Curses Development Kit". CDK sits on top of the curses
 library and provides 22 ready to use widgets for rapid application
 development of text-based interfaces. CDK delivers many of the common
 widget types required for a robust interface. Widgets can be combined
 to create complex widgets if needed.
 .
 This package contains the header files and development libraries for
 the CDK library.
Description-md5: e44a6a3992d69862dbf25d8840802508
Homepage: http://invisible-island.net/cdk
Tag: devel::library, role::devel-lib
Section: libdevel
Priority: optional
Filename: pool/main/libc/libcdk5/libcdk5-dev_5.0.20180306-3_amd64.deb
Size: 298976
MD5sum: f4b660ba54d6029548b4e2ae519e9c71
SHA256: f891f6b240e6bd0d1117bbeb1d7b4de9b3ba5756bfd9a75b87f25e93dd338742

Package: libcdk5-doc
Source: libcdk5
Version: 5.0.20180306-3
Installed-Size: 356
Maintainer: Herbert Parentes Fortes Neto 
Architecture: all
Description-en: C-based curses widget library (examples and demos)
 CDK stands for "Curses Development Kit". CDK sits on top of the curses
 library and provides 22 ready to use widgets for rapid application
 development of text-based interfaces. CDK delivers many of the common
 widget types required for a robust interface. Widgets can be com