Bug#879716: ITP: usbauth-notifier -- Notifier for USB Firewall to use with desktop environments

2017-10-25 Thread intrigeri
Stefan Koch:
> * Package name: usbauth-notifier
> * URL : https://github.com/kochstefan/usbauth-all/usbauth-notifier

FWIW I get an error 404 there.

> A notifier for the usbauth firewall against BadUSB attacks. The user
> could manually allow or deny USB devices.

I'm curious: what are the pros/cons compared to usbguard, that's
already in Debian?



Bug#879737: ITP: python-envparse -- environment variable parsing for Python

2017-10-25 Thread Sophie Brun
Package: wnpp
Severity: wishlist
Owner: Sophie Brun 

* Package name: python-envparse
  Version : 0.2.0
  Upstream Author : Rick Harris 
* URL : https://github.com/rconradharris/envparse
* License : MIT
  Programming Lang: Python
  Description : simple utility to parse environment variables

python-envparse is a simple utility to parse environment variables.

It's a dependency for elastalert package (ITP #876963).
I plan to maintain this package in the Python Modules Team.



Bug#879741: RFH: phpmyadmin -- MySQL web administration tool

2017-10-25 Thread Michal Čihař
Package: wnpp
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

I request assistance with maintaining the phpmyadmin package. It was not
upgraded to 4.7 releases due to lack of time to package PHP libraries it
uses - it's now using composer to manage the depenencies, so packaging
them should be quite straightforward for somebody having experience with
that (what is not my case).

The package description is:
 This package allows administering of MySQL or MariaDB with a web interface.
 .
 It allows administrators to:
  - browse through databases and tables;
  - create, copy, rename, alter and drop databases;
  - create, copy, rename, alter and drop tables;
  - perform table maintenance;
  - add, edit and drop fields;
  - execute any SQL-statement, even multiple queries;
  - create, alter and drop indexes;
  - load text files into tables;
  - create and read dumps of tables or databases;
  - export data to SQL, CSV, XML, Word, Excel, PDF and LaTeX formats;
  - administer multiple servers;
  - manage MySQL users and privileges;
  - check server settings and runtime information with configuration hints;
  - check referential integrity in MyISAM tables;
  - create complex queries using Query-by-example (QBE), automatically
connecting required tables;
  - create PDF graphics of database layout;
  - search globally in a database or a subset of it;
  - transform stored data into any format using a set of predefined
functions, such as displaying BLOB-data as image or download-link;
  - manage InnoDB tables and foreign keys;
 and is fully internationalized and localized in dozens of languages.

 -- 
Michal Čihař | https://cihar.com/ | https://weblate.org/

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEh+Zzr4P2w6DDRMjD9KoinU1YwkUFAlnwT38ACgkQ9KoinU1Y
wkXKrBAAgXFH6bC2tfU5b9wI1qjd2PWTjhImv+QjEfCeKqGeh9e4vEbhYv+v9NoO
jwb+6QhHxsajbaGFA2ikq42Je1aYJlSTggSvx+pjLv6heaVIg3NLsX2saIA5QLfX
CLYwEh7jHeh1nLF9FtIykm5XhRcXSNxy0F0EapIHatup0fIDa32ZJpxEqcYwGzuN
59je20O2DsgpoL8LNsdmzn0Sf0u5gnXgOZE61O44OmrV+bRFTVMDiCEZg5vzddAr
UAQjTmHR3sCWpWh+mTTtRZfvPffojIsQFXxxvqJXNYhCku30El2UEAC/tSOjUp88
QW+ty4xf9zkz9sm1GnpmAzoSWHE25BuCcqh06NxV+CTFbkTGFDNgTq6+b1lWT0mC
VSWnTpMO/AnrkmkHXfaGzQtsgWfkWpaqwndUudpRRHRLYFqMDC2eKhHxHKF5prt+
0CqYWZoXJRoEj2NUwJaalQHEKEhHgNssrZg74NnIaUhHnzV3AJ6QuWljk440OfSZ
8pxJBX41qXu3lVIu45xHmUiw8jgcsgAla2almHo2iI68lW2s6Ti07qMEsR0wGD2a
riu07JDE2A0bj7o6JAedzGup8O6oOfUBSXLMapX7HA9o6Qbq2PmXO6F069d1Xkpf
rldGOLn9cPMJ2T0ThDIC64al59HnT3Hn6LhMexkQzvjVeUBBFpM=
=j37u
-END PGP SIGNATURE-


Bug#879745: ITP: python-aws-requests-auth -- AWS Signature Version 4 Signing Process with Python

2017-10-25 Thread Sophie Brun
Package: wnpp
Severity: wishlist
Owner: Sophie Brun 

* Package name: python-aws-requests-auth
  Version : 0.4.1
  Upstream Author : David Muller
* URL : https://github.com/davidmuller/aws-requests-auth
* License : BS-3-clause
  Programming Lang: Python
  Description : AWS Signature Version 4 Signing Process with Python

This package allows you to authenticate to AWS with Amazon's signature
version 4 signing process with the python requests library.

It's a dependency for elastalert package (ITP #876963).
I plan to maintain this package in the Python Modules Team.



Bug#879748: ITP: golang-github-alecthomas-repr -- Python's repr() for Go

2017-10-25 Thread Anthony Fok
Package: wnpp
Severity: wishlist
Owner: Anthony Fok 

* Package name: golang-github-alecthomas-repr
  Version : 0.0~git20171013.3757840-1
  Upstream Author : Alec Thomas
* URL : https://github.com/alecthomas/repr
* License : Expat
  Programming Lang: Go
  Description : Python's repr() for Go

 The repr package attempts to represent Go values in a form that can be
 used almost directly in Go source code.
 .
 Unfortunately, some values (such as pointers to basic types) cannot
 be represented directly in Go.  These values will be represented as
 &, e.g. &23
 .
 Example:
 .
   type test struct {
 S string
 I int
 A []int
   }
 .
   func main() {
 repr.Print(&test{
   S: "String",
   I: 123,
   A: []int{1, 2, 3},
 })
   }
 .
 Outputs
 .
   &main.test{S: "String", I: 123, A: []int{1, 2, 3}}

Reasoning: Required by golang-github-alecthomas-chroma for hugo:
 Hugo 0.28 brings blistering fast and native syntax highlighting
 from Chroma.  A big thank you to Alec Thomas for taking on this
 massive task of porting the popular python highlighter Pygments to Go.



Bug#879747: ITP: golang-github-alecthomas-assert -- Fork of Go stretchr/testify/assert that uses FailNow()

2017-10-25 Thread Anthony Fok
Package: wnpp
Severity: wishlist
Owner: Anthony Fok 

* Package name: golang-github-alecthomas-assert
  Version : 0.0~git20170929.405dbfe-1
  Upstream Author : Alec Thomas
* URL : https://github.com/alecthomas/assert
* License : Expat
  Programming Lang: Go
  Description : Fork of Go stretchr/testify/assert that uses FailNow()

 This is a fork of stretchr's assertion library that does two things:
 .
 1. It makes spotting differences in equality much easier.  It uses
github.com/alecthomas/repr and github.com/sergi/go-diff/diffmatchpatch
to display structural differences in colour.
 2. Aborts tests on first assertion failure (the same behaviour as
stretchr/testify/require).

Reasoning: Required by golang-github-alecthomas-chroma for hugo:
 Hugo 0.28 brings blistering fast and native syntax highlighting
 from Chroma.  A big thank you to Alec Thomas for taking on this
 massive task of porting the popular python highlighter Pygments to Go.



Bug#879750: ITP: golang-github-alecthomas-colour -- Quake-style colour formatting for Unix terminals

2017-10-25 Thread Anthony Fok
Package: wnpp
Severity: wishlist
Owner: Anthony Fok 

* Package name: golang-github-alecthomas-colour
  Version : 0.0~git20160524.60882d9-1
  Upstream Author : Alec Thomas
* URL : https://github.com/alecthomas/colour
* License : Expat
  Programming Lang: Go
  Description : Quake-style colour formatting for Unix terminals

 Colour terminal text for Go (Golang)

 Go package colour provides Quake-style colour formatting
 for Unix terminals.
 .
 The package level functions can be used to write to stdout (or strings
 or other files).  If stdout is not a terminal, colour formatting will
 be stripped.
 .
 Example:
 colour.Printf("^0black ^1red ^2green ^3yellow ^4blue ^5magenta ^6cyan
^7white^R\n")
 .
 For more control, a Printer object can be created with various helper
 functions. This can be used to do useful things such as strip formatting,
 write to strings, and so on.

Reasoning: Required by golang-github-alecthomas-chroma for hugo:
 Hugo 0.28 brings blistering fast and native syntax highlighting
 from Chroma.  A big thank you to Alec Thomas for taking on this
 massive task of porting the popular python highlighter Pygments to Go.



Bug#879749: ITP: golang-github-alecthomas-chroma -- A general purpose syntax highlighter in pure Go

2017-10-25 Thread Anthony Fok
Package: wnpp
Severity: wishlist
Owner: Anthony Fok 

* Package name: golang-github-alecthomas-chroma
  Version : 0.1.1+git20171001.6d28166-1
  Upstream Author : Alec Thomas
* URL : https://github.com/alecthomas/chroma
* License : Expat
  Programming Lang: Go
  Description : A general purpose syntax highlighter in pure Go

 Chroma takes source code and other structured text and converts it into
 syntax highlighted HTML, ANSI-coloured text, etc.
 .
 Chroma is based heavily on Pygments (http://pygments.org/), and includes
 translators for Pygments lexers and styles.


Reasoning: Required by Hugo 0.28, which "brings blistering fast and native
 syntax highlighting.  A big thank-you to Alec Thomas for taking on this
 massive task of porting the popular python highlighter Pygments to Go."



Bug#879753: ITP: pystaticconfiguration -- Python library for loading static configuration

2017-10-25 Thread Sophie Brun
Package: wnpp
Severity: wishlist
Owner: Sophie Brun 

* Package name: pystaticconfiguration
  Version : 0.10.3
  Upstream Author : Daniel Nephin 
* URL : https://github.com/dnephin/PyStaticConfiguration
* License : Apache-2.0
  Programming Lang: Python
  Description : Python library for loading static configuration

This package provides the staticconf Python module. It's a Python library
for loading, validating and reading configuration from many heterogeneous
formats.

It's a dependency for elastalert package (ITP #876963).
I plan to maintain this package in the Python Modules Team.



Processed: retitle to RFP: golang-github-jawher-mow.cli --

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

> retitle 832084 RFP: golang-github-jawher-mow.cli --
Bug #832084 [wnpp] ITP: golang-github-jawher-mow.cli -- 
Changed Bug title to 'RFP: golang-github-jawher-mow.cli --' from 'ITP: 
golang-github-jawher-mow.cli -- '.
> noowner 832084
Bug #832084 [wnpp] RFP: golang-github-jawher-mow.cli --
Removed annotation that Bug was owned by Nicolas Braud-Santoni 
.
> stop
Stopping processing here.

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



Bug#803502: ITP: osquery -- operating system instrumentation framework

2017-10-25 Thread Sven Mueller
Hi.

Is there any update available on this? Do you need help? If so: What kind
of help?

Regards,
Sven


Bug#803502: ITP: osquery -- operating system instrumentation framework

2017-10-25 Thread Daniel Stender
On 25.10.2017 12:49, Sven Mueller wrote:
> Hi.
> 
> Is there any update available on this? Do you need help? If so: What kind of 
> help?
> 
> Regards,
> Sven

Hi Sven,

no update so far (busy - first year freelancing). If you would like to come 
aboard (begin to work on
an initial package), welcome (hint: there is a .deb already available)!

DS

-- 
4096R/DF5182C8 (sten...@debian.org)
http://www.danielstender.com/



Bug#861533: New upstream version

2017-10-25 Thread Alexander Kulak


New upstream version packaged.
https://mentors.debian.net/debian/pool/main/a/alttab/alttab_1.1.0-1.dsc

--
Alexander Kulak



Bug#867316: marked as done (ITA: awesome -- highly configurable X window manager)

2017-10-25 Thread Debian Bug Tracking System
Your message dated Wed, 25 Oct 2017 13:00:24 +
with message-id 
and subject line Bug#867316: fixed in awesome 4.2-2
has caused the Debian Bug report #867316,
regarding ITA: awesome -- highly configurable X window manager
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.)


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

It's clear that nor me nor Arnaud work on awesome anymore.
Let's someone that cares about take care of it.
--- End Message ---
--- Begin Message ---
Source: awesome
Source-Version: 4.2-2

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

Debian distribution maintenance software
pp.
Reiner Herrmann  (supplier of updated awesome package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 23 Oct 2017 19:20:04 +0200
Source: awesome
Binary: awesome awesome-doc
Architecture: source amd64 all
Version: 4.2-2
Distribution: unstable
Urgency: low
Maintainer: Reiner Herrmann 
Changed-By: Reiner Herrmann 
Description:
 awesome- highly configurable X window manager
 awesome-doc - highly configurable X window manager - documentation
Closes: 546688 836080 867316 877757
Changes:
 awesome (4.2-2) unstable; urgency=low
 .
   * New maintainer. (Closes: #867316)
   * Build against lua 5.3.
   * Update menu-method generator for lua 5.3.
   * Allow other session bus than dbus-x11. (Closes: #836080)
   * Move API documentation into -doc package. (Closes: #546688)
   * Remove ancient version restrictions.
   * Cherry-pick upstream fix for errors with keyboardlayout widget.
 (Closes: #877757)
   * Document copyright of wallpaper images in default theme.
   * Run unit tests during build.
 - add lua-busted and zsh to build dependencies.
   * Run integration tests as autopkgtest.
Checksums-Sha1:
 53a879686f7c2849148d6cf6feace5a87705c7bf 2575 awesome_4.2-2.dsc
 9e079881ad3aeabec11749be7ea90fd28b096115 20028 awesome_4.2-2.debian.tar.xz
 eacae3f909abc450617a7dc94695b55b4d0ea2a2 709208 awesome-dbgsym_4.2-2_amd64.deb
 9c9fc25d49db77dfb37708f6b4850975b0ee89d9 337476 awesome-doc_4.2-2_all.deb
 acb57bb9764a946d018ab078957fef6e1982bc47 11647 awesome_4.2-2_amd64.buildinfo
 787468bc96aedcec5a7091a41b8bc6302614b0fc 901680 awesome_4.2-2_amd64.deb
Checksums-Sha256:
 4cfa173903e0fa39cbf4d162c054162582f4e3ba1c5f2e6908e71f7a9bf98542 2575 
awesome_4.2-2.dsc
 7be176f887845ced2f42647b4c8ed0ebc431a6eac514cec3e07d1b45c7157765 20028 
awesome_4.2-2.debian.tar.xz
 4e97c2c2193da21abab68d871a1eed53ca7bab9fd6d04b09cbe817ebc04a67b5 709208 
awesome-dbgsym_4.2-2_amd64.deb
 69415bae5561fecb3c615e64ab613894b938aa1cd2d78300e60318e2a670bce1 337476 
awesome-doc_4.2-2_all.deb
 46c8f702db75596e554dbdbc100e3962e53bf5cb0930f84ee5d3f748b57767c0 11647 
awesome_4.2-2_amd64.buildinfo
 4ebfc7f6484922d8411070e73920e410e86fbcd5b1c890f707097403d6097e8a 901680 
awesome_4.2-2_amd64.deb
Files:
 251aaf26abd0036bc18825667c45e627 2575 x11 optional awesome_4.2-2.dsc
 bbc44bd44242473507eafcb3b4c72455 20028 x11 optional awesome_4.2-2.debian.tar.xz
 b5975bc8d4ead158f9a9c1a165ebcba2 709208 debug optional 
awesome-dbgsym_4.2-2_amd64.deb
 46aee3cb12bb41733e7600c1b786358f 337476 doc optional awesome-doc_4.2-2_all.deb
 18f42414216b2efa4632ab99e9a1fdb2 11647 x11 optional 
awesome_4.2-2_amd64.buildinfo
 cb1ff66e8ff51de04e7430a93c4f7876 901680 x11 optional awesome_4.2-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCgAGBQJZ7iYDAAoJEAgWueGMdiutpWsP/0jsEE/YkKx9XSxYJY1Ta6YY
oVstJtUr9OQ3R+fJPHGjBl8hC2x2t+3ZU8I2r6NOyL56HEbZDKA42a0oy5xMNngc
X9w8WCcrUmxwhYPw4duVIbk3o1wlzdo607RYHz3oOpOQWpSrU3rBYUHrB1BGbds+
jZVJWHTmos2YaRc/ALR4U+Ix/EFpZ91JW90sEij9PdlYTvDFuF/FPNKJuBYMUy7F
J4Sx/ZHoeTiRXxnKv9SVlS7n+br9/lnEIiAHrR0FqfmE+TFJq8oAVASBOBYz4/Ur
r4ApP9qwENRKFJyQ5oRbMN/8xFsmm17fXLnU+c1oPnldE7NlhlxdUmx6Fesdjh9Y
myWKYfnWfl7uSIqIuyKFk5y5i+sUg6vIenLJ4zCjxroDgr5t3HRv9FOxr8WcQSkz
Qp6tN+sjTWvaxouK6lfGJ9Dv52uX/ww31BC1rxCHh/AXdwWHfd/10Esyui3ZAKhf
8Jdupf0/OKoW+ELiA4a8tJ8VlkBfPqwnxXmKZiLWQ/A6Ga

Bug#879761: ITP: python-exotel -- Python library for exotel api

2017-10-25 Thread Sophie Brun
Package: wnpp
Severity: wishlist
Owner: Sophie Brun 

* Package name: python-exotel
  Version : 0.1.5
  Upstream Author : sarath 
* URL : https://github.com/sarathsp06/exotel-py
* License : MIT
  Programming Lang: Python
  Description : Python library for exotel api

This package contains a Python module for exotels call and sms apis
(unofficial).

It's a dependency for elastalert package (ITP #876963).
I plan to maintain this package in the Python Modules Team.



Bug#879763: ITP: python-stomp -- Python STOMP client

2017-10-25 Thread Sophie Brun
Package: wnpp
Severity: wishlist
Owner: Sophie Brun 

* Package name: python-stomp
  Version : 4.1.19
  Upstream Author : Jason R Briggs 
* URL : https://github.com/jasonrbriggs/stomp.py
* License : Apache-2.0
  Programming Lang: Python
  Description : Python STOMP client

This package is a Python client library for accessing messaging servers
using the STOMP protocol (versions 1.0, 1.1 and 1.2). It can also be run
as a standalone, command-line client for testing.

It's a dependency for elastalert package (ITP #876963).
I plan to maintain this package in the Python Modules Team.



MSP's/VAR's/IT Executives for Debian

2017-10-25 Thread Carol Smith
Hi,

 

Quickly checking about your interest in acquiring the list of MSPs/VARs/IT
Professionals for your marketing initiatives?

 

We have complete contact information of your target audience such as:

 


MSPs

IT/IS management executives

IT Support Managers


VARs

IT VPs 

Software Architects


System Integrators

IT Directors 

Cyber Security Professionals


IT resellers

IT Manager

Software Developer 


Software resellers

software engineers, CIO's, CTO's

Database Manager


Channel Partners

Data Centre professionals

Security Analyst


Technology Partners

Network professionals

Network Administrator 


Implementation Partners

IT Systems Administrators

Information Security Administrator

 

We are also specialized in providing the contacts from the various business
verticals such as: Healthcare, Education, Manufacturing, Oil & Gas,
Automobile, Telecommunication, Banking & Financial Service, Government,
Information Technology and many more.

 

Let me know your interest so that I will get back with counts and pricing
details for your review.

 

Regards,

Carol Smith

Demand Generation

 

Reply remove to unsubscribe

 

Append Test: Just send us 25-50 records of missing or incorrect contact
details from your in-house file. We will append the missing details and
provide you the updated file for your review which showcase our quality of
the data.

 

 

 



Bug#879716: ITP: usbauth-notifier -- Notifier for USB Firewall to use with desktop environments

2017-10-25 Thread Stefan Koch



Am 25.10.2017 um 08:55 schrieb intrigeri:

Stefan Koch:

* Package name: usbauth-notifier
* URL : https://github.com/kochstefan/usbauth-all/usbauth-notifier

FWIW I get an error 404 there.


A notifier for the usbauth firewall against BadUSB attacks. The user
could manually allow or deny USB devices.

I'm curious: what are the pros/cons compared to usbguard, that's
already in Debian?


Sorry, it seems that github have changed some linking of project subfolders.

The usbguard development was supported by RedHat and usbauth was 
supported by SUSE. Historical, usbguard was published while the working 
on usbauth has already been started.


usbauth could allow/deny usb interfaces using the new usb interface 
authorization mechanism that is part of linux 4.4 and above.
See also: 
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git/log/?h=v4.4.94&qt=grep&q=interface+auth


Examples:
* allow a storage functionality of a USB device and deny USB Ethernet of 
the same device
* allow audio/video functionality of an USB TV card and deny using the 
remote control functionality
* allow USB printing/scanning and deny USB storage usage of a 
multifunction printer (BTW: the interface mechanism supports denying 
user space triggered actions (using USB claiming) like scanning)


usbguard could allow/deny USB devices using the usb device authorization 
mechanism of the Linux kernel.
It allows to denying a whole device if one interface of it is considered 
as bad (usbauth supports this, too)

usbguard allows creating actions that is not supported by usbauth.

I hope this helps. If you can understand German language you could read 
a detailed description: 
https://epub.uni-bayreuth.de/3048/1/koch2017sicherheitsaspekte.pdf


Thanks

Stefan



Bug#879775: ITP: emacs-helm-ag -- Silver Searcher integration with Emacs Helm

2017-10-25 Thread Sean Whitton
Package: wnpp
Severity: wishlist
Owner: Sean Whitton 

* Package name: emacs-helm-ag
  Version : 0.58
  Upstream Author : Syohei YOSHIDA
* URL : https://github.com/syohex/emacs-helm-ag/
* License : GPL-3+
  Programming Lang: Emacs Lisp
  Description : Silver Searcher integration with Emacs Helm

This enables the use of the helm-projectile-ag function in the existing
elpa-helm-projectile package.  This function permits fast, incremental
search across the files of a projectile project (e.g. a git repo).

-- 
Sean Whitton


signature.asc
Description: PGP signature


Bug#879778: O: openshot -- Create and edit videos and movies

2017-10-25 Thread Tobias Frost
Package: wnpp

The current maintainer of openshot, Jonathan Thomas ,
has orphaned this package.

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

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

Some information about this package:

Package: openshot
Binary: openshot, openshot-doc
Version: 1.4.3-1.2
Maintainer: Jonathan Thomas 
Build-Depends: debhelper (>= 9), dh-python, python
Architecture: all
Standards-Version: 3.9.6
Format: 3.0 (quilt)
Files:
 072172a8e539d7e642624bf749e2fc45 1910 openshot_1.4.3-1.2.dsc
 5ec82a7e8b7700ee4a359458aedf19e9 31990991 openshot_1.4.3.orig.tar.gz
 8fa6f392976fe951924434566af3cfbd 4204 openshot_1.4.3-1.2.debian.tar.xz
Vcs-Browser: https://code.launchpad.net/~openshot.developers/openshot/debian
Vcs-Bzr: lp:~openshot.developers/openshot/debian
Checksums-Sha256:
 298b8e8e55fb4fa1d004279b0231b60b7de2b73bebe52790cf24307953bca274 1910 
openshot_1.4.3-1.2.dsc
 5bebf1c59a8667b0263599544f2d23ce6be3ab79ce24a85b766e1e39cab859d0 31990991 
openshot_1.4.3.orig.tar.gz
 4dae78fcd86e45c86c6733f3a1a68b31528c10cabc3c2742b7e27e6320aa1a8d 4204 
openshot_1.4.3-1.2.debian.tar.xz
Homepage: http://www.openshotvideo.com/
Package-List: 
 openshot deb video optional arch=all
 openshot-doc deb doc optional arch=all
Directory: pool/main/o/openshot
Priority: source
Section: video

Package: openshot
Version: 1.4.3-1.2
Installed-Size: 55704
Maintainer: Jonathan Thomas 
Architecture: all
Depends: fontconfig, gtk2-engines-pixbuf, librsvg2-common, melt, python-gtk2, 
python-httplib2, python-imaging, python-mlt | python-mlt5 | python-mlt2, 
python-pygoocanvas, python-xdg, python:any (>= 2.7.5-5~)
Recommends: frei0r-plugins, openshot-doc, yelp
Suggests: blender (>= 2.5), inkscape
Description-en: Create and edit videos and movies
 OpenShot Video Editor is a free, open-source, non-linear video editor. It
 can create and edit videos and movies using many popular video, audio, and
 image formats. Create videos for YouTube, Flickr, Vimeo, Metacafe, iPod,
 Xbox, and many more common formats!
 .
 Features include:
  * Multiple tracks (layers)
  * Compositing, image overlays, and watermarks
  * Support for image sequences (rotoscoping)
  * Key-frame animation
  * Video and audio effects (chroma-key)
  * Transitions (lumas and masks)
  * 3D animation (titles and physics simulations)
  * Chroma key (green screen & blue screen)
  * Transcode (convert video encodings)
  * Upload videos (YouTube and Vimeo supported)
Description-md5: ebc391f10b45222da18ff525c26bc814
Homepage: http://www.openshotvideo.com/
Tag: implemented-in::python, interface::graphical, interface::x11,
 role::program, scope::application, use::editing, works-with::audio,
 works-with::video, x11::application
Section: video
Priority: optional
Filename: pool/main/o/openshot/openshot_1.4.3-1.2_all.deb
Size: 20269084
MD5sum: b72bee607546f0b60a3c67e252f2f0bf
SHA256: 1724e06ac5ca8ac6ca393bb40d13ba5115ee92c27b4d8b1213022635e9389310

Package: openshot-doc
Source: openshot
Version: 1.4.3-1.2
Installed-Size: 9985
Maintainer: Jonathan Thomas 
Architecture: all
Depends: rarian-compat
Description-en: Help manual for OpenShot Video Editor
 This is the official help manual for OpenShot Video Editor, a free,
 open-source, non-linear video editor. Learn how to edit videos, add
 watermarks, apply effects such as chroma key, and transition between
 videos. Also, learn how to become a developer, with step by step
 instructions.
Description-md5: 047292360e8efcbf286a0eed459a5538
Homepage: http://www.openshotvideo.com/
Tag: made-of::xml, role::documentation
Section: doc
Priority: optional
Filename: pool/main/o/openshot/openshot-doc_1.4.3-1.2_all.deb
Size: 7031636
MD5sum: 223e0586b34c87db94f486fbdfcfcd66
SHA256: 4929857447a0fdf6f222e68f74e047007554563cf6b872a8949a7d55d0f7d283



signature.asc
Description: PGP signature


Bug#879782: Subject: ITP: node-get-func-name -- Utility for getting a function's name for node and the browser

2017-10-25 Thread Sruthi Chandran
Package: wnpp
Severity: wishlist
Owner: Sruthi Chandran 
X-Debbugs-CC: debian-de...@lists.debian.org

* Package name: node-get-func-name
  Version : 2.0.0
  Upstream Author : Jake Luer 
(http://alogicalparadox.com)
* URL : https://github.com/chaijs/get-func-name#readme
* License : Expat
  Programming Lang: JavaScript
  Description : Utility for getting a function's name for node and
the browser
 This is a module to retrieve a function's name securely and
consistently both in NodeJS and the browser.
 .
 Node.js is an event-based server-side JavaScript engine.



signature.asc
Description: OpenPGP digital signature


Bug#879239: Acknowledgement (RFP: sigal -- Simple Static Gallery Generator)

2017-10-25 Thread Antoine Beaupré
Details on the dependencies...

Depends:

 * python3-markdown
 * python3-blinker
 * python3-click
 * python3-jinja2
 * python3-pilkit
 * python3-pillow

Recommends:

 * python3-feedgenerator (for RSS feed plugin)
 * cssmin (or python3-cssmin?, to compress the CSS files in themes)
 * python3-boto (to upload on s3)
 * ffmpeg (for video conversion)

We may also want to ship a sigal-doc package.

Otherwise, it works neatly on stretch, when installed with pip3, in my
tests.

a.

-- 
They say that time changes things, but you actually have to change
them yourself.   - Andy Warhol



Bug#587987: RFP: Razer device configuration tool -- Razer configuration interface & background daemon for low level hardware access.

2017-10-25 Thread Luca Boccassi
Control: owner -1 bl...@debian.org
Control: retitle -1 ITP: razercfg -- Razer configuration interface & background 
daemon for low level hardware access

On Sat, 3 Jul 2010 15:42:06 + (UTC) initrd@comcast.net wrote:
> Package: wnpp 
> Severity: wishlist 
> URL: http://bu3sch.de/joomla/index.php/razer-nextgen-config-tool 
> License: GNU GPL

Hi,

I intend to upload this shortly. Upstream ships a debian/ directory, to
which I already contributed some fixes earlier this year. The orig
tarball will be +ds repacked to remove it.

Since this bug was filed a custom icon artwork was added upstream,
licensed under the CC-BY-4.0 which is DFSG compatible.

Kind regards,
Luca Boccassi

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


Processed: Re: RFP: Razer device configuration tool -- Razer configuration interface & background daemon for low level hardware access.

2017-10-25 Thread Debian Bug Tracking System
Processing control commands:

> owner -1 bl...@debian.org
Bug #587987 [wnpp] RFP: razercfg -- Razer configuration interface & background 
daemon for low level hardware access
Owner recorded as bl...@debian.org.
> retitle -1 ITP: razercfg -- Razer configuration interface & background daemon 
> for low level hardware access
Bug #587987 [wnpp] RFP: razercfg -- Razer configuration interface & background 
daemon for low level hardware access
Changed Bug title to 'ITP: razercfg -- Razer configuration interface & 
background daemon for low level hardware access' from 'RFP: razercfg -- Razer 
configuration interface & background daemon for low level hardware access'.

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



Bug#879203: marked as done (ITP: redisearch -- search engine on top of Redis)

2017-10-25 Thread Debian Bug Tracking System
Your message dated Wed, 25 Oct 2017 21:00:14 +
with message-id 
and subject line Bug#879203: fixed in redisearch 0.21.3-3
has caused the Debian Bug report #879203,
regarding ITP: redisearch -- search engine on top of Redis
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.)


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

* Package name: redisearch
  Version : 0.21.3
  Upstream Author : Redis Labs
* URL : http://redisearch.io/
* License : AGPL
  Programming Lang: C
  Description : search engine on top of Redis

 Unlike other redis search libraries, it does not use internal data
 structures
 like sorted sets.
 .
 Inverted indexes are stored as a special compressed data type that
 allows for
 fast indexing and search speed, and low memory footprint.
 .
 This also enables more advanced features, like exact phrase matching and
 numeric filtering for text queries, that are not possible or efficient
 with
 traditional redis search approaches.


suggested binary package name: redis-redisearch
suggested module location: /usr/lib/redis/redisearch.so

Note that tests require Python's rmtest library which is not yet
packaged in Debian

I'm attaching debian/control and debian/rules file I used to test this
module.
Source: redisearch
Section: database
Priority: optional
Maintainer: Your Name 
Build-Depends: debhelper (>= 10)
Standards-Version: 4.1.0
Homepage: http://redisearch.io/

Package: redis-redisearch
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, redis-server (>= 4:4.0)
Description: search engine on top of Redis
 Unlike other redis search libraries, it does not use internal data structures
 like sorted sets.
 .
 Inverted indexes are stored as a special compressed data type that allows for
 fast indexing and search speed, and low memory footprint.
 .
 This also enables more advanced features, like exact phrase matching and
 numeric filtering for text queries, that are not possible or efficient with
 traditional redis search approaches.
#!/usr/bin/make -f

%:
dh $@

override_dh_auto_clean:
dh_auto_clean
find $(CURDIR) -name '*.pyc' -delete
find $(CURDIR)/src/tests/ -type f -executable -delete

override_dh_auto_test:
# disabled due to missing rmtest (and ramp-packer?) Python modules in 
Debian

override_dh_auto_install:
dh_install src/redisearch.so /usr/lib/redis/
--- End Message ---
--- Begin Message ---
Source: redisearch
Source-Version: 0.21.3-3

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

Debian distribution maintenance software
pp.
Chris Lamb  (supplier of updated redisearch 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, 25 Oct 2017 10:05:45 -0400
Source: redisearch
Binary: redis-redisearch redis-redisearch-doc
Architecture: source all amd64
Version: 0.21.3-3
Distribution: unstable
Urgency: medium
Maintainer: Chris Lamb 
Changed-By: Chris Lamb 
Description:
 redis-redisearch - Full-text and secondary search index engine module for Redis
 redis-redisearch-doc - Full-text and secondary search index engine module for 
Redis (doc
Closes: 879203
Changes:
 redisearch (0.21.3-3) unstable; urgency=medium
 .
   * Update debian/copyright.
 .
 redisearch (0.21.3-2) unstable; urgency=medium
 .
   * Specify Section: doc for redis-redisearch-doc.
   * Enable bindnow hardening.
   * Use build flags from outside environment.
 .
 redisearch (0.21.3-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #879203)
Checksums-Sha1:
 28a9088879e7ea7a3d2ee9efaea6a9eee047c32f 1964 redisearch_0.21.3-3.dsc
 1966ed63e6c25a4e6f9f79b40ae890714d14de83 760642 redisearch_0.21.3.orig.tar.gz
 ff7f450b91b1975baaf159a3f5bfbdde41e8f63a 9668 redisearch_0.21.3-3.debian.tar.xz
 1263803431462b0d6e775d9fe46bbef5ba4b1f69 96184 
redis-redisearch-doc_0.21.3-3_all.deb
 9f8720cf57db36394a277370d8819e0f9a3c0a44 179548 
redis-redisearch_0.21.3

Bug#879239: Acknowledgement (RFP: sigal -- Simple Static Gallery Generator)

2017-10-25 Thread Antoine Beaupré
Another issue I found: the pip package ships a copy of jquery and
jquery-colorbox (which are in debian) and a bunch more javascript
libraries: galleria, photoswipe, jquery-touchSwipe and leaflet (which
are not). Even worse, one theme ships with jquery 1.11.1 while the other
ships with 2.2.1. The jquery version shipped with Debian stretch is
version 3.1.1-2, for the record.

All of that JS is of course minified as well, so copies of those libs
will need to be included somehow:

https://github.com/jquery/jquery/archive/2.2.1.tar.gz
https://github.com/jquery/jquery/archive/1.11.1.tar.gz
https://github.com/jackmoore/colorbox/archive/1.6.4.tar.gz
https://github.com/worseisbetter/galleria/archive/1.4.2.tar.gz
https://github.com/dimsemenov/PhotoSwipe/archive/v4.1.1.tar.gz
https://github.com/mattbryson/TouchSwipe-Jquery-Plugin/archive/1.6.15.tar.gz
https://github.com/Leaflet/Leaflet/archive/v0.7.3.tar.gz

Note that *all* of those (except colorbox) are out of date, for what
that's worth.

I'm not sure this can be resolved cleanly without duplicating code
copies... I sent this upstream to see what can be done:

https://github.com/saimn/sigal/issues/200

a.
-- 
Religion is like a blind man looking in a black room for a black cat
that isn't there, and finding it.
 - Oscar Wilde



Bug#860055: ITP: dino-im -- modern XMPP client

2017-10-25 Thread Ralf Jung
On Mon, 23 Oct 2017 00:55:13 +0200 "W. Martin Borgert"
 wrote:
> WiP: https://anonscm.debian.org/cgit/collab-maint/dino-im.git/
> 

What is the reason for using "dino-im" rather than "dino" as the package
name?

There is no package "dino" in stable nor testing nor unstable.

; Ralf



Bug#872355: marked as done (ITP: node-is-module -- Node.js code to check if a string is an ES6 module)

2017-10-25 Thread Debian Bug Tracking System
Your message dated Wed, 25 Oct 2017 22:00:11 +
with message-id 
and subject line Bug#872355: fixed in node-is-module 1.0.0-1
has caused the Debian Bug report #872355,
regarding ITP: node-is-module -- Node.js code to check if a string is an ES6 
module
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.)


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

* Package name: node-is-module
  Version : 1.0.0
  Upstream Author : Jonathan Ong 
(http://jongleberry.com)
* URL : https://github.com/component/is-module
* License : Expat
  Programming Lang: JavaScript
  Description : Node.js code to check if a string is an ES6 module
 This simple code checks whether a string is the source of an ES6 module. It
 doesn't actually execute the code and doesn't check other module types and
 doesn't check other module types, so source strings without module loaders
 aren't recognized as modules.
 .
 Node.js is an event-based server-side JavaScript engine.

I plan to maintain it within the Debian Javascript Maintainer team with
all my other javascript packages. I need this one because it is a depend
of rollup-plugin-node-resolve, which is a dep of rollup, which I need to
update some of my existing packages.

Cheers,

Snark on #debian-js
--- End Message ---
--- Begin Message ---
Source: node-is-module
Source-Version: 1.0.0-1

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

Debian distribution maintenance software
pp.
Julien Puydt  (supplier of updated node-is-module 
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: Thu, 21 Sep 2017 08:37:30 +0200
Source: node-is-module
Binary: node-is-module
Architecture: source all
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Julien Puydt 
Description:
 node-is-module - Node.js code to check if a string is an ES6 module
Closes: 872355
Changes:
 node-is-module (1.0.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #872355)
Checksums-Sha1:
 d93c905d18c6aae0ce3b4e11330eb200848e9464 2036 node-is-module_1.0.0-1.dsc
 3258fb69f78c14d5b815d664336b4cffb6441591 1736 node-is-module_1.0.0.orig.tar.gz
 55a4e8686e8b8818167c2e3a8d994a3841072cd1 1972 
node-is-module_1.0.0-1.debian.tar.xz
 fd4b09af59ebe1ad64aa39761df1d7e658c63ef5 3312 node-is-module_1.0.0-1_all.deb
 c26c8a0a08506403708977066700494b17e6cb3d 5385 
node-is-module_1.0.0-1_amd64.buildinfo
Checksums-Sha256:
 264cbee261f5feb4901acd84005efd079fdd5b32bba5644412ccff43f3094ae0 2036 
node-is-module_1.0.0-1.dsc
 22bf997e4deeb4a29682d4235c9abfea0b183810bbc9baab1edc858afbc2512c 1736 
node-is-module_1.0.0.orig.tar.gz
 bed0154029699c456aee47824f722d4472d92b22ad7f017004d0b46771aa5146 1972 
node-is-module_1.0.0-1.debian.tar.xz
 67b3d5c79c2acb850d7ef7a9e61662bd5bf1d67ae9ad7024d3a3f3afa70d2abc 3312 
node-is-module_1.0.0-1_all.deb
 7d119be1db70c41a3b3e0a5e853f873eb3df97d7ef0013ff4f3b64f182c86fc6 5385 
node-is-module_1.0.0-1_amd64.buildinfo
Files:
 f77a8b0bd86b3c30b8a7fe39ba017bee 2036 web optional node-is-module_1.0.0-1.dsc
 366f8a9ac6150741ed2a268a606863b5 1736 web optional 
node-is-module_1.0.0.orig.tar.gz
 f319d90fabccdf045f356769f21c0929 1972 web optional 
node-is-module_1.0.0-1.debian.tar.xz
 c7f5736082159dc436d17fcc32b63af4 3312 web optional 
node-is-module_1.0.0-1_all.deb
 c4357d37f11cb98940b6bd262551a5bd 5385 web optional 
node-is-module_1.0.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEKnl0ri/BUtd4Z9pKzh+cZ0USwioFAlnDaf8ACgkQzh+cZ0US
wipoLBAAiJUnF9RTUPpZvB7FiM5IPkVCdKJcR8+8dC0ug06HujbatYqA5XYqseTn
21Q0t8pAK7tqqoVu6WONDqbEceosU6p5U/Z3Emj2Ok+dx9jOZEEoh1bJPkfkv40m
p4FEezVr9a92fvlrA7Az+LHK2S1AZqlMrdWZu2t9YwX54t3uw91NUpBrzZnGqaui
rQ/6AmSq1cjLxpXbWf6QNbagud5yorMTZwxawurMvottEvfheOH6rSN5wSXNb1A5
8xPDshi3FT32U7jHnRvg32NR7NtGnRKBWlPMEeY38LrUNtY0wlxrwldqDsZz0voO
94+5kYOCXJf

Bug#879181: marked as done (ITP: node-babel-preset-flow-vue -- babel preset for flow support)

2017-10-25 Thread Debian Bug Tracking System
Your message dated Wed, 25 Oct 2017 22:00:11 +
with message-id 
and subject line Bug#879181: fixed in node-babel-preset-flow-vue 1.0.0-1
has caused the Debian Bug report #879181,
regarding ITP: node-babel-preset-flow-vue -- babel preset for flow support
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.)


-- 
879181: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=879181
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-preset-flow-vue
  Version : 1.0.0
  Upstream Author : Evan You
* URL :
https://github.com/yyx990803/babel-preset-flow-vue#readme
* License : Expat
  Programming Lang: JavaScript
  Description : babel preset for flow support
 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.

In dependency chain of gitlab 9.5



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: node-babel-preset-flow-vue
Source-Version: 1.0.0-1

We believe that the bug you reported is fixed in the latest version of
node-babel-preset-flow-vue, 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 879...@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-preset-flow-vue 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, 20 Oct 2017 12:41:46 +0530
Source: node-babel-preset-flow-vue
Binary: node-babel-preset-flow-vue
Architecture: source all
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 

Changed-By: Pirate Praveen 
Description:
 node-babel-preset-flow-vue - babel preset for flow support
Closes: 879181
Changes:
 node-babel-preset-flow-vue (1.0.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #879181)
Checksums-Sha1:
 5f7af0f432c21225e76e2f26671c78a8231b0868 2200 
node-babel-preset-flow-vue_1.0.0-1.dsc
 bd28eb64b53d65f9c47262b32ce6c6033fe70671 479 
node-babel-preset-flow-vue_1.0.0.orig.tar.gz
 0d5a1105f37f7f13ee5a3024945bb8eb45a6f8cf 2228 
node-babel-preset-flow-vue_1.0.0-1.debian.tar.xz
 2b476c1690beccc2515c4a37bd1b97b0498c8c22 2724 
node-babel-preset-flow-vue_1.0.0-1_all.deb
 7936648cc3e84edf109010aa2252a46a48eeb995 5573 
node-babel-preset-flow-vue_1.0.0-1_amd64.buildinfo
Checksums-Sha256:
 b2a16a5d38fed93c0c319f03f98fb6957bd1f1971e65c139d20b2b1ed4c217e8 2200 
node-babel-preset-flow-vue_1.0.0-1.dsc
 b72020d5a9d50228ff77fd0b8c13887282556741d20920613a8b43f3ceb61b14 479 
node-babel-preset-flow-vue_1.0.0.orig.tar.gz
 a60c81bbb911bf1f2aaf3a1f97f0973c1594aebc8b94fbfe37b2652eb90fb8a6 2228 
node-babel-preset-flow-vue_1.0.0-1.debian.tar.xz
 160fcd3f54083ef9b49aa6b49b7e75a3f8601108aa37c1d5a86faffb10d496c3 2724 
node-babel-preset-flow-vue_1.0.0-1_all.deb
 8ffa306a6351b36a38aa2792cb9c968fdde05d02c1acde3aa7c1a3ac2a12987f 5573 
node-babel-preset-flow-vue_1.0.0-1_amd64.buildinfo
Files:
 3c076dba9b8ef3ea0b3cf544120e4d43 2200 javascript optional 
node-babel-preset-flow-vue_1.0.0-1.dsc
 782f643253967159525c13e48657798e 479 javascript optional 
node-babel-preset-flow-vue_1.0.0.orig.tar.gz
 9ad002b3ff0e60c61ade5bd1d33685e2 2228 javascript optional 
node-babel-preset-flow-vue_1.0.0-1.debian.tar.xz
 aee594a7d911f4e9b2567dd18a3d0d10 2724 javascript optional 
node-babel-preset-flow-vue_1.0.0-1_all.deb
 47a9681cf8a6c271aa18f6c9e115c267 5573 javascript optional 
node-babel-preset-flow-vue_1.0.0-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEKnl0ri/BUtd4Z9pKzh+cZ0USwioFAlnpoxcACgkQzh+cZ0US
wipTTg//UoAtZRf8eAzhzadbkPGtxek6DdsqHiZlYjxLxJCw8p0uE21YZMUjOOvl
mTRATPbn7D2t/BZZElEKaFrU9u1eZNo0lLYHcmlvaGH1JulXaZ3m00C+Mo01aKvj
LF3pLumI21On+RS/F2wI9+6OXZml7Duv6BA6EFrzAVd9/7u1sYjRP3H8OfH5afQa
+SiwXWRRldih7psQcfcCT/CFTeaM/MAl5RHuXOHGc6fxp0jM7WRU5Cz

Bug#878042: marked as done (ITP: libtest-mock-time-perl -- Deterministic time & timers for event loop tests)

2017-10-25 Thread Debian Bug Tracking System
Your message dated Wed, 25 Oct 2017 22:00:10 +
with message-id 
and subject line Bug#878042: fixed in libtest-mock-time-perl 0.1.6-1
has caused the Debian Bug report #878042,
regarding ITP: libtest-mock-time-perl -- Deterministic time & timers for event 
loop tests
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.)


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

* Package name: libtest-mock-time-perl
  Version : 0.1.6
  Upstream Author : Alex Efros 
* URL : https://metacpan.org/release/Test-Mock-Time
* License : MIT
  Programming Lang: Perl
  Description : Deterministic time & timers for event loop tests

Test::Mock::Time replaces actual time with simulated time everywhere (core
time(), Time::HiRes, EV, AnyEvent with EV, Mojolicious, …) and provide a
way to write deterministic tests for event loop based applications with
timers.

IMPORTANT! This module must be loaded by your script/app/test before other
related modules (Time::HiRes, Mojolicious, EV, etc.).

The package will be maintained under the umbrella of the Debian Perl Group.
--- End Message ---
--- Begin Message ---
Source: libtest-mock-time-perl
Source-Version: 0.1.6-1

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

Debian distribution maintenance software
pp.
Hideki Yamane  (supplier of updated libtest-mock-time-perl 
package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 9 Oct 2017 13:36:20 +0900
Source: libtest-mock-time-perl
Binary: libtest-mock-time-perl
Architecture: source all
Version: 0.1.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: Hideki Yamane 
Description:
 libtest-mock-time-perl - Deterministic time & timers for event loop tests
Closes: 878042
Changes:
 libtest-mock-time-perl (0.1.6-1) unstable; urgency=low
 .
   * Initial Release (Closes: #878042)
Checksums-Sha1:
 0ed8fe5940f1fe1fdc704c37d547ece47b3d7c5b 2309 
libtest-mock-time-perl_0.1.6-1.dsc
 d3df7edb22fd405e0a96bd9ac073a403c43856d5 12524 
libtest-mock-time-perl_0.1.6.orig.tar.gz
 4b10ef15a75201033fbb6f26e4d1b84df12babd6 1976 
libtest-mock-time-perl_0.1.6-1.debian.tar.xz
 25a70508d408ad690dae0cb4621ad3f119fba3ce 11504 
libtest-mock-time-perl_0.1.6-1_all.deb
 64d5b4e5fa5732d7cbff902ec79eb353336f29e7 6096 
libtest-mock-time-perl_0.1.6-1_amd64.buildinfo
Checksums-Sha256:
 227283d64405d4bd16386fd3a238b825e56841779937fddff172d53ab77dc1a5 2309 
libtest-mock-time-perl_0.1.6-1.dsc
 fb48bb60f5a93ba1c1ffe781ad733460e30fc604cae612c0094abdc9ae63993e 12524 
libtest-mock-time-perl_0.1.6.orig.tar.gz
 b732f46a9ead4eedf7d69264a0f0b337dde0d606d4120a4bc6e7418e2b6455c7 1976 
libtest-mock-time-perl_0.1.6-1.debian.tar.xz
 430ca7eedbbacaa03dee213153f8a7ff910ebfd7b9c1ae5bdf4e727ac1383164 11504 
libtest-mock-time-perl_0.1.6-1_all.deb
 3b9633e80e856520b87f484af32520f5a3a194669b70b1dc82038eb1b78810ce 6096 
libtest-mock-time-perl_0.1.6-1_amd64.buildinfo
Files:
 67eaaa59077ff445e69444b79daf4023 2309 perl optional 
libtest-mock-time-perl_0.1.6-1.dsc
 cce401131536e16a8ccf3d155103e3a0 12524 perl optional 
libtest-mock-time-perl_0.1.6.orig.tar.gz
 d0e45bffee75b53cbe8ae320d739ba5e 1976 perl optional 
libtest-mock-time-perl_0.1.6-1.debian.tar.xz
 92b3f7e95b36bf22fb681730991245e9 11504 perl optional 
libtest-mock-time-perl_0.1.6-1_all.deb
 83ecf23ca6d03ecb0327348480b2e88a 6096 perl optional 
libtest-mock-time-perl_0.1.6-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEEWOEiL5aWyIWjzRBMXTKNCCqqsUAFAlnbDycTHGhlbnJpY2hA
ZGViaWFuLm9yZwAKCRBdMo0IKqqxQHvqD/4ucQsdWyxjF1AgD52T3oLjURpaqrcU
qkO2/BVOWEcygsWp1OxblwM2M/Es8ek2qoxH5R7SBRvswMeAZuEYrFln9ay6ss1i
b1nHon0D9n3g2S6rAyQeBCQ1w+BWINZFkqxGQpo844DeWLuIvz+7PHHAjOjWfX/1
aY2G4vCc4fHncesWXrsD8Y6wXTP98ceWjpN0jZ9u43fFnPF6WFReovASZsHA1kbR
tatv+luOWzpca94+WdZjLdFmQ5utRZEt7Ik2lCjTIVw6k3B

Processed: merge ITPs

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

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

> forcemerge 85 799287
Bug #85 [wnpp] ITP: python3-mailman-hyperkitty -- Mailman3 plugin to 
archive emails with HyperKitty
Bug #799287 [wnpp] ITP: hyperkitty -- Web archive browser for mailman3 server
Owner changed from Pierre-Elliott Bécue  to Jonas Meurer 
.
Merged 799287 85
> thanks
Stopping processing here.

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



Bug#792101: Finally, an unusable demo

2017-10-25 Thread Michael Lustfield
It seems I'm still the only person interested in working on gitea packaging.
Bummer, I almost got hopeful once or twice.

There are a lot of things still pending, a few packages that will be an
exceptional time sink, as well as other obvious packaging flaws, and a weird
working directory issue within gitea.

Despite the package being unsuitable for release, I popped up a repository to
make my current work available for playing with.


Work In Progress (Demo):
https://people.debian.org/~mtecknology/ppa/README

-- 
Michael Lustfield



Bug#760263: ITP: golang-github-burntsushi-xgb (previously golang-xgb)

2017-10-25 Thread Boyuan Yang
Control: retitle -1 ITP: golang-github-burntsushi-xgb -- X Go Binding
Control: owner -1 pkg-deepin-de...@lists.alioth.debian.org
X-Debbugs-CC: pkg-deepin-de...@lists.alioth.debian.org 
pkg-go-maintain...@lists.alioth.debian.org

Dear pkg-go and pkg-deepin team members,

I recently noticed bug #760263 (RFP: golang-xgb -- X Go Binding) in Debian BTS. 
We (pkg-deepin team
staff) are interested in this package because it is a blocker of our working 
goal (Deepin Software family).
For a complete graph of pkg-deepin dependency, see [1].

We are looking forward to packaging it and possibly co-maintain it inside 
pkg-go team. Meanwhile,
we'd like to see pkg-deepin maillist address listed inside the uploaders list 
to reflect our interest in it.

I intend to put git packaging repository inside collab-maint (instead of under 
pkg-go)
for collaborative maintenance. It should be temporary since alioth is retiring 
soon.

Any comments and help are welcome. Taking over packaging works should also be 
acceptable since
we don't really know much about Golang packaging (yet).

* Package name: golang-github-burntsushi-xgb
  Version : 0~20160523
  Upstream Author : Andrew Gallant 
* URL : https://github.com/BurntSushi/xgb
* License : BSD-3, WTFPL
  Programming Lang: Go
  Description : X Go Binding

Regards,
Boyuan Yang

[1] 
https://anonscm.debian.org/git/pkg-deepin/pkg-deepin.git/plain/depgraph/pkg-deepin-dep.svg

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


Processed: Re: Bug#760263: ITP: golang-github-burntsushi-xgb (previously golang-xgb)

2017-10-25 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 ITP: golang-github-burntsushi-xgb -- X Go Binding
Bug #760263 [wnpp] RFP: golang-xgb -- X Go Binding
Changed Bug title to 'ITP: golang-github-burntsushi-xgb -- X Go Binding' from 
'RFP: golang-xgb -- X Go Binding'.
> owner -1 pkg-deepin-de...@lists.alioth.debian.org
Bug #760263 [wnpp] ITP: golang-github-burntsushi-xgb -- X Go Binding
Owner recorded as pkg-deepin-de...@lists.alioth.debian.org.

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



Bug#879715: ITP: usbauth -- USB firewall against BadUSB attacks

2017-10-25 Thread gustavo panizzo

Hello

On Wed, Oct 25, 2017 at 12:51:31AM +0200, Stefan Koch wrote:

Package: wnpp
Severity: wishlist
Owner: Stefan Koch 

* Package name: usbauth
 Version : 1.0
 Upstream Author : Stefan Koch 
* URL : https://github.com/kochstefan/usbauth-all/usbauth


gives me a 404


* License : GPL-2.0
 Programming Lang: C
 Description : USB firewall against BadUSB attacks

It is a firewall against BadUSB attacks. A config file descibes in which way 
USB interfaces would be accepted or denied.
To the kernel an interface authorization was developed with this firewall.
The firewall sets the authorization mask according to the rules.


What are the differences with usbguard? which is already in the archive
https://dkopecek.github.io/usbguard/



This work was initially created for SUSE in 2015. Part of it was the USB 
interface authorization for the Linux kernel. It's contained in Linux since 
kernel version 4.4.

Please add the packages libusbauth-configparser, usbauth, usbauth-notifier to 
debian unstable.

See also: openSUSE package request 
(https://build.opensuse.org/request/show/533513)



--
IRC: gfa
GPG: 0X44BB1BA79F6C6333