Re: shotdetect second uploader

2015-11-24 Thread Sebastian Ramacher
Hi Guilio

On 2015-11-03 02:17:10, Giulio Paci wrote:
> Hi to all,
>   I just updated the shotdetect package in order to include a patch that 
> fixes FTBFS against ffmpeg 2.9.

Thanks, uploaded!

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: PGP signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#803860: marked as done (shotdetect: FTBFS with FFmpeg 2.9)

2015-11-24 Thread Debian Bug Tracking System
Your message dated Tue, 24 Nov 2015 19:50:32 +
with message-id 
and subject line Bug#803860: fixed in shotdetect 1.0.86-5
has caused the Debian Bug report #803860,
regarding shotdetect: FTBFS with FFmpeg 2.9
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
803860: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803860
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: shotdetect
Version: 1.0.86-4
Severity: important
Tags: patch
User: pkg-multimedia-maintainers@lists.alioth.debian.org
Usertags: ffmpeg2.9

Dear Maintainer,

your package fails to build with the upcoming ffmpeg 2.9.
This bug will become release-critical at some point when the
ffmpeg2.9 transition gets closer.

Attached is a patch replacing the deprecated functionality.
It also works with ffmpeg 2.8.
Please apply this patch and forward it upstream, if necessary.

These changes have little regression potential.

Best regards,
Andreas

diff --git a/debian/patches/ffmpeg_2.9.patch b/debian/patches/ffmpeg_2.9.patch
new file mode 100644
index 000..5a75ef0
--- /dev/null
+++ b/debian/patches/ffmpeg_2.9.patch
@@ -0,0 +1,68 @@
+Description: Replace deprecated FFmpeg API
+Author: Andreas Cadhalpun 
+Last-Update: <2015-11-02>
+
+--- shotdetect-1.0.86.orig/src/film.cpp
 shotdetect-1.0.86/src/film.cpp
+@@ -292,14 +292,14 @@ film::process ()
+   /*
+* Allocate video frame 
+*/
+-  pFrame = avcodec_alloc_frame ();
+-  pFrameRGB = avcodec_alloc_frame ();
+-  pFrameRGBprev = avcodec_alloc_frame ();
++  pFrame = av_frame_alloc ();
++  pFrameRGB = av_frame_alloc ();
++  pFrameRGBprev = av_frame_alloc ();
+ 
+   /*
+* Determine required buffer size and allocate buffer 
+*/
+-  numBytes = avpicture_get_size (PIX_FMT_RGB24, width, height);
++  numBytes = avpicture_get_size (AV_PIX_FMT_RGB24, width, height);
+ 
+   buffer = (uint8_t *) malloc (sizeof (uint8_t) * numBytes);
+   buffer2 = (uint8_t *) malloc (sizeof (uint8_t) * numBytes);
+@@ -307,9 +307,9 @@ film::process ()
+   /*
+* Assign appropriate parts of buffer to image planes in pFrameRGB 
+*/
+-  avpicture_fill ((AVPicture *) pFrameRGB, buffer, PIX_FMT_RGB24, width, height);
++  avpicture_fill ((AVPicture *) pFrameRGB, buffer, AV_PIX_FMT_RGB24, width, height);
+ 
+-  avpicture_fill ((AVPicture *) pFrameRGBprev, buffer2, PIX_FMT_RGB24, width, height);
++  avpicture_fill ((AVPicture *) pFrameRGBprev, buffer2, AV_PIX_FMT_RGB24, width, height);
+ 
+ 
+   /*
+@@ -351,7 +351,7 @@ film::process ()
+ 	  if (! img_convert_ctx)
+ 		{
+ 		  img_convert_ctx = sws_getContext(width, height, pCodecCtx->pix_fmt,
+-		   width, height, PIX_FMT_RGB24, SWS_BICUBIC, 
++		   width, height, AV_PIX_FMT_RGB24, SWS_BICUBIC, 
+ 		   NULL, NULL, NULL);
+ 		  if (! img_convert_ctx) 
+ 		  {
+@@ -374,7 +374,7 @@ film::process ()
+ int src_width, int src_height)
+ 	  */
+ 	  /*
+-	  img_convert ((AVPicture *) pFrameRGB, PIX_FMT_RGB24, (AVPicture *) pFrame, pCodecCtx->pix_fmt, width, height);
++	  img_convert ((AVPicture *) pFrameRGB, AV_PIX_FMT_RGB24, (AVPicture *) pFrame, pCodecCtx->pix_fmt, width, height);
+ 	  */
+ 
+ this->frame_number ++;
+@@ -437,9 +437,9 @@ film::process ()
+*/
+   free (buffer);
+   free (buffer2);
+-  av_free (pFrameRGB);
+-  av_free (pFrame);
+-  av_free (pFrameRGBprev);
++  av_frame_free ();
++  av_frame_free ();
++  av_frame_free ();
+   avcodec_close (pCodecCtx);
+ }
+   /*
diff --git a/debian/patches/series b/debian/patches/series
index a9283dd..777acd1 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -4,3 +4,4 @@
 1004-fix_comments_and_names.patch
 
 libav10.patch
+ffmpeg_2.9.patch
--- End Message ---
--- Begin Message ---
Source: shotdetect
Source-Version: 1.0.86-5

We believe that the bug you reported is fixed in the latest version of
shotdetect, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 803...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Giulio Paci  (supplier of updated shotdetect package)

(This message was generated automatically at their request; if you

shotdetect_1.0.86-5_amd64.changes ACCEPTED into unstable

2015-11-24 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 24 Nov 2015 20:37:42 +0100
Source: shotdetect
Binary: shotdetect
Architecture: source
Version: 1.0.86-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Giulio Paci 
Description:
 shotdetect - scene change detector
Closes: 803860
Changes:
 shotdetect (1.0.86-5) unstable; urgency=medium
 .
   [ Sebastian Ramacher ]
   * Remove myself from Uploaders.
 .
   [ Giulio Paci ]
   * Add 1008-fix-FTBFS-ffmpeg_2.9.patch (Closes: #803860).
   * Bump Standards-Version to 3.9.6.
 No changes needed.
Checksums-Sha1:
 5f2c5c4347ccf07e6ad0e19689f99e91c7bd44f4 2179 shotdetect_1.0.86-5.dsc
 a464ce47f60aec47f3b17903e403b46f472d7ad0 12072 
shotdetect_1.0.86-5.debian.tar.xz
Checksums-Sha256:
 a5d4d468df0613a39c2e3d53dab4c7a96f4cabf82c9f5db9b2797cbfefb18234 2179 
shotdetect_1.0.86-5.dsc
 4845a52ff52cd4bfa084d917b3a21f801dbfa8f0145664a2f3db0ea389546d9e 12072 
shotdetect_1.0.86-5.debian.tar.xz
Files:
 498b0ad4694c93eee2c7faf6de28a238 2179 video optional shotdetect_1.0.86-5.dsc
 be16de34772ca52fce55ff2c8f6d7dfe 12072 video optional 
shotdetect_1.0.86-5.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWVL1SAAoJEGny/FFupxmTlj4QALBqN1o/jHhQBYJw6UaEyC8v
xyVDOEyYtWNUaAc65PMbkXQZcI+mOnt7sfKJ1Y+qE3l8tIcXI8dCBRP7ZOgEoj1d
KtdFl9TDgzaIxOy3k56TCwcRGXhFFK8ap+KuSBADqxfMr+yCoR5EEl105r+aR5p0
tOJYKv4ACU2ua6AQtcda14Oi4SZwNUEtjiYeRNJcPMU/pHsO2C54B+FoGzNkVGUk
Gt8JvAYIeYsTRGiIwI/cQ8tTNESdGCq5xhWlexxvet2R9SuZN8I0jWEN3sWzPxCk
8u6t2nO7XsGWFZRPURXjR5SCG6EWpcKQ5Wk5QW+FLehCMiMmuYyJsUbdMG2eB5gv
HVZXaO2z5zNzjEyCw+u0QEoi9JrIGa5zGqpM5dz2YOPBIAQNX/MsR4NF81QAVSiE
C6cr8Bd9p/S9JCceAYxK+CqdBqxSRfmWXbOZMH+DSD4wpq3IiIYb51i2Bd35yqxY
YGpH28umZ/sO91Zzl5SzH9kmm8wzskQuiua94guAVPcq6rS/iLLXRceke//MNhcq
8zsAD948tjnlNf6q2HIaiTnNtTPGbvtfq4CET2+LemC/hKUOcZqMAm23rDC8p9Dr
CakG8Y/DYgxE5Fo6ALss2IfzNfPvOf4FDDhyYYB8kZA7JC5zeTNkumHx+xXs1D9M
Y0zoJ7Em1jEAEgxHAfYn
=I/dV
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#761475: marked as done (streamtuner2: Find does not work)

2015-11-24 Thread Debian Bug Tracking System
Your message dated Wed, 25 Nov 2015 07:20:02 +
with message-id 
and subject line Bug#761475: fixed in streamtuner2 2.1.9-1
has caused the Debian Bug report #761475,
regarding streamtuner2: Find does not work
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
761475: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=761475
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: streamtuner2
Version: 2.1.3-1
Severity: normal
Tags: upstream

Hi, when trying to use the Find tool, I get a dialog with nothing but a line of 
text. I see this error on the stderr:

Traceback (most recent call last):
  File "/usr/bin/streamtuner2", line 577, in menu_search
self.search_dialog_current.set_label("just %s" % 
main.channels[self.current].title)
AttributeError: 'NoneType' object has no attribute 'set_label'

But even if I comment that line (it is just a set_label), I don't get the 
functionality.

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.14-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages streamtuner2 depends on:
ii  python-glade2 2.24.0-4
ii  python-gtk2   2.24.0-4
ii  python-imaging2.5.3-1
ii  python-keybinder  0.3.0-3
ii  python-lxml   3.3.5-1+b1
ii  python-pyquery1.2.4-1
ii  python-requests   2.3.0-1
pn  python:any

streamtuner2 recommends no packages.

Versions of packages streamtuner2 suggests:
pn  audacious  
pn  totem  
ii  vlc2.2.0~pre2-4+b1

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: streamtuner2
Source-Version: 2.1.9-1

We believe that the bug you reported is fixed in the latest version of
streamtuner2, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 761...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
TANIGUCHI Takaki  (supplier of updated streamtuner2 package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Nov 2015 16:05:28 +0900
Source: streamtuner2
Binary: streamtuner2
Architecture: source all
Version: 2.1.9-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: TANIGUCHI Takaki 
Description:
 streamtuner2 - Browser for Internet Radio Stations
Closes: 761475 761476
Changes:
 streamtuner2 (2.1.9-1) unstable; urgency=medium
 .
   * Imported Upstream version 2.1.9
 +  Fix "Find does not work" (Closes: #761475)
   * debian/patches: Remove merged patches..
   * debian/version: Upgrade to 9.
   * debian/rules: Ignore Makefile actions.
   * debian/install: install bundle/*.py. (Closes: #761476)
   * debian/control:
 - Bump Stnadards-Version 3.9.6.
 - Add dh-python to Build-Depends.
Checksums-Sha1:
 c25debebd522b1d1e951e8d326ec589c460e7bed 1873 streamtuner2_2.1.9-1.dsc
 0f799e77c58680a42cfb3976abe2b74654050915 507941 streamtuner2_2.1.9.orig.tar.bz2
 386ebcc036827ea75a91093f02d3c230e472e01e 3608 
streamtuner2_2.1.9-1.debian.tar.xz
 77032b60da61a01e77e8695b71050d1c4b048011 387730 streamtuner2_2.1.9-1_all.deb
Checksums-Sha256:
 b5ae6a1830ac5d212da86722b08ccb59a51cbc1c8aee99958a0c6b498f8ae07c 1873 
streamtuner2_2.1.9-1.dsc
 339184ee86c66436f3bdb9044418587ff5e8b13877923227a7e26c64bbe703e4 507941 
streamtuner2_2.1.9.orig.tar.bz2
 b2c5dcedb9325e6ca1a8a7cd779228fc872b71013e5fd441955af2458a67c637 3608 
streamtuner2_2.1.9-1.debian.tar.xz
 8366b9800181db1f53d383c8552c39602b19413db21ae1b5ff9748f5235c6d91 387730 
streamtuner2_2.1.9-1_all.deb
Files:
 07078f7a45e305c4e914be1ccb3b6d5f 1873 sound extra streamtuner2_2.1.9-1.dsc
 739e2e54be345d20d1c0176e1a4f1ae2 507941 sound extra 
streamtuner2_2.1.9.orig.tar.bz2
 c7ac6241abf33b5540a10b5021e82829 3608 sound extra 
streamtuner2_2.1.9-1.debian.tar.xz
 0bc0a78c811cf1b35f8e49ab2842117e 387730 sound extra 
streamtuner2_2.1.9-1_all.deb

-BEGIN PGP SIGNATURE-
Version: 

Bug#761476: marked as done (streamtuner2: Various exceptions)

2015-11-24 Thread Debian Bug Tracking System
Your message dated Wed, 25 Nov 2015 07:20:02 +
with message-id 
and subject line Bug#761476: fixed in streamtuner2 2.1.9-1
has caused the Debian Bug report #761476,
regarding streamtuner2: Various exceptions
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
761476: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=761476
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: streamtuner2
Version: 2.1.3-1
Severity: minor
Tags: upstream

When starting streamtuner2 for the first time, there are many exceptions 
printed out, which evidently point to unresolved bugs. I am reporting them 
here, but I don't know the impact:

/usr/bin/streamtuner2:134: GtkWarning: Could not load image 
'/usr/share/pixmaps/streamtuner2.png': Failed to open file 
'/usr/share/pixmaps/streamtuner2.png': No such file or directory
  gtk.Builder.add_from_file(self, conf.find_in_dirs([".", conf.share], 
ui_file)), gui_startup(2/20.0)
/usr/bin/streamtuner2:134: GtkWarning: Could not load image 'streamtuner2.png': 
Failed to open file '/usr/share/streamtuner2/streamtuner2.png': No such file or 
directory
  gtk.Builder.add_from_file(self, conf.find_in_dirs([".", conf.share], 
ui_file)), gui_startup(2/20.0)

/usr/bin/streamtuner2:136: GtkWarning: gtk_menu_attach_to_widget(): menu 
already attached to GtkMenuItem
  self.extensionsCTM.set_submenu(self.extensions)  # duplicates 
Station>Extension menu into stream context menu

/usr/bin/streamtuner2:422: GtkWarning: IA__gtk_progress_set_percentage: 
assertion 'percentage >= 0 && percentage <= 1.0' failed
  mygtk.do(lambda:self.progress.show() or self.progress.set_fraction(text))

Traceback (most recent call last):
  File "/usr/bin/streamtuner2", line 449, in load_plugin_channels
plugin = __import__("channels."+module, None, None, [""])
  File "/usr/share/streamtuner2/channels/timer.py", line 25, in 
import kronos
ImportError: No module named kronos


-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.14-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages streamtuner2 depends on:
ii  python-glade2 2.24.0-4
ii  python-gtk2   2.24.0-4
ii  python-imaging2.5.3-1
ii  python-keybinder  0.3.0-3
ii  python-lxml   3.3.5-1+b1
ii  python-pyquery1.2.4-1
ii  python-requests   2.3.0-1
pn  python:any

streamtuner2 recommends no packages.

Versions of packages streamtuner2 suggests:
pn  audacious  
pn  totem  
ii  vlc2.2.0~pre2-4+b1

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: streamtuner2
Source-Version: 2.1.9-1

We believe that the bug you reported is fixed in the latest version of
streamtuner2, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 761...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
TANIGUCHI Takaki  (supplier of updated streamtuner2 package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Nov 2015 16:05:28 +0900
Source: streamtuner2
Binary: streamtuner2
Architecture: source all
Version: 2.1.9-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: TANIGUCHI Takaki 
Description:
 streamtuner2 - Browser for Internet Radio Stations
Closes: 761475 761476
Changes:
 streamtuner2 (2.1.9-1) unstable; urgency=medium
 .
   * Imported Upstream version 2.1.9
 +  Fix "Find does not work" (Closes: #761475)
   * debian/patches: Remove merged patches..
   * debian/version: Upgrade to 9.
   * debian/rules: Ignore Makefile actions.
   * debian/install: install bundle/*.py. (Closes: #761476)
   * debian/control:
 - Bump Stnadards-Version 3.9.6.
 - Add dh-python to Build-Depends.
Checksums-Sha1:
 c25debebd522b1d1e951e8d326ec589c460e7bed 1873 streamtuner2_2.1.9-1.dsc
 0f799e77c58680a42cfb3976abe2b74654050915 507941 

Bug#806183: mpv: New upstream version, please repack

2015-11-24 Thread Dionisio E Alonso
Package: mpv
Version: 0.12.0-1
Severity: wishlist
Tags: upstream

There is a new upstream version v0.13. Please pack it for Debian.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


mediatomb is marked for autoremoval from testing

2015-11-24 Thread Debian testing autoremoval watch
mediatomb 0.12.1-47-g7ab7616-1 is marked for autoremoval from testing on 
2015-11-25

It is affected by these RC bugs:
803173: mediatomb: [mediatomb] Cannot start


___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#806185: audacity: upgrade to 2.1.1

2015-11-24 Thread Pavel Sofishchenko
Package: audacity
Version: 2.0.6-2
Severity: wishlist

Dear maintainer,

Can you upgrade audacity to 2.1.1 from upstream in debian?
http://web.audacityteam.org/download/source

Thanks.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processing of streamtuner2_2.1.9-1_amd64.changes

2015-11-24 Thread Debian FTP Masters
streamtuner2_2.1.9-1_amd64.changes uploaded successfully to 
ftp-master.debian.org
along with the files:
  streamtuner2_2.1.9-1.dsc
  streamtuner2_2.1.9.orig.tar.bz2
  streamtuner2_2.1.9-1.debian.tar.xz
  streamtuner2_2.1.9-1_all.deb

Greetings,

Your Debian queue daemon (running on host coccia.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processing of streamtuner2_2.1.9-1_amd64.changes

2015-11-24 Thread Debian FTP Masters
streamtuner2_2.1.9-1_amd64.changes uploaded successfully to localhost
along with the files:
  streamtuner2_2.1.9-1.dsc
  streamtuner2_2.1.9.orig.tar.bz2
  streamtuner2_2.1.9-1.debian.tar.xz
  streamtuner2_2.1.9-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


streamtuner2_2.1.9-1_amd64.changes ACCEPTED into unstable

2015-11-24 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Nov 2015 16:05:28 +0900
Source: streamtuner2
Binary: streamtuner2
Architecture: source all
Version: 2.1.9-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: TANIGUCHI Takaki 
Description:
 streamtuner2 - Browser for Internet Radio Stations
Closes: 761475 761476
Changes:
 streamtuner2 (2.1.9-1) unstable; urgency=medium
 .
   * Imported Upstream version 2.1.9
 +  Fix "Find does not work" (Closes: #761475)
   * debian/patches: Remove merged patches..
   * debian/version: Upgrade to 9.
   * debian/rules: Ignore Makefile actions.
   * debian/install: install bundle/*.py. (Closes: #761476)
   * debian/control:
 - Bump Stnadards-Version 3.9.6.
 - Add dh-python to Build-Depends.
Checksums-Sha1:
 c25debebd522b1d1e951e8d326ec589c460e7bed 1873 streamtuner2_2.1.9-1.dsc
 0f799e77c58680a42cfb3976abe2b74654050915 507941 streamtuner2_2.1.9.orig.tar.bz2
 386ebcc036827ea75a91093f02d3c230e472e01e 3608 
streamtuner2_2.1.9-1.debian.tar.xz
 77032b60da61a01e77e8695b71050d1c4b048011 387730 streamtuner2_2.1.9-1_all.deb
Checksums-Sha256:
 b5ae6a1830ac5d212da86722b08ccb59a51cbc1c8aee99958a0c6b498f8ae07c 1873 
streamtuner2_2.1.9-1.dsc
 339184ee86c66436f3bdb9044418587ff5e8b13877923227a7e26c64bbe703e4 507941 
streamtuner2_2.1.9.orig.tar.bz2
 b2c5dcedb9325e6ca1a8a7cd779228fc872b71013e5fd441955af2458a67c637 3608 
streamtuner2_2.1.9-1.debian.tar.xz
 8366b9800181db1f53d383c8552c39602b19413db21ae1b5ff9748f5235c6d91 387730 
streamtuner2_2.1.9-1_all.deb
Files:
 07078f7a45e305c4e914be1ccb3b6d5f 1873 sound extra streamtuner2_2.1.9-1.dsc
 739e2e54be345d20d1c0176e1a4f1ae2 507941 sound extra 
streamtuner2_2.1.9.orig.tar.bz2
 c7ac6241abf33b5540a10b5021e82829 3608 sound extra 
streamtuner2_2.1.9-1.debian.tar.xz
 0bc0a78c811cf1b35f8e49ab2842117e 387730 sound extra 
streamtuner2_2.1.9-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWVV3hAAoJEMwUn2wopeJXJ3sQAL4reZF1Nch9YNKsYbMlvOTi
DVXa0ANwGFDA/f3evUy47M2hI0NzuLNBFr6tAnhUsSS6QXmOXYFcSYIIjHtNdFXW
Sf20/cQWxDEnkqqypqKVnYqI+UMN1YTcQXGIGchN4oeEQTlzUVreBRoZJ9TMLqbR
7zmp+dR3sXOLojpVRsa9hn6/wi10GsNjUD0TLHp/eg6vxHTehFV9573gcBNvocOC
gip+cnF94FkAbNRdFtL2H45l37OPRb+uOBjHsfaMrTh9vgoH441yZMgXmspCoYiF
uXaVMlu/stzOJoTYxQDa7FnY9fhamuaN+Ez8qNjA5Bo8AVPTAYbRd8s0aPs2THdK
OyeTbK1KKGHzJbeyZTtjqZoomvJQFrImv+Px3/to4WoEYWntp33yGOq834os110B
fseu7WX6J4RYzTLczYToDduKXqaXDhCyy98LPGS3A71AoPnlA2+DwyFpzpJFKnmA
K+q4Qrj/y/Rr1PJ4p2EEMH8BVSLt2vuVvGT3X8PpgtRysLjQRmX2AB/BLNV2d3Gt
kpenrtPgNa7CtB85fU5mSa7OlzQk+GA0Kt3v5t7cbt7gqcHObzMlwpiIpHPaHsk7
adMJSCrgHhFRT/4WHWm0b+b1hjUymX0BrQg8gjDjURw/obOTMwnfULEodeJjjTOs
JDaq3+CT5H8k1Uw7vmYc
=DK8L
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Re: kodi-pvr-hts_2.1.18-1_amd64.changes is NEW

2015-11-24 Thread Bálint Réczey
Hi Tobias,

OK, I always handled ITP-s as a must but in seems to be just a strong
recommendation to have one.
If FTP Masters are happy happy with that I'll skip filing ITP-s for
the rest of the PVR addons.

Cheers,
Balint

2015-11-24 16:38 GMT+01:00 Tobias Grimm :
> Hello Bálint,
>
> I'm not sure if an ITP makes sense here - it's an replacement for the old
> xbmc-pvr-addons package which was split into multiple packages by upstream.
> So it's not exactly something completely new.
> (And I didn't create an ITP for kodi-pvr-vdr-vnsi either.)
>
> BR,
>
> Tobias
>
>
> Am 24.11.2015 um 15:37 schrieb Bálint Réczey:
>
>> Hi Tobias,
>>
>> I think ITP will be missing from the changelog.
>>
>> Cheers,
>> Balint
>>
>> 2015-11-23 23:48 GMT+01:00 Debian FTP Masters
>> :
>>>
>>> binary:kodi-pvr-hts is NEW.
>>> source:kodi-pvr-hts is NEW.
>>>
>>> Your package has been put into the NEW queue, which requires manual
>>> action
>>> from the ftpteam to process. The upload was otherwise valid (it had a
>>> good
>>> OpenPGP signature and file hashes are valid), so please be patient.
>>>
>>> Packages are routinely processed through to the archive, and do feel
>>> free to browse the NEW queue[1].
>>>
>>> If there is an issue with the upload, you will receive an email from a
>>> member of the ftpteam.
>>>
>>> If you have any questions, you may reply to this email.
>>>
>>> [1]: https://ftp-master.debian.org/new.html
>>>
>>> ___
>>> pkg-multimedia-maintainers mailing list
>>> pkg-multimedia-maintainers@lists.alioth.debian.org
>>>
>>> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers
>>
>>
>> ___
>> pkg-multimedia-maintainers mailing list
>> pkg-multimedia-maintainers@lists.alioth.debian.org
>>
>> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers
>>
>

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

synfigstudio REMOVED from testing

2015-11-24 Thread Debian testing watch
FYI: The status of the synfigstudio source package
in Debian's testing distribution has changed.

  Previous version: 1.0-1
  Current version:  (not in testing)
  Hint: 
Bug #803037: synfigstudio: FTBFS: uimanager.h:33:27: fatal error: 
sigc++/object.h: No such file or directory

The script that generates this mail tries to extract removal
reasons from comments in the britney hint files. Those comments
were not originally meant to be machine readable, so if the
reason for removing your package seems to be nonsense, it is
probably the reporting script that got confused. Please check the
actual hints file before you complain about meaningless removals.

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Re: kodi-pvr-hts_2.1.18-1_amd64.changes is NEW

2015-11-24 Thread Bálint Réczey
Hi Tobias,

I think ITP will be missing from the changelog.

Cheers,
Balint

2015-11-23 23:48 GMT+01:00 Debian FTP Masters :
> binary:kodi-pvr-hts is NEW.
> source:kodi-pvr-hts is NEW.
>
> Your package has been put into the NEW queue, which requires manual action
> from the ftpteam to process. The upload was otherwise valid (it had a good
> OpenPGP signature and file hashes are valid), so please be patient.
>
> Packages are routinely processed through to the archive, and do feel
> free to browse the NEW queue[1].
>
> If there is an issue with the upload, you will receive an email from a
> member of the ftpteam.
>
> If you have any questions, you may reply to this email.
>
> [1]: https://ftp-master.debian.org/new.html
>
> ___
> pkg-multimedia-maintainers mailing list
> pkg-multimedia-maintainers@lists.alioth.debian.org
> http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#740710: problem with SF3 playback

2015-11-24 Thread hamish
Thanks Fabian. I will try tomorrow.

Hamish

Sent from my android device.

-Original Message-
From: Fabian Greffrath 
To: 740...@bugs.debian.org, Hamish Moffatt 
Sent: Tue, 24 Nov 2015 22:32
Subject: Re: Bug#740710: problem with SF3 playback

Am Dienstag, den 24.11.2015, 11:09 +0100 schrieb Fabian Greffrath:
> This sure needs further investigation.

Got a bit further:

I forgot to adjust the sample->loopstart and sample->loopend values and
I am not even sure if they make sense at all for compressed samples. If
you wipe away this whole block in src/sfloader/fluid_defsfont.c that my
patch adds to fluid_sample_import_sfont()

/* loop is fowled?? (cluck cluck :) */
if (sample->loopend > sample->end ||
sample->loopstart >= sample->loopend ||
sample->loopstart <= sample->start)
{
  /* can pad loop by 8 samples and ensure at least 4 for loop (2*8+4) */
  if ((sample->end - sample->start) >= 20)
  {
sample->loopstart = sample->start + 8;
sample->loopend = sample->end - 8;
  }
  else /* loop is fowled, sample is tiny (can't pad 8 samples) */
  {
sample->loopstart = sample->start + 1;
sample->loopend = sample->end - 1;
  }
}

and replace it with a simple

sample->loopstart = sample->loopend = 0;

the MIDI plays back as expected.

 - Fabian
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#740710: problem with SF3 playback

2015-11-24 Thread Fabian Greffrath
Am Dienstag, den 24.11.2015, 11:09 +0100 schrieb Fabian Greffrath:
> This sure needs further investigation.

Got a bit further:

I forgot to adjust the sample->loopstart and sample->loopend values and
I am not even sure if they make sense at all for compressed samples. If
you wipe away this whole block in src/sfloader/fluid_defsfont.c that my
patch adds to fluid_sample_import_sfont()

    /* loop is fowled?? (cluck cluck :) */
    if (sample->loopend > sample->end ||
        sample->loopstart >= sample->loopend ||
        sample->loopstart <= sample->start)
    {
      /* can pad loop by 8 samples and ensure at least 4 for loop (2*8+4) */
      if ((sample->end - sample->start) >= 20)
      {
        sample->loopstart = sample->start + 8;
        sample->loopend = sample->end - 8;
      }
      else /* loop is fowled, sample is tiny (can't pad 8 samples) */
      {
        sample->loopstart = sample->start + 1;
        sample->loopend = sample->end - 1;
      }
    }

and replace it with a simple

    sample->loopstart = sample->loopend = 0;

the MIDI plays back as expected.

 - Fabian


signature.asc
Description: This is a digitally signed message part
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#806046: horgand: FTBFS when built with dpkg-buildpackage -A (No such file or directory)

2015-11-24 Thread Santiago Vila
Package: src:horgand
Version: 1.14-5
User: sanv...@debian.org
Usertags: binary-indep
Severity: important

Dear maintainer:

I tried to build this package with "dpkg-buildpackage -A"
(i.e. only architecture-independent packages), and it failed:


[...]
 fakeroot debian/rules binary-indep
dh binary-indep --with autoreconf
   dh_testroot -i
   dh_prep -i
   dh_installdirs -i
   dh_auto_install -i
make -j1 install DESTDIR=/<>/debian/tmp 
AM_UPDATE_INFO_DIR=no
make[1]: Entering directory '/<>'
Making install in src
make[2]: Entering directory '/<>/src'
make[3]: Entering directory '/<>/src'
 /bin/mkdir -p '/<>/debian/tmp/usr/lib/horgand'
  /usr/bin/install -c horgand '/<>/debian/tmp/usr/lib/horgand'
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/<>/src'
make[2]: Leaving directory '/<>/src'
Making install in data
make[2]: Entering directory '/<>/data'
make[3]: Entering directory '/<>/data'
make[3]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/<>/debian/tmp/usr/share/horgand'
 /usr/bin/install -c -m 644 Default.horeb Rhythm_List.txt 130_Houseloop_2.wav 
AcousticBass.wav crackle_loop01.wav egg_loop01.wav FenderBass.wav 
FretlessBass.wav frog_loop01.wav funkyfeet1.wav 
'/<>/debian/tmp/usr/share/horgand'
make[3]: Leaving directory '/<>/data'
make[2]: Leaving directory '/<>/data'
Making install in man
make[2]: Entering directory '/<>/man'
make[3]: Entering directory '/<>/man'
make[3]: Nothing to be done for 'install-exec-am'.
 /bin/mkdir -p '/<>/debian/tmp/usr/share/man/man1'
 /usr/bin/install -c -m 644 horgand.1 
'/<>/debian/tmp/usr/share/man/man1'
make[3]: Leaving directory '/<>/man'
make[2]: Leaving directory '/<>/man'
make[2]: Entering directory '/<>'
make[3]: Entering directory '/<>'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/<>'
make[2]: Leaving directory '/<>'
make[1]: Leaving directory '/<>'
   debian/rules override_dh_install
make[1]: Entering directory '/<>'
dh_install
cp debian/horgand.wrapper /<>/debian/horgand/usr/bin/horgand
cp: cannot create regular file 
'/<>/debian/horgand/usr/bin/horgand': No such file or directory
debian/rules:10: recipe for target 'override_dh_install' failed
make[1]: *** [override_dh_install] Error 1
make[1]: Leaving directory '/<>'
debian/rules:4: recipe for target 'binary-indep' failed
make: *** [binary-indep] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary-indep gave error exit 
status 2


Sorry not to have a fix, as I am reporting many bugs similar to
this one, but I can give some general hints:

* If all the arch-independent packages are dummy transitional packages
released with jessie, the easy fix is to drop them now.
 
* If not, debian/rules should be modified so that the binary-indep
target works in all cases, even when binary-arch is not used (this is
what the "Architecture: all" autobuilder does). For that:

* If you are using debhelper, you might want to use options -a and -i
for dh_* commands so that they do not act on packages they do not
have to act.

* Also, if you are using dh, the (independently) optional targets
override_dh_foo-arch and override_dh_foo-indep (for several values
of "foo") may be useful to write a debian/rules which behaves exactly
as desired.


After checking that both "dpkg-buildpackage -A" and "dpkg-buildpackage -B"
work properly, this package will be suitable to be uploaded in
source-only form if you wish (you might want to try it).

Thanks.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers