Bug#851202: caps FTCBFS: uses build architecture strip

2017-01-12 Thread Helmut Grohne
Source: caps
Version: 0.9.24-3
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

caps fails to cross build from source, because its build system tries to
strip during make install with the build architecture strip. This is
bad, because it needs to use the host architecture strip and stripping
at installation time means that dh_strip cannot create a -dbgsym
package. Thus nullifying the strip invocation fixes both issues. Please
consider applying the attached patch.

Helmut
diff --minimal -Nru caps-0.9.24/debian/changelog caps-0.9.24/debian/changelog
--- caps-0.9.24/debian/changelog2016-12-21 14:34:53.0 +0100
+++ caps-0.9.24/debian/changelog2017-01-12 22:55:16.0 +0100
@@ -1,3 +1,10 @@
+caps (0.9.24-3.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: Do not strip during make install (Closes: #-1)
+
+ -- Helmut Grohne   Thu, 12 Jan 2017 22:55:16 +0100
+
 caps (0.9.24-3) unstable; urgency=medium
 
   * Set dh 10.
diff --minimal -Nru caps-0.9.24/debian/rules caps-0.9.24/debian/rules
--- caps-0.9.24/debian/rules2016-12-21 14:34:53.0 +0100
+++ caps-0.9.24/debian/rules2017-01-12 22:55:16.0 +0100
@@ -6,3 +6,6 @@
 
 %:
dh $@
+
+override_dh_auto_install:
+   dh_auto_install -- STRIP=:
___
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#851201: amb-plugins FTCBFS: hard codes build architecture compiler

2017-01-12 Thread Helmut Grohne
Source: amb-plugins
Version: 0.8.1-6
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

amb-plugins fails to cross build from source, because its build system
hard codes the build architecture compiler g++. Making it substitutable
by using $(CXX) makes the cross build succeed, because dh_auto_build
populates $(CXX) with a cross compiler. Please consider applying the
attached patch.

Helmut
diff --minimal -Nru amb-plugins-0.8.1/debian/changelog 
amb-plugins-0.8.1/debian/changelog
--- amb-plugins-0.8.1/debian/changelog  2016-12-21 10:21:15.0 +0100
+++ amb-plugins-0.8.1/debian/changelog  2017-01-12 22:48:48.0 +0100
@@ -1,3 +1,10 @@
+amb-plugins (0.8.1-6.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: 03-cross.patch: use a cross compiler (Closes: #-1)
+
+ -- Helmut Grohne   Thu, 12 Jan 2017 22:48:48 +0100
+
 amb-plugins (0.8.1-6) unstable; urgency=medium
 
   * Set dh 10.
diff --minimal -Nru amb-plugins-0.8.1/debian/patches/03-cross.patch 
amb-plugins-0.8.1/debian/patches/03-cross.patch
--- amb-plugins-0.8.1/debian/patches/03-cross.patch 1970-01-01 
01:00:00.0 +0100
+++ amb-plugins-0.8.1/debian/patches/03-cross.patch 2017-01-12 
22:48:46.0 +0100
@@ -0,0 +1,40 @@
+From: Helmut Grohne 
+Subject: make g++ substitutable for a cross compiler
+
+Index: amb-plugins-0.8.1/Makefile
+===
+--- amb-plugins-0.8.1.orig/Makefile
 amb-plugins-0.8.1/Makefile
+@@ -23,28 +23,28 @@
+ 
+ 
+ ambisonic0.so:ambisonic0.o ambisonic0_if.o virtmic.o allpass.o
+-  g++ $(LDFLAGS) -shared -o $@ ambisonic0.o ambisonic0_if.o virtmic.o 
allpass.o
++  $(CXX) $(LDFLAGS) -shared -o $@ ambisonic0.o ambisonic0_if.o virtmic.o 
allpass.o
+ 
+ ambisonic0.o: ladspaplugin.h ambisonic0.h
+ ambisonic0_if.o:  ladspaplugin.h ambisonic0.h
+ 
+ 
+ ambisonic1.so:ambisonic1.o ambisonic1_if.o filter1.o
+-  g++ $(LDFLAGS) -shared -o $@ ambisonic1.o ambisonic1_if.o filter1.o
++  $(CXX) $(LDFLAGS) -shared -o $@ ambisonic1.o ambisonic1_if.o filter1.o
+ 
+ ambisonic1.o: ladspaplugin.h ambisonic1.h filter1.h
+ ambisonic1_if.o:  ladspaplugin.h ambisonic1.h
+ 
+ 
+ ambisonic2.so:ambisonic2.o ambisonic2_if.o 
+-  g++ $(LDFLAGS) -shared -o $@ ambisonic2.o ambisonic2_if.o
++  $(CXX) $(LDFLAGS) -shared -o $@ ambisonic2.o ambisonic2_if.o
+ 
+ ambisonic2.o: ladspaplugin.h ambisonic2.h
+ ambisonic2_if.o:  ladspaplugin.h ambisonic2.h
+ 
+ 
+ ambisonic3.so:ambisonic3.o ambisonic3_if.o 
+-  g++ $(LDFLAGS) -shared -o $@ ambisonic3.o ambisonic3_if.o
++  $(CXX) $(LDFLAGS) -shared -o $@ ambisonic3.o ambisonic3_if.o
+ 
+ ambisonic3.o: ladspaplugin.h ambisonic3.h
+ ambisonic3_if.o:  ladspaplugin.h ambisonic3.h
diff --minimal -Nru amb-plugins-0.8.1/debian/patches/series 
amb-plugins-0.8.1/debian/patches/series
--- amb-plugins-0.8.1/debian/patches/series 2016-12-21 10:14:39.0 
+0100
+++ amb-plugins-0.8.1/debian/patches/series 2017-01-12 22:48:00.0 
+0100
@@ -1,2 +1,3 @@
 01-destdir.patch
 02-remove_LADSPA_PROPERTY_REALTIME.patch
+03-cross.patch
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

libopenmpt_0.2.7386~beta20.3-3_source.changes ACCEPTED into unstable

2017-01-12 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 12 Jan 2017 17:17:13 +
Source: libopenmpt
Binary: openmpt123 libopenmpt0 libopenmpt-dev libopenmpt-doc 
libopenmpt-modplug1 libopenmpt-modplug-dev
Architecture: source
Version: 0.2.7386~beta20.3-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
Description:
 libopenmpt-dev - module music library based on OpenMPT -- development files
 libopenmpt-doc - module music library based on OpenMPT -- documentation
 libopenmpt-modplug-dev - module music library based on OpenMPT -- modplug 
compat developme
 libopenmpt-modplug1 - module music library based on OpenMPT -- modplug compat 
library
 libopenmpt0 - module music library based on OpenMPT -- shared library
 openmpt123 - module music library based on OpenMPT -- music player
Changes:
 libopenmpt (0.2.7386~beta20.3-3) unstable; urgency=medium
 .
   * debian/tests:
 - Depend on build-essential in all autopkgtests. This should fix the
   recent autopkgtest failures.
Checksums-Sha1:
 a523ff3cd735e8f41f532558c1b9312da6fb3987 2650 
libopenmpt_0.2.7386~beta20.3-3.dsc
 ecf2722f07fcf85bf4d99488e2052761e7524d68 10400 
libopenmpt_0.2.7386~beta20.3-3.debian.tar.xz
Checksums-Sha256:
 5ecec379aeeff5efb10ff2f035b6f4597707c7e51163f13cc24f0cfa002785d6 2650 
libopenmpt_0.2.7386~beta20.3-3.dsc
 02bc3b2a4addda328afc57cb861ee7583afe7c56cce43054a1d66e53a4f756fc 10400 
libopenmpt_0.2.7386~beta20.3-3.debian.tar.xz
Files:
 5c9261fcb0db7b1e48e6e06015b999bd 2650 libs optional 
libopenmpt_0.2.7386~beta20.3-3.dsc
 58b2d2f44d68fe0b48a164ff0a608873 10400 libs optional 
libopenmpt_0.2.7386~beta20.3-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCgAGBQJYd7wWAAoJEMfxZ23qLQHv0S4QAJ5sv8BkMMI1xnTrPL94er3z
6OBDxC894X9LixO7UbRFNrcF618o24b7Qlv9gl30rDGH5e8csN/PmP7fC66yqrmC
/5/jlmyJLzlCRy8JaWQiWywn20fQlXNAhQKzwEgJbFE10PRq+CBTCdbD73XaUlt0
c8bK4EE4vsLZGoZvhQrA3oUAYEUy75a5NM/phtv4Y2b1dPknpT8wO4HicL7l9x/z
W7TzMtJLsQixREvMKnr6YzlyfjPzcpeyezEjVwxTCHizoqnd0YRcKsVgcTgX5GkL
gwdmDVIFSQnz8wvS8HUUs7xtFsEGTiFxQGy44xjtnSCCLcEWQtK65l6QUGtC8guI
wcvAfCNRXTIkQHEmgYcJgIqlDoyRSj37ZIxRC7McYcuF7kWTzJaUJMGNibOHSEVc
b+BftAWBa/oX53g1duJLLUudsBUkSrRsDUEzvcdSmy10/CsV8/p41tphZfrbjKqj
u76JlJuFSNarQP7FoKd/3F6Hh9d3Cr5LEXkWtplMURqLrXRIqoTPHUU9M65aMtgU
ewB3Ybf7vB9UIEfBrLy0IH+CEpcwRGWsVbSKXs1Sd8a8gq0lTV/AZMMWRqcTSoBZ
lb7j+u6sC8FRQSEf+Yngle3MAsNL+rR+95XpcCOUoKqsHKeraTrf9OP0PJ4cMEb8
W+BWugQ/7XAYN3J55lus
=qyzc
-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 libopenmpt_0.2.7386~beta20.3-3_source.changes

2017-01-12 Thread Debian FTP Masters
libopenmpt_0.2.7386~beta20.3-3_source.changes uploaded successfully to localhost
along with the files:
  libopenmpt_0.2.7386~beta20.3-3.dsc
  libopenmpt_0.2.7386~beta20.3-3.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.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


[bts-link] source package gnome-mpv

2017-01-12 Thread bts-link-upstream
#
# bts-link upstream status pull for source package gnome-mpv
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user bts-link-upstr...@lists.alioth.debian.org

# remote status report for #850667 (http://bugs.debian.org/850667)
# Bug title: gnome-mpv: no more scroll indicator after updating mpv to 0.23.0-1
#  * https://github.com/gnome-mpv/gnome-mpv/issues/241
#  * remote status changed: (?) -> closed
usertags 850667 + status-closed

thanks

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


Bug#847701: kodi: Movie player unusable with libva error

2017-01-12 Thread Leandro sullo sgorbio
Il giorno mer, 11/01/2017 alle 20.54 +0100, Bálint Réczey ha scritto:

> >> I don't think that your GPU is supported by i965-va-driver. So using the 
> >> VA API
> >> rendering engine won't work for you.
> >
> > Yes, the module is the i915. Also disabling all the acceleration engines
> > the player does not work.
> 
> Please disable both VDPAU and VAAPI and try playing a low resolution video
> file. If it does not work please attach kodi's log and detail how it failed.

I tried again with VDPAU and VAAPI disabled and again, the reproduction
of a "low resolution video" :-) did not work.

These are the relevant (I hope) lines of log:

17:29:33.623 T:139943960140672  NOTICE: VideoPlayer:
Opening: /dati/Film/Serie TV/Star Trek TNG/StarTrek.TNG-s01e03-The Naked
Now (Contaminazione).avi
17:29:33.623 T:139943960140672 WARNING: CDVDMessageQueue(player)::Put
MSGQ_NOT_INITIALIZED
17:29:33.624 T:139940386023168  NOTICE: Creating InputStream
17:29:33.631 T:139940386023168  NOTICE: Creating Demuxer
17:29:33.845 T:139940386023168  NOTICE: Opening stream: 0 source: 256
17:29:33.845 T:139940386023168  NOTICE: Creating video codec with codec
id: 13
17:29:33.845 T:139940386023168  NOTICE: CDVDVideoCodecFFmpeg::Open()
Using codec: MPEG-4 part 2
17:29:33.846 T:139940386023168  NOTICE: Creating video thread
17:29:33.846 T:139940386023168  NOTICE: Opening stream: 1 source: 256
17:29:33.846 T:139940180850432  NOTICE: running thread: video_thread
17:29:33.846 T:139940386023168  NOTICE: Finding audio codec for: 86017
17:29:33.847 T:139940386023168  NOTICE: Creating audio thread
17:29:33.847 T:139940147287808  NOTICE: running thread:17:29:33.623
T:139943960140672  NOTICE: VideoPlayer: Opening: /dati/Film/Serie
TV/Star Trek TNG/StarTrek.TNG-s01e03-The Naked Now (Contaminazione).avi
17:29:33.623 T:139943960140672 WARNING: CDVDMessageQueue(player)::Put
MSGQ_NOT_INITIALIZED
17:29:33.624 T:139940386023168  NOTICE: Creating InputStream
17:29:33.631 T:139940386023168  NOTICE: Creating Demuxer
17:29:33.845 T:139940386023168  NOTICE: Opening stream: 0 source: 256
17:29:33.845 T:139940386023168  NOTICE: Creating video codec with codec
id: 13
17:29:33.845 T:139940386023168  NOTICE: CDVDVideoCodecFFmpeg::Open()
Using codec: MPEG-4 part 2
17:29:33.846 T:139940386023168  NOTICE: Creating video thread
17:29:33.846 T:139940386023168  NOTICE: Opening stream: 1 source: 256
17:29:33.846 T:139940180850432  NOTICE: running thread: video_thread
17:29:33.846 T:139940386023168  NOTICE: Finding audio codec for: 86017
17:29:33.847 T:139940386023168  NOTICE: Creating audio thread
17:29:33.847 T:139940147287808  NOTICE: running thread:
CVideoPlayerAudio::Process()
17:29:33.862 T:139940147287808  NOTICE: Creating audio stream (codec id:
86017, channels: 2, sample rate: 48000, no pass-through)
17:29:33.922 T:139943960140672  NOTICE: GL: Selecting Single Pass YUV 2
RGB shader
17:29:33.942 T:139943960140672  NOTICE: GL: NPOT texture support
detected
17:29:33.942 T:139943960140672  NOTICE: GL: Using
GL_ARB_pixel_buffer_object
17:29:33.942 T:139943960140672  NOTICE: Using GL_TEXTURE_17:29:33.623
T:139943960140672  NOTICE: VideoPlayer: Opening: /dati/Film/Serie
TV/Star Trek TNG/StarTrek.TNG-s01e03-The Naked Now (Contaminazione).avi
17:29:33.623 T:139943960140672 WARNING: CDVDMessageQueue(player)::Put
MSGQ_NOT_INITIALIZED
17:29:33.624 T:139940386023168  NOTICE: Creating InputStream
17:29:33.631 T:139940386023168  NOTICE: Creating Demuxer
17:29:33.845 T:139940386023168  NOTICE: Opening stream: 0 source: 256
17:29:33.845 T:139940386023168  NOTICE: Creating video codec with codec
id: 13
17:29:33.845 T:139940386023168  NOTICE: CDVDVideoCodecFFmpeg::Open()
Using codec: MPEG-4 part 2
17:29:33.846 T:139940386023168  NOTICE: Creating video thread
17:29:33.846 T:139940386023168  NOTICE: Opening stream: 1 source: 256
17:29:33.846 T:139940180850432  NOTICE: running thread: video_thread
17:29:33.846 T:139940386023168  NOTICE: Finding audio codec for: 86017
17:29:33.847 T:139940386023168  NOTICE: Creating audio thread
17:29:33.847 T:139940147287808  NOTICE: running thread:
CVideoPlayerAudio::Process()
17:29:33.862 T:139940147287808  NOTICE: Creating audio st17:29:33.623
T:139943960140672  NOTICE: VideoPlayer: Opening: /dati/Film/Serie
TV/Star Trek TNG/StarTrek.TNG-s01e03-The Naked Now (Contaminazione).avi
17:29:33.623 T:139943960140672 WARNING: CDVDMessageQueue(player)::Put
MSGQ_NOT_INITIALIZED
17:29:33.624 T:139940386023168  NOTICE: Creating InputStream
17:29:33.631 T:139940386023168  NOTICE: Creating Demuxer
17:29:33.845 T:139940386023168  NOTICE: Opening stream: 0 source: 256
17:29:33.845 T:139940386023168  NOTICE: Creating video codec with codec
id: 13
17:29:33.845 T:139940386023168  NOTICE: CDVDVideoCodecFFmpeg::Open()
Using codec: MPEG-4 part 2
17:29:33.846 T:139940386023168  NOTICE: Creating video thread
17:29:33.846 T:139940386023168  NOTICE: Opening stream: 1 source: 256
17:29:33.846 T:139940180850432  NOTICE: running thread: video_thread
17:29:33.846 T:139940386023168  

re

2017-01-12 Thread Brenda Pfahlert
I have a proposal for you kindly email me at mrsyua7...@gmail.com

Yours Faithfully

Mrs Yuan

































































































































































































































___
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

2017-01-12 Thread Brenda Pfahlert
I have a proposal for you kindly email me at mrshung7...@gmail.com

Yours Faithfully

Mrs Yuan















































































































___
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#851028: marked as done (composite: FTBFS: lrdf.h:8:20: fatal error: raptor.h: No such file or directory)

2017-01-12 Thread Debian Bug Tracking System
Your message dated Thu, 12 Jan 2017 15:03:43 +
with message-id 
and subject line Bug#851028: fixed in composite 0.006.2+dfsg0-7
has caused the Debian Bug report #851028,
regarding composite: FTBFS: lrdf.h:8:20: fatal error: raptor.h: No such file or 
directory
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.)


-- 
851028: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=851028
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: composite
Version: 0.006.2+dfsg0-6
Severity: serious
Tags: stretch sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20170111 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):
> cd /<>/composite-0.006.2+dfsg0/obj-x86_64-linux-gnu/src/Tritium && 
> /usr/bin/c++   -DFLAC_SUPPORT -DJACK_SUPPORT -DLADSPA_SUPPORT -DLRDF_SUPPORT 
> -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_XML_LIB -DTritium_EXPORTS 
> -I/<>/composite-0.006.2+dfsg0/obj-x86_64-linux-gnu -isystem 
> /usr/include/qt4 -isystem /usr/include/qt4/QtGui -isystem 
> /usr/include/qt4/QtXml -isystem /usr/include/qt4/QtCore 
> -I/<>/composite-0.006.2+dfsg0 
> -I/<>/composite-0.006.2+dfsg0/src/Tritium/.  -g -O2 
> -fdebug-prefix-map=/<>/composite-0.006.2+dfsg0=. 
> -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
> -D_FORTIFY_SOURCE=2 -O2 -g -DNDEBUG -fPIC   -o 
> CMakeFiles/Tritium.dir/src/transport/SimpleTransportMaster.o -c 
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/transport/SimpleTransportMaster.cpp
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/transport/JackTransportMaster.cpp:31:2:
>  warning: #warning "JackTransportMaster is **NOT** implemented yet." [-Wcpp]
>  #warning "JackTransportMaster is **NOT** implemented yet."
>   ^~~
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/transport/JackTransportMaster.cpp:32:2:
>  warning: #warning "We have not handled the client pointer or set up any 
> callbacks yet." [-Wcpp]
>  #warning "We have not handled the client pointer or set up any callbacks 
> yet."
>   ^~~
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/transport/JackTransportMaster.cpp:63:6:
>  warning: #warning "Did we fill out enough stuff?" [-Wcpp]
>  #warning "Did we fill out enough stuff?"
>   ^~~
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/transport/JackTransportMaster.cpp:93:6:
>  warning: #warning "Did not check for a jpos.valid & JackPositionBBT" [-Wcpp]
>  #warning "Did not check for a jpos.valid & JackPositionBBT"
>   ^~~
> In file included from 
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/transport/JackTimeMaster.cpp:27:0:
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/transport/../IO/JackClient.hpp:61:6:
>  warning: #warning "TODO: These should be private:" [-Wcpp]
>  #warning "TODO: These should be private:"
>   ^~~
> In file included from 
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/IO/JackMidiDriver.cpp:26:0:
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/IO/JackClient.hpp:61:6: 
> warning: #warning "TODO: These should be private:" [-Wcpp]
>  #warning "TODO: These should be private:"
>   ^~~
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/SongSequencer.cpp:53:2: 
> warning: #warning "audioEngine_song_sequence_process() does not have any 
> lookahead implemented." [-Wcpp]
>  #warning "audioEngine_song_sequence_process() does not have any lookahead 
> implemented."
>   ^~~
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/SongSequencer.cpp:54:2: 
> warning: #warning "audioEngine_song_sequence_process() does not have pattern 
> mode." [-Wcpp]
>  #warning "audioEngine_song_sequence_process() does not have pattern mode."
>   ^~~
> In file included from 
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/IO/JackClient.cpp:25:0:
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/IO/JackClient.hpp:61:6: 
> warning: #warning "TODO: These should be private:" [-Wcpp]
>  #warning "TODO: These should be private:"
>   ^~~
> In file included from 
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/IO/JackOutput.cpp:22:0:
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/IO/JackClient.hpp:61:6: 
> warning: #warning "TODO: These should be private:" [-Wcpp]
>  #warning "TODO: These should be private:"
>   ^~~
> /<>/composite-0.006.2+dfsg0/src/Tritium/src/MixerImpl.cpp:141:6: 
> warning: #warning "This is the prosaic approach.  Need an optimized one." 
> [-Wcpp]
>  #warning "This is the prosaic approach.  Need an optimized one."
>   ^~~
> 

composite_0.006.2+dfsg0-7_amd64.changes ACCEPTED into unstable

2017-01-12 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Jan 2017 14:58:12 +0100
Source: composite
Binary: composite composite-data
Architecture: source
Version: 0.006.2+dfsg0-7
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: IOhannes m zmölnig (Debian/GNU) 
Description:
 composite  - Live performance sequencer
 composite-data - Live performance sequencer (data files)
Closes: 851028
Changes:
 composite (0.006.2+dfsg0-7) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Jaromír Mikeš ]
   * Patch forwarded.
 .
   [ IOhannes m zmölnig (Debian/GNU) ]
   * More spelling fixes.
   * Use pkg-config for proper compiler-flags (Closes: #851028)
Checksums-Sha1:
 1f5a7d0f49082b097f7836b3696a4e1e51248306 2281 composite_0.006.2+dfsg0-7.dsc
 e282af0a41cb0c29ff03c717276456e05b8a7fca 8860 
composite_0.006.2+dfsg0-7.debian.tar.xz
Checksums-Sha256:
 b4115a33def42c8c31c0af8e4a8d5e36c844496f532c6b61b9e454f9164f0c7d 2281 
composite_0.006.2+dfsg0-7.dsc
 3279950f16dbabdfec750f3802341f85d7a7ad580569a7204464b1cfcee63754 8860 
composite_0.006.2+dfsg0-7.debian.tar.xz
Files:
 f1f22d32e4ca45348d9092c0cf32ac5f 2281 sound optional 
composite_0.006.2+dfsg0-7.dsc
 24eaebd075e14cfbad89b3799ea895c1 8860 sound optional 
composite_0.006.2+dfsg0-7.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEdAXnRVdICXNIABVttlAZxH96NvgFAlh3jcYACgkQtlAZxH96
NvgT+Q/8D2XDgNM+XT4Guc2JHXzFS+0zwiHkn0wSG/owOK4ubk55OiyDc9rdGcFc
ed4agrLogcS22yGeN/ESCI8W/pDuP9yhOYvaX5AamJ8nJrYLlh+Po/f7g3IP5mkK
NPfuM/Pw/vt62kLKIUwharLD69pcwPzLePWDFf1QvQgPRUJps+C1krw6dVWgPkqR
ls4NyjBAHeK3bRPT1DO5kny3Dquyj6h79czfjkL/HVcVJPgSakXqWUiXO2BrWZ08
5ab6ke5g7WvDj96SMRnuAaPLm36urJhXuc1kdJRflo0qxrIcOghamDAXgZxwk5Ri
O6brdyh5NooAQLCIZ1Pq+LgUDaqg234pdOp2xLQn0Ic93BtDGoc4rNIDIibAedEk
cnLXsnn7w2SD9M3pBxrGVN1PHeH6Y7ATRRy02j9wVl4Q0SlzIdTew6wK/sJF8Nn+
RxUj5zCaZOUJx6OBwI4TcIdR9XT40vBQ8Bp+0C3pPaC5Yjac5LT9KuYHSYEL3Lrf
CPxYgXvIPhKbtiSn4ufKCoNFGevboPM2wMN0E1ScNM2nF4B+8GEN8+wck7+gyf9k
1uPqCZYjUw84gE141y64f+aBXQGinvVfooUNKgR3Yb+N8dJlkMqzmPVsGAwf6i2G
hzWoxXXqTGcWOwvzXNYMLE9xobopKkLtML3OtUTGe417Kv1YRU8=
=V4hN
-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

Processed: Bug#851028 marked as pending

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

> tag 851028 pending
Bug #851028 [src:composite] composite: FTBFS: lrdf.h:8:20: fatal error: 
raptor.h: No such file or directory
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
851028: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=851028
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: That unblock request got somehow lost

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

> unblock 827061 by 851084
Bug #827061 [release.debian.org] transition: openssl
827061 was blocked by: 828530 828272 828600 835797 828454 844271 828392 843871 
828546 828531 828362 828502 828504 828366 828271 844366 828422 835796 828368 
844916 828430 828590 828448 828541 828607 828279 835790 841635 828601 828521 
828420 828280 844948 828564 850882 828556 828467 844534 822380 828242 844503 
828407 828373 828505 844301 828389 828428 828598 828237 828230 828540 828597 
828440 828390 844870 844906 828231 828473 843988 844345 828577 828232 828291 
828490 828612 845030 835585 851080 828295 828234 828240 828289 828514 827068 
828374 828449 828345 828587 828450 828283 828388 828506 851091 828578 828233 
828323 828309 828352 845016 828393 828494 828508 828567 828582 846769 828613 
828455 828542 828599 828337 828466 828604 828357 828439 828566 828496 828262 
828379 828256 844909 851082 828252 828378 828491 844347 828356 828432 828583 
828614 844664 828277 828270 828260 828447 828465 828288 851089 828568 828492 
851092 851086 828534 844838 828437 828593 828248 828243 828320 828258 83
 6419 828228 828304 828391 828452 844706 828486 828354 851081 851090 828482 
828278 828468 844877 828511 828453 828501 828518 828433 828307 828405 814600 
828284 828303 828235 828239 850883 828398 828551 828238 828381 828586 828620 
828589 828250 828395 828333 844254 828340 828549 844936 828435 828384 828562 
835785 828292 828348 828579 828516 843532 828507 828350 835798 828585 845729 
835800 844800 844928 828286 828415 828478 828302 828571 828349 828525 828532 
828264 828254 828313 828427 828519 828517 828617 828325 828300 844663 844845 
828572 828351 828399 828558 850881 828411 851087 828555 828484 828244 828574 
828344 828470 828584 828246 828383 828489 828570 828581 828347 828251 828410 
828515 828358 828608 828550 844311 828594 844975 828529 828533 828588 828479 
828611 828580 835804 828361 828619 828336 828426 828527 828615 828610 828360 
835789 828602 828380 828363 828512 828463 835811 828397 828139 828335 845106 
828423 828526 828359 828474 829452 844907 828536 828500 828554 828460 82826
 5 828553 828229 828290 828376 828499 828365 828419 844815 837960 828444 828421 
828443 828528 828377 828287 828609 828319 844947 828338 835786 828385 844836 
828306 844926 828298 844904 828539 828127 828559 828249 828274 828285 835793 
828596 828382 828294 828314 828326 828592 828412 828268 835549 828462 828259 
828396 828503 828341 828618 828404 844951 828417 844931 828576 828261 828545 
828487 828403 828547 828318 828355 828414 828297 828255 828575 828563 828524 
844949 828458 844945 828330 828346 828387 828476 828573 828488 828459 808669 
828310 851084 828445 828523 828424 828538 828429 828324 828509 828301 828241 
828543 828342 851083 828464 828409 828400 828083 828591 828595 835794 828315 
828535 828461 828548 828316 828386 828493 828317 844213 828537 828456 828402 
828457 828416 828276 846113 828371 828282 828418 850880 828565 828446 828305 
843682 828616 828401 828552 828603 828331 828434 848681 828367 828497 828321 
843852 828451 828269 828369 844018 828253 828322 828561 828343 828364 8
 28436 828495 835799 828293 828605 828267 828339 828485 844833 828372 828431 
828606 828257 828334 828442 844234 828438 828394 828469 828082 828544 828311 
851085 828406 828370 809271 828281 828308 828569 828375 828472 851088 828328 
844920 828263 828275 828510 828296 828480 829465
827061 was not blocking any bugs.
Removed blocking bug(s) of 827061: 851084
> unblock 827061 by 828451
Bug #827061 [release.debian.org] transition: openssl
827061 was blocked by: 828530 828510 828618 828372 828345 828467 828430 844836 
828240 828478 828404 828544 828518 828238 828529 843532 828542 835585 828579 
828559 828523 828479 828290 828456 828528 828589 828286 828602 828553 835804 
828444 828407 828442 828561 828399 828447 828608 846113 844904 828342 828348 
814600 828402 828593 844945 828543 828083 828532 828405 851089 828263 828331 
828139 835811 828503 828574 844948 828387 828443 844213 851083 828248 828393 
828534 828357 828562 828607 844347 844503 828262 828416 828265 828598 828324 
828314 835549 828495 828418 828254 828307 828278 828317 828434 828476 828577 
844928 828563 828591 828251 828573 828369 828494 828410 828318 828600 828536 
828499 828276 828313 828362 828396 828287 828414 828611 844870 828506 828373 
844907 828419 828605 828367 844663 828487 828354 828319 828512 844345 828302 
828306 828298 828308 828320 828289 828267 828473 828261 844906 828274 851082 
828458 828385 828438 828539 828255 828462 828604 828422 828469 828609 82
 8382 828082 828455 828433 828288 828526 828259 828566 851092 828377 850880 
828582 828310 828507 828468 844366 844271 828301 843682 828555 828291 828398 
828237 828256 828337 828581 828341 835794 844664 828233 850882 828588 828565 
841635 843852 828371 828264 828590 828610 828599 828527 828548 828508 828491 
828395 828349 848681 828344 828361 828420 828351 829465 835798 828445 

Harvard College China Forum 2017 Selects Yoopay.cn as Event Registration and Management Platform

2017-01-12 Thread 友付 yoopay . cn


 






Click here for the web version of this message

 


  
   
   

  

  
  
   
  


  


  Harvard College China Forum 2017 Selects Yoopay.cn  
as Event Registration and Management Platform



  


  

  
  

  
About 
  Harvard College China Forum 2017
  

  


  
Founded in 1998, Harvard China Forum is the leading student organized North American conference dedicated to a constructive dialogue on the challenges, trends, and issues affecting China. We aim to engage leaders in business, academia, and politics in a discourse that will offer insight and generate new ideas. Conference members will hear from some of the world's brightest minds about many of the most important issues facing China. Topics are designed to both challenge existing perceptions and encourage an intellectual discussion about the future.For 19 years, the Forum has provided an unrivaled platform for world leaders to debate and address issues that will impact the future of China. Our past speakers include: 

  

  
  

  

  
  
  
  
  

  Jack Ma Founder and Executive ChairmanAlibaba Group 
  Richard Liu Found and CEOJD.com 
  Kevin Michael RuddFormer Prime MinisterAustralia 
  Xu Xiaoping Founder ZhenFund 
  

  
  
  
  
  

  Yu Minhong Co-Founder and ChairmanNew Oriental Education and Technology Group 
  Pan Shiyi Co-Founder and Chairman SOHO China 
  Feng Xiaogang Renowned Director 
  Liu Wen Supermodel 
  

   
   
   
   
  


  
Harvard College China Forum 2017 will be held at Harvard University from April 21–23, 2017. 

  


  
Yoopay.cn proudly provides the forum registration and payment management 

WELCOME TO UNITED BANK FOR AFRICA.

2017-01-12 Thread Office Office
WELCOME TO UNITED BANK FOR AFRICA.
UBA GROUP BY ACQUIRING SHARES OF 
BENIN GOVERNMENT, UNITED BANK FOR AFRICA BENIN AGBOKOU STREET, COTONOU 
PLOT- 47 AVE- APPOSITE INT,STADIUM COTONOU REPUBLIC OF BENIN. TEL-PHONE 
NUMBER +229 68484065

Attention: Beneficiary

Approval Slip Confirmation / Payment Information

 Good
 day to you, Sir/Ma, the Main truth about your Fund in Africa is that 
your email address won you the sum of $3.55M from LOTTERY COMPANY BRANCH
 IN AFRICA BENIN REPUBLIC., by a set-up program called ANNUAL WINNING 
ONLINE BALLOTING SYSTEM, This program called Annual Winning Online 
Balloting System is a program set-up by the World Organization, and 
Financially supported by the World
 Organization including your Government as means to congratulate the 
Blessed Lucky winners of the year, so
 luckily to you, your email address was among the earlier emails that 
won this $3.55M each to all the emails owners and that is how you become
 a winner to this Winning Fund of $3.55M. And United Bank for Africa was
 approved by the Federal Government of Benin and the Lottery Company to 
effectively remit your own fund to you through ATM CARD which has been 
programmed to function in any ATM MACHINE in the world.

 We the 
union got your data on how to send your ATM CARD to your home address 
give to us , your total fund is 3.55m (Three MILLION Five Hundred and 
Fifty Thousand US Dollars) only which was approved by the Ministry of 
Finance Benin Republic, your ATM card Number 4539 7978 0214 3227, then 
the pin code and instruction on how to use the card have been parceled 
so when you get your parcel you will open it and then all other 
information is there to assist you to start making use of the card in 
any ATM MACHINE AROUND you. The reasons why we do
 send them on mail is for security purpose right, all but the ownership 
and Approval papers are there on the parcel with your ATM.

You 
are advised that a maximum withdrawal value of $10,000.00 USD is 
permitted on withdrawal per day with a minimum of $1000 per withdrawal 
and we are duly inter switched, meaning you can make withdrawal in any 
location and ATM Center of your choice. We have concluded the delivery 
arrangement with COURIER SERVICES, to be fully insured by Nice Insurance
 Corporation. In view of this development, you are requested to 
immediately offset the Couriers in which we are to dispatch your parcel 
of ATM to your doorstep, we the bank we do operates in various couriers 
which are below.

DHL DELIVERING COMPANY
COST OF DELIVERING...$65 DOLLARS
VAT%.$23 DOLLARS
TOTAL FEE...$88.00 DOLLARS

UPS DELIVERING COMPANY
COST OF DELIVERING...$71
 DOLLARS
VAT%.$23 DOLLARS
TOTAL FEE...$94.00 DOLLARS

EMS DELIVERING COMPANY
COST OF DELIVERING...$55 DOLLARS
VAT%.$35 DOLLARS
TOTAL FEE...$80.00 DOLLARS

FEDEX DELIVERING COMPANY
COST OF DELIVERING...$101 DOLLARS
VAT%.$22 DOLLARS
TOTAL FEE...$123.00 DOLLARS


Nevertheless
 i do not know your pocket but all i will tell you is that these 
companies we do know them very well and they will deliver your ATM CARD 
to your nominated home address without any problem so i urge you now to 
kindly go to WESTERN UNION and send the required fee that you can be 
able to afford OK so that we can proceed...

WESTERN UNION MONEY 
TRANSFER THIS OFFICE ONLY USE WESTERN UNION SO THE DETAILS ARE ON HOW 
YOU WILL SEND THE FEE VIA WESTERN UNION ONLY

RECEIVER NAME: IDRIS  ABUBAKAR
COUNTRY: BENIN
 REPUBLIC.
CITY: COTONOU.
TEST QUESTION: COLOR?
ANSWER: BLUE
AMOUNT: USD
MTC:

Send
 the Transfer Number to this office for further instruction. Be informed
 that delivery will be made to your address in 48 hours after our 
confirmation of this payment for delivery, as you know that the delivery
 fee receipt will be attach on your payment delivery documents to avoid 
being delay by the customs. Please advise this office your preferred 
time of visitation for delivery and be informed that your valid ID card 
must be presented to the dispatchers before release will be done.

Hon. David  Julius
Contact: +229-68484065
Managing Director Swift
Card Consultants Payment Center.
___
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#850855: [rtkit] rtkit daemon fails to start

2017-01-12 Thread Bogdan Vatra
Hi,

 I have an update, some time ago (~1year) I run out of space on my system 
partition and I decide to move /var folder to another partition and symlink it 
back to / partition. Today I just moved back my var folder and rtkit daemon 
started to work ... :)

Cheers,
BogDan.

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