Bug#637758: Distributing static libraries

2011-08-15 Thread Fabian Greffrath

Am 15.08.2011 03:48, schrieb Andres Mejia:

We could make these users build the libraries themselves, but then
they would also need to build all the build dependencies as well for
the library they need. This can be quite a burden on various


He? Why would I have to recompile a library's build-dependencies in 
order to create a static library from it?




___
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: Bug#637758: Distributing static libraries

2011-08-15 Thread Reinhard Tartler
On Mon, Aug 15, 2011 at 08:55:47 (CEST), Fabian Greffrath wrote:

 Am 15.08.2011 03:48, schrieb Andres Mejia:
 We could make these users build the libraries themselves, but then
 they would also need to build all the build dependencies as well for
 the library they need. This can be quite a burden on various

 He? Why would I have to recompile a library's build-dependencies in
 order to create a static library from it?

Because in order to link an application statically, each and every
dependent (static) library needs to be available as well.

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4

___
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: Bug#637758: Distributing static libraries

2011-08-15 Thread Fabian Greffrath

Am 15.08.2011 09:42, schrieb Reinhard Tartler:

On Mon, Aug 15, 2011 at 08:55:47 (CEST), Fabian Greffrath wrote:


Am 15.08.2011 03:48, schrieb Andres Mejia:

We could make these users build the libraries themselves, but then
they would also need to build all the build dependencies as well for
the library they need. This can be quite a burden on various


He? Why would I have to recompile a library's build-dependencies in
order to create a static library from it?


Because in order to link an application statically, each and every
dependent (static) library needs to be available as well.


Sure, but that's not required to *build* a static library and 
furthermore not an issue that we can address in our library packages.


___
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#637861: Please transition rtmpdump for multiarch

2011-08-15 Thread Steve Langasek
Package: rtmpdump
Version: 2.3-2
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu oneiric ubuntu-patch

Hi folks,

Please find attached a patch to rtmpdump to transition it to use of the
multiarch library paths as described at
http://wiki.debian.org/Multiarch/Implementation.  This patch has been
tested and included in Ubuntu Oneiric.

As a dependency of libcurl, librtmp0 is part of the stack packaged in
ia32-libs.  Converting rtmpdump for multiarch use, and thus facilitating the
direct installation of i386 packages on amd64 systems, will be a great step
forward in the release goal of getting rid of ia32-libs for wheezy.  So
please consider including this patch in Debian sooner rather than later.

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
=== modified file 'debian/compat'
--- debian/compat   2010-06-03 20:53:02 +
+++ debian/compat   2011-08-15 09:13:51 +
@@ -1 +1 @@
-7
+9

=== modified file 'debian/control'
--- debian/control  2010-08-01 08:59:47 +
+++ debian/control  2011-08-15 09:13:51 +
@@ -3,7 +3,7 @@
 Maintainer: Debian multimedia packages maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
 Uploaders: Reinhard Tartler siret...@tauware.de, Sebastian Dröge 
sl...@debian.org,
Fabian Greffrath fabian+deb...@greffrath.com
-Build-Depends: quilt (= 0.46-7~), debhelper (= 7.0.50~), libgnutls-dev
+Build-Depends: quilt (= 0.46-7~), debhelper (= 8.1.3), libgnutls-dev
 Standards-Version: 3.9.0
 Section: web
 Vcs-Git: git://git.debian.org/git/pkg-multimedia/rtmpdump.git
@@ -22,7 +22,9 @@
 Package: librtmp0
 Section: libs
 Depends: ${shlibs:Depends}, ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
 Architecture: any
+Multi-Arch: same
 Description: toolkit for RTMP streams (shared library)
  A small dumper for media content streamed over the RTMP protocol (like BBC's
  iPlayer high quality streams). Supplying an rtmp url will result in a dumped

=== modified file 'debian/librtmp-dev.install'
--- debian/librtmp-dev.install  2010-07-05 19:57:14 +
+++ debian/librtmp-dev.install  2011-08-15 09:13:51 +
@@ -1,4 +1,4 @@
 usr/include/*
-usr/lib/lib*.a
-usr/lib/lib*.so
-usr/lib/pkgconfig/*
+usr/lib/*/lib*.a
+usr/lib/*/lib*.so
+usr/lib/*/pkgconfig/*

=== modified file 'debian/librtmp0.install'
--- debian/librtmp0.install 2010-07-05 19:57:14 +
+++ debian/librtmp0.install 2011-08-15 09:13:51 +
@@ -1 +1 @@
-usr/lib/lib*.so.*
+usr/lib/*/lib*.so.*

=== modified file 'debian/rules'
--- debian/rules2010-07-05 19:57:14 +
+++ debian/rules2011-08-15 09:13:51 +
@@ -4,7 +4,9 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-MAKEVARS=prefix=/usr CRYPTO=GNUTLS
+DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+
+MAKEVARS=prefix=/usr CRYPTO=GNUTLS libdir=/usr/lib/$(DEB_HOST_MULTIARCH)
 
 override_dh_auto_build:
dh_auto_build -- $(MAKEVARS)

___
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#637862: ITP: mp3fs -- FUSE filesystem for transcoding FLAC to MP3 on the fly

2011-08-15 Thread Alessio Treglia
Package: wnpp
Severity: wishlist
Owner: Alessio Treglia ales...@debian.org

* Package name: mp3fs
  Version : 0.30
  Upstream Author : Kristofer Henriksson
* URL : http://mp3fs.sourceforge.net
* License : GPL
  Programming Lang: C
  Description : FUSE filesystem for transcoding FLAC to MP3 on the fly

 MP3FS is a read-only FUSE filesystem which transcodes audio formats
 (currently FLAC) to MP3 on the fly when opened and read.
 .
 It is also a novel alternative to traditional MP3 encoder applications.
 Users can use their favorite file browser to select the files they want
 encoded and copy them somewhere.



___
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#637637: yoshimi: Yoshimi seg faults when started with -j -A option

2011-08-15 Thread david

Thanks.

Alessio - I will try installing yoshimi-dbg with Aptosid (Debian Sid) 
and see if I can trigger the  seg fault there. What do I do to get a 
backtrace for you?


i...@bandshed.net wrote:

To clarify,

The 'current' packages by pkg-multimedia are for Debian unstable and
migrate to Testing, their packaging work for Debian Stable 'Squeeze'
(other than bug fixes) has already been done as is the accepted Debian
practice.

AV Linux is based on Squeeze, focuses on a JACK1 environment and is an
arms length project from Debian and since there are no current sanctioned
Debian pkg-multimedia backports it employs custom packaging that
absolutely differs from the Quality control measures and lintian standards
of pure Debian packages.

As I mentioned earlier if you have an issue with the custom packaging then
this is not an appropriate venue to seek assistance. If AV Linux is not to
your liking that's unfortunate and hopefully using pure Debian will help
you achieve the desired result in which case the pkg-multimedia
maintainers can give you assistance if needed.

I am merely a mailing list member here and noticed the bug report and
hoped to direct the issue to the relevant forum to avoid wasting
pkg-multimedia's time and better address the issue.

GMaq



Thanks, I tried what Alessio had mentioned below and encountered these
results:

Their installed yoshimi = 0.060.10avlinux-2

Their yosihimi-data package = 0.058.1-1

No Yoshimi-dbg version

Their installed Jackd1 = 1:0.120.2avlinux-1

jackd2 wasn't installed, version they list in repository = 1.9.6~dfsg.1-2

The packages with avlinux in their names are all described as custom
built for AVLinux.

I replaced their jackd1 with their jackd2 and was able to run JACK at
16msec latency without crash, but after that simnply starting Yoshimi
with or without without any options gave me a segfault.

It sounds to me like I should just avoid AVLinux. If they feel the need
to do so many custom packages, and at least 2 of their custom packaged
versions don't work, I don't think I can trust their quality control
enough to risk using their distro for production work.


i...@bandshed.net wrote:

Hi,

If I'm not mistaken this bug and another JACK related bug here by the
same
reporter are 'avlinux' packages, therefore not packaged by
pkg-multimedia.
The yoshimi issue has been reported on the AV Linux forums and seems to
disappear simply by increasing the JACK 'Timeout' to 1000 or more.
Yoshimi
is custom packaged in AV Linux and has no dbg package currently.

I append an 'avlinux' package name suffix to all my custom packages, and
would suggest to the reporter to feel welcome to seek assistance on the
AV
Linux user forums when there are issues with them since they are not
endorsed or the responsibility of the Debian pkg-multimedia team.

I thought I'd better speak up on this to prevent any misunderstanding.
As
always my props and encouragement to the pkg-multimedia team.

GMaq - AV Linux maintainer
AV Linux forum: http://www.remastersys.com/forums/index.php?board=20.0



tags 637637 confirmed
thanks

On Sat, Aug 13, 2011 at 11:57 AM, Live session user
gn...@hawaii.rr.com
wrote:

Started Yoshimi without options; it didn't appear in JACK. Started
with
-j -A
option, segfaults.

I confirm those -j -A options prevent yoshimi to start fine.
I haven't noticed this before because I use ladish to manage my
audioMIDI connections, and if launched without options it appears in
gladish.
I need some time to investigate further.

Could you please install yoshimi-dbg and provide a backtrace?



--
David
gn...@hawaii.rr.com
authenticity, honesty, community



___
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 mp3fs_0.30-1_amd64.changes

2011-08-15 Thread Debian FTP Masters
mp3fs_0.30-1_amd64.changes uploaded successfully to localhost
along with the files:
  mp3fs_0.30-1.dsc
  mp3fs_0.30.orig.tar.gz
  mp3fs_0.30-1.debian.tar.gz
  mp3fs_0.30-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


Re: Bug#637758: Distributing static libraries

2011-08-15 Thread Reinhard Tartler
On Mon, Aug 15, 2011 at 10:11:33 (CEST), Fabian Greffrath wrote:

 Am 15.08.2011 09:42, schrieb Reinhard Tartler:
 On Mon, Aug 15, 2011 at 08:55:47 (CEST), Fabian Greffrath wrote:

 Am 15.08.2011 03:48, schrieb Andres Mejia:
 We could make these users build the libraries themselves, but then
 they would also need to build all the build dependencies as well for
 the library they need. This can be quite a burden on various

 He? Why would I have to recompile a library's build-dependencies in
 order to create a static library from it?

 Because in order to link an application statically, each and every
 dependent (static) library needs to be available as well.

 Sure, but that's not required to *build* a static library and
 furthermore not an issue that we can address in our library packages.

Well, it depends if you expect the libraries to be of any practical use.

I could imagien as valid use caseto produce a (partly) statically built
binary that works on a larger amount of distributions. But granted, we
are now in the speculation area.

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4

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


mp3fs_0.30-1_amd64.changes is NEW

2011-08-15 Thread Debian FTP Masters
(new) mp3fs_0.30-1.debian.tar.gz optional utils
(new) mp3fs_0.30-1.dsc optional utils
(new) mp3fs_0.30-1_amd64.deb optional utils
FUSE filesystem for transcoding FLAC to MP3 on the fly
 MP3FS is a read-only FUSE filesystem which transcodes audio formats
 (currently FLAC) to MP3 on the fly when opened and read.
 .
 It is also a novel alternative to traditional mp3 encoder applications.
 Users can use their favorite file browser to select the files they want
 encoded and copy them somewhere.
(new) mp3fs_0.30.orig.tar.gz optional utils
Changes: mp3fs (0.30-1) unstable; urgency=low
 .
  * Initial release (Closes: #637862).


Override entries for your package:

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 637862 


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.

___
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: Bug#637758: Distributing static libraries

2011-08-15 Thread Fabian Greffrath

Am 15.08.2011 11:59, schrieb Reinhard Tartler:

I could imagien as valid use caseto produce a (partly) statically built
binary that works on a larger amount of distributions. But granted, we
are now in the speculation area.


Well, whatever, I am *not against* providing static libraries. I just 
think that in these two specific cases at hand, mp4v2 and libdvdcss, 
it does not make any sense. Linking against libmp4v2 does nearly 
always result in a license violation and linking against libdvdcss 
may, well, you know...



___
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#632303: audacious-plugins: enable oss4 output plugin

2011-08-15 Thread Michel Briand
Hello,

I'm coming back with this request. Could someone on the list
(pkg-multimedia-maintainers) help ?

Help me to answer Reinhard question : is oss4 available on kFreeBSD ?
Thus could the oss4 output plugin be enabled for this arch too ?

The oss4-dev package is available for all arch. But the include file it
provides is: /usr/include/linux/soundcard.h. This sounds Linux specific.

Anyway I see no problem to enable it for Debian GNU/Linux i386 and
amd64. It works perfectly (whereas the oss output plugin has problems).

Cheers,
Michel



___
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#637867: Please update to new upstream version 2.4

2011-08-15 Thread Reinhard Tartler
Package: rtmpdump
Severity: wishlist


Quoting from the website:

 | The latest release is 2.4 which you can check out from git. Aside
 | from various minor bugfixes since 2.3, RTMPE type 9 handshakes are
 | now supported.

Since there isn't even a gitweb, I fear we need to disable the watch
file for now.



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

Kernel: Linux 3.0.1-030001-generic (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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


ボタンひとつで1万アクセスって・・・ウソかと思ったら本当でした。

2011-08-15 Thread アクセスアップクラブ通信
集客やアクセスアップで悩むサイト運営者へ・・・



まずは一度使ってみてください。

効果が出なければ、お金はかからないので。



これは、究極のアクセスアップツールといえます。



⇒ http://takcom.net/t/blogking/





全てのビジネスについて言えることですが、

売上はアクセス数に比例します。





このツールは、あなたの時間、労力、お金を大幅に節減し、

多大な利益を与えてくれるでしょう。





今日のご提案は以上になります。

最後までお読みいただき、誠にありがとうございました。











★☆★■□■□■■□■□■★☆★

2011年8月15日 



弊社サイトでのご自身でのメルマガ投稿・購読・登録

無料一括サイトにご投稿された方

関連サイトに投稿・登録された方

インターネット上にメールアドレスを記載していらっしゃる方。

インターネット上で事業をされていらっしゃる方

弊社が取引している名簿業者に登録の有る方

過去に弊社にご連絡を下さった方



以上の方に配信させて頂いております。



万が一覚えがない場合は第三者が誤って登録された可能性があります。

メルマガの退会・解除は 下記解除URLよりお願い致します。

http://takcom.main.jp/out/out.cgi?pkg-multimedia-maintainers@lists.alioth.debian.org

↑ワンクリックで登録解除↑



配信会社 :アクセスアップクラブ通信



お問い合わせ先  

E-MAIL:cu1kn...@yahoo.co.jp

★☆★■□■□■■□■□■★☆★

___
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#591915: Black text on black background

2011-08-15 Thread Alessio Treglia
Version: 1:10.10-1

Thank you, Torquil!

Closing.

-- 
Alessio Treglia          | www.alessiotreglia.com
Debian Developer         | ales...@debian.org
Ubuntu Core Developer    | quadris...@ubuntu.com
0FEC 59A5 E18E E04F 6D40 593B 45D4 8C7C DCFC 3FD0



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


wxsvg 2:1.1.1~dfsg0-1 MIGRATED to testing

2011-08-15 Thread Debian testing watch
FYI: The status of the wxsvg source package
in Debian's testing distribution has changed.

  Previous version: 2:1.0.10~dfsg0-1
  Current version:  2:1.1.1~dfsg0-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#632303: Fw: Bug#632303: audacious-plugins: enable oss4 output plugin

2011-08-15 Thread Robert Millan
2011/8/15 Michel Briand michelbri...@free.fr:
 Hello,

 I'm coming back with this request. Could someone on the list
 (pkg-multimedia-maintainers) help ?

 Help me to answer Reinhard question : is oss4 available on kFreeBSD ?
 Thus could the oss4 output plugin be enabled for this arch too ?

Please see #636631, you need at least this patch for oss4 build system
to work on GNU/kFreeBSD.

As for oss4-dev usability, it will certainly be useful once oss4-dkms
is ported.  My patch resolves the beginning of this but it doesn't
enable the kernel module.  It doesn't hurt to enable oss4-dev
functionality for at least [linux-any kfreebsd-any] IMHO.

 The oss4-dev package is available for all arch. But the include file it
 provides is: /usr/include/linux/soundcard.h. This sounds Linux specific.

linux/soundcard.h shouldn't be included directly from userland.  Use
sys/soundcard.h instead, which does the right thing on each
platform.

-- 
Robert Millan



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


[no subject]

2011-08-15 Thread Gerard.Thibaut


Dear beneficiary,

This is to re-notify you of the $300,000.00 USD that was deposited 
here in the western union office in your name is available for pickup. 
Contact us via email for your M.T.C.N Numbers.

Contact Person:Mr. Allen Williams
Email: mrallenaillia...@hotmail.co.uk
Tel. +447024037299

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


Unable to install ffmpeg

2011-08-15 Thread Amandeep Singh
Hi,

I have 64 bit debian installed on my lenovo T400. I installed kino, video
editing tool. It complained, that I didn't have ffmpeg installed. I tried
installing it using apt-get install ffmpeg command. But I got following
error.

Please see, if I am missing anything.
$
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 ffmpeg : Depends: libavdevice52 (= 4:0.5.1-1) but it is not going to be
installed or
   libavdevice-extra-52 (= 4:0.5.1-1) but it is not
installable
  Depends: libavfilter0 (= 4:0.5.1-1) but it is not going to be
installed or
   libavfilter-extra-0 (= 4:0.5.1-1) but it is not
installable
E: Broken packages
$

Thanks,
Amandeep
___
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: Unable to install ffmpeg

2011-08-15 Thread Fabian Greffrath

Hello,

Am 16.08.2011 01:38, schrieb Amandeep Singh:

I have 64 bit debian installed on my lenovo T400. I installed kino,
video editing tool. It complained, that I didn't have ffmpeg
installed. I tried installing it using apt-get install ffmpeg command.
But I got following error.


This is not a proper bug report. Please use reportbug ffmpeg next 
time. We do not even know which version of Debian you have installed...



The following packages have unmet dependencies:
  ffmpeg : Depends: libavdevice52 (= 4:0.5.1-1) but it is not going
to be installed or
libavdevice-extra-52 (= 4:0.5.1-1) but it is not
installable
   Depends: libavfilter0 (= 4:0.5.1-1) but it is not going to
be installed or
libavfilter-extra-0 (= 4:0.5.1-1) but it is not
installable
E: Broken packages



Try running apt-get update and then install again.

 - Fabian


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