Bug#790349: bs1770gain: Fail to build when clock_t is not long int

2015-06-28 Thread Petter Reinholdtsen

Package: bs1770gain
Version: 0.4.5-1
Severity: wishlist
Tags: patch

I noticed a build failure on the non-official x32 architecture, build
log available from
URL: 
http://buildd.debian-ports.org/status/fetch.php?pkg=bs1770gainarch=x32ver=0.4.5-1stamp=1435292575
 .

The build fail like this:

bs1770gain.c: In function 'main':
bs1770gain.c:647:5: error: format '%ld' expects argument of type 'long int', 
but argument 3 has type 'clock_t' [-Werror=format=]
 fprintf(stderr, Duration: %ld ms.\n,(t2-t1)/CLOCKS_PER_MILLIS);
 ^
cc1: all warnings being treated as errors

The reason is that clock_t is not of type 'long int' on this platform.

Based on the information available from
URL: 
http://stackoverflow.com/questions/1083142/what-s-the-correct-way-to-use-printf-to-print-a-clock-t
 ,
refering to
URL: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/types.h.html 
where it is stated that clock_t shall be integer or real-floating
types, I guess the best way to make this code portable is to cast it to
a known type before printing it.  I suggest using uintmax_t and the %ju
format specifier like this:

diff --git a/bs1770gain/bs1770gain.c b/bs1770gain/bs1770gain.c
index 1bfda59..a624212 100755
--- a/bs1770gain/bs1770gain.c
+++ b/bs1770gain/bs1770gain.c
@@ -644,7 +644,7 @@ int main(int argc, char **argv)
   root.vmt-cleanup(root);
 
   if (options.time)
-fprintf(stderr, Duration: %ld ms.\n,(t2-t1)/CLOCKS_PER_MILLIS);
+fprintf(stderr, Duration: %ju 
ms.\n,(uintmax_t)((t2-t1)/CLOCKS_PER_MILLIS));
 // cleanup:
   sox_quit();
   // still reachable: 9,689 bytes in 51 blocks

-- 
Happy hacking
Petter Reinholdtsen

___
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#790349: bs1770gain: Fail to build when clock_t is not long int

2015-06-28 Thread Peter Belkner

Many thanks.

On 28.06.2015 13:23, Petter Reinholdtsen wrote:

Based on the information available from
URL: 
http://stackoverflow.com/questions/1083142/what-s-the-correct-way-to-use-printf-to-print-a-clock-t
 ,
refering to
URL: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/types.h.html 
where it is stated that clock_t shall be integer or real-floating
types,


Because rel-floating types is mentioned as well I would prefer to fix 
it as follows


   diff -rc bs1770gain-0.4.5/bs1770gain/bs1770gain.c 
bs1770gain/bs1770gain/bs1770gain.c
   *** bs1770gain-0.4.5/bs1770gain/bs1770gain.c Wed Jun 24 17:30:10 2015
   --- bs1770gain/bs1770gain/bs1770gain.c   Sun Jun 28 14:24:30 2015
   ***
   *** 305,311 
char *odirname=NULL;
int loglevel=AV_LOG_QUIET;
double overlap;
   !   clock_t t1,t2;
int c;
  
if (1==argc)

   --- 305,311 
char *odirname=NULL;
int loglevel=AV_LOG_QUIET;
double overlap;
   !   double t1,t2;
int c;
  
if (1==argc)

   ***
   *** 644,650 
root.vmt-cleanup(root);
  
if (options.time)

   ! fprintf(stderr, Duration: %ld ms.\n,(t2-t1)/CLOCKS_PER_MILLIS);
  // cleanup:
sox_quit();
// still reachable: 9,689 bytes in 51 blocks
   --- 644,650 
root.vmt-cleanup(root);
  
if (options.time)

   ! fprintf(stderr, Duration: %.0f ms.\n,(t2-t1)/CLOCKS_PER_MILLIS);
  // cleanup:
sox_quit();
// still reachable: 9,689 bytes in 51 blocks

Regards,

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

Hello

2015-06-28 Thread leila benson
My name is Leila Benson, 28 years old single lady, a Canadian citizen,

I
 wish to inquire of your services to be my foreign partner / investor 
and support me to transfer and manage my funds by investing in profit 
making ventures like buying of company shares or Real Estate Investment 
Trust funds ,i am not in Canada now. I don't have anybody here.

I
 have a reasonable sum that I inherited from my step father Mr. Franks 
Benson, which I would like you to help me invest it in your country.

Attached here are my personal photos, evidence of deposit of the fund, my 
international passport and my late father’s death certificate in France. I am 
sending all these for you to have confidence that you are dealing with a 
genuine person.

Please reply me as soon as you read this message and the documents so that I 
can know how to proceed.

Best regards

Miss Leila Benson.

Note:below is the major reason i am contacting you.

(1) To provide a new empty bank account which this money would be transfer. if 
you dont want us to use your personal account .

(2)
 To serve as a guardian of this fund since bank insist that their 
agreement with my father was that i provide a foriegn partner before 
releasing the fund.

(3) To make arrangement for me to come over 
to your country to further my education and to secure a resident permit 
in your country.
___
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#790349: bs1770gain: Fail to build when clock_t is not long int

2015-06-28 Thread Fabian Greffrath
Am Sonntag, den 28.06.2015, 13:23 +0200 schrieb Petter Reinholdtsen:
 
 bs1770gain.c: In function 'main':
 bs1770gain.c:647:5: error: format '%ld' expects argument of type 
 'long int', but argument 3 has type 'clock_t' [-Werror=format=]
  fprintf(stderr, Duration: %ld ms.\n,(t2
 -t1)/CLOCKS_PER_MILLIS);
  ^
 cc1: all warnings being treated as errors

Again, this issue isn't *so* severe that it would justify a FTBFS. I
don't understand why you do not simply strip -Werror off the CFLAGS?

 - Fabian



signature.asc
Description: This is a digitally signed message part
___
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: Select provider of libav* libraries

2015-06-28 Thread Andreas Cadhalpun
Hi,

On 28.06.2015 06:24, Bálint Réczey wrote:
 I have prepared the upload for gpac in git which fixes the FTBFS for
 both Libav and FFmpeg. Alessio or I will upload it.

Thanks.

 The other reverse deps are there for refence only. They are broken for
 reasons not related to this transition which I now marked accordingly.

I've just filed #790356 [1] about the missing libavresample-dev
build-depenency of gst-libav1.0.
taoframework can't be binNMUed anyway, because it is Architecture: all. 

 If you find anything to fix related to the transition, comments are
 still welcome. Please check the new experimental banch in ffmpeg's
 packaging repo as well.

I think we're ready for an upload to NEW/experimental and requesting a
transition slot from the release team.

A remaining question is, whether or not we should rename the lib*-dev
packages from src:libav and src:libpostproc to lib*-libav-dev.

Best regards,
Andreas


1: https://bugs.debian.org/790356


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

ecasound 2.9.1-5 MIGRATED to testing

2015-06-28 Thread Debian testing watch
FYI: The status of the ecasound source package
in Debian's testing distribution has changed.

  Previous version: 2.9.1-4
  Current version:  2.9.1-5

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


Bug#790349: bs1770gain: Fail to build when clock_t is not long int

2015-06-28 Thread Petter Reinholdtsen
[Fabian Greffrath]
 Again, this issue isn't *so* severe that it would justify a FTBFS. I
 don't understand why you do not simply strip -Werror off the CFLAGS?

It is a question of code quality.  For some of us, ensuring the code
build without any warning is a mean to raise the quality of the code.
The compiler warnings are almost always caused by bad code quality or
problems that only affect some architectures.

In this case, the error is real and visible to the user, as the string
printed will not reflect the value of the variable.  It is a lot better
to get a build error than building binaries that do not work as
intended.

-- 
Happy hacking
Petter Reinholdtsen

___
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: tagging 745224

2015-06-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 745224 - jessie
Bug #745224 [src:stretchplayer] stretchplayer: FTBFS due to version of cmake
Removed tag(s) jessie.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
745224: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745224
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 jacktrip_1.1~repack-1_amd64.changes

2015-06-28 Thread Debian FTP Masters
jacktrip_1.1~repack-1_amd64.changes uploaded successfully to localhost
along with the files:
  jacktrip_1.1~repack-1.dsc
  jacktrip_1.1~repack.orig.tar.gz
  jacktrip_1.1~repack-1.debian.tar.xz
  jacktrip_1.1~repack-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


Bug#788757: marked as done (jacktrip: please make the build reproducible)

2015-06-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Jun 2015 21:21:32 +
with message-id e1z9k16-0002gd...@franck.debian.org
and subject line Bug#788757: fixed in jacktrip 1.1~repack-1
has caused the Debian Bug report #788757,
regarding jacktrip: please make the build reproducible
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.)


-- 
788757: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788757
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: jacktrip Version: 1.0.5.patch2-2 Severity: wishlist Tags: patch
Version: 1.0.5.patch2-2
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: timestamps

Hi,

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

The attached patch removes $datetime from the file html_footer.html.
Once applied jacktrip can be built reproducibly in our current
experimental framework.

Please also consider forwarding this patch upstream.

Thanks!
akira

 [1]: https://wiki.debian.org/ReproducibleBuilds
Description: Remove $datetime from html_footer.html to make package reproducible

--- jacktrip-1.0.5.patch2.orig/documentation/html_footer.html
+++ jacktrip-1.0.5.patch2/documentation/html_footer.html
@@ -4,7 +4,7 @@
 footer
 pnbsp/p
 font size=1
-pDocumentation generated by Doxygen $doxygenversion on $datetime/p
+pDocumentation generated by Doxygen $doxygenversion /p
 p
 copy; 2008 by Juan-Pablo Caceres (jcaceres emat/em ccrma emdot/em stanford emdot/em edu) and
 Chris Chafebr /
---End Message---
---BeginMessage---
Source: jacktrip
Source-Version: 1.1~repack-1

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

Debian distribution maintenance software
pp.
IOhannes m zmölnig (Debian/GNU) umlae...@debian.org (supplier of updated 
jacktrip 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: Sun, 28 Jun 2015 22:57:51 +0200
Source: jacktrip
Binary: jacktrip
Architecture: source amd64
Version: 1.1~repack-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: IOhannes m zmölnig (Debian/GNU) umlae...@debian.org
Description:
 jacktrip   - high-quality system for audio network performances
Closes: 788757
Changes:
 jacktrip (1.1~repack-1) unstable; urgency=medium
 .
   * New Upstream Release
 .
   [ IOhannes m zmölnig ]
   * Document repacking of upstream sources in debian/README.source
   * Remove patches incorporated upstream
   * Build-depend on librtaudio-dev
 * Backport patches to use system-installed RtAudio
   * Patch for reproducible builds (Closes: #788757)
   * Don't ship with doxygen's useless md5-files
   * Unconditionally include cdbs/utils.mk
   * Update my Uploader's name
   * Upstream homepage has moved to github
 * Update debian/watch
   * Update debian/copyright
   * Regenerate debian/{control,copyright_hints}
   * Bump standards-version to 3.9.6
Checksums-Sha1:
 c78887fe39cd70ed561d4b47e67674ff6050096c 2109 jacktrip_1.1~repack-1.dsc
 f42d81df466b17e3d93c7f28d6a4ff30ed286791 270254 jacktrip_1.1~repack.orig.tar.gz
 3e8369117d57969c76001304622e885453df5327 5872 
jacktrip_1.1~repack-1.debian.tar.xz
 decd335a58aa64a4ec3d7865e491ce94178e5652 449564 jacktrip_1.1~repack-1_amd64.deb
Checksums-Sha256:
 94ae41d836dc01a28d43c8f7853d295d957a9813d7665487a311833950ff74b7 2109 
jacktrip_1.1~repack-1.dsc
 96978070cf4dbd9e3e497187702f56d3d96a2625a34f21951e57bc8408e4a347 270254 
jacktrip_1.1~repack.orig.tar.gz
 55f8f2445fcca7789b6c563750c03296bb449c9b67814e5831511266c227c8cc 5872 
jacktrip_1.1~repack-1.debian.tar.xz
 50c7f45ac1e7bdd8f611c9aeee4751251240f3ca9b30631274efa9bb598e6be8 449564 
jacktrip_1.1~repack-1_amd64.deb
Files:
 9786d9a0c552de2982c393493b138c1e 2109 sound optional jacktrip_1.1~repack-1.dsc
 f714586ad0879af19a78cdc956cb7acc 270254 sound optional 
jacktrip_1.1~repack.orig.tar.gz
 5bb978a957c68b532bf5a222a0daec44 5872 sound optional 
jacktrip_1.1~repack-1.debian.tar.xz
 7de07244debef581686a98449cf40595 449564 

Re: Select provider of libav* libraries

2015-06-28 Thread Reinhard Tartler
On Thu, Jun 18, 2015, 7:15 PM Andreas Cadhalpun 
andreas.cadhal...@googlemail.com wrote:

Hi,

On 18.06.2015 18:57, Bálint Réczey wrote:
 2015-06-09 21:53 GMT+02:00 Andreas Cadhalpun 
andreas.cadhal...@googlemail.com:
 I have now implemented this and it works fine.
 It's in the extra branch of the ffmpeg git repository [1].
 I have tested the branch and it works nicely for me.

Thanks for testing it. :)

 Is there any other open issue?

The altivec optimizations on powerpc are still disabled, but I don't think
this should delay the transition. I intend to fix this one way or another
before stretch is released anyway.


It seems that you have now reimplemented the flavors logic in the ffmpeg
package. Nice.

The only thing that I spotted so far is the issue with libavcodec-extra.


I've put my transition plan on the wiki [1].

1:
https://wiki.debian.org/Debate/libav-provider/ffmpeg#How_Debian_should_switch_to_FFmpeg


I'm not sure if I understand that wiki correctly, but it seems to be that
you plan on keep on using the package names libavXXX-ffmpegNN. That seems
unnecessary to me, why wouldn't you want to co stright to libavXXXNN?

I guess the reason is because that matches the actual soname, that is,
libavcodec is currently installed with the SONAME libavcodec-ffmpeg.so.
This is to ensure co-installability with libav, but do we really need to
keep this? I think everyone is rather in favor of not having to have both
around.

Unless there is a good reason (such as making the transition significantly
easier, I'd rather avoid those names.

Best,
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

Re: Select provider of libav* libraries

2015-06-28 Thread Andreas Cadhalpun
Hi Reinhard,

On 28.06.2015 21:56, Reinhard Tartler wrote:
 It seems that you have now reimplemented the flavors logic in the ffmpeg 
 package.

Yes.

 Nice.

Well, I'd call it a necessary evil, needed until runtime cpu detection works for
altivec and FFmpeg has a native nb/wb AMR encoder.

 The only thing that I spotted so far is the issue with libavcodec-extra.

That should be fixed in the current experimental branch by providing a 
transitional
libavcodec-extra package. Or is there something else?

 I'm not sure if I understand that wiki correctly, but it seems to be that you 
 plan
 on keep on using the package names libavXXX-ffmpegNN.

Yes, until the next SOVERSION bump or after the next release, whichever comes 
first.

 That seems unnecessary to me, why wouldn't you want to co stright to 
 libavXXXNN?

I'd want to use those names very much, but I think that wouldn't work well.

 I guess the reason is because that matches the actual soname, that is, 
 libavcodec
 is currently installed with the SONAME libavcodec-ffmpeg.so.

Yes, the package name should reflect the SONAME, as recommended by policy.

 This is to ensure co-installability with libav, but do we really need to 
 keep this?

It's also to ensure that packages keep working. See below.

 I think everyone is rather in favor of not having to have both around.

So you think we shouldn't rename the -dev libraries from 
src:libav/src:libpostproc,
but rather remove these packages after the transition?

 Unless there is a good reason (such as making the transition significantly 
 easier,
 I'd rather avoid those names.

Building a program against the Libav libraries and using it with the FFmpeg 
libraries
is practically never done, so we'd be the ones to find out how well it works for
most programs.
(Building against FFmpeg and using with these libraries is done by a lot of 
people
in other distributions, so I'm reasonably sure it works well.)

Actually deb-multimedia.org builds the FFmpeg libraries with the same names as 
the
Libav ones in the archive and I have seen bug reports that things break.
For example, bug #785650 [1] shows that mpv refuses to work in such a situation:
mpv was compiled and linked against a mixture of Libav and FFmpeg versions.
This won't work and will most likely crash at some point. Exiting.

Thus we have to treat the FFmpeg libraries as ABI-incompatible to the Libav 
ones.

Best regards,
Andreas


1: https://bugs.debian.org/785650

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


jacktrip_1.1~repack-1_amd64.changes ACCEPTED into unstable

2015-06-28 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 28 Jun 2015 22:57:51 +0200
Source: jacktrip
Binary: jacktrip
Architecture: source amd64
Version: 1.1~repack-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: IOhannes m zmölnig (Debian/GNU) umlae...@debian.org
Description:
 jacktrip   - high-quality system for audio network performances
Closes: 788757
Changes:
 jacktrip (1.1~repack-1) unstable; urgency=medium
 .
   * New Upstream Release
 .
   [ IOhannes m zmölnig ]
   * Document repacking of upstream sources in debian/README.source
   * Remove patches incorporated upstream
   * Build-depend on librtaudio-dev
 * Backport patches to use system-installed RtAudio
   * Patch for reproducible builds (Closes: #788757)
   * Don't ship with doxygen's useless md5-files
   * Unconditionally include cdbs/utils.mk
   * Update my Uploader's name
   * Upstream homepage has moved to github
 * Update debian/watch
   * Update debian/copyright
   * Regenerate debian/{control,copyright_hints}
   * Bump standards-version to 3.9.6
Checksums-Sha1:
 c78887fe39cd70ed561d4b47e67674ff6050096c 2109 jacktrip_1.1~repack-1.dsc
 f42d81df466b17e3d93c7f28d6a4ff30ed286791 270254 jacktrip_1.1~repack.orig.tar.gz
 3e8369117d57969c76001304622e885453df5327 5872 
jacktrip_1.1~repack-1.debian.tar.xz
 decd335a58aa64a4ec3d7865e491ce94178e5652 449564 jacktrip_1.1~repack-1_amd64.deb
Checksums-Sha256:
 94ae41d836dc01a28d43c8f7853d295d957a9813d7665487a311833950ff74b7 2109 
jacktrip_1.1~repack-1.dsc
 96978070cf4dbd9e3e497187702f56d3d96a2625a34f21951e57bc8408e4a347 270254 
jacktrip_1.1~repack.orig.tar.gz
 55f8f2445fcca7789b6c563750c03296bb449c9b67814e5831511266c227c8cc 5872 
jacktrip_1.1~repack-1.debian.tar.xz
 50c7f45ac1e7bdd8f611c9aeee4751251240f3ca9b30631274efa9bb598e6be8 449564 
jacktrip_1.1~repack-1_amd64.deb
Files:
 9786d9a0c552de2982c393493b138c1e 2109 sound optional jacktrip_1.1~repack-1.dsc
 f714586ad0879af19a78cdc956cb7acc 270254 sound optional 
jacktrip_1.1~repack.orig.tar.gz
 5bb978a957c68b532bf5a222a0daec44 5872 sound optional 
jacktrip_1.1~repack-1.debian.tar.xz
 7de07244debef581686a98449cf40595 449564 sound optional 
jacktrip_1.1~repack-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVkGMDAAoJELZQGcR/ejb4pCUP/07Tq3E6MjRS0wIF8Totf56C
n1kIF2Z6jqQtbSes6U1qr6aBJhO2X2q75jtOZNL6OV3SlHTUE6AaQJ6d3GfrQHuB
vMKkytbc2oMdvr8IgOrI2NwHBH61y4c6KawVtCBHi+6xIjVs4BtjkJPBxv/GTEx/
ZsbEzZnUzOCWAGmtwuwzBjbuUZvnEaK8+ShLiaSZKk57mZ4vStPooQauTa3HUl0k
TkMg5AG0+53TNxSaQT6vLIGP7w6WMvIzlJEwq1v6M+w923nN95vvcFUpIIhZAE/n
wz5Uor9xYEQCmmvWI/nc70S35/bw9RYYS/n8vU6ArkzLGvmx0KN90j/NHSup2cj0
MAjeYAIf3CtBJnz8WdxjLHcyI3EpKU8WAueMaHU54Rn4xQLvetWvoNHFLjRPJgwE
y6eqeVESifpcNoAOuHSvPfQuQYQbYluF5F5z7fXWUJ5ro/VWOHHciMLC4Z2U9VKY
bkYE6/GxFBi10TbEqcAUPaOug0Qyrvirk4jQHJHDHd8Jj0ssMFiQlzltk3PJjycz
C6bZe0ask8SUrTmxjMz0bLURs0SB34oZZfm6Q4OP4w4x3BFhKq8A8DlRiWlcOk2V
UOqhV6SJpGquaTKMzKcG1NmExK3rXqSMWfiK3yLx8ed8OKeDE939Scf6IaJuHK8W
snRlfWrUwe1yqSje8v6d
=XS7P
-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

gpac_0.5.2-426-gc5ad4e4~dfsg4-1_source.changes ACCEPTED into unstable

2015-06-28 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 28 Jun 2015 11:44:32 -0500
Source: gpac
Binary: gpac gpac-dbg gpac-modules-base libgpac3 libgpac-dbg libgpac-dev
Architecture: source
Version: 0.5.2-426-gc5ad4e4~dfsg4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Balint Reczey bal...@balintreczey.hu
Description:
 gpac   - GPAC Project on Advanced Content - utilities
 gpac-dbg   - GPAC Project on Advanced Content - debugging symbols
 gpac-modules-base - GPAC Project on Advanced Content - modules
 libgpac-dbg - GPAC Project on Advanced Content - debugging symbols for libgpac3
 libgpac-dev - GPAC Project on Advanced Content - development files
 libgpac3   - GPAC Project on Advanced Content - shared libraries
Closes: 776301 783879
Changes:
 gpac (0.5.2-426-gc5ad4e4~dfsg4-1) unstable; urgency=medium
 .
   [ Alessio Treglia ]
   * New upstream version 0.5.2-426-gc5ad4e4 (Closes: #776301, #783879)
   * Update repacking mechanism.
 The project moved to github.
   * Update repack.sh
   * Update compression in gbp.conf
   * Refresh patches
 .
   [ Balint Reczey ]
   * Refresh remaining patches
   * Update passing revision to configure
   * Don't fail the build intentionally on unknown systems
   * Skip test using .swf file
   * List removed files in copyright file
   * Remove sourceless .swf from original tarball
   * Add myself to uploaders
Checksums-Sha1:
 82083d600b6f48e7c868f994062efc6a237c4f1b 2804 
gpac_0.5.2-426-gc5ad4e4~dfsg4-1.dsc
 193a6d9d263eec67dda36544f00a6c28d8315a10 4162628 
gpac_0.5.2-426-gc5ad4e4~dfsg4.orig.tar.xz
 95983eaf1bb8dfdd94c4f8b79e36da95be6cbc01 27900 
gpac_0.5.2-426-gc5ad4e4~dfsg4-1.debian.tar.xz
Checksums-Sha256:
 66e6d338d06f69546f7476d161fb2a7355f8aafaa04f8113e6e11d6e70f45977 2804 
gpac_0.5.2-426-gc5ad4e4~dfsg4-1.dsc
 e15377d155531f4f795d30d203d775d6a3fa92356e4c33796d5976f953506572 4162628 
gpac_0.5.2-426-gc5ad4e4~dfsg4.orig.tar.xz
 8b8da74a5334b58fb86d1a50b0666e425bfe55b10a3e9cbdc9e08da0ba55830f 27900 
gpac_0.5.2-426-gc5ad4e4~dfsg4-1.debian.tar.xz
Files:
 585d632c434acf646cb5a0a60f88fed5 2804 graphics optional 
gpac_0.5.2-426-gc5ad4e4~dfsg4-1.dsc
 aeeb25c73b4aae0971b902952aff0fb0 4162628 graphics optional 
gpac_0.5.2-426-gc5ad4e4~dfsg4.orig.tar.xz
 772ca1866a0ad60554d39c519477c573 27900 graphics optional 
gpac_0.5.2-426-gc5ad4e4~dfsg4-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJVkDNhAAoJEPZk0la0aRp9UwIP/1S0x8wV4qlkBZRTAZL6arMK
O0Y6ISK5cNl3nfxgQyDZrI7jc58jXvObo/+RTUdmTdqAoLnQZGRBEs3bIXky3ai3
oBacOR9fjFIOOo1VXAS5ULMMuMH71bMk0f0+ND/QeShLbXHhfeMq6QDbEdisBChW
pyFQT/kXQGK4CB9tZCOfN/boYDLttp341216lcvXnTOxoV0/yy6ZwjopcDL1+JKC
Z0In0BF8ciNhTt4izNb+4whcPS/T15ksw4FDFww1cdhhVDhtJ7XzRbcLcIR2Jxt9
o2/BJlzz/Ub8X1g7bZhe4cxBUFnxjyStujDRNHt4hBMR6Yhs4CsSERRwbf+86Uo6
bk50A2P/kYM/MFYoikQkWZ8VsejehSGWbR677iFoWBhaGERkbqONjCvouxKSDRrE
CHmywkHs+mIz/nQY1CK5gPEzEi1V/7YyrE53scACYjDGvC53NCfO9+PD+PTOihiM
HAhTVExl2e3DqGKWAcOO8ck545R5eIeDVs8HD+hzYKkXglFz5YL0PNKpQkRHcWAl
nM1EvWP01NNMc5z9s1ENcJNIHk8cvRMFgERGqXg5rJfQh+NyHpjnflRz/HFuJWP6
8qjEo7g9KxR9/XQPaG+zYfpMgFgNvaI5z6O5x5ci+3NvTIwh7JoxUVZlFx19Zt5O
E98NWcohCF+PNS6u1VC6
=qNIo
-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


stretchplayer_0.503-3_amd64.changes ACCEPTED into unstable

2015-06-28 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 28 Jun 2015 21:41:55 +0200
Source: stretchplayer
Binary: stretchplayer stretchplayer-dbg
Architecture: source
Version: 0.503-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Sebastian Ramacher sramac...@debian.org
Description:
 stretchplayer - Audio file player with time stretch and pitch shifting
 stretchplayer-dbg - Debugging symbols for StretchPlayer
Closes: 745224
Changes:
 stretchplayer (0.503-3) unstable; urgency=medium
 .
   * Team upload.
   * debian/patches/cmake-include-dirs.patch: Correctly set include
 directories. (Closes: #745224)
Checksums-Sha1:
 ab9986741cd86ecff5bc1fdb3110cd948738f7b5 2130 stretchplayer_0.503-3.dsc
 d89435c744e2189543be0c295e90f8625d74e680 3140 
stretchplayer_0.503-3.debian.tar.xz
Checksums-Sha256:
 5e5fccf1d17fba8e2c33b075cacde6dae0defe61f5644bd086ed6d86bb3f7af8 2130 
stretchplayer_0.503-3.dsc
 d6aae43921305133ac01e4406ea84af2b94e1d63f6d1d3aae86dd75cf5dc3ca7 3140 
stretchplayer_0.503-3.debian.tar.xz
Files:
 436c0777bccbfd25fcf87387921467f4 2130 sound optional stretchplayer_0.503-3.dsc
 3597a9bf48157cad05cb58caea5b9db8 3140 sound optional 
stretchplayer_0.503-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVkE5KAAoJEGny/FFupxmTagoP/362ovuoM2NMHUQ3e8NFUfK8
pBN1/0LnOlUXc9O83clnrY2/sLJn7FXpdGA3+ZxczGuPAm+kXQ4yJajI9Eh/mrBS
bRZ1JZpmi7QwhXKsU02QHzGT2JEnDslD01ltVqyQux6LG8pQlvs1QhuM8umyqEcz
HXevGiTAB57/ErsFOmtgnv953mVQwWLrXSe7GaPRSdmHcA6S7zYO1kEnT2ZBlzsa
n31McbH7enGWjkUXvZQPQ84hddEDkRffbcwVGqzzwL+XON7o4t+/tI7A7a3Sc1BI
O4t5gSvDZVL+qf0RdZLO+kiSA2OMMOdLRRqwC1gGlta2qfNS/vqq/xvF4XpOarDb
kwWc999xsr4TcwzS1SUDKk+/VB08FHVF5Q65b69fcJK7KnD9Tr/qATTjf0dKotiZ
ETWKvJ13sgw/oiigOIdEQalxrY4YW6sEvLV+zRpVa/tbp6pwmHPS6AmoyO1QIYWt
Lax+xzTYqNUgKpx5jACZvMQgUBfPT1ZOriUoNdgHj4e5n4tOMT8mCL2E7ZeaGISu
vF841gqqT1Dmzc82hrvbJk8+PTbqjEdylPSQP1ljBbrZ/1H4Se0UdVFZ+puAXMvq
ak95PlWQd0TG+F6vBcZ2mxUQOpwCbH/Lfd2eby4cPt+Ou6gBn2AcQJJCySmsVASB
Hxos3aCJnoKYrTu9dSld
=VN2/
-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~dfsg4-1_source.changes

2015-06-28 Thread Debian FTP Masters
gpac_0.5.2-426-gc5ad4e4~dfsg4-1_source.changes uploaded successfully to 
localhost
along with the files:
  gpac_0.5.2-426-gc5ad4e4~dfsg4-1.dsc
  gpac_0.5.2-426-gc5ad4e4~dfsg4.orig.tar.xz
  gpac_0.5.2-426-gc5ad4e4~dfsg4-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#745224: marked as done (stretchplayer: FTBFS due to version of cmake)

2015-06-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Jun 2015 19:49:11 +
with message-id e1z9izj-0002kk...@franck.debian.org
and subject line Bug#745224: fixed in stretchplayer 0.503-3
has caused the Debian Bug report #745224,
regarding stretchplayer: FTBFS due to version of cmake
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.)


-- 
745224: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745224
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: stretchplayer
Version: 0.503-2
Severity: serious
Justification: FTBFS

Hello,

This package currently FTBFS on !linux ports, see for instance
https://buildd.debian.org/status/fetch.php?pkg=stretchplayerarch=kfreebsd-i386ver=0.503-2stamp=1303927827

CMake Error at src/CMakeLists.txt:24 (INCLUDE):
  include could not find load file:

/usr/include

uh?

Samuel

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.14.0 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 
Samuel
 Je suis maintenant possesseur d'un ordinateur portable Compaq Armada
 1592DT avec port infra-rouge. Auriez-vous connaissance de programmes
 suceptibles d'utiliser ce port afin de servir de télécommande ?
 -+- JN in NPC : ben quoi, c'est pas à ça que ça sert ?
---End Message---
---BeginMessage---
Source: stretchplayer
Source-Version: 0.503-3

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

Debian distribution maintenance software
pp.
Sebastian Ramacher sramac...@debian.org (supplier of updated stretchplayer 
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: Sun, 28 Jun 2015 21:41:55 +0200
Source: stretchplayer
Binary: stretchplayer stretchplayer-dbg
Architecture: source
Version: 0.503-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintainers@lists.alioth.debian.org
Changed-By: Sebastian Ramacher sramac...@debian.org
Description:
 stretchplayer - Audio file player with time stretch and pitch shifting
 stretchplayer-dbg - Debugging symbols for StretchPlayer
Closes: 745224
Changes:
 stretchplayer (0.503-3) unstable; urgency=medium
 .
   * Team upload.
   * debian/patches/cmake-include-dirs.patch: Correctly set include
 directories. (Closes: #745224)
Checksums-Sha1:
 ab9986741cd86ecff5bc1fdb3110cd948738f7b5 2130 stretchplayer_0.503-3.dsc
 d89435c744e2189543be0c295e90f8625d74e680 3140 
stretchplayer_0.503-3.debian.tar.xz
Checksums-Sha256:
 5e5fccf1d17fba8e2c33b075cacde6dae0defe61f5644bd086ed6d86bb3f7af8 2130 
stretchplayer_0.503-3.dsc
 d6aae43921305133ac01e4406ea84af2b94e1d63f6d1d3aae86dd75cf5dc3ca7 3140 
stretchplayer_0.503-3.debian.tar.xz
Files:
 436c0777bccbfd25fcf87387921467f4 2130 sound optional stretchplayer_0.503-3.dsc
 3597a9bf48157cad05cb58caea5b9db8 3140 sound optional 
stretchplayer_0.503-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJVkE5KAAoJEGny/FFupxmTagoP/362ovuoM2NMHUQ3e8NFUfK8
pBN1/0LnOlUXc9O83clnrY2/sLJn7FXpdGA3+ZxczGuPAm+kXQ4yJajI9Eh/mrBS
bRZ1JZpmi7QwhXKsU02QHzGT2JEnDslD01ltVqyQux6LG8pQlvs1QhuM8umyqEcz
HXevGiTAB57/ErsFOmtgnv953mVQwWLrXSe7GaPRSdmHcA6S7zYO1kEnT2ZBlzsa
n31McbH7enGWjkUXvZQPQ84hddEDkRffbcwVGqzzwL+XON7o4t+/tI7A7a3Sc1BI
O4t5gSvDZVL+qf0RdZLO+kiSA2OMMOdLRRqwC1gGlta2qfNS/vqq/xvF4XpOarDb
kwWc999xsr4TcwzS1SUDKk+/VB08FHVF5Q65b69fcJK7KnD9Tr/qATTjf0dKotiZ
ETWKvJ13sgw/oiigOIdEQalxrY4YW6sEvLV+zRpVa/tbp6pwmHPS6AmoyO1QIYWt
Lax+xzTYqNUgKpx5jACZvMQgUBfPT1ZOriUoNdgHj4e5n4tOMT8mCL2E7ZeaGISu
vF841gqqT1Dmzc82hrvbJk8+PTbqjEdylPSQP1ljBbrZ/1H4Se0UdVFZ+puAXMvq
ak95PlWQd0TG+F6vBcZ2mxUQOpwCbH/Lfd2eby4cPt+Ou6gBn2AcQJJCySmsVASB
Hxos3aCJnoKYrTu9dSld
=VN2/
-END PGP SIGNATUREEnd Message---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org

Processed: Re: Aw: Bug#785576: rosegarden: crash. start, click view

2015-06-28 Thread Debian Bug Tracking System
Processing control commands:

 severity -1 important
Bug #785576 [rosegarden] rosegarden: crash. start, click view
Severity set to 'important' from 'grave'
 tags -1 + help
Bug #785576 [rosegarden] rosegarden: crash. start, click view
Added tag(s) help.

-- 
785576: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785576
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