Bug#833489: projectm-pulseaudio: ttf-dejavu-core dependency not listed

2016-08-04 Thread vrishab
Package: projectm-pulseaudio
Version: 2.1.0+dfsg-4
Severity: normal

Dear Maintainer,

   * What led up to the situation?

Installing projectm-pulseaudio

   * What exactly did you do (or not do) that was effective (or
 ineffective)?

apt-get install projectm-pulseaudio

   * What was the outcome of this action?

dev@unstable:~/Downloads/rhythmbox-plugins/rhythmbox-spectrum$ projectM-
pulseaudio
Gtk-Message: Failed to load module "canberra-gtk-module"
dir:/usr/share/projectM/config.inp
reading ~/.projectM/config.inp
[projectM] config file: /home/dev/.projectM/config.inp
No Textures Loaded from "/usr"/share/projectM/textures
Could not open font file: /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf

   * What outcome did you expect instead?

Application should have started.



-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages projectm-pulseaudio depends on:
ii  libc6  2.23-4
ii  libftgl2   2.1.3~rc5-4+nmu1+b1
ii  libgcc11:6.1.1-10
ii  libglew1.131.13.0-2
ii  libprojectm-qt1v5  2.1.0+dfsg-4
ii  libprojectm2v5 2.1.0+dfsg-4
ii  libpulse0  9.0-1.1
ii  libqt4-opengl  4:4.8.7+dfsg-8
ii  libqtcore4 4:4.8.7+dfsg-8
ii  libqtgui4  4:4.8.7+dfsg-8
ii  libstdc++6 6.1.1-10
ii  pulseaudio 9.0-1.1

projectm-pulseaudio recommends no packages.

projectm-pulseaudio suggests no packages.

-- no debconf 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


Bug#825285: marked as done (kodi: please make the build reproducible (timestamps))

2016-08-04 Thread Debian Bug Tracking System
Your message dated Fri, 05 Aug 2016 00:46:02 +
with message-id 
and subject line Bug#825285: fixed in kodi 17.0~alpha3+dfsg1-1
has caused the Debian Bug report #825285,
regarding kodi: please make the build reproducible (timestamps)
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.)


-- 
825285: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825285
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: kodi
Version: 16.1+dfsg1-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

While working on the “reproducible builds” effort [1], we have noticed
that kodi could not be built reproducibly.

The attached patch removes extra timestamps from the build system.

Regards,
Lukas Rechberger


[1]: https://wiki.debian.org/ReproducibleBuilds
diff --git a/debian/patches/01_reproducible_build.patch b/debian/patches/01_reproducible_build.patch
index ed4f07a..c9292eb 100644
--- a/debian/patches/01_reproducible_build.patch
+++ b/debian/patches/01_reproducible_build.patch
@@ -5,23 +5,23 @@ Forwarded: not-needed
 
 --- a/xbmc/Application.cpp
 +++ b/xbmc/Application.cpp
-@@ -511,7 +511,7 @@
+@@ -514,7 +514,7 @@
  //  specialVersion = " (version for )";
  #endif
-   CLog::Log(LOGNOTICE, "Using %s %s x%d build%s", buildType.c_str(), g_infoManager.GetAppName().c_str(), g_sysinfo.GetXbmcBitness(), specialVersion.c_str());
--  CLog::Log(LOGNOTICE, "%s compiled " __DATE__ " by %s for %s %s %d-bit %s (%s)", g_infoManager.GetAppName().c_str(), g_sysinfo.GetUsedCompilerNameAndVer().c_str(), g_sysinfo.GetBuildTargetPlatformName().c_str(),
-+  CLog::Log(LOGNOTICE, "%s compiled from " DEB_VERSION " by %s for %s %s %d-bit %s (%s)", g_infoManager.GetAppName().c_str(), g_sysinfo.GetUsedCompilerNameAndVer().c_str(), g_sysinfo.GetBuildTargetPlatformName().c_str(),
+   CLog::Log(LOGNOTICE, "Using %s %s x%d build%s", buildType.c_str(), CSysInfo::GetAppName().c_str(), g_sysinfo.GetXbmcBitness(), specialVersion.c_str());
+-  CLog::Log(LOGNOTICE, "%s compiled " __DATE__ " by %s for %s %s %d-bit %s (%s)", CSysInfo::GetAppName().c_str(), g_sysinfo.GetUsedCompilerNameAndVer().c_str(), g_sysinfo.GetBuildTargetPlatformName().c_str(),
++  CLog::Log(LOGNOTICE, "%s compiled from " DEB_VERSION " by %s for %s %s %d-bit %s (%s)", CSysInfo::GetAppName().c_str(), g_sysinfo.GetUsedCompilerNameAndVer().c_str(), g_sysinfo.GetBuildTargetPlatformName().c_str(),
  g_sysinfo.GetBuildTargetCpuFamily().c_str(), g_sysinfo.GetXbmcBitness(), g_sysinfo.GetBuildTargetPlatformVersionDecoded().c_str(),
  g_sysinfo.GetBuildTargetPlatformVersion().c_str());
  
 a/xbmc/GUIInfoManager.cpp
-+++ b/xbmc/GUIInfoManager.cpp
-@@ -4358,7 +4358,7 @@
+--- a/xbmc/utils/SystemInfo.cpp
 b/xbmc/utils/SystemInfo.cpp
+@@ -1256,7 +1256,7 @@
  
- std::string CGUIInfoManager::GetBuild()
+ std::string CSysInfo::GetBuildDate()
  {
 -  return StringUtils::Format("%s", __DATE__);
 +  return StringUtils::Format("%s", DEB_VERSION);
  }
  
- std::string CGUIInfoManager::GetAppName()
+ bool CSysInfo::HasVideoToolBoxDecoder()
diff --git a/debian/patches/series b/debian/patches/series
index adbbc22..3e678ba 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,6 +2,7 @@
 0002-core-added-arm64-support-to-GetKernelCpuFamily.patch
 0003-core-added-s390x-support-to-system-info.patch
 0004-core-Make-GetKernelBitness-return-64-for-s390x.patch
+01_reproducible_build.patch
 02_allow_all_arches.patch
 03-privacy.patch
 04-differentiate-from-vanilla-Kodi.patch
diff --git a/debian/rules b/debian/rules
index bc907d3..f500a24 100755
--- a/debian/rules
+++ b/debian/rules
@@ -96,7 +96,7 @@ DEJAVUSANS=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
 endif
 
 override_dh_auto_configure: configure
-	sed -i 's/DEB_VERSION/"'$(VERSION)'"/' xbmc/utils/SystemInfo.cpp
+	sed -i 's/DEB_VERSION/"'$(VERSION)'"/' xbmc/Application.cpp xbmc/utils/SystemInfo.cpp
 	fontforge -script $(CURDIR)/debian/mergefonts.ff \
 		/usr/share/fonts/truetype/droid/DroidSansFallbackFull.ttf \
 		$(DEJAVUSANS) \
--- End Message ---
--- Begin Message ---
Source: kodi
Source-Version: 17.0~alpha3+dfsg1-1

We believe that the bug you reported is fixed in the latest version of
kodi, 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 825...@bugs.debian.org,
and th

Bug#824187: marked as done (kodi: Build depend on groovy instead of groovy2)

2016-08-04 Thread Debian Bug Tracking System
Your message dated Fri, 05 Aug 2016 00:46:02 +
with message-id 
and subject line Bug#824187: fixed in kodi 17.0~alpha3+dfsg1-1
has caused the Debian Bug report #824187,
regarding kodi: Build depend on groovy instead of groovy2
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.)


-- 
824187: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=824187
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: kodi
Version: 16.1+dfsg1-1
Severity: normal

Hi,

Kodi has a build dependency on groovy2 which is going to be removed
since the original groovy package has eventually been upgraded to
the latest 2.x version. Could you please update the build dependencies
to use the groovy package instead of groovy2?

Thank you,

Emmanuel Bourg
--- End Message ---
--- Begin Message ---
Source: kodi
Source-Version: 17.0~alpha3+dfsg1-1

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

Debian distribution maintenance software
pp.
Balint Reczey  (supplier of updated kodi package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 05 Aug 2016 01:23:53 +0200
Source: kodi
Binary: kodi kodi-data kodi-bin kodi-eventclients-common kodi-eventclients-dev 
kodi-eventclients-wiiremote kodi-eventclients-ps3 kodi-eventclients-kodi-send 
kodi-addons-dev
Architecture: source
Version: 17.0~alpha3+dfsg1-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Balint Reczey 
Description:
 kodi   - Open Source Home Theatre (executable binaries)
 kodi-addons-dev - Open Source Home Theatre (Addons Dev package)
 kodi-bin   - Open Source Home Theatre (architecture-dependent files)
 kodi-data  - Open Source Home Theatre (arch-independent data package)
 kodi-eventclients-common - Open Source Home Theatre (Event Client Common 
package)
 kodi-eventclients-dev - Open Source Home Theatre (Event Client Dev package)
 kodi-eventclients-kodi-send - Open Source Home Theatre (Event Client Kodi-SEND 
package)
 kodi-eventclients-ps3 - Open Source Home Theatre (Event Client PS3 package)
 kodi-eventclients-wiiremote - Open Source Home Theatre (Event Client WII 
Remote support package
Closes: 824187 825285
Changes:
 kodi (17.0~alpha3+dfsg1-1) experimental; urgency=medium
 .
   [ Lukas Rechberger ]
   * Skip timestamps to make build reproducible (Closes: #825285)
 .
   [ Balint Reczey ]
   * Build depend on groovy instead of groovy2 (Closes: #824187)
   * Recommend kodi-visualization-spectrum
   * New upstream alpha release 17.0 Alpha 2
 See: https://kodi.tv/kodi-v17-krypton-alpha-2/
   * Stop excluding paths from orig tarball which are already removed
   * Refresh patches and changed paths in d/rules
   * Fix FTBFS due to format string warnings
   * Disable building DVDCSS
   * Build-depend on libbluray-dev (>= 0.7.0) to match version required by 
./configure
   * Derive embedded libdvdnav and libdvdread from additional original tarballs
   * Fix building with Google Test
   * Ignore failing tests but run them with Valgrind when it is available
   * Update d/copyright
   * Add information about multiple orig tarballs
   * New upstream alpha release 17.0 Alpha 3
 See: https://kodi.tv/kodi-v17-krypton-alpha-3/
   * Refresh patches
   * Really revert patches to embedded dvdnav and dvdread copies in clean target
   * Drop J2ME client support in sync with upstream
   * Don't crash on missing version checker addon
   * Position "from Debian" image better on new skin
   * Drop symlinks to fonts used in the replaced skin
Checksums-Sha1:
 26728767763ab6feda41b6dd6befb691db49ad8e 5048 kodi_17.0~alpha3+dfsg1-1.dsc
 6843449c4d26cc97950b3dd93161b66be63d9945 369621 
kodi_17.0~alpha3+dfsg1.orig-libdvdnav-5-0-3.tar.bz2
 3cda64c06ca9b617d976c490651db4391a162e1f 394885 
kodi_17.0~alpha3+dfsg1.orig-libdvdread-5-0-3.tar.bz2
 babc1f4565f202d13805f0bcb511f94539c27d00 21450152 
kodi_17.0~alpha3+dfsg1.orig.tar.xz
 ea9b66e6c66614cfdc63ef6b5a16d1f85aa7fcb8 29932 
kodi_17.0~alpha3+dfsg1-1.debian.tar.xz
Checksums-Sha256:
 e7cd3a3d4789a8a7ea483617869ac22385

Processing of kodi_17.0~alpha3+dfsg1-1_source.changes

2016-08-04 Thread Debian FTP Masters
kodi_17.0~alpha3+dfsg1-1_source.changes uploaded successfully to localhost
along with the files:
  kodi_17.0~alpha3+dfsg1-1.dsc
  kodi_17.0~alpha3+dfsg1.orig-libdvdnav-5-0-3.tar.bz2
  kodi_17.0~alpha3+dfsg1.orig-libdvdread-5-0-3.tar.bz2
  kodi_17.0~alpha3+dfsg1.orig.tar.xz
  kodi_17.0~alpha3+dfsg1-1.debian.tar.xz

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


Bug#826814: marked as done (gpac: OpenJPEG removal)

2016-08-04 Thread Debian Bug Tracking System
Your message dated Thu, 04 Aug 2016 22:28:32 +
with message-id 
and subject line Bug#826814: fixed in gpac 0.5.2-426-gc5ad4e4+dfsg5-3
has caused the Debian Bug report #826814,
regarding gpac: OpenJPEG removal
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.)


-- 
826814: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=826814
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: gpac
Severity: important
User: ma...@debian.org
Usertags: stretch2000

This is a continued operation since src:jasper removal for stretch
release.

src:openjpeg will be removed from Debian for the stretch release (and
following that, the archive in general). For more information see:
http://bugs.debian.org/826805

It has been superseeded by src:openjpeg2

Your package uses src:openjpeg, so please either remove the JPEG2000
functionality or move to the new API.

This bug will be bumped to release-critical status in a few weeks.

Cheers,

Mathieu 
--- End Message ---
--- Begin Message ---
Source: gpac
Source-Version: 0.5.2-426-gc5ad4e4+dfsg5-3

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

Debian distribution maintenance software
pp.
James Cowgill  (supplier of updated gpac package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Aug 2016 22:29:39 +0100
Source: gpac
Binary: gpac gpac-modules-base libgpac4 libgpac-dev
Architecture: source
Version: 0.5.2-426-gc5ad4e4+dfsg5-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
Description:
 gpac   - GPAC Project on Advanced Content - utilities
 gpac-modules-base - GPAC Project on Advanced Content - modules
 libgpac-dev - GPAC Project on Advanced Content - development files
 libgpac4   - GPAC Project on Advanced Content - shared libraries
Closes: 826814
Changes:
 gpac (0.5.2-426-gc5ad4e4+dfsg5-3) unstable; urgency=medium
 .
   * Team upload.
   * Drop OpenJPEG support. (Closes: #826814)
   * Enable verbose building.
   * Bump standards to 3.9.8.
   * Update debian/watch now that upstream moved to github.
Checksums-Sha1:
 70abc7173e10bafb4035c056af5d121d5d010f6c 2695 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.dsc
 d5e1d86f8cd7b50427ce04ad79f99d5cb22b6bf9 38108 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.debian.tar.xz
Checksums-Sha256:
 f77b3ccfe7352a128bc5284581f2fb61b1e6cde07870cb2434c10610d7097515 2695 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.dsc
 82c179b940b279bd7c967200428418319b825a63787388d1e31a1701a5a8e392 38108 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.debian.tar.xz
Files:
 465c4ca1ce22d630db98b1a70d8cf790 2695 graphics optional 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.dsc
 600522998210bc153dd18fb862b2fac4 38108 graphics optional 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCgAGBQJXo7PgAAoJEMfxZ23qLQHvMh4QALg4u3j3X1dMiwCxL9wE+MaH
ZdCElO0YbB0Ym9KH2X/jaKb8QP7X/ge4Z2bVm73HNjf1/jkBrwZXKkF3rYFzikGy
DhkXtvLEWetAvcIpkv6y144azXenBoWJqeD2dBO0rGMg/8EdY2s7S6/rYSyKKTZ1
2yIXhLmxlmmn7uyvxA23YiNrxKjymCFCPUVxIptM7URGDgZJ+KwVXlMNWC3qTVZR
C/qNMwX0UXvuJztH131dXNrTpmHh/goaBbzsOYUg0rRUvhwMBlWx6sqaneEGQeSe
DlMHNKFwfFIMPesy+wZmdI3M9mEHqJ/cbQd7oZwaqvenSCZvUURpt2wf6RbPEHQf
INmqVWgezP98szmbrS37NSwPuswO7ZDvxExB6Z60NyvaXmUFB9rJcQdPRp0/HMGX
HkuEOtDld3K0mhk+ZjrjOQh9DD7NqFtuygvmHOi2VKoACHkN99LpmjzzT24oNDpH
PR5aJ2Vxp1l12uhwblvyvVH6YnALuPB6N6HPkvNx22xEh94tvUjNBpdqO6/Fcwm5
/5DePTYD6isZacbAX+RHS6I2xDXyfH1/Wf5+BUNsQLWMF37Vz+FAOc3d6j6tsAMQ
Owfy5CDVOYIZtBIVo7OtL4ri3Gt3CqCuIkQKxy3lhTdwIQvisxZCoeh4oIBZjw1e
bmBHevy4SSK32zI2vdrl
=lSkH
-END PGP SIGNATURE End Message ---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

gpac_0.5.2-426-gc5ad4e4+dfsg5-3_source.changes ACCEPTED into unstable

2016-08-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Aug 2016 22:29:39 +0100
Source: gpac
Binary: gpac gpac-modules-base libgpac4 libgpac-dev
Architecture: source
Version: 0.5.2-426-gc5ad4e4+dfsg5-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
Description:
 gpac   - GPAC Project on Advanced Content - utilities
 gpac-modules-base - GPAC Project on Advanced Content - modules
 libgpac-dev - GPAC Project on Advanced Content - development files
 libgpac4   - GPAC Project on Advanced Content - shared libraries
Closes: 826814
Changes:
 gpac (0.5.2-426-gc5ad4e4+dfsg5-3) unstable; urgency=medium
 .
   * Team upload.
   * Drop OpenJPEG support. (Closes: #826814)
   * Enable verbose building.
   * Bump standards to 3.9.8.
   * Update debian/watch now that upstream moved to github.
Checksums-Sha1:
 70abc7173e10bafb4035c056af5d121d5d010f6c 2695 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.dsc
 d5e1d86f8cd7b50427ce04ad79f99d5cb22b6bf9 38108 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.debian.tar.xz
Checksums-Sha256:
 f77b3ccfe7352a128bc5284581f2fb61b1e6cde07870cb2434c10610d7097515 2695 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.dsc
 82c179b940b279bd7c967200428418319b825a63787388d1e31a1701a5a8e392 38108 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.debian.tar.xz
Files:
 465c4ca1ce22d630db98b1a70d8cf790 2695 graphics optional 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.dsc
 600522998210bc153dd18fb862b2fac4 38108 graphics optional 
gpac_0.5.2-426-gc5ad4e4+dfsg5-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCgAGBQJXo7PgAAoJEMfxZ23qLQHvMh4QALg4u3j3X1dMiwCxL9wE+MaH
ZdCElO0YbB0Ym9KH2X/jaKb8QP7X/ge4Z2bVm73HNjf1/jkBrwZXKkF3rYFzikGy
DhkXtvLEWetAvcIpkv6y144azXenBoWJqeD2dBO0rGMg/8EdY2s7S6/rYSyKKTZ1
2yIXhLmxlmmn7uyvxA23YiNrxKjymCFCPUVxIptM7URGDgZJ+KwVXlMNWC3qTVZR
C/qNMwX0UXvuJztH131dXNrTpmHh/goaBbzsOYUg0rRUvhwMBlWx6sqaneEGQeSe
DlMHNKFwfFIMPesy+wZmdI3M9mEHqJ/cbQd7oZwaqvenSCZvUURpt2wf6RbPEHQf
INmqVWgezP98szmbrS37NSwPuswO7ZDvxExB6Z60NyvaXmUFB9rJcQdPRp0/HMGX
HkuEOtDld3K0mhk+ZjrjOQh9DD7NqFtuygvmHOi2VKoACHkN99LpmjzzT24oNDpH
PR5aJ2Vxp1l12uhwblvyvVH6YnALuPB6N6HPkvNx22xEh94tvUjNBpdqO6/Fcwm5
/5DePTYD6isZacbAX+RHS6I2xDXyfH1/Wf5+BUNsQLWMF37Vz+FAOc3d6j6tsAMQ
Owfy5CDVOYIZtBIVo7OtL4ri3Gt3CqCuIkQKxy3lhTdwIQvisxZCoeh4oIBZjw1e
bmBHevy4SSK32zI2vdrl
=lSkH
-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


Processing of gpac_0.5.2-426-gc5ad4e4+dfsg5-3_source.changes

2016-08-04 Thread Debian FTP Masters
gpac_0.5.2-426-gc5ad4e4+dfsg5-3_source.changes uploaded successfully to 
localhost
along with the files:
  gpac_0.5.2-426-gc5ad4e4+dfsg5-3.dsc
  gpac_0.5.2-426-gc5ad4e4+dfsg5-3.debian.tar.xz

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


Processed: Bug#826814 marked as pending

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

> tag 826814 pending
Bug #826814 [src:gpac] gpac: OpenJPEG removal
Added tag(s) pending.
> thanks
Stopping processing here.

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

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


Adomány asszony Vivian Beke

2016-08-04 Thread vivian beke

Adomány asszony Vivian Beke
Drága az Úrban,
Isten áldjon meg benneteket, és a család.

Én Vivian Beke idősödő özvegy, akik hosszabb ideig betegség (rák). Én jelenleg 
elismerte egy magánkórházban én kezelések. Van egy kis pénzt örökölt a férjem 
David Beke, aki később meghalt egy motoros accident.When a néhai férje élt ő 
helyezte összege $ 2.500.000.00 (kétmillió ötszázezer dollár) egy biztonsági 
cég. Jelenleg ez a pénz még a cég.

Az orvosom azt mondta, hogy meg fog halni a következő 3 hónapban rák 
problémája. Kell egy nagyon őszinte és istenfélő ember, és szervezet, amely 
használja ezeket a forrásokat az Isten munkáját. A néhai férje megbízta, hogy 
ez az alap lehet használni jótékonysági célra, például, hogy egy iskolák, 
árvaházak otthonokban, kórházakban etc.I vette ezt a határozatot, mert nincs 
olyan gyermek, aki örökölni fogja ezt a pénzt. Azt akarom, hogy Isten legyen 
irgalmas hozzám, és fogadd el a lélek. Az Istennek minden possible.Please ha 
képes lenne használni ezeket a pénzt a Isten munkája kedvesen válaszol nekem.

Azt akarom, hogy küldjön nekem az adatait az alábbiakban, mint egy.
Ön teljes nevét ---
Címed--
Országod--
A korod--
Foglalkozásod---
Az Ön telefonszáma 
Amint megkapja a választ adok a kapcsolatot a biztonsági cég. Én is probléma, 
akkor a nyilatkozat, amely bizonyítani, hogy az új kedvezményezett ezt a pénzt.

Várom a válaszod.
Maradj áldott az Úrban.
Kösz,
Mrs Vivian Beke.

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

Business-Vorschlag

2016-08-04 Thread Evelyn Lai
Hallo, ich bin Frau Evelyn Lai Ich arbeite mit der Bank of China (Hong Kong) 
als Investment-Manager auch Mitglied des Prüfungsausschusses und Mitglied des 
Strategic Development Committee der Bank of China.I erhielt Ihre E-Mail-Konto, 
während für ein Unternehmen suchen orientiert Persönlichkeit in meiner privaten 
Studie im Internet. Ich brauche Ihre Hilfe nur aus einem Grund in einem 
Geschäft waren ich Sie als Begünstigter und Next-of-kin zu einer großen Menge 
an Geld handeln wollen. bitte ich Sie um über meine private E-Mail-Adresse an 
mich zurück zu bekommen: evelynlai3330...@gmail.com für Unterrichtung. Hoffnung 
an Rücken von Ihnen hören. Dank Frau Evelyn Lai___
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#591904: marked as done (libavcodec52: text relocations on AMD64)

2016-08-04 Thread Debian Bug Tracking System
Your message dated Thu, 4 Aug 2016 19:11:15 +0200
with message-id <20160804171115.ga22stz36pccf...@ramacher.at>
and subject line Re: Bug#591904: libavcodec52: text relocations on AMD64
has caused the Debian Bug report #591904,
regarding libavcodec52: text relocations on AMD64
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.)


-- 
591904: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591904
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libavcodec52
Version: 4:0.5.2-1
Severity: normal

$ eu-findtextrel /usr/lib/libavcodec.so.52|uniq
either the file containing the function 'ff_vp6_filter_diag4_sse2' or the file 
containing the function 'ff_imdct_half_3dn' is not compiled with -fpic/-fPIC

The above functions contain inline assembly.  On the AMD64 architecture it
should be possible to rewrite this to not need a text relocation as we have
no great shortage of registers.



-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages libavcodec52 depends on:
ii  libavutil49 4:0.5.2-1ffmpeg utility library
ii  libc6   2.11.2-2 Embedded GNU C Library: Shared lib
ii  libdirac-encoder0   1.0.2-3  open and royalty free high quality
ii  libfaad22.7-4freeware Advanced Audio Decoder - 
ii  libgsm1 1.0.13-3 Shared libraries for GSM speech co
ii  libopenjpeg21.3+dfsg-4   JPEG 2000 image compression/decomp
ii  libschroedinger-1.0-0   1.0.9-2  library for encoding/decoding of D
ii  libspeex1   1.2~rc1-1The Speex codec runtime library
ii  libtheora0  1.1.1+dfsg.1-3   The Theora Video Compression Codec
ii  libvorbis0a 1.3.1-1  The Vorbis General Audio Compressi
ii  libvorbisenc2   1.3.1-1  The Vorbis General Audio Compressi
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

libavcodec52 recommends no packages.

libavcodec52 suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 7:3.1.1-4

On 2016-08-04 14:17:46, Carl Eugen Hoyos wrote:
> Hi!
> 
> This bug was fixed upstream some time before the issue was reported to Debian:
> http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=3d05c1fb
> 
> Please reassign or close, Carl Eugen

Closing

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: PGP signature
--- End Message ---
___
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#826814: gpac: OpenJPEG removal

2016-08-04 Thread Emilio Pozuelo Monfort
On Sat, 23 Jul 2016 13:30:19 +0200 Emilio Pozuelo Monfort  
wrote:
> On 23/07/16 12:40, James Cowgill wrote:
> > Control: forwarded -1 https://github.com/gpac/gpac/issues/592
> > 
> > On Thu, 2016-07-21 at 19:12 +0200, Emilio Pozuelo Monfort wrote:
> >> On Thu, 09 Jun 2016 10:30:01 +0200 "Mathieu Malaterre"  
> >> wrote:
> >>>
> >>> This is a continued operation since src:jasper removal for stretch
> >>> release.
> >>>
> >>> src:openjpeg will be removed from Debian for the stretch release
> >>> (and following that, the archive in general). For more information
> >>> see: http://bugs.debian.org/826805
> >>>
> >>> It has been superseeded by src:openjpeg2
> >>>
> >>> Your package uses src:openjpeg, so please either remove the
> >>> JPEG2000 functionality or move to the new API.
> >>
> >> Ping? It looks like your package already uses libjpeg-turbo. Can we
> >> just drop the openjpeg support? If not, can you forward this
> >> upstream? This is the last key package still depending on openjpeg,
> >> and it is going to block its removal from Stretch.
> > 
> > I've forwarded the bug, but are there any objections to removing
> > openjpeg support in the meantime? There doesn't seem to be any users of
> > the openjpeg support in other Debian packages at least.
> 
> That'd be good in order to finish the transition. But I don't use gpac.

Can that be done?

Cheers,
Emilio

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


opencollada_0.1.0~20160714.0ec5063+dfsg1-1_source.changes ACCEPTED into unstable

2016-08-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Aug 2016 16:08:24 +0200
Source: opencollada
Binary: opencollada-dev opencollada-tools
Architecture: source
Version: 0.1.0~20160714.0ec5063+dfsg1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Matteo F. Vescovi 
Description:
 opencollada-dev - Stream based reader and writer library for COLLADA files 
(develop
 opencollada-tools - Command line tool for validating COLLADA files
Changes:
 opencollada (0.1.0~20160714.0ec5063+dfsg1-1) unstable; urgency=medium
 .
   * New upsteam snapshot release
 - debian/patches/: patchset updated
   - mips-build-workaround.diff dropped (applied upstream)
   * debian/control: S-V bump 3.9.6 -> 3.9.8 (no changes needed)
   * debian/control: Vcs-* fields updated for https:// usage
Checksums-Sha1:
 69a36f3c048d273099138241ea7ea5772f5f43d1 2416 
opencollada_0.1.0~20160714.0ec5063+dfsg1-1.dsc
 b0522620dd13d079e994b0f4bdbae5bb7d5f688d 8431756 
opencollada_0.1.0~20160714.0ec5063+dfsg1.orig.tar.xz
 169a208e856e7cc93dd13286fa83f5bae6bb9d74 14728 
opencollada_0.1.0~20160714.0ec5063+dfsg1-1.debian.tar.xz
Checksums-Sha256:
 624419e801404839abe2938309b8e11206e8b4715d2607066fcb969ff4df5474 2416 
opencollada_0.1.0~20160714.0ec5063+dfsg1-1.dsc
 6e1ff2ba722558879fc2740bfbc8c624c95a02f331891ef2b58fa27cab531ce6 8431756 
opencollada_0.1.0~20160714.0ec5063+dfsg1.orig.tar.xz
 ec607323f24adcb71563fbb8b0f378784a95279b27b4abed823a28d6aade8d3c 14728 
opencollada_0.1.0~20160714.0ec5063+dfsg1-1.debian.tar.xz
Files:
 2b1fb41fc8ffcdfc956f89191caa1e3e 2416 libs extra 
opencollada_0.1.0~20160714.0ec5063+dfsg1-1.dsc
 21fa7153a74361d3504e55502f36c49a 8431756 libs extra 
opencollada_0.1.0~20160714.0ec5063+dfsg1.orig.tar.xz
 745a20a0a3b11cf62770f53e99f3b0a8 14728 libs extra 
opencollada_0.1.0~20160714.0ec5063+dfsg1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Comment: Debian powered!

iQJ8BAEBCgBmBQJXo0x5XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRGM0REMDlGOERBODdEMURGNTA0NkM5OUIw
NjEyRjQ5NDRFQ0RDRDVBAAoJEAYS9JROzc1ajZwP/3PiECzKOMPbzRg+GISfcFAj
X2CqRjoJrQFXAxL7OciKjsJj8/UvC8I3pFTzsrkj9rL9gtIjDb9al95iohQZ8V8W
qWWk1obN7cKaAhEYkTao+srwdvIIByz0w7Bmc+MfwsNUcE8la7f1VcAIFEHMT3Df
oCEZK7dvGvcUDGSMj3NUsQWlNQhi2FFulacmZj7z67zn5tAhHor+Lv8RkKtUrSPJ
Fivhb+PpJC4kibtZArnw2A/tFU/PTUmTFuYcmT+5E7f+MQLeBW81iqulHbJZEnp+
uqpSWlMkjZEZDlt6XLoBzucbileA2TxJq6YX6iS208leQpj94vk6K/Jc00TYcmIk
vZ/uLY4frK4cfTimgdVGtLwWgEKDQEDJHwP8xbU7nqH+/PB5oJMKK/VeeQMgcbwm
Blb2zWfkBunORe5uW6SfTTCoCttG0cpieL7gv0wGv1dldiLfEVQIgOsl5We5ebTQ
ArVf1Fcf2b8Mfy8QP7UODVUGHjd/y+2VW2yn1vn8A0GmmyefS40eTpCIPfx0C6Tq
JIuA07uK62fGGzn7Jq143Tk691KY+wZOQf0t5qBJmK6zSWwVx520c026XRQOa4zU
eF6rm30u4TrBRnVTuSE5J4N2aKcsLCHaq4MBABe+T3ALRMNf9JVX23y+dWJFQQmN
7JsUlCWHJRnJQ9chv32g
=snmj
-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


openni-sensor-pointclouds_5.1.0.41.6-1_amd64.changes ACCEPTED into unstable

2016-08-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Aug 2016 16:21:16 +0200
Source: openni-sensor-pointclouds
Binary: libopenni-sensor-pointclouds-dev libopenni-sensor-pointclouds0
Architecture: source amd64
Version: 5.1.0.41.6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Jochen Sprickerhof 
Description:
 libopenni-sensor-pointclouds-dev - headers for Kinect sensor modules for the 
OpenNI framework
 libopenni-sensor-pointclouds0 - Microsoft Kinect sensor modules for the OpenNI 
framework
Changes:
 openni-sensor-pointclouds (5.1.0.41.6-1) unstable; urgency=medium
 .
   * Imported Upstream version 5.1.0.41.6
   * Add 1d27:0609 to udev rules
Checksums-Sha1:
 184d2c5bf62a8d69c78877ea68ac5961a508a679 2353 
openni-sensor-pointclouds_5.1.0.41.6-1.dsc
 798c49eb69b5783791dfdd3f853fc450d436d341 642500 
openni-sensor-pointclouds_5.1.0.41.6.orig.tar.gz
 c2caea281b9eee2e68ffc2088d1f20b569bfdad3 5200 
openni-sensor-pointclouds_5.1.0.41.6-1.debian.tar.xz
 2ff1cbc51484599873e11302a36b53eb693a68bd 8004 
libopenni-sensor-pointclouds-dev_5.1.0.41.6-1_amd64.deb
 462e526aef363d626b73ba8bb6ae34d88f44ab6f 58424 
libopenni-sensor-pointclouds0-dbgsym_5.1.0.41.6-1_amd64.deb
 d02259ca9cb0042d3d3588548f4dd15b430d3f11 298386 
libopenni-sensor-pointclouds0_5.1.0.41.6-1_amd64.deb
Checksums-Sha256:
 8f3e6492fd8dc7def7338e927f4bf2596a3f3b73acecc42567b2461e5898efe0 2353 
openni-sensor-pointclouds_5.1.0.41.6-1.dsc
 cc247ec0fa1659b4ceb8dcb5ff2ad0a389cf1a91dfd930e656da8702cb20077c 642500 
openni-sensor-pointclouds_5.1.0.41.6.orig.tar.gz
 77c7a02fff8dd6f137ec6b2317cf9726151adcd8a9a2841b69173baf4bef0e89 5200 
openni-sensor-pointclouds_5.1.0.41.6-1.debian.tar.xz
 820090fe254331396dee498a327421507065f57a1726416b157949d6a794539c 8004 
libopenni-sensor-pointclouds-dev_5.1.0.41.6-1_amd64.deb
 23081c5ad4242f09ef64a0ba30bb7c3c01c9f5c342ab933c4b6f0f80b7235bb5 58424 
libopenni-sensor-pointclouds0-dbgsym_5.1.0.41.6-1_amd64.deb
 3570236b18ce6cd28bd60e3e342b5f80fe190eb7f52080fc7921fb0d6eaabc8a 298386 
libopenni-sensor-pointclouds0_5.1.0.41.6-1_amd64.deb
Files:
 ad498ffebe47ce83c9600b1915e3f6fd 2353 libs optional 
openni-sensor-pointclouds_5.1.0.41.6-1.dsc
 d990137ae48722ece7edbd283f2bf860 642500 libs optional 
openni-sensor-pointclouds_5.1.0.41.6.orig.tar.gz
 dc78c6f1a3f8cc212411edccefc1f6e4 5200 libs optional 
openni-sensor-pointclouds_5.1.0.41.6-1.debian.tar.xz
 9a997fa5602486fe26e8e9402b2afc8e 8004 libdevel optional 
libopenni-sensor-pointclouds-dev_5.1.0.41.6-1_amd64.deb
 7d898562afbeef39dacf70a18f9e3989 58424 debug extra 
libopenni-sensor-pointclouds0-dbgsym_5.1.0.41.6-1_amd64.deb
 ffd2eaf3d31758e6ebc391221eb2d4da 298386 libs optional 
libopenni-sensor-pointclouds0_5.1.0.41.6-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJXo1OeAAoJEFv/3MJY5pQzZKEP/jYFYq698IZeSz+P7U7kzJFS
PlQiFYlRP3/0VBpRmg8DcwpOK15tIaodOUbN20eWz3jffiEyeA2iXK41XSaiGRyt
8+dbZOhqGepICpEBs3IATeDkFdp60NZBIsIPqVlCLk+aO0hG8/NVvJ1dGevWzEwI
PoySOzLoDROmDg15fUL5B275mAxfLR82JQugDq0Hp4EKkekp09cqcilHIdUghbp6
aeoAZRk6hm1lYWYBa8iFQARaxgK/5FFpi3yX0o7TDuvaunijG5LlM0crdhtnMCgb
kz/vClNVvOPAPPJ31NW3Is6L+8eTGTpzPVvO5Yj9UP+2CN1pfx2iwm1xbIx+CTdy
sWVePoUS+swrg5jTUgJ+ghRIAqsyfos9coEgMKsSCYZcLnf3nNXcrK5CqqY5bAlh
mWtZP0mxI6OPcWxYUUQPvwB94svnMsXAsLTkA/r190KC4cHahd3KOsYgMkoNEPCy
dR2nYZ4G/JY6njQvndPmgTgrPdoVT1QsbeJ274q8F6pE6czDUdBZ+ShUXSjsO1Nk
GRCVTbWV3bbZ/eZKpTixkZfCSd32HG5Dwde7Rzah6QIMkGcWwztsmhuGr/Kl5jE2
ROOl+25jErnijHU+93txeG6oXcoYCT0doQvRnrh+daVqX8wauF/8XFVibFoz1hn4
LKxDRPsoLnHpwmtsnSJl
=xwvr
-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


GRAN OFERTA: FUJITSU S780 i5 -15,6" + Windows 7 sólo por 207 Euros

2016-08-04 Thread Informática Ocasión


Gran oferta  
FUJITSU S780 i5 -15,6" - 4 GB de RAM 250 GB de Disco duro   
 207,02 EUR 
1 AÑO DE GARANTÍA   Comercio electrónico seguro   
   
Mas ofertas en: www.informaticaocasion.eu


*Oferta hasta finalizar existencias 

Su dirección de email ha sido recopilada de fuentes de público acceso en Internet. Conforme a la Directiva Europea 2002/58/EC y la Ley 32/2003, de 3 de noviembre, General de Telecomunicaciones. Usted tiene el derecho a oponerse a que sus datos personales se utilicen para fines publicitarios y de marketing. Si este es su deseo, le rogamos que responda  a este mensaje con la palabra "Baja" en el campo Asunto y automaticamente dejará de recibir comunicaciones publicitarias por nuestra parte.CONFIDENCIALIDAD: La información contenida en este mensaje y/o archivo(s) adjunto(s) es confidencial/privilegiada y está destinada a ser leída sólo por la(s) persona(s) a la(s) que va dirigida. Si usted lee este mensaje y no es el destinatario señalado, el empleado o el agente responsable de entregar el mensaje al destinatario, o ha recibido esta comunicación por error, le informamos que está totalmente prohibida, y puede ser ilegal, cualquier divulgación, distribución o reproducción de esta comunicación.Si no es el destinatario, le rogamos que nos lo notifique inmediatamente y nos devuelva el mensaje original a la dirección arriba mencionada.Recuerde que para poder atender de inmediato su petición debería notificar su baja, oposición o cancelación desde la cuenta que quiere dar de baja.
Gracias.___
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#657202: schism: Segmentation fault playing a particular file

2016-08-04 Thread gurkan

Hi Peter

My test with the new version (sid) doesn't cause a segfault with your 
file.

Can you confirm?

Yours,

___
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 openni-sensor-pointclouds_5.1.0.41.6-1_amd64.changes

2016-08-04 Thread Debian FTP Masters
openni-sensor-pointclouds_5.1.0.41.6-1_amd64.changes uploaded successfully to 
localhost
along with the files:
  openni-sensor-pointclouds_5.1.0.41.6-1.dsc
  openni-sensor-pointclouds_5.1.0.41.6.orig.tar.gz
  openni-sensor-pointclouds_5.1.0.41.6-1.debian.tar.xz
  libopenni-sensor-pointclouds-dev_5.1.0.41.6-1_amd64.deb
  libopenni-sensor-pointclouds0-dbgsym_5.1.0.41.6-1_amd64.deb
  libopenni-sensor-pointclouds0_5.1.0.41.6-1_amd64.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


Processing of opencollada_0.1.0~20160714.0ec5063+dfsg1-1_source.changes

2016-08-04 Thread Debian FTP Masters
opencollada_0.1.0~20160714.0ec5063+dfsg1-1_source.changes uploaded successfully 
to localhost
along with the files:
  opencollada_0.1.0~20160714.0ec5063+dfsg1-1.dsc
  opencollada_0.1.0~20160714.0ec5063+dfsg1.orig.tar.xz
  opencollada_0.1.0~20160714.0ec5063+dfsg1-1.debian.tar.xz

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


Bug#833445: pd-pdstring: please make the build reproducible

2016-08-04 Thread Chris Lamb
Source: pd-pdstring
Version: 0.10.2-1
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Hi,

Whilst working on the "reproducible builds" effort [0], we noticed
that pd-pdstring could not be built reproducibly.

Patch attached.

 [0] https://wiki.debian.org/ReproducibleBuilds


Regards,

-- 
  ,''`.
 : :'  : Chris Lamb
 `. `'`  la...@debian.org / chris-lamb.co.uk
   `-
--- a/debian/control2016-08-04 09:31:13.702531292 +0100
--- b/debian/control2016-08-04 09:42:22.731404193 +0100
@@ -3,7 +3,8 @@
 Maintainer: Debian Multimedia Maintainers 

 Uploaders: Roman Haefeli 
 Build-Depends: debhelper (>= 7.0.50~),
- puredata-dev | puredata (<< 0.43)
+ puredata-dev | puredata (<< 0.43),
+ dh-autoreconf
 Standards-Version: 3.9.3
 Section: sound
 Homepage: http://www.ling.uni-potsdam.de/~moocow/projects/pd/
--- a/debian/patches/reproducible-build.patch   1970-01-01 01:00:00.0 
+0100
--- b/debian/patches/reproducible-build.patch   2016-08-04 09:40:32.694594076 
+0100
@@ -0,0 +1,19 @@
+Description: Make the build reproducible
+Author: Chris Lamb 
+Last-Update: 2016-08-04
+
+--- pd-pdstring-0.10.2.orig/common/m4/ax_pd_external.m4
 pd-pdstring-0.10.2/common/m4/ax_pd_external.m4
+@@ -242,7 +242,11 @@ AC_DEFUN([AX_PD_EXTERNAL],
+ 
+  ##vv
+  ## compiled
+- AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`date`",   [Date this package was 
configured])
++ if test -n "$SOURCE_DATE_EPOCH"; then
++   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`LC_ALL=C date --utc 
--date="@$SOURCE_DATE_EPOCH"`",   [Date this package was configured])
++ else
++   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`date`",   [Date this package was 
configured])
++ fi
+  AC_DEFINE_UNQUOTED(PACKAGE_BUILD_USER,  "$USER",[User who configured 
this package])
+  ## /compiled
+  ##^^
--- a/debian/patches/series 2016-08-04 09:31:13.702531292 +0100
--- b/debian/patches/series 2016-08-04 09:40:31.586585936 +0100
@@ -1 +1,2 @@
 fix-help-files-install-dir.patch
+reproducible-build.patch
--- a/debian/rules  2016-08-04 09:31:13.702531292 +0100
--- b/debian/rules  2016-08-04 09:42:15.107347958 +0100
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
 %:
-   dh $@
+   dh $@ --with=autoreconf
 
 override_dh_auto_configure:
dh_auto_configure -- --with-pd-dir=/usr/lib/pd \
___
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#591904: libavcodec52: text relocations on AMD64

2016-08-04 Thread Carl Eugen Hoyos
Hi!

This bug was fixed upstream some time before the issue was reported to Debian:
http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=3d05c1fb

Please reassign or close, Carl Eugen

___
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#833360: marked as done (Kmidimon - French translation)

2016-08-04 Thread Debian Bug Tracking System
Your message dated Thu, 04 Aug 2016 12:09:48 +
with message-id 
and subject line Bug#833360: fixed in kmidimon 0.7.5-3
has caused the Debian Bug report #833360,
regarding Kmidimon - French translation
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.)


-- 
833360: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833360
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: kmidimon
Version: 0.7.5-2

Dear debian maintainers,

just to let you know that I've been doing a french translation of 
kmidimon which has been incorporated upstream in rev 201 as you can find 
here : https://sourceforge.net/p/kmidimon/code/201/ .


I'm copying Pedro Lopez Cabanillas (who is upstream) to this email in 
case he might want to be in the loop.


Hope that helps,
Olivier
--- End Message ---
--- Begin Message ---
Source: kmidimon
Source-Version: 0.7.5-3

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

Debian distribution maintenance software
pp.
James Cowgill  (supplier of updated kmidimon package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Aug 2016 11:22:43 +
Source: kmidimon
Binary: kmidimon
Architecture: source
Version: 0.7.5-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
Description:
 kmidimon   - MIDI monitor using ALSA sequencer and KDE user interface
Closes: 833360
Changes:
 kmidimon (0.7.5-3) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Olivier Humbert ]
   * Add a french translation (applied upstream). (Closes: #833360)
Checksums-Sha1:
 bf6e1c141dda76d9e05410c41ac9a2e280f1213c 2043 kmidimon_0.7.5-3.dsc
 b5aed1ec9cc16f3549aef5bfbf97efe780c6e028 11260 kmidimon_0.7.5-3.debian.tar.xz
Checksums-Sha256:
 caae19f9e69a092887cf407799e11092b9c55854a0c763544e1384fcb89c90d6 2043 
kmidimon_0.7.5-3.dsc
 ba259b789632a64028708b6486cf085abd0699a0829ddb959c38fae70b86f514 11260 
kmidimon_0.7.5-3.debian.tar.xz
Files:
 7e14b68853775605ceb57fc27aec0177 2043 sound optional kmidimon_0.7.5-3.dsc
 42dccf05bf360abbab9fb4d9696101cd 11260 sound optional 
kmidimon_0.7.5-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCgAGBQJXoyeiAAoJEMfxZ23qLQHvARYP/07w/eoPcg309OC1e276aQQI
7Ed2J+4VvMqV4jiFxtYuQuQDuhdZ0UZjAqImtiIVOF0oiN1XxCQ8Txx6/E4VAh8G
wg0RrpBzKkVR0mVlgMPbm53RFDwPNfrCuHyMAUkM1yflvdq7gtRKbQv7T0KOKoiD
GWHxccsad72YpBWXx9tpZO1nTOvraUFJp1FaYsip+edz2XJ8Dw7ESwrUIEMJaWo9
EFW4tJpppIuebm+eYcPo1s3osRgmYD/Z5M2eFvW4m2mnHu7keIfqizK34YpRQ5JQ
G6RITwPhabQqt0yd4CvAKPdq4t0N2QhjKsVl5ApZytWtmuGpkH8PO/VnmbK6gkuj
6bpa4wv6DIV4ouBP1m9+g0GKpHFDwz8+XimlQ4aKaYx80S+66yI2DsQgSL2x80j/
xpqwhMf/V8wYV4eB89IFy097MaUP+dXEp6zAMnrmat2LsRM1rVnDEB5iE29MvfiS
Dh1AWc4uxmIpzDgU+ikWnNl5KVPVmchqK7IGFP51RWFICW6YzeW5UC2bs/IOr0nf
RSU2QitjM7+rD1rHG2xFF6noj+qbaTlpC2j04gDtx4iw2ZtlImaCyxiFvI0rcpur
LBXQV9kZoAL7M9ETLmWjn/6xni0ahQBz9jM12g+JqricItI6htut1DD5Dsou8pKo
zslelI44fnHKJU00rHud
=W+hK
-END PGP SIGNATURE End Message ---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

kmidimon_0.7.5-3_source.changes ACCEPTED into unstable

2016-08-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Aug 2016 11:22:43 +
Source: kmidimon
Binary: kmidimon
Architecture: source
Version: 0.7.5-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
Description:
 kmidimon   - MIDI monitor using ALSA sequencer and KDE user interface
Closes: 833360
Changes:
 kmidimon (0.7.5-3) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Olivier Humbert ]
   * Add a french translation (applied upstream). (Closes: #833360)
Checksums-Sha1:
 bf6e1c141dda76d9e05410c41ac9a2e280f1213c 2043 kmidimon_0.7.5-3.dsc
 b5aed1ec9cc16f3549aef5bfbf97efe780c6e028 11260 kmidimon_0.7.5-3.debian.tar.xz
Checksums-Sha256:
 caae19f9e69a092887cf407799e11092b9c55854a0c763544e1384fcb89c90d6 2043 
kmidimon_0.7.5-3.dsc
 ba259b789632a64028708b6486cf085abd0699a0829ddb959c38fae70b86f514 11260 
kmidimon_0.7.5-3.debian.tar.xz
Files:
 7e14b68853775605ceb57fc27aec0177 2043 sound optional kmidimon_0.7.5-3.dsc
 42dccf05bf360abbab9fb4d9696101cd 11260 sound optional 
kmidimon_0.7.5-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCgAGBQJXoyeiAAoJEMfxZ23qLQHvARYP/07w/eoPcg309OC1e276aQQI
7Ed2J+4VvMqV4jiFxtYuQuQDuhdZ0UZjAqImtiIVOF0oiN1XxCQ8Txx6/E4VAh8G
wg0RrpBzKkVR0mVlgMPbm53RFDwPNfrCuHyMAUkM1yflvdq7gtRKbQv7T0KOKoiD
GWHxccsad72YpBWXx9tpZO1nTOvraUFJp1FaYsip+edz2XJ8Dw7ESwrUIEMJaWo9
EFW4tJpppIuebm+eYcPo1s3osRgmYD/Z5M2eFvW4m2mnHu7keIfqizK34YpRQ5JQ
G6RITwPhabQqt0yd4CvAKPdq4t0N2QhjKsVl5ApZytWtmuGpkH8PO/VnmbK6gkuj
6bpa4wv6DIV4ouBP1m9+g0GKpHFDwz8+XimlQ4aKaYx80S+66yI2DsQgSL2x80j/
xpqwhMf/V8wYV4eB89IFy097MaUP+dXEp6zAMnrmat2LsRM1rVnDEB5iE29MvfiS
Dh1AWc4uxmIpzDgU+ikWnNl5KVPVmchqK7IGFP51RWFICW6YzeW5UC2bs/IOr0nf
RSU2QitjM7+rD1rHG2xFF6noj+qbaTlpC2j04gDtx4iw2ZtlImaCyxiFvI0rcpur
LBXQV9kZoAL7M9ETLmWjn/6xni0ahQBz9jM12g+JqricItI6htut1DD5Dsou8pKo
zslelI44fnHKJU00rHud
=W+hK
-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


limite

2016-08-04 Thread Support Team
La limite de stockage de votre compte de messagerie a dépassé en raison du taux 
élevé de spams / email. Tous les messages entrants sont rejetés, de revalider 
leur compte de messagerie. Cliquez sur le lien ci-dessous et soumettre le 
formulaire de revalider leur compte de messagerie.

Cliquez ici: http://dsn1-09172d-jfkefsdddssjs.tripod.com/

© 2016 équipe © support par email.

___
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#770051: marked as done (terminatorx: Uses absolute obsolete path for dpkg-statoverride)

2016-08-04 Thread Debian Bug Tracking System
Your message dated Thu, 04 Aug 2016 11:35:00 +
with message-id 
and subject line Bug#770051: fixed in terminatorx 4.0.1-1
has caused the Debian Bug report #770051,
regarding terminatorx: Uses absolute obsolete path for dpkg-statoverride
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.)


-- 
770051: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=770051
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: terminatorx
Source-Version: 3.90-2
Severity: important
Tags: patch

Hi!

This package is using obsolete absolute paths when stating or calling
dpkg-statoverride. This has been a compatibility symlinks for a while
and got removed in dpkg 1.17.0, I'll reintroduce it in dpkg 1.17.22 but
will be removing it again in 1.18.x.

Please stop using absolute paths in maintainer scripts, as they will
suffer this kind of problem. For more info please see:



although that lintian check does not currently trigger for this issue,
but it should.

Attached a patch fixing this, by always assuming that dpkg-statoverride
is present, which has been true for a very long time now.

Thanks,
Guillem
diff --git a/debian/postinst b/debian/postinst
index 5bd4240..109278e 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -15,21 +15,12 @@ umask 022
 db_get terminatorx/suid_bin
 suid="$RET"
 
-if [ -x /usr/sbin/dpkg-statoverride ] ; then
-if ! dpkg-statoverride --list /usr/bin/terminatorX > /dev/null ; then
-   if [ "$suid" = "false" ] ; then
-   chmod 0755 /usr/bin/terminatorX
-   elif [ "$suid" = "true" ] ; then
-   chmod 4755 /usr/bin/terminatorX
-   fi
-   fi
-else
+if ! dpkg-statoverride --list /usr/bin/terminatorX > /dev/null ; then
if [ "$suid" = "false" ] ; then
chmod 0755 /usr/bin/terminatorX
elif [ "$suid" = "true" ] ; then
chmod 4755 /usr/bin/terminatorX
fi
-
 fi
 
 db_stop
--- End Message ---
--- Begin Message ---
Source: terminatorx
Source-Version: 4.0.1-1

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

Debian distribution maintenance software
pp.
James Cowgill  (supplier of updated terminatorx package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Aug 2016 10:19:56 +
Source: terminatorx
Binary: terminatorx
Architecture: source
Version: 4.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
Description:
 terminatorx - realtime audio synthesizer
Closes: 770051 811993 830028
Changes:
 terminatorx (4.0.1-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ James Cowgill ]
   * New upstream release.
 - Fixes FTBFS with GCC 6. (Closes: #811993)
 .
   * debian/control:
 - Build-depend on libgtk3-dev and libpulse-dev.
 - Use secure Vcs URLs.
 - Update Homepage URL.
 - Bump standards to 3.9.8.
   * debian/dirs:
 - Remove useless file (directories already created by other commands).
   * debian/menu:
 - Drop menu file and xpm icon per tech-ctte menus decision.
   * debian/patches:
 - Refresh patches.
 - Drop 22_manual.patch - not needed.
 - Drop 26-spelling_mistakes.patch - applied upstream.
 - Remove Encoding key from desktop file.
 - Revert change of the Comment field in the desktop file.
 - Port documentation build system to yelp-tools. (Closes: #830028)
 - Clean generated icon resource .c files.
 - Mark all patches as forwarded.
 .
   * debian/rules:
 - Remove obsolete debug and strip handling.
 - Remove DTD update lines from debian/rules.
 - Remove dh_auto_clean override (now handled by a patch).
 - Remove unused drectories removal code - cleans up nothing.
 .
   [ Guillem Jover ]
   * Assume dpkg-statoverride exists in d/postinst. (Closes: #770051)
Checksums-Sha1:
 05ea1e52cf1ea155fc1c1c16092f2247750a03f0 2330 terminatorx_4.0.1-1.dsc
 4f9f120764cb7ea01d

Bug#811993: marked as done (terminatorx: FTBFS with GCC 6: call overloaded is ambiguous)

2016-08-04 Thread Debian Bug Tracking System
Your message dated Thu, 04 Aug 2016 11:35:00 +
with message-id 
and subject line Bug#811993: fixed in terminatorx 4.0.1-1
has caused the Debian Bug report #811993,
regarding terminatorx: FTBFS with GCC 6: call overloaded is ambiguous
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.)


-- 
811993: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811993
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: terminatorx
Version: 3.90-2
Severity: important
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-6 gcc-6-overloaded-ambiguous

This package fails to build with GCC 6.  GCC 6 has not been released
yet, but it's expected that GCC 6 will become the default compiler for
stretch.

Note that only the first error is reported; there might be more.  You
can find a snapshot of GCC 6 in experimental.  To build with GCC 6,
you can set CC=gcc-6 CXX=g++-6 explicitly.

You may be able to find out more about this issue at
https://gcc.gnu.org/gcc-6/changes.html

> sbuild (Debian sbuild) 0.67.0 (26 Dec 2015) on dl580gen9-02.hlinux
...
> g++ -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/usr/include/libxml2 -g -O2 -fstack-protector-strong -Wformat 
> -Werror=format-security -finput-charset=utf-8 
> -DXML_MANUAL=\"/usr/share/gnome/help/terminatorX-manual/C/terminatorX-manual.xml\"
>  -pthread -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include 
> -I/usr/include/gio-unix-2.0/ -I/usr/include/cairo -I/usr/include/pango-1.0 
> -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 
> -I/usr/include/libpng12 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libpng12 
> -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/pango-1.0 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
> -I/usr/include/freetype2  -D_REENTRANT  -g -O2 -fstack-protector-strong 
> -Wformat -Werror=format-security -c -o tX_capabilities.o tX_capabilities.cc
> tX_dialog.cc:546:30: warning: invalid suffix on literal; C++11 requires a 
> space between literal and string macro [-Wliteral-suffix]
>label=gtk_label_new(PACKAGE" release "VERSION);
>   ^
> 
> tX_dialog.cc:569:23: warning: invalid suffix on literal; C++11 requires a 
> space between literal and string macro [-Wliteral-suffix]
>label=gtk_label_new("This is "PACKAGE" release "VERSION".\nCopyright (C) 
> 1999-2014 by Alexander König ");
>^
> 
> tX_dialog.cc:569:40: warning: invalid suffix on literal; C++11 requires a 
> space between literal and string macro [-Wliteral-suffix]
>label=gtk_label_new("This is "PACKAGE" release "VERSION".\nCopyright (C) 
> 1999-2014 by Alexander König ");
> ^
> 
> tX_mastergui.cc:1675:22: warning: invalid suffix on literal; C++11 requires a 
> space between literal and string macro [-Wliteral-suffix]
>   dummy=gtk_label_new("v"VERSION);
>   ^
> 
> tX_knobloader.c: In function 'load_knob_pixs':
> tX_knobloader.c:90:3: warning: 'gdk_pixbuf_new_from_inline' is deprecated 
> [-Wdeprecated-declarations]
>knob_pixmaps[i]=gdk_pixbuf_new_from_inline(-1, knob_pixs[i], TRUE, &error);
>^~~~
> 
> In file included from 
> /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h:33:0,
>  from /usr/include/gtk-2.0/gdk/gdkpixbuf.h:37,
>  from /usr/include/gtk-2.0/gdk/gdkcairo.h:28,
>  from /usr/include/gtk-2.0/gdk/gdk.h:33,
>  from /usr/include/gtk-2.0/gtk/gtk.h:32,
>  from tX_knobloader.c:23:
> /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h:314:12: note: 
> declared here
>  GdkPixbuf* gdk_pixbuf_new_from_inline (gint  data_length,
> ^~
...
> 
> tX_mouse.cc: In member function 'void tx_mouse::motion_notify(GtkWidget*, 
> GdkEventMotion*)':
> tX_mouse.cc:320:41: error: call of overloaded 'abs(gdouble&)' is ambiguous
> f_prec value=(abs(eventMotion->x_root)>abs(eventMotion->y_root)) ? 
> eventMotion->x_root : eventMotion->y_root;
>  ^
> 
> In file included from /usr/include/c++/6/cstdlib:72:0,
>  from /usr/include/c++/6/ext/string_conversions.h:41,
>  from /usr/include/c++/6/bits/basic_string.h:5402,
>  from /usr/include/c++/6/string:52,
>  from /usr/include/x86_64-linux-gnu/unicode/std_string.h:33,
>  from /usr/include/x86_64-linux-gnu/unicode/unistr.h:31,
>  from /usr/include/x86_64-linux-gn

Bug#830028: marked as done (terminatorx: Uses deprecated gnome-common macros/variables)

2016-08-04 Thread Debian Bug Tracking System
Your message dated Thu, 04 Aug 2016 11:35:00 +
with message-id 
and subject line Bug#830028: fixed in terminatorx 4.0.1-1
has caused the Debian Bug report #830028,
regarding terminatorx: Uses deprecated gnome-common macros/variables
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.)


-- 
830028: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=830028
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: terminatorx
Version: 3.90-2
Severity: normal
User: pkg-gnome-maintain...@lists.alioth.debian.org
Usertags: gnome-common

Hi,

gnome-common did a cleanup upstream and deprecated quite a few macros
and variables.

gnome-doc-utils removal
===
The gnome-doc-utils build infrastructure was removed completely along
with the following macros:

 GNOME_DOC_INIT [1]
 GNOME_COMMON_INIT [2]


deprecated variables

The following variables used in gnome-autogen.sh have been declared
deprecated [3]:

 REQUIRED_GNOME_DOC_UTILS_VERSION
 REQUIRED_DOC_COMMON_VERSION
 USE_COMMON_DOC_BUILD
 FORBIDDEN_M4MACROS
 GNOME2_DIR
 GNOME2_PATH
 USE_GNOME2_MACROS

deprecated macros
=
The following macros have also been declared deprecated:

 GNOME_COMPILE_WARNINGS [4]
 GNOME_CXX_WARNINGS [5]

Upstream has documentation at [6] with how you can fix your package and
why those particular changes were made.

According to codesearch.d.n your package terminatorx uses one of the macros or
variables so might be affected, especially once you run autoreconf. Please
update your package accordingly and forward it to upstream if possible.

If you have further question, please don't hesitate to ask.

Regards,
Michael

[1] https://git.gnome.org/browse/gnome-common/commit/?id=6684e2fa5
[2] https://git.gnome.org/browse/gnome-common/commit/?id=1f60e9536
[3] https://git.gnome.org/browse/gnome-common/commit/?id=4c8d8ad93
[4] https://git.gnome.org/browse/gnome-common/commit/?id=b57bae0be
[5] https://git.gnome.org/browse/gnome-common/commit/?id=2bffd7e1u
[6] https://wiki.gnome.org/Projects/GnomeCommon/Migration
--- End Message ---
--- Begin Message ---
Source: terminatorx
Source-Version: 4.0.1-1

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

Debian distribution maintenance software
pp.
James Cowgill  (supplier of updated terminatorx package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Aug 2016 10:19:56 +
Source: terminatorx
Binary: terminatorx
Architecture: source
Version: 4.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
Description:
 terminatorx - realtime audio synthesizer
Closes: 770051 811993 830028
Changes:
 terminatorx (4.0.1-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ James Cowgill ]
   * New upstream release.
 - Fixes FTBFS with GCC 6. (Closes: #811993)
 .
   * debian/control:
 - Build-depend on libgtk3-dev and libpulse-dev.
 - Use secure Vcs URLs.
 - Update Homepage URL.
 - Bump standards to 3.9.8.
   * debian/dirs:
 - Remove useless file (directories already created by other commands).
   * debian/menu:
 - Drop menu file and xpm icon per tech-ctte menus decision.
   * debian/patches:
 - Refresh patches.
 - Drop 22_manual.patch - not needed.
 - Drop 26-spelling_mistakes.patch - applied upstream.
 - Remove Encoding key from desktop file.
 - Revert change of the Comment field in the desktop file.
 - Port documentation build system to yelp-tools. (Closes: #830028)
 - Clean generated icon resource .c files.
 - Mark all patches as forwarded.
 .
   * debian/rules:
 - Remove obsolete debug and strip handling.
 - Remove DTD update lines from debian/rules.
 - Remove dh_auto_clean override (now handled by a patch).
 - Remove unused drectories removal code - cleans up nothing.
 .
   [ Guillem Jover ]
   * Assume dpkg-statoverride exists in d/postinst. (Closes: #770051)
Checksums-Sha1:
 05ea1e52cf1ea155fc1c1c16092f2247750a03f0 2330 terminator

terminatorx_4.0.1-1_source.changes ACCEPTED into unstable

2016-08-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 04 Aug 2016 10:19:56 +
Source: terminatorx
Binary: terminatorx
Architecture: source
Version: 4.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
Description:
 terminatorx - realtime audio synthesizer
Closes: 770051 811993 830028
Changes:
 terminatorx (4.0.1-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ James Cowgill ]
   * New upstream release.
 - Fixes FTBFS with GCC 6. (Closes: #811993)
 .
   * debian/control:
 - Build-depend on libgtk3-dev and libpulse-dev.
 - Use secure Vcs URLs.
 - Update Homepage URL.
 - Bump standards to 3.9.8.
   * debian/dirs:
 - Remove useless file (directories already created by other commands).
   * debian/menu:
 - Drop menu file and xpm icon per tech-ctte menus decision.
   * debian/patches:
 - Refresh patches.
 - Drop 22_manual.patch - not needed.
 - Drop 26-spelling_mistakes.patch - applied upstream.
 - Remove Encoding key from desktop file.
 - Revert change of the Comment field in the desktop file.
 - Port documentation build system to yelp-tools. (Closes: #830028)
 - Clean generated icon resource .c files.
 - Mark all patches as forwarded.
 .
   * debian/rules:
 - Remove obsolete debug and strip handling.
 - Remove DTD update lines from debian/rules.
 - Remove dh_auto_clean override (now handled by a patch).
 - Remove unused drectories removal code - cleans up nothing.
 .
   [ Guillem Jover ]
   * Assume dpkg-statoverride exists in d/postinst. (Closes: #770051)
Checksums-Sha1:
 05ea1e52cf1ea155fc1c1c16092f2247750a03f0 2330 terminatorx_4.0.1-1.dsc
 4f9f120764cb7ea01ddcf86591978c54bd70d020 1832692 terminatorx_4.0.1.orig.tar.bz2
 f680be48783c28b08ba3d146bd46d90ac60c2706 34860 
terminatorx_4.0.1-1.debian.tar.xz
Checksums-Sha256:
 fe377eccf34e3ab353c4ce18df2a1e04aad259e1d8c0a19026f1c6797d647b3a 2330 
terminatorx_4.0.1-1.dsc
 96e2e7910d96b9bdadb315727c4127cfda579bd68d2b25d99cd9d35e9fbea56a 1832692 
terminatorx_4.0.1.orig.tar.bz2
 11b14f78cf31df7a424f5364cb3cd0f499bdc860ac0dcb8b77cb428dd9993114 34860 
terminatorx_4.0.1-1.debian.tar.xz
Files:
 4bfdc33eab7cb3c582bef5e162a9a9bd 2330 sound optional terminatorx_4.0.1-1.dsc
 463aa36a66686b58fde27f16edebab6e 1832692 sound optional 
terminatorx_4.0.1.orig.tar.bz2
 cd63cc96a15b1b34832f05d2b6a0109f 34860 sound optional 
terminatorx_4.0.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCgAGBQJXoyBjAAoJEMfxZ23qLQHvdygP/3eBlLCwoK2jwbK8vT7LurvO
qIFFWS21K/l8TGrp4LsBGTD6sE7Yqs1l6zKTE7o4pLRaXQs05PVZRJFEbSzoHVlM
WI3c2tg5WeX5xQLzizKmb/OcHBVvXlKQLK3m94vD4Mm99hPdHskIOlu7Cc2GO+fZ
CIWO0Fqf95Svv/B8GHalfjsYWoXO+HmaCZMBdEv5L7CwCRqgd/fF2t7S7DZxxfU+
9YZpr5m9lVGcURr6u1uxiVzyoZAY1BiMsofw38EDXivUgwN31JZaEGUofon5mf9l
VsxLF9H+WRiJ6S48HdjI34LjDmcVxR2ifYb0/ux80b9y7thFthWjbtp6Ih6nYGhi
15cKtpQuu0edNPYWhWCpR5drtQDklVk4oSUqyRhhHNMKLf2XIieNe0OlYR5Ykd2t
vV1GPYVKjLPbRutCFssRx8m+K8safOtBZH3H9LWqn7ai31+zrYQ0M9wKnZCCD/Z6
jwdNWMUUnj+urpCPCFGUNocoYU0XhjUjeLLtWAIxm/4ZXRWvg8JtvR3yrxbc3hkB
/S2uvH8sOFD+Pvdl4ck8Bjv2JWt+dC1FpXBKf5EdpThWU088eLH7U2/I21mHducB
EEgpiDcv2EFvwJiCQJ0RxF40H9gNkDVjC/MQHm7CHipAEuJ3OR2nziT9s1WJouQ5
/BYZyDrzxJp1AIJY1+aH
=UDzF
-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


Processing of kmidimon_0.7.5-3_source.changes

2016-08-04 Thread Debian FTP Masters
kmidimon_0.7.5-3_source.changes uploaded successfully to localhost
along with the files:
  kmidimon_0.7.5-3.dsc
  kmidimon_0.7.5-3.debian.tar.xz

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


Processed: Bug#833360 marked as pending

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

> tag 833360 pending
Bug #833360 [kmidimon] Kmidimon - French translation
Added tag(s) pending.
> thanks
Stopping processing here.

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

___
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#694879: Blender + OpenCOLLADA FTBFS

2016-08-04 Thread ian_bruce
If removing the illegal UTF-8 and Windows-1252 characters doesn't fix
the problem, then try this:


--- opencollada/COLLADAFramework/COLLADAFWPrerequisites.h.orig  2014-07-03 
09:30:54.0 -0700
+++ opencollada/COLLADAFramework/COLLADAFWPrerequisites.h   2016-08-04 
03:42:44.765860036 -0700
@@ -11,6 +11,7 @@
 #ifndef __COLLADAFW_PREREQUISITES_H__
 #define __COLLADAFW_PREREQUISITES_H__
 
+#include 
 #include 
 
 namespace COLLADAFW

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


Processed: Bug#830028 marked as pending

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

> tag 830028 pending
Bug #830028 [src:terminatorx] terminatorx: Uses deprecated gnome-common 
macros/variables
Ignoring request to alter tags of bug #830028 to the same tags previously set
> thanks
Stopping processing here.

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

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


Processed: Bug#811993 marked as pending

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

> tag 811993 pending
Bug #811993 [terminatorx] terminatorx: FTBFS with GCC 6: call overloaded is 
ambiguous
Ignoring request to alter tags of bug #811993 to the same tags previously set
> thanks
Stopping processing here.

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

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


Processed: Bug#770051 marked as pending

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

> tag 770051 pending
Bug #770051 [src:terminatorx] terminatorx: Uses absolute obsolete path for 
dpkg-statoverride
Ignoring request to alter tags of bug #770051 to the same tags previously set
> thanks
Stopping processing here.

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

___
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 terminatorx_4.0.1-1_source.changes

2016-08-04 Thread Debian FTP Masters
terminatorx_4.0.1-1_source.changes uploaded successfully to localhost
along with the files:
  terminatorx_4.0.1-1.dsc
  terminatorx_4.0.1.orig.tar.bz2
  terminatorx_4.0.1-1.debian.tar.xz

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


Bug#694879: Blender still missing Collada support, one year after opencollada was packaged

2016-08-04 Thread ian_bruce
On Tue, 2 Aug 2016 14:49:26 +0200
"Matteo F. Vescovi"  wrote:

>> Is there any remaining reason why the Blender package should not be
>> linked against it? Blender is supposed to have built-in support for
>> Collada.

> Simple, it fails:

I didn't know that; it hasn't previously been mentioned in this bug
report.

> In file included from
> 
> /usr/include/opencollada/COLLADAFramework/COLLADAFWInstanceGeometry.h:15:0,
>  from
> /usr/include/opencollada/COLLADAFramework/COLLADAFWNode.h:17,
>  from
> 
> /<>/blender-2.77.a+dfsg0/source/blender/collada/ArmatureImporter.h:30,
>  from
> 
> /<>/blender-2.77.a+dfsg0/source/blender/collada/ArmatureImporter.cpp:43:
> 
> /usr/include/opencollada/COLLADAFramework/COLLADAFWInstanceBindingBase.h:53:14:
> error: 'vector' in namespace 'std' does not name a template type
>  std::vector  &skeletons() { return mSkeletons; }
>   ^
> 
> /usr/include/opencollada/COLLADAFramework/COLLADAFWInstanceBindingBase.h:65:14:
> error: 'vector' in namespace 'std' does not name a template type
>  std::vector  mSkeletons;
>   ^

That's very odd.

How is it that the official binaries from the Blender website are built
with Collada support? What's different about their build environment?
Has anybody asked them?

> Feel free to help debugging. Patches are really welcome.

One potential problem is that many of the OpenCOLLADA header files are
filled with a weird mixture of UTF-8 and Windows-1252 characters,
neither of which are actually legal in C/C++ source code, except maybe
as quoted strings. In particular, in a UTF-8 environment, the
Windows-1252 characters can be interpreted as the beginning of a
multibyte sequence, which screws up the following text. It's unlikely
that that's the entire cause of the problem, but let's try getting rid
of them:


# export LANG=C   # THIS IS IMPORTANT!!!
# 
# dpkg -s opencollada-dev | egrep "Package|Status|Version"
Package: opencollada-dev
Status: install ok installed
Version: 0.1.0~20140703.ddf8f47+dfsg1-3
# 
# pwd
/usr/include/opencollada
# 
# BADCHARS=$(echo {8,9,a,b,c,d,e,f}{0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f})
# PATTERN=$(for n in $BADCHARS ; do echo -ne "\x${n}" ; [ $n = ff ] || echo -n 
"|" ; done)
# BADFILES=$(egrep -l "$PATTERN" $(find . -name '*.h'))
# 
# for n in $BADCHARS ; do c=$(echo -ne "\x${n}") ; grep -q "${c}" $BADFILES && 
echo "character: \\x${n}" ; done
character: \x92
character: \x93
character: \x94
character: \x95
character: \x97
character: \xbd
character: \xbf
character: \xe9
character: \xef
# 
# grep -a -C3 --color=always $'\x95' $BADFILES | less -R
# 
# echo $'s/(\xef\xbf\xbd|\*|")?Curve Interpolation("|\*|\xef\xbf\xbd)?/*Curve 
Interpolation*/g' >~/sedscript
# echo $'s/plus (\xef\xbf)?\xbd/plus 
half/g\ns/\xef\xbf\xbds/\'s/g\ns/\xef\xbf\xbd /- /g' >>~/sedscript
# echo 
$'s/\x92/\'/g\ns/\x93/"/g\ns/\x94/"/g\ns/\x95/-/g\ns/\x97/-/g\ns/\xe9/e/g' 
>>~/sedscript
# 
# BADFILES=$(egrep -l "${PATTERN}|Curve Interpolation" $(find . -name '*.h'))
# 
# sed -r -i.badchar -f ~/sedscript $BADFILES
# 
# for n in $BADCHARS ; do c=$(echo -ne "\x${n}") ; grep -q "${c}" $BADFILES && 
echo "character: \\x${n}" ; done
# 
# cd ..
#
# find opencollada/ -name '*.badchar' | wc
 32  322061
# 
# (for f in $(find opencollada/ -name '*.badchar') ; do diff -u ${f} 
${f%.badchar} ; done) >~/opencollada-headers-badchars.diff
# 


See attached patchfile. That should also be sent upstream, wherever that
is.

Let me know if that helps. Otherwise, there must be some way of finding
out what that template instantiation error is.


-- Ian Bruce
--- opencollada/COLLADAStreamWriter/COLLADASWInputList.h.badchar	2014-07-03 09:30:54.0 -0700
+++ opencollada/COLLADAStreamWriter/COLLADASWInputList.h	2016-08-03 23:34:59.984290928 -0700
@@ -35,20 +35,20 @@
 			BINORMAL=0, /** Geometric binormal (bitangent) vector */
 			BINDMATRIX, 
 			COLOR, /** Color coordinate vector. Color inputs are RGB (float3) */
-			CONTINUITY, /** Continuity constraint at the control vertex (CV). See also "Curve Interpolation" in Chapter 4: Programming Guide. */
+			CONTINUITY, /** Continuity constraint at the control vertex (CV). See also *Curve Interpolation* in Chapter 4: Programming Guide. */
 			IMAGE, /** Raster or MIP-level input. */
-			INPUT, /** Sampler input. See also "Curve Interpolation" in Chapter 4: Programming Guide. */
-			IN_TANGENT, /** Tangent vector for preceding control point. See also "Curve Interpolation" in Chapter 4: Programming Guide. */
-			INTERPOLATION, /** Sampler interpolation type. See also "Curve Interpolation" in Chapter 4: Programming Guide. */
+			INPUT, /** Sampler input. See also *Curve Interpolation* in Chapter 4: Programming Guide. */
+			IN_TANGENT, /** Tangent vector for preceding control point. See also *Curve Interpolation* in Chapter 4: Programming Guide. */
+			INTERPOLATION, /** Sampler inte

Processed: forcibly merging 831529 832581

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

> forcemerge 831529 832581
Bug #831529 {Done: Sebastian Ramacher } [libavcodec57] 
libavcodec57: broken option parsing with LANGs with decimal mark different from 
.
Bug #831909 {Done: Sebastian Ramacher } [libavcodec57] 
libavcodec57: broken option parsing with LANGs with decimal mark different from 
.
Bug #832964 {Done: Sebastian Ramacher } [libavcodec57] 
libavcodec57: Error in libavcodec.so.57 crashes radiotray
Bug #831768 [libavcodec57] radiotray stops at start a radiostream
Marked Bug as done
Marked Bug as done
Added indication that 831768 affects totem
Added indication that 832581 affects totem
Marked as fixed in versions ffmpeg/7:3.1.1-4.
Marked as fixed in versions ffmpeg/7:3.1.1-4.
Bug #831909 {Done: Sebastian Ramacher } [libavcodec57] 
libavcodec57: broken option parsing with LANGs with decimal mark different from 
.
Bug #832581 {Done: Sebastian Ramacher } [libavcodec57] 
radiotray crashes when try to play any radiostream
Bug #832964 {Done: Sebastian Ramacher } [libavcodec57] 
libavcodec57: Error in libavcodec.so.57 crashes radiotray
Merged 831529 831768 831909 832581 832964
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
831529: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831529
831768: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831768
831909: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831909
832581: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=832581
832964: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=832964
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

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


Processed (with 1 error): found 832581 in 7:3.1.1-2, tagging 832581, merging 831529 832581

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

> found 832581 7:3.1.1-2
Bug #832581 [libavcodec57] radiotray crashes when try to play any radiostream
Bug #831768 [libavcodec57] radiotray stops at start a radiostream
Marked as found in versions ffmpeg/7:3.1.1-2.
Marked as found in versions ffmpeg/7:3.1.1-2.
> tags 832581 = confirmed patch upstream
Bug #832581 [libavcodec57] radiotray crashes when try to play any radiostream
Bug #831768 [libavcodec57] radiotray stops at start a radiostream
Added tag(s) confirmed, patch, and upstream; removed tag(s) moreinfo.
Added tag(s) patch, upstream, and confirmed; removed tag(s) moreinfo.
> merge 831529 832581
Bug #831529 {Done: Sebastian Ramacher } [libavcodec57] 
libavcodec57: broken option parsing with LANGs with decimal mark different from 
.
Bug #831909 {Done: Sebastian Ramacher } [libavcodec57] 
libavcodec57: broken option parsing with LANGs with decimal mark different from 
.
Bug #832964 {Done: Sebastian Ramacher } [libavcodec57] 
libavcodec57: Error in libavcodec.so.57 crashes radiotray
Unable to merge bugs because:
done of #832581 is '' not 'Sebastian Ramacher '
affects of #832581 is '' not 'totem'
done of #831768 is '' not 'Sebastian Ramacher '
affects of #831768 is '' not 'totem'
Failed to merge 831529: Did not alter merged bugs.

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
831529: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831529
831768: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831768
831909: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831909
832581: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=832581
832964: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=832964
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

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