Re: Supercollider fails to build

2012-07-03 Thread Dan S
2012/7/3 Felipe Sateler fsate...@debian.org:
 On Mon, Jul 2, 2012 at 12:46 PM, Felipe Sateler fsate...@gmail.com wrote:
 Supercollider is failing to build everywhere except i386 and amd64.
 Boost.Lockfree seems to be the culprit everywhere.
 I think the problem is that BOOST_LOCKFREE_DCAS_ALIGNMENT is only
 defined in a few specific cases (for x86 and x64).

 Dan, could you check with upstream what could be causing this?

 I can confirm that after defining the above macro the offending file
 does compile (although wether it works is another thing I haven't
 tested). I cannot confirm that the build continues, though, since the
 porterbox I'm logged to doesn't have all the required build depends.

I've pushed a patch recommended by Tim, who developed boost_lockfree.
The patch simply updates that file to the latest version in boost's
SVN, which as you'll see has the effect of simply defining that macro.
I don't have access to machines for testing this, so I'd be grateful
if anyone could test.

Thanks
Dan

___
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#664523: Bugfix patch

2012-07-03 Thread salsaman
http://lives.svn.sourceforge.net/viewvc/lives/trunk/src/startup.c?r1=1446r2=1509



Regards,
Salsaman.

http://lives.sourceforge.net
https://www.ohloh.net/accounts/salsaman



___
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: updating OpenNI Debian packages

2012-07-03 Thread Jochen Sprickerhof
* Hans-Christoph Steiner h...@eds.org [2012-07-02 10:43]:
 
 On Jul 2, 2012, at 8:37 AM, Jochen Sprickerhof wrote:
  Great, I've been mailing with Stephen already to get this one into
  Debian finally. According to [1] there are still some things to sort
  out:
  - Did anyone mail upstream regarding the soname already?
 
 I did email with them on the openni-dev list and they said they'd look into 
 it, but I haven't checked back.  Here's my emails:
 
 https://groups.google.com/forum/#!msg/openni-dev/GPwUZEueIPA/SoUCATOmVbQJ
 
 http://openni-discussions.979934.n3.nabble.com/OpenNI-dev-packages-for-Mac-OS-X-Fink-and-Debian-Ubuntu-Mint-td3673546.html

Great, I've created simple patches (attached) to add the soname. As you
are in contact with upstream already, can you ask to include them or at
least get confirmation that they will be included in the next release,
so we can push them for Debian already, maybe?

  - I really like your way for fink to package both sensor drivers with
   proper names. At the moment we have avin2 imported as
   primesense-kinect-sensor should we change that?
 
 Sounds good to me.

Great, thanks for doing it :).

  Could you import the new upstream versions into the Debian git, so
  Stephen and me only have to provide small patches?
  
  Cheers Jochen
 
 Yes, will do.

Thanks as well :).

 .hc

Cheers Jochen
From 171230d914fe8d5248655af032689ccba0ffdfaf Mon Sep 17 00:00:00 2001
From: Jochen Sprickerhof joc...@sprickerhof.de
Date: Tue, 3 Jul 2012 12:28:21 +0200
Subject: [PATCH] Add SONAME to libs

---
 Platform/Linux/Build/Common/CommonCppMakefile |2 +-
 Platform/Linux/CreateRedist/Redist_OpenNi.py  |1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Platform/Linux/Build/Common/CommonCppMakefile b/Platform/Linux/Build/Common/CommonCppMakefile
index c2c4afc..036239a 100644
--- a/Platform/Linux/Build/Common/CommonCppMakefile
+++ b/Platform/Linux/Build/Common/CommonCppMakefile
@@ -78,7 +78,7 @@ ifneq $(LIB_NAME) 
 	ifneq ($(OSTYPE),Darwin)
 		LDFLAGS += -Wl,--no-undefined
 		OUTPUT_NAME = lib$(LIB_NAME).so
-		OUTPUT_COMMAND = $(CXX) -o $(OUTPUT_FILE) $(OBJ_FILES) $(LDFLAGS) -shared
+		OUTPUT_COMMAND = $(CXX) -o $(OUTPUT_FILE) $(OBJ_FILES) $(LDFLAGS) -Wl,-soname,${OUTPUT_NAME}.${VERSION} -shared
 	else
 		LDFLAGS += -undefined error
 		OUTPUT_NAME = lib$(LIB_NAME).dylib
diff --git a/Platform/Linux/CreateRedist/Redist_OpenNi.py b/Platform/Linux/CreateRedist/Redist_OpenNi.py
index 594311b..1b7fcb7 100644
--- a/Platform/Linux/CreateRedist/Redist_OpenNi.py
+++ b/Platform/Linux/CreateRedist/Redist_OpenNi.py
@@ -232,6 +232,7 @@ maintenance = re.search(rdefine XN_MAINTENANCE_VERSION (\d+), version_file).gr
 build = re.search(rdefine XN_BUILD_VERSION (\d+), version_file).groups()[0]
 
 version = major + . + minor + . + maintenance + . + build
+MAKE_ARGS += ' VERSION=' + major + '.' + minor
 print Version:, version
 
 print Num of compile jobs:, calc_jobs_number()
-- 
1.7.10

From 5265bdce2b7ff78945d21555362746f5f68ea837 Mon Sep 17 00:00:00 2001
From: Jochen Sprickerhof joc...@sprickerhof.de
Date: Tue, 3 Jul 2012 14:35:53 +0200
Subject: [PATCH] Add SONAME to libs

---
 Platform/Linux/Build/Common/CommonCppMakefile |2 +-
 Platform/Linux/CreateRedist/RedistMaker   |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Platform/Linux/Build/Common/CommonCppMakefile b/Platform/Linux/Build/Common/CommonCppMakefile
index 5a15c82..e21b0b7 100644
--- a/Platform/Linux/Build/Common/CommonCppMakefile
+++ b/Platform/Linux/Build/Common/CommonCppMakefile
@@ -78,7 +78,7 @@ ifneq $(LIB_NAME) 
 	ifneq ($(OSTYPE),Darwin)
 		LDFLAGS += -Wl,--no-undefined
 		OUTPUT_NAME = lib$(LIB_NAME).so
-		OUTPUT_COMMAND = $(CXX) -o $(OUTPUT_FILE) $(OBJ_FILES) $(LDFLAGS) -shared
+		OUTPUT_COMMAND = $(CXX) -o $(OUTPUT_FILE) $(OBJ_FILES) $(LDFLAGS) -Wl,-soname,${OUTPUT_NAME}.${VERSION} -shared
 	else
 		LDFLAGS += -undefined error
 		OUTPUT_NAME = lib$(LIB_NAME).dylib
diff --git a/Platform/Linux/CreateRedist/RedistMaker b/Platform/Linux/CreateRedist/RedistMaker
index f812133..4ba785f 100755
--- a/Platform/Linux/CreateRedist/RedistMaker
+++ b/Platform/Linux/CreateRedist/RedistMaker
@@ -67,7 +67,7 @@ rm -rf ../$REDIST_DIR
 # Build Engine
 echo Building...
 make -C ../Build clean  /dev/null
-make -j$(calc_jobs_number) -C ../Build
+make -j$(calc_jobs_number) -C ../Build VERSION=$MAJOR.$MINOR
 
 # create redist folder structure
 echo Creating redist folder...
-- 
1.7.10

___
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: Supercollider fails to build

2012-07-03 Thread Felipe Sateler
On Tue, Jul 3, 2012 at 3:34 AM, Dan S danstowell+de...@gmail.com wrote:
 2012/7/3 Felipe Sateler fsate...@debian.org:
 On Mon, Jul 2, 2012 at 12:46 PM, Felipe Sateler fsate...@gmail.com wrote:
 Supercollider is failing to build everywhere except i386 and amd64.
 Boost.Lockfree seems to be the culprit everywhere.
 I think the problem is that BOOST_LOCKFREE_DCAS_ALIGNMENT is only
 defined in a few specific cases (for x86 and x64).

 Dan, could you check with upstream what could be causing this?

 I can confirm that after defining the above macro the offending file
 does compile (although wether it works is another thing I haven't
 tested). I cannot confirm that the build continues, though, since the
 porterbox I'm logged to doesn't have all the required build depends.

 I've pushed a patch recommended by Tim, who developed boost_lockfree.
 The patch simply updates that file to the latest version in boost's
 SVN, which as you'll see has the effect of simply defining that macro.
 I don't have access to machines for testing this, so I'd be grateful
 if anyone could test.

The patch looks very similar to what I did to build, so at least the
build failure should be corrected.
I will test, but probably during the weekend. If someone else can test
first, it would be appreciated.

-- 

Saludos,
Felipe Sateler

___
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#680101: mpg123: writing wav to stdout still works ugly

2012-07-03 Thread dimas
Package: mpg123
Version: 1.14.2+svn20120622-1
Severity: normal

hello.
after recent upgrade on Debian testing i've found that dir2ogg (that uses 
mpg123 directly) fails to do the job. pleasee see #679813 for details.
after digging around i've also read this in mpg123's changelog:
 mpg123 (1.14.2-1) unstable; urgency=low
 
   * New upstream release.
 - Fix writing of WAV to stdout.
 
  -- Miguel A. Colón Vélez debian.mic...@gmail.com  Sat, 12 May 2012 
 13:30:02 -0400
looks promising, but. dir2ogg calls mpg123 with -q -w /dev/stdout 
/path/to/file.mp3. i've tried the same and it failed. but when i replaced 
/dev/stdout with dash (-w - filename.mp3) - it works fine!
thus we see that output to stdout now works incorrect, and we need to fix 
understanding of /dev/stdout as output file, not only -. hope that's easy))



___
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#680101: mpg123: writing wav to stdout still works ugly

2012-07-03 Thread Reinhard Tartler
On Tue, Jul 3, 2012 at 5:16 PM, dimas dimas...@ya.ru wrote:
 Package: mpg123
 Version: 1.14.2+svn20120622-1
 Severity: normal

 hello.
 after recent upgrade on Debian testing i've found that dir2ogg (that uses 
 mpg123 directly) fails to do the job. pleasee see #679813 for details.
 after digging around i've also read this in mpg123's changelog:
 mpg123 (1.14.2-1) unstable; urgency=low

   * New upstream release.
 - Fix writing of WAV to stdout.

  -- Miguel A. Colón Vélez debian.mic...@gmail.com  Sat, 12 May 2012 
 13:30:02 -0400
 looks promising, but. dir2ogg calls mpg123 with -q -w /dev/stdout 
 /path/to/file.mp3. i've tried the same and it failed. but when i replaced 
 /dev/stdout with dash (-w - filename.mp3) - it works fine!
 thus we see that output to stdout now works incorrect, and we need to fix 
 understanding of /dev/stdout as output file, not only -. hope that's 
 easy))

Why not fix dir2ogg to call mpg123 correctly?
-- 
regards,
Reinhard



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


mpg123 1.14.2+svn20120622-1 MIGRATED to testing

2012-07-03 Thread Debian testing watch
FYI: The status of the mpg123 source package
in Debian's testing distribution has changed.

  Previous version: 1.14.2-1
  Current version:  1.14.2+svn20120622-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 http://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


yafaray 0.1.2+really0.1.2~beta5-2 MIGRATED to testing

2012-07-03 Thread Debian testing watch
FYI: The status of the yafaray source package
in Debian's testing distribution has changed.

  Previous version: 0.1.2+really0.1.2~beta5-1
  Current version:  0.1.2+really0.1.2~beta5-2

-- 
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 http://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


yafaray-exporter 0.1.2+really0.1.2~beta5-1 MIGRATED to testing

2012-07-03 Thread Debian testing watch
FYI: The status of the yafaray-exporter source package
in Debian's testing distribution has changed.

  Previous version: 0.1.2-1
  Current version:  0.1.2+really0.1.2~beta5-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 http://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


Bug#680101: mpg123: writing wav to stdout still works ugly

2012-07-03 Thread dimas
0. because, imho, good program should correctly handle as much aliases as 
possible, not limiting to - only, but also /dev/stdout, /dev/fd/1 or 
whatever it can be.
1. it was working for a long time until got broken in some of recent versions
2. not only dir2ogg may rely on that behaviour.

of course it's up to dir2ogg devs to fix this call as well. but here we have 
good old feature broken, and that causes some pain - isn't it a bug?))


2012-185 18:05 Reinhard Tartler siret...@gmail.com wrote:
 Why not fix dir2ogg to call mpg123 correctly?



___
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#680101: mpg123: writing wav to stdout still works ugly

2012-07-03 Thread Thomas Orgis
What exactly fails? With 1.14.3 (also 1.14.2, actually) I do this:

$ mpg123 -w - bla.mp3  bla.wav
$ mpg123 -w /dev/stdout bla.mp3  bla2.wav
$ md5sum bla*.wav
ebcdd5f3136e11265c99c578815c4b9b  bla2.wav
ebcdd5f3136e11265c99c578815c4b9b  bla.wav

Same for trunk ... at least for a single file, I don't see any problem. What 
did you test?


Alrighty then,

Thomas


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

Processed: severity of 677958 is important, severity of 677959 is important

2012-07-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 677958 important
Bug #677958 [mediatomb] mediatomb: fails to build against current version of 
libmp4v2
Severity set to 'important' from 'serious'
 # does not FTBFS in clean sid chroot
 severity 677959 important
Bug #677959 [mediatomb] mediatomb: fails to build against current version of 
libavformat
Severity set to 'important' from 'serious'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
677958: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677958
677959: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677959
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


Winner Pin No:4288/33

2012-07-03 Thread Edwin Ueckert
Winner Pin No:4288/33
You won $552,000USD.Send Name,Telephone No,Country.to Frank Stafford at 
(claimsdesk-msn-stafford...@hotmail.co.ukmailto:claimsdesk-msn-stafford...@hotmail.co.uk)
___
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 python-pyo_0.6.2-1_amd64.changes

2012-07-03 Thread Debian FTP Masters
python-pyo_0.6.2-1_amd64.changes uploaded successfully to localhost
along with the files:
  python-pyo_0.6.2-1.dsc
  python-pyo_0.6.2.orig.tar.bz2
  python-pyo_0.6.2-1.debian.tar.gz
  python-pyo_0.6.2-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


python-pyo_0.6.2-1_amd64.changes ACCEPTED into unstable

2012-07-03 Thread Debian FTP Masters



Accepted:
python-pyo_0.6.2-1.debian.tar.gz
  to main/p/python-pyo/python-pyo_0.6.2-1.debian.tar.gz
python-pyo_0.6.2-1.dsc
  to main/p/python-pyo/python-pyo_0.6.2-1.dsc
python-pyo_0.6.2-1_amd64.deb
  to main/p/python-pyo/python-pyo_0.6.2-1_amd64.deb
python-pyo_0.6.2.orig.tar.bz2
  to main/p/python-pyo/python-pyo_0.6.2.orig.tar.bz2


Changes:
python-pyo (0.6.2-1) unstable; urgency=low
 .
  * New upstream release.


Override entries for your package:
python-pyo_0.6.2-1.dsc - source python
python-pyo_0.6.2-1_amd64.deb - optional python

Announcing to debian-devel-chan...@lists.debian.org


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