Bug#1074624: ITP: qmk -- program to help users work with QMK Firmware

2024-07-02 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, gag...@debian.org

* Package name: qmk
  Version : 1.1.5
  Upstream Contact: skullydazed 
* URL : https://github.com/qmk/qmk_cli
* License : Expat
  Programming Lang: Python
  Description : program to help users work with QMK Firmware


A program to help users work with [QMK Firmware](https://qmk.fm/).
.
# Features
.
 * Interact with your qmk_firmware tree from any location
 * Use `qmk clone` to pull down anyone's `qmk_firmware` fork
 * Setup your build environment with `qmk setup`
 * Use `qmk console` to get debugging information from your keyboard(s)
 * Check that your environment is correctly setup with `qmk doctor`
 * Integrates with qmk_firmware for additional functionality:
* `qmk compile`
* `qmk info`
* `qmk flash`
* `qmk lint`
* ...and many more!

I intent to maintain this package under the Debian Python Team.



Bug#1074623: ITP: python-milc -- Opinionated Batteries-Included Python 3 CLI Framework

2024-07-02 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, gag...@debian.org

* Package name: python-milc
  Version : 1.8.0
  Upstream Contact: skullydazed 
* URL : https://github.com/clueboard/milc/
* License : Expat
  Programming Lang: Python
  Description : Opinionated Batteries-Included Python 3 CLI Framework


MILC is a framework for writing CLI applications in Python 3.7+. It gives you
all the features users expect from a modern CLI tool out of the box:
.
 * CLI Argument Parsing, with or without subcommands
 * Automatic tab-completion support through 
[argcomplete](https://github.com/kislyuk/argcomplete)
 * Configuration file which can be overridden by CLI options
 * ANSI color support- even on Windows- with 
[colorama](https://github.com/tartley/colorama)
 * Logging to stderr and/or a file, with ANSI colors
 * Easy method for printing to stdout with ANSI colors
 * Labeling log output with colored emoji to easily distinguish message types
 * Thread safety
 * More than 60 built-in 
[spinners](https://github.com/manrajgrover/py-spinners) with the ability to add 
your own

This package is a dependency for qmk. I plan to maintain this package
under the Debian Python Team.



Bug#1002996: ITP: python-orjson -- fast, correct JSON library for Python

2024-06-29 Thread Agathe Porte
Hi,

2024-06-21 20:16 CEST, Daniel Echeverri:
> Since 4.x version glances package depends from python-orjson, do you plan
> to work on this soon? I could upload the package once it's already.

I am also DD and usually do my own uploads for the Debian Python team.
Thanks for the proposal nonetheless.

> I was checking the dependencies of python-orjson seems
> depends of itoap rust library that isn't include in debian yet. For now, I
> will work in can include this rust library in debian, meanwhile I receive
> news about you.

Nice catch. I am also part of the Debian Rust Team so I packaged
and uploaded the itoap dependency:

https://salsa.debian.org/rust-team/debcargo-conf/-/tree/pending-itoap?ref_type=heads

Now we wait for it to pass the NEW queue before moving on.
I will upload my preliminary packaging in the DPT namespace on Salsa:

https://salsa.debian.org/python-team/packages/python-orjson



Bug#1073511: ITP: kalamine -- A text-based, cross-platform Keyboard Layout Maker

2024-06-16 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, gag...@debian.org

* Package name: kalamine
  Version : 0.36
  Upstream Contact: Fabien Cazenave
* URL : https://github.com/OneDeadKey/kalamine
* License : MIT
  Programming Lang: Python
  Description : A text-based, cross-platform Keyboard Layout Maker

Kalamine is capable of generating *.xkb_symbols files (root) and
*.xkb_symbols files (user) from keyboard layouts stored in a text
format. The layouts can both be used in X.org and Wayland graphical
environments.

I plan to maintain this package under the Debian Python Team (DPT).



Bug#1064467: ITP: fonts-sn-pro -- friendly new typeface based on Nunito

2024-02-22 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, gag...@debian.org

* Package name: fonts-sn-pro
  Version : 1.0.0
  Upstream Contact: Tobias https://tobias.so/
* URL : https://supernotes.app/open-source/sn-pro/
* License : OFL-1.1
  Programming Lang: N/A
  Description : friendly new typeface based on Nunito

A friendly new typeface that's open source and free for both personal and
commercial use. We've carefully re-designed each character, improving support
for Markdown and ligatures. This font family is continually being updated and
improved.
.
Designed at Supernotes. Based on Nunito by Vernon Adams.

Will be maintained in the debian-fonts team.



Bug#1051749: RFP: rust-compact-str -- A memory efficient string type that can store up to 24 bytes on the stack

2023-09-12 Thread Agathe Porte
Package: wnpp
Severity: wishlist
X-Debbugs-Cc: gag...@debian.org

* Package name: rust-compact-str
  Version : 0.7.1
  Upstream Contact: Parker Timmerman 
* URL : https://github.com/ParkMyCar/compact_str
* License : MIT
  Programming Lang: Rust
  Description : A memory efficient string type that can store up to 24 
bytes on the stack

A CompactString is a more memory efficient string type, that can store
smaller strings on the stack, and transparently stores longer strings on
the heap (aka a small string optimization). It can mostly be used as a
drop in replacement for String and are particularly useful in parsing,
deserializing, or any other application where you may have smaller
strings.

This is a dependency needed for python-orjson [1].

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1002996



Bug#1051746: RFP: rust-associative-cache -- A generic N-way associative cache with fixed-size capacity and random or least recently used (LRU) replacement

2023-09-11 Thread Agathe Porte
Package: wnpp
Severity: wishlist
X-Debbugs-Cc: gag...@debian.org

* Package name: rust-associative-cache
  Version : 2.0.0
  Upstream Contact: Nick Fitzgerald 
* URL : https://github.com/fitzgen/associative-cache
* License : MIT OR Apache-2.0
  Programming Lang: Rust
  Description : A generic N-way associative cache with fixed-size capacity 
and random or least recently used (LRU) replacement

A generic, fixed-size, associative cache data structure mapping K keys to V 
values.

This is a dependency for packaging python-orjson [1].

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1002996



Bug#1042443: ITP: pathos -- Framework for heterogeneous parallel computing

2023-09-01 Thread Agathe Porte
Hi Julian,

2023-07-28 10:59 CEST, Julian Gilbey:
> Package: wnpp
> Severity: wishlist
> Owner: Julian Gilbey 
> X-Debbugs-Cc: debian-de...@lists.debian.org, Debian Python Team 
> 
>
> * Package name: pathos
>   Version : 0.3.1
>   Upstream Contact: Mike McKerns 
> * URL : https://github.com/uqfoundation/pathos
> * License : BSD-3-clause
>   Programming Lang: Python
>   Description : Framework for heterogeneous parallel computing
>
> […]
>
>
> This is a package I've started using; it provides a very effective
> framework for parallel computing, allowing for constructs that the
> standard Python library does not support.
>
> I will maintain it within the Debian Python Team.

Like python-ppft, this was already packaged in the Python team but not
uploaded: https://salsa.debian.org/python-team/packages/python-pathos

Maybe you can find inspiration in it. I think we should only keep one of
the two repos in the DPT because it can be confusing to have the same
package twice.

Agathe.



Bug#1042439: ITP: ppft -- Distributed and parallel Python

2023-09-01 Thread Agathe Porte
Hi Julian,

2023-07-28 10:57 CEST, Julian Gilbey:
> Package: wnpp
> Severity: wishlist
> Owner: Julian Gilbey 
> X-Debbugs-Cc: debian-de...@lists.debian.org, Debian Python Team 
> 
>
> * Package name: ppft
>   Version : 1.7.6.7+dfsg
>   Upstream Contact: Mike McKerns 
> * URL : https://github.com/uqfoundation/ppft
> * License : BSD-3-clause
>   Programming Lang: Python
>   Description : Distributed and parallel Python
>
> […]
>
> It is a dependency of pathos, which is a useful framework that I've
> started using.
>
> I will maintain it within the Debian Python Team.

I packaged it before by mistake and RM'ed it before the freeze. You can
still find the source package `python-ppft` inside the DPT:
https://salsa.debian.org/python-team/packages/python-ppft

Hope it is helpful (remove myself from uploaders if you re-upload,
thanks).

But I see you already uploaded.

Agathe.



Bug#1002996: [Bug #1002996] ITP: python-orjson -- fast, correct JSON library for Python

2023-07-09 Thread Agathe Porte
Hi,

2023-07-02 19:03 CEST, Antonio Valentino:
> Could I kindly ask what is the status of the packaging and if you have an
> idea about when this package could go in the new queue?

Currently waiting on the ITP: maturin [1] to finish. When it is done
then I can start to have a look again at this ITP.

Best regards,

Agathe.

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=999850



Bug#1017844: ITP: python-axisregistry -- Access data from the Google Fonts variable fonts axis registry

2022-11-30 Thread Agathe Porte
Initial work is available at 
https://salsa.debian.org/python-team/packages/axisregistry


Work is paused while other gftools update blockers are not resolved.



Bug#1017844: ITP: python-axisregistry -- Access data from the Google Fonts variable fonts axis registry

2022-08-21 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, deb...@microjoe.org

* Package name: python-axisregistry
  Version : 0.3.5
  Upstream Authors: Felipe Sanches 
  URL : https://github.com/googlefonts/axisregistry/
* License : Apache-2.0
  Description : Access data from the Google Fonts variable fonts axis 
registry
 This repository contains a python package providing easy access to the GF Axis
 Registry. Data was copied (and is kept is sync with) its original location at
 the `axisregistry` directory on the https://github.com/google/fonts git repo.
 .
 As of March 4th, 2022, there's an ongoing plan to soon make this module the
 central place for updates on the data-set.

This package is a new dependency for the gftools package. I intent to
maintain this package under the umbrella of the Debian Python Team.



Bug#1017843: ITP: python-hyperglot -- Detect language support for font binaries

2022-08-21 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, deb...@microjoe.org

* Package name: hyperglot
  Version : 0.4.0
  Upstream Authors: Johannes Neumeier - Rosetta 
  URL : https://github.com/rosettatype/hyperglot
* License : GNU GPLv3
  Description : Detect language support for font binaries
 Hyperglot helps type designers answer a seemingly simple question of language
 support in fonts: When can I use font A to set texts in language B?  It takes
 a pragmatic answer by identifying a standard character set for each
 orthography used by a language. The database that currently contains
 information for over 640+ languages is a work in progress, designed to grow.

This package is a new dependency for the gftools package. I intent to
maintain this package under the umbrella of the Debian Python Team.



Bug#1004942: ITP: glyphsets -- Python API for evaluating glyph sets in font projects

2022-07-17 Thread Agathe Porte

Hi kretcheu,

On Thu, 03 Feb 2022 23:39:34 -0300 "Paulo Roberto Alves de Oliveira (aka 
kretcheu)"  wrote:


> Package: wnpp
> Severity: wishlist
> Owner: "Paulo Roberto Alves de Oliveira (aka kretcheu)" 


> X-Debbugs-Cc: debian-de...@lists.debian.org
>

> * Package name : glyphsets

Are you still actively working on this package? I see you created a repo 
on salsa but did not touch it since 5 months [1].


If not, can I take over to be able to update the "gftools" package to 
its latest version before the freeze? [2]


[1] https://salsa.debian.org/kretcheu/glyphsets

[2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1013213

> Version : 0.2.1

FYI latest upstream release is now 0.5.2 [3].

[3] https://github.com/googlefonts/glyphsets/releases/tag/v0.5.2

Best regards,

Agathe



Bug#1013239: ITP: python-gflanguages -- language-support categorization of the font families in the Google Fonts collection

2022-06-19 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, deb...@microjoe.org

* Package name: python-gflanguages
  Version : 0.4.0
  Upstream Author : Felipe Corrêa da Silva Sanches 
* URL : https://github.com/googlefonts/lang
* License : Apache-2.0
  Programming Lang: Python
  Description : language-support categorization of the font families
in the Google Fonts collection

This python module provides an API with data about
languages/regions/scripts for use in the language-support categorization
of the font families in the Google Fonts collection.

This is a new dependency of the gftools software that I am currently
maintaining. I intent to maintain this package under the umbrella of
both the Debian Python Team and the Debian Fonts Team.


Bug#1011608: ITP: python-flit-scm -- A PEP 518 build backend that uses setuptools_scm and flit

2022-05-25 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, debian-pyt...@lists.debian.org, 
deb...@microjoe.org

* Package name: python-flit-scm
  Version : 1.5.0
  Upstream Author : Will Da Silva 
* URL : https://gitlab.com/WillDaSilva/flit_scm
* License : MIT
  Programming Lang: Python
  Description : A PEP 518 build backend that uses setuptools_scm and flit

This package makes setuptools_scm compatible with flit. It is a
dependency of python-exceptiongroup that is ITP #1011552.

I intent to maintain this package under the umbrella of the Debian
Python Team.



Bug#1011552: ITP: python-exceptiongroup -- backport of the BaseExceptionGroup and ExceptionGroup classes from Python 3.11

2022-05-24 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, debian-pyt...@lists.debian.org, 
deb...@microjoe.org

* Package name: python-exceptiongroup
  Version : 1.0.0~rc7
  Upstream Author : Alex Grönholm 
* URL : https://github.com/agronholm/exceptiongroup
* License : MIT + PSFLv2
  Programming Lang: Python
  Description : backport of the BaseExceptionGroup and ExceptionGroup 
classes from Python 3.11

This library contains backport of BaseException for Python versions
before 3.11. Since 3.11 is not released yet and that new software [1] is
already using this compat layer, I think we should package it even in
release-candidate form.

[1] It is required for python-cattrs source package update.

I intent to maintain this package under the umbrella of the Debian
Python Team.


Bug#685575: ITP: opentracker -- An open and free bittorrent tracker

2022-05-24 Thread Agathe Porte

Hi,

On Wed, 18 May 2022 19:42:25 +0200 Bastian Germann  wrote:

> Control: tags -1 - pending
>
> opentracker seems not to have passed NEW.
> Can someone shine a light on this?

Actually I think it never made it to NEW in the first place. I had 
created #991585 RFS [1] that was closed by batm but I did not receive 
(or did not see) any upload to NEW queue nor REJECT.


I have updated the package in salsa [2] and will try to find a mentor to 
upload it to NEW.


[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=991585

[2] https://salsa.debian.org/gagath/opentracker



Bug#1005301: ITP: python-dt-schema -- Devicetree schema tools

2022-05-15 Thread Agathe Porte

Hi,

On Thu, 12 May 2022 13:04:05 +0200 Bastian Germann  wrote:

> Am 12.05.22 um 12:54 schrieb Bastian Germann:
> > On Thu, 10 Feb 2022 21:51:17 +0100 Romain Porte 
 wrote:

> >> * Package name    : python-dt-schema
> >>   Version : 2022.01
> >
> > This version should be the last version that does not need 
jsonschema 4.*.
> > So just package this older version and you will not need #1005757 
fixed or pylibfdt packaged (which would be another

> > unpackaged dep for later versions).
>
> It is actually 2021.10 that has these properties. README is out of 
sync with setup.py in-between.


Thanks for your investigation. I will package 2021.10 version while 
python-jsonschema is blocked on 3.* series.




Bug#999850: ITP: maturin -- Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages.

2022-05-03 Thread Agathe Porte

Hi Jelmer,

Were you able to progress on this package? If so, could you share your 
work on Salsa or elsewere? I depend on this package for another ITP of 
mine that I would like to complete before the freeze.


Bests,

Agata.



Bug#1008785: ITP: fonts-creep -- Pretty sweet 4px wide pixel font

2022-04-01 Thread Agathe Porte

Hi Roland,

01/04/2022 17:18, Roland Clobus :

The website for creep says:

This repository is no longer being actively maintained (at least not 
extensively). Have a look at some more up to date alternatives:

* raymond-w-ko/creep2
* slavfox/Cozette
* fcambus/spleen
* pico


It looks like the original author of creep has abandoned this font in 
favour of one of these four alternatives. Could you consider a new 
attempt for creep2 or one of the other alternatives?


I already packaged fonts-creep first, then fonts-creep2, but I do not 
know how to resolve #1006953 . Since 
this font is considered as "done" by its author, I think it should still 
be uploaded to Debian but obviously bugs related to upstream will be 
marked wontfix.


At least, this font works on my system, while fonts-creep2 does not.

Bests,

Agata



Bug#1008785: ITP: fonts-creep -- Pretty sweet 4px wide pixel font

2022-04-01 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, debian-fo...@lists.debian.org, 
deb...@microjoe.org

* Package name: fonts-creep
  Version : 0.31+git20210712.d2a9ad0
  Upstream Author : Romeo Van Snick 
* URL : https://github.com/romeovs/creep
* License : MIT
  Programming Lang: N/A
  Description : Pretty sweet 4px wide pixel font

 The 'creep' font is a pretty compact font that is only 4 pixels wide. It is
 great for smaller screens, in order to be able to maintain high text density
 on screens reported as small as 11 inches in diagonal.
 .
 Box drawing
 .
 Creep has most of the basic box drawing characters implemented. Therefore
 creep usually works with most ncurses-type programs or with tmux
 window-splitting for example.
 .
 Powerline
 .
 Creep supports all the symbols needed for Lokaltog's awesome powerline plugin
 for vim.
 .
 Sparklines
 .
 Creep has the necessary symbols for creating sparklines. This is cool for
 tools like rainbarf and others.
 .
 Better Haskell syntax
 .
 This font contains characters that can be used to pretty-print Haskell
 symbols, like '>>='.
 .
 Braille and Drawille
 .
 Creep now supports the full braille alphabet, which was an easy thing to do
 because of the clever braille encoding scheme. All of the braille characters
 are simply generated using a little script.

I intent to maintain this package under the Debian Fonts Team. This
package is introduced because my previous attempt using a fork
(fonts-creep2) seems to not work correctly, so I am packaging the
original.



Bug#1006663: ITP: python-pyrcb2 -- A powerful asynchronous IRC bot library

2022-03-01 Thread Agathe Porte
Package: wnpp
Severity: wishlist
Owner: Agathe Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, deb...@microjoe.org

* Package name: python-pyrcb2
  Version : 0.6.2
  Upstream Author : taylor.fish 
* URL : https://github.com/taylordotfish/pyrcb2
* License : LGPLv3+
  Programming Lang: Python
  Description : A powerful asynchronous IRC bot library

pyrcb2 is an asyncio-based library for writing IRC bots. It is designed
to be easy to use, customizable, and high-level.

pyrcb2 includes features such as account tracking, user prefix tracking
(voice, op, etc.), messaging delaying to prevent throttling, and long
message splitting.

pyrcb2 also makes use of asyncio and coroutines in Python. This allows
you to write asynchronous code in a linear fashion—you can handle
responses to commands right after you send them.

===

I intent to maintain this package under the umbrella of the Debian
Python Team. I need it to properly package an IRC bot designed for the
DPT itself.


Bug#1002583: O: pymongo

2022-01-16 Thread Agathe Porte

Control: retitle -1 O: pymongo
Control: noowner -1

On Sat, 1 Jan 2022 21:54:24 +0100 Agathe Porte  wrote:

> Control: -1 retitle ITP: pymongo
>
> Hi,
>
> 31/12/2021 01:50, Sandro Tosi :
> > then please retitle to ITA
> Done with above control command, hopefully.
> >> https://salsa.debian.org/python-team/packages/pymongo
> >>
> >> Bug will be closed when package will be ready for upload with DPT as
> >> maintainer.
> > via debian/changelog?
>
> Yes, see current propored d/changelog [1]:
>
> [ Agathe Porte ]
> * d/control: Fix build warnings
> * d/copyright: Update authors
> * d/upstream/metadata: add Bug-Database
> * d/watch: mangle in personal devscripts instead
> * d/changelog: update Maintainer to DPT (Closes: #1002583)
> * d/control: Fix multiarch metadata
>
> [1]
> 
https://salsa.debian.org/python-team/packages/pymongo/-/blob/55ff707918c79017f665533e37a588aefe69d75a/debian/changelog


After reflection, I am not willing to take the personal responsibility 
of this package anymore, as I have no personal need for MongoDB. I was 
just willing to port this to DPT and be done with it, but it is not a 
sustainable approach.


The first cleanup step is available in the Python team's pymongo repository:

https://salsa.debian.org/python-team/packages/pymongo

Additional work needed before integration in python-team can be done:

18:59:46         gagath: for pymongo, the copyright has outdated 
info and years for upstream, multiple missing copyright holders and 
licenses (including most of those listed in upstream's 
THIRD-PARTY-NOTICES file); source field points to broken site (returns 
empty document)
19:00:15         control: vcs urls outdated, homepage broken 
(consider setting it to the upstream github)
19:01:29         please document why the package needs to stay 
on v3 (and if possible, what obstacles have to be cleared before it 
could move on to v4)
19:01:51         there's an empty patches dir; looks like 
patches were removed without mention in the changelog?
19:02:05         what is the "mangle in personal devscripts 
instead" entry in the changelog supposed to mean?

Bests



Bug#1002996: ITP: python-orjson -- fast, correct JSON library for Python

2022-01-02 Thread Agathe Porte

Package: wnpp
Severity: wishlist
Owner: Romain Porte 
X-Debbugs-Cc: debian-de...@lists.debian.org, deb...@microjoe.org, 
debian-fo...@lists.debian.org, debian-r...@lists.debian.org


* Package name    : python-orjson
  Version : 3.6.5
  Upstream Author : ijl 
* URL : https://github.com/ijl/orjson
* License : Apache-2.0 OR MIT
  Programming Lang: Rust
  Description : fast, correct JSON library for Python

This package is added as a dependency to a new release of the gftools
tool maintained by myself in the Debian Fonts Team.

I intent to maintain this package in the Debian Python Team (or Debian 
Rust Team depending on how packaging goes).




Bug#1002583: O: pymongo

2022-01-01 Thread Agathe Porte

Control: -1 retitle ITP: pymongo

Hi,

31/12/2021 01:50, Sandro Tosi :

then please retitle to ITA

Done with above control command, hopefully.

https://salsa.debian.org/python-team/packages/pymongo

Bug will be closed when package will be ready for upload with DPT as
maintainer.

via debian/changelog?


Yes, see current propored d/changelog [1]:

[ Agathe Porte ]
* d/control: Fix build warnings
* d/copyright: Update authors
* d/upstream/metadata: add Bug-Database
* d/watch: mangle in personal devscripts instead
* d/changelog: update Maintainer to DPT (Closes: #1002583)
* d/control: Fix multiarch metadata

[1] 
https://salsa.debian.org/python-team/packages/pymongo/-/blob/55ff707918c79017f665533e37a588aefe69d75a/debian/changelog


Bests


Bug#1002583: O: pymongo

2021-12-28 Thread Agathe Porte

Hi,

On Fri, 24 Dec 2021 19:24:54 + Federico Ceratto 
 wrote:


> Orphaning package.

Currently adopting it inside the Debian Python Team:

https://salsa.debian.org/python-team/packages/pymongo

Bug will be closed when package will be ready for upload with DPT as 
maintainer.


Best regards