Bug#878268: RFS: streamlink/0.8.1-2 [ITP]

2017-10-11 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink"

 * Package name: streamlink
   Version : 0.8.1-2
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.8.1-2.dsc

This package is a fork of livestreamer package which is going to be removed
(See #877485).

I have already working packaging here (which is why the version is not -1):
  https://github.com/amurzeau/streamlink-debian.

Some notes about it:
 - I use git-buildpackage with pristine-tar to keep the exact original
   tar.
 - I have additional files .travis.yml and travis-build/ used to build
   packages on travis-ci.
 - The generated changes file after build does not include the upstream
   signature (orig.tar.gz.asc) as git-buildpackage does not handle it
   yet. Because of that, I have the lintian warning
   orig-tarball-missing-upstream-signature on the changes file.
   (See #872864).

Regards,
--
 Alexis Murzeau
 PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#878268: RFS: streamlink/0.8.1-3 [ITP]

2017-10-23 Thread Alexis Murzeau
retitle 878268 RFS: streamlink/0.8.1-3 [ITP]
thanks

Hi,

I uploaded a new package version to reflect an email address change.
I was using outlook SMTP server but got long delivery delays of mails to
Debian lists (above one day).
This new version only change references to the outlook email address to
the gmail one (while keeping old changelogs as-is).

The package is available using this dget command:
  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.8.1-3.dsc

Changes:
 streamlink (0.8.1-3) unstable; urgency=low

   * Change mail address to gmail

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Re: C++ help needed for centrifuge

2017-11-25 Thread Alexis Murzeau
Le 25/11/2017 à 21:56, Andreas Tille a écrit :
> Hi,
> 
> I started packaging centrifuge[1] and hit a build error which
> is most probably caused by gcc-7 incompatibility:
> 
> ...
> In file included from centrifuge_build.cpp:27:0:
> bt2_idx.h: In static member function 'static std::pair<Ebwt*, 
> Ebwt*> Ebwt::fromStrings(const 
> EList<std::__cxx11::basic_string >&, bool, int, int, bool, int32_t, 
> int32_t, int32_t, const string&, bool, index_t, index_t, index_t, int, 
> uint32_t, bool, bool, bool)':
> bt2_idx.h:1053:3: warning: 'template class std::auto_ptr' is 
> deprecated [-Wdeprecated-declarations]
>auto_ptr ss(new stringstream());
>^~~~
> In file included from /usr/include/c++/7/memory:80:0,
>  from bt2_idx.h:28,
>  from centrifuge_build.cpp:27:
> /usr/include/c++/7/bits/unique_ptr.h:51:28: note: declared here
>template class auto_ptr;
> ^~~~
> In file included from centrifuge_build.cpp:27:0:
> bt2_idx.h:1057:3: warning: 'template class std::auto_ptr' is 
> deprecated [-Wdeprecated-declarations]
>auto_ptr fb(new FileBuf(ss.get()));
>^~~~
> In file included from /usr/include/c++/7/memory:80:0,
>  from bt2_idx.h:28,
>  from centrifuge_build.cpp:27:
> /usr/include/c++/7/bits/unique_ptr.h:51:28: note: declared here
>template class auto_ptr;
> ...
> 

Hi,

You can replace auto_ptr with unique_ptr which was introduced with
C++11. std::unique_ptr is declared in the same header as auto_ptr
().

One major difference is that std::unique_ptr cannot be copied but moved
instead.
For example:
std::unique_ptr fb(new FileBuf);
std::unique_ptr fb2 = std::move(p);

After that second line, p will be empty/null and p2 will contains the
FileBuf pointer.

But in bt2_idx.h, the auto_ptr variables are not copied around so you
probably just need to replace "auto_ptr" with "unique_ptr" and that's all.


-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Re: [Debian-med-packaging] C++ help needed for centrifuge

2017-11-26 Thread Alexis Murzeau
Hi,

Le 26/11/2017 à 22:01, Fabian Klötzl a écrit :
> Ho,
> 
> On 26.11.2017 19:32, Walter Landry wrote:
>> Andreas Tille <andr...@an3as.eu> wrote:
>>> Unfortunately I've hit another issue:
>>>
>>> ...
>>> classifier.h:428:54: error: the value of 'rank' is not usable in a constant 
>>> expression
>>>  while((uint8_t)_hitMap[i].rank < rank) {
>>>   ^~~~
>>> classifier.h:424:21: note: 'uint8_t rank' is not const
>>>  uint8_t rank = 0;
>>>  ^~~~
>>
>> That is mysterious to me.  Is that the first error?
>>
> 
> That reminds me of an error where the `<` was mistaken for the opening
> angle brackets of a template. Flipping the order of the comparison or
> adding some extra parentheses might help.

Indeed, it seems gcc understand rank as std::rank, and maybe is trying
to read _hitMap[i].std::rank ("using namespace std" is used,
"rank" can also reference std::rank).

Reversing the order works: "while(rank > _hitMap[i].rank)".
Removing "using namespace std" is probably a better long-term solution
for upstream.

As a side note, I found the package to not build on 32 bits linux
because the ASM instruction "popcntq" doesn't exists. To avoid that
error, I used "export POPCNT_CAPABILITY=0" in debian/rules.
But I'm not sure this program is designed to run with less than 2GB of
memory anyway :) This flag is needed anyway if you want your package to
build for non-amd64 architecture.

I got a deb file after the following modifications:
 - Reversing the while condition (as said above)
 - Patching Makefile to take into account the DESTDIR variable, used by
Debian packaging scripts to set the target directory where to install
and uninstall files (that is, $(DESTDIR)$(prefix) instead of just $(prefix))
 - Add a dh_auto_install override to set "prefix" to /usr instead of
default /usr/local

And the generated .deb got several lintian warnings/errors:
W: centrifuge: wrong-bug-number-in-closes l3:#xxx
W: centrifuge: new-package-should-close-itp-bug
W: centrifuge: script-with-language-extension
usr/bin/centrifuge-BuildSharedSequence.pl
W: centrifuge: script-with-language-extension
usr/bin/centrifuge-RemoveEmptySequence.pl
W: centrifuge: script-with-language-extension usr/bin/centrifuge-RemoveN.pl
W: centrifuge: script-with-language-extension usr/bin/centrifuge-compress.pl
W: centrifuge: script-with-language-extension usr/bin/centrifuge-sort-nt.pl
W: centrifuge: binary-without-manpage usr/bin/centrifuge
W: centrifuge: binary-without-manpage
usr/bin/centrifuge-BuildSharedSequence.pl
W: centrifuge: binary-without-manpage
usr/bin/centrifuge-RemoveEmptySequence.pl
W: centrifuge: binary-without-manpage usr/bin/centrifuge-RemoveN.pl
W: centrifuge: binary-without-manpage usr/bin/centrifuge-build
W: centrifuge: binary-without-manpage usr/bin/centrifuge-build-bin
W: centrifuge: binary-without-manpage usr/bin/centrifuge-class
W: centrifuge: binary-without-manpage usr/bin/centrifuge-compress.pl
W: centrifuge: binary-without-manpage usr/bin/centrifuge-download
W: centrifuge: binary-without-manpage usr/bin/centrifuge-inspect
W: centrifuge: binary-without-manpage usr/bin/centrifuge-inspect-bin
W: centrifuge: binary-without-manpage usr/bin/centrifuge-sort-nt.pl
E: centrifuge: python-script-but-no-python-dep usr/bin/centrifuge-build
E: centrifuge: python-script-but-no-python-dep usr/bin/centrifuge-inspect
W: centrifuge: script-not-executable
usr/share/centrifuge/doc/strip_markdown.pl

So there is still some work to do after that ^^

> 
> I will do some more investigation, tomorrow.
> 
> Fabian
>

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Re: [Debian-med-packaging] C++ help needed for centrifuge

2017-11-26 Thread Alexis Murzeau
Le 27/11/2017 à 00:39, Alexis Murzeau a écrit :
> Hi,
> 
> Le 26/11/2017 à 22:01, Fabian Klötzl a écrit :
>> Ho,
>>
>> On 26.11.2017 19:32, Walter Landry wrote:
>>> Andreas Tille <andr...@an3as.eu> wrote:
>>>> Unfortunately I've hit another issue:
>>>>
>>>> ...
>>>> classifier.h:428:54: error: the value of 'rank' is not usable in a 
>>>> constant expression
>>>>  while((uint8_t)_hitMap[i].rank < rank) {
>>>>   ^~~~
>>>> classifier.h:424:21: note: 'uint8_t rank' is not const
>>>>  uint8_t rank = 0;
>>>>  ^~~~
>>>
>>> That is mysterious to me.  Is that the first error?
>>>
>>
>> That reminds me of an error where the `<` was mistaken for the opening
>> angle brackets of a template. Flipping the order of the comparison or
>> adding some extra parentheses might help.
> 
> Indeed, it seems gcc understand rank as std::rank, and maybe is trying
> to read _hitMap[i].std::rank ("using namespace std" is used,
> "rank" can also reference std::rank).
> 
> Reversing the order works: "while(rank > _hitMap[i].rank)".
> Removing "using namespace std" is probably a better long-term solution
> for upstream.
> 
> As a side note, I found the package to not build on 32 bits linux
> because the ASM instruction "popcntq" doesn't exists. To avoid that
> error, I used "export POPCNT_CAPABILITY=0" in debian/rules.
> But I'm not sure this program is designed to run with less than 2GB of
> memory anyway :) This flag is needed anyway if you want your package to
> build for non-amd64 architecture.
> 
> I got a deb file after the following modifications:
>  - Reversing the while condition (as said above)
>  - Patching Makefile to take into account the DESTDIR variable, used by
> Debian packaging scripts to set the target directory where to install
> and uninstall files (that is, $(DESTDIR)$(prefix) instead of just $(prefix))
>  - Add a dh_auto_install override to set "prefix" to /usr instead of
> default /usr/local
> 
> And the generated .deb got several lintian warnings/errors:
> W: centrifuge: wrong-bug-number-in-closes l3:#xxx
> W: centrifuge: new-package-should-close-itp-bug
> W: centrifuge: script-with-language-extension
> usr/bin/centrifuge-BuildSharedSequence.pl
> W: centrifuge: script-with-language-extension
> usr/bin/centrifuge-RemoveEmptySequence.pl
> W: centrifuge: script-with-language-extension usr/bin/centrifuge-RemoveN.pl
> W: centrifuge: script-with-language-extension usr/bin/centrifuge-compress.pl
> W: centrifuge: script-with-language-extension usr/bin/centrifuge-sort-nt.pl
> W: centrifuge: binary-without-manpage usr/bin/centrifuge
> W: centrifuge: binary-without-manpage
> usr/bin/centrifuge-BuildSharedSequence.pl
> W: centrifuge: binary-without-manpage
> usr/bin/centrifuge-RemoveEmptySequence.pl
> W: centrifuge: binary-without-manpage usr/bin/centrifuge-RemoveN.pl
> W: centrifuge: binary-without-manpage usr/bin/centrifuge-build
> W: centrifuge: binary-without-manpage usr/bin/centrifuge-build-bin
> W: centrifuge: binary-without-manpage usr/bin/centrifuge-class
> W: centrifuge: binary-without-manpage usr/bin/centrifuge-compress.pl
> W: centrifuge: binary-without-manpage usr/bin/centrifuge-download
> W: centrifuge: binary-without-manpage usr/bin/centrifuge-inspect
> W: centrifuge: binary-without-manpage usr/bin/centrifuge-inspect-bin
> W: centrifuge: binary-without-manpage usr/bin/centrifuge-sort-nt.pl
> E: centrifuge: python-script-but-no-python-dep usr/bin/centrifuge-build
> E: centrifuge: python-script-but-no-python-dep usr/bin/centrifuge-inspect
> W: centrifuge: script-not-executable
> usr/share/centrifuge/doc/strip_markdown.pl
> 
> So there is still some work to do after that ^^
> 
>>
>> I will do some more investigation, tomorrow.
>>
>> Fabian
>>
> 

I attached a dirty patch so you can see exactly what I have modified to
fix errors.

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F
diff --git a/debian/patches/0002-Fix-build-with-rank.patch 
b/debian/patches/0002-Fix-build-with-rank.patch
new file mode 100644
index 000..6e29a9c
--- /dev/null
+++ b/debian/patches/0002-Fix-build-with-rank.patch
@@ -0,0 +1,21 @@
+From: Alexis Murzeau <amub...@gmail.com>
+Date: Mon, 27 Nov 2017 00:04:21 +0100
+Subject: Fix build with rank
+
+---
+ classifier.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/classifier.h b/classifier.h
+index f61a7f0..13b110b 100644
+--- a/classifier.h
 b/clas

Bug#878268: RFS: streamlink/0.9.0-1 [ITP]

2017-11-22 Thread Alexis Murzeau
Control: retitle -1 RFS: streamlink/0.9.0-1 [ITP]

Hi,


I am looking for a sponsor for my package "streamlink"

I made a new upload for the new upstream version: 0.9.0.

The package is available using this dget command:
  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.9.0-1.dsc


Changes since last upload:
 streamlink (0.9.0-1) unstable; urgency=low

  * New upstream version 0.9.0
  * Recommend python3-socks for socks proxy support
  * Drop documentation patches applied upstream

 streamlink (0.8.1-4) unstable; urgency=low

  * Use gzip format in deb files
- bintray repository does not support control.tar.xz


Can anyone look at it ? Thanks :)

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Re: Help with cmake / Qt5 migration needed

2017-10-21 Thread Alexis Murzeau
2017-10-20 11:03 GMT+02:00 Andreas Tille <andr...@an3as.eu>:
>
> but I'm somehow missing some proper -I option to tell gcc where to seek
> for the qt5 includes.  I'm afraid that the cmake configuration was not
> fully successful.  Any further hints?
>
According to [1], #include  should work.
Include directories should be set by target_link_directories(program
Qt5::Core [...]).
Maybe QT_ variables like ${QT_LIBRARIES} are not set as expected.

[1] http://doc.qt.io/qt-5/qdebug.html

--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F


Bug#898308: RFS: streamlink/0.12.1+dfsg-1

2018-05-09 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 0.12.1.

 * Package name: streamlink
   Version : 0.12.1+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.12.1+dfsg-1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the last upload:
streamlink (0.12.1+dfsg-1) unstable; urgency=low

  * Recommends vlc as default player
  * Test manpage and docs installation
  * New upstream version 0.12.1+dfsg
  * Bump standard version to 4.1.4, no change required
  * Remove X-Python3-Version not needed anymore

 -- Alexis Murzeau <amub...@gmail.com>  Thu, 10 May 2018 00:45:54 +0200

Regards,
--
 Alexis Murzeau
 PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F








signature.asc
Description: OpenPGP digital signature


Bug#898308: RFS: streamlink/0.12.1+dfsg-1

2018-05-10 Thread Alexis Murzeau
Le 10/05/2018 à 04:01, Paul Wise a écrit :
> On Thu, May 10, 2018 at 7:40 AM, Alexis Murzeau wrote:
> 
>> I am looking for a sponsor for my package "streamlink" for a new
>> upstream version 0.12.1.
> 
> Uploaded.
> 
> Some things you might want to do if you have spare time:
> 
>>   * Remove X-Python3-Version not needed anymore
> 
> This is incorrect, removing this changed the Depends from python3 (>=
> 3.4~) to 3.3.2-2~, which is clearly incorrect since upstream says they
> only support Python 3.4.

Yes but oldstable has python >= 3.4 and lintian warning
ancient-python-version-field suggest to remove the X-Python3-Version field.
(As a side note, the 3.3.2-2~ version is used as a default one as it is
needed for dh-python3 compile/clean scripts.)

I agree with you that this package should require python 3.4,
independently from available versions in any Debian distribution or any
derivative.

I guess the lintian tag is there to avoid things like "Depends:
python2:any (>> 2.1)", that is using versioned dependency with a very
old one or try to avoid X- control fields when not really needed.
I will ask them.


-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



Bug#898308: Upstream minimum supported python version 3.4 and lintian tag ancient-python-version-field

2018-05-10 Thread Alexis Murzeau
Hi,

I maintain the "streamlink" package were upstream supports only python
>= 3.4, so I have added X-Python3-Version >= 3.4 in control file.

But the new lintian tag ancient-python-version-field want it to be
removed as oldstable has python3 >= 3.4.

Removing X-Python3-Version changes the binary package dependency on
python from >= 3.4~ to >= 3.3.2-2~.

What's the way to handle the minimum supported python3 version in
respect to ancient-python-version-field lintian tag ?

Thanks for your help,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#899206: RFS: streamlink/0.12.1+dfsg-1~bpo9+1

2018-05-20 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors and backports developers,

I am looking for a sponsor for my package "streamlink" into Debian
stretch-backports repository.

 * Package name: streamlink
   Version : 0.12.1+dfsg-1~bpo9+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documenta
  streamlink - CLI for extracting video streams from various websites to
a video

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.12.1+dfsg-1~bpo9+1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the last upload:
streamlink (0.12.1+dfsg-1~bpo9+1) stretch-backports; urgency=low

  * Rebuild for stretch-backports.
  * Recommends all supported players (suggested by #898351)

 -- Alexis Murzeau <amub...@gmail.com>  Sat, 19 May 2018 18:34:11 +0200

streamlink (0.12.1+dfsg-1) unstable; urgency=low

  * Recommends vlc as default player
  * Test manpage and docs installation
  * New upstream version 0.12.1+dfsg
  * Bump standard version to 4.1.4, no change required
  * Remove X-Python3-Version not needed anymore

 -- Alexis Murzeau <amub...@gmail.com>  Thu, 10 May 2018 00:45:54 +0200


Differences from testing package (0.12.0+dfsg-1):
  * Recommends all supported players (suggested by #898351)
  * Use debhelper 10 as 11 is not available.
  * pycountry: add patch to support stable provided version (1.8)
  * d/control: require pycountry <= 1.15


Regards,
--
 Alexis Murzeau
 PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



Bug#901419: RFS: streamlink/0.13.0+dfsg-1

2018-06-12 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 0.13.0.

 * Package name: streamlink
   Version : 0.13.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.13.0+dfsg-1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the last upload:
streamlink (0.13.0+dfsg-1) unstable; urgency=low

  * Recommends all supported players (Closes: #898351)
  * Update upstream signing key with 0xE3DB9E282E390FA0
  * New upstream version 0.13.0+dfsg
  * Patches changes:
- Use font-awesome 5 shim
- Use modernizr.js symlink
- Fix tests executions by adding missing mpd files
- Avoid lambda with freezegun to support <= v0.3.9
- rtlxl plugin: use raw string to fix escape sequences
- Forwarded new patches to upstream
- Update patch remove_new_version_check
  * Add new build dependencies freezegun, recommonmark and isodate
  * Update autopkgtests for font files and js symlinks

 -- Alexis Murzeau   Tue, 12 Jun 2018 23:52:56 +0200


Regards,
--
 Alexis Murzeau
 PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F








signature.asc
Description: OpenPGP digital signature


Bug#901419: RFS: streamlink/0.13.0+dfsg-1

2018-06-20 Thread Alexis Murzeau
Hi,

Le 20/06/2018 à 03:54, Paul Wise a écrit :
> On Wed, Jun 13, 2018 at 6:26 AM, Alexis Murzeau wrote:
> 
>> I am looking for a sponsor for my package "streamlink" for a new
>> upstream version 0.13.0.
> 
> Uploaded.

Thanks for uploading.

> 
> I noticed the tests print a bunch of deprecation warnings, please talk
> to upstream about that if you didn't already.
> 

Deprecation warnings are most of them about a deprecated logger and
triggered in tests on this logger (tests/test_log.py::TestDeprecatedLogger)

There are some other warnings about inspect.getargspec that I just
forwarded to upstream.


-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#902641: RFS: streamlink/0.14.2+dfsg-1

2018-06-30 Thread Alexis Murzeau
retitle 902641 "RFS: streamlink/0.14.2+dfsg-1"
thanks

Dear mentors,

I'm updating this RFS for a new upload with a new upstream version 0.14.2.

I am looking for a sponsor for my package "streamlink" for a new
upstream version 0.14.2.

 * Package name: streamlink
   Version : 0.14.2+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.14.2+dfsg-1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the last upload:
streamlink (0.14.2+dfsg-1) unstable; urgency=low

  * New upstream version 0.14.2+dfsg

 -- Alexis Murzeau   Sun, 01 Jul 2018 00:48:11 +0200

streamlink (0.14.0+dfsg-1) unstable; urgency=low

  * tests: fix shellcheck warnings
  * docs: move fonts-font-awesome and lib-modernizr to recommends
  * docs: revert to fonts-font-awesome v4
  * tests: check modernizr symlink in check_docs and refactor it
  * New upstream version 0.14.0+dfsg
  * Remove patches applied upstream: freezegun, missing test files,
escape sequences
  * Update patches

 -- Alexis Murzeau   Fri, 29 Jun 2018 00:16:46 +0200



Note: currently, the command4 autopkgtest test will fail on unstable
until fonts-font-awesome is reverted to v4 (merge requests to do this
are pending).
This is because fonts-font-awesome v5 has breaking changes including a
fonts rework.
See also: #899124.

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Re: Help with cmake / Qt5 migration needed

2017-10-20 Thread Alexis Murzeau
Hi,

Le 19/10/2017 18:56, Andreas Tille a écrit :
> Hi Andrey,
>
> On Thu, Oct 19, 2017 at 07:16:47PM +0500, Andrey Rahmatullin wrote:
>> On Thu, Oct 19, 2017 at 04:11:49PM +0200, Andreas Tille wrote:
>>> The FIND_PACKAGE line was patched by me where I naively did
>>>
>>>s/Qt4 REQUIRED/Qt5 REQUIRED/
>> find_package(Qt5 REQUIRED COMPONENTS Core Widgets)
>> or something.
>> This doesn't guarantee that the code will compile, of course.
>
> This helped me a but further I was also able to fix some more issues.
>
> Now I'm struck by
>
> CMake Error at src/qtbeads/CMakeLists.txt:83 (QT5_ADD_TRANSLATION):
>   Unknown CMake command "QT5_ADD_TRANSLATION".
>
>
> here also my naive s/QT4_ADD_TRANSLATION/QT5_ADD_TRANSLATION/
> did not worked an my web search was not successful. :-(

I have migrated from Qt4 to Qt5 with CMake and found my way with [1] and
[2]:

find_package(Qt5 REQUIRED COMPONENTS Core Gui Widgets LinguistTools)

# Use the ones you need
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)

# LinguistTools is needed in find_package to make this macro available
qt5_create_translation(QM_FILES ${SRC_FILES} ${HEADER_FILES} ${UI_FILES}
${TS_FILES})

add_executable(PROGRAM ${SRC_FILES} ${HEADER_FILES} ${QM_FILES}
${QRC_FILES} ${UI_FILES})
target_link_libraries(PROGRAM Qt5::Core Qt5::Widgets Qt5::Gui)
-

AUTOMOC inspect cpp source files to find Q_OBJECT or Q_GADGET.
AUTOUIC inspect cpp source files for #include of "ui_*.h" and the
existence of a .ui file to run uic on them.
AUTORCC run rcc on *.qrc sources files

[1] https://cmake.org/cmake/help/v3.0/manual/cmake-qt.7.html
[2] http://doc.qt.io/qt-5/cmake-manual.html

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Re: Help with cmake / Qt5 migration needed

2017-10-20 Thread Alexis Murzeau
2017-10-20 11:03 GMT+02:00 Andreas Tille <andr...@an3as.eu>:
>
> but I'm somehow missing some proper -I option to tell gcc where to seek
> for the qt5 includes.  I'm afraid that the cmake configuration was not
> fully successful.  Any further hints?
>
According to [1], #include  should work.
Include directories should be set by target_link_directories(program
Qt5::Core [...]).
Maybe QT_ variables like ${QT_LIBRARIES} are not set as expected.

[1] http://doc.qt.io/qt-5/qdebug.html

--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F


Bug#878268: RFS: streamlink/0.9.0-1 [ITP]

2017-12-30 Thread Alexis Murzeau
Le 30/12/2017 à 02:35, Paul Wise a écrit :
> 
> No, I would suggest to set the binary package version for livestreamer
> only, that way you can drop the transitional package after buster
> without having to keep the epoch around forever. You can set the
> binary package version by passing the -v option to dpkg-gencontrol via
> dh_gencontrol:
> 
> include /usr/share/dpkg/pkg-info.mk
> 
> override_dh_gencontrol:
> dh_gencontrol -plivestreamer -- -v1.12.2+streamlink+$(DEB_VERSION)
> dh_gencontrol --remaining-packages
> 

Ok, thanks for your advice :)

I uploaded streamlink version 0.9.0+dfsg.2-3:

dget
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.9.0+dfsg.2-3.dsc


Changes since last uploaded one:

streamlink (0.9.0+dfsg.2-3) unstable; urgency=low

  * Fix livestreamer description length

streamlink (0.9.0+dfsg.2-2) unstable; urgency=low

  * Add symlink in livestreamer transitional package
  * Override livestreamer package version to be greater than the one in
stable
  * Enhance livestreamer transitional package description

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#878268: RFS: streamlink/0.9.0-1 [ITP]

2017-12-30 Thread Alexis Murzeau
Le 31/12/2017 à 02:04, Paul Wise a écrit :
> On Sat, 2017-12-30 at 22:04 +0100, Alexis Murzeau wrote:
> 
>> https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.9.0+dfsg.2-3.dsc
> 
> Uploaded to NEW, thanks a lot for your contribution, it saved me from
> having yet another package removed from Debian on my system :)
> 

Thank you very much too :)

The upload failed because the orig tarball was not included maybe
because its -3 ?

The changes since version 0.8.1-2 should be included too I guess as this
one has the Closes on the ITP.

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#878268: RFS: streamlink/0.9.0-1 [ITP]

2017-12-29 Thread Alexis Murzeau
Le 29/12/2017 à 05:21, Paul Wise a écrit :
> On Fri, Dec 29, 2017 at 9:43 AM, Alexis Murzeau wrote:
> 
>> https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.9.0+dfsg.2-1.dsc
> 
> Uploaded to NEW.
> 
> https://ftp-master.debian.org/new.html

Thanks for your support.

> 
> For future uploads, please file an RFS bug as usual.
> 
> Please consider working through the other issues I mentioned as you
> find time. Most of what I mentioned can just be forwarded to upstream
> issues, I guess they would welcome patches if you have the time
> though.

Yes I will do that and consider check-all-the-things to be run at each
version.

> 
>> In uploaded version, I've added a transitional package for livestreamer
>> as they are compatible.
> 
> You have not included a livestreamer symlink in /usr/bin, please
> address that in your next upload.

Indeed my bad. Also, the package got rejected because of a higher
version in stable for the package livestreamer.

Does the way to handle that is to add an epoch version, so it become
1:0.9.0~dfsg.2-2 ?

> 
>> You mean, so that `debian/streamlink.links` and
>> `debian/streamlink.manpages` can be removed ?
> 
> Right.
> 


-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#888312: RFS: streamlink/0.10.0+dfsg-1

2018-01-24 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 0.10.0.

 * Package name: streamlink
   Version : 0.10.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documenta
  streamlink - CLI for extracting video streams from various websites to
a video

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.10.0+dfsg-1.dsc

More information about hello can be obtained from
https://streamlink.github.io/

Changes since the last upload:
streamlink (0.10.0+dfsg-1) unstable; urgency=low

  * Bump standard version to 4.1.3, no change required
  * Bump debhelper compat to 11
  * Add upstream metadata in d/u/metadata
  * Add information about binary packages in d/README.source
  * Add autopkgtest tests running streamlink via cli
  * Remove dh_builddeb override, not needed in Debian
  * Update d/copyrights to 2018
  * Remove proxy in d/rules (already handled by pybuild)
  * Fix bad git repository in VCS fields of d/control
  * New upstream version 0.10.0+dfsg
  * Apply check-all-the-things suggestions on debian/ folder

 -- Alexis Murzeau <amub...@gmail.com>  Tue, 23 Jan 2018 23:55:45 +0100

Regards,
--
 Alexis Murzeau
 PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F





signature.asc
Description: OpenPGP digital signature


Bug#878268: RFS: streamlink/0.9.0-1 [ITP]

2017-12-28 Thread Alexis Murzeau
Hi,

Le 18/12/2017 à 07:26, Paul Wise a écrit :
> On Thu, Nov 23, 2017 at 5:41 AM, Alexis Murzeau wrote:
> 
>> https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.9.0-1.dsc
> 
> Here is a review:
> 
> These issues need to be resolved before upload:
> 
> I think docs/_static/flattr-badge.png is probably non-free. Upstream
> stopped using a while ago so it should just get removed from their
> repository and the Debian tarball.>
> These issues would be nice to fix at some point:
> 
> There has been a new Debian Policy version since your upload.


Thanks for your review.
I have uploaded a new version of the streamlink package, available with:

dget
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.9.0+dfsg.2-1.dsc

I removed the flattr image and font-awesome fonts using Files-Excluded
in the copyright file.
I've also asked upstream to remove the flattr image
(https://github.com/streamlink/streamlink/pull/1395)

Here are the changes since 0.9.0-1:
  * Exlude flattr-badge and font-awesome which might not be dfsg-compatible
  * Bump standard version, no change required
  * Remove streaming platform references in description
  * Add fonts-roboto-slab to recommends
  * Add transitional package livestreamer

> 
> Please add some upstream metadata:
> 
> https://wiki.debian.org/UpstreamMetadata
> 
> Personally, I would drop the last paragraph of the description, or
> possibly just the first sentence of the last paragraph of the
> description.

Done in uploaded version. I've only removed the reference to twitch and
kept the general notice.

> 
> It would be nice to have a transitional package that also contains a
> symlink to the new name for the binary (assuming that they are
> command-line compatible), so that external wrappers for livestreamer
> still work with streamlink.

In uploaded version, I've added a transitional package for livestreamer
as they are compatible.

> 
> For use_debian_fonts, please note that Roboto Slab is now available in Debian.

I updated the patch comment and added a recommends dependency on
fonts-roboto-slab.

> 
> Please note that python3-iso3166 is now available in Debian, so you
> can switch back to the default.
> 
> Please note that python3-pycryptodome is now available in Debian, so
> you can switch back to the default.>
> I'd suggest dropping the override_dh_builddeb for Debian.
> 
> It would be nice if the upstream build system would also install the
> manual pages and binary in /usr/bin, you might want to send them a
> patch.

You mean, so that `debian/streamlink.links` and
`debian/streamlink.manpages` can be removed ?

> 
> Automatic checks:
> 
> check-all-the-things:
> 
> $ codespell --quiet-level=3 .
> 
> 
> $ env PERL5OPT=-m-lib=. duck
> ...
> I: debian/copyright:90: URL:
> http://www.apache.org/licenses/LICENSE-2.0: INFORMATION
> (Certainty:possible)
>The web page at http://www.apache.org/licenses/LICENSE-2.0 works,
> but is also available via https://www.apache.org/licenses/LICENSE-2.0,
> please consider switching to HTTPS urls.
> 
> I: debian/copyright:102: URL: http://scripts.sil.org/OFL: INFORMATION
> (Certainty:possible)
>The web page at http://scripts.sil.org/OFL works, but is also
> available via https://scripts.sil.org/OFL, please consider switching
> to HTTPS urls.
> 
> $ find . -type f \( -iname '*.ttf' -o -iname '*.otf' -o -iname '*.sfd'
> -o -iname '*.pfa' -o -iname '*.pfb' -o -iname '*.bdf' -o -iname '*.pk'
> -o -iname '*.ttc' -o -iname '*.pcf' \) -exec
> check-font-embedding-restrictions {} +
> These fonts in Debian main/contrib have embedding
> restrictions, which are not DFSG compatible:
> 
> ./docs/_themes/sphinx_rtd_theme_violet/static/fonts/FontAwesome.otf: 0x0004
> ./docs/_themes/sphinx_rtd_theme_violet/static/fonts/fontawesome-webfont.ttf:
> 0x0004
> 
> https://www.microsoft.com/typography/otspec/os2.htm#fst
> 
> $ find . -type f \( -iname '*.ttf' -o -iname '*.otf' -o -iname
> '*.woff' -o -iname '*.sfd' -o -iname '*.pfa' -o -iname '*.pfb' -o
> -iname '*.bdf' -o -iname '*.pk' -o -iname '*.ttc' -o -iname '*.pcf' \)
> -exec fontlint {} \;
> 
> 
> # If you contact the owners of these keys, please point out OpenPGP
> best practices:
> # https://help.riseup.net/en/security/message-security/openpgp/best-practices
> $ find . -type f -iname '*.asc' -exec cat {} + | hot dearmor | hokey lint
> ...
> Checking user-ID- and user-attribute-related items:
>   Charlie Drage <char...@charliedrage.com>:
> Self-sig hash algorithms: [SHA-1]
> ...
> Checking subkeys:
> ...
>   fpr: CDEE D514 4E91 E633 6D0B  59CC 2523 80C9 D3E8 71F7
> ...
> binding sig hash algorithms: [SHA-1]
> ...
> cross-cert hash algorithms: [SH

Re: Bug#886291: src:pycryptodome: Building both pycryptodome and pycryptodomex: duplicate dbgsym package

2018-08-16 Thread Alexis Murzeau
Hi,

On 15/08/2018 16:29, Simon McVittie wrote:
> On Wed, 15 Aug 2018 at 14:30:17 +0200, Alexis Murzeau wrote:
>> I'm trying to find a way to build 2 times a python source package to
>> generate 2 binary packages which both contains .so libs and this cause 2
>>  duplicated dbgsym packages with same files.
> 
> The Linux kernel had this problem recently, and it seems to have been
> solved by adding the version number as a "salt" that will affect
> build IDs:
> https://sources.debian.org/src/linux/4.17.14-1/debian/patches/features/all/kbuild-add-build-salt-to-the-kernel-and-modules.patch/
> 
> Perhaps you could do similar by including a string in these shared
> libraries (a new, unused global variable or something) that mentions
> either Crypto or Cryptodome, as appropriate for the build, similar to
> the tricks that used to be used to include a RCS/CVS/svn "$Id$" string
> in binaries? (In the kernel implementation it's an ELF note, but a global
> constant string would be equally valid, as long as it doesn't get deleted
> by optimization.)
> 
> Or you could have a python{,3}-pycryptodome-common package containing the
> parts that are the same for both namespaces, if their size is significant;
> or you could make python{,3}-pycryptodome (the one that overrides the
> standard library's Crypto module) depend on python{,3}-pycryptodomex in
> order to share its copies of the parts that end up the same.
> 
> The kernel patch refers to something in RPM that incorporates the package
> name and version in the build ID, but this probably wouldn't work within
> a single source package.
> 
>> Maybe only some .so libraries change between both. I don't think it's
>> safe to assume upstream won't make a change causing some of these .so to
>> change between pycryptodome and pycrytodomex.
> 
> If you decide to share the libraries that are the same despite this,
> please add checks to the build to compare them, so that the build will
> fail if they start to be different. That would catch those upstream
> changes.
> 
>> I think the best would be to have only on dbgsym package for both
>> python{,3}-pycryptodome and python{,3}-pycryptodomex.
> 
> This is what I did in openarena, if it helps:
> https://salsa.debian.org/games-team/openarena/commit/deaa9fc3db68733bfcb6b5edd00c97a896c3aeac
> 
> If the shared libraries that are duplicated in openarena and
> openarena-server were large, I would have added an openarena-common
> package instead, but they're so small when compared with an entire game
> that it didn't seem worth going through NEW for that.
> 
Thanks for your input.

Binary .so libraries represent around 1MB out of 19MB.
I will try to either change the build id with a salt or make only one
dbgsym package, whichever is the easier (given a single dbgsym package
would also need a test to ensure there is no missing files).

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#849691: RFS: gnome-shell-extension-radio/8-1 [ITP] -- GNOME shell

2018-08-23 Thread Alexis Murzeau
Hi,

On 03/02/2018 14:29, Tobias Frost wrote:
> Control: tags -1 moreinfo
> 
> This have been discussed on IRC, so I tag this moreinfo until you find
> time to update.
> 
> 22:45 < coldtobi> zapashcanon: currently I'm short on time, but I can
> reserve some time in the next few days. I guess mapreri gave you enough
> pointers to fix up the package a bit... Also please consilitate
> d/copyright a bit. You should at least join sections with same
> authors. 
> 22:45 < coldtobi> reply to the RFS bug when ready.  
> 22:46 < coldtobi> (consolidate same authors and same license of
> course) 
> 22:47 < coldtobi> note that you can also consilidate the sections even
> if the set of the authors are not the same.  
> 23:17 < zapashcanon> I'll fix a few things upstream, ask for a new
> release (as there's some other new feature it'll be OK) and update the
> package 
> 23:17 < zapashcanon> thanks 
> 
> One important point is that the d/copyright file's content needs to
> be backed up by the file content. If reality is different, patch
> the file to match it first and not only d/copyright:
> 
> (refering to)
> 22:03 < mapreri> mattia@warren /tmp/gnome-shell-extension-radio-8 %
> grep -A3 README debian/copyright
> 22:03 < mapreri> Files: README.md
> 22:03 < mapreri> Copyright: 2014-2017 hslbck 
> 22:03 < mapreri>2016-2017 Léo Andrès 
> 22:03 < mapreri> License: GPL-3+
> 22:03 < mapreri> mattia@warren /tmp/gnome-shell-extension-radio-8 %
> grep Andr README.md
> 22:03 < mapreri> 1 mattia@warren /tmp/gnome-shell-extension-radio-8
> 22:03 < mapreri> zapashcanon: on which basis do you say that Leo Andres
> has a copyright over the readme
> 22:03 < zapashcanon> it's me 
> 22:03 < zapashcanon> I wrote almost all of it
> 22:03 < zapashcanon> see the github history
> 22:04 < mapreri> Well, "github history" is not a thing we see, what I
> see is the content of the tarball
> 
> 
> --
> tobi
> 

I'm not sure your message were forwarded to the submitter.
Adding Léo to the recipients.

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Re: Debian package transition: Rename package and reuse old name with new content

2018-08-23 Thread Alexis Murzeau
Hi,

Thanks for your replies.

On 19/08/2018 12:18, Simon McVittie wrote:
> According to apt-file(1), python3-pycryptodome contains
> /usr/lib/python3/dist-packages/Cryptodome, which you use via "import
> Cryptodome". If you're renaming packages anyway, would it be better for
> the package containing /usr/lib/python3/dist-packages/Cryptodome to be
> the python3-cryptodome package?
>
> (My reasoning is that the name you import is the name of the "ABI",
> the same way the ABI of, for example, libdbus is represented by its
> SONAME libdbus-1.so.3, which we translate into libdbus-1-3 as a Debian
> package name.)

The naming pycryptodome and pycryptodomex are the ones used by upstream
on PyPi. So the goal is to have the same names as upstream uses for
these too different packages. pycryptodome on PyPi use
`dist-packages/Crypto` which is meant to be a drop-in replacement for
python-crypto.


> It's OK for packages in unstable to be uninstallable or unbuildable for
> a short time, as long as Depends/Breaks/Conflicts or RC bugs ensure that
> the brokenness doesn't propagate into testing.
>
> For instance, if you are going ahead with your renaming plan, you could
> give the new packages a versioned Breaks on python3-httpsig (<< H) and
> python3-pysnmp4 (<< S), where H is the first version of python3-httpsig
> that has been modified to use/expect the new (py)cryptodome(x) package
> layout, and S is the corresponding version of python3-pysnmp4.
>
> smcv
>

On 20/08/2018 16:11, Gianfranco Costamagna wrote:
> 
> 
>> I'm not sure of the transition policies when handling transitions on
>> testing and unstable only (ie: not involving stable).
>> But that should ensure there is no breakage between package in the archive.
> 
> 
> if you are just renaming a package,, and the reverse-deps are not too many,
> better avoid transitional packages, ask for a transition slot on release.d.o,
> open bugs (MBF?) with patches, and raise to serious once RT acks the 
> transition.
> 
> G.
> 

Ok thanks, I will consider the transition slot and adding breaks to the
new pycryptodome packages over the old reverse-dependencies.
Actually, pycryptodome is under the ongoing transition of python 3.7 so
any package changes will wait the end of that one.

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Debian package transition: Rename package and reuse old name with new content

2018-08-18 Thread Alexis Murzeau
Hi mentors,

I'm trying to find the best solution for a package renaming of pycryptodome.
This package exists for both python3 and python2. For simplicity, I will
talk only about python3 packages.

The package is not in stable.

Currently, we have in testing and unstable:
- python3-pycryptodome
- python3-httpsig which depends on "python3-pycryptodome"
- python3-pysnmp4 which depends on "python3-pycryptodome"

To fix #886291, we should:
- Rename python3-pycryptodome to python3-pycryptodomex
- Reuse python3-pycryptodome package name to package a non compatible
python3 module.

The rationale of this rename + reuse is that currently,
python3-pycryptodome contains, in fact, the pycryptodomex module. So
renaming that one + introduce the new package for the pycryptodome module.

I already though of a solution on 886...@bugs.debian.org use multiple
dependencies with "|" but the package must still be buildable with the
first dependency (sbuild ignore dependencies after "|" for example)

So I though of this:
- Rename python3-pycryptodome to python3-pycryptodomex
  - Put versioned breaks, replaces on the old python3-pycryptodome
package
- Add python3-pycryptodome to build pycryptodome module
  - Add a dependency on python3-pycryptodomex to serve as also as a
transitional package

Then, when all of pycryptodome reverse dependencies have moved to
python3-pycrytodomex and moved to testing, remove the
python3-pycryptodome dependency on python3-pycryptodomex.

I'm not sure of the transition policies when handling transitions on
testing and unstable only (ie: not involving stable).
But that should ensure there is no breakage between package in the archive.

Any though ?

Kind regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#903433: RFS: streamlink/0.14.2+dfsg-1~bpo9+1

2018-07-09 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors and backports developers,

I am looking for a sponsor for my package "streamlink" into Debian
stretch-backports repository.

 * Package name: streamlink
   Version : 0.14.2+dfsg-1~bpo9+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documenta
  streamlink - CLI for extracting video streams from various websites to
a video

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.14.2+dfsg-1~bpo9+1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the last backport upload (0.12.1+dfsg-1~bpo9+1):
streamlink (0.14.2+dfsg-1~bpo9+1) stretch-backports; urgency=medium

  * Rebuild for stretch-backports.
  * pybuild test: implement d/pybuild.testfiles in d/rules

 -- Alexis Murzeau   Mon, 09 Jul 2018 23:49:53 +0200

streamlink (0.14.2+dfsg-1) unstable; urgency=low

  * New upstream version 0.14.2+dfsg

 -- Alexis Murzeau   Sun, 01 Jul 2018 00:48:11 +0200

streamlink (0.14.0+dfsg-1) unstable; urgency=low

  * tests: fix shellcheck warnings
  * docs: move fonts-font-awesome and lib-modernizr to recommends
  * docs: revert to fonts-font-awesome v4
  * tests: check modernizr symlink in check_docs and refactor it
  * New upstream version 0.14.0+dfsg
  * Remove patches applied upstream: freezegun, missing test files,
escape sequences
  * Update patches

 -- Alexis Murzeau   Fri, 29 Jun 2018 00:16:46 +0200

streamlink (0.13.0+dfsg-1) unstable; urgency=low

  * Recommends all supported players (Closes: #898351)
  * Update upstream signing key with 0xE3DB9E282E390FA0
  * New upstream version 0.13.0+dfsg
  * Patches changes:
- Use font-awesome 5 shim
- Use modernizr.js symlink
- Fix tests executions by adding missing mpd files
- Avoid lambda with freezegun to support <= v0.3.9
- rtlxl plugin: use raw string to fix escape sequences
- Forwarded new patches to upstream
- Update patch remove_new_version_check
  * Add new build dependencies freezegun, recommonmark and isodate
  * Update autopkgtests for font files and js symlinks

 -- Alexis Murzeau   Tue, 12 Jun 2018 23:52:56 +0200


Differences from testing package (0.14.2+dfsg-1):
  * pybuild test: implement d/pybuild.testfiles in d/rules
  * Use debhelper 10 as 11 is not available.
  * pycountry: add patch to support stable provided version (1.8)
  * d/control: require pycountry <= 1.15


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#892417: RFS: streamlink/0.11.0+dfsg-1

2018-03-11 Thread Alexis Murzeau
Le 09/03/2018 à 03:14, Paul Wise a écrit :
> On Fri, Mar 9, 2018 at 7:37 AM, Alexis Murzeau wrote:
> 
>> I am looking for a sponsor for my package "streamlink" for a new
>> upstream version 0.11.0.
> 
> Uploaded.
> 
> PS: if you would like to upload an official backport, feel free to
> file another RFS for that when it reaches testing.
> 

Thanks :)

About the backport, I'm keeping it in a unofficial repository as there
were not so much downloads. Now that this repository is advertised on
streamlink download page, I might reconsider this choice.

Shouldn't not so much used packages preferably not be backported (to
avoid maintenance costs to other involved parties) ?

If, in any case, unofficial backports are better made official, I can
surely target official backports repository.

Also, why should backports be uploaded after the unstable package enter
testing ?
To ensure there is a clean upgrade path from stable / stable-backport to
testing ?

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#892417: RFS: streamlink/0.11.0+dfsg-1

2018-03-08 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 0.11.0.

 * Package name: streamlink
   Version : 0.11.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documenta
  streamlink - CLI for extracting video streams from various websites to
a video

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.11.0+dfsg-1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the last upload:
streamlink (0.11.0+dfsg-1) unstable; urgency=low

  * Fix comments in d/rules.
  * Use streamlink's own donation page instead of opencollective one.
  * Fix random test failure caused by hexdump output optimization with
 wildcards.
  * Add example directory.
  * New upstream version 0.11.0+dfsg.
  * python3-socks is now required as a build dependency.

 -- Alexis Murzeau <amub...@gmail.com>  Fri, 09 Mar 2018 00:12:49 +0100

Regards,
--
 Alexis Murzeau
 PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F







signature.asc
Description: OpenPGP digital signature


Bug#894163: RFS: streamlink/0.11.0+dfsg-1~bpo9+1

2018-03-28 Thread Alexis Murzeau
Le 28/03/2018 à 03:46, Paul Wise a écrit :
> On Tue, 2018-03-27 at 22:49 +0200, Alexis Murzeau wrote:
> 
>> Can you post your logs ?
> 
> Attached.
> 
>> I cannot reproduce this error either with sbuild or pbuilder.
> 
> I guess the LANG/LC_ALL in your chroots has UTF-8 in the name,
> for some reason mine only has LANG=C LC_ALL=C.
> 
> Strangely, the RB infra builds fine with LANG=C LC_ALL=C:
> 
> https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/streamlink.html
> 
>> I previously encountered this encoding error and it should have been fixed
>> by debian/patches/0006-Avoid-use-of-non-ASCII-in-plugins.patch.
> 
> You only patched one of the UTF-8 files, not all of them:
> 
> $ file src/streamlink/plugins/* | grep -v ASCII
> src/streamlink/plugins/showroom.py:   Python script, UTF-8 
> Unicode text executable
> 
> This file includes some Chinese characters in the keys of a dict,
> so I don't think you will be able to patch them out.
> 
> $ grep -C3 --color='auto' -P -n "[^\x00-\x7F]" 
> src/streamlink/plugins/showroom.py
> 42-
> 43-# the "low latency" streams are rtmp, the others are hls
> 44-_rtmp_quality_lookup = {
> 45:"オリジナル画質": "high",
> 46:"オリジナル画質(低遅延)": "high",
> 47-"original spec(low latency)": "high",
> 48-"original spec": "high",
> 49:"低画質": "low",
> 50:"低画質(低遅延)": "low",
> 51-"low spec(low latency)": "low",
> 52-"low spec": "low"
> 53-}
> 
> So upstream needs to load the plugin files using the UTF-8 encoding.
> 

I think I have found the cause.
I found that the failing test was loading python modules using
imp.load_module with possibly closed file descriptor.
In that case, python reopen the file descriptor using open() which use
the system encoding by default (here, ASCII).

This does not always happen reliably and I'm not sure why, but I think
this the reason we have not the same test behavior.

I've replaced the patch 0006-Avoid-use-of-non-ASCII-in-plugins.patch
with another patch ensuring load_module is given an open file descriptor.

I've uploaded the resulting package on mentors.debian.net.
Does it work for you ? Thanks :)

dget
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.11.0+dfsg-1~bpo9+1.dsc


PS: Note that this uploaded package does not contain the build twice in
a row fix.

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#894163: RFS: streamlink/0.11.0+dfsg-1~bpo9+1

2018-03-26 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors and backports developers,

I am looking for a sponsor for my package "streamlink" into Debian
stretch-backports repository.

 * Package name: streamlink
   Version : 0.11.0+dfsg-1~bpo9+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documenta
  streamlink - CLI for extracting video streams from various websites to
a video

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.11.0+dfsg-1~bpo9+1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the last upload:
streamlink (0.11.0+dfsg-1~bpo9+1) stretch-backports; urgency=low

  * Rebuild for stretch-backports.

 -- Alexis Murzeau <amub...@gmail.com>  Sat, 10 Mar 2018 00:46:13 +0100

streamlink (0.11.0+dfsg-1) unstable; urgency=low

  * Fix comments in d/rules.
  * Use streamlink's own donation page instead of opencollective one.
  * Fix random test failure caused by hexdump output optimization with
 wildcards.
  * Add example directory.
  * New upstream version 0.11.0+dfsg.
  * python3-socks is now required as a build dependency.

 -- Alexis Murzeau <amub...@gmail.com>  Fri, 09 Mar 2018 00:12:49 +0100


Differences from testing package (0.11.0+dfsg-1):
  * Use debhelper 10 as 11 is not available.
  * pycountry: add patch to support stable provided version (1.8)
  * d/control: require pycountry <= 1.15


Regards,
--
 Alexis Murzeau
 PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F









signature.asc
Description: OpenPGP digital signature


Bug#902641: RFS: streamlink/0.14.0+dfsg-1

2018-06-28 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 0.14.0.

 * Package name: streamlink
   Version : 0.14.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_0.14.0+dfsg-1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the last upload:
streamlink (0.14.0+dfsg-1) unstable; urgency=low

  * tests: fix shellcheck warnings
  * docs: move fonts-font-awesome and lib-modernizr to recommends
  * docs: revert to fonts-font-awesome v4
  * Check modernizr symlink in check_docs and refactor it
  * New upstream version 0.14.0+dfsg
  * Remove patches applied upstream: freezegun, missing test files,
escape sequences
  * Update patches

 -- Alexis Murzeau   Fri, 29 Jun 2018 00:16:46 +0200


Note: currently, the command4 autopkgtest test will fail on unstable
until fonts-font-awesome is reverted to v4 (merge requests to do this
are pending).
This is because fonts-font-awesome v5 has breaking changes including a
fonts rework.
See also: #899124.

Regards,
--
 Alexis Murzeau
 PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F






signature.asc
Description: OpenPGP digital signature


Bug#926349: RFS: streamlink/1.0.0+dfsg-1~bpo9+1

2019-04-03 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors and backports developers,

I am looking for a sponsor for my package "streamlink" into Debian
stretch-backports repository.

 * Package name: streamlink
   Version : 1.0.0+dfsg-1~bpo9+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams at
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.0.0+dfsg-1~bpo9+1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the last backport upload (0.14.2+dfsg-1~bpo9+1):
streamlink (1.0.0+dfsg-1~bpo9+1) stretch-backports; urgency=medium

  * Rebuild for stretch-backports.

 -- Alexis Murzeau   Tue, 02 Apr 2019 22:22:49 +0200

streamlink (1.0.0+dfsg-1) unstable; urgency=medium

  * docs: mark Multi-Arch: foreign
  * Update d/copyright years to 2019
  * Bump standard version to 4.3.0, no change required
  * New upstream version 1.0.0+dfsg
  * Update patch remove_new_version_check
  * Update d/README.source to use gbp pq

 -- Alexis Murzeau   Thu, 31 Jan 2019 20:09:50 +0100


Differences from testing package (1.0.0+dfsg-1):
  * pybuild test: implement d/pybuild.testfiles in d/rules
  * Use debhelper 10 as 11 is not available.
  * pycountry: add patch to support stable provided version (1.8)
  * d/control: require pycountry <= 1.15
  * pybuild test: implement d/pybuild.testfiles in d/rules (pybuild in
stable does not support that file)


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F




signature.asc
Description: OpenPGP digital signature


Bug#921035: RFS: streamlink/1.0.0+dfsg-1

2019-01-31 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.0.0.

 * Package name: streamlink
   Version : 1.0.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.0.0+dfsg-1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload:
streamlink (1.0.0+dfsg-1) unstable; urgency=medium

  * docs: mark Multi-Arch: foreign
  * Update d/copyright years to 2019
  * Bump standard version to 4.3.0, no change required
  * New upstream version 1.0.0+dfsg
  * Update patch remove_new_version_check
  * Update d/README.source to use gbp pq

 -- Alexis Murzeau   Thu, 31 Jan 2019 20:09:50 +0100


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F




signature.asc
Description: OpenPGP digital signature


Re: Bug#926180: scilab: FTBFS on all - New trouble - upstream bugfix release while in freeze

2019-05-12 Thread Alexis Murzeau
Hi,

Le 12/05/2019 à 22:10, Julien Puydt a écrit :
> Hi,
> 
> On 12/05/2019 11:46, Alexis Murzeau wrote:
> 
>> I saw that there is a bugfix release 6.0.2 with many fixes [0].
> 
> I had started to package 6.0.2 on salsa already in february.

I was wondering, will such bug-fix upstream release be accepted in
buster, now that we are in full freeze ?
That bug-fix release seems a welcomed version given the many bugs fixed
since 6.0.1, but it is not a small targeted fix release.

I'm adding debian-mentors for advice about this.

[0]
https://help.scilab.org/docs/6.0.2/en_US/CHANGES.html#Bugs_fixed_in_6.0.2

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



Bug#929467: RFS: tfortune-1.0.0 [ITP]

2019-06-01 Thread Alexis Murzeau
Hi,

Le 01/06/2019 à 13:36, Andre Noll a écrit :> On Fri, May 31, 17:32, Adam
Borowski wrote
>> On Fri, May 24, 2019 at 08:57:49AM +0200, Andre Noll wrote:
>>>  * Package name: tfortune
>>>Version : 1.0.0
>>
>>> git clone git://git.tuebingen.mpg.de/tfortune/
>>
>> Hi!
>> I'm afraid your packaging unnecessarily reinvents a good part of usual
>> tools, and does this wrong.  For example:
>> * directories have non-standard permissions, and this affects common
dirs as
>>   well
>
> Oops, this was indeed broken. Should be fixed now.
>
I think Adam meant to not implement low level makefile targets yourself,
but use dh like this:
```
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@

override_dh_auto_configure:
dh_auto_configure -- \
  --bindir=\$${prefix}/games \
  --datadir=\$${prefix}/share/games
```

Every low level targets are handled by dh and you can override some of
them using `override_dh_*`.
Here override_dh_auto_configure override the configure step to use game
specific directories. This is what is done for the warzone2100 game package.

Actually, this simple debian/rules file above will work and let dh
handle all issues about md5, permissions, hardening CFLAGS and maybe
make the build reproducible too.

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#930393: RFS: aqemu/0.9.2-2.3 [NMU] [RC] -- Fix #927126 including suggestion from #929342 - aqemu: after updating can't open VMs

2019-06-11 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: important
X-Debbugs-CC: Ignace Mouzannar 
X-Debbugs-CC: Abhijith PA 

Dear mentors,

I am looking for a sponsor for a NMU of "aqemu" to fix this RC bug:
#927126  - aqemu: after updating can't open VMs [0].
This bug was fixed in previous NMU aqemu/0.9.2-2.2 bug after discussion
with release team in #929342 [1], I modified the fix before being able
to migrate to buster.

This NMU remove references to VLANs in the description texts.

The maintainer has not responded to this bug at all, nor other bugs on
this package since 26/07/2016.

[0] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927126
[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=929342#10

 * Package name: aqemu
   Version : 0.9.2-2.3
   Upstream Author : Andrey Rijov, Tobias Gläßer
 * URL : https://sourceforge.net/projects/aqemu/,
 https://github.com/tobimensch/aqemu
 * License : GPL-2+, BSD-3-clause
   Section : x11

It builds those binary packages:

  aqemu - Qt5 front-end for QEMU and KVM

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/aqemu


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/a/aqemu/aqemu_0.9.2-2.3.dsc

Changes since the last upload in unstable:
aqemu (0.9.2-2.3) unstable; urgency=medium

  * Non-maintainer upload.
  *
debian/patches/0002-Remove-VLAN-stuff-QEMU-doesn-t-support-it-anymore.patch
- Remove "Virtual LAN" references in description texts.

 -- Alexis Murzeau   Sun, 26 May 2019 01:03:06 +0200

Additional change since the version in buster:
aqemu (0.9.2-2.2) unstable; urgency=medium

  * Non-maintainer upload.
  *
debian/patches/0002-Remove-VLAN-stuff-QEMU-doesn-t-support-it-anymore.patch
- Fix "after updating can't open VMs": Remove vlan related options.
    (Closes: #927126)

 -- Alexis Murzeau   Fri, 17 May 2019 00:55:49 +0200

Source packages diff is in attachment and can be viewed here:
https://salsa.debian.org/amurzeau-guest/aqemu/compare/debian%2F0.9.2-2.2...debian%2F0.9.2-2.3


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F
From 26087ea3c3700bc5a019ae8cc0f84eb14954ef3d Mon Sep 17 00:00:00 2001
From: Alexis Murzeau 
Date: Sun, 26 May 2019 01:02:34 +0200
Subject: [PATCH] Remove Virtual LAN references in description texts

---
 debian/changelog |  8 
 ...N-stuff-QEMU-doesn-t-support-it-anymore.patch | 16 
 2 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index b65fecf..24da78a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+aqemu (0.9.2-2.3) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * debian/patches/0002-Remove-VLAN-stuff-QEMU-doesn-t-support-it-anymore.patch
+- Remove "Virtual LAN" references in description texts.
+
+ -- Alexis Murzeau   Sun, 26 May 2019 01:03:06 +0200
+
 aqemu (0.9.2-2.2) unstable; urgency=medium
 
   * Non-maintainer upload.
diff --git 
a/debian/patches/0002-Remove-VLAN-stuff-QEMU-doesn-t-support-it-anymore.patch 
b/debian/patches/0002-Remove-VLAN-stuff-QEMU-doesn-t-support-it-anymore.patch
index 1e1014c..53591b4 100644
--- 
a/debian/patches/0002-Remove-VLAN-stuff-QEMU-doesn-t-support-it-anymore.patch
+++ 
b/debian/patches/0002-Remove-VLAN-stuff-QEMU-doesn-t-support-it-anymore.patch
@@ -41,7 +41,7 @@ QEMU can work again.
 +  // -net nic[,macaddr=addr][,model=type][,name=name]
if( ui.CB_Network_Type->currentText() == "nic" )
 -  QMessageBox::information( this, tr("nic"), tr("-net 
nic[,vlan=n][,macaddr=addr][,model=type][,name=name] \nCreate a new Network 
Interface Card and connect it to VLAN n (n = 0 is the default). The NIC is an 
ne2k_pci by default on the PC target. Optionally, the MAC address can be 
changed to addr and a name can be assigned for use in monitor commands. If no 
\'-net\' option is specified, a single NIC is created. Qemu can emulate several 
different models of network card. Valid values for type are i82551, i82557b, 
i82559er, ne2k_pci, ne2k_isa, pcnet, rtl8139, e1000, smc91c111, lance and 
mcf_fec. Not all devices are supported on all targets. Use -net nic,model=? for 
a list of available devices for your target.") );
-+  QMessageBox::information( this, tr("nic"), tr("-net 
nic[,macaddr=addr][,model=type][,name=name] \nCreate a new Network Interface 
Card and connect it to Virtual LAN n (n = 0 is the default). The NIC is an 
ne2k_pci by default on the PC target. Optionally, the MAC address can be 
changed to addr and a name can be assigned for use in monitor commands. If no 
\'-net\' option is specified, a single NIC is created. Qemu can emulate several 
different models of network card. Valid v

Bug#930753: RFS: streamlink/1.1.1+dfsg-1~exp1

2019-06-19 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.1.1 targeting experimental distribution which was
requested by an user as twitch-gui require a newer streamlink.

 * Package name: streamlink
   Version : 1.1.1+dfsg-1~exp1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  livestreamer - transitional package - streamlink
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.1.1+dfsg-1~exp1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload in unstable:
streamlink (1.1.1+dfsg-1~exp1) experimental; urgency=low

  * New upstream version 1.1.1+dfsg
  * Update patch remove_new_version_check

 -- Alexis Murzeau   Wed, 19 Jun 2019 21:58:59 +0200


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F





signature.asc
Description: OpenPGP digital signature


Bug#928450: RFS: megadown/0~20190502+git734e46f-1 [RC]

2019-05-13 Thread Alexis Murzeau
Hi,

Just to inform you that Boyuan has closed the bug #927462 (with a non 
maintainer upload):

> Date: Mon, 13 May 2019 13:59:17 -0400
> Source: megadown
> Architecture: source
> Version: 0~20180705+git83c53dd-1.1
> Distribution: unstable
> Urgency: medium
> Maintainer: Vivia Nikolaidou 
> Changed-By: Boyuan Yang 
> Closes: 927462
> Changes:
>  megadown (0~20180705+git83c53dd-1.1) unstable; urgency=medium
>  .
>   * Non-maintainer upload.
>   * Cherry-pick upstream fix on link parsing logic to make the tool
>  actually usable. (Closes: #927462)


So I guess this RFS can be closed (unless something is still missing?).


#927462: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=927462
-- 
Alexis Murzeau



Bug#939167: RFS: streamlink/1.2.0+dfsg-1~bpo10+1

2019-09-01 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors and backports developers,

I am looking for a sponsor for my package "streamlink" into Debian
buster-backports repository.

 * Package name: streamlink
   Version : 1.2.0+dfsg-1~bpo10+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams at
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.2.0+dfsg-1~bpo10+1.dsc

More information about streamlink can be obtained from
https://streamlink.github.io/

Changes since the package in buster main (1.0.0+dfsg-1):
streamlink (1.2.0+dfsg-1~bpo10+1) buster-backports; urgency=medium

  * Rebuild for buster-backports.
  * Update d/README.source for buster-backports

 -- Alexis Murzeau   Sun, 01 Sep 2019 22:56:54 +0200

streamlink (1.2.0+dfsg-1) unstable; urgency=medium

  * New upstream version 1.2.0+dfsg
  * Update remove_new_version_check patch
  * Move from PyCrypto to pycryptodomex
  * Fix typo in manpage with patch plugins.pixiv-fix-doc-typo-thats-that-s

 -- Alexis Murzeau   Fri, 23 Aug 2019 19:31:42 +0200

streamlink (1.1.1+dfsg-1) unstable; urgency=medium

  * Use ignore-branch instead of having different gbp.conf over branches
  * Bump standard version to 4.4.0, no change required
  * Bump debhelper compat to 12
  * Remove livestreamer transitional package
  * Merge changes in experimental to unstable

 -- Alexis Murzeau   Tue, 16 Jul 2019 22:39:58 +0200

streamlink (1.1.1+dfsg-1~exp1) experimental; urgency=low

  * New upstream version 1.1.1+dfsg
  * Update patch remove_new_version_check

 -- Alexis Murzeau   Wed, 19 Jun 2019 21:58:59 +0200



Differences from testing package (1.2.0+dfsg-1):
  * Update d/README.source for buster-backports


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F





signature.asc
Description: OpenPGP digital signature


Bug#935537: RFS: streamlink/1.2.0+dfsg-1

2019-08-23 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.2.0.

 * Package name: streamlink
   Version : 1.2.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.2.0+dfsg-1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload in unstable:
streamlink (1.2.0+dfsg-1) unstable; urgency=medium

  * New upstream version 1.2.0+dfsg
  * Update remove_new_version_check patch
  * Move from PyCrypto to pycryptodomex
  * Fix typo in manpage with patch plugins.pixiv-fix-doc-typo-thats-that-s

 -- Alexis Murzeau   Fri, 23 Aug 2019 19:31:42 +0200

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F




signature.asc
Description: OpenPGP digital signature


Bug#932243: RFS: streamlink/1.1.1+dfsg-1

2019-07-16 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.1.1.

 * Package name: streamlink
   Version : 1.1.1+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.1.1+dfsg-1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload in unstable:
streamlink (1.1.1+dfsg-1) unstable; urgency=medium

  * Use ignore-branch instead of having different gbp.conf over branches
  * Bump standard version to 4.4.0, no change required
  * Bump debhelper compat to 12
  * Remove livestreamer transitional package
  * Merge changes in experimental to unstable

 -- Alexis Murzeau   Tue, 16 Jul 2019 22:39:58 +0200

streamlink (1.1.1+dfsg-1~exp1) experimental; urgency=low

  * New upstream version 1.1.1+dfsg
  * Update patch remove_new_version_check

 -- Alexis Murzeau   Wed, 19 Jun 2019 21:58:59 +0200


I've removed the livesteamer transitional package as testing is now
Bullseye.

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#946174: RFS: streamlink/1.3.0+dfsg-1~bpo10+1

2019-12-04 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
buster-backports repository.

 * Package name: streamlink
   Version : 1.3.0+dfsg-1~bpo10+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.3.0+dfsg-1~bpo10+1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload to buster-backports:
streamlink (1.3.0+dfsg-1~bpo10+1) buster-backports; urgency=medium

  * Rebuild for buster-backports.

 -- Alexis Murzeau   Wed, 04 Dec 2019 20:28:29 +0100

streamlink (1.3.0+dfsg-1) unstable; urgency=medium

  * Vcs-Git: move from github to salsa
  * New upstream version 1.3.0+dfsg
  * Remove pixiv typo patch, applied upstream
  * Bump standard version to 4.4.1, no change required
  * Use debhelper-compat in B-D instead of d/compat
  * Add "Rules-Requires-Root: no" in d/rules

 -- Alexis Murzeau   Sun, 24 Nov 2019 20:09:58 +0100

Differences from testing package (1.3.0+dfsg-1):
  * Update d/README.source for buster-backports

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F







signature.asc
Description: OpenPGP digital signature


Bug#945552: RFS: streamlink/1.3.0+dfsg-1

2019-11-26 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.3.0.

 * Package name: streamlink
   Version : 1.3.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.3.0+dfsg-1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload to unstable:
streamlink (1.3.0+dfsg-1) unstable; urgency=medium

  * Vcs-Git: move from github to salsa
  * New upstream version 1.3.0+dfsg
  * Remove pixiv typo patch, applied upstream
  * Bump standard version to 4.4.1, no change required
  * Use debhelper-compat in B-D instead of d/compat
  * Add "Rules-Requires-Root: no" in d/rules

 -- Alexis Murzeau   Sun, 24 Nov 2019 20:09:58 +0100

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F





signature.asc
Description: OpenPGP digital signature


Bug#950190: RFS: streamlink/1.3.1+dfsg-1 -- CLI for extracting video streams from various websites to a video player

2020-01-29 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.3.1.

 * Package name: streamlink
   Version : 1.3.1+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.3.1+dfsg-1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload to unstable:
streamlink (1.3.1+dfsg-1) unstable; urgency=medium

  * New upstream version 1.3.1+dfsg
  * Update d/copyright years to 2020
  * Add patch to remove external images in html documentation
  * Bump Standards-Version to 4.5.0 (no changes)

 -- Alexis Murzeau   Wed, 29 Jan 2020 22:34:41 +0100


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F







signature.asc
Description: OpenPGP digital signature


Bug#948775: RFS: ukui-interface/1.0.0-1 [ITP] -- Provides the interface for system configuration

2020-02-18 Thread Alexis Murzeau
Hi,

Le 13/01/2020 à 09:54, handsome_feng a écrit :
> Package: sponsorship-requests
> Severity: wishlist
> 
> Dear mentors,
> 
> I am looking for a sponsor for my package "ukui-interface"
> 
>  * Package name: ukui-interface
>Version : 1.0.0-1
>Upstream Author : liuhao 
>  * URL : https://github.com/ukui/ukui-interface
>  * License : GPL-3.0+
>  * Vcs : https://github.com/ukui/ukui-interface
>Section : libs
> 
> It builds those binary packages:
> 
>   libprint0 - print module
>   libprint-dev - print interface
>   libgsettings0 - application settings module
>   libgsettings-dev - application settings interface
>   backgroundserver - background settings service process
>   libbackgroundclient0 - background settings module
>   libbackgroundclient-dev - background settings interfaces
>   libdatesetting0 - date settings module
>   libdatesetting-dev - date settings interfaces
>   libdefaultprograms0 - default programs settings module
>   libdefaultprograms-dev - default programs settings interfaces
>   desktopserver - desktop settings service process
>   libdesktopclient0 - desktop settings module
>   libdesktopclient-dev - desktop settings interfaces
>   fontserver - font settings service process
>   libfontclient0 - font settings module
>   libfontclient-dev - font settings interfaces
>   interfaceserver - interface settings service process
>   libinterfaceclient0 - interface settings module
>   libinterfaceclient-dev - interface settings interfaces
>   keyboardserver - keyboard settings service process
>   libkeyboardclient0 - keyboard settings module
>   libkeyboardclient-dev - keyboard settings interfaces
>   marcogeneralserver - marcogeneral settings service process
>   libmarcogeneralclient0 - marcogeneral settings module
>   libmarcogeneralclient-dev - marcogeneral settings interfaces
>   mouseserver - mouse settings service process
>   libmouseclient0 - mouse settings module
>   libmouseclient-dev - mouse settings interfaces
>   libnetwork0 - network settings module
>   libnetwork-dev - network settings interfaces
>   powerserver - power settings service process
>   libpowerclient0 - power settings module
>   libpowerclient-dev - power settings interfaces
>   screensaverserver - screensaver settings service process
>   libscreensaverclient0 - screensaver settings module
>   libscreensaverclient-dev - screensaver settings interfaces
>   sessionserver - session settings service process
>   libsessionclient0 - session settings module
>   libsessionclient-dev - session settings interfaces
>   libsubversion0 - Subversion check module
>   libsubversion-dev - Subversion check interfaces
>   libsysinfo0 - system information gettings module
>   libsysinfo-dev - system information gettings interfaces
>   touchpadserver - touchpad settings service process
>   libtouchpadclient0 - touchpad settings module
>   libtouchpadclient-dev - touchpad settings interfaces
>   libusersetting0 - user settings module
>   libusersetting-dev - user settings interfaces
>   xkbgeneralserver - xkbgeneral settings service process
>   libxkbgeneralclient0 - xkbgeneral settings module
>   libxkbgeneralclient-dev - xkbgeneral settings interfaces
> 

Please note that I'm speaking without knowing the packaged application.


You should probably add a prefix to packages names to avoid cluttering
the package namespace.
For example:
 libprint0=> libukui-print0
 backgroundserver => ukui-backgroundserver

Same for the underlying binaries if they don't have "ukui" in their name.
The rationale is to avoid too generic names that could already exist or
better suitted to more common tools.
For example, "libsubversion0" would better be the name of a package for
SVN implementation (actually, the subversion source package use the name
of libsvn1 for its binary library package).


Also, maybe add a meta package that depends on all these package with
Depends, Recommends or Suggests as appropriate so someone that want ukui
only have to select one package instead of all parts of it. (This
package would be an equivalent to, say, kde-standard for KDE).

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#951155: RFS: 1.3.1+dfsg-1~bpo10+1 -- CLI for extracting video streams from various websites to a video player

2020-02-11 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
buster-backports repository.

 * Package name: streamlink
   Version : 1.3.1+dfsg-1~bpo10+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.3.1+dfsg-1~bpo10+1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/


Changes since the last upload to buster-backports:
streamlink (1.3.1+dfsg-1~bpo10+1) buster-backports; urgency=medium

  * Rebuild for buster-backports.

 -- Alexis Murzeau   Tue, 11 Feb 2020 20:52:45 +0100

streamlink (1.3.1+dfsg-1) unstable; urgency=medium

  * New upstream version 1.3.1+dfsg
  * Update d/copyright years to 2020
  * Add patch to remove external images in html documentation
  * Bump Standards-Version to 4.5.0 (no changes)

 -- Alexis Murzeau   Wed, 29 Jan 2020 22:34:41 +0100


Differences from testing package (1.3.1+dfsg-1):
  * Update d/README.source for buster-backports

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#955756: RFS: streamlink/1.3.1+dfsg-2 -- CLI for extracting video streams from various websites to a video player

2020-04-04 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" with a FTBFS fix
when building using sphinx 2.4 (which is currently in experimental but
will migrate to unstable) (see #955060).

 * Package name: streamlink
   Version : 1.3.1+dfsg-2
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.3.1+dfsg-2.dsc

Changes since the last upload to unstable:
streamlink (1.3.1+dfsg-2) unstable; urgency=medium

  * d/rules: run dh_link at install time to satisfy dh_sphinxdoc sanity checks
This fixes the build with sphinx 2.4 (Closes: #955060)

  * docs: fix warnings with sphinx 2.4

 -- Alexis Murzeau   Sat, 04 Apr 2020 18:10:52 +0200


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#958808: RFS: streamlink/1.4.1+dfsg-1 -- CLI for extracting video streams from various websites to a video player

2020-04-25 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.4.1.

 * Package name: streamlink
   Version : 1.4.1+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.4.1+dfsg-1.dsc

Changes since the last upload to unstable:
streamlink (1.4.1+dfsg-1) unstable; urgency=medium

  * New upstream version 1.4.1+dfsg
  * Remove upstreamed patch and update others
  * d/control: update description

 -- Alexis Murzeau   Sat, 25 Apr 2020 15:28:44 +0200



Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F





signature.asc
Description: OpenPGP digital signature


Bug#959528: RFS: streamlink/1.4.1+dfsg-1~bpo10+1 -- CLI for extracting video streams from various websites to a video player

2020-05-03 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
buster-backports repository.

 * Package name: streamlink
   Version : 1.4.1+dfsg-1~bpo10+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from various 
websites
  python3-streamlink-doc - CLI for extracting video streams from various 
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.4.1+dfsg-1~bpo10+1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload to buster-backports:
streamlink (1.4.1+dfsg-1~bpo10+1) buster-backports; urgency=medium

  * Rebuild for buster-backports.

 -- Alexis Murzeau   Sun, 03 May 2020 12:13:21 +0200

streamlink (1.4.1+dfsg-1) unstable; urgency=medium

  * New upstream version 1.4.1+dfsg
  * Remove upstreamed patch and update others
  * d/control: update description

 -- Alexis Murzeau   Sat, 25 Apr 2020 15:28:44 +0200

Differences from testing package (1.4.1+dfsg-1):
  * Update d/README.source for buster-backports

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F










signature.asc
Description: OpenPGP digital signature


Bug#969353: RFS: streamlink/1.5.0+dfsg-1~bpo10+1 -- CLI for extracting video streams from various websites to a video player

2020-08-31 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
buster-backports repository for a new upstream release.

 * Package name: streamlink
   Version : 1.5.0+dfsg-1~bpo10+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from various 
websites
  python3-streamlink-doc - CLI for extracting video streams from various 
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.5.0+dfsg-1~bpo10+1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload to buster-backports:
streamlink (1.5.0+dfsg-1~bpo10+1) buster-backports; urgency=medium

  * Rebuild for buster-backports.

 -- Alexis Murzeau   Sun, 16 Aug 2020 16:37:43 +0200

streamlink (1.5.0+dfsg-1) unstable; urgency=medium

  * New upstream version 1.5.0+dfsg
  * Update patch remove_new_version_check
  * Update debhelper compat to 13

 -- Alexis Murzeau   Sun, 19 Jul 2020 22:28:57 +0200


Differences from testing package (1.5.0+dfsg-1):
  * Update d/README.source for buster-backports


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F










signature.asc
Description: OpenPGP digital signature


Bug#968504: RFS: aqemu/0.9.2-2.4 [NMU] [RC] -- Qt5 front-end for QEMU and KVM

2020-09-15 Thread Alexis Murzeau
Le 15/09/2020 à 18:31, Tobias Frost a écrit :
> I wouldn't consider use case not using official debian packages too much…
> Instead, lets look what policy says on Depends (omitting non relevant 
> paragraphs)
> 
>   The Depends field should be used if the depended-on package is required for
> the depending package to provide a significant amount of functionality.
> 
> (I can't judge because I don't know aqemu, but my feeling is Recommends would
> be too weak)

Ok I think Depends is the right thing too, indeed.

>>
>> Thanks for your review :)
> 
> To avoid a dead-lock, you say when you're ready? (by removing the moreinfo 
> tag)
> 

Yes, in fact I was refering to your first mail :) (so not asking for a new 
review (yet)).

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|



signature.asc
Description: OpenPGP digital signature


Bug#968504: RFS: aqemu/0.9.2-2.4 [NMU] [RC] -- Qt5 front-end for QEMU and KVM

2020-09-13 Thread Alexis Murzeau
Hi,

Thanks for your review :)

Le 26/08/2020 à 12:39, Tobias Frost a écrit :
> Control: tags -1 moreinfo
> 
> Hi Alexis,
> 
> this is an incomplete review, 'cause I ran out of time, lunch break was not 
> long
> enough :-(
> 
> - This should be not an NMU but an QA-Upload so you need to Set the maintainer
> to the QA group, as explained here: 
> https://www.debian.org/doc/manuals/developers-reference/pkgs.html#orphaning-a-package
> 
> [...]

Ok, I've put sources with imported debsnap history in 
https://salsa.debian.org/debian/aqemu.

> 
> -  "(For: #957003)"
> Please close the bug in the changelog; it can always be reopened if it fails
> again…)

Ok

> 
> -  I'm not sure about dropping the Depends on qemu entirely. Does aqemu work
> without qemu installed? If not, you probably need to follow the recommendation
> in #966261
> and add a Depend on qemu-system-XXX | qemu-system-XXX | … (listing all archs).
> 

I'm wondering if I should put these as a Recommends instead.
I'm thinking about cases where someone would want to use a different qemu not 
packaged,
like a custom one or a manually compiled one.

But I'm not sure I should handle these cases, what do you think ?


> 
> There were other bugs on the packages too. Did you try to triage them?
> (It would be nice to at least report them to upstream, but that's not a show
> stopper for the sponsoring)

I'm not using aqemu myself, but some of them or probably upstream, and maybe 
fixed
since they were reported, but newer versions (0.9.6+) are qualified as not yet
stable by upstream.
I will see if they were already reported or still relevant
(some of them were created in 2012).

> 
> Many thanks for contributing to Debian!
> 

Thanks for your review :)


-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



Salsa repository request

2020-08-18 Thread Alexis Murzeau
Dear mentors,

The aqemu package is now orphaned (#955988, [1]).

I would like to put it under the "debian" group on Salsa so that
future QA work can be made collaboratively by anyone.


=> Thus, could someone create an empty "aqemu" project in the "debian" group
on Salsa and grant me (@amurzeau) write access ? (I'm not a DD nor a DM)

I will populate it then.

Thanks :)


Note: the package could just be removed from Debian instead, but its popcon is 
not
that low I think (721 [2]) and upstream is now a bit active [3].

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=955988
[2] https://qa.debian.org/popcon.php?package=aqemu
[3] https://github.com/tobimensch/aqemu

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Re: Salsa repository request

2020-08-18 Thread Alexis Murzeau
Le 18/08/2020 à 23:54, Kyle Robbertze a écrit :
> Hi
> 
> Created and added you as maintainer
> 
> https://salsa.debian.org/debian/aqemu
> 
> Cheers
> 

Thanks :)

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



Bug#965341: RFS: streamlink/1.5.0+dfsg-1 -- CLI for extracting video streams from various websites to a video player

2020-08-15 Thread Alexis Murzeau
Hi,

There is almost a month since I've filled this RFS and the previous version 
(1.4.1)
now fails to run with the new pycountry package in unstable.
The issue is fixed in this streamlink version, 1.5.0.

Can someone help to upload my package to unstable ?

See original RFS bellow.

Thanks :)
Alexis Murzeau

Le 19/07/2020 à 22:56, Alexis Murzeau a écrit :
> Package: sponsorship-requests
> Severity: normal
> 
> Dear mentors,
> 
> I am looking for a sponsor for my package "streamlink" for a new
> upstream version 1.5.0.
> 
>  * Package name: streamlink
>Version : 1.5.0+dfsg-1
>Upstream Author : Streamlink Team
>  * URL : https://streamlink.github.io/
>  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
>Section : python
> 
> It builds those binary packages:
> 
>   python3-streamlink - Python module for extracting video streams from
> various websites
>   python3-streamlink-doc - CLI for extracting video streams from various
> websites (documentation)
>   streamlink - CLI for extracting video streams from various websites to
> a video player
> 
> To access further information about this package, please visit the
> following URL:
>   https://mentors.debian.net/package/streamlink
> 
> 
> Alternatively, one can download the package with dget using this command:
> 
>   dget -x 
> https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.5.0+dfsg-1.dsc
> 
> Changes since the last upload to unstable:
> streamlink (1.5.0+dfsg-1) unstable; urgency=medium
> 
>   * New upstream version 1.5.0+dfsg
>   * Update patch remove_new_version_check
>   * Update debhelper compat to 13
> 
>  -- Alexis Murzeau   Sun, 19 Jul 2020 22:28:57 +0200
> 
> 
> 
> Regards,
> 


-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#970978: RFS: streamlink/1.6.0+dfsg-1 -- CLI for extracting video streams from various websites to a video player

2020-09-25 Thread Alexis Murzeau
Le 26/09/2020 à 00:43, Alexis Murzeau a écrit :
> Package: sponsorship-requests
> Severity: normal
> 
> Dear mentors,
> 
> I am looking for a sponsor for my package "streamlink" for a new
> upstream version 1.6.0.
> 
> [...]>
> Changes since the last upload to unstable:
> streamlink (1.6.0+dfsg-1) unstable; urgency=medium
> 
>   * New upstream version 1.6.0+dfsg
>   * Update patches
>   * Update patch 0009-docs-replace-deprecated-source_parsers with
> the use of recommonmark 0.6.0 as a sphinx extension.
> 
>  -- Alexis Murzeau   Sat, 26 Sep 2020 00:30:52 +0200
>
Note: I've updated the proposed package with a change here:

d/control: Add a version requirement on recommonmark of >= 0.5.0 as using
recommonmark as a sphinx extension requires recommonmark 0.5.0+.


Changes since the last upload to unstable become:
streamlink (1.6.0+dfsg-1) unstable; urgency=medium

  * New upstream version 1.6.0+dfsg
  * Update patches
  * Update patch 0009-docs-replace-deprecated-source_parsers with
the use of recommonmark 0.5.0+ as a sphinx extension.
  * d/control: require recommonmark >= 0.5.0 to be able to use it as
an extension (previous versions don't support it).

 -- Alexis Murzeau   Sat, 26 Sep 2020 00:55:56 +0200


-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F  |



signature.asc
Description: OpenPGP digital signature


Bug#970978: RFS: streamlink/1.6.0+dfsg-1 -- CLI for extracting video streams from various websites to a video player

2020-09-25 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.6.0.

 * Package name: streamlink
   Version : 1.6.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.6.0+dfsg-1.dsc

Changes since the last upload to unstable:
streamlink (1.6.0+dfsg-1) unstable; urgency=medium

  * New upstream version 1.6.0+dfsg
  * Update patches
  * Update patch 0009-docs-replace-deprecated-source_parsers with
the use of recommonmark 0.6.0 as a sphinx extension.

 -- Alexis Murzeau   Sat, 26 Sep 2020 00:30:52 +0200



Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F









signature.asc
Description: OpenPGP digital signature


popcon statistics graph per suite per package

2020-05-25 Thread Alexis Murzeau
Hi,

Is there a page that shows a popcon graph with each Debian suites for a
given package ?


This is to know how much users use the package in stable/backports to
decide if backporting is interesting and at which level (stable only or
maybe oldstable too).

I didn't find any page with this data as a graph, but the raw data seems
to be there as the main page has links for "All reports" and "Stable
reports".

Thanks if you know anything that would avoid crunching raw data :)

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



Re: cmake help needed for metabat

2020-05-28 Thread Alexis Murzeau
Hi,

Le 28/05/2020 à 20:33, Andreas Tille a écrit :
> Hi,
> 
> I'm trying to package metabat[1] in the COVID-19 effort of the Debian
> Med team.  I went forward with tweaking cmake but I'm now struck with:
> 
> [...]
> CMake Error at src/CMakeLists.txt:39 (add_dependencies):
>   The dependency target "zlib" of target "metabat1" does not exist.
> 
> ...
> 
> This is strange since in the beginning zlib and htslib were found
> due to the means I did.  Any hint would be welcome.
> 
> Kind regards
> 
>Andreas.
> 
> [1] https://salsa.debian.org/med-team/metabat
> 

There is a Debian patch that replace cmake/htslib.cmake with a
pkg_check_modules call, which doesn't create targets, so that why it fails.
There is the same issue with zlib, and a missing header
"metabat_version.h" created by cmake/git-watcher.cmake.


About HTSlib issue
--

With pkgconfig, you instead get just variables (no target), including
these interesting ones:
 - HTSlib_LIBRARIES
 - HTSlib_INCLUDE_DIRS

(The HTSlib comes from the first argument of pkg_check_modules)

In cmake version 3.6 and later, an argument to pkg_check_modules can
create a target to be used with target_link_libraries that will take
care of the libraries and include dirs.
This is the IMPORTED_TARGET option, it will create a target named
PkgConfig::.

So you can have:
```
pkg_check_modules(HTSlib REQUIRED IMPORTED_TARGET htslib)
```

and then use it:
```
target_link_libraries(target [...] PkgConfig::HTSlib)
```

But metabat seems to require only cmake 3.5, so it might not be allowed
for upstream to do that.

Instead you can just do the same as done for Boost and add:
```
include_directories(${HTSlib_INCLUDE_DIRS})
```
and
```
target_link_libraries(target [...] ${HTSlib_INCLUDE_DIRS})
```

About zlib issue


FindPackage(ZLIB) don't create any "zlib" target, but a "ZLIB::ZLIB"
target instead, which can be used with target_link_libraries.

So you can just replace the add_dependencies(target zlib) with a new
item there:
```
target_link_libraries(target [...] ZLIB::ZLIB)
```

About the metabat_version.h header issue


cmake/git-watcher.cmake generate metabat_version.h from
metabat_version.h.in.
So as with the patch, git-watcher.cmake is not used anymore, you still
need to handle that.

Either put fake stuff like this:
```
set(PRE_CONFIGURE_FILE "metabat_version.h.in")
set(POST_CONFIGURE_FILE "metabat_version.h")
# include(cmake/git-watcher.cmake)

# Add this:
set(GIT_RETRIEVED_STATE "")
set(GIT_HEAD_SHA1 "nosha")
set(GIT_IS_DIRTY 0)
set(BUILD_TIMESTAMP 0)
configure_file("${PRE_CONFIGURE_FILE}" "${POST_CONFIGURE_FILE}" @ONLY)
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
```

Or you change directly the code that use these defines to use different
data (like Debian version instead).


Conclusion
--

I'm attaching a patch with what I've said here.
The build still doesn't work because of tests failure.
The tests require data files like "contigs_depth.txt" but can't find them.
In test/CMakeLists.txt, there is a reference to them as
"${CMAKE_BINARY_DIR}/contigs_depth.txt", but it should be
"${CMAKE_CURRENT_SOURCE_DIR}/contigs_depth.txt", unless the text files
should be copied while building, but that doesn't seem the case.

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F
diff --git a/debian/patches/use_debian_packaged_libs.patch 
b/debian/patches/use_debian_packaged_libs.patch
index 05c4a0e..b532dc9 100644
--- a/debian/patches/use_debian_packaged_libs.patch
+++ b/debian/patches/use_debian_packaged_libs.patch
@@ -1,7 +1,15 @@
-Author: Andreas Tille 
+From: Andreas Tille 
+Date: Thu, 28 May 2020 21:21:02 +0200
+Subject: Use Debian packaged libraries
+
 Last-Update: Thu, 28 May 2020 17:21:42 +0200
-Description: Use Debian packaged libraries
+---
+ CMakeLists.txt | 15 ---
+ src/CMakeLists.txt |  8 
+ 2 files changed, 16 insertions(+), 7 deletions(-)

+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 638c27c..6166143 100644
 --- a/CMakeLists.txt
 +++ b/CMakeLists.txt
 @@ -8,8 +8,10 @@ endif()
@@ -17,32 +25,52 @@ Description: Use Debian packaged libraries

  set(CMAKE_CXX_STANDARD 11)
  set(CMAKE_CXX_STANDARD_REQUIRED ON)
-@@ -23,7 +25,7 @@ add_definitions(-D_XOPEN_SOURCE=700)
+@@ -23,7 +25,14 @@ add_definitions(-D_XOPEN_SOURCE=700)

  set(PRE_CONFIGURE_FILE "metabat_version.h.in")
  set(POST_CONFIGURE_FILE "metabat_version.h")
 -include(cmake/git-watcher.cmake)
 +# include(cmake/git-watcher.cmake)
++set(GIT_RETRIEVED_STATE "")
++set(GIT_HEAD_SHA1 "nosha")
++set(GIT_IS_DIRTY 0)
++set(BUILD_TIMESTAMP 0)
++configure_file("${PRE_CONFIGURE_FILE}" "${POST_CONFIGURE_FILE}" @ONLY)
++includ

Re: cmake help needed for metabat

2020-05-29 Thread Alexis Murzeau
hi,

Le 29/05/2020 à 10:10, Andreas Tille a écrit :
> 
>> In test/CMakeLists.txt, there is a reference to them as
>> "${CMAKE_BINARY_DIR}/contigs_depth.txt", but it should be
>> "${CMAKE_CURRENT_SOURCE_DIR}/contigs_depth.txt", unless the text files
>> should be copied while building, but that doesn't seem the case.
> 
> I'll check upstream Git or file an issue about this.
> 
> Unfortunately your patch did not applied cleanly - no idea why.  I have
> added it manually and reread your explanation which I think are
> implemented correctly.  Unfortunately in my pbuilder I get the same
> cmake failure as before and since I think I've now understand the issue
> I'm even more in vain since its not working anyway for me but you
> confirmed that it should work.  Could you be so kind to have another
> look on the latest state in Git?

I've looked at your commit on git, and the issue is that you need to
remove both "add_dependencies" completely in src/CMakeLists.txt.
zlib and htslib targets doesn't exist anymore as they were created by
scripts in cmake/ folder.

> 
> Thanks again
> 
>   Andreas.
> 


-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



Bug#972836: RFS: streamlink/1.7.0+dfsg-1~bpo10+1 -- CLI for extracting video streams from various websites to a video player

2020-10-24 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
buster-backports repository.

 * Package name: streamlink
   Version : 1.7.0+dfsg-1~bpo10+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from various 
websites
  python3-streamlink-doc - CLI for extracting video streams from various 
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.7.0+dfsg-1~bpo10+1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload to buster-backports:
streamlink (1.7.0+dfsg-1~bpo10+1) buster-backports; urgency=medium

  * Rebuild for buster-backports.

 -- Alexis Murzeau   Sat, 24 Oct 2020 19:28:55 +0200

streamlink (1.7.0+dfsg-1) unstable; urgency=medium

  * New upstream version 1.7.0+dfsg
  * Update patches

 -- Alexis Murzeau   Tue, 20 Oct 2020 23:59:16 +0200


Differences from testing package (1.7.0+dfsg-1):
  * Update d/README.source for buster-backports
  * Revert docs-use-recommonmark-as-an-extension (upstream applied) patch as
Buster has recommonmark 0.4.0 and this patch requires recommonmark 0.5.0+.

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F










signature.asc
Description: OpenPGP digital signature


Bug#965341: RFS: streamlink/1.5.0+dfsg-1 -- CLI for extracting video streams from various websites to a video player

2020-08-09 Thread Alexis Murzeau
Hi,

I've rerun lintian and all tags were fixed by external changes
(outside of this streamlink package).


Le 19/07/2020 à 22:56, Alexis Murzeau a écrit :
> Notes about lintian output:
> 
> W: python3-streamlink-doc: embedded-javascript-library 
> usr/share/doc/python3-streamlink/html/_static/language_data.js please use 
> sphinx
> 
>   I've sent mails about this which is to me an issue on lintian side as
>   sphinx binary packages doesn't have any language_data.js to reuse.
>   I don't override this lintian warning because it should still be fixed
>   somewhere (lintian, sphinx and my package or a mix of these).
>   See also #964013.

This is fixed with a change to libjs-sphinxdoc so it ships
language_data.js (since sphinx 3.2.0-1 or 2.4.3-5).
See:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=964013#49
https://salsa.debian.org/python-team/modules/sphinx/-/commit/1d8fbc5c80b38ca561746ba26a5ba7a9eee03f6a

> 
> I: streamlink source: send-patch debian/patches/remove_new_version_check
> I: streamlink source: send-patch debian/patches/use_debian_modernizr
> 
>   These patches do have the Fowarded: not-needed header, but lintian still
>   issue a remark on them.
>   I think this is an issue with how lintian detect the Forwarded header
>   after a description.

Fixed along with #966024 in lintian 2.86.0.

So now, no lintian tag is reported on streamlink 1.5.0+dfsg-1 package (no 
change required).


-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F







signature.asc
Description: OpenPGP digital signature


Bug#964059: RFS: streamlink/1.4.1+dfsg-2 -- CLI for extracting video streams from various websites to a video player

2020-06-30 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" to fix the bug
#963757.

 * Package name: streamlink
   Version : 1.4.1+dfsg-2
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.4.1+dfsg-2.dsc

Changes since the last upload to unstable:
streamlink (1.4.1+dfsg-2) unstable; urgency=medium

  [ Lukas Märdian ]
  * doc: adopt link target of font-awesome files (Closes: #963757)
- fonts-font-awesome 5.0.10+really4.7.0~dfsg-2 provides only OpenType
  and TrueType under /usr/share/fonts/

 -- Alexis Murzeau   Tue, 30 Jun 2020 23:55:57 +0200



Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F







signature.asc
Description: OpenPGP digital signature


Re: Bug#961738: RFS: dragengine/1.1 -- Drag[en]gine Game Engine

2020-06-04 Thread Alexis Murzeau
Le 04/06/2020 à 12:25, Roland Plüss a écrit :
> I don't see any way for me to get other projects to update to 1.7 . FOX
> separates 1.7 from 1.6 so projects are not forced to upgrade if they
> don't want to.
> 
> I can try ask the maintainer but I consider this a 0% success rate.
> 

Maybe having both version available would be an idea ?
The same as lua has multiple versions with the version embedded in the
source and binary packages names: lua5.1, lua5.2, ...

FOX 1.6 in Debian already has the version too in package names:
src:fox1.6, libfox-1.6-0, libfox-1.6-dev, libfox-1.6-doc

So this would be "easy" to add support for FOX 1.7 in a fox1.7 source
package building libfox-1.7-0, libfox-1.7-dev, libfox-1.7-doc.

That way, if the transition is hard enough from 1.6 to 1.7, it will
avoid pressing all users of FOX 1.6 to upgrade to 1.7.

Refs:
https://packages.debian.org/fr/source/sid/lua5.1
https://packages.debian.org/fr/source/sid/lua5.2
https://packages.debian.org/fr/source/sid/lua5.3
https://packages.debian.org/fr/source/sid/fox1.6

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



Bug#965341: RFS: streamlink/1.5.0+dfsg-1 -- CLI for extracting video streams from various websites to a video player

2020-07-19 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.5.0.

 * Package name: streamlink
   Version : 1.5.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.5.0+dfsg-1.dsc

Changes since the last upload to unstable:
streamlink (1.5.0+dfsg-1) unstable; urgency=medium

  * New upstream version 1.5.0+dfsg
  * Update patch remove_new_version_check
  * Update debhelper compat to 13

 -- Alexis Murzeau   Sun, 19 Jul 2020 22:28:57 +0200


Notes about lintian output:

W: python3-streamlink-doc: embedded-javascript-library 
usr/share/doc/python3-streamlink/html/_static/language_data.js please use sphinx

  I've sent mails about this which is to me an issue on lintian side as
  sphinx binary packages doesn't have any language_data.js to reuse.
  I don't override this lintian warning because it should still be fixed
  somewhere (lintian, sphinx and my package or a mix of these).
  See also #964013.

I: streamlink source: send-patch debian/patches/remove_new_version_check
I: streamlink source: send-patch debian/patches/use_debian_modernizr

  These patches do have the Fowarded: not-needed header, but lintian still
  issue a remark on them.
  I think this is an issue with how lintian detect the Forwarded header
  after a description.


Because of these reasons and because the upstream version was released
more than a week ago, I don't want to delay the upload of streamlink
anymore while investigating more on what's going wrong with lintian.

So these lintian remarks are expected for this package version and will
be fixed later.


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F







signature.asc
Description: OpenPGP digital signature


Bug#968504: RFS: aqemu/0.9.2-2.4 [NMU] [RC] -- Qt5 front-end for QEMU and KVM

2020-08-16 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: important
X-Debbugs-CC: Ignace Mouzannar 

Dear mentors,

I am looking for a sponsor for a NMU of "aqemu" to fix this RC bug:
  #957003 - aqemu: ftbfs with GCC-10 [0]

And these additional bugs:
  #966261 - please drop `qemu' from Depends [1]
  #874050 - aqemu depends on meta-package qemu, which pulls in all supported 
emulation architectures [2]

The maintainer has not responded to this bug, nor other bugs on
this package and orphaned the package in #955988.

This NMU :
 - Add a patch to fix the build issue with GCC 10
 - Remove the dependency on "qemu" dummy package to let it be removed.
   - This is not a RC bug, but I deemed the ratio usefulness/impact
 to be high enough to include it with the fact that the package is orphaned.
 Let me know if this should be avoided anyway.

I'm in the process to try to put this package under the Debian group on Salsa 
when
I will be able to retrieve all available VCS histories from Ignace to keep them 
on Salsa.
But that's not ready yet.



 * Package name: aqemu
   Version : 0.9.2-2.4
   Upstream Author : Andrey Rijov, Tobias Gläßer
 * URL : https://sourceforge.net/projects/aqemu/,
 https://github.com/tobimensch/aqemu
 * License : GPL-2+, BSD-3-clause
   Section : x11

It builds those binary packages:

  aqemu - Qt5 front-end for QEMU and KVM

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/aqemu


Alternatively, one can download the package with dget using this command:

  dget -x
https://mentors.debian.net/debian/pool/main/a/aqemu/aqemu_0.9.2-2.4.dsc

Changes since the last upload to unstable:
aqemu (0.9.2-2.4) unstable; urgency=medium

  * Non-maintainer upload.
  * debian/patches/0003-Fix-build-with-GCC-10.patch:
- Fix build with GCC 10 (For: #957003)
  * debian/control:
- Drop qemu dummy package from Depends (Closes: 966261, 874050)

 -- Alexis Murzeau   Sun, 16 Aug 2020 15:12:30 +0200


Note: the "For: #957003" is intended to not close the bug automatically as 
requested in the
bug description. The bug will be closed only after a successful build.


Source packages diff is in attachment and can be viewed here:
https://salsa.debian.org/amurzeau-guest/aqemu/compare/debian%2F0.9.2-2.3...debian%2F0.9.2-2.4


[0] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=957003
[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=966261
[2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=874050

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F
diff --git a/debian/changelog b/debian/changelog
index 24da78a..549387f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+aqemu (0.9.2-2.4) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * debian/patches/0003-Fix-build-with-GCC-10.patch:
+- Fix build with GCC 10 (For: #957003)
+  * debian/control:
+- Drop qemu dummy package from Depends (Closes: 966261, 874050)
+
+ -- Alexis Murzeau   Sun, 16 Aug 2020 15:12:30 +0200
+
 aqemu (0.9.2-2.3) unstable; urgency=medium
 
   * Non-maintainer upload.
diff --git a/debian/control b/debian/control
index 1c0d123..fb685cb 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,7 @@ Homepage: http://aqemu.sourceforge.net/
 
 Package: aqemu
 Architecture: amd64 arm arm64 armel armhf hppa i386 ia64 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc powerpcspe ppc64 ppc64el s390x sparc sparc64 
x32
-Depends: qemu, ${shlibs:Depends}, ${misc:Depends}, libqt5dbus5
+Depends: ${shlibs:Depends}, ${misc:Depends}, libqt5dbus5
 Recommends: qemu-kvm
 Description: Qt5 front-end for QEMU and KVM
  aqemu is a Qt5 graphical interface used to manage QEMU and KVM virtual
diff --git a/debian/patches/0003-Fix-build-with-GCC-10.patch 
b/debian/patches/0003-Fix-build-with-GCC-10.patch
new file mode 100644
index 000..ef15057
--- /dev/null
+++ b/debian/patches/0003-Fix-build-with-GCC-10.patch
@@ -0,0 +1,21 @@
+From: Alexis Murzeau 
+Date: Sat, 15 Aug 2020 15:39:47 +0200
+Subject: Fix build with GCC 10 (Closes: #957003)
+
+Forwarded: https://github.com/tobimensch/aqemu/issues/74
+---
+ src/docopt/docopt_value.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/docopt/docopt_value.h b/src/docopt/docopt_value.h
+index 8f32778..bc2b029 100644
+--- a/src/docopt/docopt_value.h
 b/src/docopt/docopt_value.h
+@@ -13,6 +13,7 @@
+ #include 
+ #include  // std::hash
+ #include 
++#include 
+ 
+ namespace docopt {
+ 
diff --git a/debian/patches/series b/debian/patches/series
index 4b5ddb7..5e05242 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 01_qemu_parallel_typo.diff
 0002-Remove-VLAN-stuff-QEMU-doesn-t-support-it-anymore.patch
+0003-Fix-build-with-GCC-10.patch


signature.asc
Description: OpenPGP digital signature


Bug#978102: RFS: streamlink/2.0.0-1 -- CLI for extracting video streams from various websites to a video player

2020-12-25 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 2.0.0.

 * Package name: streamlink
   Version : 2.0.0-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_2.0.0-1.dsc

Changes since the last upload to unstable:
streamlink (2.0.0-1) unstable; urgency=medium

  * New upstream version 2.0.0
  * debian/*: update patches, control, tests to replace new furo theme
  * debian/patches: update patches
  * examples: use python3 interpreter instead of python
  * Bump Standards-Version to 4.5.1 (no changes)
  * debian/watch: removing repacking as not needed anymore
  * Add patch to use icons from font awesome 4 instead of font awesome 5

 -- Alexis Murzeau   Fri, 25 Dec 2020 23:28:50 +0100


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F













signature.asc
Description: OpenPGP digital signature


Bug#968504: RFS: aqemu/0.9.2-3 [NMU] [RC] -- Qt5 front-end for QEMU and KVM

2020-12-05 Thread Alexis Murzeau
Hi,

I've done the QA changes to aqemu package for a version aqemu/0.9.2-3 instead 
of a NMU.
I've checked that it actually runs fine and that I'm able to create a VM and 
run it.

I encountered crashes which I've patches and forwarded all existing and new 
patches to upstream.


About the 3 left Debian bugs, I think these are upstream bugs.
Actually, upstream seems mostly inactive since 2016 with just PR merges earlier 
this year.
At least with what I've done, aqemu should still work fine and be used in 
Bullseye.

---

Packaging repository is available on Salsa here:
https://salsa.debian.org/debian/aqemu

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/aqemu

Alternatively, one can download the package with dget using this command:

  dget -x https://mentors.debian.net/debian/pool/main/a/aqemu/aqemu_0.9.2-3.dsc


Here is the new changelog:
aqemu (0.9.2-3) unstable; urgency=medium

  * QA upload.
  * debian/patches:
- Fix build with GCC 10 (Closes: #957003).
- Docs: fix groff warning about empty line.
- Fix spelling of some words.
- Merge Debian-specific desktop file into upstream's one and move
  icons to share/icons.
- Forward all patches to upstream.
  * debian/control:
- Replace qemu dummy package dependency to qemu system packages
  (Closes: 966261, 874050).
- Bumped Standards-Version to 4.5.1 and debhelper compat to 13.
- Put package in Debian QA Group now that it is orphaned.
- Remove trailing spaces.
- add Rules-Requires-Root: no as the build doesn't require root.
  * debian/copyright:
- Use secure uri (https) for Format field.
  * debian/changelog:
- Remove trailing whitespaces.
  * debian/rules:
- Add hardening option.
- Remove build dir from aqemu binary.
  * debian/watch:
- Update to version 4.
  * Add upstream/metadata file.

 -- Alexis Murzeau   Sat, 05 Dec 2020 22:45:24 +0100

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|



signature.asc
Description: OpenPGP digital signature


Bug#968504: RFS: aqemu/0.9.2-3 [NMU] [RC] -- Qt5 front-end for QEMU and KVM

2020-12-13 Thread Alexis Murzeau
Control: tags -1 -moreinfo

Dear mentors,

Doing a classic RFS mail now if anyone can review this :)

I am looking for a sponsor for a QA upload of "aqemu" to fix this RC bug:
  #957003 - aqemu: ftbfs with GCC-10 [0]

And these additional bugs:
  #966261 - please drop `qemu' from Depends [1]
  #874050 - aqemu depends on meta-package qemu, which pulls in all supported 
emulation architectures [2]


I've checked that it actually runs fine and that I'm able to create a VM and 
run it.

I encountered crashes which I've patches and forwarded all existing and new 
patches to upstream.

About the 3 left Debian bugs, I think these are upstream bugs.
Actually, upstream seems mostly inactive since 2016 with just PR merges earlier 
this year.
At least with what I've done, aqemu should still work fine and be used in 
Bullseye.


 * Package name: aqemu
   Version : 0.9.2-3
   Upstream Author : Andrey Rijov, Tobias Gläßer
 * URL : https://sourceforge.net/projects/aqemu/,
 https://github.com/tobimensch/aqemu
 * License : GPL-2+, BSD-3-clause
   Section : x11

It builds those binary packages:

  aqemu - Qt5 front-end for QEMU and KVM

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/aqemu


Alternatively, one can download the package with dget using this command:

  dget -x https://mentors.debian.net/debian/pool/main/a/aqemu/aqemu_0.9.2-3.dsc

Changes since the last upload to unstable:
aqemu (0.9.2-3) unstable; urgency=medium

  * QA upload.
  * debian/patches:
- Fix build with GCC 10 (Closes: #957003).
- Docs: fix groff warning about empty line.
- Fix spelling of some words.
- Merge Debian-specific desktop file into upstream's one and move
  icons to share/icons.
- Forward all patches to upstream.
  * debian/control:
- Replace qemu dummy package dependency to qemu system packages
  (Closes: 966261, 874050).
- Bumped Standards-Version to 4.5.1 and debhelper compat to 13.
- Put package in Debian QA Group now that it is orphaned.
- Remove trailing spaces.
- add Rules-Requires-Root: no as the build doesn't require root.
  * debian/copyright:
- Use secure uri (https) for Format field.
  * debian/changelog:
- Remove trailing whitespaces.
  * debian/rules:
- Add hardening option.
- Remove build dir from aqemu binary.
  * debian/watch:
- Update to version 4.
  * Add upstream/metadata file.

 -- Alexis Murzeau   Sat, 05 Dec 2020 22:45:24 +0100


[0] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=957003
[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=966261
[2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=874050

Regards,

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|



signature.asc
Description: OpenPGP digital signature


Bug#972599: RFS: streamlink/1.7.0+dfsg-1 -- CLI for extracting video streams from various websites to a video player

2020-10-20 Thread Alexis Murzeau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 1.7.0.

 * Package name: streamlink
   Version : 1.7.0+dfsg-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_1.7.0+dfsg-1.dsc

Changes since the last upload to unstable:
streamlink (1.7.0+dfsg-1) unstable; urgency=medium

  * New upstream version 1.7.0+dfsg
  * Update patches

 -- Alexis Murzeau   Tue, 20 Oct 2020 23:59:16 +0200



Regards,
- -- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F








-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEylfM0qe98o7UCRlrC5n5Lou0ZU0FAl+PYCUACgkQC5n5Lou0
ZU2RpQ/+IX6SGC66+lBVoFvzQXqkhhAp884iv65CAfzx/2CAXSUGHEC8vG+YM74m
Fb1GPYE/LlY7oR4KAqHbn+dsSRLctRZCJ+y+BsxFcdpVhBwmuyuw+RTyiVKGC0Hi
zvzmtVFT+VB+F4tMS7FYGDgMetrILhKpBLyiTmLoQMDHnF0Fc5hjdvJV22lYvDwO
IMH65myj0tABlW7dinyyHWSrWTzORduANcc1G5sPR2DKDcT+HdgeImJVn+3iFDEU
0eXFzwW/RLfjLjtI9Bi4OJ2HIz9QvhIbpAL48bg/TwY1a6GR10Fn+Ww2VN+EHBy1
Q/zKNZW1N/YrUo9xP38wqH0B/r3/Yy3AOKps7MYl5uHT+N4Tj1/SVbhsx3rGbChu
jzzYCyAbXnBTmkGkiRPVS3WRABb9PehEo6qTsTvk+xro6p1asmjweq5oIQ4KwhOu
X1x1v1Xrv2p6rolLylSK8mhnrq+hX20c1QCgN3N3ABz4PHbEv07H8vj/SyVqQELx
wdUO0bvfNIkpoz4PFgnvgfomxpgC2V7fimXcOv+7dhEdeQrDS3q4AIPs7q9P4SKW
NUVhKZ/TCvVqgeqqutCKTRmxasVd4LKRxZ84iGCGPy/3nTdTfLh8LpyXOxWUF8GY
e3FxVU7PdZ7EoVkv1ECwat22646/4NpXuDqU8jcN4eGK5cBHSUw=
=kq1S
-END PGP SIGNATURE-



Bug#978934: RFS: streamlink/2.0.0-1~bpo10+1 -- CLI for extracting video streams from various websites to a video player

2020-12-31 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
buster-backports repository.

 * Package name: streamlink
   Version : 2.0.0-1~bpo10+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from various 
websites
  python3-streamlink-doc - CLI for extracting video streams from various 
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_2.0.0-1~bpo10+1.dsc

More information about streamlink can be obtained at
https://streamlink.github.io/

Changes since the last upload to buster-backports:
streamlink (2.0.0-1~bpo10+1) buster-backports; urgency=medium

  * Rebuild for buster-backports.
  * d/patches: remove sphinx 3.0 requirement as it is not available in stable

 -- Alexis Murzeau   Thu, 31 Dec 2020 17:57:09 +0100

streamlink (2.0.0-1) unstable; urgency=medium

  * New upstream version 2.0.0
  * debian/*: update patches, control, tests to replace new furo theme
  * debian/patches: update patches
  * examples: use python3 interpreter instead of python
  * Bump Standards-Version to 4.5.1 (no changes)
  * debian/watch: removing repacking as not needed anymore
  * Add patch to use icons from font awesome 4 instead of font awesome 5

 -- Alexis Murzeau   Fri, 25 Dec 2020 23:28:50 +0100

Differences from testing package (2.0.0-1):
  * Update d/README.source for buster-backports
  * Revert docs-use-recommonmark-as-an-extension (upstream applied) patch as
Buster has recommonmark 0.4.0 and this patch requires recommonmark 0.5.0+.
  * d/patches: remove sphinx 3.0 requirement as it is not available in stable

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



signature.asc
Description: OpenPGP digital signature


Bug#990208: RFS: streamlink/2.2.0-1~exp1 -- CLI for extracting video streams from various websites to a video player

2021-06-22 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 2.2.0.

 * Package name: streamlink
   Version : 2.2.0-1~exp1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_2.2.0-1~exp1.dsc

Changes since the last upload to experimental:
streamlink (2.2.0-1~exp1) experimental; urgency=medium

  * New upstream version 2.2.0
  * Update patches

 -- Alexis Murzeau   Tue, 22 Jun 2021 00:06:13 +0200


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F

















signature.asc
Description: OpenPGP digital signature


Bug#985968: RFS: streamlink/2.1.1-1~exp1 -- CLI for extracting video streams from various websites to a video player

2021-03-26 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 2.1.1.

 * Package name: streamlink
   Version : 2.1.1-1~exp1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_2.1.1-1~exp1.dsc

Changes since the last upload to unstable:
streamlink (2.1.1-1~exp1) experimental; urgency=medium

  * New upstream version 2.1.1
  * Update patches
  * d/copyright: update years to 2021
  * d/patches: add patch to include .removed file in build (required by tests)
  * d/streamlink.manpages: update manpage build location

 -- Alexis Murzeau   Fri, 26 Mar 2021 23:09:46 +0100



Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F















signature.asc
Description: OpenPGP digital signature


Bug#992018: RFS: streamlink/2.3.0-1~exp1 -- CLI for extracting video streams from various websites to a video player

2021-08-08 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 2.3.0.

 * Package name: streamlink
   Version : 2.3.0-1~exp1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_2.3.0-1~exp1.dsc

Changes since the last upload to experimental:
streamlink (2.3.0-1~exp1) experimental; urgency=medium

  * New upstream version 2.3.0
  * Update patches
  * d/control: rearrange dependencies and remove python3-mock
  * d/rules: fix dh_python3 mapping of python3-requests dependency

 -- Alexis Murzeau   Mon, 09 Aug 2021 00:52:33 +0200


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F













signature.asc
Description: OpenPGP digital signature


Bug#994852: RFS: streamlink/2.4.0-1 -- CLI for extracting video streams from various websites to a video player

2021-09-21 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 2.4.0.

 * Package name: streamlink
   Version : 2.4.0-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_2.4.0-1.dsc

Changes since the last upload to unstable:
streamlink (2.4.0-1) unstable; urgency=medium

  * New upstream version 2.4.0
  * Update patches
  * d/control: add new dependency on python3-lxml
  * Bump Standards-Version to 4.6.0 (no changes)
  * d/tests/check_docs: fix looking for doc-base files by using install-docs
  * d/tests/check_docs.sh: check for broken symlinks
  * Merge changes in experimental to unstable

 -- Alexis Murzeau   Tue, 21 Sep 2021 21:35:26 +0200


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F















signature.asc
Description: OpenPGP digital signature


Bug#1001117: RFS: streamlink/3.0.3-1 -- CLI for extracting video streams from various websites to a video player

2021-12-04 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 3.0.3.

 * Package name: streamlink
   Version : 3.0.3-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_3.0.3-1.dsc

Changes since the last upload to unstable:
streamlink (3.0.3-1) unstable; urgency=medium

  * New upstream version 3.0.3
  * Update patches
  * d/rules: remove STREAMLINK_USE_PYCOUNTRY not required anymore
  * d/patches: add patch to fix build with requests < 2.26
  * d/rules: add now required streamlink src to PYTHONPATH
  * d/streamlink.install: install bash and zsh completion scripts
  * d/patches: remove shebang from bash completion script
  * d/control: use dh-sequence instead of --with argument

 -- Alexis Murzeau   Sat, 04 Dec 2021 18:34:51 +0100

There is a lintian info tag: built-using-field-on-arch-all-package
I have chosen to leave everything as-is until this related bug is sorted out:
#999785 - built-using-field-on-arch-all-package emitted for non-Go packages
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=999785


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F















signature.asc
Description: OpenPGP digital signature


Bug#1006825: RFS: streamlink/3.2.0-1 -- CLI for extracting video streams from various websites to a video player

2022-03-05 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 3.2.0.

 * Package name: streamlink
   Version : 3.2.0-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_3.2.0-1.dsc

Changes since the last upload to unstable:
streamlink (3.2.0-1) unstable; urgency=medium

  * d/README.source: update with basic instructions
  * d/README.source: fix gbp tag and add push to remote
  * d/rules: add LANG var to have reproducible builds (See #998059)
  * New upstream version 3.2.0
  * d/patches: update patches
  * lintian-overrides: adjust filter for changelogs

 -- Alexis Murzeau   Sat, 05 Mar 2022 22:55:24 +0100


There is a lintian info tag: built-using-field-on-arch-all-package
I have chosen to leave everything as-is until this related bug is sorted out:
#999785 - built-using-field-on-arch-all-package emitted for non-Go packages
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=999785

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F

















signature.asc
Description: OpenPGP digital signature


Bug#1006497: RFS: streamlink/3.1.1-1~bpo11+1 -- CLI for extracting video streams from various websites to a video player

2022-02-26 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
bullseye-backports repository.

 * Package name: streamlink
   Version : 3.1.1-1~bpo11+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from various 
websites
  python3-streamlink-doc - CLI for extracting video streams from various 
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_3.1.1-1~bpo11+1.dsc


Differences from testing package (3.1.1-1):
  * None

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F







signature.asc
Description: OpenPGP digital signature


Bug#1006338: RFS: streamlink/3.1.1-1 -- CLI for extracting video streams from various websites to a video player

2022-02-23 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 3.1.1.

 * Package name: streamlink
   Version : 3.1.1-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_3.1.1-1.dsc

Changes since the last upload to unstable:
streamlink (3.1.1-1) unstable; urgency=medium

  * New upstream version 3.1.1
  * Update patches
  * d/source/lintian-overrides: add changelog and XML test payload
  * d/copyright: update years to 2022

 -- Alexis Murzeau   Mon, 21 Feb 2022 23:20:14 +0100

There is a lintian info tag: built-using-field-on-arch-all-package
I have chosen to leave everything as-is until this related bug is sorted out:
#999785 - built-using-field-on-arch-all-package emitted for non-Go packages
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=999785

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F

















signature.asc
Description: OpenPGP digital signature


Bug#1008058: RFS: streamlink/3.2.0-1~bpo11+1 -- CLI for extracting video streams from various websites to a video player

2022-03-21 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
bullseye-backports repository.

 * Package name: streamlink
   Version : 3.2.0-1~bpo11+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from various 
websites
  python3-streamlink-doc - CLI for extracting video streams from various 
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_3.2.0-1~bpo11+1.dsc

Changes since the last upload to bullseye-backports:
streamlink (3.2.0-1~bpo11+1) bullseye-backports; urgency=medium

  * Rebuild for bullseye-backports.
  * Update changelog for 3.1.1-1~bpo11+1 release

 -- Alexis Murzeau   Mon, 21 Mar 2022 16:18:02 +0100

streamlink (3.2.0-1) unstable; urgency=medium

  * d/README.source: update with basic instructions
  * d/README.source: fix gbp tag and add push to remote
  * d/rules: add LANG var to have reproducible builds (See #998059)
  * New upstream version 3.2.0
  * d/patches: update patches
  * lintian-overrides: adjust filter for changelogs

 -- Alexis Murzeau   Sat, 05 Mar 2022 22:55:24 +0100


Differences from testing package (3.2.0-1):
  * d/README.source: added more information about the package maintenance

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|





signature.asc
Description: OpenPGP digital signature


Bug#1054554: RFS: streamlink/6.3.0-1 -- CLI for extracting video streams from various websites to a video player

2023-10-25 Thread Alexis Murzeau

Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 6.3.0.

  * Package name: streamlink
Version : 6.3.0-1
Upstream Author : Streamlink Team
  * URL : https://streamlink.github.io/
  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
  * Vcs  : https://github.com/wxMaxima-developers/wxmaxima
Section : python

It builds those binary packages:

   python3-streamlink - Python module for extracting video streams from
various websites
   python3-streamlink-doc - CLI for extracting video streams from
various websites (documentation)
   streamlink - CLI for extracting video streams from various websites
to a video player

To access further information about this package, please visit the
following URL:

   https://mentors.debian.net/package/streamlink/

Alternatively, you can download the package with 'dget' using this command:

   dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_6.3.0-1.dsc

Changes since the last upload to unstable:
streamlink (6.3.0-1) unstable; urgency=medium

  * d/README: update backport instructions
  * d/README: update readme for building backported package
  * New upstream version 6.3.0
  * d/patches: remove now unneeded patch that was removing versioningit

 -- Alexis Murzeau   Wed, 25 Oct 2023 21:37:25 +0200


Regards,
--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F




OpenPGP_0xE7BD1904F480937F.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1055313: RFS: streamlink/6.3.1-1~bpo12+1 -- CLI for extracting video streams from various websites to a video player

2023-11-03 Thread Alexis Murzeau

Package: sponsorship-requests
Severity: normal
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
bookworm-backports repository.

  * Package name: streamlink
Version : 6.3.1-1~bpo12+1
Upstream Author : Streamlink Team
  * URL : https://streamlink.github.io/
  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
  * Vcs : https://salsa.debian.org/amurzeau/streamlink/
Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  streamlink - CLI for extracting video streams from various websites
to a video player


To access further information about this package, please visit the
following URL:

  https://mentors.debian.net/package/streamlink/

Alternatively, you can download the package with 'dget' using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_6.3.1-1~bpo12+1.dsc


Differences from testing package (6.2.1-1~bpo12+1):
  * d/control,rules: remove doc package because of missing dependencies
on bookworm.


Changes since the previous backported version in bookworm:
streamlink (6.3.1-1~bpo12+1) bookworm-backports; urgency=medium

  * Rebuild for bookworm-backports.

 -- Alexis Murzeau   Fri, 03 Nov 2023 23:19:55 +0100

streamlink (6.3.1-1) unstable; urgency=medium

  * New upstream version 6.3.1

 -- Alexis Murzeau   Sun, 29 Oct 2023 10:28:08 +0100

streamlink (6.3.0-1) unstable; urgency=medium

  * d/README: update backport instructions
  * d/README: update readme for building backported package
  * New upstream version 6.3.0
  * d/patches: remove now unneeded patch that was removing versioningit

 -- Alexis Murzeau   Wed, 25 Oct 2023 21:37:25 +0200

Regards,
--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F |



Bug#1055014: RFS: streamlink/6.3.1-1 -- CLI for extracting video streams from various websites to a video player

2023-10-29 Thread Alexis Murzeau

Package: sponsorship-requests
Severity: normal


Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 6.3.1.

  * Package name: streamlink
Version : 6.3.1-1
Upstream Author : Streamlink Team
  * URL : https://streamlink.github.io/
  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
  * Vcs : https://salsa.debian.org/amurzeau/streamlink/
Section : python

It builds those binary packages:
  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from
various websites (documentation)
  streamlink - CLI for extracting video streams from various websites
to a video player


To access further information about this package, please visit the
following URL:

  https://mentors.debian.net/package/streamlink/

Alternatively, you can download the package with 'dget' using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_6.3.1-1.dsc


Changes since the last upload to unstable:
streamlink (6.3.1-1) unstable; urgency=medium

  * New upstream version 6.3.1

 -- Alexis Murzeau   Sun, 29 Oct 2023 10:28:08 +0100

Regards,

--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F |



Bug#1052563: RFS: streamlink/6.2.0-1~bpo12+1 -- CLI for extracting video streams from various websites to a video player

2023-09-24 Thread Alexis Murzeau

Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
bookworm-backports repository.

* Package name: streamlink
  Version : 6.2.0-1~bpo12+1
  Upstream Author : Streamlink Team
* URL : https://streamlink.github.io/
* License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
  Section : python

It builds those binary packages:

 python3-streamlink - Python module for extracting video streams from 
various websites
 streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
 https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

 dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_6.2.0-1~bpo12+1.dsc



Differences from testing package (6.2.0-1):
  * d/control,rules: remove doc package because of missing dependencies
on bookworm.
  * d/patches: remove webbrowser tests which require pytest-trio which
is not available on bookworm.



Changes since the stable version in bookworm (5.2.1-1) (streamlink not
yet backported):

streamlink (6.2.0-1~bpo12+1) bookworm-backports; urgency=medium

  * Rebuild for bookworm-backports.
  * d/control,rules: remove doc package because of missing dependencies
on bookworm.
  * d/patches: remove webbrowser tests which require pytest-trio which
is not available on bookworm.

 -- Alexis Murzeau   Fri, 22 Sep 2023 00:02:09 +0200

streamlink (6.2.0-1) unstable; urgency=medium

  * New upstream version 6.2.0
  * d/patches: update patches

 -- Alexis Murzeau   Thu, 21 Sep 2023 19:54:32 +0200

streamlink (6.1.0-1) unstable; urgency=medium

  * d/clean: remove docs/_build directory (Closes: 1045365)
  * d/source/options: add extend-diff-ignore to fix dpkg-source failure
due to local changes (python package metadata regeneration)
  * New upstream version 6.1.0
  * d/patches: fix screenshot link for Streamlink Twitch GUI

 -- Alexis Murzeau   Sun, 20 Aug 2023 12:12:58 +0200

streamlink (6.0.1-1) unstable; urgency=medium

  * New upstream version 6.0.1
  * d/upstream/signing-key.asc: update upstream key
  * d/patches: update patches
  * d/control: add new dependency python3-pytest-trio
  * d/rules: streamlink manpage: use CW font instead of C
  * d/rules: remove unused inclusion of pkg-info.mk
  * d/rules: fix duplicate doc assets
  * d/control: remove depends on rtmpdump and add trio and typing-extensions
  * d/copyright: add src/streamlink/webbrowser/cdp/connection.py
  * Upload to unstable

 -- Alexis Murzeau   Wed, 09 Aug 2023 20:07:05 +0200

streamlink (5.5.1-1~exp1) experimental; urgency=medium

  * New upstream version 5.5.1
  * d/patches: update patches
  * d/patches,control: use furo theme instead of sphinx-rtd-theme
  * d/patches,control: use fork-awesome as a replacement for font-awesome
  * d/s/lintian-overrides: remove obsolete override about a test file

 -- Alexis Murzeau   Sat, 20 May 2023 19:52:43 +0200

Regards,
--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|



Bug#1052422: RFS: streamlink/6.2.0-1 -- CLI for extracting video streams from various websites to a video player

2023-09-21 Thread Alexis Murzeau

Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 6.2.0.

  * Package name: streamlink
Version : 6.2.0-1
Upstream Author : Streamlink Team
  * URL : https://streamlink.github.io/
  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
  * Vcs : https://github.com/wxMaxima-developers/wxmaxima
Section : python

It builds those binary packages:

   python3-streamlink - Python module for extracting video streams from
various websites
   python3-streamlink-doc - CLI for extracting video streams from
various websites (documentation)
   streamlink - CLI for extracting video streams from various websites
to a video player

To access further information about this package, please visit the
following URL:

   https://mentors.debian.net/package/streamlink/

Alternatively, you can download the package with 'dget' using this command:

   dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_6.2.0-1.dsc

Changes since the last upload to unstable:
streamlink (6.2.0-1) unstable; urgency=medium

  * New upstream version 6.2.0
  * d/patches: update patches

 -- Alexis Murzeau   Thu, 21 Sep 2023 19:54:32 +0200



Regards,
--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



Bug#1053680: RFS: streamlink/6.2.1-1~bpo12+1 -- CLI for extracting video streams from various websites to a video player

2023-10-08 Thread Alexis Murzeau

Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
bookworm-backports repository.

* Package name: streamlink
  Version : 6.2.1-1~bpo12+1
  Upstream Author : Streamlink Team
* URL : https://streamlink.github.io/
* License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
  Section : python

It builds those binary packages:

 python3-streamlink - Python module for extracting video streams
from various websites
 streamlink - CLI for extracting video streams from various
websites to a video player

To access further information about this package, please visit the
following URL:
 https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

 dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_6.2.1-1~bpo12+1.dsc



Differences from testing package (6.2.1-1):
  * d/control,rules: remove doc package because of missing dependencies
on bookworm.
  * d/patches: remove webbrowser tests which require pytest-trio which
is not available on bookworm.



Changes since the previous backported version in bookworm:
streamlink (6.2.1-1~bpo12+1) bookworm-backports; urgency=medium

  * Rebuild for bookworm-backports.

 -- Alexis Murzeau   Wed, 04 Oct 2023 22:57:03 +0200

streamlink (6.2.1-1) unstable; urgency=medium

  * d/README.source: update license check and patches update instructions
  * New upstream version 6.2.1
  * d/patches: update and remove useless patch about furo

 -- Alexis Murzeau   Wed, 04 Oct 2023 22:35:26 +0200


Regards,
--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|


Bug#1053680: RFS: streamlink/6.2.1-1~bpo12+1 -- CLI for extracting video streams from various websites to a video player

2023-10-09 Thread Alexis Murzeau

Hi,

Thanks for your support!

On 08/10/2023 21:33, Boyuan Yang wrote:

Hi,


[...]

Package python3-pytest-trio is now available in bookworm-backports. Could you 
check and
try again?

Thanks,
Boyuan Yang


I've uploaded an updated version, adding back the removed tests works fine.

https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_6.2.1-1~bpo12+1.dsc


Here is the updated changes:


Differences from testing package (6.2.1-1):
  * d/control,rules: remove doc package because of missing dependencies
on bookworm.



Changes since the previous backported version in bookworm:
streamlink (6.2.1-1~bpo12+1) bookworm-backports; urgency=medium

  * Rebuild for bookworm-backports.
  * d/control,patches: revert "remove webbrowser tests" as
python3-pytest-trio is now available in bookworm-backports.

 -- Alexis Murzeau   Mon, 09 Oct 2023 10:26:12 +0200

streamlink (6.2.1-1) unstable; urgency=medium

  * d/README.source: update license check and patches update instructions
  * New upstream version 6.2.1
  * d/patches: update and remove useless patch about furo

 -- Alexis Murzeau   Wed, 04 Oct 2023 22:35:26 +0200


Thanks!

--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F |



Bug#1053479: RFS: streamlink/6.2.1-1 -- CLI for extracting video streams from various websites to a video player

2023-10-04 Thread Alexis Murzeau

Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 6.2.1.

  * Package name: streamlink
Version : 6.2.1-1
Upstream Author : Streamlink Team
  * URL : https://streamlink.github.io/
  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
  * Vcs  : https://github.com/wxMaxima-developers/wxmaxima
Section : python

It builds those binary packages:

   python3-streamlink - Python module for extracting video streams from
various websites
   python3-streamlink-doc - CLI for extracting video streams from
various websites (documentation)
   streamlink - CLI for extracting video streams from various websites
to a video player

To access further information about this package, please visit the
following URL:

   https://mentors.debian.net/package/streamlink/

Alternatively, you can download the package with 'dget' using this command:

   dget -x
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_6.2.1-1.dsc

Changes since the last upload to unstable:
streamlink (6.2.1-1) unstable; urgency=medium

  * New upstream version 6.2.1
  * d/patches: update patches

 -- Alexis Murzeau   Thu, 21 Sep 2023 19:54:32 +0200



Regards,
--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F




OpenPGP_0xE7BD1904F480937F.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1050204: RFS: streamlink/6.1.0-1 -- CLI for extracting video streams from various websites to a video player

2023-08-21 Thread Alexis Murzeau

Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 6.1.0.

  * Package name: streamlink
Version : 6.1.0-1
Upstream Author : Streamlink Team
  * URL : https://streamlink.github.io/
  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
  * Vcs  : https://github.com/wxMaxima-developers/wxmaxima
Section : python

It builds those binary packages:

   python3-streamlink - Python module for extracting video streams from 
various websites
   python3-streamlink-doc - CLI for extracting video streams from 
various websites (documentation)
   streamlink - CLI for extracting video streams from various websites 
to a video player


To access further information about this package, please visit the 
following URL:


   https://mentors.debian.net/package/streamlink/

Alternatively, you can download the package with 'dget' using this command:

   dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_6.1.0-1.dsc


Changes since the last upload to unstable:
streamlink (6.1.0-1) unstable; urgency=medium

   * d/clean: remove docs/_build directory (Closes: 1045365)
   * d/source/options: add extend-diff-ignore to fix dpkg-source failure
 due to local changes (python package metadata regeneration)
   * New upstream version 6.1.0
   * d/patches: fix screenshot link for Streamlink Twitch GUI

  -- Alexis Murzeau   Sun, 20 Aug 2023 12:12:58 +0200



Regards,
--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F




OpenPGP_0xE7BD1904F480937F.asc
Description: OpenPGP public key


OpenPGP_signature.asc
Description: OpenPGP digital signature


Bug#1011171: RFS: streamlink/4.0.1-1~bpo11+1 -- CLI for extracting video streams from various websites to a video player

2022-05-17 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
bullseye-backports repository.

 * Package name: streamlink
   Version : 4.0.1-1~bpo11+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from various 
websites
  python3-streamlink-doc - CLI for extracting video streams from various 
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_4.0.1-1~bpo11+1.dsc

Changes since the last upload to bullseye-backports:
streamlink (4.0.1-1~bpo11+1) bullseye-backports; urgency=medium

  * Rebuild for bullseye-backports.
  * d/salsa-ci.yml: run CI for bullseye-backports

 -- Alexis Murzeau   Tue, 17 May 2022 22:03:03 +0200

streamlink (4.0.1-1) unstable; urgency=medium

  * New upstream version 4.0.1
  * d/patches: update patches
  * switch to pyproject build
  * d/patches: remove dependency on versioningit
  * d/patches: remove intersphinx which requires internet
  * d/patches: add patch to fix build with root
  * d/control: remove ancient version requirements
  * d/control: avoid lxml crashes with some LC_ALL values

 -- Alexis Murzeau   Thu, 05 May 2022 23:02:52 +0200


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|





signature.asc
Description: OpenPGP digital signature


Bug#1014701: RFS: streamlink/4.2.0-1 -- CLI for extracting video streams from various websites to a video player

2022-07-10 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 4.2.0.

 * Package name: streamlink
   Version : 4.2.0-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_4.2.0-1.dsc

Changes since the last upload to unstable:
streamlink (4.2.0-1) unstable; urgency=medium

  * New upstream version 4.2.0
  * d/patches: update and rename to default names
  * d/control: update dependencies
  * d/README.source: update build command
  * d/s/lintian-overrides: update with new format
  * Bump Standards-Version to 4.6.1 (no changes)

 -- Alexis Murzeau   Sun, 10 Jul 2022 16:20:13 +0200

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



















signature.asc
Description: OpenPGP digital signature


Bug#1012542: RFS: streamlink/4.1.0-1 -- CLI for extracting video streams from various websites to a video player

2022-06-08 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 4.1.0.

 * Package name: streamlink
   Version : 4.1.0-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_4.1.0-1.dsc

Changes since the last upload to unstable:
streamlink (4.1.0-1) unstable; urgency=medium

  * d/salsa-ci.yml: adjust config to disable non working ones
  * New upstream version 4.1.0
  * Update patches

 -- Alexis Murzeau   Wed, 08 Jun 2022 23:38:11 +0200


Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



















signature.asc
Description: OpenPGP digital signature


Bug#1015143: RFS: streamlink/4.2.0-1~bpo11+1 -- CLI for extracting video streams from various websites to a video player

2022-07-16 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
bullseye-backports repository.

 * Package name: streamlink
   Version : 4.2.0-1~bpo11+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from various 
websites
  python3-streamlink-doc - CLI for extracting video streams from various 
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_4.2.0-1~bpo11+1.dsc

Changes since the last upload to bullseye-backports:
streamlink (4.2.0-1~bpo11+1) bullseye-backports; urgency=medium

  * Rebuild for bullseye-backports.
  * d/patches,d/control: fix build with older dependencies

 -- Alexis Murzeau   Sat, 16 Jul 2022 17:12:12 +0200

streamlink (4.2.0-1) unstable; urgency=medium

  * New upstream version 4.2.0
  * d/patches: update and rename to default names
  * d/control: update dependencies
  * d/README.source: update build command
  * d/s/lintian-overrides: update with new format
  * Bump Standards-Version to 4.6.1 (no changes)

 -- Alexis Murzeau   Sun, 10 Jul 2022 16:20:13 +0200

streamlink (4.1.0-1) unstable; urgency=medium

  * d/salsa-ci.yml: adjust config to disable non working ones
  * New upstream version 4.1.0
  * Update patches

 -- Alexis Murzeau   Wed, 08 Jun 2022 23:38:11 +0200



Differences from testing package (4.2.0-1):
  * d/README.source: added more information about the package maintenance
  * d/patches,d/control: fix build with older dependencies

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|





signature.asc
Description: OpenPGP digital signature


Bug#1010642: RFS: streamlink/4.0.1-1 -- CLI for extracting video streams from various websites to a video player

2022-05-09 Thread Alexis Murzeau
Control: tags -1 - moreinfo

Hi,

Thanks for your review :)

Le 07/05/2022 à 18:59, Jeroen Ploemen a écrit :
> Control: tags -1 moreinfo
> 
> On Thu, 5 May 2022 23:34:43 +0200
> Alexis Murzeau  wrote:
> 
>> I am looking for a sponsor for my package streamlink for a new
> 
> hi Alexis,
> 
> the package as published on mentors ftbfs for me, looks like it's
> trying to connect to the internet for something to do with intersphinx
> (docs/conf.py:110 ?). See log excerpt [1] below.

Indeed, I was running sbuild locally, but it doesn't prevent internet access.


> 
> Other than that, a few observations:
> * control: ancient version requirements for python, requests, and
>   pycountry are always met (even in oldstable);

I've removed old versions requirements always met (up to oldoldstable).


> * vcs: consider enabling the CI on Salsa, and pushing changes to
>   git before asking for sponsorship - it's a useful quality control
>   tool and a nice timesaver for reviewers too.
> 

I've enabled CI on Salsa (and pushed, which I forgot to do previously).
Everything is building Ok except the reprotest job which is failing because of 
multiple issues that I haven't fully investigated.
There is at least:
  - Hang in python 3.10 because of faketime, probably because faketime is not 
complete [1]
  - Crashes in lxml with unusual LC_ALL (maybe encoding related) (I need to 
report the bug for this)
  - Something else that crashes too and cause a core file to be generated and 
reported by dh_missing [2]


[1] https://github.com/wolfcw/libfaketime/issues/390
[2] usr/lib/python3.10/dist-packages/core

> 
> Please remove the moreinfo tag (and CC me directly) once you have an
> updated package ready.
> 

-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|



signature.asc
Description: OpenPGP digital signature


Bug#1010642: RFS: streamlink/4.0.1-1 -- CLI for extracting video streams from various websites to a video player

2022-05-05 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 4.0.1.

 * Package name: streamlink
   Version : 4.0.1-1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from
various websites
  python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_4.0.1-1.dsc

Changes since the last upload to unstable:
streamlink (4.0.1-1) unstable; urgency=medium

  * New upstream version 4.0.1
  * d/patches: update patches
  * switch to pyproject build
  * d/patches: remove dependency on versioningit

 -- Alexis Murzeau   Thu, 05 May 2022 23:02:52 +0200

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



















signature.asc
Description: OpenPGP digital signature


Bug#1018062: RFS: streamlink/4.3.0-1 -- CLI for extracting video streams from various websites to a video player

2022-08-24 Thread Alexis Murzeau

Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 4.3.0.

  * Package name: streamlink
Version : 4.3.0-1
Upstream Author : Streamlink Team
  * URL : https://streamlink.github.io/
  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
Section : python

It builds those binary packages:

   python3-streamlink - Python module for extracting video streams from
various websites
   python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
   streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
   https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

   dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_4.3.0-1.dsc

Changes since the last upload to unstable:
streamlink (4.3.0-1) unstable; urgency=medium

  * New upstream version 4.3.0
  * Update patches

 -- Alexis Murzeau   Wed, 24 Aug 2022 00:50:27 +0200

Regards,
--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F



















OpenPGP_signature
Description: OpenPGP digital signature


Bug#1020231: RFS: streamlink/5.0.0-1 -- CLI for extracting video streams from various websites to a video player

2022-09-18 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 5.0.0.

  * Package name: streamlink
Version : 5.0.0-1
Upstream Author : Streamlink Team
  * URL : https://streamlink.github.io/
  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
Section : python

It builds those binary packages:

   python3-streamlink - Python module for extracting video streams from
various websites
   python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
   streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
   https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

   dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_5.0.0-1.dsc

Changes since the last upload to unstable:
streamlink (5.0.0-1) unstable; urgency=medium

  * d/watch: fix uscan with github
  * New upstream version 5.0.0
  * d/patches: update patches
  * d/rules: disable internet access when building package

 -- Alexis Murzeau   Sun, 18 Sep 2022 16:22:45 +0200

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F






















signature.asc
Description: OpenPGP digital signature


Bug#1020644: RFS: streamlink/5.0.1-1 -- CLI for extracting video streams from various websites to a video player

2022-09-24 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "streamlink" for a new
upstream version 5.0.1.

  * Package name: streamlink
Version : 5.0.1-1
Upstream Author : Streamlink Team
  * URL : https://streamlink.github.io/
  * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
Section : python

It builds those binary packages:

   python3-streamlink - Python module for extracting video streams from
various websites
   python3-streamlink-doc - CLI for extracting video streams from various
websites (documentation)
   streamlink - CLI for extracting video streams from various websites to
a video player

To access further information about this package, please visit the
following URL:
   https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

   dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_5.0.1-1.dsc

Changes since the last upload to unstable:
streamlink (5.0.1-1) unstable; urgency=medium

  * New upstream version 5.0.1
  * d/patches: update patches

 -- Alexis Murzeau   Sat, 24 Sep 2022 18:58:43 +0200

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F
























signature.asc
Description: OpenPGP digital signature


Bug#1021072: RFS: streamlink/5.0.1-1~bpo11+1 -- CLI for extracting video streams from various websites to a video player

2022-10-01 Thread Alexis Murzeau
Package: sponsorship-requests
Severity: wishlist
X-Debbugs-CC: debian-backpo...@lists.debian.org

Dear mentors,

I am looking for a sponsor for my package "streamlink" into Debian
bullseye-backports repository.

 * Package name: streamlink
   Version : 5.0.1-1~bpo11+1
   Upstream Author : Streamlink Team
 * URL : https://streamlink.github.io/
 * License : BSD-2-clause, Apache-2.0, MIT/Expat, SIL-OFL-1.1
   Section : python

It builds those binary packages:

  python3-streamlink - Python module for extracting video streams from various 
websites
  python3-streamlink-doc - CLI for extracting video streams from various 
websites (documentation)
  streamlink - CLI for extracting video streams from various websites to a 
video player

To access further information about this package, please visit the
following URL:
  https://mentors.debian.net/package/streamlink


Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_5.0.1-1~bpo11+1.dsc

Changes since the last upload to bullseye-backports:
streamlink (5.0.1-1~bpo11+1) bullseye-backports; urgency=medium

  * Rebuild for bullseye-backports.

 -- Alexis Murzeau   Sat, 24 Sep 2022 20:10:28 +0200

streamlink (5.0.1-1) unstable; urgency=medium

  * New upstream version 5.0.1
  * d/patches: update patches

 -- Alexis Murzeau   Sat, 24 Sep 2022 18:58:43 +0200

streamlink (5.0.0-1) unstable; urgency=medium

  * d/watch: fix uscan with github
  * New upstream version 5.0.0
  * d/patches: update patches
  * d/rules: disable internet access when building package

 -- Alexis Murzeau   Sun, 18 Sep 2022 16:22:45 +0200

streamlink (4.3.0-1) unstable; urgency=medium

  * New upstream version 4.3.0
  * Update patches

 -- Alexis Murzeau   Wed, 24 Aug 2022 00:50:27 +0200



Differences from testing package (5.0.1-1):
  * d/patches,d/control: fix build with older dependencies

Regards,
-- 
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|









signature.asc
Description: OpenPGP digital signature


Bug#1026358: RFS: streamlink/5.1.2-1 -- CLI for extracting video streams from various websites to a video player

2022-12-22 Thread Alexis Murzeau

Hi,

On 22/12/2022 16:30, Adam Borowski wrote:

On Mon, Dec 19, 2022 at 01:19:03AM +0100, Alexis Murzeau wrote:

streamlink (5.1.2-1) unstable; urgency=medium

* New upstream version 5.1.2
* d/README.source: update instructions
* d/streamlink.{install,manpages}: update completion scripts location

   -- Alexis Murzeau   Mon, 19 Dec 2022 00:25:14 +0100


Hi,
this upload uses an old version of debian/changelog for 5.1.1-1:

  streamlink (5.1.1-1) unstable; urgency=medium
  
* New upstream version 5.1.1

-  * Control: add build-dep on python3-certifi.
  
- -- Alexis Murzeau   Tue, 29 Nov 2022 08:51:03 +

+ -- Alexis Murzeau   Mon, 28 Nov 2022 21:49:55 +0100

Please update that to be same as in the archive.


Meow!


Thanks, I forgot to do that.

I've updated it, and also made additional small changes to the changelog
to close a bug that is fixed with this version and a
standards-version update.

I've uploaded the update to mentors, here is the new changelog:

https://mentors.debian.net/debian/pool/main/s/streamlink/streamlink_5.1.2-1.dsc

streamlink (5.1.2-1) unstable; urgency=medium

  * New upstream version 5.1.2
  * d/README.source: update packaging instructions
  * d/streamlink.{install,manpages}: update completion scripts location
(Closes: #1026714)
  * Bump Standards-Version to 4.6.2 (no changes)

 -- Alexis Murzeau   Thu, 22 Dec 2022 15:35:53 +0100

streamlink (5.1.1-1) unstable; urgency=medium

  * New upstream version 5.1.1
  * Control: add build-dep on python3-certifi.

 -- Alexis Murzeau   Tue, 29 Nov 2022 08:51:03 +


--
Alexis Murzeau
PGP: B7E6 0EBB 9293 7B06 BDBC  2787 E7BD 1904 F480 937F|



OpenPGP_signature
Description: OpenPGP digital signature


  1   2   >