Bug#811622: NMU in delayed/7

2016-07-29 Thread Adam Borowski
Control: tags -1 +pending

Hi!
I've prepared a NMU fixing this bug, it's in delayed/7.  Debdiff attached,
if you dislike it for any reason, please say so.

-- 
An imaginary friend squared is a real enemy.
diff -Nru crtmpserver-1.0~dfsg/debian/changelog 
crtmpserver-1.0~dfsg/debian/changelog
--- crtmpserver-1.0~dfsg/debian/changelog   2015-10-25 13:14:35.0 
+0100
+++ crtmpserver-1.0~dfsg/debian/changelog   2016-07-30 04:29:24.0 
+0200
@@ -1,3 +1,11 @@
+crtmpserver (1.0~dfsg-5.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTBFS with gcc-6 (Closes: #811622).
+  * Remove Andres Mejia from Uploaders, per the MIA team (Closes: #743519).
+
+ -- Adam Borowski   Sat, 30 Jul 2016 04:26:19 +0200
+
 crtmpserver (1.0~dfsg-5.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Nru crtmpserver-1.0~dfsg/debian/control 
crtmpserver-1.0~dfsg/debian/control
--- crtmpserver-1.0~dfsg/debian/control 2015-10-25 13:13:20.0 +0100
+++ crtmpserver-1.0~dfsg/debian/control 2016-07-30 04:26:13.0 +0200
@@ -5,7 +5,6 @@
 Uploaders:
  Alessio Treglia ,
  Andriy Beregovenko ,
- Andres Mejia 
 Build-Depends:
  cmake,
  debhelper (>= 9),
diff -Nru crtmpserver-1.0~dfsg/debian/patches/22_fix_ftbfs_gcc-6.diff 
crtmpserver-1.0~dfsg/debian/patches/22_fix_ftbfs_gcc-6.diff
--- crtmpserver-1.0~dfsg/debian/patches/22_fix_ftbfs_gcc-6.diff 1970-01-01 
01:00:00.0 +0100
+++ crtmpserver-1.0~dfsg/debian/patches/22_fix_ftbfs_gcc-6.diff 2016-07-30 
04:25:36.0 +0200
@@ -0,0 +1,1928 @@
+Description: fix build failure with gcc-6
+ All of many errors are of only two types:
+ .
+ * letters after string literals, sometimes fatal: "foo"name"bar", sometimes
+   merely a warning: "foo"PRIx64 -- I've fixed either
+ * "return false;" in a function returning a pointer
+Author: Adam Borowski 
+Bug-Debian: https://bugs.debian.org/811622
+
+--- 
crtmpserver-1.0~dfsg.orig/applications/applestreamingclient/src/playlist.cpp
 crtmpserver-1.0~dfsg/applications/applestreamingclient/src/playlist.cpp
+@@ -223,7 +223,7 @@ uint32_t Playlist::GetIndex(uint32_t 
+   //2. We don't have it, and is a 0 value, that means it was never 
initialized
+   if (sequence == 0) {
+   FINEST("sequence is 0");
+-  FINEST("_itemMediaSequences.size(): %"PRIz"u", 
_itemMediaSequences.size());
++  FINEST("_itemMediaSequences.size(): %" PRIz"u", 
_itemMediaSequences.size());
+   if (_itemMediaSequences.size() != 0) {
+   //3. We have stuff. Init and return
+   FINEST("Return the first entry");
+--- 
crtmpserver-1.0~dfsg.orig/applications/applestreamingclient/src/protocols/key/inboundkeyprotocol.cpp
 
crtmpserver-1.0~dfsg/applications/applestreamingclient/src/protocols/key/inboundkeyprotocol.cpp
+@@ -74,7 +74,7 @@ bool InboundKeyProtocol::SignalInputData
+   //6. Unbase64 the encrypted key
+   string encryptedKey = unb64(temp);
+   if (encryptedKey.size() != 16) {
+-  FATAL("Invalid key length: %"PRIz"u", encryptedKey.size());
++  FATAL("Invalid key length: %" PRIz"u", encryptedKey.size());
+   return false;
+   }
+ 
+--- crtmpserver-1.0~dfsg.orig/common/src/platform/android/androidplatform.cpp
 crtmpserver-1.0~dfsg/common/src/platform/android/androidplatform.cpp
+@@ -159,7 +159,7 @@ bool setFdTTL(int32_t fd, uint8_t ttl) {
+   int temp = ttl;
+   if (setsockopt(fd, IPPROTO_IP, IP_TTL, , sizeof (temp)) != 0) {
+   int err = errno;
+-  WARN("Unable to set IP_TTL: %"PRIu8"; error was %"PRId32" %s", 
ttl, err, strerror(err));
++  WARN("Unable to set IP_TTL: %" PRIu8"; error was %" PRId32" 
%s", ttl, err, strerror(err));
+   }
+   return true;
+ }
+@@ -168,7 +168,7 @@ bool setFdMulticastTTL(int32_t fd, uint8
+   int temp = ttl;
+   if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_TTL, , sizeof (temp)) 
!= 0) {
+   int err = errno;
+-  WARN("Unable to set IP_MULTICAST_TTL: %"PRIu8"; error was 
%"PRId32" %s", ttl, err, strerror(err));
++  WARN("Unable to set IP_MULTICAST_TTL: %" PRIu8"; error was %" 
PRId32" %s", ttl, err, strerror(err));
+   }
+   return true;
+ }
+@@ -177,7 +177,7 @@ bool setFdTOS(int32_t fd, uint8_t tos) {
+   int temp = tos;
+   if (setsockopt(fd, IPPROTO_IP, IP_TOS, , sizeof (temp)) != 0) {
+   int err = errno;
+-  WARN("Unable to set IP_TOS: %"PRIu8"; error was %"PRId32" %s", 
tos, err, strerror(err));
++  WARN("Unable to set IP_TOS: %" PRIu8"; error was %" PRId32" 
%s", tos, err, strerror(err));
+   }
+   return true;
+ }
+--- crtmpserver-1.0~dfsg.orig/common/src/platform/dfreebsd/dfreebsdplatform.cpp
 crtmpserver-1.0~dfsg/common/src/platform/dfreebsd/dfreebsdplatform.cpp
+@@ -160,7 +160,7 @@ 

Processed: NMU in delayed/7

2016-07-29 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 +pending
Bug #811622 [crtmpserver] FTBFS with GCC 6: cannot convert x to y
Added tag(s) pending.

-- 
811622: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=811622
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 crtmpserver_1.0~dfsg-5.2_source.changes

2016-07-29 Thread Debian FTP Masters
crtmpserver_1.0~dfsg-5.2_source.changes uploaded successfully to localhost
along with the files:
  crtmpserver_1.0~dfsg-5.2.dsc
  crtmpserver_1.0~dfsg-5.2.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


rosegarden 1:16.06-1 MIGRATED to testing

2016-07-29 Thread Debian testing watch
FYI: The status of the rosegarden source package
in Debian's testing distribution has changed.

  Previous version: 1:16.02-2
  Current version:  1:16.06-1

-- 
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: [SCM] intel-vaapi-driver packaging branch, jessie-backports, created. debian/1.7.1-1-1-gb40f4e3

2016-07-29 Thread Nicholas D Steeves
On 29 July 2016 at 06:28,   wrote:
> The branch, jessie-backports has been created
> at  b40f4e34eed7e6e9f3225aa28f8ac9963d509747 (commit)
>
> - Shortlog 
> commit b40f4e34eed7e6e9f3225aa28f8ac9963d509747
> Author: Nicholas D Steeves 
> Date:   Fri Jul 29 06:25:56 2016 -0400
>
> Backport 1.7.1-1 to Jessie.
>

I figured out a way to a hack to work around the gbp build failure
that is fixed in 1.7.1-2 UNRELEASED.  Briefly, in ~/.gbp.conf:  change
the cleaner line under [DEFAULT] to "cleaner = true" ;-)  Please
upload the libva bpo and this one simultaneously.

Cheers!
Nicholas

___
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#832857: kodi: FTBFS: dh_auto_test: make -j1 check VERBOSE=1 returned exit code 2

2016-07-29 Thread Lucas Nussbaum
Source: kodi
Version: 16.1+dfsg1-1
Severity: serious
Tags: stretch sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20160728 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part (hopefully):
> make[4]: Entering directory '/«BUILDDIR»/kodi-16.1+dfsg1/lib/gtest'
> [ 75%] Building CXX object CMakeFiles/gtest_main.dir/src/gtest_main.cc.o
> /usr/bin/x86_64-linux-gnu-g++
> -I/«BUILDDIR»/kodi-16.1+dfsg1/lib/gtest/include 
> -I/«BUILDDIR»/kodi-16.1+dfsg1/lib/gtest  -O2 -DNDEBUG=1 -g -O2 
> -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DPIC 
> -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -std=gnu++11-O2 
> -DNDEBUG=1 -g -O2 -fstack-protector-strong -Wformat -Werror=format-security 
> -fPIC -DPIC -D_REENTRANT -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 
> -std=gnu++11  -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra 
> -Wno-unused-parameter -Wno-missing-field-initializers -o 
> CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c 
> /«BUILDDIR»/kodi-16.1+dfsg1/lib/gtest/src/gtest_main.cc
> [100%] Linking CXX static library libgtest_main.a
> /usr/bin/cmake -P CMakeFiles/gtest_main.dir/cmake_clean_target.cmake
> /usr/bin/cmake -E cmake_link_script CMakeFiles/gtest_main.dir/link.txt 
> --verbose=1
> /usr/bin/ar qc libgtest_main.a  CMakeFiles/gtest_main.dir/src/gtest_main.cc.o
> /usr/bin/ranlib libgtest_main.a
> make[4]: Leaving directory '/«BUILDDIR»/kodi-16.1+dfsg1/lib/gtest'
> [100%] Built target gtest_main
> make[3]: Leaving directory '/«BUILDDIR»/kodi-16.1+dfsg1/lib/gtest'
> /usr/bin/cmake -E cmake_progress_start 
> /«BUILDDIR»/kodi-16.1+dfsg1/lib/gtest/CMakeFiles 0
> make[2]: Leaving directory '/«BUILDDIR»/kodi-16.1+dfsg1/lib/gtest'
> LD  kodi-test
> for check_program in kodi-test; do 
> /«BUILDDIR»/kodi-16.1+dfsg1/$check_program; done
> [==] Running 574 tests from 89 test cases.
> [--] Global test environment set-up.
> sh: 1: lsb_release: not found
> [--] 5 tests from TestAddonVersion
> [ RUN  ] TestAddonVersion.Constructor
> [   OK ] TestAddonVersion.Constructor (0 ms)
> [ RUN  ] TestAddonVersion.asString
> [   OK ] TestAddonVersion.asString (0 ms)
> [ RUN  ] TestAddonVersion.Equals
> [   OK ] TestAddonVersion.Equals (0 ms)
> [ RUN  ] TestAddonVersion.Equivalent
> [   OK ] TestAddonVersion.Equivalent (0 ms)
> [ RUN  ] TestAddonVersion.LessThan
> [   OK ] TestAddonVersion.LessThan (0 ms)
> [--] 5 tests from TestAddonVersion (0 ms total)
> 
> [--] 1 test from TestDirectory
> [ RUN  ] TestDirectory.General
> [   OK ] TestDirectory.General (1 ms)
> [--] 1 test from TestDirectory (1 ms total)
> 
> [--] 8 tests from TestFile
> [ RUN  ] TestFile.Read
> [   OK ] TestFile.Read (37 ms)
> [ RUN  ] TestFile.Write
> [   OK ] TestFile.Write (3 ms)
> [ RUN  ] TestFile.Exists
> [   OK ] TestFile.Exists (0 ms)
> [ RUN  ] TestFile.Stat
> [   OK ] TestFile.Stat (0 ms)
> [ RUN  ] TestFile.Delete
> [   OK ] TestFile.Delete (0 ms)
> [ RUN  ] TestFile.Rename
> [   OK ] TestFile.Rename (1 ms)
> [ RUN  ] TestFile.Copy
> [   OK ] TestFile.Copy (0 ms)
> [ RUN  ] TestFile.SetHidden
> [   OK ] TestFile.SetHidden (0 ms)
> [--] 8 tests from TestFile (41 ms total)
> 
> [--] 2 tests from TestFileFactory
> [ RUN  ] TestFileFactory.Read
> [   OK ] TestFileFactory.Read (0 ms)
> [ RUN  ] TestFileFactory.Write
> [   OK ] TestFileFactory.Write (6 ms)
> [--] 2 tests from TestFileFactory (6 ms total)
> 
> [--] 4 tests from TestZipFile
> [ RUN  ] TestZipFile.Read
> [   OK ] TestZipFile.Read (1 ms)
> [ RUN  ] TestZipFile.Exists
> [   OK ] TestZipFile.Exists (0 ms)
> [ RUN  ] TestZipFile.Stat
> [   OK ] TestZipFile.Stat (0 ms)
> [ RUN  ] TestZipFile.CorruptedFile
> Reference file generated at '/tmp/xbmctempdirO4gDP9/xbmctempfileyZTzf7.zip'
> file->GetLength(): 1616
> file->Seek(file->GetLength() / 2, SEEK_CUR) return value: 808
> file->Seek(0, SEEK_END) return value: 1616
> file->Seek(0, SEEK_SET) return value: 0
> File contents:
>     41 62 6F 75 74 0A 2D 2D 2D 2D 2D 0A 58 42 4D 43  
> [About.-.XBMC]
>   0010  20 69 73 20 61 6E 20 61 77 61 72 64 2D 77 69 6E  [ is an 
> award-win]
>   0020  6E 69 6E 67 20 66 72 65 65 20 61 6E 64 20 6F 70  [ning free and 
> op]
>   0030  65 6E 20 73 6F 75 72 63 65 20 28 47 50 4C 29 20  [en source (GPL) 
> ]
>   0040  73 6F 66 74 77 61 72 65 20 6D 65 64 69 61 20 70  [software media 
> p]
>   0050  6C 61 79 65 72 20 61 6E 64 0A 65 6E 74 65 72 74  [layer 
> and.entert]
>   0060  61 69 6E 6D 65 6E 74 20 68 75 62 20 66 6F 72 20  [ainment hub for 
> ]
>   0070  64 69 67 69 74 61 6C 20 6D 65 64 69 61 2E 20 58  [digital media. 
> X]
>   0080  42 4D 43 20 69 73 20 61 76 61 69 6C 61 62 6C 65  [BMC is 
> 

Processing of vlc_2.2.4-3_amd64.changes

2016-07-29 Thread Debian FTP Masters
vlc_2.2.4-3_amd64.changes uploaded successfully to localhost
along with the files:
  vlc_2.2.4-3.dsc
  vlc_2.2.4-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