Bug#961337: Bug#986737: RFS: deno/1.8.3-1 [ITP] -- A secure JavaScript and TypeScript runtime

2021-04-10 Thread Jérémy Lal
(please don't top-post)
(cc-ing to relevant bugs and teams)


Le sam. 10 avr. 2021 à 22:26, Sergey Abroskin  a écrit :

> On Sat, Apr 10, 2021, 23:18 Jérémy Lal  wrote:
>
>>
>>
>> Le sam. 10 avr. 2021 à 21:42, Geert Stappers  a
>> écrit :
>>
>>> On Sat, Apr 10, 2021 at 09:17:12PM +0300, Sergey Abroskin wrote:
>>> > Dear mentors,
>>> >
>>> > I am looking for a sponsor for my package "deno":
>>> >
>>> >  * Package name: deno
>>> >Version : 1.8.3-1
>>> >Upstream Author : The Deno Authors
>>> >  * URL : https://deno.land
>>> >
>>> >
>>> >   https://mentors.debian.net/package/deno/
>>> >
>>> >   dget -x
>>> https://mentors.debian.net/debian/pool/main/d/deno/deno_1.8.3-1.dsc
>>> >
>>> >* Initial release (Closes: 961337)
>>> >
>>>
>>> 
>>> stappers@paddy:/usr/src/debian/deno
>>> $ grep ^name Cargo.lock  | head
>>> name = "Inflector"
>>> name = "adler"
>>> name = "ahash"
>>> name = "ahash"
>>> name = "aho-corasick"
>>> name = "alloc-no-stdlib"
>>> name = "alloc-stdlib"
>>> name = "ansi_term"
>>> name = "anyhow"
>>> name = "anymap"
>>> stappers@paddy:/usr/src/debian/deno
>>> $ grep --after=1 ^Build-Depends debian/control
>>> Build-Depends: debhelper (>= 11), rustc, cargo
>>> Standards-Version: 4.1.3
>>> stappers@paddy:/usr/src/debian/deno
>>> $
>>> 
>>>
>>> What cargo needs doesn't match the Build-Depends.
>>> If uploaded, it would fail to build due missing build dependencies.
>>>
>>>
>>> Yes, consider packaging deno for Debian (and it's derivatives)
>>>
 a very interresting challenge.
>>>
>> > Deno has ~400 dependencies. What should I do?

For all that concerns building:
https://wiki.debian.org/Teams/RustPackaging

For all that concerns userland:
https://wiki.debian.org/Javascript
In particular this is very interesting to read (because it explains what
could be bundled or not):
https://wiki.debian.org/Javascript/GroupSourcesTutorial

Debian toolchains have been upgraded (mainly by DD yadd) to cope with
bundled dependencies,
A.K.A. components. Uscan now supports this.

In my experience a huge project like Deno is going to drag sub-projects,
make them live,
and also make mistakes and depend on abandonware.
This isn't going to be a piece of cake. The more Deno and its deps are
stable, the more it's going to be easy to package.

Jérémy


Bug#961337: Bug#986737: RFS: deno/1.8.3-1 [ITP] -- A secure JavaScript and TypeScript runtime

2021-04-10 Thread Jérémy Lal
Le sam. 10 avr. 2021 à 21:42, Geert Stappers  a écrit :

> On Sat, Apr 10, 2021 at 09:17:12PM +0300, Sergey Abroskin wrote:
> > Dear mentors,
> >
> > I am looking for a sponsor for my package "deno":
> >
> >  * Package name: deno
> >Version : 1.8.3-1
> >Upstream Author : The Deno Authors
> >  * URL : https://deno.land
> >
> >
> >   https://mentors.debian.net/package/deno/
> >
> >   dget -x
> https://mentors.debian.net/debian/pool/main/d/deno/deno_1.8.3-1.dsc
> >
> >* Initial release (Closes: 961337)
> >
>
> 
> stappers@paddy:/usr/src/debian/deno
> $ grep ^name Cargo.lock  | head
> name = "Inflector"
> name = "adler"
> name = "ahash"
> name = "ahash"
> name = "aho-corasick"
> name = "alloc-no-stdlib"
> name = "alloc-stdlib"
> name = "ansi_term"
> name = "anyhow"
> name = "anymap"
> stappers@paddy:/usr/src/debian/deno
> $ grep --after=1 ^Build-Depends debian/control
> Build-Depends: debhelper (>= 11), rustc, cargo
> Standards-Version: 4.1.3
> stappers@paddy:/usr/src/debian/deno
> $
> 
>
> What cargo needs doesn't match the Build-Depends.
> If uploaded, it would fail to build due missing build dependencies.
>
>
> Yes, consider packaging deno for Debian (and it's derivatives)
> a very interresting challenge.
>

Hi !

Deno is Javascript/Typescript !
Please cc and involve pkg-javascript team.

Issues are 3-fold:
- packaging cargo (rust's package manager) dependencies
- how Deno userland modules (written in typescript/javascript) are going to
be distributed
  (probably in a way comparable to how node or javascript modules are
distributed)
- https://github.com/denoland/rusty_v8
  how to make Node and Deno share the same v8. (This is where i might be
able to help).

Jérémy


Bug#961337: Bug#986737: RFS: deno/1.8.3-1 [ITP] -- A secure JavaScript and TypeScript runtime

2021-04-10 Thread Geert Stappers
On Sat, Apr 10, 2021 at 09:17:12PM +0300, Sergey Abroskin wrote:
> Dear mentors,
> 
> I am looking for a sponsor for my package "deno":
> 
>  * Package name: deno
>Version : 1.8.3-1
>Upstream Author : The Deno Authors
>  * URL : https://deno.land
> 
> 
>   https://mentors.debian.net/package/deno/
> 
>   dget -x https://mentors.debian.net/debian/pool/main/d/deno/deno_1.8.3-1.dsc
> 
>* Initial release (Closes: 961337)
> 


stappers@paddy:/usr/src/debian/deno
$ grep ^name Cargo.lock  | head
name = "Inflector"
name = "adler"
name = "ahash"
name = "ahash"
name = "aho-corasick"
name = "alloc-no-stdlib"
name = "alloc-stdlib"
name = "ansi_term"
name = "anyhow"
name = "anymap"
stappers@paddy:/usr/src/debian/deno
$ grep --after=1 ^Build-Depends debian/control 
Build-Depends: debhelper (>= 11), rustc, cargo
Standards-Version: 4.1.3
stappers@paddy:/usr/src/debian/deno
$ 


What cargo needs doesn't match the Build-Depends.
If uploaded, it would fail to build due missing build dependencies.


Yes, consider packaging deno for Debian (and it's derivatives)
a very interresting challenge.


Regards
Geert Stappers
-- 
If it was easy, everybody would do it.



Processed: closing 870908

2021-04-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # php-memcached (and php-memcached) is already in Debian
> close 870908
Bug #870908 [wnpp] RFP: php7.0-memcached -- memcached extension module for 
PHP7.x
Marked Bug as done
> thanks
Stopping processing here.

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



Processed: limit package to wnpp, tagging 933946

2021-04-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> limit package wnpp
Limiting to bugs with field 'package' containing at least one of 'wnpp'
Limit currently set to 'package':'wnpp'

> tags 933946 + pending
Bug #933946 [wnpp] RFP: libtest-fitesque-rdf-perl -- Formulate Test::FITesque 
fixture tables in RDF
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#986736: RFP: xmake -- A cross-platform build utility based on Lua

2021-04-10 Thread Christof Meerwald
Package: wnpp
Severity: wishlist

xmake is a lightweight cross-platform build utility based on Lua. It
uses xmake.lua to maintain project builds. Compared with
makefile/CMakeLists.txt, the configuration syntax is more concise and
intuitive. It is very friendly to novices and can quickly get started
in a short time. Let users focus more on actual project development.

It can compile the project directly like Make/Ninja, or generate
project files like CMake/Meson, and it also has a built-in package
management system to help users solve the integrated use of C/C++
dependent libraries.

URL: https://github.com/xmake-io/xmake/
License: Apache License 2.0



Bug#986730: RFP: publictransport-de -- real time information for public transportation (currently in Germany)

2021-04-10 Thread Martin
Package: wnpp
Severity: wishlist

* Package name: publictransport-de
  Version : git master
  Upstream Author : terence 
* URL : https://gitlab.com/terence97/publictransport
* License : GPL-3.0-or-later
  Programming Lang: Rust
  Description : real time information for public transportation (currently 
in Germany)

Bring Real time information for public transportation (currently in
Germany) to Linux phones/the Linux desktop (the basic features of the
likes of DB Navigator or Transportr).

The original name is publictransport, but maybe the name should
reflect the (current) local nature of the software.



Bug#985945: marked as done (ITP: nthash -- recursive hash function for hashing all possible k-mers in a DNA/RNA sequence)

2021-04-10 Thread Debian Bug Tracking System
Your message dated Sat, 10 Apr 2021 10:00:09 +
with message-id 
and subject line Bug#985945: fixed in nthash 2.2.0-1
has caused the Debian Bug report #985945,
regarding ITP: nthash -- recursive hash function for hashing all possible 
k-mers in a DNA/RNA sequence
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.)


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

* Package name: nthash
  Version : 2.2.0-1
  Upstream Author : Hamid Mohamadi
* URL : https://github.com/bcgsc/ntHash
* License : Expat
  Programming Lang: C++
  Description : recursive hash function for hashing all possible k-mers in 
a DNA/RNA sequence

This contains:

1) nttest binary which has options for evaluating
runtimes and uniformity for different hashing methods.

2) header-only binary containing the
 necessary files for implementing nthash function.

I intend to maintain this package
--- End Message ---
--- Begin Message ---
Source: nthash
Source-Version: 2.2.0-1
Done: Nilesh Patra 

We believe that the bug you reported is fixed in the latest version of
nthash, 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 985...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Nilesh Patra  (supplier of updated nthash 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, 26 Mar 2021 18:31:06 +0530
Source: nthash
Binary: libnthash-dev nthash nthash-dbgsym
Architecture: source all amd64
Version: 2.2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 

Changed-By: Nilesh Patra 
Description:
 libnthash-dev - Recursive hash function for hashing all possible k-mers in a 
DNA/
 nthash - Methods to evaluate runtime and uniformity tests for hashing meth
Closes: 985945
Changes:
 nthash (2.2.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #985945)
Checksums-Sha1:
 e4778f3586059a49dffe15a6bfb26c0b104db3bc 2053 nthash_2.2.0-1.dsc
 7d9f93ed0d18df68214932a5b28618730e057c87 203985 nthash_2.2.0.orig.tar.gz
 d63112c6a6aada697020b357b08f483bd8e392b0 5384 nthash_2.2.0-1.debian.tar.xz
 47d6657bc2bcc0a0eb5c0db94d7dd5edc586c73d 13400 libnthash-dev_2.2.0-1_all.deb
 c74ff8d3bbdd5bf6b0cb902984001388330e28fa 145428 nthash-dbgsym_2.2.0-1_amd64.deb
 03af3d7dd346f05769d61e875e063b9d380a8879 6154 nthash_2.2.0-1_amd64.buildinfo
 33e338c410028304702a4cb0fa856d42bb0732c9 32968 nthash_2.2.0-1_amd64.deb
Checksums-Sha256:
 0cc7526e4f57d134a150030b617451c7786c39a3bb07c16a4e979ad47549aebf 2053 
nthash_2.2.0-1.dsc
 c989a2d6d026aa87269bb6c536e46759bdf7446eb5387b4222450b4ac3c0c449 203985 
nthash_2.2.0.orig.tar.gz
 7188f5fadb8d0db15b303fbf919005b2c05243e1ea2d87d490d9ff92a9f5308d 5384 
nthash_2.2.0-1.debian.tar.xz
 045e55243d8d89fc360ea931bf0cd89c036ad05e763c5763597dc0d78305c72f 13400 
libnthash-dev_2.2.0-1_all.deb
 1854b5ea60d0ac5fe9e9cc687eb965d27c5e39bb9f68f1aa6762663e126dc6e7 145428 
nthash-dbgsym_2.2.0-1_amd64.deb
 1a828c7cbbbf2f5ebf94bb49727bfa9fa76c38864c86089a064fa6fa21f3b478 6154 
nthash_2.2.0-1_amd64.buildinfo
 614d6cb33d8e742894d9d769f62fde154d8469e206d5e46c098f76b2acfd95b1 32968 
nthash_2.2.0-1_amd64.deb
Files:
 ed768f959b49cab80f2343715c4311ab 2053 science optional nthash_2.2.0-1.dsc
 5236987f569d932a80c853ba3e6e8a7f 203985 science optional 
nthash_2.2.0.orig.tar.gz
 e547f7031a3852b7af825c83612f25fc 5384 science optional 
nthash_2.2.0-1.debian.tar.xz
 757645b7c014ce9305cda2e7b3379ca0 13400 libdevel optional 
libnthash-dev_2.2.0-1_all.deb
 368cc127ff2417e53e827189d7446d93 145428 debug optional 
nthash-dbgsym_2.2.0-1_amd64.deb
 2679febe5f1ac4ee6ef86664a88e6bde 6154 science optional 
nthash_2.2.0-1_amd64.buildinfo
 91f97cf8b029bcb664f868196e0dabe5 32968 science optional 
nthash_2.2.0-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQJIBAEBCgAyFiEEPpmlJvXcwMu/HO6mALrnSzQzafEFAmBeR0YUHG5wYXRyYTk3
NEBnbWFpbC5jb20ACgkQALrnSzQzafEXaA/8Ccpw/nEnWZd4VGia70BZDRgYCODu

Bug#985939: marked as done (ITP: wiredpanda -- logic circuits simulator)

2021-04-10 Thread Debian Bug Tracking System
Your message dated Sat, 10 Apr 2021 10:00:11 +
with message-id 
and subject line Bug#985939: fixed in wiredpanda 3.0.0-1
has caused the Debian Bug report #985939,
regarding ITP: wiredpanda -- logic circuits simulator
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.)


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

* Package name: wiredpanda
  Version : v3.0.0
  Upstream Author : Davi Morales, Fábio Cappabianco, Lucas Lellis, Rodrigo 
Torres and Vinícius Miguel
* URL : https://github.com/GIBIS-UNIFESP/wiRedPanda
* License : GPL-3.0
  Programming Lang: C++
  Description : Logic circuits simulator

WiRed Panda is a free software designed to help students to learn about logic 
circuits and simulate them in an easy and friendly way.

The main features of the software are:

  * works on Windows, macOS and Linux;
  * Real time logic simulation;
  * User-friendly interface;
  * It's intuitive and easy to use;
  * Export your work as an image or a PDF.

--
Regards
Sudip
--- End Message ---
--- Begin Message ---
Source: wiredpanda
Source-Version: 3.0.0-1
Done: Sudip Mukherjee 

We believe that the bug you reported is fixed in the latest version of
wiredpanda, 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 985...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sudip Mukherjee  (supplier of updated wiredpanda 
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, 28 Mar 2021 00:31:06 +
Source: wiredpanda
Binary: wiredpanda wiredpanda-dbgsym
Architecture: source amd64
Version: 3.0.0-1
Distribution: experimental
Urgency: medium
Maintainer: Sudip Mukherjee 
Changed-By: Sudip Mukherjee 
Description:
 wiredpanda - logic circuits simulator
Closes: 985939
Changes:
 wiredpanda (3.0.0-1) experimental; urgency=medium
 .
   * Initial release (Closes: #985939)
Checksums-Sha1:
 273009ccb5ffdcd570b9efbeb6386646a6663200 1952 wiredpanda_3.0.0-1.dsc
 e6fe35b77a0e7e7703000765af69a7d808585309 2806341 wiredpanda_3.0.0.orig.tar.gz
 2e12aaea30d275b2ce9723568318a7f218559907 3280 wiredpanda_3.0.0-1.debian.tar.xz
 0478817be85b7c60cff3b6f78d928fc04b5581ad 5576652 
wiredpanda-dbgsym_3.0.0-1_amd64.deb
 4d76ba08a4ab09d6f4a350ff6fec4c4393089940 11660 
wiredpanda_3.0.0-1_amd64.buildinfo
 d733a497da5abca81d71b8bffaacb5cdbf882839 854468 wiredpanda_3.0.0-1_amd64.deb
Checksums-Sha256:
 e14b1122d043fd3f949121c21e21fd70a8948592d10a1a63c742d84000fbae68 1952 
wiredpanda_3.0.0-1.dsc
 4298266a82144ace69c003d74b6b6e85423353b678e3d6d6a5360be594ec4780 2806341 
wiredpanda_3.0.0.orig.tar.gz
 3bd6895340ca92346990d98e7b9251be5a20f55e993216fab072920ecffbe4ea 3280 
wiredpanda_3.0.0-1.debian.tar.xz
 c428637561c999474db55a1b69660726f40ece42f7c01bda248ebcbe07cff168 5576652 
wiredpanda-dbgsym_3.0.0-1_amd64.deb
 1b94e868c27b610ea7a62eea3e396f6915f08256cc592b0e455dc8c24c5138b2 11660 
wiredpanda_3.0.0-1_amd64.buildinfo
 777bf4736d6dc98de9cd3667f6b7ad43b4ab45c21f50c330d9e4c78ab0b40c95 854468 
wiredpanda_3.0.0-1_amd64.deb
Files:
 b2cd9f5da3b1fef72699d7d90ac6fb41 1952 electronics optional 
wiredpanda_3.0.0-1.dsc
 914499f2302b1af826f25f408ad7cd99 2806341 electronics optional 
wiredpanda_3.0.0.orig.tar.gz
 dd13a96b559f107a35b40968c321f991 3280 electronics optional 
wiredpanda_3.0.0-1.debian.tar.xz
 f20315b643dbc3a73db10be56ecc6c5d 5576652 debug optional 
wiredpanda-dbgsym_3.0.0-1_amd64.deb
 65b91de6949b434c8a7a19e6b7074b81 11660 electronics optional 
wiredpanda_3.0.0-1_amd64.buildinfo
 2430ed8fbe87ed5c273814ca2e8c621b 854468 electronics optional 
wiredpanda_3.0.0-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEuDQJkCg9jZvBlJrHR5mjUUbRKzUFAmBf0IgACgkQR5mjUUbR
KzWVVQ//fg7qFv1OZJR4FvLCtrsopQscbpkqQldB153BjabtsUobbu98nJ8iTcU7
RFG3MrjGd4mcABuag89YVEgPRDluEp06zkhHjYVdIdBzfp2H3HHzJqII5T/lyIAo
OvJ6jOQB3/pYdzI+wBWkUDczDOs2gEoPWa2kc4EiN2DI6+S3IIs5tHC9SNITmK/V
feCQIlUh1oSD7ylOJrsoZHyNdTPSRBHHBHu3vpommc1wbAWD1Liyb9GXsgK7bJVC

Bug#984811: marked as done (ITP: openbgpd -- Free, functional, and secure implementation of the BGP-4 protocol.)

2021-04-10 Thread Debian Bug Tracking System
Your message dated Sat, 10 Apr 2021 10:00:10 +
with message-id 
and subject line Bug#984811: fixed in openbgpd 6.8p1-1
has caused the Debian Bug report #984811,
regarding ITP: openbgpd -- Free, functional, and secure implementation of the 
BGP-4 protocol.
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.)


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

* Package name: openbgpd
  Version : 6.8p1
  Upstream Author : OpenBSD tech mailing list 
* URL : http://www.openbgpd.org/
* License : ISC
  Programming Lang: C
  Description : Free, functional, and secure implementation of the BGP-4 
protocol.

Openbgpd allows ordinary machines to be used as routers exchanging routes with
other systems speaking the BGP-4 protocol. OpenBGPD, also known as OpenBSD
Border Gateway Protocol Daemon, is a server software program that allows
general purpose computers to be used as routers. It is a Unix system daemon
that provides a free, open-source implementation of the Border Gateway Protocol
version 4.

Sponsor: John Goerzen 
--- End Message ---
--- Begin Message ---
Source: openbgpd
Source-Version: 6.8p1-1
Done: Job Snijders 

We believe that the bug you reported is fixed in the latest version of
openbgpd, 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 984...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Job Snijders  (supplier of updated openbgpd 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, 09 Mar 2021 15:37:33 +0100
Source: openbgpd
Binary: openbgpd openbgpd-dbgsym
Architecture: source amd64
Version: 6.8p1-1
Distribution: unstable
Urgency: low
Maintainer: Job Snijders 
Changed-By: Job Snijders 
Description:
 openbgpd   - OpenBSD BGP daemon
Closes: 984811
Changes:
 openbgpd (6.8p1-1) unstable; urgency=low
 .
   * Initial release (Closes: #984811)
Checksums-Sha1:
 de65c7fef7ee05262b0006da24a65e6608060473 1748 openbgpd_6.8p1-1.dsc
 a43738e90214e5512af2ddaa75012a62d086e98f 701218 openbgpd_6.8p1.orig.tar.gz
 4408b1d1a10b922ed6b0bda3e80b6cc0ab17d795 3300 openbgpd_6.8p1-1.debian.tar.xz
 fcd39fc869b86a729c945ee474f94fdb486b2a22 539340 
openbgpd-dbgsym_6.8p1-1_amd64.deb
 f31a8a5ade17db5ea4d2eb1ba49d59b893c85b32 5813 openbgpd_6.8p1-1_amd64.buildinfo
 58b9499ef4911fcce3cce807640b5c1bdb04219b 203264 openbgpd_6.8p1-1_amd64.deb
Checksums-Sha256:
 be1b50bc5c0d9c74f3ed05444255347d5f32078a4e85d21f8867e076c64aedae 1748 
openbgpd_6.8p1-1.dsc
 0143f9393e7bb27f711bac8a525173606760b4bef1934161f62c776ae7844c89 701218 
openbgpd_6.8p1.orig.tar.gz
 146d1f5aed178a164d8199e5b740501bde80c90f846fa02a3fa3af1d4e8031c6 3300 
openbgpd_6.8p1-1.debian.tar.xz
 490522919cd5eea203600f4e66231e4d572ebf4a35e2c046a07bffe41611c343 539340 
openbgpd-dbgsym_6.8p1-1_amd64.deb
 4aa2ac4e4a87195b1e0689a7456dce51dac594d75a6497ae5e19f33c3228ab6d 5813 
openbgpd_6.8p1-1_amd64.buildinfo
 7de7e0dc106b5c0a78ebbd68f7f613a0d5c7c65e4f10fdad1fb08b3b3f6dd256 203264 
openbgpd_6.8p1-1_amd64.deb
Files:
 c00bf4895cc7ec4087ab31917564bba4 1748 net optional openbgpd_6.8p1-1.dsc
 c2e57ac0ea17bdc903775786ee067b99 701218 net optional openbgpd_6.8p1.orig.tar.gz
 86cd18ba6d7c6abe2dbea67c38801447 3300 net optional 
openbgpd_6.8p1-1.debian.tar.xz
 5e6761e9f3a7eb5490eb09f647fcf49c 539340 debug optional 
openbgpd-dbgsym_6.8p1-1_amd64.deb
 4ccee86255df5da42d9dcd84cbd81337 5813 net optional 
openbgpd_6.8p1-1_amd64.buildinfo
 1961cf8089ac05afe80875058492f9d1 203264 net optional openbgpd_6.8p1-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAmBci1oACgkQ3Sn4hEKD
ntNbmw//aL3ovbQM4A1+cUw8FcXmTCf1epjtnFqaxnD3amY/rXF4977vLTCCBH/3
/X4ZUF6GXmsoBgOEYN32pG/niNXx8YnyuqvNGZ6QUTutahpS0LAat5d+HVE6i/Zt
pkjrpSMbZ0BSEYWvV2R+pBWX+8/c51fOwp4snPmtIYfPUEY0nFshScn80vyd/sVN
E4AprK+CbWHxiFDq++g8LsuA4PchgX1LmQ9R1MNJsbb+KfZFocL1eNYQJvkN9xiB
jIM5Pmw6wX1yPEbKBCB/D87wMWT8CPLc6L2vJYcyEPFk3GW1eqPkSH/AVShWSOqb
IsN4oyuMgKEvON6+w1xLwCJ3A0G69vQC4TCrqzYrnEGySG+Dl5KYV0CGWEqLOlvt

Bug#934184: marked as done (ITP: nghttp3 -- C library for HTTP/3 functions)

2021-04-10 Thread Debian Bug Tracking System
Your message dated Sat, 10 Apr 2021 10:00:09 +
with message-id 
and subject line Bug#934184: fixed in nghttp3 0~20201019-1
has caused the Debian Bug report #934184,
regarding ITP: nghttp3 -- C library for HTTP/3 functions
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.)


-- 
934184: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=934184
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: nghttp3
Owner: sakir...@gmail.com

* Package name: nghttp3
  Upstream Author : nghttp3 contributors
* License : MIT License
  Description : Implementation of HTTP/3 mapping over QUIC and QPACK
in C.

  Provides library for HTTP/3 fuctions.

Greetings,
Sakirnth (Saki)
--- End Message ---
--- Begin Message ---
Source: nghttp3
Source-Version: 0~20201019-1
Done: Sakirnth Nagarasa 

We believe that the bug you reported is fixed in the latest version of
nghttp3, 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 934...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sakirnth Nagarasa  (supplier of updated nghttp3 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, 28 Nov 2020 08:58:42 +0100
Source: nghttp3
Binary: libnghttp3-0 libnghttp3-0-dbgsym libnghttp3-dev
Architecture: source amd64
Version: 0~20201019-1
Distribution: sid
Urgency: medium
Maintainer: Sakirnth Nagarasa 
Changed-By: Sakirnth Nagarasa 
Description:
 libnghttp3-0 - HTTP/3 library with QUIC and QPACK (library)
 libnghttp3-dev - HTTP/3 library with QUIC and QPACK (development)
Closes: 934184
Changes:
 nghttp3 (0~20201019-1) sid; urgency=medium
 .
   * Initial release (Closes: #934184)
 - using Draft-31 as upstream, commit 37c1c1b.
Checksums-Sha1:
 908d57f37a15c52faa9e232517436cd42dd57417 1942 nghttp3_0~20201019-1.dsc
 68cd79607a27b3e2524db7138eb83e554a1563bc 111340 nghttp3_0~20201019.orig.tar.xz
 c0542c405500166392e8605c8366d7b0119f9ca6 2400 
nghttp3_0~20201019-1.debian.tar.xz
 117077d4b743c85f00eb50b524484f5ce23a940d 174456 
libnghttp3-0-dbgsym_0~20201019-1_amd64.deb
 cad5210b3e22a4ea42f329a616eec2028a23f457 58264 
libnghttp3-0_0~20201019-1_amd64.deb
 b7667920429344f809a8af20feb66948190fe60b 76896 
libnghttp3-dev_0~20201019-1_amd64.deb
 b575a9f5ac989fcfa91b3a6730647f0241c5f8b9 6410 
nghttp3_0~20201019-1_amd64.buildinfo
Checksums-Sha256:
 e95f9fa920c3798f348d30b0d230d28fc1b74972904ffbf4a54fe743dfabc665 1942 
nghttp3_0~20201019-1.dsc
 be65df2b5182328448ac9f834d72cf7048281195183927c350d115d5923a83d3 111340 
nghttp3_0~20201019.orig.tar.xz
 c894e85f7ea319d1ca5ac4419cd2b687219bcc1ec0da4d54c6f5487acded883d 2400 
nghttp3_0~20201019-1.debian.tar.xz
 d76542c6f292f20f77ba9bc3901a00765ded95c992102c81990e615bac76f4eb 174456 
libnghttp3-0-dbgsym_0~20201019-1_amd64.deb
 2d7b6d2898d9afec1efed7db0d9401e551ad38a029a8cb0ce9fc0829825e5339 58264 
libnghttp3-0_0~20201019-1_amd64.deb
 9429d05a7c61b4c00f3ebc79512f9fb62bb6d08938402b9a2919cf89e1727872 76896 
libnghttp3-dev_0~20201019-1_amd64.deb
 4f3b3293c70323d3d5d5dc3ce672f51eca1ec6f14723688190b086f3fb7ff84c 6410 
nghttp3_0~20201019-1_amd64.buildinfo
Files:
 166c1e6bdbed253d591dc45354a5bb62 1942 libs optional nghttp3_0~20201019-1.dsc
 106785093e5371224f776516555fb2c2 111340 libs optional 
nghttp3_0~20201019.orig.tar.xz
 38def7a48847f7f0b92cb4d07f3aeba9 2400 libs optional 
nghttp3_0~20201019-1.debian.tar.xz
 b20005cd6bd1c70bcb37d46cbee14633 174456 debug optional 
libnghttp3-0-dbgsym_0~20201019-1_amd64.deb
 490ebc356b87e1f715cc4356a45b0963 58264 libs optional 
libnghttp3-0_0~20201019-1_amd64.deb
 6dcf87f94f9b0f814febd94d3ef61b11 76896 libdevel optional 
libnghttp3-dev_0~20201019-1_amd64.deb
 351861930965a32ef0755ba0ba5a23af 6410 libs optional 
nghttp3_0~20201019-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEgTbtJcfWfpLHSkKSVc8b+YaruccFAmBcd+AACgkQVc8b+Yar
uceStBAAkeKxe0HO28rmx/cj8Mx6mZzCv9Nj0INRos1qpgVsbYrd8or3roPZGlnk
mTOZlQ81wab8BLNFRw17RIyjlMt5Mz3zBQu6IUQL9jPjkxPLDxA7xPptxFNe67d+
HaR/5QyyULwi+EhDnYv1S4mg55H7lwemBmaUiX6gXbUBz2YSSkTcNcqs06jy4nc+
WxdFho603NGBYPEsWFXjDfx06j4X20BvVzOL6SQhslhkw9FqCmxGY29oOUxB/yeX
vJd25XrhRXYNr17Lf4bbHbm0vGmRLK1mYezZOFSi4XyL6BXfM/M/1DXzQ96WhsuN

Bug#986725: RFP: jamovi -- jamovi is a free and open statistics package, which is easy to use, and designed to be familiar to users of SPSS. It provides a spreadsheet editor, and a range of statistica

2021-04-10 Thread Erez Shomron
Package: wnpp
Severity: wishlist
X-Debbugs-Cc: eshoe...@gmail.com

* Package name: jamovi
  Version : 1.6.15
  Upstream Author : Jonathon Love, Damian Dropmann, Ravi Selker, Marcello
Gallucci, Sebastian Jentschke, Serdar Balci
* URL : https://github.com/jamovi/jamovi
* License : AGPL3,GPL2+
  Programming Lang: JavaScript,Python,CSS,C++,R
  Description : jamovi is a free and open statistics package, which is easy
to use, and designed to be familiar to users of SPSS. It provides a spreadsheet
editor, and a range of statistical analyses. jamovi can provide R syntax for
each analysis that is run, and additional analyses for jamovi can be developed
using the R language.

jamovi is very interesting piece of software, which is very useful for students
who want or need to get into statistical analysis. Due to its spreadsheet
editor capabilities it is friendly for users who are new to programming. At the
same time, more code-adept users can take advantage of the R engine jamovi is
based on. The software is intended to be an open source replacement for IBM's
SPSS.
Its goal of replacing SPSS is similar to the `pspp` package, but jamovi, being
based on R, makes it much more powerful.

Homepage: https://www.jamovi.org
Full authors' information: https://www.jamovi.org/about.html



Bug#986723: ITP: ruby-omniauth-azure-activedirectory-v2 -- OAuth 2 authentication with the Azure ActiveDirectory V2 API

2021-04-10 Thread Pirate Praveen

Package: wnpp
Severity: wishlist
Owner: Pirate Praveen 

Packaging of https://rubygems.org/gems/omniauth-azure-activedirectory-v2

Dependency of gitlab 13.10



Processed: ITP: ruby-fauxhai -- Easily mock out ohai data

2021-04-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 986668 ITP: ruby-fauxhai -- Easily mock out ohai data
Bug #986668 [wnpp] ITP: ruby-fauxhai -- Easily mock out ohai data
Bug #794543 [wnpp] RFP: ruby-fauxhai -- Easily mock full ohai data
Ignoring request to change the title of bug#986668 to the same title
Changed Bug title to 'ITP: ruby-fauxhai -- Easily mock out ohai data' from 
'RFP: ruby-fauxhai -- Easily mock full ohai data'.
> owner 986668 Pirate Praveen 
Bug #986668 [wnpp] ITP: ruby-fauxhai -- Easily mock out ohai data
Bug #794543 [wnpp] ITP: ruby-fauxhai -- Easily mock out ohai data
Owner recorded as Pirate Praveen .
Owner recorded as Pirate Praveen .
>
End of message, stopping processing here.

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



Bug#986722: RFP: elpa-annotate -- annotate files without changing them

2021-04-10 Thread Martin
Package: wnpp
Severity: wishlist
X-Debbugs-Cc: debian-emac...@lists.debian.org

* Package name: elpa-annotate
  Version : 1.1.5
  Upstream Author : Bastian Bechtold and contributors
* URL : https://github.com/bastibe/annotate.el
* License : MIT
  Programming Lang: Emacs-Lisp
  Description : annotate files without changing them

This package provides the minor mode annotate-mode, which can add
annotations to arbitrary files without changing the files
themselves. Annotations are saved in the annotate-file
(~/.annotations by default).
 
To add annotations to a file, select a region and hit C-c C-a. The
region will be underlined, and the annotation will be displayed in
the right margin. Annotations are saved whenever the file is saved.
 
Use C-c ] to jump to the next annotation and C-c [ to jump to
the previous annotation. Use M-x annotate-export-annotations to
save annotations as a no-difference diff file.
 
Important note: annotation can not overlaps and newline character
can not be annotated.



Bug#986715: ITP: python3-crochet -- Library that makes it easier to use Twisted from regular blocking code

2021-04-10 Thread Sergio de Almeida Cipriano Junior
Package: wnpp
Severity: wishlist
Owner: Sergio de Almeida Cipriano Junior 
X-Debbugs-Cc: debian-de...@lists.debian.org, sergios...@protonmail.com

* Package name: python3-crochet
  Version : 1.12.0
  Upstream Author : Itamar Turner-Trauring 
* URL : https://pypi.org/project/crochet/
* License : MIT
  Programming Lang: Python
  Description : Library that makes it easier to use Twisted from regular 
blocking code

  Crochet is a library that makes it easier to use Twisted from regular blocking
  code. Some use cases include:

   * Easily use Twisted from a blocking framework like Django or Flask.

   * Write a library that provides a blocking API, but uses Twisted for
   its implementation.

   * Port blocking code to Twisted more easily, by keeping a backwards
   compatibility layer.

   * Allow normal Twisted programs that use threads to interact with
   Twisted more cleanly from their threaded parts. For example, this
   can be useful when using Twisted as a WSGI container.

  The latest version of pagure (5.13.2) needs pagure-messages, which needs
  fedora-messaging, which needs crochet. My goal is to help package the new
  dependencies of pagure.



Bug#986714: ITP: fedora-messaging -- A framework for declaring message schemas

2021-04-10 Thread Sergio de Almeida Cipriano Junior
Package: wnpp
Severity: wishlist
Owner: Sergio de Almeida Cipriano Junior 
X-Debbugs-Cc: debian-de...@lists.debian.org, sergios...@protonmail.com

* Package name: fedora-messaging
  Version : v2.0.2
  Upstream Author : Fedora Infrastructure Team
  
* URL : https://github.com/fedora-infra/fedora-messaging
* License : GPLv2
  Programming Lang: Python
  Description : A framework for declaring message schemas

  This package provides a framework for declaring message schemas,
  a set of synchronous APIs to publish messages to AMQP brokers, a
  set of asynchronous APIs to consume messages, and services to
  easily run consumers.

  The latest version of pagure (5.13.2) needs pagure-messages, which needs
  fedora-messaging. My goal is to help package the new dependencies of pagure.

--
Cheers,
  Sérgio Cipriano