Bug#832095: zita-resampler - debian bug

2016-09-04 Thread Steinar H. Gunderson
On Mon, Aug 29, 2016 at 06:58:24PM +, Fons Adriaensen wrote:
> I wil not accept the patch in its current form, but OTOH the
> code is too good to just be ignored, so I will integrate it
> in another way.
> 
> For the next release of zita-resampler I will reorganise the
> code a bit, so it will be possible to have separate optimised
> Resampler1,2,4 classes (for 1,2,4 channels respectively) using
> the SSE code, and without too much code duplication. Same for
> Vresampler.
> 
> So Steinar, could you provide optimised 1 and 4 chan versions
> as well ? Even better would be if the latter could handle any
> multiple of 4 channels. In all cases you may assume (hlen % 4 == 0). 

Hi Fons,

I expanded on the patch; this new version supports 1, 2 and multiples of 4
channels, and it no longer relies on the serial code (when I can't write past
the end, I just write to a temporary buffer and copy out from there).
Of course, you'll need to reorganize to fit the new structure once you have
it, but hopefully, that should be simple.

The code is pretty much straight-up; the multiples-of-4 VResampler
version isn't optimal for 4 nor for multiples-of-4, but it should be a
reasonable compromise between the two. I guess that if multiples-of-4
is the more important case, we should go to storing the coefficients
(like the scalar version does) instead of computing them anew for each
group of four. (Except for hlen <= 32, in which case it probably would
be optimal to keep them in registers, but I'm not writing special code
for that :-) )

I didn't write AVX versions yet because they would need function
multiversioning to be useful, and in the current structure, that would
mean quite a lot of duplicated code. (Unfortunately, you can't multiversion
inlined functions yet.)

I wrote some test code to make sure I didn't mess up. My original test for
this was based on resampling noise and comparing it to a reference rendering,
but this required my entire audio pipeline running, so I made a simpler one
that simply resamples a sine and compares to another sine. It is simplistic,
but catches most kinds of SSE-ification mistakes instantly, so I've included
it in case you find it useful. Consider both the patch and the test file
licensed under GPLv3+ -- let me know if you want some other kind of license.

/* Steinar */
-- 
Homepage: https://www.sesse.net/
// zita-resampler tests; meant only to verify correctness of
// e.g. SSE optimizations, not as a means of comparing quality
// of different resamplers, or as exhaustive tests.

#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

constexpr int in_freq = 44100;
constexpr int out_freq = 48000;
constexpr int samples_per_block = 137;  // Prime.

vector make_freqs(unsigned num_channels)
{
	vector ret;
	for (unsigned i = 0; i < num_channels; ++i) {
		ret.push_back(440 - i);
	}
	return ret;
}

void setup_resampler(VResampler *resampler, unsigned in_freq, unsigned out_freq, unsigned num_channels, float rratio)
{
	resampler->setup(double(out_freq) / double(in_freq), num_channels, /*hlen=*/32);
	resampler->set_rratio(rratio);
}

void setup_resampler(Resampler *resampler, unsigned in_freq, unsigned out_freq, unsigned num_channels, float rratio)
{
	resampler->setup(in_freq, out_freq, num_channels, /*hlen=*/32);
	assert(rratio == 1.0f);
}

void print_result(VResampler *resampler, unsigned num_channels, float rratio, float max_err_db, float rms_err_db)
{
	printf("VResampler test: %u channel(s), rratio=%.2f   max error = %+7.2f dB   RMS error = %+7.2f dB\n",
		num_channels, rratio, max_err_db, rms_err_db);
}

void print_result(Resampler *resampler, unsigned num_channels, float rratio, float max_err_db, float rms_err_db)
{
	printf("Resampler test:  %u channel(s)max error = %+7.2f dB   RMS error = %+7.2f dB\n",
		num_channels, max_err_db, rms_err_db);
}

template
void test_resampler(int num_channels, float rratio = 1.0f)
{
	vector freqs = make_freqs(num_channels);
	T resampler;
	setup_resampler(&resampler, in_freq, out_freq, num_channels, rratio);

	const int initial_delay = resampler.inpsize() / 2 - 1;
	vector in_phaser_speeds, out_phaser_speeds;
	for (unsigned i = 0; i < num_channels; ++i) {
		in_phaser_speeds.push_back(2.0 * M_PI * freqs[i] / in_freq);
		out_phaser_speeds.push_back(2.0 * M_PI * freqs[i] / (out_freq * rratio));
	}

	float max_err = 0.0f, sum_sq_err = 0.0f;

	unsigned num_output_samples = 0;
	vector in, out;
	out.resize(samples_per_block * num_channels * 2);  // Plenty.
	for (unsigned block = 0; block < 10; ++block) {
		in.clear();
		for (unsigned i = 0; i < samples_per_block; ++i) {
			int sample_num = block * samples_per_block + i;
			for (unsigned channel = 0; channel < num_channels; ++channel) {
in.push_back(sin((sample_num - initial_delay) * in_phaser_speeds[channel]));
			}
		}
		resampler.inp_count = in.size() / num_channels;
		resampler.inp_data = &in[0];
		resampler.out_count = out.size() / num_channels;
		resampler.out_data = &

Bug#836689: marked as done (zita-at1 : package improvement)

2016-09-04 Thread Debian Bug Tracking System
Your message dated Sun, 04 Sep 2016 23:13:01 +
with message-id 
and subject line Bug#836689: fixed in zita-at1 0.4.0-2
has caused the Debian Bug report #836689,
regarding zita-at1 : package improvement
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.)


-- 
836689: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836689
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: zita-at1
Version: 0.4.0

Dear debian maintainers,

Please, find the 2 following lines to add to debian/zita-at1.desktop to 
get the menu item translated in french if your environment is in french 
:

GenericName[fr]=autotuner pour JACK
Comment[fr]=Corrige la hauteur d'une voix chantant désaccordée

By the way, please consider to drop the debian/menu file according to 
#741573.


Hope that helps,
Olivier
--- End Message ---
--- Begin Message ---
Source: zita-at1
Source-Version: 0.4.0-2

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

Debian distribution maintenance software
pp.
Jaromír Mikeš  (supplier of updated zita-at1 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: SHA1

Format: 1.8
Date: Sun, 04 Sep 2016 21:12:46 +0200
Source: zita-at1
Binary: zita-at1
Architecture: source amd64
Version: 0.4.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Jaromír Mikeš 
Description:
 zita-at1   - JACK autotuner
Closes: 836689
Changes:
 zita-at1 (0.4.0-2) unstable; urgency=medium
 .
   * Add french entry to destop file. (Closes: #836689)
   * Remove menu file.
   * Bump Standards.
   * Fix VCS fields.
   * Fix hardening.
   * Update copyright file.
Checksums-Sha1:
 e3316417f1dbb1af4328ee0f27bbd1a076693e5c 2172 zita-at1_0.4.0-2.dsc
 30317c7413fbcbd5ab66f1c138408f36f391dc0e 4932 zita-at1_0.4.0-2.debian.tar.xz
 379fb8ca7be55d05af80d0fe95f84690533a0b8f 125470 
zita-at1-dbgsym_0.4.0-2_amd64.deb
 069d973a4e0aaa01c7350c643d07338f4b9c57e3 65870 zita-at1_0.4.0-2_amd64.deb
Checksums-Sha256:
 9fae776116614495e0a3252bda818026b1598b2e0801d31d273e2bb74378cf3c 2172 
zita-at1_0.4.0-2.dsc
 34597eb16d1815c2c3b50f8f48ea67b4359c1282125cc6dbcc5607399352f331 4932 
zita-at1_0.4.0-2.debian.tar.xz
 6fd782978e659b936cd5f0c796294b7c77d2471f4add90cbc0b1b8f44ffbabe9 125470 
zita-at1-dbgsym_0.4.0-2_amd64.deb
 ac7738b6e31266b1a34efda10c08d991e3d192dbf05992c3f443721fc179aa7e 65870 
zita-at1_0.4.0-2_amd64.deb
Files:
 660b360454ca60cca8a3d77df09504d3 2172 sound optional zita-at1_0.4.0-2.dsc
 ef2a074e80106f571e68408bc68f195e 4932 sound optional 
zita-at1_0.4.0-2.debian.tar.xz
 737e3764dbca3cc372b238926bd084a6 125470 debug extra 
zita-at1-dbgsym_0.4.0-2_amd64.deb
 e29bbe34fdf6849cc60172027538c1e0 65870 sound optional 
zita-at1_0.4.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJXzHRaAAoJEFsBlFXiuE+loHIP+wfsDEvyMU28bRJpvxN2tbBE
6vR2PVCvamMOkVJ5HcQ2aREGC1cEsLQpxk8GQNN1UVLuV1uR3NtubzFWdxtWpdG8
XJYdzMwdzWqWD1YAg55H5XlZPVnadXQQVBWoWsJvkl4q+kNHDCNsbB0DuDkTfHsO
3XoK3//q9expsCJq9rY8HAGWctk/65EPvz7Ar94QEv+LNoma+4Pb+ooaGyi0g/Ct
91OZF2d4BNW+Pg7+in2yL5CW2VuwfYlBGcfKGCikQdCAfbkCLTxWSTZA6RNMD0QB
bSqp9451JE/sBmU2NHY/Kk/teh7E4szcwbzaVOknIJCPN+t93LeUx0FeoEq6Eagy
ru9rnMKBoSJ0HP+D6DAvBDPK14rEUyXgK43LxgcAafTCpqE6cXUOkwro/2wGe+hI
+Ui2+m18UaKUS06WcmL83c4aUmzqczW8EC6osJP6QnO+P1KfKID3VCEHdb7DHrA2
Cqr2cumL0mIj6mQu5/qjFfx9Km2dzVzQAhwbEVBIjOU68F3Jxcf+Pi/rHcuL6r+n
/pSOAHeUrnF5CbUFbUVsRlbiBiKL7RQjUAHXYmrvXyUORDrCFnBIFB5D5veoM+/l
KUb2LRfKCLuQaV6kPNmQD929PL8dpmaqum7JGevdL8EDd7Gk+J0wCMf4ZgmLrYVu
d2ABW+Uaswfn8nuycUyG
=OcBe
-END PGP SIGNATURE End Message ---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

zita-at1_0.4.0-2_amd64.changes ACCEPTED into unstable

2016-09-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 04 Sep 2016 21:12:46 +0200
Source: zita-at1
Binary: zita-at1
Architecture: source amd64
Version: 0.4.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Jaromír Mikeš 
Description:
 zita-at1   - JACK autotuner
Closes: 836689
Changes:
 zita-at1 (0.4.0-2) unstable; urgency=medium
 .
   * Add french entry to destop file. (Closes: #836689)
   * Remove menu file.
   * Bump Standards.
   * Fix VCS fields.
   * Fix hardening.
   * Update copyright file.
Checksums-Sha1:
 e3316417f1dbb1af4328ee0f27bbd1a076693e5c 2172 zita-at1_0.4.0-2.dsc
 30317c7413fbcbd5ab66f1c138408f36f391dc0e 4932 zita-at1_0.4.0-2.debian.tar.xz
 379fb8ca7be55d05af80d0fe95f84690533a0b8f 125470 
zita-at1-dbgsym_0.4.0-2_amd64.deb
 069d973a4e0aaa01c7350c643d07338f4b9c57e3 65870 zita-at1_0.4.0-2_amd64.deb
Checksums-Sha256:
 9fae776116614495e0a3252bda818026b1598b2e0801d31d273e2bb74378cf3c 2172 
zita-at1_0.4.0-2.dsc
 34597eb16d1815c2c3b50f8f48ea67b4359c1282125cc6dbcc5607399352f331 4932 
zita-at1_0.4.0-2.debian.tar.xz
 6fd782978e659b936cd5f0c796294b7c77d2471f4add90cbc0b1b8f44ffbabe9 125470 
zita-at1-dbgsym_0.4.0-2_amd64.deb
 ac7738b6e31266b1a34efda10c08d991e3d192dbf05992c3f443721fc179aa7e 65870 
zita-at1_0.4.0-2_amd64.deb
Files:
 660b360454ca60cca8a3d77df09504d3 2172 sound optional zita-at1_0.4.0-2.dsc
 ef2a074e80106f571e68408bc68f195e 4932 sound optional 
zita-at1_0.4.0-2.debian.tar.xz
 737e3764dbca3cc372b238926bd084a6 125470 debug extra 
zita-at1-dbgsym_0.4.0-2_amd64.deb
 e29bbe34fdf6849cc60172027538c1e0 65870 sound optional 
zita-at1_0.4.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJXzHRaAAoJEFsBlFXiuE+loHIP+wfsDEvyMU28bRJpvxN2tbBE
6vR2PVCvamMOkVJ5HcQ2aREGC1cEsLQpxk8GQNN1UVLuV1uR3NtubzFWdxtWpdG8
XJYdzMwdzWqWD1YAg55H5XlZPVnadXQQVBWoWsJvkl4q+kNHDCNsbB0DuDkTfHsO
3XoK3//q9expsCJq9rY8HAGWctk/65EPvz7Ar94QEv+LNoma+4Pb+ooaGyi0g/Ct
91OZF2d4BNW+Pg7+in2yL5CW2VuwfYlBGcfKGCikQdCAfbkCLTxWSTZA6RNMD0QB
bSqp9451JE/sBmU2NHY/Kk/teh7E4szcwbzaVOknIJCPN+t93LeUx0FeoEq6Eagy
ru9rnMKBoSJ0HP+D6DAvBDPK14rEUyXgK43LxgcAafTCpqE6cXUOkwro/2wGe+hI
+Ui2+m18UaKUS06WcmL83c4aUmzqczW8EC6osJP6QnO+P1KfKID3VCEHdb7DHrA2
Cqr2cumL0mIj6mQu5/qjFfx9Km2dzVzQAhwbEVBIjOU68F3Jxcf+Pi/rHcuL6r+n
/pSOAHeUrnF5CbUFbUVsRlbiBiKL7RQjUAHXYmrvXyUORDrCFnBIFB5D5veoM+/l
KUb2LRfKCLuQaV6kPNmQD929PL8dpmaqum7JGevdL8EDd7Gk+J0wCMf4ZgmLrYVu
d2ABW+Uaswfn8nuycUyG
=OcBe
-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

lives_2.8.0-1_amd64.changes ACCEPTED into unstable

2016-09-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 04 Sep 2016 17:04:11 +0100
Source: lives
Binary: libweed-dev libweed0 lives lives-data lives-plugins
Architecture: source amd64 all
Version: 2.8.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Alessio Treglia 
Description:
 libweed-dev - Development library for inclusion of plugins into LiVES
 libweed0   - Runtime library for inclusion of plugins into LiVES
 lives  - Video Editing system allowing users to edit and create video
 lives-data - Data files for LiVES
 lives-plugins - LiVES plugins pack
Changes:
 lives (2.8.0-1) unstable; urgency=medium
 .
   * New upstream release
 .
   [ Sebastian Ramacher ]
   * Remove debian/patch/ffmpeg3.0.patch, included upstream
 .
   [ Alessio Treglia ]
   * Refresh patchset
   * Bump Standards
Checksums-Sha1:
 1f765840d14b5851ffabfee5b130e03a689c8bd7 2700 lives_2.8.0-1.dsc
 56c43c42eacc28ab7b7dcadbba0d0c0da969ddaa 3888265 lives_2.8.0.orig.tar.bz2
 02c540016c798dcbbbd7aedc02c391c76c531948 18484 lives_2.8.0-1.debian.tar.xz
 5af7a7c256f558cde65fc03d10dea243bdd7e9e1 49146 libweed-dev_2.8.0-1_amd64.deb
 720f96ad3e8723a2cb0b08a82e784ce3a48bacff 96040 
libweed0-dbgsym_2.8.0-1_amd64.deb
 b53295fcd33dd6fd4ad99b11a6170484ec4ffeb1 69068 libweed0_2.8.0-1_amd64.deb
 1470af00fd08b85bec59de94cf65f20fc4d9be32 1470930 lives-data_2.8.0-1_all.deb
 0d2d3ae3bc69dd40da21afe7718c3dcdc6f44bb3 2979796 lives-dbgsym_2.8.0-1_amd64.deb
 257a907c2b88e4a3c7365ba666373d5cead65d0f 1458206 
lives-plugins-dbgsym_2.8.0-1_amd64.deb
 75e66d9f1171ba46a78a2bc58e9adbf572a76bfe 426642 lives-plugins_2.8.0-1_amd64.deb
 e6e778b3e9199e864fc56cbfed6a5d55a432f677 914956 lives_2.8.0-1_amd64.deb
Checksums-Sha256:
 a5cab758952434c62b14b7d72d5f650eae406c1d19abc9b2ffd8645d149a219b 2700 
lives_2.8.0-1.dsc
 eecea7a7517d944b1dc04b2f7ce51517e96531b04e67f3d34b0f8ef729d19fdc 3888265 
lives_2.8.0.orig.tar.bz2
 f96c0e642b0489445f26df47b9748c6bfe2202daa2e460d2532eedee2a7bb86e 18484 
lives_2.8.0-1.debian.tar.xz
 6a36b12b7bc1fb3f50497ba6c152315261c3a7bc04f05803756dce7c19fcef2e 49146 
libweed-dev_2.8.0-1_amd64.deb
 d5e753abf50f491e7e33ad5917f2b25a73540a70d61889ce8f97d62c795999a3 96040 
libweed0-dbgsym_2.8.0-1_amd64.deb
 0f9091103192dfeffc5441c822bcb1bac15c8c0be4ccffa6ef3c8664a1a69487 69068 
libweed0_2.8.0-1_amd64.deb
 085fc44fb20ae5f0ebbb9ef445163d6d804709edd4d86b8b057b7f5272da99a0 1470930 
lives-data_2.8.0-1_all.deb
 27a01de521e13e157c239e9aff9ce7bd1dac5016841da2e930a395224f82b8ca 2979796 
lives-dbgsym_2.8.0-1_amd64.deb
 520cc8741f95943da95ce19eab2ccd13f6bedb0cc07e0c10c3ccbf77cb8694bf 1458206 
lives-plugins-dbgsym_2.8.0-1_amd64.deb
 d473aeffce994ea34b862099af814403243354ec5fcc3ccef892b92cd4c40b18 426642 
lives-plugins_2.8.0-1_amd64.deb
 1c3949b9fa6380e11693c08a883c8c50b35d8f7b37adabf5420f2b21329cb299 914956 
lives_2.8.0-1_amd64.deb
Files:
 eee2315a60c628fbfeb5ef32a718efb4 2700 video optional lives_2.8.0-1.dsc
 f79dff0f35a97f3cc9a5ef2be9c573b6 3888265 video optional 
lives_2.8.0.orig.tar.bz2
 c880c218fffc8cfd8bd7c1a8613de797 18484 video optional 
lives_2.8.0-1.debian.tar.xz
 ff841ddf40a08473dc903c13e90d4468 49146 libdevel optional 
libweed-dev_2.8.0-1_amd64.deb
 e4631d5e38b2bf4d352a0d5307202975 96040 debug extra 
libweed0-dbgsym_2.8.0-1_amd64.deb
 d3c01bd9d81ba8de79092ee192af269b 69068 libs optional libweed0_2.8.0-1_amd64.deb
 1c3af769cdf9c7af9712d3c724cc934d 1470930 video optional 
lives-data_2.8.0-1_all.deb
 835c43402c153f1f78a6fb58501a590d 2979796 debug extra 
lives-dbgsym_2.8.0-1_amd64.deb
 63f8ee554e680e97b0f175f6a2c08871 1458206 debug extra 
lives-plugins-dbgsym_2.8.0-1_amd64.deb
 6c237a657e49bccf6909da9d08218c0b 426642 video optional 
lives-plugins_2.8.0-1_amd64.deb
 2a8ed8580c3ca926dd39a376b8bb5d55 914956 video optional lives_2.8.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJXzJEsAAoJEOikiuUxHXZaue4P/2n6MwfhWWJVz//yNNU9CFo2
0kSczFFRTbfn/Sfab3Vvk/+gMdkOg4usWGWV8/PiFlvuTGvhLTQgOaXZxzs1igrD
WEkG/1cSKASvKLdhncEtStuecV+VtHFos13XDwskMnOcJjLe9EP5ftHiJgT9tfD4
Pg4VwDrXbRPUV6RJpzWJtDweYHVAp7wNZeIP1v7paUR8XM1m2ldB072ib7bib+cz
KuyPY9DiaoBG3SMCrJs8GHiw08ORhNj9bMb+4m3OtWVEJN+HdkRhtDvhwQWkWH1O
q4DZXT817Uai5mPSJqTtbuKlMhN/fvS9Yb1pzdMpkXWQtO99khUgpbC41NBdpoxN
yGiMocLxfdkfxvXT4zogxIaRSsQ2iHMpM3FS7QQfvMV32E/8pcnL8I6UIksu0wEw
d1xb9Cvud2cczXwfissRUi/HIQYo0yM/FIZr2HT5j4aqa50CYdeCrbknMBIcL+JZ
6y+oroA0314nByPcsEaO+F46QLsdKMxsLe5Wp1rXRG4XTYREfp1KkLl3XkDs53sk
QEsxX6ncnk91Ch1bD88OXVVMZibTQZz2LXpNvisFtuxgZWnX5lARIWKDN/ZudQYY
DwfElXqkjw7K8WE0+z/yt2Gj7b41+cl0o40b6Duda4kFmQx2qu+6qoZKaInDi8Xz
JIKZBtmJD1tbygOvYkZK
=qxyZ
-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 lives_2.8.0-1_amd64.changes

2016-09-04 Thread Debian FTP Masters
lives_2.8.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  lives_2.8.0-1.dsc
  lives_2.8.0.orig.tar.bz2
  lives_2.8.0-1.debian.tar.xz
  libweed-dev_2.8.0-1_amd64.deb
  libweed0-dbgsym_2.8.0-1_amd64.deb
  libweed0_2.8.0-1_amd64.deb
  lives-data_2.8.0-1_all.deb
  lives-dbgsym_2.8.0-1_amd64.deb
  lives-plugins-dbgsym_2.8.0-1_amd64.deb
  lives-plugins_2.8.0-1_amd64.deb
  lives_2.8.0-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#836596: libavutil55: borked NMUs with differing changelog

2016-09-04 Thread Thorsten Glaser
Daniel Schepler dixit:

>Sorry about that, I did in fact have to do manual builds for the
>reason mentioned (and it looks like essentially the same situation

Ah okay. I do them occasionally to, but…

>still exists on hppa and sparc64).  I thought the build system would
>automatically separate out the binNMU log into
>/usr/share/doc/*/changelog.x32.gz.

… it only does do that when you run 'dch --bin-nmu' in the chroot.
Which is what I do when I manually build an NMU.

bye,
//mirabilos
-- 
Stéphane, I actually don’t block Googlemail, they’re just too utterly
stupid to successfully deliver to me (or anyone else using Greylisting
and not whitelisting their ranges). Same for a few other providers such
as Hotmail. Some spammers (Yahoo) I do block.

___
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#836596: libavutil55: borked NMUs with differing changelog

2016-09-04 Thread Mattia Rizzolo
On Sun, Sep 04, 2016 at 10:50:36AM -0700, Daniel Schepler wrote:
> OK, the "binary-only=yes" is what I missed.  What I actually did was:
> manually schroot into sid-x32-sbuild (after requesting buildd to shut
> down temporarily); then extracted src:ffmpeg and src:chromaprint,
> added the binNMU changelog manually for ffmpeg; then built and
> installed ffmpeg with the stage1 build profile, built and installed
> chromaprint, then did a full build of ffmpeg.

umh, ok, that was a case where you needed to bootstrap ffmpeg, so maybe
using sbuild'd --make-binNMU was not easily accomplished.  Or peraphs
you could have:
1) sbuild --make-binNMU="Manually built to resolve circular Build-Depends 
with chromaprint." --binNMU=3 --profile=stage1
2) upload those binaries somewhere accessible to the buildd (I
   think even uploading them to ports.d.o would have been ok)
3) schedule a regular binNMU without any build profile (maybe
   through wanna-build, even)

I think that would have brought to the same result (module a higher
binNMU version for the second build), with even less hassle :)

(disclaimer: icbw, I'm not a porter, nor a bootstrapper)

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  https://mapreri.org : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


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: Bug#836689 marked as pending

2016-09-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 836689 pending
Bug #836689 [zita-at1] zita-at1 : package improvement
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
836689: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836689
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 zita-at1_0.4.0-2_amd64.changes

2016-09-04 Thread Debian FTP Masters
zita-at1_0.4.0-2_amd64.changes uploaded successfully to localhost
along with the files:
  zita-at1_0.4.0-2.dsc
  zita-at1_0.4.0-2.debian.tar.xz
  zita-at1-dbgsym_0.4.0-2_amd64.deb
  zita-at1_0.4.0-2_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#836596: libavutil55: borked NMUs with differing changelog

2016-09-04 Thread Daniel Schepler
On Sun, Sep 4, 2016 at 9:41 AM, Mattia Rizzolo  wrote:
>> Sorry about that, I did in fact have to do manual builds for the
>> reason mentioned (and it looks like essentially the same situation
>> still exists on hppa and sparc64).  I thought the build system would
>> automatically separate out the binNMU log into
>> /usr/share/doc/*/changelog.x32.gz.
>
> It indeed happens automatically.
>
> What you did wrong is probably *how* that binNMU was scheduled.  sbuild
> (and pbuilder too nowadays) have their options to do it, and they do it
> right, so I really wonder what you did, because yes, dpkg (=> the "build
> system" of yours above :)) splits automatically the binNMU changelog.
>
> You are missing the 'binary-only=yes' "option" on it; the first line
> should have been:
>
> ffpmeg (7:3.1.3-1+b3) unstable; urgency=low, binary-only=yes
>
> (or another urgency; the urgency field for binNMUs is pretty
> indifferent).

OK, the "binary-only=yes" is what I missed.  What I actually did was:
manually schroot into sid-x32-sbuild (after requesting buildd to shut
down temporarily); then extracted src:ffmpeg and src:chromaprint,
added the binNMU changelog manually for ffmpeg; then built and
installed ffmpeg with the stage1 build profile, built and installed
chromaprint, then did a full build of ffmpeg.
-- 
Daniel

___
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#836689: zita-at1 : package improvement

2016-09-04 Thread trebmuh

Package: zita-at1
Version: 0.4.0

Dear debian maintainers,

Please, find the 2 following lines to add to debian/zita-at1.desktop to 
get the menu item translated in french if your environment is in french 
:

GenericName[fr]=autotuner pour JACK
Comment[fr]=Corrige la hauteur d'une voix chantant désaccordée

By the way, please consider to drop the debian/menu file according to 
#741573.


Hope that helps,
Olivier

___
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#833887: marked as done (vlc: Does not install app icon)

2016-09-04 Thread Debian Bug Tracking System
Your message dated Sun, 4 Sep 2016 19:00:45 +0200
with message-id <20160904170045.pse5b4j2m2cw6...@ramacher.at>
and subject line Re: Bug#833887: vlc: Does not install app icon
has caused the Debian Bug report #833887,
regarding vlc: Does not install app icon
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.)


-- 
833887: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833887
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: vlc
Version: 2.2.4-3

1. From Debian "testing" with gnome, open the Software app.
2. Search for 'vlc'

What happens:
--
No results for vlc

What should happen:
--
vlc should be in the results

Suggested fix
--
http://appstream.ubuntu.com/yakkety/universe/issues/vlc.html

Debian also has an appstream issues page but maybe the generator needs
updating: https://appstream.debian.org/sid/main/issues/vlc.html

I think this could be fixed if vlc depended on vlc-data. vlc provides
the binary and the .desktop but vlc-data is needed for the app icons.

Jeremy
--- End Message ---
--- Begin Message ---
Closing as the discussion showed that it's not a bug in vlc.

Cheers
-- 
Sebastian Ramacher


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

liblivemedia_2016.08.27-1_source.changes ACCEPTED into unstable

2016-09-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 04 Sep 2016 17:49:36 +0200
Source: liblivemedia
Binary: liblivemedia-dev libbasicusageenvironment1 libgroupsock8 liblivemedia52 
libusageenvironment3 livemedia-utils
Architecture: source
Version: 2016.08.27-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 libbasicusageenvironment1 - multimedia RTSP streaming library 
(BasicUsageEnvironment class)
 libgroupsock8 - multimedia RTSP streaming library (network interfaces and 
sockets
 liblivemedia-dev - multimedia RTSP streaming library (development files)
 liblivemedia52 - multimedia RTSP streaming library
 libusageenvironment3 - multimedia RTSP streaming library (UsageEnvironment 
classes)
 livemedia-utils - multimedia RTSP streaming tools
Changes:
 liblivemedia (2016.08.27-1) unstable; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 c03867b410b0e1b0f71c25b26c5164908b276315 2466 liblivemedia_2016.08.27-1.dsc
 ae3add2dff6689e92d56733e12c3a83ac052ef9d 619652 
liblivemedia_2016.08.27.orig.tar.gz
 658609617d3c66237e374969a199c4209798c6a7 9316 
liblivemedia_2016.08.27-1.debian.tar.xz
Checksums-Sha256:
 e42bd4bbeb12bf5c0a092088d0cbf8bdc1a8d9c373b644838a2d9d04172cb9af 2466 
liblivemedia_2016.08.27-1.dsc
 2fd0bcb4b4f0dc15991550b0080eebc4cf586d8f1678c116f8e7a5ec1edbc034 619652 
liblivemedia_2016.08.27.orig.tar.gz
 971044d53dd3a8798a6046e0b55992a10b7c29615fe9b417709ed302a168e2d7 9316 
liblivemedia_2016.08.27-1.debian.tar.xz
Files:
 d97c2437435bcfdd86cff0e7f6844a15 2466 libs optional 
liblivemedia_2016.08.27-1.dsc
 8c6714a8ce997a40cea054bfc165919b 619652 libs optional 
liblivemedia_2016.08.27.orig.tar.gz
 5890948ae76c1f4bb940a00a68277261 9316 libs optional 
liblivemedia_2016.08.27-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJXzEM9AAoJEGny/FFupxmToCwP/RfmkgoEX0c6gF3JaFa9WKs9
Dar13e0K2llrCfWQUdjx7Ws1M5bMmPEMTLLUTvPxM5X/112S6OAiyVY+WkL/UlHf
UeOS/W9xFJlrn+Jq/ss5Yzhwjp1DNDIOeOtUtMXEOEyecYGalpPcEts6OwcwHp4o
TYXoZppc4dMB2pDESClzzu4rmm/mexqqONu6telRXr4I4gvmRzwDYR/JzcWbI34E
5xmmtlPEF3roSRSI4TJRLN/0s3m6KFKkwn15oPWl/in8RilhRNkjeJ8AJEUZKpFv
cRXucpg+PnGmpnLWVod3AsHJ83j3sZTBD6eA0XMlPAiprr+wVCWeLgESpzHsITYO
ctxqIDbzvxbvAigmsK/wwhKiodhnlNMkAm64X1u+bwOhBDaRx36xm7YoAyRZCc6Q
GfES3NHfcVYyeQfLaZ9CNJYNLCdMTumvpeUvzIe9ObS20fe7jhH1sudx7M9zQ0xz
3cJJ9ko5lcK1yXk8Al0ezjkyA30n5eH7rhVqMRaD7fRpWtrhbqJByiwOAO8BYSsY
64bz7x8s7GTedJ680/iBFiI5USdFbTnbaFNa54yMxQC2yFK6dNECDZIqRTGqoqv5
TLlwc3a4ttr3q0rmeaGw2pDVMIJlhuznfbRMfMCoAze7c0WdS7zJE06XskHFarQP
bqs6jX4GAiDpTKRQWtfJ
=m8Im
-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


Bug#836596: libavutil55: borked NMUs with differing changelog

2016-09-04 Thread Mattia Rizzolo
On Sun, Sep 04, 2016 at 07:45:07AM -0700, Daniel Schepler wrote:
> On Sun, Sep 4, 2016 at 4:40 AM, Thorsten Glaser  wrote:
> > tglase@tglase:~ $ diff -u clog-*
> > --- clog-i386   2016-08-28 12:12:00.0 +0200
> > +++ clog-x322016-09-03 16:36:00.0 +0200
> > @@ -1,3 +1,10 @@
> > +ffmpeg (7:3.1.3-1+b3) unstable; urgency=medium
> > +
> > +  * Binary-only NMU: Rebuild against against libchromaprint1.
> > +  * Manually built to resolve circular Build-Depends with chromaprint.
> > +
> > + -- x32 Build Daemon (frobozz) 
> >   Sat, 03 Sep 2016 07:36:24 
> > -0700
> > +
> >  ffmpeg (7:3.1.3-1) unstable; urgency=medium
> >
> >* Team upload.
> 
> Sorry about that, I did in fact have to do manual builds for the
> reason mentioned (and it looks like essentially the same situation
> still exists on hppa and sparc64).  I thought the build system would
> automatically separate out the binNMU log into
> /usr/share/doc/*/changelog.x32.gz.

It indeed happens automatically.

What you did wrong is probably *how* that binNMU was scheduled.  sbuild
(and pbuilder too nowadays) have their options to do it, and they do it
right, so I really wonder what you did, because yes, dpkg (=> the "build
system" of yours above :)) splits automatically the binNMU changelog.

You are missing the 'binary-only=yes' "option" on it; the first line
should have been:

ffpmeg (7:3.1.3-1+b3) unstable; urgency=low, binary-only=yes

(or another urgency; the urgency field for binNMUs is pretty
indifferent).

> At this point, I can't really see any way to fix the issue, though
> (short of scheduling another binNMU for all architectures).

good question :)

-- 
regards,
Mattia Rizzolo

GPG Key: 66AE 2B4A FCCF 3F52 DA18  4D18 4B04 3FCD B944 4540  .''`.
more about me:  https://mapreri.org : :'  :
Launchpad user: https://launchpad.net/~mapreri  `. `'`
Debian QA page: https://qa.debian.org/developer.php?login=mattia  `-


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: tagging 834180

2016-09-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # not in jessie
> tags 834180 + sid stretch
Bug #834180 [src:bristol] bristol: FTBFS: audioEngineJack.c:42:26: fatal error: 
alsa/iatomic.h: No such file or directory
Added tag(s) sid and stretch.
> tags 834246 + sid stretch
Bug #834246 [src:kicad] kicad: FTBFS in testing
Added tag(s) stretch and sid.
> tags 834248 + sid stretch
Bug #834248 {Done: Nicolas Boulenguez } [src:libtexttools] 
libtexttools: FTBFS in testing
Added tag(s) sid and stretch.
> tags 834158 + sid stretch
Bug #834158 [src:lvtk] lvtk: FTBFS: boost/system/error_code.hpp:221: undefined 
reference to `boost::system::generic_category()'
Added tag(s) sid and stretch.
> tags 834249 + sid stretch
Bug #834249 [src:openbabel] openbabel: FTBFS in testing
Added tag(s) sid and stretch.
> tags 834126 + sid stretch
Bug #834126 [src:open-gram] open-gram: FTBFS: make[1]: *** [lm_sc.t3g] Aborted 
(core dumped)
Added tag(s) sid and stretch.
> tags 834472 + sid stretch
Bug #834472 [src:vmmlib] vmmlib: FTBFS: stdlib.h:774:12: error: expected 
unqualified-id before 'int'
Added tag(s) stretch and sid.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
834126: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834126
834158: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834158
834180: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834180
834246: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834246
834248: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834248
834249: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834249
834472: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834472
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 liblivemedia_2016.08.27-1_source.changes

2016-09-04 Thread Debian FTP Masters
liblivemedia_2016.08.27-1_source.changes uploaded successfully to localhost
along with the files:
  liblivemedia_2016.08.27-1.dsc
  liblivemedia_2016.08.27.orig.tar.gz
  liblivemedia_2016.08.27-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


Processed: retitle 807503 to vlc: unable to take snapshots when having hardware decoding enabled

2016-09-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 807503 vlc: unable to take snapshots when having hardware decoding 
> enabled
Bug #807503 [src:vlc] vlc: snapshots
Bug #836511 [src:vlc] vlc: screencapture failed on vlc 2.2.4
Changed Bug title to 'vlc: unable to take snapshots when having hardware 
decoding enabled' from 'vlc: snapshots'.
Changed Bug title to 'vlc: unable to take snapshots when having hardware 
decoding enabled' from 'vlc: screencapture failed on vlc 2.2.4'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
807503: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=807503
836511: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836511
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: Re: Bug#836511: vlc: screencapture failed on vlc 2.2.4

2016-09-04 Thread Debian Bug Tracking System
Processing control commands:

> found -1 2.2.0~rc2-1
Bug #836511 [src:vlc] vlc: screencapture failed on vlc 2.2.4
Marked as found in versions vlc/2.2.0~rc2-1.
> reassign 807503 src:vlc 2.2.0~rc2-1
Bug #807503 [vlc] vlc: snapshots
Bug reassigned from package 'vlc' to 'src:vlc'.
No longer marked as found in versions vlc/2.2.0~rc2-2+deb8u1 and 
vlc/2.2.4-1~deb8u1.
Ignoring request to alter fixed versions of bug #807503 to the same values 
previously set
Bug #807503 [src:vlc] vlc: snapshots
Marked as found in versions vlc/2.2.0~rc2-1.
> notfound 807503 2.2.0~rc2-2+deb8u1
Bug #807503 [src:vlc] vlc: snapshots
Ignoring request to alter found versions of bug #807503 to the same values 
previously set
> notfound 807503 2.2.4-1~deb8u1
Bug #807503 [src:vlc] vlc: snapshots
Ignoring request to alter found versions of bug #807503 to the same values 
previously set
> notfound -1 2.2.4-3+b1
Bug #836511 [src:vlc] vlc: screencapture failed on vlc 2.2.4
The source 'vlc' and version '2.2.4-3+b1' do not appear to match any binary 
packages
No longer marked as found in versions vlc/2.2.4-3+b1.
> forcemerge 807503 -1
Bug #807503 [src:vlc] vlc: snapshots
Bug #836511 [src:vlc] vlc: screencapture failed on vlc 2.2.4
Set Bug forwarded-to-address to 'https://trac.videolan.org/vlc/ticket/14456'.
Added tag(s) upstream.
Merged 807503 836511

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


Bug#836511: vlc: screencapture failed on vlc 2.2.4

2016-09-04 Thread Sebastian Ramacher
Control: found -1 2.2.0~rc2-1
Control: reassign 807503 src:vlc 2.2.0~rc2-1
Control: notfound 807503 2.2.0~rc2-2+deb8u1
Control: notfound 807503 2.2.4-1~deb8u1
Control: notfound -1 2.2.4-3+b1
Control: forcemerge 807503 -1

On 2016-09-04 14:50:48, Grand T wrote:
> Once i remove some VDPAU libs, VLC screencaptures are ok.
> 
> See 
> https://www.debian-fr.org/t/vlc-2-2-4-impossible-de-faire-des-captures-decran/70822

This is a known issue when using hardware accelereted decoding. See #807503.

Cheers
-- 
Sebastian Ramacher


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

Bug#836511: vlc: screencapture failed on vlc 2.2.4

2016-09-04 Thread Grand T
Once i remove some VDPAU libs, VLC screencaptures are ok.

See 
https://www.debian-fr.org/t/vlc-2-2-4-impossible-de-faire-des-captures-decran/70822
___
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#836596: libavutil55: borked NMUs with differing changelog

2016-09-04 Thread Daniel Schepler
On Sun, Sep 4, 2016 at 4:40 AM, Thorsten Glaser  wrote:
> Unpacking libavutil55:x32 (7:3.1.3-1+b3) over (7:3.1.3-1) ...
> dpkg: error processing archive 
> /tmp/apt-dpkg-install-rPYNV8/09-libavutil55_7%3a3.1.3-1+b3_x32.deb (--unpack):
>  trying to overwrite shared '/usr/share/doc/libavutil55/changelog.Debian.gz', 
> which is different from other instances of package libavutil55:x32
> Preparing to unpack .../10-libswresample2_7%3a3.1.3-1+b3_i386.deb ...
> De-configuring libswresample2:x32 (7:3.1.3-1) ...
> […]
>
> And indeed, the file differs:
>
> -rw-r--r--  1 tglase tglase  7526 Aug 28 12:12 clog-i386.gz
> -rw-r--r--  1 tglase tglase  7642 Sep  3 16:36 clog-x32.gz
>
> On x32, the binNMU was applied directly, apparently:
>
> tglase@tglase:~ $ diff -u clog-*
> --- clog-i386   2016-08-28 12:12:00.0 +0200
> +++ clog-x322016-09-03 16:36:00.0 +0200
> @@ -1,3 +1,10 @@
> +ffmpeg (7:3.1.3-1+b3) unstable; urgency=medium
> +
> +  * Binary-only NMU: Rebuild against against libchromaprint1.
> +  * Manually built to resolve circular Build-Depends with chromaprint.
> +
> + -- x32 Build Daemon (frobozz)   
> Sat, 03 Sep 2016 07:36:24 -0700
> +
>  ffmpeg (7:3.1.3-1) unstable; urgency=medium
>
>* Team upload.

Sorry about that, I did in fact have to do manual builds for the
reason mentioned (and it looks like essentially the same situation
still exists on hppa and sparc64).  I thought the build system would
automatically separate out the binNMU log into
/usr/share/doc/*/changelog.x32.gz.

At this point, I can't really see any way to fix the issue, though
(short of scheduling another binNMU for all architectures).
-- 
Daniel Schepler

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

amsynth_1.6.4-1_amd64.changes ACCEPTED into unstable

2016-09-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 04 Sep 2016 13:48:53 +0100
Source: amsynth
Binary: amsynth
Architecture: source amd64
Version: 1.6.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Alessio Treglia 
Description:
 amsynth- two oscillator software synthesizer
Changes:
 amsynth (1.6.4-1) unstable; urgency=medium
 .
   * Imported Upstream version 1.6.4
   * Update upstream references
   * Refresh debian/copyright
   * Revert "Make package's builds reproducible"
 This reverts commit 36d1579fa54bf05d3c4c54d6bced02a5559613bf
 The patch has been applied upstream.
   * Enable LV2 explicitly
   * Fix lintian's vcs-field-uses-insecure-uri warning
   * Bump Standards
Checksums-Sha1:
 0b8dc89ff74815bb909ede428ef11087d8b0ad83 2119 amsynth_1.6.4-1.dsc
 93d67bf6a3957f66018addf876de89db1a2e1889 1380770 amsynth_1.6.4.orig.tar.gz
 44b2fff49e45edfaea45b01bcf6476df0193 10632 amsynth_1.6.4-1.debian.tar.xz
 5cc9cde58cb6a4f2c8231df3bf4b7129e055e216 3964272 
amsynth-dbgsym_1.6.4-1_amd64.deb
 d262c57df4bc2101b2eea15f94f58e1d1acae64a 868298 amsynth_1.6.4-1_amd64.deb
Checksums-Sha256:
 0f9f21a1d9b1cb23f7e7168b1da90cd08287933fb1ad28bd2d5deeb7b05a2369 2119 
amsynth_1.6.4-1.dsc
 489f57d506ea3495412bdd759be290930ff5da9d5b6b39ad8c82e19b4fd219ed 1380770 
amsynth_1.6.4.orig.tar.gz
 26b068c0096a42ca31906cc9d92a86aec009f88dfc0db96d88ababd728fee0bc 10632 
amsynth_1.6.4-1.debian.tar.xz
 7ccd575a48c739ad08d60c5083026c00f543f25b3b737f7f38371bef9bd7eaee 3964272 
amsynth-dbgsym_1.6.4-1_amd64.deb
 0ccfe48bf5003c9e58152ba919fc26addd6fc03095e29adb6c6fa0a5524a695d 868298 
amsynth_1.6.4-1_amd64.deb
Files:
 922502db3e2f324cd8239c3d749497dc 2119 sound optional amsynth_1.6.4-1.dsc
 4ab8a6b5c9fcc0ac9ef45416e21ff310 1380770 sound optional 
amsynth_1.6.4.orig.tar.gz
 237480887c8b78553b06b839378d7c83 10632 sound optional 
amsynth_1.6.4-1.debian.tar.xz
 0547267d2fdb705cece2f29baa2363bb 3964272 debug extra 
amsynth-dbgsym_1.6.4-1_amd64.deb
 feb658f0b5071e1e566ee215872d3527 868298 sound optional 
amsynth_1.6.4-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJXzBnkAAoJEOikiuUxHXZaFAsP/1Pc0aRqAUtwMCIUu/qURcVD
e++C3E7jXp2c2wuZrdd+5M9VoxB+4J6loDiiXcWzCsMMSjm+doy+gy25WWgtskI0
sxEfhZAUJ8GP+5aNh4fIn1FKEvrJUNhOHDAN2O1JtKiNtXjd+mScUECvf/o3iYx3
n5x7iCwZr5wNwwBSy/VBQ04trWtbgfVaWAP6CSKm/ri2LivFm1LF5w8PvwaBGErI
piBPLrz4GXnv/L08Hk3bikBazhMACLP4Wgk2CjPT2m12PYx9tjScQ+qfvwdnjRWi
pFtTRDAIP7MbMFG8yKyH9sGWAtSFkPtoac+81Gm3o2ye9FR+6HnZAO9Bzxw1prCN
p8kQE9uGU7frob1VeLiblBw58cwn5ZErnGrJBXHWQB/mliZwxumUMrlQFBoZWvx8
5Jj3PAnjDr58f8DADG0FMrEd6JERQTQCyALppWbdCAWNyG+7TcHiz4jnir6lSIGW
V2H9aSbUEjE0VM/U8HjD3giAnrABj2LGFFplHN4h9fo1mELWv2Y8nAStIGlk0yVL
LtDstNVZF8N8MrbvvkHqE3CM8gzdVTkH3cyidZPhBdKNIb2O7NjJSM1pvVsS5zCc
HUDv4/pm7xxPgKP1wW4068jjqQa5TRsoWcLHU+sypySFhSzQ3LupLTqGccjzgUFE
gB0sJaj+iVOtpx8wrKRc
=1T3v
-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


Bug#836596: marked as done (libavutil55: borked NMUs with differing changelog)

2016-09-04 Thread Debian Bug Tracking System
Your message dated Sun, 4 Sep 2016 14:55:24 +0200
with message-id <20160904125524.ppshjzlpyahum...@ramacher.at>
and subject line Re: Bug#836596: libavutil55: borked NMUs with differing 
changelog
has caused the Debian Bug report #836596,
regarding libavutil55: borked NMUs with differing changelog
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.)


-- 
836596: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836596
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libavutil55
Version: 7:3.1.3-1+b3
Severity: normal

[…]
Unpacking dput (0.10.3) over (0.9.6.4) ...
Preparing to unpack .../08-libavutil55_7%3a3.1.3-1+b3_i386.deb ...
De-configuring libavutil55:x32 (7:3.1.3-1) ...
Unpacking libavutil55:i386 (7:3.1.3-1+b3) over (7:3.1.3-1) ...
Preparing to unpack .../09-libavutil55_7%3a3.1.3-1+b3_x32.deb ...
Unpacking libavutil55:x32 (7:3.1.3-1+b3) over (7:3.1.3-1) ...
dpkg: error processing archive 
/tmp/apt-dpkg-install-rPYNV8/09-libavutil55_7%3a3.1.3-1+b3_x32.deb (--unpack):
 trying to overwrite shared '/usr/share/doc/libavutil55/changelog.Debian.gz', 
which is different from other instances of package libavutil55:x32
Preparing to unpack .../10-libswresample2_7%3a3.1.3-1+b3_i386.deb ...
De-configuring libswresample2:x32 (7:3.1.3-1) ...
[…]

And indeed, the file differs:

-rw-r--r--  1 tglase tglase  7526 Aug 28 12:12 clog-i386.gz
-rw-r--r--  1 tglase tglase  7642 Sep  3 16:36 clog-x32.gz

On x32, the binNMU was applied directly, apparently:

tglase@tglase:~ $ diff -u clog-*
--- clog-i386   2016-08-28 12:12:00.0 +0200
+++ clog-x322016-09-03 16:36:00.0 +0200
@@ -1,3 +1,10 @@
+ffmpeg (7:3.1.3-1+b3) unstable; urgency=medium
+
+  * Binary-only NMU: Rebuild against against libchromaprint1.
+  * Manually built to resolve circular Build-Depends with chromaprint.
+
+ -- x32 Build Daemon (frobozz)   
Sat, 03 Sep 2016 07:36:24 -0700
+
 ffmpeg (7:3.1.3-1) unstable; urgency=medium

   * Team upload.

I’ll Cc the relevant people for that.

-- System Information:
Debian Release: stretch/sid
  APT prefers unreleased
  APT policy: (500, 'unreleased'), (500, 'buildd-unstable'), (500, 'unstable')
Architecture: x32 (x86_64)
Foreign Architectures: i386, amd64

Kernel: Linux 4.6.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/lksh
Init: sysvinit (via /sbin/init)
--- End Message ---
--- Begin Message ---
On 2016-09-04 13:40:11, Thorsten Glaser wrote:
> Package: libavutil55
> Version: 7:3.1.3-1+b3
> Severity: normal
> 
> […]
> Unpacking dput (0.10.3) over (0.9.6.4) ...
> Preparing to unpack .../08-libavutil55_7%3a3.1.3-1+b3_i386.deb ...
> De-configuring libavutil55:x32 (7:3.1.3-1) ...
> Unpacking libavutil55:i386 (7:3.1.3-1+b3) over (7:3.1.3-1) ...
> Preparing to unpack .../09-libavutil55_7%3a3.1.3-1+b3_x32.deb ...
> Unpacking libavutil55:x32 (7:3.1.3-1+b3) over (7:3.1.3-1) ...
> dpkg: error processing archive 
> /tmp/apt-dpkg-install-rPYNV8/09-libavutil55_7%3a3.1.3-1+b3_x32.deb (--unpack):
>  trying to overwrite shared '/usr/share/doc/libavutil55/changelog.Debian.gz', 
> which is different from other instances of package libavutil55:x32
> Preparing to unpack .../10-libswresample2_7%3a3.1.3-1+b3_i386.deb ...
> De-configuring libswresample2:x32 (7:3.1.3-1) ...
> […]
> 
> And indeed, the file differs:
> 
> -rw-r--r--  1 tglase tglase  7526 Aug 28 12:12 clog-i386.gz
> -rw-r--r--  1 tglase tglase  7642 Sep  3 16:36 clog-x32.gz
> 
> On x32, the binNMU was applied directly, apparently:
> 
> tglase@tglase:~ $ diff -u clog-*
> --- clog-i386   2016-08-28 12:12:00.0 +0200
> +++ clog-x322016-09-03 16:36:00.0 +0200
> @@ -1,3 +1,10 @@
> +ffmpeg (7:3.1.3-1+b3) unstable; urgency=medium
> +
> +  * Binary-only NMU: Rebuild against against libchromaprint1.
> +  * Manually built to resolve circular Build-Depends with chromaprint.
> +
> + -- x32 Build Daemon (frobozz)   
> Sat, 03 Sep 2016 07:36:24 -0700
> +
>  ffmpeg (7:3.1.3-1) unstable; urgency=medium
> 
>* Team upload.
> 
> I’ll Cc the relevant people for that.

There is nothing to do on the ffmpeg packaging side. So please just write them
directly. Closing.

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: PGP signature
--- End Message ---
___
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 amsynth_1.6.4-1_amd64.changes

2016-09-04 Thread Debian FTP Masters
amsynth_1.6.4-1_amd64.changes uploaded successfully to localhost
along with the files:
  amsynth_1.6.4-1.dsc
  amsynth_1.6.4.orig.tar.gz
  amsynth_1.6.4-1.debian.tar.xz
  amsynth-dbgsym_1.6.4-1_amd64.deb
  amsynth_1.6.4-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#836596: libavutil55: borked NMUs with differing changelog

2016-09-04 Thread Thorsten Glaser
Package: libavutil55
Version: 7:3.1.3-1+b3
Severity: normal

[…]
Unpacking dput (0.10.3) over (0.9.6.4) ...
Preparing to unpack .../08-libavutil55_7%3a3.1.3-1+b3_i386.deb ...
De-configuring libavutil55:x32 (7:3.1.3-1) ...
Unpacking libavutil55:i386 (7:3.1.3-1+b3) over (7:3.1.3-1) ...
Preparing to unpack .../09-libavutil55_7%3a3.1.3-1+b3_x32.deb ...
Unpacking libavutil55:x32 (7:3.1.3-1+b3) over (7:3.1.3-1) ...
dpkg: error processing archive 
/tmp/apt-dpkg-install-rPYNV8/09-libavutil55_7%3a3.1.3-1+b3_x32.deb (--unpack):
 trying to overwrite shared '/usr/share/doc/libavutil55/changelog.Debian.gz', 
which is different from other instances of package libavutil55:x32
Preparing to unpack .../10-libswresample2_7%3a3.1.3-1+b3_i386.deb ...
De-configuring libswresample2:x32 (7:3.1.3-1) ...
[…]

And indeed, the file differs:

-rw-r--r--  1 tglase tglase  7526 Aug 28 12:12 clog-i386.gz
-rw-r--r--  1 tglase tglase  7642 Sep  3 16:36 clog-x32.gz

On x32, the binNMU was applied directly, apparently:

tglase@tglase:~ $ diff -u clog-*
--- clog-i386   2016-08-28 12:12:00.0 +0200
+++ clog-x322016-09-03 16:36:00.0 +0200
@@ -1,3 +1,10 @@
+ffmpeg (7:3.1.3-1+b3) unstable; urgency=medium
+
+  * Binary-only NMU: Rebuild against against libchromaprint1.
+  * Manually built to resolve circular Build-Depends with chromaprint.
+
+ -- x32 Build Daemon (frobozz)   
Sat, 03 Sep 2016 07:36:24 -0700
+
 ffmpeg (7:3.1.3-1) unstable; urgency=medium

   * Team upload.

I’ll Cc the relevant people for that.

-- System Information:
Debian Release: stretch/sid
  APT prefers unreleased
  APT policy: (500, 'unreleased'), (500, 'buildd-unstable'), (500, 'unstable')
Architecture: x32 (x86_64)
Foreign Architectures: i386, amd64

Kernel: Linux 4.6.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/lksh
Init: sysvinit (via /sbin/init)

___
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#836372: marked as done (x42-plugins : package improvement)

2016-09-04 Thread Debian Bug Tracking System
Your message dated Sun, 04 Sep 2016 07:34:12 +
with message-id 
and subject line Bug#836372: fixed in x42-plugins 20160825-2
has caused the Debian Bug report #836372,
regarding x42-plugins : package improvement
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.)


-- 
836372: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836372
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: x42-plugins
Version: 20160825-1

Dear debian maintainers, since there are new plugins in this package, 
please add those lines to the debian/control "description" file :

  * controlfilter.lv2
- filter/process Control Parameters, intended to be used with 
modular

  synthesizers, in particular ingen
  * fat1.lv2
- auto-tuner based on Fons Adriaensen's zita-at1
  * midimap.lv2
- rule based MIDI mapper plugin
  * midigen.lv2
- simple test-sequence generator
  * stepseq.lv2
- simple step sequencer
  * stereoroute.lv2
- stereo routing plugin
  * testsignal.lv2
- signal-test generator

Hope that helps,
Olivier
--- End Message ---
--- Begin Message ---
Source: x42-plugins
Source-Version: 20160825-2

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

Debian distribution maintenance software
pp.
Jaromír Mikeš  (supplier of updated x42-plugins 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: SHA1

Format: 1.8
Date: Sun, 04 Sep 2016 09:11:26 +0200
Source: x42-plugins
Binary: x42-plugins
Architecture: source amd64
Version: 20160825-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Jaromír Mikeš 
Description:
 x42-plugins - Collection of LV2 plugins
Closes: 836372
Changes:
 x42-plugins (20160825-2) unstable; urgency=medium
 .
   * Update description. (Closes: #836372)
Checksums-Sha1:
 4ef819a5efa678b48bed3cff5dd9485e3c054aaa 2275 x42-plugins_20160825-2.dsc
 193cf75ef93f81e5c4bc9339aea38a0090ac67d0 3872 
x42-plugins_20160825-2.debian.tar.xz
 37adf49e582801764e4cc2fcbc751aa974294fc5 40794 
x42-plugins-dbgsym_20160825-2_amd64.deb
 c085e2522f366d8e4df54d16df4bf5475701da83 1049910 
x42-plugins_20160825-2_amd64.deb
Checksums-Sha256:
 a491aa7b6eb83660fb1f9127c242313e4857b2f8ab2f7ea5e2faf8017528cc2e 2275 
x42-plugins_20160825-2.dsc
 9455b2205f4d7637ff9cf426a2a77f4a4fd47962c0b661f32614134d9635b5aa 3872 
x42-plugins_20160825-2.debian.tar.xz
 4fa9167a09839a87a6716da2d4544e1ca2514198391d9ae8902b83191ef8e506 40794 
x42-plugins-dbgsym_20160825-2_amd64.deb
 53ac2031c9bc5cd46cba8f6cde78be753e8bca1a5f0b6a4e3acab005eb29ca59 1049910 
x42-plugins_20160825-2_amd64.deb
Files:
 3bfa64712f3342c297d628af29d76e20 2275 sound optional x42-plugins_20160825-2.dsc
 e266991042e920b3a70e1e0cb066356e 3872 sound optional 
x42-plugins_20160825-2.debian.tar.xz
 d2314774ca562d2124a596d66fd536c2 40794 debug extra 
x42-plugins-dbgsym_20160825-2_amd64.deb
 6c5713858ed9e76b5ead4e7360968aec 1049910 sound optional 
x42-plugins_20160825-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJXy8qPAAoJEFsBlFXiuE+lLfQP/RwkE9tDLguoITXdr+ZWid/S
A7CPhl+hv2lkDxizdG/hg6SIvfvJMoU0KNxJtX5gWOzEGgGciGCXmi1tuVwB+VPS
8OAtyApi5icN3RsCD3DPSifatLuFlkQKv8k81E+v5VMfbBVcMm8glVJa9MuPotee
EYrsqGqonB7DOIwTgPn7kpkpmCPKAEDfZj16ew3jkl/DKF5LrFdy3nQNTNrxhHyZ
3IZ260Aw0Y499vv6coZf8O11NYQ4M85q0vKWUn36B7i4u1JfuJDwfu7jXpsZhq3+
BcpIwmpoI1IRhJf3i9KXckuqiALttuWzrQ7s+85ntX3YPbCUQdVAefYRzcvia3uW
6/GlpbrCFzR6ftQJ2OkxzIJlTxjRdDu7+Z/euxp0D8phaK16UEVLfNwSWb2zeIDv
1i8t62tkzdY6qjLoHczq6fVdxk5KvFa97Z6dkVKzeZqT0Iil+DYp0bMD/M9zVCSd
SKPVQuHgUU2G9APbLvv3GePJb0+C2PROoWzTvZ+Yw6r3Np4QdJzRyQSXFmGBjxuR
E20kGID5R8/DielM6kTxLDeUaQCRQGK/EUhA+K20qpOQo7ROhbI47TO5seFZeJpb
WXx/ROeIi7frfDyQ4kwSsaUPLJFjn08w48oZ2Zb9h8NEedrn7NzK51kzlNT2WnET
zi7K6k2Wtls4I22YxhUr
=uxTc
-END PGP SIGNATURE End Message ---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

x42-plugins_20160825-2_amd64.changes ACCEPTED into unstable

2016-09-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 04 Sep 2016 09:11:26 +0200
Source: x42-plugins
Binary: x42-plugins
Architecture: source amd64
Version: 20160825-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Jaromír Mikeš 
Description:
 x42-plugins - Collection of LV2 plugins
Closes: 836372
Changes:
 x42-plugins (20160825-2) unstable; urgency=medium
 .
   * Update description. (Closes: #836372)
Checksums-Sha1:
 4ef819a5efa678b48bed3cff5dd9485e3c054aaa 2275 x42-plugins_20160825-2.dsc
 193cf75ef93f81e5c4bc9339aea38a0090ac67d0 3872 
x42-plugins_20160825-2.debian.tar.xz
 37adf49e582801764e4cc2fcbc751aa974294fc5 40794 
x42-plugins-dbgsym_20160825-2_amd64.deb
 c085e2522f366d8e4df54d16df4bf5475701da83 1049910 
x42-plugins_20160825-2_amd64.deb
Checksums-Sha256:
 a491aa7b6eb83660fb1f9127c242313e4857b2f8ab2f7ea5e2faf8017528cc2e 2275 
x42-plugins_20160825-2.dsc
 9455b2205f4d7637ff9cf426a2a77f4a4fd47962c0b661f32614134d9635b5aa 3872 
x42-plugins_20160825-2.debian.tar.xz
 4fa9167a09839a87a6716da2d4544e1ca2514198391d9ae8902b83191ef8e506 40794 
x42-plugins-dbgsym_20160825-2_amd64.deb
 53ac2031c9bc5cd46cba8f6cde78be753e8bca1a5f0b6a4e3acab005eb29ca59 1049910 
x42-plugins_20160825-2_amd64.deb
Files:
 3bfa64712f3342c297d628af29d76e20 2275 sound optional x42-plugins_20160825-2.dsc
 e266991042e920b3a70e1e0cb066356e 3872 sound optional 
x42-plugins_20160825-2.debian.tar.xz
 d2314774ca562d2124a596d66fd536c2 40794 debug extra 
x42-plugins-dbgsym_20160825-2_amd64.deb
 6c5713858ed9e76b5ead4e7360968aec 1049910 sound optional 
x42-plugins_20160825-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJXy8qPAAoJEFsBlFXiuE+lLfQP/RwkE9tDLguoITXdr+ZWid/S
A7CPhl+hv2lkDxizdG/hg6SIvfvJMoU0KNxJtX5gWOzEGgGciGCXmi1tuVwB+VPS
8OAtyApi5icN3RsCD3DPSifatLuFlkQKv8k81E+v5VMfbBVcMm8glVJa9MuPotee
EYrsqGqonB7DOIwTgPn7kpkpmCPKAEDfZj16ew3jkl/DKF5LrFdy3nQNTNrxhHyZ
3IZ260Aw0Y499vv6coZf8O11NYQ4M85q0vKWUn36B7i4u1JfuJDwfu7jXpsZhq3+
BcpIwmpoI1IRhJf3i9KXckuqiALttuWzrQ7s+85ntX3YPbCUQdVAefYRzcvia3uW
6/GlpbrCFzR6ftQJ2OkxzIJlTxjRdDu7+Z/euxp0D8phaK16UEVLfNwSWb2zeIDv
1i8t62tkzdY6qjLoHczq6fVdxk5KvFa97Z6dkVKzeZqT0Iil+DYp0bMD/M9zVCSd
SKPVQuHgUU2G9APbLvv3GePJb0+C2PROoWzTvZ+Yw6r3Np4QdJzRyQSXFmGBjxuR
E20kGID5R8/DielM6kTxLDeUaQCRQGK/EUhA+K20qpOQo7ROhbI47TO5seFZeJpb
WXx/ROeIi7frfDyQ4kwSsaUPLJFjn08w48oZ2Zb9h8NEedrn7NzK51kzlNT2WnET
zi7K6k2Wtls4I22YxhUr
=uxTc
-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#836372 marked as pending

2016-09-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 836372 pending
Bug #836372 [x42-plugins] x42-plugins : package improvement
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
836372: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836372
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 x42-plugins_20160825-2_amd64.changes

2016-09-04 Thread Debian FTP Masters
x42-plugins_20160825-2_amd64.changes uploaded successfully to localhost
along with the files:
  x42-plugins_20160825-2.dsc
  x42-plugins_20160825-2.debian.tar.xz
  x42-plugins-dbgsym_20160825-2_amd64.deb
  x42-plugins_20160825-2_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#836380: marked as done (eq10q : package improvement)

2016-09-04 Thread Debian Bug Tracking System
Your message dated Sun, 04 Sep 2016 07:03:34 +
with message-id 
and subject line Bug#836380: fixed in eq10q 2.1~repack0-2
has caused the Debian Bug report #836380,
regarding eq10q : package improvement
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.)


-- 
836380: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=836380
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: eq10q
Version: 2.1~repack0-1
Severity: minor

Dear debian maintainers,

since there is a new plugin in this package, please add this line to the 
debian/control "description" field :

  * cs10qm : side-chain input compressor.

Also, I suggest to replacer the "eq6q   -  6 band equalizer;"-type lines 
by "eq6q : 6 band equalizer;" as the output of the description field is 
broken when using gdebi-gtk.


Hope that helps,
Olivier
--- End Message ---
--- Begin Message ---
Source: eq10q
Source-Version: 2.1~repack0-2

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

Debian distribution maintenance software
pp.
Jaromír Mikeš  (supplier of updated eq10q 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: SHA1

Format: 1.8
Date: Sun, 04 Sep 2016 08:49:02 +0200
Source: eq10q
Binary: eq10q
Architecture: source amd64
Version: 2.1~repack0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Jaromír Mikeš 
Description:
 eq10q  - LV2 plugins bundle
Closes: 836380
Changes:
 eq10q (2.1~repack0-2) unstable; urgency=medium
 .
   * Update description. (Closes: #836380)
Checksums-Sha1:
 7d5b94a9343981b9ee5ac9a6925c0740c2579b4b 2032 eq10q_2.1~repack0-2.dsc
 294d9ebc5d2d67a0f4b8cb7a00c875152fb72033 3576 eq10q_2.1~repack0-2.debian.tar.xz
 68a78c4e43babaee48a6b9fcb873bd840324c88f 10226336 
eq10q-dbgsym_2.1~repack0-2_amd64.deb
 7e45456a29d95685fea71d2dd8a3b6a96199f42a 449154 eq10q_2.1~repack0-2_amd64.deb
Checksums-Sha256:
 9fb88ea7c8482880b2b8fec6bc6e272af2a7acc9ed062ed13ddcc43c901293a6 2032 
eq10q_2.1~repack0-2.dsc
 8878da9e6b95feb3b3172801d515553053207c6e5deece8dfebff3d64dc95c89 3576 
eq10q_2.1~repack0-2.debian.tar.xz
 de0e04773be0ef83e6155a0ed3408d9c84572350dc455cac2f91a2560eb42f16 10226336 
eq10q-dbgsym_2.1~repack0-2_amd64.deb
 06361f835cc639061d657c0ce7bbfce1322fd7a2abcaf1904b742cff8b2771f1 449154 
eq10q_2.1~repack0-2_amd64.deb
Files:
 611fa40a4e0d71888b8b58634bcd47bb 2032 sound optional eq10q_2.1~repack0-2.dsc
 cbd5970f0b4b5622bdd1ca0226a928df 3576 sound optional 
eq10q_2.1~repack0-2.debian.tar.xz
 6fb804c8aadaba8d7dab1a8795d5c770 10226336 debug extra 
eq10q-dbgsym_2.1~repack0-2_amd64.deb
 cc6ee28f7196486414b6357c6cd0b219 449154 sound optional 
eq10q_2.1~repack0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJXy8VhAAoJEFsBlFXiuE+l75cP/RAvvP4kaC/V4Z/GEpWaiiZz
bjU6YpsJ2yCzgbUjYcUmecpQmKMgGLb/1DdkTGlvl1BGDX2VJlltOKkP67tY13Ig
FFQuDd3g5vZ2V8ccaq/DSTZS3Rd5WsXuZem8nBDWDg238A205vYL+ln6HyQM/mU2
Vx+8nKWH9S3ObAI/O+Ix6STem4eG0LpXXhHgJ0OLFO3gIhihbxtkrCpY3JfV3Ct1
2w1SS8dZVASLAQ9wACMhiUYRW/oxaWVoSXBjE74kW1brYsgKKZ64HyCjyQEa7cZd
2IwRl/qgYBTWB1QKGvTtVlqCo6xkleTNj04jGqltY/EycuOnnlU+7npY+PLm5GHv
uSS5e/5JG/TCxdNGoJFY4RoaApcnnncMp1m76kd2Gu0rPvb9KCzr/6ZQC9X6SQ9l
KM7EifGgW8nleM3oPa0at5nLbHy28XVAl/0X4WdkLizmqH1geJDlxi5v7vG+km9q
eL4WQ/caZlu/RrrRpjioTmg7MaALNojLNhavG+UAIQPCxjJkV356/ZlseVYOzwZJ
GIN5WQqYfV76uDRFqyELs9aJ2oT1wT+pbWYSvWi7TF8LXitggf1kKzPHRjYR8MGv
PRHbcV6L8uwUGRj8FRuj7LStsmXfA9BYKolanzr27mp5jQIySflwyVF3rCzinhMf
xy8nZHqa8CxNoQPaob6k
=KoHK
-END PGP SIGNATURE End Message ---
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

eq10q_2.1~repack0-2_amd64.changes ACCEPTED into unstable

2016-09-04 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 04 Sep 2016 08:49:02 +0200
Source: eq10q
Binary: eq10q
Architecture: source amd64
Version: 2.1~repack0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Jaromír Mikeš 
Description:
 eq10q  - LV2 plugins bundle
Closes: 836380
Changes:
 eq10q (2.1~repack0-2) unstable; urgency=medium
 .
   * Update description. (Closes: #836380)
Checksums-Sha1:
 7d5b94a9343981b9ee5ac9a6925c0740c2579b4b 2032 eq10q_2.1~repack0-2.dsc
 294d9ebc5d2d67a0f4b8cb7a00c875152fb72033 3576 eq10q_2.1~repack0-2.debian.tar.xz
 68a78c4e43babaee48a6b9fcb873bd840324c88f 10226336 
eq10q-dbgsym_2.1~repack0-2_amd64.deb
 7e45456a29d95685fea71d2dd8a3b6a96199f42a 449154 eq10q_2.1~repack0-2_amd64.deb
Checksums-Sha256:
 9fb88ea7c8482880b2b8fec6bc6e272af2a7acc9ed062ed13ddcc43c901293a6 2032 
eq10q_2.1~repack0-2.dsc
 8878da9e6b95feb3b3172801d515553053207c6e5deece8dfebff3d64dc95c89 3576 
eq10q_2.1~repack0-2.debian.tar.xz
 de0e04773be0ef83e6155a0ed3408d9c84572350dc455cac2f91a2560eb42f16 10226336 
eq10q-dbgsym_2.1~repack0-2_amd64.deb
 06361f835cc639061d657c0ce7bbfce1322fd7a2abcaf1904b742cff8b2771f1 449154 
eq10q_2.1~repack0-2_amd64.deb
Files:
 611fa40a4e0d71888b8b58634bcd47bb 2032 sound optional eq10q_2.1~repack0-2.dsc
 cbd5970f0b4b5622bdd1ca0226a928df 3576 sound optional 
eq10q_2.1~repack0-2.debian.tar.xz
 6fb804c8aadaba8d7dab1a8795d5c770 10226336 debug extra 
eq10q-dbgsym_2.1~repack0-2_amd64.deb
 cc6ee28f7196486414b6357c6cd0b219 449154 sound optional 
eq10q_2.1~repack0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJXy8VhAAoJEFsBlFXiuE+l75cP/RAvvP4kaC/V4Z/GEpWaiiZz
bjU6YpsJ2yCzgbUjYcUmecpQmKMgGLb/1DdkTGlvl1BGDX2VJlltOKkP67tY13Ig
FFQuDd3g5vZ2V8ccaq/DSTZS3Rd5WsXuZem8nBDWDg238A205vYL+ln6HyQM/mU2
Vx+8nKWH9S3ObAI/O+Ix6STem4eG0LpXXhHgJ0OLFO3gIhihbxtkrCpY3JfV3Ct1
2w1SS8dZVASLAQ9wACMhiUYRW/oxaWVoSXBjE74kW1brYsgKKZ64HyCjyQEa7cZd
2IwRl/qgYBTWB1QKGvTtVlqCo6xkleTNj04jGqltY/EycuOnnlU+7npY+PLm5GHv
uSS5e/5JG/TCxdNGoJFY4RoaApcnnncMp1m76kd2Gu0rPvb9KCzr/6ZQC9X6SQ9l
KM7EifGgW8nleM3oPa0at5nLbHy28XVAl/0X4WdkLizmqH1geJDlxi5v7vG+km9q
eL4WQ/caZlu/RrrRpjioTmg7MaALNojLNhavG+UAIQPCxjJkV356/ZlseVYOzwZJ
GIN5WQqYfV76uDRFqyELs9aJ2oT1wT+pbWYSvWi7TF8LXitggf1kKzPHRjYR8MGv
PRHbcV6L8uwUGRj8FRuj7LStsmXfA9BYKolanzr27mp5jQIySflwyVF3rCzinhMf
xy8nZHqa8CxNoQPaob6k
=KoHK
-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#836380 marked as pending

2016-09-04 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 836380 pending
Bug #836380 [eq10q] eq10q : package improvement
Added tag(s) pending.
> thanks
Stopping processing here.

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

2016-09-04 Thread Debian FTP Masters
eq10q_2.1~repack0-2_amd64.changes uploaded successfully to localhost
along with the files:
  eq10q_2.1~repack0-2.dsc
  eq10q_2.1~repack0-2.debian.tar.xz
  eq10q-dbgsym_2.1~repack0-2_amd64.deb
  eq10q_2.1~repack0-2_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