Bug#971257: ITP: qtmir -- Qt5 components to enable one to write to a Mir server with Qt
Package: wnpp Severity: wishlist Owner: Mike Gabriel * Package name: qtmir Version : 0.6.1 Upstream Author : Marius Gripsgard * URL : https://gitlab.com/ubports/core/qtmir/ * License : LGPL-3 Programming Lang: C++ Description : Qt5 components to enable one to write to a Mir server with Qt QtMir is a set of Qt5 components to enable one to write to a Mir server with Qt. It contains a QPA (Qt Platform Abstraction) plugin which creates and manages a Mir server. It also exposes some internal Mir functionality. . This packaged will be maintained under the umbrella of the Debian UBports Packaging Team.
Bug#971265: ITP:deepin-voice-note -- a lightweight memo tool to make text notes and voice recordings
Package:wnpp Severity: wishlist Owner: Tu Qinggang X-Debbugs-Cc: debian-devel@lists.debian.org * Package name : deepin-voice-note Version : 5.7.18 Upstream Author : Deepin Technology Co, Ltd. * URL : https://github.com/linuxdeepin/deepin-voice-note License : GPL-3.0 Programming Lang: C++ Description : Voice Notes is a lightweight memo tool to make text notes and voice recordings. Voice Notes is a simple memo software with texts and voice recordings. You are able to save the recordings as MP3 format or texts. It is part of Deepin software and DDE (Deepin Desktop Environment) I intend to maintaining this.
Re: DAM Key and identity requirements
Mattia Rizzolo dijo [Thu, Sep 24, 2020 at 11:45:48AM +0200]: > > > * Minimum key size and acceptable algorithms are actually the domain of > > >keyring-maint, and we just check those for them. > > >At the time of writing this, a new key must be larger than 1024bits, > > >ideally at least 4096bits, and capable of hashes stronger than SHA1. > > >Please check [KDO] for more recent information. > > > > Hmm, this page do not really read like some sort of policy. > > > > It talks about key size in bits, which only applies to RSA. What about > > X25519? > > You should bring that to the keyring-maints. However I can tell you that > EC keys are pretty much always considered good. FWIW my key is EC25519. We doubted at first due to support for it not being present in gnupgv1.x, but that's no longer an issue (no part of Debian infrastructure runs below oldoldstable, which has 2.0.26). > > * A signature subkey must be there, since various parts of our > > >infrastructure require it. Also, it is needed to build up trust (see > > >below). > > > > Signing subkeys are pretty rare. What is their use-case? > > I believe the *sub*key bit was wrong, it most likely was talking about > signing capabilities (like above for encryption, it's all about > capabilities, not subkeys) Right.
Bug#971279: ITP: sphinx-markdown-tables -- Sphinx extension for rendering markdown tables
Package: wnpp Severity: wishlist Owner: Peter Wienemann Package name: sphinx-markdown-tables Version : 0.0.15 Upstream Author : Ryan Fox URL : https://github.com/ryanfox/sphinx-markdown-tables License : GPL-3.0 Programming Lang: Python Description : Sphinx extension for rendering markdown tables While Sphinx supports markdown thanks to the recommonmark extension, the latter does not cover tables. The sphinx-markdown-tables extension remedies this shortcoming. This package will be team-maintained by the Debian Python Team.
Bug#971350: ITP: golang-github-saracen-walker -- walker is a faster, parallel version, of filepath.Walk
Package: wnpp Severity: wishlist Owner: Jai Flack * Package name: golang-github-saracen-walker Version : 0.1.1-1 Upstream Author : Arran Walker * URL : https://github.com/saracen/walker * License : Expat Programming Lang: Go Description : walker is a faster, parallel version, of filepath.Walk Reasoning: This is a dependency for recent releases of fzf (>= 0.21.0), a popular, fast, command-line fuzzy finder. Description: This library and filepath.Walk both perform os.Lstat calls and provide a full os.FileInfo structure to the callback. BenchmarkFastwalkWalkLstat and BenchmarkGodirwalkWalkLstat include this stat call for better comparison with BenchmarkFilepathWalk and BenchmarkWalkerWalk. . This library and fastwalk both require the callback to be safe for concurrent use. BenchmarkFilepathWalkAppend, BenchmarkWalkerWalkAppend, BenchmarkFastwalkWalkAppend and BenchmarkGodirwalkWalkAppend append the paths found to a string slice. The callback, for the libraries that require it, use a mutex, for better comparison with the libraries that require no locking. . This library will not always be the best/fastest option. In general, if you're on Windows, or performing lstat calls, it does a pretty decent job. If you're not, I've found fastwalk to perform better on machines with fewer cores.