Bug#913880: ITP: overlay-userns -- Overlay mounting in user namespaces (DKMS)

2018-11-20 Thread Nicolas Schier
Dear Ben,

> Why don't you talk to the kernel team about adding a module parameter
> enable this, rather than packaging a fragile hack?

thanks for the pointer.  Do you think about something like the attached 
patch?  Would you recommend a post in debian-kernel@l.d.o about it or 
better a salsa merge request?

Kind regards,
Nicolas


From 8e09f86b72903c29bff005425bee997fa9521147 Mon Sep 17 00:00:00 2001
From: Nicolas Schier 
Date: Mon, 19 Nov 2018 21:16:26 +0100
Subject: [PATCH] ovl: permit overlayfs mounts in user namespaces (taints
 kernel)

Permit overlayfs mounts within user namespaces to allow utilisation of e.g.
unprivileged LXC overlay snapshots.

Except by the Ubuntu community [1], overlayfs mounts in user namespaces are
expected to be a security risk [2] and thus are not enabled on upstream Linux
kernels.  For the non-Ubuntu users that have to stick to unprivileged
overlay-based LXCs, this meant to patch and compile the kernel manually.
Instead, adding the kernel tainting 'permit_mounts_in_userns' module parameter
allows a kind of a user-friendly way to enable the feature.

Testable with:

sudo modprobe overlay permit_mounts_in_userns=1
sudo sysctl -w kernel.unprivileged_userns_clone=1
mkdir -p lower upper work mnt
unshare --map-root-user --mount \
mount -t overlay none mnt -o lowerdir=lower,upperdir=upper,workdir=work

[1]: Ubuntu allows unprivileged mounting of overlay filesystem
 https://lists.ubuntu.com/archives/kernel-team/2014-February/038091.html

[2]: User namespaces + overlayfs = root privileges
 https://lwn.net/Articles/671641/

Signed-off-by: Nicolas Schier 
---
 .../overlayfs-permit-mounts-in-userns.patch   | 55 +++
 debian/patches/series |  3 +
 2 files changed, 58 insertions(+)
 create mode 100644 debian/patches/debian/overlayfs-permit-mounts-in-userns.patch

diff --git a/debian/patches/debian/overlayfs-permit-mounts-in-userns.patch b/debian/patches/debian/overlayfs-permit-mounts-in-userns.patch
new file mode 100644
index ..3697d8cf7708
--- /dev/null
+++ b/debian/patches/debian/overlayfs-permit-mounts-in-userns.patch
@@ -0,0 +1,55 @@
+From: Nicolas Schier 
+Subject: ovl: permit overlayfs mounts in user namespaces (taints kernel)
+Date: Mon, 19 Nov 2018 20:36:14 +0100
+
+Permit overlayfs mounts within user namespaces to allow utilisation of e.g.
+unprivileged LXC overlay snapshots.
+
+Except by the Ubuntu community [1], overlayfs mounts in user namespaces are
+expected to be a security risk [2] and thus are not enabled on upstream Linux
+kernels.  For the non-Ubuntu users that have to stick to unprivileged
+overlay-based LXCs, this meant to patch and compile the kernel manually.
+Instead, adding the kernel tainting 'permit_mounts_in_userns' module parameter
+allows a kind of a user-friendly way to enable the feature.
+
+Testable with:
+
+sudo modprobe overlay permit_mounts_in_userns=1
+sudo sysctl -w kernel.unprivileged_userns_clone=1
+mkdir -p lower upper work mnt
+unshare --map-root-user --mount \
+mount -t overlay none mnt -o lowerdir=lower,upperdir=upper,workdir=work
+
+[1]: Ubuntu allows unprivileged mounting of overlay filesystem
+ https://lists.ubuntu.com/archives/kernel-team/2014-February/038091.html
+
+[2]: User namespaces + overlayfs = root privileges
+ https://lwn.net/Articles/671641/
+
+--- a/fs/overlayfs/super.c
 b/fs/overlayfs/super.c
+@@ -56,6 +56,12 @@
+ MODULE_PARM_DESC(ovl_xino_auto_def,
+ 		 "Auto enable xino feature");
+ 
++static bool ovl_permit_mounts_in_userns;
++module_param_named_unsafe(permit_mounts_in_userns, ovl_permit_mounts_in_userns,
++			  bool, 0444);
++MODULE_PARM_DESC(ovl_permit_mounts_in_userns,
++		 "Permit mounts in user namespaces");
++
+ static void ovl_entry_stack_free(struct ovl_entry *oe)
+ {
+ 	unsigned int i;
+@@ -1545,6 +1551,11 @@
+ 	if (ovl_inode_cachep == NULL)
+ 		return -ENOMEM;
+ 
++	if (unlikely(ovl_permit_mounts_in_userns)) {
++		pr_warn("Allowing overlay mounts in user namespaces bears security risks\n");
++		ovl_fs_type.fs_flags |= FS_USERNS_MOUNT;
++	}
++
+ 	err = register_filesystem(_fs_type);
+ 	if (err)
+ 		kmem_cache_destroy(ovl_inode_cachep);
diff --git a/debian/patches/series b/debian/patches/series
index 57872c847500..2f45ed47d44a 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -152,4 +152,7 @@ bugfix/x86/tools-turbostat-Add-checks-for-failure-of-fgets-and-.patch
 # wireless: Disable regulatory.db direct loading (until we sort out signing)
 debian/wireless-disable-regulatory.db-direct-loading.patch
 
+# overlay: allow mounting in user namespaces
+debian/overlayfs-permit-mounts-in-userns.patch
+
 # ABI maintenance
-- 
2.19.1



signature.asc
Description: PGP signature


Bug#914257: ITP: backdrop -- A full-featured content management system

2018-11-20 Thread William Blough
Package: wnpp
Severity: wishlist
Owner: William Blough 

* Package name: backdrop
  Version : 1.11.2
* URL : http://backdropcms.org/
* License : GPL2+
  Programming Lang: PHP
  Description : A full-featured content management system


Backdrop is a fork of Drupal 7. It preserves the legacy audience of
developers who value ease of use and speed of learning over
architectural flexibility.

 This package is useful/relevant because Drupal will no longer be
 available in Debian, starting with Buster.  Drupal 7 will be
 end-of-life before too long, and Drupal 8 is unlikely to be packaged.
 This package gives existing Drupal 7 users a supported migration path
 for their existing code, without the hassle of upgrading everything to
 Drupal 8.

 It is not yet a dependency for another package, however, as with Drupal
 there are numerous modules that could potentially be packaged to go
 with it.

 My employer is deploying Backdrop as a replacement for Drupal 7, instead
 of updating all our code to be Drupal 8 compatible.  If I'm
 going to support it for their Debian infrastructure, I might as well
 package it for Debian proper so others may also benefit.

 The functionality of Backdrop is nearly identical to Drupal 7, with the
 exception that Backdrop will be supported even after Drupal 7 is
 end-of-life

 I am willing to maintain the package myself, since I will be doing it for my
 employer anyway.  However, I am certainly open to team or co-maintenance
 if others are interested.  I do not need a sponsor as I am a DD.



Bug#914253: ITP: python-sqlalchemy-migrate -- Database schema migration for SQLAlchemy

2018-11-20 Thread Per Andersson
Package: wnpp
Severity: wishlist
Owner: Per Andersson 

* Package name: python-sqlalchemy-migrate
  Version : 0.11.0
  Upstream Author : OpenStack 
* URL : https://pypi.org/project/sqlalchemy-migrate/
* License : MIT/Expat
  Programming Lang: Python
  Description : Database schema migration for SQLAlchemy

Inspired by Ruby on Rails’ migrations, Migrate provides a way to deal
with database schema changes in SQLAlchemy projects.

Migrate extends SQLAlchemy to have database changeset handling. It
provides a database change repository mechanism which can be used from
the command line as well as from inside python code.

This is required for new versions of pytrainer.

I plan to maintain this in the Python Modules Team.



Processed: retitle to O: landslide -- Lightweight markup language-based html5 slideshow generator

2018-11-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 881002 O: landslide -- Lightweight markup language-based html5 
> slideshow generator
Bug #881002 [wnpp] ITA: landslide -- Lightweight markup language-based html5 
slideshow generator
Changed Bug title to 'O: landslide -- Lightweight markup language-based html5 
slideshow generator' from 'ITA: landslide -- Lightweight markup language-based 
html5 slideshow generator'.
> noowner 881002
Bug #881002 [wnpp] O: landslide -- Lightweight markup language-based html5 
slideshow generator
Removed annotation that Bug was owned by Andrej Shadura .
> stop
Stopping processing here.

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



Bug#914239: ITP: golang-github-nats-io-jwt -- JWT tokens signed using NKeys for Ed25519 for the NATS ecosystem

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-nats-io-jwt
  Version : 0.0~git20181120.285cf2c-1
  Upstream Author : NATS - The Cloud Native Messaging System
* URL : https://github.com/nats-io/jwt
* License : Apache-2.0
  Programming Lang: Go
  Description : JWT tokens signed using NKeys for Ed25519 for the
NATS ecosystem.

This is a new dependency for InfluxDB.

-- 
Alexandre Viau
alexan...@alexandreviau.net



signature.asc
Description: OpenPGP digital signature


Bug#914237: ITP: golang-github-bouk-httprouter -- Adaptation of https://github.com/julienschmidt/httprouter for Go 1.7's context package

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-bouk-httprouter
  Version : 2.0-1
  Upstream Author : Bouke van der Bijl
* URL : https://github.com/bouk/httprouter
* License : BSD-3-Clause
  Programming Lang: Go
  Description : Adaptation of
https://github.com/julienschmidt/httprouter for Go 1.7's context package

This is a new dependency for InfluxDB.

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914234: ITP: golang-github-tcnksm-go-input -- Go package for ideal tty prompt

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-tcnksm-go-input
  Version : 0.0~git20180404.548a7d7-1
  Upstream Author : Taichi Nakashima
* URL : https://github.com/tcnksm/go-input
* License : Expat
  Programming Lang: Go
  Description : Go package for ideal tty prompt

This is a new dependency for InfluxDB

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


CareerTech VISION 2018

2018-11-20 Thread carla gray

Hi,



I am Reaching out to you in reference to your participation at 
CareerTech VISION 2018.
Would you be interested in the Visitor Profiles of *CareerTech VISION 
2018* ?


Available Count: 3,600 + Contacts
List includes: Contact name, Title, Company/Hospital/Institution name, 
Contact number, Fax, Mail address, Email address, Zip code etc.


Let me know if you are interested and I will get back with pricing model.




*Best Regards,*

*CARLA GRAY.*

*
*

*
*

*
*

*
*

*
*

*
*

*
*

*
*

*
*

*
*


If you do not wish to receive further mails, please revert with"REMOVE” 
on the subject line.




Bug#914232: ITP: golang-github-nats-io-go-nats-streaming -- NATS Streaming System

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-nats-io-go-nats-streaming
  Version : 0.4.0+git20181116.19c9df8-1
  Upstream Author : NATS - The Cloud Native Messaging System
* URL : https://github.com/nats-io/go-nats-streaming
* License : Apache-2.0
  Programming Lang: Go
  Description : NATS Streaming System

This is a new dependency for InfluxDB

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914231: ITP: golang-github-nats-io-go-nats -- Golang client for NATS, the cloud native messaging system

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-nats-io-go-nats
  Version : 1.6.0+git20181112.9089d12-1
  Upstream Author : NATS - The Cloud Native Messaging System
* URL : https://github.com/nats-io/go-nats
* License : Apache-2.0
  Programming Lang: Go
  Description : Golang client for NATS, the cloud native messaging
system.

This is a new dependency for InfluxDB

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#821397: ITP: sway -- i3-compatible Wayland compositor

2018-11-20 Thread Birger Schacht
just for the record: sway depends on json-c >= 0.13, which is in
transition (see #904418)



signature.asc
Description: OpenPGP digital signature


Bug#914230: ITP: git-imerge -- incremental merge and rebase for git

2018-11-20 Thread James Clarke
Package: wnpp
Severity: wishlist
Owner: James Clarke 

* Package name: git-imerge
  Version : 1.1.0
  Upstream Author : Michael Haggerty 
* URL : https://github.com/mhagger/git-imerge
* License : GPLv2+
  Programming Lang: Python
  Description : incremental merge and rebase for git

Performs a merge between two branches incrementally. If conflicts are
encountered, figures out exactly which pairs of commits conflict, and
presents the user with one pairwise conflict at a time for resolution.

I recently discovered this useful tool and now use it for my day-to-day
work dealing with forks of large upstream projects. I intend to maintain
this as part of PAPT (which I've just found out is open to all DDs,
though out of courtesy I've still Cc'ed debian-python).

Regards,
James



Bug#914229: ITP: golang-github-nats-io-gnatsd -- High-Performance server for NATS

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-nats-io-gnatsd
  Version : 1.3.0+git20181112.3c52dc8-1
  Upstream Author : NATS - The Cloud Native Messaging System
* URL : https://github.com/nats-io/gnatsd
* License : Apache-2.0
  Programming Lang: Go
  Description : High-Performance server for NATS, the cloud native
messaging system.

This is a new dependency for InfluxDB

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914228: ITP: golang-github-nats-io-nkeys -- NATS Keys

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-nats-io-nkeys
  Version : 0.0~git20181103.f9a6cff-1
  Upstream Author : NATS - The Cloud Native Messaging System
* URL : https://github.com/nats-io/nkeys
* License : Apache-2.0
  Programming Lang: Go
  Description : NATS Keys

This is a new dependency for InfluxDB

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914224: ITP: golang-github-nats-io-nuid -- NATS Unique Identifiers

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-nats-io-nuid
  Version : 1.0.0+git20180712.3024a71-1
  Upstream Author : NATS - The Cloud Native Messaging System
* URL : https://github.com/nats-io/nuid
* License : Apache-2.0
  Programming Lang: Go
  Description : NATS Unique Identifiers

This is a new dependency for InfluxDB

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914220: ITP: golang-gopkg-robfig-cron.v2 -- a cron library for go

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-gopkg-robfig-cron.v2
  Version : 1+git20150107.be2e0b0-1
  Upstream Author : Rob Figueiredo
* URL : https://github.com/robfig/cron
* License : Expat
  Programming Lang: Go
  Description : a cron library for go

This is a new dependency for InfluxDB

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914219: ITP: golang-github-getkin-kin-openapi -- OpenAPI 3.0 implementation for Go

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-getkin-kin-openapi
  Version : 0.1.0+git20181119.fa639d0-1
  Upstream Author :
* URL : https://github.com/getkin/kin-openapi
* License : Expat
  Programming Lang: Go
  Description : OpenAPI 3.0 implementation for Go (parsing,
converting, validation, and more)

This is a new dependency for InfluxDB.

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914214: ITP: golang-github-tylerb-graceful -- graceful shutdown of an http.Handler server

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-tylerb-graceful
  Version : 1.2.15+git20170221.d72b015-1
  Upstream Author : Tyler Stillwater
* URL : https://github.com/tylerb/graceful
* License : Expat
  Programming Lang: Go
  Description : graceful shutdown of an http.Handler server

This is a new dependency for InfluxDB

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914210: ITP: golang-github-segmentio-kafka-go -- Kafka library in Go

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-segmentio-kafka-go
  Version : 0.2.1-1
  Upstream Author : Segment
* URL : https://github.com/segmentio/kafka-go
* License : Expat
  Programming Lang: Go
  Description : Kafka library in Go

This is a new dependency for InfluxDB.

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914209: ITP: golang-github-pkg-term -- Package term manages POSIX terminals

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-pkg-term
  Version : 0.0~git20181116.27bbf2e-1
  Upstream Author :
* URL : https://github.com/pkg/term
* License : BSD-2-clause
  Programming Lang: Go
  Description : Package term manages POSIX terminals.

This is a new dependency for InfluxDB.

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914207: ITP: golang-github-c-bata-go-prompt -- Building powerful interactive prompts in Go, inspired by python-prompt-toolkit

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-c-bata-go-prompt
  Version : 0.2.3+git20181109.b6d2b43-1
  Upstream Author : Masashi SHIBATA
* URL : https://github.com/c-bata/go-prompt
* License : Expat
  Programming Lang: Go
  Description : Building powerful interactive prompts in Go,
inspired by python-prompt-toolkit.

This is a new dependency for InfluxDB.

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914206: ITP: golang-github-andreyvit-diff -- Quick'n'easy string diffs for Golang, mainly for diffing strings in tests

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-andreyvit-diff
  Version : 0.0~git20170406.c7f18ee-1
  Upstream Author : Andrey Tarantsov
* URL : https://github.com/andreyvit/diff
* License : Expat
  Programming Lang: Go
  Description : Quick'n'easy string diffs for Golang, mainly for
diffing strings in tests

This is a new dependency for InfluxDB

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#914205: ITP: golang-github-influxdata-line-protocol -- influxdb line protocol implementation

2018-11-20 Thread Alexandre Viau
Package: wnpp
Severity: wishlist
Owner: Alexandre Viau 

* Package name: golang-github-influxdata-line-protocol
  Version : 0.0~git20181118.934b9e6-1
  Upstream Author : InfluxData
* URL : https://github.com/influxdata/line-protocol
* License : Expat
  Programming Lang: Go
  Description : influxdb line protocol implementation

This is a new dependency for InfluxDB.

-- 
Alexandre Viau
av...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#688896: This is a bad idea

2018-11-20 Thread Jonas Smedegaard
I agree it is a bad idea to package fpm officially for Debian.

For those interested in creating dirty packages,
here is a dirty set of commands to create a dirty fpm package:


sudo apt install gem2deb apt-file python3-debian ruby-backports ruby-cabin 
ruby-childprocess ruby-clamp ruby-ffi ruby-json ruby-stud ruby-dotenv 
ruby-insist ruby-mustache ruby-rspec git
sudo apt update
gem2deb ruby-xz
gem2deb arr-pm
gem2deb -s pleaserun
cd ruby-pleaserun-*
perl -i -pe 's/"mustache"\K, "[\d.]+"//' pleaserun.gemspec
DEB_BUILD_OPTIONS=nocheck dpkg-buildpackage -us -uc 
--source-option=--auto-commit
cd ..
sudo dpkg -i *.deb
gem2deb -s fpm
cd ruby-fpm-*
perl -i -pe 's/.freeze, \[\K"< [\d.]+", //' fpm.gemspec
perl -i -pe 's/<(arr-pm|pleaserun|ruby-xz)>\.freeze, \[">= \K[\d.]+/0/g' 
fpm.gemspec
perl -i -pe 's/~> [0.]+/>= 0/g' fpm.gemspec
sed -i '/ruby-json (<< 2.0),/d' debian/control
echo fpm.gemspec > debian/source/include-binaries
dpkg-buildpackage -us -uc --source-option=--auto-commit
cd ..
dpkg -i ruby-fpm_*.deb


 - Jonas

-- 
 * Jonas Smedegaard - idealist & Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: signature


Bug#886824: marked as done (ITP: aims-artwork -- wallpapers, icons and other assets used in AIMS Desktop)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 13:54:19 +0200
with message-id <2803c6aa-a690-4ce2-9144-73652ea7d...@debian.org>
and subject line 886819
has caused the Debian Bug report #886824,
regarding ITP: aims-artwork -- wallpapers, icons and other assets used in AIMS 
Desktop
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.)


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

* Package name: aims-artwork
  Version : 10.0.1
  Upstream Author : AIMS Desktop packages 
* URL : https://salsa.debian.org/aims-desktop-team/aims-artwork
* License : GPL-2
  Programming Lang: data
  Description : wallpapers, icons and other assets used in AIMS Desktop

Contains wallpaper, icons, theming and other assets used in AIMS Desktop.

This will be team maintained in salsa:
https://salsa.debian.org/aims-desktop-team/aims-artwork
--- End Message ---
--- Begin Message ---
tags 886824 = wontfix
tags 886821 = wontfix
tags 886819 = wontfix
thank you

Closing these for now, we won't be packaging AIMS Desktop components for
buster, but might revisit these for bullseye.--- End Message ---


Bug#886821: marked as done (ITP: aims-desktop -- AIMS Desktop main meta-package)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 13:54:19 +0200
with message-id <2803c6aa-a690-4ce2-9144-73652ea7d...@debian.org>
and subject line 886819
has caused the Debian Bug report #886821,
regarding ITP: aims-desktop -- AIMS Desktop main meta-package
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.)


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

* Package name: aims-desktop
  Version : 10.0.1
  Upstream Author : AIMS Desktop Team 
* URL : https://desktop.aims.ac.za
* License : GPL-2
  Programming Lang: metapackage, shell
  Description : AIMS Desktop main meta-package

This metapackage configures an AIMS Desktop system and installs
related artwork, a large ammount of utilities and scientific packages
including Jupyter, RStudio, Sagemath and Texmaker.

It will be team maintained in salsa.
--- End Message ---
--- Begin Message ---
tags 886824 = wontfix
tags 886821 = wontfix
tags 886819 = wontfix
thank you

Closing these for now, we won't be packaging AIMS Desktop components for
buster, but might revisit these for bullseye.--- End Message ---


Bug#886819: marked as done (ITP: aims-live -- Live media package for AIMS Desktop)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 13:54:19 +0200
with message-id <2803c6aa-a690-4ce2-9144-73652ea7d...@debian.org>
and subject line 886819
has caused the Debian Bug report #886819,
regarding ITP: aims-live -- Live media package for AIMS Desktop
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.)


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

* Package name: aims-live
  Version : 10.0.1
  Upstream Author : AIMS Desktop Team 
* URL : https://salsa.debian.org/aims-desktop-team/aims-live
* License : GPL-2
  Programming Lang: metapackage, shell
  Description : Live media package for AIMS Desktop

This package is part of AIMS Desktop.

It provides:

 - The dependencies in order to boot up a system from live media such
   as a DVD-RW disc or a USB disk.
 - Settings for Calamares, the installer framework used to install
   AIMS Desktop.
 - A list of conflicts that are used during the installation process
   in order to remove unwanted or very large packages.

For more information about AIMS Desktop, see: https://desktop.aims.ac.za
--- End Message ---
--- Begin Message ---
tags 886824 = wontfix
tags 886821 = wontfix
tags 886819 = wontfix
thank you

Closing these for now, we won't be packaging AIMS Desktop components for
buster, but might revisit these for bullseye.--- End Message ---


Processed: 886819

2018-11-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 886824 = wontfix
Bug #886824 [wnpp] ITP: aims-artwork -- wallpapers, icons and other assets used 
in AIMS Desktop
Added tag(s) wontfix.
> tags 886821 = wontfix
Bug #886821 [wnpp] ITP: aims-desktop -- AIMS Desktop main meta-package
Added tag(s) wontfix.
> tags 886819 = wontfix
Bug #886819 [wnpp] ITP: aims-live -- Live media package for AIMS Desktop
Added tag(s) wontfix.
> thank you
Stopping processing here.

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



Bug#906102: marked as done (ITP: dtl -- diff template library written by C++)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 13:00:09 +
with message-id 
and subject line Bug#906102: fixed in dtl 1.19-1
has caused the Debian Bug report #906102,
regarding ITP: dtl -- diff template library written by C++
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.)


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

* Package name: dtl
  Version : 1.19 
  Upstream Author : Tatsuhiko Kubo 
* URL : https://github.com/cubicdaiya/dtl 
* License : BSD-3-clause
  Programming Lang: C++ 
  Description : diff template library written by C++

 dtl provides functions for comparing two sequences of arbitrary
 types. Sequences must support a random-access iterator.
 .
 The algorithm dtl uses is based on the paper "An O(NP) Sequence
 Comparison Algorithm" (1989) by Sun Wu, Udi Manber and Gene Myers. The
 computational complexity of Wu's O(NP) Algorithm is O(N+PD) on average,
 and O(NP) in the worst case.

This will be a simple package installing only some C++ include files.
It is a dependency of fontdiff (ITP #906099).

Paride
--- End Message ---
--- Begin Message ---
Source: dtl
Source-Version: 1.19-1

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

Debian distribution maintenance software
pp.
Paride Legovini  (supplier of updated dtl 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: Mon, 13 Aug 2018 17:14:01 +
Source: dtl
Binary: libdtl-dev
Architecture: source all
Version: 1.19-1
Distribution: unstable
Urgency: medium
Maintainer: Paride Legovini 
Changed-By: Paride Legovini 
Description:
 libdtl-dev - diff template library written in C++
Closes: 906102
Changes:
 dtl (1.19-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #906102)
Checksums-Sha1:
 7024dc70c6a2fbda8987553c3ddb166467f1c442 1800 dtl_1.19-1.dsc
 654de837fc7cca08bcea00ae132bae0eb9ca47a5 25612 dtl_1.19.orig.tar.gz
 a47b44993ac6509f1ac5fa5adc88097fe00f63d9 2056 dtl_1.19-1.debian.tar.xz
 12c0ccc55a354bc69f5104358035524d8149fbea 6394 dtl_1.19-1_amd64.buildinfo
 e29afc4db81d83c1e0ecb820dfd97ebdb5e57899 19484 libdtl-dev_1.19-1_all.deb
Checksums-Sha256:
 3c9caf22084e61ce899a127fa3ede53faf045b276fd8f68bb52f3b2241caef7c 1800 
dtl_1.19-1.dsc
 f47b99dd11e5d771ad32a8dc960db4ab2fbe349fb0346fa0795f53c846a99c5d 25612 
dtl_1.19.orig.tar.gz
 95bc13f1cfc994835bbd773f66d785253b6ea4fee69b20b96fbfdbf8a49ac0d0 2056 
dtl_1.19-1.debian.tar.xz
 81d467f13b2b5973fe10ffef3435d9d4a3965bd15db1aefeca62ceae62de4072 6394 
dtl_1.19-1_amd64.buildinfo
 fa06fc6924f8b0cf2ddd2f57dd3d24d2910f33bc0b39f8391aea4a3934c85fb2 19484 
libdtl-dev_1.19-1_all.deb
Files:
 a4fb4c5be8cb19b7466ae6c13f61e7ce 1800 libdevel optional dtl_1.19-1.dsc
 5e6f326042ef4e80900b7b50283ddff9 25612 libdevel optional dtl_1.19.orig.tar.gz
 6450bb2b2c8f950db0b23d0d1b52cf44 2056 libdevel optional 
dtl_1.19-1.debian.tar.xz
 2671bdc430d339a6bac18d0e6d80b890 6394 libdevel optional 
dtl_1.19-1_amd64.buildinfo
 149c2a39104561fc5015e4b3e2cefcca 19484 libdevel optional 
libdtl-dev_1.19-1_all.deb

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEEIsF2SKlSa4TfGRyWy+qOlwzNWd8FAlt/FosVHGZhYmlhbkBn
cmVmZnJhdGguY29tAAoJEMvqjpcMzVnfDhkP+gORJWtF/5hYbP8kN1HKCuaq7b1V
L51cOXxvJ25S9a9ph2t1SoI2uvRWY5iwduxDLFhibs9VHkLGGpWSQ7gvGWqlMbje
7nC7eB1amDoDygMJmXT1La3FT30pDsaJ28HVYfsrCgZ0hC+AkXmdPxBgt0IS7sWG
AL7lRLWOz6unbGREzq39KkOEQcUbj1Ki2e6gBcT1InwfYko1y0f6zZVjkMe2+2Mf
gp582Kk0jlVKWj31h9g+bV0xdAS0jv23mqrPTPreps7O9L/trNKBxVeNBjZTgz+e
ZnloNI54mt2PKKPmPYouV1TgqWAqODGPcWyKPjaHgU8QgIm1y1zpvpFKoFYebjuQ
VxfPcQ7XCB26JHFg0b30rd7k943xFMox8zlEGEso1fcYWCMnlOx5lIlQYwp3vmwI
mCKjqW/zDcuWcPN+htmTTtlPwv/74Pmuo5a0idQNRobsis1t/yBsB33/7pbs/pV7
g3nDM4h1WAobbLZVlv9EqIhnJgZc+JrWROlGa62eEUnObn5z47QwCpJjspgXhaJh
pGZ5a6bXc8YpK6ZRi9yEgfM1RuuWdE+MhvOqVRd/oEylKE9Kb37RUZ+WsjfEaUUT
pqXd7NMvIcjQeV0IMKIL6mN+RPzUUwk7MspOnjdOwCzM8Wd2GTfFDRyk91PSIjhl
LN5cZtsixst4k57m
=RbfD
-END PGP SIGNATURE End Message ---


Bug#899273: marked as done (ITP: fonts-ibm-plex -- IBM's corporate typeface)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 13:00:10 +
with message-id 
and subject line Bug#899273: fixed in fonts-ibm-plex 1.1.6-1
has caused the Debian Bug report #899273,
regarding ITP: fonts-ibm-plex -- IBM's corporate typeface
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.)


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

* Package name: fonts-ibm-plex
  Version : 1.0.2
  Upstream Author : IBM Corp.
* URL : https://www.ibm.com/plex/
* License : SIL-1.1
  Programming Lang: FontLab Studio 5
  Description : IBM's corporate typeface

Meet IBM Plex, our new corporate typeface. It’s global, it’s versatile
and it’s distinctly IBM.

We designed Plex carefully to both meet our needs as a global tech company
and express who we are as people. It took two years and a lot of work to
get here, but today we have a signature typeface we’re proud and excited
to share with the world. Plex is an open-source project (OFL) and free to
download and use. The Plex family comes in a Sans, Serif, Mono and Sans
Condensed, all with roman and true italics. The fonts have been designed
to work well in user interface (UI) environments as well as other mediums.
This project provides all source files and file formats to support most
typographical situations.

I will need a sponsor and will be posting an RFS to the appropriate
package.

-- 
Zebulon McCorkle
Email: zebmccor...@zeb.fun
IRC:
 - zebmccorkle@Freenode
 - zebmccorkle@OFTC
 - zeb@EsperNet
 - zeb@hackint
 - zeb@PdgnCo
 - zeb@EFNet
PGP: 803A 0F47 82AD DDEA 46BE  055F F8F9 DB8C 1A54 6398
 (Zebulon McCorkle )


signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---
Source: fonts-ibm-plex
Source-Version: 1.1.6-1

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

Debian distribution maintenance software
pp.
Paride Legovini  (supplier of updated fonts-ibm-plex 
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, 18 Sep 2018 09:23:39 +
Source: fonts-ibm-plex
Binary: fonts-ibm-plex
Architecture: source all
Version: 1.1.6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Fonts Task Force 
Changed-By: Paride Legovini 
Description:
 fonts-ibm-plex - extensive typeface family designed by IBM
Closes: 899273
Changes:
 fonts-ibm-plex (1.1.6-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #899273)
Checksums-Sha1:
 98ff43e582e14a5ccdb64c73cea201e23d40dcb7 2006 fonts-ibm-plex_1.1.6-1.dsc
 c093fb013109bf420067b444d6e725ffdd0b2571 49953300 
fonts-ibm-plex_1.1.6.orig.tar.gz
 50db05beb3f73881fd1a45001707f407fcc0d497 4412 
fonts-ibm-plex_1.1.6-1.debian.tar.xz
 906730afd7ad974beb88c3a392334f891476a19f 18685984 
fonts-ibm-plex_1.1.6-1_all.deb
 56fc25e76276a81a307aeb8eb659680e2a262150 6459 
fonts-ibm-plex_1.1.6-1_amd64.buildinfo
Checksums-Sha256:
 a9dafe3d4e25de6a100768997079c9acda2551f291f8bc0fbbfe84f26d7bbdec 2006 
fonts-ibm-plex_1.1.6-1.dsc
 042b8de074e489d30f15f7cbf12499105e288dbcaf26933509a52e1a52f72146 49953300 
fonts-ibm-plex_1.1.6.orig.tar.gz
 aab824a050be06ca34f666f8cc67bb03f803fd28aae573a383b0d3a1dd4b9be9 4412 
fonts-ibm-plex_1.1.6-1.debian.tar.xz
 ca88f8f603c26b8d19a2bbca90893237277443c14f4436d6b03da055b9d62aa3 18685984 
fonts-ibm-plex_1.1.6-1_all.deb
 474e89aaa7cfeb79925ee9ad84cf55a6b6e83fe01484e373400213b11bb8ec84 6459 
fonts-ibm-plex_1.1.6-1_amd64.buildinfo
Files:
 f53a9fd65edf6b83a1a903eeb1adf67b 2006 contrib/fonts optional 
fonts-ibm-plex_1.1.6-1.dsc
 381470304229c11b143a675aa3605cb6 49953300 contrib/fonts optional 
fonts-ibm-plex_1.1.6.orig.tar.gz
 21bba913f918d97a7d5686c5ed099ce1 4412 contrib/fonts optional 
fonts-ibm-plex_1.1.6-1.debian.tar.xz
 bd43b25442b672031a3f469d34ed1e84 18685984 contrib/fonts optional 
fonts-ibm-plex_1.1.6-1_all.deb
 4d9141f023d4d6b370c2b173a8914137 6459 contrib/fonts optional 
fonts-ibm-plex_1.1.6-1_amd64.buildinfo

-BEGIN PGP 

Processed: retitle to RFP: pocket-home -- a simple menu for mobile devices

2018-11-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 872380 RFP: pocket-home -- a simple menu for mobile devices
Bug #872380 [wnpp] ITP: pocket-home -- a simple menu for mobile devices
Changed Bug title to 'RFP: pocket-home -- a simple menu for mobile devices' 
from 'ITP: pocket-home -- a simple menu for mobile devices'.
> noowner 872380
Bug #872380 [wnpp] RFP: pocket-home -- a simple menu for mobile devices
Removed annotation that Bug was owned by Stephen Paul Weber 
.
> stop
Stopping processing here.

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



Bug#897158: marked as done (ITP: node-nodedbi -- libdbi interface for Node.js)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:58 +
with message-id 
and subject line Bug#897158: fixed in node-nodedbi 1.0.12-1
has caused the Debian Bug report #897158,
regarding ITP: node-nodedbi -- libdbi interface for Node.js
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.)


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

* Package name: node-nodedbi
  Version : 1.0.12
  Upstream Author : Daniel O'Neill 
* URL : https://github.com/danieloneill/nodedbi
* License : GPL-2
  Programming Lang: Javascript
  Description : libdbi interface for Node.js

NodeDBI is a LibDBI interface for Node.js. In addition to providing a
traditional interface for SQL database access, it also offers developers
the ability of paging on results programmatically and storing result
handles to a session as shown below.
--- End Message ---
--- Begin Message ---
Source: node-nodedbi
Source-Version: 1.0.12-1

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

Debian distribution maintenance software
pp.
Xavier Guimard  (supplier of updated node-nodedbi 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, 29 Apr 2018 10:09:12 +0200
Source: node-nodedbi
Binary: node-nodedbi
Architecture: source amd64
Version: 1.0.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Description:
 node-nodedbi - libdbi interface for Node.js
Closes: 897158
Changes:
 node-nodedbi (1.0.12-1) unstable; urgency=low
 .
   * Initial release (Closes: #897158)
Checksums-Sha1:
 9bb88d82cb757892a8886e383e09a6b63cddc100 2042 node-nodedbi_1.0.12-1.dsc
 4a22076f0bd9095afe10795ea9a9d951a72dae62 17164 node-nodedbi_1.0.12.orig.tar.gz
 2da90b7304cd87cf475bad21a28bcdc175f6c8d4 2408 
node-nodedbi_1.0.12-1.debian.tar.xz
 71fd1b5a35110e81779f8bdc78bce65e119ff003 116088 
node-nodedbi-dbgsym_1.0.12-1_amd64.deb
 9048bcdad2bb7f6ed368dfb0e9498291a5d53955 8197 
node-nodedbi_1.0.12-1_amd64.buildinfo
 84648569ecd83cdda240314aa8fe536dc3552184 138108 node-nodedbi_1.0.12-1_amd64.deb
Checksums-Sha256:
 7051204b85bdf03b1478fc2bdcb38f4b1157dc1df402f78d9690737ebebfc5bf 2042 
node-nodedbi_1.0.12-1.dsc
 fa9e4169841f0e0a5ae46d759a5524ab1d59c6cba08525420806a48c6e7490c7 17164 
node-nodedbi_1.0.12.orig.tar.gz
 9ce0343ec429f7a2351fae3f1524db2216c0b8f2deaa25cb95df673ac51ca956 2408 
node-nodedbi_1.0.12-1.debian.tar.xz
 34bbf7acda3110e03e9a448f19e9ee35b31f9742834fb972fdb0b587fc64c69c 116088 
node-nodedbi-dbgsym_1.0.12-1_amd64.deb
 aec11d2778c8efe95bee7473aaae2112095729411b385ef411417b877ffd789a 8197 
node-nodedbi_1.0.12-1_amd64.buildinfo
 061e34e33e923c23c5b2e9bbbfaa5127f5b63e6dead44363408e6afb0d0c5c06 138108 
node-nodedbi_1.0.12-1_amd64.deb
Files:
 e1a80ac7745136bb88b1ecf37a32a617 2042 javascript optional 
node-nodedbi_1.0.12-1.dsc
 62946fca3b96405f737a243fce1d0cf8 17164 javascript optional 
node-nodedbi_1.0.12.orig.tar.gz
 224f6e1d37f7afc91ad797397623583f 2408 javascript optional 
node-nodedbi_1.0.12-1.debian.tar.xz
 1af28a355ed61952cfb02f20b66322a1 116088 debug optional 
node-nodedbi-dbgsym_1.0.12-1_amd64.deb
 2a5e227c3e57fc371abee34fc82de057 8197 javascript optional 
node-nodedbi_1.0.12-1_amd64.buildinfo
 a379be1d2475f3c3788100645958d33e 138108 javascript optional 
node-nodedbi_1.0.12-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEKnl0ri/BUtd4Z9pKzh+cZ0USwioFAlsqBc8ACgkQzh+cZ0US
wiqmmBAAhsWZqhnicEjZpUknQXR9ThdjqM1PTOwEj+wMIaydADlXD7dTX6bhj2as
hq+qL6codiXTVQBqg3cCiWCC9WcjGwu3Cxo87i3JQXmY0t22piPCw4F2acB8XxPM
W/80eKy0HQPwJz9YCDBUDAZAtKSrqHSXMpuscGVnhXsflUlW2alnD9pB1XzhSYea
l61amH+7tlCDXuCZ037BhPOC0UYVwHnk69vGxrv3eKazZ4o7cORPZKdtrmYbfzDs
nU5gtsrZ7vi3u/dUyp+b4NdQpjP5LvWGik/KYVMy4pbK02CpTZs3n3RNlKThTpFJ
GesTZsXIyxyIyyhW4CG/CyraMziS2QWR7p3d8Tv90yXH4pKusztfN+IqzKTXx3PL
5bV0ntqbQeUntPa1lSsNLDuhrdvXhHfabjabuEYwyGCKxViIQyo5XftAkPvjZtmK

Bug#895139: marked as done (ITP: node-babel-plugin-array-includes -- Babel plugin to replace the array includes syntax)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:55 +
with message-id 
and subject line Bug#895139: fixed in node-babel-plugin-array-includes 2.0.3-1
has caused the Debian Bug report #895139,
regarding ITP: node-babel-plugin-array-includes -- Babel plugin to replace the 
array includes syntax
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.)


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

* Package name: node-babel-plugin-array-includes
  Version : 2.0.3
  Upstream Author : Christoph Hermann
* URL : 
https://github.com/stoeffel/babel-plugin-array-includes#readme
* License : Expat
  Programming Lang: JavaScript
  Description : Babel plugin to replace the array includes syntax

 This Babel plugin replaces the array includes(val) syntax with a check
 based on indexOf.
 .
 Babel is a JavaScript compiler to use next generation JavaScript, today.
 .
 Node.js is an event-based server-side JavaScript engine. 

This is a build-dependency of node-yarnpkg, see ITP:
https://bugs.debian.org/843021

My intention is to maintain it within the JavaScript maintainers team.

The repo will be on salsa:
https://salsa.debian.org/js-team/node-babel-plugin-array-includes

Paolo
--- End Message ---
--- Begin Message ---
Source: node-babel-plugin-array-includes
Source-Version: 2.0.3-1

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

Debian distribution maintenance software
pp.
Paolo Greppi  (supplier of updated 
node-babel-plugin-array-includes 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: Sat, 07 Apr 2018 16:29:49 +0200
Source: node-babel-plugin-array-includes
Binary: node-babel-plugin-array-includes
Architecture: source all
Version: 2.0.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Paolo Greppi 
Description:
 node-babel-plugin-array-includes - Babel plugin to replace the array includes 
syntax
Closes: 895139
Changes:
 node-babel-plugin-array-includes (2.0.3-1) unstable; urgency=low
 .
   * Initial release (Closes: #895139)
Checksums-Sha1:
 6136566e5c31c061f74e8f42a00968918b1aeff7 2311 
node-babel-plugin-array-includes_2.0.3-1.dsc
 ad565d3a0b01c701fbc55e2d561ac9b2a0fe8c68 2422 
node-babel-plugin-array-includes_2.0.3.orig.tar.gz
 cfc175316358d56a76226f43028ab3e19b26857f 2948 
node-babel-plugin-array-includes_2.0.3-1.debian.tar.xz
 93cec4695bf2d0dbc11b028c7a451667bd8b3672 3672 
node-babel-plugin-array-includes_2.0.3-1_all.deb
 0019640fade4e5823d960b933ae4d5de041a8300 11005 
node-babel-plugin-array-includes_2.0.3-1_amd64.buildinfo
Checksums-Sha256:
 f2dc7516d57985d90feed814cd224651d6a502e4bf237822e727db7e808f9ad6 2311 
node-babel-plugin-array-includes_2.0.3-1.dsc
 e122b80fd57dff6c11bb592250006b10f2ff7a869144cef60b5ac3bdc60748a2 2422 
node-babel-plugin-array-includes_2.0.3.orig.tar.gz
 562d6e9df7c622fe25a1bcc0c3d4b927221c5446fc6d6c0a5cd2880fc35021a0 2948 
node-babel-plugin-array-includes_2.0.3-1.debian.tar.xz
 a2def6cb90ec482a780f8985dce7e139c3853ded2eb9cbcf03b92ef0ce9c8a7f 3672 
node-babel-plugin-array-includes_2.0.3-1_all.deb
 8b72e6777c6bc004f9c8e64663058bb1bec48ad1f312a8537b82e51cb3f9139d 11005 
node-babel-plugin-array-includes_2.0.3-1_amd64.buildinfo
Files:
 99f76fd8afd42f7c2309c5826d9259ac 2311 javascript optional 
node-babel-plugin-array-includes_2.0.3-1.dsc
 627a380bdc6e99ad065d9a0eaecc0b46 2422 javascript optional 
node-babel-plugin-array-includes_2.0.3.orig.tar.gz
 18b214d4991d32286ff933b5b7b876cc 2948 javascript optional 
node-babel-plugin-array-includes_2.0.3-1.debian.tar.xz
 80495ed8ee00a5954b8f2b2e4c9c165b 3672 javascript optional 
node-babel-plugin-array-includes_2.0.3-1_all.deb
 99e5b782f6ee1a1f9a8874131a61b882 11005 javascript optional 
node-babel-plugin-array-includes_2.0.3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEKnl0ri/BUtd4Z9pKzh+cZ0USwioFAlriDc8ACgkQzh+cZ0US

Bug#881158: marked as done (ITP: node-configstore -- load and save config without having to think about where and how)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:57 +
with message-id 
and subject line Bug#881158: fixed in node-configstore 3.1.1-1
has caused the Debian Bug report #881158,
regarding ITP: node-configstore -- load and save config without having to think 
about where and how
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.)


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

* Package name: node-configstore
  Version : 3.1.1
  Upstream Author : Sindre Sorhus 
(sindresorhus.com)
* URL : https://github.com/yeoman/configstore#readme
* License : BSD-2-Clause
  Programming Lang: JavaScript
  Description : load and save config without having to think about
where and how

 Easily load and persist config without having to think about where and how
 .
 Config is stored in a JSON file located in $XDG_CONFIG_HOME or ~/.config.
 Example: ~/.config/configstore/some-id.json
 .
 Node.js is an event-based server-side JavaScript engine.

Dependency of npm 5.x



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: node-configstore
Source-Version: 3.1.1-1

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

Debian distribution maintenance software
pp.
Pirate Praveen  (supplier of updated node-configstore 
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: Wed, 08 Nov 2017 16:48:34 +0530
Source: node-configstore
Binary: node-configstore
Architecture: source all
Version: 3.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Pirate Praveen 
Description:
 node-configstore - load and save config without having to think about where 
and how
Closes: 881158
Changes:
 node-configstore (3.1.1-1) unstable; urgency=low
 .
   * Initial release (Closes: #881158)
Checksums-Sha1:
 84ef1555aee34dbfc839c333024445f6e432f2a3 2080 node-configstore_3.1.1-1.dsc
 db42445219cc42fd07d6f5bd4e72f08f7dd75069 3438 
node-configstore_3.1.1.orig.tar.gz
 90022c0e1cdd72e03daaededf02feab22e4d477b 2188 
node-configstore_3.1.1-1.debian.tar.xz
 6d95f5ce29c1f51d027f92a98482a29a0e9ef246 4616 node-configstore_3.1.1-1_all.deb
 7d86fc2f937487f199d97c221102d798675bfc35 5479 
node-configstore_3.1.1-1_amd64.buildinfo
Checksums-Sha256:
 323eadfc5595246fea65e7e3cf6218639e0edaa158bfa44015d2ddc796ac2516 2080 
node-configstore_3.1.1-1.dsc
 174cdd0c6e5dc8ac7056320fefc5a2f76eb03015790350aa3c58c6d444233591 3438 
node-configstore_3.1.1.orig.tar.gz
 d5081c628ed6293c15996bd55513b4b25364a60cfa536a16c458e9fea062adc9 2188 
node-configstore_3.1.1-1.debian.tar.xz
 3a7e0e55c3ca40e51b43416ff85645d2b54ab637c32886573caf9fd7375e2bd8 4616 
node-configstore_3.1.1-1_all.deb
 b9d32cfc5c822aab2ce1d9692c791e8495c308c78579947a554e4a47105e7cbe 5479 
node-configstore_3.1.1-1_amd64.buildinfo
Files:
 08a2f5ec545843bce475ab5ddf76db22 2080 javascript optional 
node-configstore_3.1.1-1.dsc
 5eee386fb8a3ab4aafaab6e925136e26 3438 javascript optional 
node-configstore_3.1.1.orig.tar.gz
 6f58b2c2734e5fa0d954826ee13b07f4 2188 javascript optional 
node-configstore_3.1.1-1.debian.tar.xz
 84030eca5aa5ed3b491cd2975bcf9ec5 4616 javascript optional 
node-configstore_3.1.1-1_all.deb
 422eab02825e4e675641885b3a6948c1 5479 javascript optional 
node-configstore_3.1.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEKnl0ri/BUtd4Z9pKzh+cZ0USwioFAloC6i8ACgkQzh+cZ0US
wirChxAAh3sj5YE16Bcnx4wFstSaVEyIDKCMeXFotklVWi7pf83zINb4wKRh6uYr
6yuWBVlauTw0VnKzVnU4mYn+SA/kpoKaVwiZ254zT0T2d+IXBs4Y/kLwR0Z3AyPt
o6WoE2bed7b1QdNGOOAQca++UX1zPGE/P9ckimD8MiRIwDZVMOXvWYR+DkHFUBYA
aa8oT/m4cZu1jht0cYY37r6c9aj96XftGqXzUx4ChYONmvuMnGi/xViih+39McRN
H4DFBYBZVT3Wljy9PLjJw/hfWFk7EaIo9sPwE5SF4lcp48jjUbRBKwzb2+43vVPC
ViAU3jswYXjRkHETcyk8y34coBw4UpfXCSAYwwVRUp7SW+xO3yiYVYCZTbw6BJa6
AK7SmuweebgOCbERSFySOLEFmVHTH0LlDZGINDkNlqXQBexcWAK5Rjt/F7LKY8AQ

Bug#893709: marked as done (ITP: node-extract-text-webpack-plugin -- Extract text from bundle into a file)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:57 +
with message-id 
and subject line Bug#893709: fixed in node-extract-text-webpack-plugin 3.0.2-1
has caused the Debian Bug report #893709,
regarding ITP: node-extract-text-webpack-plugin -- Extract text from bundle 
into a file
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.)


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

* Package name: node-extract-text-webpack-plugin
  Version : 3.0.2
  Upstream Author : Tobias Koppers @sokra
* URL :
http://github.com/webpack-contrib/extract-text-webpack-plugin
* License : Expat
  Programming Lang: JavaScript
  Description : Extract text from bundle into a file

 Extract text from bundle into a file
 It moves all the required *.css modules in entry chunks into a separate CSS
 file. So styles are no longer inlined into the JS bundle, but in a separate
 CSS file (styles.css). If total stylesheet volume is big, it will be faster
 because the CSS bundle is loaded in parallel to the JS bundle.
 .
 Node.js is an event-based server-side JavaScript engine.

In dependency chain of gitlab 10 (build dependency of katex).



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: node-extract-text-webpack-plugin
Source-Version: 3.0.2-1

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

Debian distribution maintenance software
pp.
Pirate Praveen  (supplier of updated 
node-extract-text-webpack-plugin 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: Wed, 21 Mar 2018 18:54:59 +0530
Source: node-extract-text-webpack-plugin
Binary: node-extract-text-webpack-plugin
Architecture: source all
Version: 3.0.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Pirate Praveen 
Description:
 node-extract-text-webpack-plugin - Extract text from bundle into a file
Closes: 893709
Changes:
 node-extract-text-webpack-plugin (3.0.2-1) unstable; urgency=low
 .
   * Initial release (Closes: #893709)
Checksums-Sha1:
 0913e8e8b87d7892f668ef41281f4f4132a4 2344 
node-extract-text-webpack-plugin_3.0.2-1.dsc
 5c17728c538521442e72060c86c7da51650fca2b 89793 
node-extract-text-webpack-plugin_3.0.2.orig.tar.gz
 80494a38b1707006252f9df899fc3ea303801257 2492 
node-extract-text-webpack-plugin_3.0.2-1.debian.tar.xz
 8880f28e8b968f78666ee6f11789e56226b7b654 14004 
node-extract-text-webpack-plugin_3.0.2-1_all.deb
 ac94461c7a1ec3e65aff8437b3ccfe3e30216377 9667 
node-extract-text-webpack-plugin_3.0.2-1_amd64.buildinfo
Checksums-Sha256:
 d132b6df1a953705facf8f3e3d3edc8bfeca02a7d3ea1554cb68abe6b6511295 2344 
node-extract-text-webpack-plugin_3.0.2-1.dsc
 d4600acf3fd6517e810809f96305c2a65cea71ad72c6a8375f10fa385fa4fe8e 89793 
node-extract-text-webpack-plugin_3.0.2.orig.tar.gz
 ee18fcd7f5e9bf1c5a5bed744f8d4a01e683f92b373406f0e34d2530f19c2e6b 2492 
node-extract-text-webpack-plugin_3.0.2-1.debian.tar.xz
 98e99de903d85e74371a414a686e4b3da25d2c8f37633cb245172281650ed2f9 14004 
node-extract-text-webpack-plugin_3.0.2-1_all.deb
 414311d9d2cde8ac142530cdf7b11d9f17cb3c824ec1283126db5efa70ea2a44 9667 
node-extract-text-webpack-plugin_3.0.2-1_amd64.buildinfo
Files:
 18ac90cf486f922eab52b11bbf88e5b3 2344 javascript optional 
node-extract-text-webpack-plugin_3.0.2-1.dsc
 799e069e1c86d833c75a8945766462da 89793 javascript optional 
node-extract-text-webpack-plugin_3.0.2.orig.tar.gz
 8113a6e553da1fb5eda82460e36160fd 2492 javascript optional 
node-extract-text-webpack-plugin_3.0.2-1.debian.tar.xz
 3011ce7004ecbe033ea5356510527ac7 14004 javascript optional 
node-extract-text-webpack-plugin_3.0.2-1_all.deb
 ddda082c964f1b5abf601be3a2ae8e65 9667 javascript optional 
node-extract-text-webpack-plugin_3.0.2-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-


Bug#890037: marked as done (ITP: node-es6-error -- Easily-extendable error for use with ES6 classes)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:57 +
with message-id 
and subject line Bug#890037: fixed in node-es6-error 4.1.1-1
has caused the Debian Bug report #890037,
regarding ITP: node-es6-error -- Easily-extendable error for use with ES6 
classes
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.)


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

* Package name: node-es6-error
  Version : 4.1.1
  Upstream Author : Ben Youngblood
* URL : https://github.com/bjyoungblood/es6-error
* License : Expat
  Programming Lang: JavaScript
  Description : Easily-extendable error for use with ES6 classes

 This module allows one to extend Error for inheritance and type checking,
 without adding Error.captureStackTrace(this, this.constructor.name) to the
 constructor or easily get the proper name to print from console.log.
 .
 Node.js is an event-based server-side JavaScript engine.

Dependency of ava testing framework.



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: node-es6-error
Source-Version: 4.1.1-1

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

Debian distribution maintenance software
pp.
Pirate Praveen  (supplier of updated node-es6-error 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: Sat, 10 Feb 2018 16:24:27 +0530
Source: node-es6-error
Binary: node-es6-error
Architecture: source all
Version: 4.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Pirate Praveen 
Description:
 node-es6-error - Easily-extendable error for use with ES6 classes
Closes: 890037
Changes:
 node-es6-error (4.1.1-1) unstable; urgency=low
 .
   * Initial release (Closes: #890037)
Checksums-Sha1:
 b0d14d143bf32ed44cd89157cb028cb0b399819a 2142 node-es6-error_4.1.1-1.dsc
 a8f3f5d330f871016fa14b83178a012dbf6d5978 19567 node-es6-error_4.1.1.orig.tar.gz
 d02383902f648ec6ce727d4151df53453221c3f3 2184 
node-es6-error_4.1.1-1.debian.tar.xz
 535329dc9c52cf5db424d40b5df7ae8ccddd73af 4908 node-es6-error_4.1.1-1_all.deb
 bba1fae7cc571e54191d34935b60f086c1e03c3e 9508 
node-es6-error_4.1.1-1_amd64.buildinfo
Checksums-Sha256:
 f11a5f3276636faea8ba3999e7389b09a9c0a312e504db8d19eb16b128facea3 2142 
node-es6-error_4.1.1-1.dsc
 d328897bd271b54a817fbfc600ede787f24ad36077ede93e358c01ee83801c41 19567 
node-es6-error_4.1.1.orig.tar.gz
 aa685bd43ee6955c5e5357d1ad9cb5eca0afa534d5ede443df87cfbc5d1660d0 2184 
node-es6-error_4.1.1-1.debian.tar.xz
 72daf2853d11cd4687e3c3be266c0052748cf195354605ba525f9d8d24b1ffd1 4908 
node-es6-error_4.1.1-1_all.deb
 9ed0bc8b9f5ee446cf6ec4748cbd46cfa04184f25807fbe7083cc771f989e22e 9508 
node-es6-error_4.1.1-1_amd64.buildinfo
Files:
 ea724fb95d4dbfd06ea81c4789ed907b 2142 javascript optional 
node-es6-error_4.1.1-1.dsc
 cbc23cf9fae9cf34371ec8d2c0bfe46f 19567 javascript optional 
node-es6-error_4.1.1.orig.tar.gz
 2742d4a6aceb39a742c3beb137329b12 2184 javascript optional 
node-es6-error_4.1.1-1.debian.tar.xz
 55615bf5307eda22419e994e5194e7f1 4908 javascript optional 
node-es6-error_4.1.1-1_all.deb
 ba7cb949b2e82d61fe4d261086276239 9508 javascript optional 
node-es6-error_4.1.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEKnl0ri/BUtd4Z9pKzh+cZ0USwioFAlp+1DwACgkQzh+cZ0US
wiqYsRAAr0y9kQxMKZjyiHina/qYVI3ibvVWDSOn0/M/4J/TFmSSd+ofNGjrVDgc
MdI04pvUR7HMmi34K8zw/3IC4H+c05Cz0tV/4ifh9TPU4HV1buy9BsLdwF38vqcu
tpssXORDFI4z1iyAF5vW3TVFvoFzgEfJuE6g4gUhTU0cuU04k/wGgXktVt+5m4T9
u8Si/mABGt/EFVubVMhhc6c6xiIPSQ9/qIIb31097Kh8SDRfVGgPesljSYkufKM1
oqb5iT4w8/3ADx0Sg7bHi1Op+9MokVJvSk+7Avutd1ds37JZI8+If4B8QnOiNh4Z
xB19N2PoyjI7cPSVeIrR4hbR4XHqjHM17BG+NJc7t239ixjXMNPYwcbR72lJMYLq
Ztv6vuM94dkykZJs2NAG/894wzo3Y2MyQsATZTbSn9Jf1/g1MYyD+rTR7OjZlgTc
JU+nva/rSpeVRFHkmjY0R/t1L/BQPpdU5iW23/j7PydF2kkx0d+Lbni3XxJafkNA

Bug#892022: marked as done (ITP: node-catty -- source file concatenator for Mapshaper)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:56 +
with message-id 
and subject line Bug#892022: fixed in node-catty 0.0.8-1
has caused the Debian Bug report #892022,
regarding ITP: node-catty -- source file concatenator for Mapshaper
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.)


-- 
892022: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=892022
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Ross Gammon 
X-Debbugs-CC: debian-de...@lists.debian.org
X-Debbugs-CC: pkg-javascript-de...@lists.alioth.debian.org

* Package name    : node-catty
  Version : 0.0.8
  Upstream Author : Matthew Bloch 
* URL : https://github.com/mbloch/catty
* License : Expat
  Programming Lang: JavaScript
  Description : source file concatenator for Mapshaper

 Catty is the source file concatenator for Mapshaper.
 .
 Some features:
 .
 * Each source file lists its dependencies in a formatted comment. There
   is no manifest, unlike some other tools.
 * Concatenated files are (optionally) wrapped in a self-executing
   function, to protect the global namespace.
 * Catty can monitor source files and regenerate output files when a
   required source file changes.
 .
 Node.js is an event-based server-side JavaScript engine.

This package is a required dependency of node-chroma.js, which is a
new dependency of the latest version of node-carto.

This package will be maintained within the Debian JavaScript maintainers
team.
--- End Message ---
--- Begin Message ---
Source: node-catty
Source-Version: 0.0.8-1

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

Debian distribution maintenance software
pp.
Ross Gammon  (supplier of updated node-catty 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, 04 Mar 2018 14:41:07 +0100
Source: node-catty
Binary: node-catty
Architecture: source all
Version: 0.0.8-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Ross Gammon 
Description:
 node-catty - source file concatenator for Mapshaper
Closes: 892022
Changes:
 node-catty (0.0.8-1) unstable; urgency=low
 .
   * Initial release (Closes: #892022)
Checksums-Sha1:
 055f7361e3e082c66c2cb1f174a03817b9c9acf6 1942 node-catty_0.0.8-1.dsc
 741fb30d7852e33c00bdfa1e21da044edaf510dd 10899 node-catty_0.0.8.orig.tar.gz
 cd94aa2b759b22ff88d6b4aa60c18a3f5826f8d7 3136 node-catty_0.0.8-1.debian.tar.xz
 c6b4f8711c98d5b26227a803c53415cd79bb57c9 11516 node-catty_0.0.8-1_all.deb
 34ca15d606df60ebf846951f53c6a1de893c77c4 5619 
node-catty_0.0.8-1_amd64.buildinfo
Checksums-Sha256:
 a1283a0ae96a6c6a07731196063e31257ec50875a190abc7bc8e87ffd7af277e 1942 
node-catty_0.0.8-1.dsc
 34cd3deea3ea3df31e2b4517460751db77c90ce12e2ce0421d9efc0953dafcca 10899 
node-catty_0.0.8.orig.tar.gz
 449dc601465bae0763c17b764848c2ee9b84600d1ffc0adc4dae1043a0eef998 3136 
node-catty_0.0.8-1.debian.tar.xz
 305774d0a99269cf9d8aafbc4e36674469fcb7af2b4877ef8e9db5b3750a8296 11516 
node-catty_0.0.8-1_all.deb
 b2acf65d0bb74c8c710c5aa108bfafc35cb989e73bf9bfffe02ddbeac056896f 5619 
node-catty_0.0.8-1_amd64.buildinfo
Files:
 63c1f8213d67408b9e38cfcfbe8d7934 1942 javascript optional 
node-catty_0.0.8-1.dsc
 86cd6e0c5a6b81b7f2302fc246ae6c53 10899 javascript optional 
node-catty_0.0.8.orig.tar.gz
 1f7b4c377eacc02cdcc9cbc3010455a7 3136 javascript optional 
node-catty_0.0.8-1.debian.tar.xz
 b32e411aa419408eeb602a4d708541d6 11516 javascript optional 
node-catty_0.0.8-1_all.deb
 aa91dcca29bfcbc38f583cef9c0f15b6 5619 javascript optional 
node-catty_0.0.8-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIcBAEBCgAGBQJam/kwAAoJEHM+a/k86PbZ9mcQALAQxK8WHniMdlo1JGGkMdCN
D0zYsMevB8XdTr8Rh23ynbVFHGNdds8+X99VmEVdujAzuNeFs66d3cEUlWeKWEmn
BpPxwtxIXvnEZ1Wo/sCo6169E0MeABIJz5ATkBzX1/1sAjxxPrrWEYDGPggQKx3/
c82BBp+/nrqI4LHo6t4FGkzCXGvZvwYQsVJZ7axA0jHd4yX9IrKcM8xbc8A6xgUj
Q7qp19bQBl/E3WaxmzyojszyyU7h5q7ADaLxISQkhpGYaHIrU8iW1FgnjK5RjZ0h
2mzXtoBXIpTe6rtGmeT8L1vXv32X2muNC1lKThzdY1cd6Uv4YvN0HRirS6oPDyET

Bug#891816: marked as done (ITP: node-prismjs -- Lightweight, robust, elegant syntax highlighting)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:59 +
with message-id 
and subject line Bug#891816: fixed in node-prismjs 1.11.0+dfsg-1
has caused the Debian Bug report #891816,
regarding ITP: node-prismjs -- Lightweight, robust, elegant syntax highlighting
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.)


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

* Package name: node-prismjs
  Version : 1.11.0
  Upstream Author : Lea Verou
* URL : https://github.com/LeaVerou/prism#readme
* License : Expat
  Programming Lang: JavaScript
  Description : Lightweight, robust, elegant syntax highlighting

 A spin-off project from Dabblet. Some of its unique features include:
  * It’s tiny. The core is only 1.5KB minified & gzipped.
  * It’s incredibly extensible. Not only it’s easy to add new languages, but
also to extend existing ones.
  * It encourages good author practices. Other highlighters encourage or
even
force you to use elements that are semantically wrong, like 
(on its
own) or 

Bug#890021: marked as done (ITP: node-babel-plugin-transform-builtin-extend -- extend from builtin types)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:55 +
with message-id 
and subject line Bug#890021: fixed in 
node-babel-plugin-transform-builtin-extend 1.1.2-1
has caused the Debian Bug report #890021,
regarding ITP: node-babel-plugin-transform-builtin-extend -- extend from 
builtin types
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.)


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

* Package name: node-babel-plugin-transform-builtin-extend
  Version : 1.1.2
  Upstream Author : Logan Smyth 
* URL :
https://github.com/loganfsmyth/babel-plugin-transform-builtin-extend#readme
* License : Expat
  Programming Lang: JavaScript
  Description : extend from builtin types

 This plugin for Babel 6 supports extending from builtin types based on
static
 analysis.
 .
 Babel is a JavaScript compiler to use next generation JavaScript, today.
 .
 ES2015 and beyond: Babel has support for the latest version of JavaScript
 through syntax transformers. These plugins allow you to use new syntax,
right
 now without waiting for browser support.
 .
 Node.js is an event-based server-side JavaScript engine.

Dependency of ava testing framework.



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: node-babel-plugin-transform-builtin-extend
Source-Version: 1.1.2-1

We believe that the bug you reported is fixed in the latest version of
node-babel-plugin-transform-builtin-extend, 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 890...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pirate Praveen  (supplier of updated 
node-babel-plugin-transform-builtin-extend 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: Sat, 10 Feb 2018 14:18:37 +0530
Source: node-babel-plugin-transform-builtin-extend
Binary: node-babel-plugin-transform-builtin-extend
Architecture: source all
Version: 1.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Pirate Praveen 
Description:
 node-babel-plugin-transform-builtin-extend - extend from builtin types
Closes: 890021
Changes:
 node-babel-plugin-transform-builtin-extend (1.1.2-1) unstable; urgency=low
 .
   * Initial release (Closes: #890021)
Checksums-Sha1:
 42c4d4c7624d7e20a31fca7200fa5441f0976cc6 2438 
node-babel-plugin-transform-builtin-extend_1.1.2-1.dsc
 914c81d00aba507f71e0c48e4f22b36de4ff7132 3650 
node-babel-plugin-transform-builtin-extend_1.1.2.orig.tar.gz
 526bc41fa74f3b6dfe72f099c691e7c8bca02e32 2204 
node-babel-plugin-transform-builtin-extend_1.1.2-1.debian.tar.xz
 fc8914633f9bd67a2cfaa804f753d28cdfa02396 4456 
node-babel-plugin-transform-builtin-extend_1.1.2-1_all.deb
 95d2eb16617b518af47bb053f4974452a77c9c57 9004 
node-babel-plugin-transform-builtin-extend_1.1.2-1_amd64.buildinfo
Checksums-Sha256:
 955bffdb4f9db174bd532d3f45da6ec9425c9d2e53b5b32ff2d4a0cb9c870cf9 2438 
node-babel-plugin-transform-builtin-extend_1.1.2-1.dsc
 29d7ee0a9f9dd7585298f74cdf467c0f5b96846004737f68ce27d447de438f26 3650 
node-babel-plugin-transform-builtin-extend_1.1.2.orig.tar.gz
 e46a3208e38310baeebc000db41e6f354ebcfd83ba0212577a7131f34251ae84 2204 
node-babel-plugin-transform-builtin-extend_1.1.2-1.debian.tar.xz
 164160fcd8ccac2366f141d0490ecdacdeeafa36494bac02ad38c2e2c5056f49 4456 
node-babel-plugin-transform-builtin-extend_1.1.2-1_all.deb
 550fdae0891fd9a2a177fc2ff613083c508d5fd44e99b19be6aede7fa8a3b917 9004 
node-babel-plugin-transform-builtin-extend_1.1.2-1_amd64.buildinfo
Files:
 18f094d1bfcfe8a234aaea7f9606 2438 javascript optional 
node-babel-plugin-transform-builtin-extend_1.1.2-1.dsc
 accd4b12920e3672796b02472e624791 3650 javascript optional 
node-babel-plugin-transform-builtin-extend_1.1.2.orig.tar.gz
 69dad647e815968e1e2b3b645d803563 2204 javascript optional 
node-babel-plugin-transform-builtin-extend_1.1.2-1.debian.tar.xz
 5a3a6571ae073a9f1f6e12fb7b23a90e 4456 javascript optional 

Bug#876267: marked as done (ITP: node-compression-webpack-plugin -- Prepare compressed versions of assets)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:56 +
with message-id 
and subject line Bug#876267: fixed in node-compression-webpack-plugin 1.0.0-1
has caused the Debian Bug report #876267,
regarding ITP: node-compression-webpack-plugin -- Prepare compressed versions 
of assets
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.)


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

* Package name: node-compression-webpack-plugin
  Version : 1.0.0
  Upstream Author : Tobias Koppers @sokra
* URL : https://webpack.js.org
* License : Expat
  Programming Lang: JavaScript
  Description : Prepare compressed versions of assets

 This module can be used to prepare compressed versions of assets to serve
 them with Content-Encoding.
 .
 Webpack takes code targeted at node.js and makes it run in the browser.
 Node.js comes with API of its own that is not available in the browsers.
 Webpack exposes this code to programs that are unaware they are running
in a
 browser.
.
 Node.js is an event-based server-side JavaScript engine.

Dependency of gitlab 9.5



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: node-compression-webpack-plugin
Source-Version: 1.0.0-1

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

Debian distribution maintenance software
pp.
Pirate Praveen  (supplier of updated 
node-compression-webpack-plugin 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, 03 Nov 2017 13:45:20 +0530
Source: node-compression-webpack-plugin
Binary: node-compression-webpack-plugin
Architecture: source all
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Pirate Praveen 
Description:
 node-compression-webpack-plugin - Prepare compressed versions of assets
Closes: 876267
Changes:
 node-compression-webpack-plugin (1.0.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #876267)
Checksums-Sha1:
 4910f38ddf9a1ba382c92495cb99b02aec0808c1 2313 
node-compression-webpack-plugin_1.0.0-1.dsc
 4693329b17160b4f9b768dd76a32f2488e077eca 54055 
node-compression-webpack-plugin_1.0.0.orig.tar.gz
 b2a6420661d946b9b197da4d14161ec804096ea7 2268 
node-compression-webpack-plugin_1.0.0-1.debian.tar.xz
 80085442bc932cad5aef36ac7eb08b7092bb9620 7152 
node-compression-webpack-plugin_1.0.0-1_all.deb
 8583c6888e33b05492029e32b12d86855d979eee 9585 
node-compression-webpack-plugin_1.0.0-1_amd64.buildinfo
Checksums-Sha256:
 358fb5fade95511a6c38b7794312d4b35be873648b373e559b6a6d4a1e279418 2313 
node-compression-webpack-plugin_1.0.0-1.dsc
 038125e5648e603cec7dab4c50df2c67b129da43182229172e0ce7c10c6dbf0c 54055 
node-compression-webpack-plugin_1.0.0.orig.tar.gz
 c692816bf6e8e099d3554893c9e452d5a2f6fa63c247862a6e1d5a6b5a0622c9 2268 
node-compression-webpack-plugin_1.0.0-1.debian.tar.xz
 7f42b562234ab6854cb221e597dd519e345d2cc368e5657aef2cc4dbe33417d5 7152 
node-compression-webpack-plugin_1.0.0-1_all.deb
 b214a5d69d473dabf63253adf22fb7291f7a7508cd7398e7170f2e4fbe7f14d7 9585 
node-compression-webpack-plugin_1.0.0-1_amd64.buildinfo
Files:
 8e37fd39ba055831c822b8c0d3960084 2313 javascript optional 
node-compression-webpack-plugin_1.0.0-1.dsc
 8ae0fd4821950cf15c8590af25ef54da 54055 javascript optional 
node-compression-webpack-plugin_1.0.0.orig.tar.gz
 1863fc3e16da69af26b84562c8c52f86 2268 javascript optional 
node-compression-webpack-plugin_1.0.0-1.debian.tar.xz
 4475313c07f603eb448fbdb8fdf33d48 7152 javascript optional 
node-compression-webpack-plugin_1.0.0-1_all.deb
 16d8af34ee1c8a038e70fc5856538113 9585 javascript optional 
node-compression-webpack-plugin_1.0.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEKnl0ri/BUtd4Z9pKzh+cZ0USwioFAln8NaAACgkQzh+cZ0US

Bug#891895: marked as done (ITP: node-neo-async -- faster replacement for Async)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 10:00:58 +
with message-id 
and subject line Bug#891895: fixed in node-neo-async 2.5.0-1
has caused the Debian Bug report #891895,
regarding ITP: node-neo-async -- faster replacement for Async
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.)


-- 
891895: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891895
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: wnpp
Severity: wishlist
Owner: Pirate Praveen 
X-Debbugs-CC: debian-de...@lists.debian.org
Control: block 843951 by -1

* Package name: node-neo-async
  Version : 2.5.0
  Upstream Author : Suguru Motegi
* URL : https://github.com/suguru03/neo-async
* License : Expat
  Programming Lang: JavaScript
  Description : faster replacement for Async

 Neo-Async is thought to be used as a drop-in replacement for Async, it
almosti
 fully covers its functionality and runs faster.
 .
 Async is a utility module which provides straight-forward, powerful
 functions for working with asynchronous Javascript. Although originally
 designed for use with Node, it can also be used directly in the
 browser.
 .
 Node.js is an event-based server-side JavaScript engine.

Last upstream update of node-async was in 2014-05-08 and it is still at
version 0.8 where as current upstream release is 2.6.0. Since its build
dependency chain has google closure compiler (for lodash-es), it is hard
to update to newer releases. Some modules like webpack and
compression-webpack-plugin, which were depending on async has switched
to neo-async already.



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: node-neo-async
Source-Version: 2.5.0-1

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

Debian distribution maintenance software
pp.
Pirate Praveen  (supplier of updated node-neo-async 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, 02 Mar 2018 11:40:51 +0530
Source: node-neo-async
Binary: node-neo-async
Architecture: source all
Version: 2.5.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Pirate Praveen 
Description:
 node-neo-async - faster replacement for Async
Closes: 891895
Changes:
 node-neo-async (2.5.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #891895)
Checksums-Sha1:
 c6d47c44413d0daf949295f36c8ff54bc451c363 2124 node-neo-async_2.5.0-1.dsc
 9bdcff8ddc56737d1ebbf55ac861638ddd29557c 161297 
node-neo-async_2.5.0.orig.tar.gz
 0d2bc8f1eda201d662e66e7bafa11843cd644580 3152 
node-neo-async_2.5.0-1.debian.tar.xz
 63e0a1bf63136ddbd5a5924cc378234e4e113d45 52348 node-neo-async_2.5.0-1_all.deb
 2fd1aa4074143e17dbf7d546bb1746e0299bacf3 12430 
node-neo-async_2.5.0-1_amd64.buildinfo
Checksums-Sha256:
 0151a483138418315804ef3b9392d26287b95540d3b3b926e0ac1f53e077f3aa 2124 
node-neo-async_2.5.0-1.dsc
 1f0fddb99f29aa3b6f3b13a195b9d305bb27cd970d58a28c9eaeb9e1e2d01f22 161297 
node-neo-async_2.5.0.orig.tar.gz
 09091b5b72d5d7b9c0ad31e4165cf5e3cb978efc4bd7f0f447246efcd060f365 3152 
node-neo-async_2.5.0-1.debian.tar.xz
 483712eec552a699f306d50052ac9f4539b0be84d5495569db856a06fa948112 52348 
node-neo-async_2.5.0-1_all.deb
 93cbbbe117b16f5b250011b6d4d1c3275892f72004e5fa77cd0f6b7c38a875c7 12430 
node-neo-async_2.5.0-1_amd64.buildinfo
Files:
 21fa5e6c12f30b343d4d65d9d3607926 2124 javascript optional 
node-neo-async_2.5.0-1.dsc
 9db3f3d897c74e262dbf8cf63e4b1373 161297 javascript optional 
node-neo-async_2.5.0.orig.tar.gz
 5d8319db512f7077be28c82fb54d94d7 3152 javascript optional 
node-neo-async_2.5.0-1.debian.tar.xz
 531f7de92080edf063ab82e9b0c96a36 52348 javascript optional 
node-neo-async_2.5.0-1_all.deb
 af3decafa518c429e95947972da80ea2 12430 javascript optional 
node-neo-async_2.5.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEKnl0ri/BUtd4Z9pKzh+cZ0USwioFAlqY9HkACgkQzh+cZ0US
wiridhAApAcx/lNIEbqQrc6eFREGxB2TjKtLduxqnOI0rQkVgR/uhFzyCaffTZEC

Bug#910917: RFA: apache2 -- Apache HTTP Server

2018-11-20 Thread Xavier
Hi all,

I'm DD, Apache user and maintainer of libapache2-mod-fcgid. I can't
maintain this package alone since I'm not enough experimented in C but I
can help (review, tests and upload if needed). So what is the best,
join-request to apache-team on salsa for Jason, Mosab and me?

Cheers,
Xavier



Bug#899058: Raspbian build?

2018-11-20 Thread Daniel Pocock


Has anybody tried to build the package for Raspbian on the Raspberry Pi already?

Are all the dependencies already available there?



Bug#898202: Current state

2018-11-20 Thread kaliko
Hi Scott

On Mon, 19 Nov 2018 Scott Hardin  wrote:
> I'm still working on this. Sorry for lack of updates! I'm a bit busy at 
> work this week, but I would love to show what I've got so far this 
> weekend if you have any advice to offer.

Have you published you work somewhere?

I believe this package should be maintained in "Debian Multimedia Team".

Cheers
k



Bug#913884: marked as done (ITP: super-save-el -- auto-save buffers, based on your activity)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 08:11:59 +
with message-id 
and subject line Bug#913884: fixed in super-save-el 0.3.0-1
has caused the Debian Bug report #913884,
regarding ITP: super-save-el -- auto-save buffers, based on your activity
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.)


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

* Package name: super-save-el
  Version : 0.3.0
  Upstream Author : Bozhidar Batsov 
* URL or Web page : https://github.com/bbatsov/super-save
* License : GPL-3+
  Programming Lang: Emacs Lisp
  Description : auto-save buffers, based on your activity

This package provides Emacs mode that auto-saves your buffers, when
certain events happen - e.g. you switch between buffers, an Emacs frame
loses focus, etc. One can think of it as both something that augments
and replaces the standard auto-save-mode.
--- End Message ---
--- Begin Message ---
Source: super-save-el
Source-Version: 0.3.0-1

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

Debian distribution maintenance software
pp.
Lev Lamberov  (supplier of updated super-save-el 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, 16 Nov 2018 17:02:13 +0500
Source: super-save-el
Binary: elpa-super-save
Architecture: source all
Version: 0.3.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Emacsen team 
Changed-By: Lev Lamberov 
Description:
 elpa-super-save - auto-save buffers, based on your activity
Closes: 913884
Changes:
 super-save-el (0.3.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #913884)
Checksums-Sha1:
 b65f4f332e1bab8950ffcf0994b56a1c7ba9d457 1957 super-save-el_0.3.0-1.dsc
 808dd070a70f7fd1e2d35cfbd5ab829deecb677e 4014 super-save-el_0.3.0.orig.tar.gz
 09b95ee348f7103229a3562d044a84e05a492be1 2000 
super-save-el_0.3.0-1.debian.tar.xz
 778901eb56dec37fa89d67e5ad760a57699374ba 7436 elpa-super-save_0.3.0-1_all.deb
 7038646805fd6d8ef3c5504269f21cd8080bc3da 7579 
super-save-el_0.3.0-1_amd64.buildinfo
Checksums-Sha256:
 9d90c4b9bf258fed7f0fb7914d9b17015ba901a51da3d1266c7a7745fd509732 1957 
super-save-el_0.3.0-1.dsc
 b7d8ce9b56a599691cb9f838e7e6c6cd28176ccf43d3c8bdeb1b15122c6c3c0c 4014 
super-save-el_0.3.0.orig.tar.gz
 efcb428cfd9c0c55efe97e12a221974b235841297384973b9f8184fca4253232 2000 
super-save-el_0.3.0-1.debian.tar.xz
 1a121cc3f74a3f150e2ae0e89dd0fb6650044f264d5de0b58eac30d2a29d7807 7436 
elpa-super-save_0.3.0-1_all.deb
 c973f3cbaea85cde4449d1b4ab34af34830edc20d695945a5249ceb9877928f8 7579 
super-save-el_0.3.0-1_amd64.buildinfo
Files:
 5678bb638783790e79a90d0135986d9b 1957 lisp optional super-save-el_0.3.0-1.dsc
 c2ffb7aa747a23526e45aea91eb2218f 4014 lisp optional 
super-save-el_0.3.0.orig.tar.gz
 30511160bf59fec9f76534fa43351f3e 2000 lisp optional 
super-save-el_0.3.0-1.debian.tar.xz
 02e82b8c3e9ed8fe49127a958b670641 7436 lisp optional 
elpa-super-save_0.3.0-1_all.deb
 216bbaf83b341bc7da37d51fcc90aa13 7579 lisp optional 
super-save-el_0.3.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE3mumcdV9mwCc9oZQXudu4gIW0qUFAlvuugwACgkQXudu4gIW
0qXgnw//eX5Gx901T9bePQwFjZloPzR7J2H8sAtAX21SEo1fGn01vIZJtA0Q+Bnk
BpKN5F0jhl4757oSn7JJXdslRwfxKPiYlqdzvTj19FhpvhI1dD18n96Lw/EoMsnA
KxrvyZsQpuXeDeOxnCsCI9HEYjlwstHFmSjkICzmaa2zBvfvQ5I/adx6y//x/F+T
CTNpAEq5b8ETsJJ9akuUpHcSsC1HUi7K2efTRVI2nTkcONh2BB3AGPPY3/uRxQlt
EhCzPcJj1A1RTfsUDvxLKwqTB35qWVNnnmbmf7lJwrBL6APFULB10k2MrsUoHTvD
KKIUl8ocBeYcJW5R0hbJJ/UKjtDDYocP0MZ9JkPpCk8H3xS/H5g+TJsIgSRM/xER
ZtncbFgM0kmadwTGoxvB0i9cIBjEYTKFbbX3X4Uf/3WGq/AiiaziJOSGm0VpESJk
f//mb3vMbqD1xAvHUQ1siJLXZO9Dw280P0OQiVSbb8QNrfgWYW1nDwTpYqNI495r
CxkoT7nSgVSfRGsOSiyhgyma5E41mkyUjb+gsDvGvQoLBA5z8DvERed+k8xdCMDY
h9QDAbM55DvqfRopmp309RMPiv5WPuoV2Renbcmo0IqtuiAApZUBER5wGZn84jmk
tsBZ8zS5nFr10YCv+sdSudReRpVuwU/FZ34enOALQUvZg7Yp0z0=
=Qrzq
-END PGP SIGNATURE End Message ---


Bug#912754: marked as done (ITP: scdoc - Small man page generator)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 08:11:52 +
with message-id 
and subject line Bug#912754: fixed in scdoc 1.5.2-1
has caused the Debian Bug report #912754,
regarding ITP: scdoc - Small man page generator
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.)


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

* Package name: scdoc
  Version : 1.5.2
  Upstream Author : Drew DeVault 
* URL : https://git.sr.ht/~sircmpwn/scdoc
* License : MIT
  Programming Lang: C
  Description : Small man page generator

scdoc is a simple man page generator written for POSIX systems written
in C99. It is used to build the manpages of swaywm.
--- End Message ---
--- Begin Message ---
Source: scdoc
Source-Version: 1.5.2-1

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

Debian distribution maintenance software
pp.
Birger Schacht  (supplier of updated scdoc 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, 03 Nov 2018 10:20:30 +0100
Source: scdoc
Binary: scdoc
Architecture: source amd64
Version: 1.5.2-1
Distribution: unstable
Urgency: low
Maintainer: Birger Schacht 
Changed-By: Birger Schacht 
Description:
 scdoc  - Simple man page generator written for POSIX systems written in C9
Closes: 912754
Changes:
 scdoc (1.5.2-1) unstable; urgency=low
 .
   * Initial release. (Closes: #912754)
Checksums-Sha1:
 1d7d09275cb02f2b0b58cedcd2939ae146183dfa 1711 scdoc_1.5.2-1.dsc
 177e35f747c095588c591bbb2c436d2e1bc0a4f4 10542 scdoc_1.5.2.orig.tar.gz
 376f767ae235f4fda170b0d25ffef5892f332092 2260 scdoc_1.5.2-1.debian.tar.xz
 222bd50e50fdaf4b388bd2ea728f0bc8b21e22e8 23388 scdoc-dbgsym_1.5.2-1_amd64.deb
 1fb61249e263729b0d1d6b9cb2a1f2501ac6a14e 5927 scdoc_1.5.2-1_amd64.buildinfo
 00a54618dab5e1d30ad067c624d449f1c6a571cc 12504 scdoc_1.5.2-1_amd64.deb
Checksums-Sha256:
 33a1806d5c3db4b01289aae43faae88de283df80f27844cdd96c4003fd0289cc 1711 
scdoc_1.5.2-1.dsc
 86591de3741bea5443e7fbc11ff9dc22da90621105b06be524422efd5dec3a29 10542 
scdoc_1.5.2.orig.tar.gz
 f13058b0c35801b3f8652b7c3b3cc44f5cc2c3468a980119c0eaf0f2d57a9068 2260 
scdoc_1.5.2-1.debian.tar.xz
 98c6bc4309d1539703cb2b4aa92b0acdf4ffb47f38ff5e055073060b2e57711b 23388 
scdoc-dbgsym_1.5.2-1_amd64.deb
 4b8387aa63f121485fc87606068252f2af3d4f4bc75888705e2ebbe5d37fee92 5927 
scdoc_1.5.2-1_amd64.buildinfo
 a7ac84130e7684cc56c7bc13c6f704677a446b83b172cc8538d61dbd63be585c 12504 
scdoc_1.5.2-1_amd64.deb
Files:
 130f3e2834b3a77dce27c3a8d5b33d68 1711 text optional scdoc_1.5.2-1.dsc
 5f6a8e99bef38785f1aa18a418f6e643 10542 text optional scdoc_1.5.2.orig.tar.gz
 df1982ee4f4742426d7c598c939fa4e9 2260 text optional scdoc_1.5.2-1.debian.tar.xz
 e180fb5f72ce65e76ef56a26bfc8f35e 23388 debug optional 
scdoc-dbgsym_1.5.2-1_amd64.deb
 81b0cf4d3e5ff17dd7522b32fa5f1646 5927 text optional 
scdoc_1.5.2-1_amd64.buildinfo
 d69ba155e0ea359f25ee78e9a8a3ffc7 12504 text optional scdoc_1.5.2-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEEhnHVzDbtdH7ktKj4SBLY3qgmEeYFAlvpdHoTHGthY3Rpb25A
ZGViaWFuLm9yZwAKCRBIEtjeqCYR5sDyD/9wzk8rEIN7xvyrQ90oGSBdynabVEw2
syugd59YvIrS+nAg/zrx+7T2vHLm6pbE/BeOgPLGLW/p/Ud/SXQOfRkeeCSFOVZu
zk6vjo+ZGf4t8sLO1KooPHyP8qISKlBSVvaeGLgAcR7mNvcAsUv8hMwQNmUj5k5+
PTF0Rr7U8FUdqcz9uWd2wMVNVu5742Eb+NGByB6CLp9YWwX7voUoN0j1OQyIskQo
FDhaRnQUD/EaPL72faZ7wiosFUVGWtSr52pJbiVgZdZncUTteDiKvghSybta7hkR
7SrSYU37wK6qKemhLoRy5/wDbSG0VwCyEm8f5L2nfh/VjP6xLd3R6yTLb2qJ1YPG
a3t3nFy0J3q1rifToZS+fhKPHWqgM364zgjm53JReyJG+EYq8zF8ubBhJBwq/Bja
yPE6os/DdpAXuhFHvZ6b2IoGjOeXXEYz8t4QK8bpgbgTgXeqMZITx2mqZa6imcm7
64SniROSAQZk+t2I2UeTkkep0NMfGrZA3aV4CsIgO+0t935OPMixBCco4Sc5ioc4
BDHszZL4uzeWbUhBtkgfTazSQONaIDbJwN8OzW48bDnuJQze9aTtOmY+5Qw4QAbu
JiPK68tcnfDbSugYkhQiH97PsjB/Rurd+PPhTwlYLn64RdXsRRPBlU62XwkXwtCw
grACJs+Bv12/rw==
=g6/X
-END PGP SIGNATURE End Message ---


Bug#913990: marked as done (ITP: ruby-js-regex -- Converts Ruby regexes to JavaScript regexes)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 08:11:29 +
with message-id 
and subject line Bug#913990: fixed in ruby-js-regex 3.1.1-1
has caused the Debian Bug report #913990,
regarding ITP: ruby-js-regex -- Converts Ruby regexes to JavaScript regexes
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.)


-- 
913990: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=913990
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
package: wnpp
severity: wishlist
owner: Pirate Praveen 

from rubygems.org/gems/js_regex

dependency of gitlab 11.3.9













signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: ruby-js-regex
Source-Version: 3.1.1-1

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

Debian distribution maintenance software
pp.
Pirate Praveen  (supplier of updated ruby-js-regex 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 Nov 2018 10:33:32 +0530
Source: ruby-js-regex
Binary: ruby-js-regex
Architecture: source all
Version: 3.1.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Pirate Praveen 
Description:
 ruby-js-regex - Converts Ruby regexes to JavaScript regexes
Closes: 913990
Changes:
 ruby-js-regex (3.1.1-1) unstable; urgency=medium
 .
   * Initial release (Closes: #913990)
Checksums-Sha1:
 59a49553724230159662455c922f307cf9fd11ed 2128 ruby-js-regex_3.1.1-1.dsc
 48af9f158876acdf8dd720837041eed0424eb49f 8877 ruby-js-regex_3.1.1.orig.tar.gz
 b90e5f2b06e9b7a4a0b72e99091d97de1d41 1876 
ruby-js-regex_3.1.1-1.debian.tar.xz
 c16ca77a375310f9cb09eea17128dec0cb212486 10888 ruby-js-regex_3.1.1-1_all.deb
 69c090a1c8b896ae4ae3e96004a48eacae5dcfca 8970 
ruby-js-regex_3.1.1-1_amd64.buildinfo
Checksums-Sha256:
 54f533e9f4a9729af9254e6ef3e3d89d4139e3ef6c0515f87ccb4f807837dbfd 2128 
ruby-js-regex_3.1.1-1.dsc
 548cdf7ea73f9c9fc553c807df0f3621336fb5f057e82308ca3fd49b563aab65 8877 
ruby-js-regex_3.1.1.orig.tar.gz
 a544e9a7bced4add29f183313a01b8997d7bbe90fa5d8ce357ab5c7bc25597cc 1876 
ruby-js-regex_3.1.1-1.debian.tar.xz
 d08f0c7037e2cf05686db23ad204c9345543f561edc3ac286757964b85d373bc 10888 
ruby-js-regex_3.1.1-1_all.deb
 88c51098ace11de502936b17e7a615447a46d832a1b1a21777a2aff1ef114174 8970 
ruby-js-regex_3.1.1-1_amd64.buildinfo
Files:
 45faa1892b3bda1c2197dfc3c939c73f 2128 ruby optional ruby-js-regex_3.1.1-1.dsc
 25b7a6e402b6b772aa79de23bfca3be2 8877 ruby optional 
ruby-js-regex_3.1.1.orig.tar.gz
 164cb2a73877b5ef0e823795bf3c8a27 1876 ruby optional 
ruby-js-regex_3.1.1-1.debian.tar.xz
 866f0d636b5342e424a40f0128371665 10888 ruby optional 
ruby-js-regex_3.1.1-1_all.deb
 054ba4331d1781e4a95f3410d13cbab2 8970 ruby optional 
ruby-js-regex_3.1.1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE/OFtr184QaN6dPMgC3aSB2Kmt4UFAlvw9FcACgkQC3aSB2Km
t4W2nA//fmzYyhhFC40zocWfSqnhN2op+UoEXJWrj940U/gA2AlrOzkrRhby91zW
t3T8/cAJLbXVGo0fEkb7StZIAE/nlMyJx7ECs+x0QYgcfWt6UrDOd47LsnnBEd9l
Mr6fcw5LZW5wtS8Ey1sjCk1QeIul8zmoyViuHtzTXyiEukzxwHUY0Vb4AgnBJlLE
/L2GFO3WdyE1xRMv9Meg2iGQvjdNhqJc+RxDVgszWx9iJidg/2Hqkhn1GJM0pTNt
4ABfzKzynDSmcuR9DhO2/V8PGP7M5XJCjkfHoqr8lpbw7AqyXeVR/EL3yk+lWHqO
djEqRsTimpcHjgnnh1jjfb5C0RddyITZvyksbCZRJotCEuIONL3DJsoJuEkdnvUG
JH12WExwnH0TqhyCL2LEX6651i/x7Hxm6Md+vNeQGTs9+joq5Q4EfkSGAU5QEyhh
7gXDtOq+rXZgOkgqsRyosmXmWTi49qk7z7q7GqaQ2YiV2IxwAA/gANv+pGaMBfke
Rk1MS0z7GOnK/Hz0n4+Kk8dmpmygustVKPghp4chxOAPJjPKBkoZytgx74vbpEWO
MBk02NFQI1T19GdROXA5eBPshADjnzWPnJO7HIJZXtgDa9eCiD4mcBDstddghk0q
jMBgBOehVsC1V3CA+r4GbFHW/71gWS4QiHciZL8HbLspCoIjjNw=
=M9J2
-END PGP SIGNATURE End Message ---


Bug#913872: marked as done (ITP: ruby-regexp-parser -- Scanner, lexer, parser for ruby's regular expressions)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 08:11:37 +
with message-id 
and subject line Bug#913872: fixed in ruby-regexp-parser 1.2.0-1
has caused the Debian Bug report #913872,
regarding ITP: ruby-regexp-parser -- Scanner, lexer, parser for ruby's regular 
expressions
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.)


-- 
913872: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=913872
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
package: wnpp
severity: wishlist
owner: Pirate Praveen 

from rubygems.org/gems/regexp_parser

dependency of gitlab 11.3.9









signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: ruby-regexp-parser
Source-Version: 1.2.0-1

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

Debian distribution maintenance software
pp.
Pirate Praveen  (supplier of updated ruby-regexp-parser 
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 Nov 2018 10:08:28 +0530
Source: ruby-regexp-parser
Binary: ruby-regexp-parser
Architecture: source all
Version: 1.2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 

Changed-By: Pirate Praveen 
Description:
 ruby-regexp-parser - Scanner, lexer, parser for ruby's regular expressions
Closes: 913872
Changes:
 ruby-regexp-parser (1.2.0-1) unstable; urgency=medium
 .
   * Initial release (Closes: #913872)
Checksums-Sha1:
 3dd08b1ea217c4111564dd3b01d9bf2025c8e145 2125 ruby-regexp-parser_1.2.0-1.dsc
 2fccb541c80ff97ab0913d645618e5f2e19dfb40 93175 
ruby-regexp-parser_1.2.0.orig.tar.gz
 842171d395c09d0e3b5f0ee3fdf519cf6a9b2c38 2256 
ruby-regexp-parser_1.2.0-1.debian.tar.xz
 3bbb3326c608498580576a02bb59eeada92d5c9c 52132 
ruby-regexp-parser_1.2.0-1_all.deb
 74f5678012b8352ee03cb9d0b894ff4a1c96d5a2 8954 
ruby-regexp-parser_1.2.0-1_amd64.buildinfo
Checksums-Sha256:
 28b9a279b35c69f47fb0f60da3207fc89f446c031c17ecb0955c0423467c8b57 2125 
ruby-regexp-parser_1.2.0-1.dsc
 e66219679fddf51a0710c307d0119c133b752f2632b1f9fbc8c08183868bc7dc 93175 
ruby-regexp-parser_1.2.0.orig.tar.gz
 99f9d8cca9a02242c5a8cd1b7b2e59b7ceca82fd171dc248c42552f08d888353 2256 
ruby-regexp-parser_1.2.0-1.debian.tar.xz
 73fcee8e2b123da060f88ee8e9465f72746a13f085018f3b5de066ddf2882ef2 52132 
ruby-regexp-parser_1.2.0-1_all.deb
 6c8d4904754f45cb5dc2da73e3d6aaa7b175b4664094052bd268b4a92e8869ea 8954 
ruby-regexp-parser_1.2.0-1_amd64.buildinfo
Files:
 3dac1c8f830dcdb10162b6007c258bff 2125 ruby optional 
ruby-regexp-parser_1.2.0-1.dsc
 d69285e32912bdd9d78fc0a6f51603b7 93175 ruby optional 
ruby-regexp-parser_1.2.0.orig.tar.gz
 ca52fdad44a81668c1ef678d81604753 2256 ruby optional 
ruby-regexp-parser_1.2.0-1.debian.tar.xz
 f63a5c65cfedc9089c4108739c65bc97 52132 ruby optional 
ruby-regexp-parser_1.2.0-1_all.deb
 3694f27093eb24731f0abb942c9b0742 8954 ruby optional 
ruby-regexp-parser_1.2.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE/OFtr184QaN6dPMgC3aSB2Kmt4UFAlvw73AACgkQC3aSB2Km
t4UVXA//eJQjA7pe9K9uT8gCh96+bTegAFhpAz21XeBBQSDlrb6brlQjrH4kSb1s
t+19D4BIJkvmJZxnqb3VzW3h2+OXGtNwjcBPDa7ck4U3KWKKrSyGY4YutX99urR7
UOwzXoB5ZVwkf9wRBtWkZA0vI1NpYrNJ8Y09Xwmze/rtv1AJ+lqqj47i4QmEUiQn
OS+1Uqk+CRVHY26WeIBxR0XbcgNvPSYkB+3M+VWPHYPwjyZiL1bKSqLD9AyKhj5W
KsG7LFe7mfGyxWFDHwZQ/LhnkMAjT18YSCIhGYI7gXY662MfRRzQE9sSvRItP5x+
j9cHYhknA3JekHTlI7jWKK8CUWTtK11MshUvViZV9UuQM4RCDVZa+oF/j/CinNOG
Zd/wdpiJDCozCqjL5Eb6Aifo7UxAIroKh1K/UxcYZtvzAwvFQXlqrBN+G5VC/C2z
pUR68WEvBTsOzRQR0P/Nw86L5f9Qp85VF1BwkqfIaOMoqFd5DUlcUaWu2vsFffUo
zNkp500FKfUI/95hiMt8glJmpr477rBZTZcwidPE9ubYMu0MMjVHA54yBzCh38G2
toZlwBB1k0fqEEMae6NwZTwmQ2cM5YHt6541kfbrWRnuen9WADp0OhualAe+CUlX
TJJ+xgDFc+5WfBxkwoGMGp++L2GmBEUihvmEDHV5I/a4dr5X2aI=
=7Zyl
-END PGP SIGNATURE End Message ---


Bug#908215: marked as done (ITP: lagan -- highly parametrizable pairwise global genome sequence aligner)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 08:10:47 +
with message-id 
and subject line Bug#908215: fixed in lagan 2.0-2
has caused the Debian Bug report #908215,
regarding ITP: lagan -- highly parametrizable pairwise global genome sequence 
aligner
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.)


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

* Package name: lagan
* URL : http://lagan.stanford.edu/lagan_web/index.shtml
* License : GPL
  Programming Lang: C++
  Description : highly parametrizable pairwise global genome sequence 
aligner

The package is team maintained on salsa.d.o/med-team/lagan.
--- End Message ---
--- Begin Message ---
Source: lagan
Source-Version: 2.0-2

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

Debian distribution maintenance software
pp.
Steffen Moeller  (supplier of updated lagan 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, 07 Sep 2018 14:10:07 +0200
Source: lagan
Binary: lagan
Architecture: source amd64
Version: 2.0-2
Distribution: experimental
Urgency: low
Maintainer: Debian Med Packaging Team 

Changed-By: Steffen Moeller 
Description:
 lagan  - highly parametrizable pairwise global genome sequence aligner
Closes: 908215
Changes:
 lagan (2.0-2) experimental; urgency=low
 .
   * Initial release to experimental to invite peer review (Closes: #908215).
   * Added man page for mlagan, also added *.pl scripts to /usr/bin
   * Added embarrassingly simple test routine to run "mlagan -h"
   * Solved compile time "ambiguity" error
   * d/control:
 - Bumped policy to 4.2.1
 - Adjusted URLs to repository
   * d/changelog: updated GSF address
   * lintian overrides for .pl endings
Checksums-Sha1:
 f1399eb20a5744bc40ae979e47cc1f9b4fc28912 1952 lagan_2.0-2.dsc
 2417bec99ff59541287ad56fdfe3abb609323949 192945 lagan_2.0.orig.tar.gz
 876a6126a4996be35a1f0ac4f7c50bcae3965f02 5344 lagan_2.0-2.debian.tar.xz
 bc377a3dc79f311a37fa047c42a0b66646dba8ce 24404 lagan-dbgsym_2.0-2_amd64.deb
 ba7f6d6c6c9200c690e8a7d5a0085ea82c9bc772 6257 lagan_2.0-2_amd64.buildinfo
 d820d0a07654916ef5d50fb8afb8521146b59c27 180780 lagan_2.0-2_amd64.deb
Checksums-Sha256:
 041a1013bfabd282ae099d1bbf24d06a038f036823f8ba96a110dfdaf8705966 1952 
lagan_2.0-2.dsc
 9e3c27d0fd7a3f3448035ea51996a50e314b139942d9313858c3e4678aae1281 192945 
lagan_2.0.orig.tar.gz
 f405738390a2403a5d0c0aee04040851076bb1774d558a1eea7a6be773023f24 5344 
lagan_2.0-2.debian.tar.xz
 be3e0b0b4a13c0f5b91f3bb2551834257d788a2820f1ebf2b06647f8a2e7002e 24404 
lagan-dbgsym_2.0-2_amd64.deb
 e94c4b847d4fecb68a3614a594404f42f07fcb8bc7bf2192fc0134d2d63b2821 6257 
lagan_2.0-2_amd64.buildinfo
 ee8158719a76251528d584c90220e9a883be164e32746440ab6a5e5a2fe58356 180780 
lagan_2.0-2_amd64.deb
Files:
 7f420e208a7d289583f8b83d14154724 1952 science optional lagan_2.0-2.dsc
 7027ba63a2a5115871b85e205aa36bb7 192945 science optional lagan_2.0.orig.tar.gz
 6a141818f3a8cf70749463f54926d1ef 5344 science optional 
lagan_2.0-2.debian.tar.xz
 8490f3340895e96deab7fed8bd9b1da0 24404 debug optional 
lagan-dbgsym_2.0-2_amd64.deb
 56255a4e03bb7111fde3cf9de5dead7b 6257 science optional 
lagan_2.0-2_amd64.buildinfo
 a76b3acf52cf33844d305f7d349e288d 180780 science optional lagan_2.0-2_amd64.deb

-BEGIN PGP SIGNATURE-

iQJHBAEBCAAxFiEEhMGXeonn7+0+XKYuL9i+2sAg7tEFAluSerQTHG1vZWxsZXJA
ZGViaWFuLm9yZwAKCRAv2L7awCDu0TmlD/wKh2buQG4FkU/Ilmp2ZNE+TihfmHjA
L0gC0GwmWFoZDxSsSe6uuYH2frfQF5LVQx17kWc8Rj2cCkuDZkhhZLa//QYSYwRX
UgwTrfSdhh0C7r1OtPk4TcSXLfnHgwtOH38+IrqZJfpioqPl2OYONZpWGzCnM/oL
z4kx5CeEe44K/mf85El2WQhlrs8luNkGNDaGi1OkbisiS/2pMR8UoAbO4Na546ZJ
QC1A2g7eh73/LEGFb3GZyzvJonzKB5KS1TRQjs5dxGk4fHZiR7yngS9qXSC1F9JV
DyVeXiVXYBMIxNRI4fF3aTYlW1GLIms8crnvpu0ryF0Bbhn9xq+wvI5GKJB7T3Do
zoC/3lgWVwP4vmeZa2kpke+D81eUoF7OezXk3wUOahku0EFSF5whpGKV/PaGF0oE
5s4jJqLpnbPwuC0TT3lWpAllEzLHsQBNuCG0LfiBUPsaWp57VaTEUg2z+qbwab1+

Bug#907122: marked as done (ITP: poolcounter -- network daemon which provides mutex-like functionality)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 08:11:22 +
with message-id 
and subject line Bug#907122: fixed in poolcounter 1.1.1-1
has caused the Debian Bug report #907122,
regarding ITP: poolcounter -- network daemon which provides mutex-like 
functionality
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.)


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

* Package name: poolcounter
  Version : 1.0.0
  Upstream Author : Platonides 
* URL : https://wikitech.wikimedia.org/wiki/PoolCounter
* License : GPL-3.0-or-later
  Programming Lang: C
  Description : network daemon which provides mutex-like functionality

PoolCounter is a network daemon which provides mutex-like functionality,
with a limited wait queue length. If too many servers try to do the same
thing at the same time, the wait queue overflows and some configurable
action might be taken by subsequent clients, such as displaying an error
message or using a stale cache entry.

It was created to avoid massive wastage of CPU due to parallel parsing when
the cache of a popular article is invalidated (the "Michael Jackson 
problem"[1]).

I'm packaging poolcounter so it can be used with MediaWiki.

[1] https://blog.wikimedia.org/2016/04/22/prince-death-wikipedia/
--- End Message ---
--- Begin Message ---
Source: poolcounter
Source-Version: 1.1.1-1

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

Debian distribution maintenance software
pp.
Kunal Mehta  (supplier of updated poolcounter 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, 02 Oct 2018 20:32:28 -0700
Source: poolcounter
Binary: poolcounter
Architecture: source amd64
Version: 1.1.1-1
Distribution: unstable
Urgency: medium
Maintainer: MediaWiki packaging team 
Changed-By: Kunal Mehta 
Description:
 poolcounter - network daemon which provides mutex-like functionality
Closes: 907122
Changes:
 poolcounter (1.1.1-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #907122)
Checksums-Sha1:
 d2d67df98d3ee6854ace332e829b371d82132898 1878 poolcounter_1.1.1-1.dsc
 5ff1d764b11d3c933b71ec94b3cb074257ab0595 26856 poolcounter_1.1.1.orig.tar.xz
 06d9e9426eac8c3839307a03ac5609094c8f8c0c 2660 poolcounter_1.1.1-1.debian.tar.xz
 d170454706c7d43749335b58b32445e237807e5a 3196 
poolcounter-dbgsym_1.1.1-1_amd64.deb
 6c3c8d763d5e7bf872bdaebc767cfb1050a17ccd 6732 
poolcounter_1.1.1-1_amd64.buildinfo
 18c12073c589202f98344428ec16dca7ed37d8bd 11816 poolcounter_1.1.1-1_amd64.deb
Checksums-Sha256:
 d3a3f776c4dd5c6e9d9e1c182730efdcc4a8b6bb81fa6b1a7a2a77663cc25e79 1878 
poolcounter_1.1.1-1.dsc
 3e700ed3649b4b8c4c670f1a5fbc543cde6d5bcd7cd1be7835ed0609c817200c 26856 
poolcounter_1.1.1.orig.tar.xz
 264c21bf3838b7dbcc78bbb22460661a20b0980bda52f6718cf9ca1ea14f95c8 2660 
poolcounter_1.1.1-1.debian.tar.xz
 0e545ea237b98b6070ddc88f6d1ecd233ef62dcfdf3a93f5022cba517302bec9 3196 
poolcounter-dbgsym_1.1.1-1_amd64.deb
 8690ab9863d827b2c8d39071b03a20620a17a5fa406375391452551a121560bb 6732 
poolcounter_1.1.1-1_amd64.buildinfo
 94b83e83fe42b3104d478c45520c811deca184a42b24fe8e5dbe6def7656b3b7 11816 
poolcounter_1.1.1-1_amd64.deb
Files:
 b48bd9eb06d2c0776e829bb628ccd164 1878 web optional poolcounter_1.1.1-1.dsc
 785d4cb6df84d51deb00d4824d1673f0 26856 web optional 
poolcounter_1.1.1.orig.tar.xz
 cba2e32969f329c3253d256e93564593 2660 web optional 
poolcounter_1.1.1-1.debian.tar.xz
 b9da45b0854451248bedcc53f8a8b8a7 3196 debug optional 
poolcounter-dbgsym_1.1.1-1_amd64.deb
 0ec225fcd16bc43ab2a62648003fb210 6732 web optional 
poolcounter_1.1.1-1_amd64.buildinfo
 fe986a3896e501bde7b810fa2016e127 11816 web optional 
poolcounter_1.1.1-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEE+h6fmkHn9DUCyl1jUvyOe+23/KIFAlu0R0ETHGxlZ29rdG1A
ZGViaWFuLm9yZwAKCRBS/I577bf8oqFIEACdnYQryZyUx8o5kzFfZYWdxd9/9IDC
9Nyapr5hGBtnJfM8uXxSyvhn4+YxG2zMzs5vq7iORRqNQEUdebhKwFz8Idh6RKB2

Processed: retitle 914117 to ITP: golang-github-mendersoftware-scopestack -- Scopestack package for Golang

2018-11-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 914117 ITP: golang-github-mendersoftware-scopestack -- Scopestack 
> package for Golang
Bug #914117 [wnpp] ITP: golang-github-mendersoftware-scopestack --
Changed Bug title to 'ITP: golang-github-mendersoftware-scopestack -- 
Scopestack package for Golang' from 'ITP: 
golang-github-mendersoftware-scopestack --'.
> thanks
Stopping processing here.

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



Bug#913932: marked as done (ITP: helpful-el -- better *help* buffer)

2018-11-20 Thread Debian Bug Tracking System
Your message dated Tue, 20 Nov 2018 08:10:33 +
with message-id 
and subject line Bug#913932: fixed in helpful-el 0.15-1
has caused the Debian Bug report #913932,
regarding ITP: helpful-el -- better *help* buffer
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.)


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

* Package name: helpful-el
  Version : 0.15
  Upstream Author : Wilfred Hughes 
* URL or Web page : https://github.com/Wilfred/helpful
* License : GPL-3+
  Programming Lang: Emacs Lisp
  Description : better *help* buffer

Helpful is a replacement for *help* buffers that provides much more
contextual information.

Helpful features view of source code, callers, interactive functions,
keymaps, aliases. It provides prettier docstrings, symbol properties
displaying. Also it supports trace, debug or disassemble functions from
inside of helpful itself.
--- End Message ---
--- Begin Message ---
Source: helpful-el
Source-Version: 0.15-1

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

Debian distribution maintenance software
pp.
Lev Lamberov  (supplier of updated helpful-el 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 Nov 2018 13:47:43 +0500
Source: helpful-el
Binary: elpa-helpful
Architecture: source all
Version: 0.15-1
Distribution: unstable
Urgency: medium
Maintainer: Maintainer: Debian Emacsen team 
Changed-By: Lev Lamberov 
Description:
 elpa-helpful - better *help* buffer
Closes: 913932
Changes:
 helpful-el (0.15-1) unstable; urgency=medium
 .
   * Initial release (Closes: #913932)
Checksums-Sha1:
 5f0971fc5216a6ef92a41b9f8d1ad5119b164fe0 2061 helpful-el_0.15-1.dsc
 10001e5bd320fa01cad44c87ba5400dc9459a19d 321240 helpful-el_0.15.orig.tar.gz
 7b8cad84395d208184aefab5f7994a4a3466ddeb 3580 helpful-el_0.15-1.debian.tar.xz
 e44a836002b75a04a0904e1db33d1adbf850528b 27560 elpa-helpful_0.15-1_all.deb
 77c04d3c8a9bbcb5a36cb7351cbce8dec45d795e 7768 helpful-el_0.15-1_amd64.buildinfo
Checksums-Sha256:
 aff74705cd62c055277516aaf0250b6bf6fdbc2d1ba4bcc8f9cf3bd9afe0b7e8 2061 
helpful-el_0.15-1.dsc
 672680ce5f024aaefc4feaa7a52fc206714648e81d04f420f972b7a3ac1c86c1 321240 
helpful-el_0.15.orig.tar.gz
 8c6cad201e3036be1951a8018b002e5bf11e8a69b3338c10ca1ab7a6a6570288 3580 
helpful-el_0.15-1.debian.tar.xz
 91290bb801e21b2e925dc80ba20aa81fe93edb097d9c0aa86272f0c0502d2635 27560 
elpa-helpful_0.15-1_all.deb
 07109ac5094b409ed435ac17c24234c3caf626d346f59127e234333227b9fa2e 7768 
helpful-el_0.15-1_amd64.buildinfo
Files:
 d41a63f315413eb8ba813d3ec6ce9265 2061 lisp optional helpful-el_0.15-1.dsc
 9dfa61779b46ae321fc6026f38a680df 321240 lisp optional 
helpful-el_0.15.orig.tar.gz
 daee7a0c89429cb8ed9d2b9f68bff43c 3580 lisp optional 
helpful-el_0.15-1.debian.tar.xz
 b9f8dd7c4e70c49fa3a21a3eb91b1684 27560 lisp optional 
elpa-helpful_0.15-1_all.deb
 7a42f681869eadec7d97ba7ce009ccaf 7768 lisp optional 
helpful-el_0.15-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE3mumcdV9mwCc9oZQXudu4gIW0qUFAlvv4ooACgkQXudu4gIW
0qX4Lg//U9iQcKVj7DLgIB0mvYNJqN05tIOubJxjQm320ubDsehxPJgn3eN8hAf5
Y3/nH96JjqTnChqXP7EP5ncGjUX7qzUFTp6mBUIPkQBd24CJsrIX3CrUDZ//w3wt
4e3EGRQ4iR2eu8YTpHfADrqM9pJSF20f2RjkNtOXqHUAhV0VikxhSptSTLriJaB4
/am5L1H6jv1GVE/S3JZn11h+3dXGYlMSzIme69bHf7D1QEosUoFy2OGH2bNrakqO
hsdT2PWwJMoDPrniWUrqwL5eE16pPwbAs97lH9i8Ji1aGI2ASFe8Wm/WREsQPiv5
M7cCiK1ilp0wb82d1hQ+v207tH5NzN7m463+Afqejj/JLzXSSYJj+/GVGbUxX95m
kcOG/Tdl757CAjEkfT9e6l86/k8Yby//c1XrL0aYJkp3K1tRGmG5yxmp4vzMWcsf
OihZ2Zrskb16x1qIb5xo7NOH3EeeAX78u9A9vhgOmS+A3tKBl1FD/ywQxUVsTy48
D6Jdw/6cL7jEIVq7IU/+IC1PKi8we0xbYAf33JrTysRlCY5tK/X4lYzWAtY3loul
qDmep/3kSFTQLxU/lzgSDlxV7oTcGL008IY9485DXake1zKgFNgOo2TBFeH247xt
87+E8c0Zmmci0CSss2ltVi+ixTelwEeB0dOCkPnGRAJKZyQIal0=
=ufrr
-END PGP SIGNATURE End Message ---