From slomo at debian.org Tue Sep 1 08:07:28 2015 From: slomo at debian.org (Sebastian =?UTF-8?Q?Dr=C3=B6ge?=) Date: Tue, 01 Sep 2015 11:07:28 +0300 Subject: Bug#797227: segfault - gst_memory_unmap, libgstreamer In-Reply-To: <1441040713.2401.31.camel@gmail.com> References: <1440786893.31764.3.camel@gmail.com> <20150828221706.GA26116@zira.vinc17.org> <20150828222702.GA2409@zira.vinc17.org> <20150828234121.GA30701@glandium.org> <20150829080342.GB2409@zira.vinc17.org> <1440889442.11942.7.camel@gmail.com> <1441013942.31247.8.camel@debian.org> <1441031367.2401.15.camel@gmail.com> <1441031804.31247.21.camel@debian.org> <1441035687.2401.20.camel@gmail.com> <1441036145.31247.22.camel@debian.org> <1441040713.2401.31.camel@gmail.com> Message-ID: <1441094848.31247.31.camel@debian.org> Hi, On Mo, 2015-08-31 at 18:05 +0100, jnqnfe wrote: > > > Interesting... that doesn't make any sense unless something > > corrupted the stack :) Can you also run in valgrind with --track > > -origins=yes and provide the log? > > Sure. Just fyi, because loading iceweasel after a crash results in a > state where it asks whether or not to try to restore my tabs, I > reverted back to gst v1.5.90, allowing me to get a clean restore then > shutdown of iceweasel, then I installed the older version again and > ran valgrind. I am not actually familiar with valgrind at all > currently, if this is loading iceweasel in a VM environment, is it > actually loading my iceweasel profile? If not, then is there any use > to this? It is running the application like it would be running without valgrind, so it should use your profile. But it runs in some kind of VM to catch invalid memory accesses and things like that, so will be very slow. With this log it doesn't look like you got iceweasel to crash. Was it just not possible to crash it? I also forgot to mention that you should set G_SLICE=always-malloc in the environment before running valgrind. So basically you would do G_SLICE=always-malloc valgrind --track-origins=yes iceweasel and then go to the vimeo website where stuff was crashing and try to make it crash :) What is interesting in your log so far is that there are lots of invalid memory accesses around GTK. I'm not surprised at all if there are random crashes with all that code poking at random memory areas it shouldn't :) These invalid memory accesses seem to be iceweasel's fault, either in the JavaScript engine or elsewhere. > Do you think there is anything in the fact that we have gst-base > libraries @ version 1.4.5-2 (built 110 days ago!) interacting with > gst -bad libraries @ version 1.4.5-2+b2 (built 3 days ago) in this > troublesome stack trace. We're going through a major transition to > GCC5 right now (as I'm sure you know very well), which involves ABI > breakages. Could there perhaps be a ABI breakage issue between these > two libraries, considering one has been recently rebuilt, but not the > other?? The gcc 5 transition might've broken something related to iceweasel, which is written in C++ and depends a lot on C++ libraries. Which then might result in the invalid memory accesses mentioned above. But GStreamer and dependencies in use here are plain C, so are unaffected by that transition. Same for GTK. I think there are problems somewhere in iceweasel in the way it is using GTK, which is independent of the gcc 5 transition. And which might or might not be the reason for the crash. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 949 bytes Desc: This is a digitally signed message part URL: From vincent at vinc17.net Tue Sep 1 08:25:21 2015 From: vincent at vinc17.net (Vincent Lefevre) Date: Tue, 1 Sep 2015 10:25:21 +0200 Subject: Bug#797227: segfault - gst_memory_unmap, libgstreamer In-Reply-To: <1441094848.31247.31.camel@debian.org> References: <20150828234121.GA30701@glandium.org> <20150829080342.GB2409@zira.vinc17.org> <1440889442.11942.7.camel@gmail.com> <1441013942.31247.8.camel@debian.org> <1441031367.2401.15.camel@gmail.com> <1441031804.31247.21.camel@debian.org> <1441035687.2401.20.camel@gmail.com> <1441036145.31247.22.camel@debian.org> <1441040713.2401.31.camel@gmail.com> <1441094848.31247.31.camel@debian.org> Message-ID: <20150901082521.GA3741@zira.vinc17.org> On 2015-09-01 11:07:28 +0300, Sebastian Dr?ge wrote: > The gcc 5 transition might've broken something related to iceweasel, > which is written in C++ and depends a lot on C++ libraries. Which then > might result in the invalid memory accesses mentioned above. > > But GStreamer and dependencies in use here are plain C, so are > unaffected by that transition. Same for GTK. No, GStreamer is linked against libpcre: $ ldd /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0 linux-vdso.so.1 (0x00007ffda81d1000) libgobject-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0 (0x00007f92e9c3d000) libgmodule-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0 (0x00007f92e9a39000) libglib-2.0.so.0 => /lib/x86_64-linux-gnu/libglib-2.0.so.0 (0x00007f92e9729000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f92e9428000) libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f92e9224000) libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f92e9006000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f92e8c5d000) libffi.so.6 => /usr/lib/x86_64-linux-gnu/libffi.so.6 (0x00007f92e8a54000) libpcre.so.3 => /lib/x86_64-linux-gnu/libpcre.so.3 (0x00007f92e87e5000) /lib64/ld-linux-x86-64.so.2 (0x000055a49616f000) and libpcre was affected by the GCC 5 transition, according to its changelog: pcre3 (2:8.35-7.1) unstable; urgency=medium * Rename libpcrecpp0 to libpcrecpp0v5. Addresses: #791236. * Add Conflict/Replaces to the old library. * Add libpcrecpp0v5 symbols file for GCC 5. -- Matthias Klose Tue, 04 Aug 2015 20:23:03 +0200 > I think there are problems somewhere in iceweasel in the way it is > using GTK, which is independent of the gcc 5 transition. And which > might or might not be the reason for the crash. I would tend to say that the effects of these GTK problems are only local. If they yield more global memory corruption due to specific remote contents (e.g. a video), then this is an important security issue. -- Vincent Lef?vre - Web: 100% accessible validated (X)HTML - Blog: Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon) From slomo at debian.org Tue Sep 1 08:28:27 2015 From: slomo at debian.org (Sebastian =?UTF-8?Q?Dr=C3=B6ge?=) Date: Tue, 01 Sep 2015 11:28:27 +0300 Subject: Bug#797227: segfault - gst_memory_unmap, libgstreamer In-Reply-To: <20150901082521.GA3741@zira.vinc17.org> References: <20150828234121.GA30701@glandium.org> <20150829080342.GB2409@zira.vinc17.org> <1440889442.11942.7.camel@gmail.com> <1441013942.31247.8.camel@debian.org> <1441031367.2401.15.camel@gmail.com> <1441031804.31247.21.camel@debian.org> <1441035687.2401.20.camel@gmail.com> <1441036145.31247.22.camel@debian.org> <1441040713.2401.31.camel@gmail.com> <1441094848.31247.31.camel@debian.org> <20150901082521.GA3741@zira.vinc17.org> Message-ID: <1441096107.31247.36.camel@debian.org> On Di, 2015-09-01 at 10:25 +0200, Vincent Lefevre wrote: > On 2015-09-01 11:07:28 +0300, Sebastian Dr?ge wrote: > > The gcc 5 transition might've broken something related to > > iceweasel, > > which is written in C++ and depends a lot on C++ libraries. Which > > then > > might result in the invalid memory accesses mentioned above. > > > > But GStreamer and dependencies in use here are plain C, so are > > unaffected by that transition. Same for GTK. > > No, GStreamer is linked against libpcre: GLib is linked against pcre, yes. But nothing there is actually using it, and even if it was you would see something blowing up with regex handling instead :) > > I think there are problems somewhere in iceweasel in the way it is > > using GTK, which is independent of the gcc 5 transition. And which > > might or might not be the reason for the crash. > > I would tend to say that the effects of these GTK problems are only > local. If they yield more global memory corruption due to specific > remote contents (e.g. a video), then this is an important security > issue. Who knows? It's poking at memory that was freed already and things like that, which could cause random crashes at a later time. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 949 bytes Desc: This is a digitally signed message part URL: From slomo at debian.org Tue Sep 1 08:36:31 2015 From: slomo at debian.org (Sebastian =?UTF-8?Q?Dr=C3=B6ge?=) Date: Tue, 01 Sep 2015 11:36:31 +0300 Subject: Bug#797227: segfault - gst_memory_unmap, libgstreamer In-Reply-To: <1441096107.31247.36.camel@debian.org> References: <20150828234121.GA30701@glandium.org> <20150829080342.GB2409@zira.vinc17.org> <1440889442.11942.7.camel@gmail.com> <1441013942.31247.8.camel@debian.org> <1441031367.2401.15.camel@gmail.com> <1441031804.31247.21.camel@debian.org> <1441035687.2401.20.camel@gmail.com> <1441036145.31247.22.camel@debian.org> <1441040713.2401.31.camel@gmail.com> <1441094848.31247.31.camel@debian.org> <20150901082521.GA3741@zira.vinc17.org> <1441096107.31247.36.camel@debian.org> Message-ID: <1441096591.31247.38.camel@debian.org> On Di, 2015-09-01 at 11:28 +0300, Sebastian Dr?ge wrote: > On Di, 2015-09-01 at 10:25 +0200, Vincent Lefevre wrote: > > On 2015-09-01 11:07:28 +0300, Sebastian Dr?ge wrote: > > > The gcc 5 transition might've broken something related to > > > iceweasel, > > > which is written in C++ and depends a lot on C++ libraries. Which > > > > > > then > > > might result in the invalid memory accesses mentioned above. > > > > > > But GStreamer and dependencies in use here are plain C, so are > > > unaffected by that transition. Same for GTK. > > > > No, GStreamer is linked against libpcre: > > GLib is linked against pcre, yes. But nothing there is actually using > it, and even if it was you would see something blowing up with regex > handling instead :) > > > > I think there are problems somewhere in iceweasel in the way it > > > is > > > using GTK, which is independent of the gcc 5 transition. And > > > which > > > might or might not be the reason for the crash. > > > > I would tend to say that the effects of these GTK problems are only > > local. If they yield more global memory corruption due to specific > > remote contents (e.g. a video), then this is an important security > > issue. > > Who knows? It's poking at memory that was freed already and things > like that, which could cause random crashes at a later time. The crash is most likely this bug here: https://bugzilla.gnome.org/show_bug.cgi?id=748571 That would also explain why it doesn't crash with 1.5.90. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 949 bytes Desc: This is a digitally signed message part URL: From admin at beplusdo.com Tue Sep 1 13:37:40 2015 From: admin at beplusdo.com (=?gb2312?Q?=B0=D9=B6=C81=B7=D6=C7=AE=BB=EE=B6=AF?=) Date: Tue, 01 Sep 2015 13:37:40 -0000 Subject: =?gb2312?Q?=B0=D9=B6=C8=B9=D9=B7=BD=BB=EE=B6=AF=A3=BA1=B7=D6=C7=AE=B9=BA=C2=F2100M=C1=F7=C1=BF=A3=AC=D6=A7=B3=D6=D2=C6=B6=AF=C1=AA=CD=A8=BA=CD=B5=E7=D0=C5=A3=AC=BF=EC=BF=EC=C8=A5=C2=F2=A1=A31=B7=D6=C7=AE=B9=BA=C2=F25=D4=AA=BB=B0=B7=D1=A3=AC1=B7=D6=C7=AE=C2=F2=C6=BB=B9=FB5s=A1=A2ipad=A1=A3?= Message-ID: <15A4C00326444CB49FF934B9A5B3DCC4.MAI@beplusdo.com> ???????1??????5s?1????100M?????????????????????????????????? ??? 1?1??????5s 2?1????????10???? 3?1?????????50M 4?1?????100M???? 5?1????iPad mini 6?1?????70M???? 7, 1??????5?? ????? https://1.baidu.com/?invite_code=KQJ7TEJK https://1.baidu.com/?invite_code=KQJ7TEJK https://1.baidu.com/?invite_code=KQJ7TEJK ???????????!! (???? ?-????QQ 3156463212 ????) From cwryu at debian.org Wed Sep 2 08:32:49 2015 From: cwryu at debian.org (Changwoo Ryu) Date: Wed, 2 Sep 2015 17:32:49 +0900 Subject: Bug#797227: segfault - gst_memory_unmap, libgstreamer Message-ID: Yes, I just have tested the patch on faad plugin at the GNOME bugzilla 748571. And it fixes the problem. From slomo at debian.org Wed Sep 2 09:18:28 2015 From: slomo at debian.org (Sebastian =?UTF-8?Q?Dr=C3=B6ge?=) Date: Wed, 02 Sep 2015 12:18:28 +0300 Subject: Bug#797227: segfault - gst_memory_unmap, libgstreamer In-Reply-To: References: Message-ID: <1441185508.31247.77.camel@debian.org> On Mi, 2015-09-02 at 17:32 +0900, Changwoo Ryu wrote: > Yes, I just have tested the patch on faad plugin at the GNOME > bugzilla 748571. And it fixes the problem. Thanks for testing, question is if I should upload a new package with the fix to unstable or we just wait until 1.6.0 is released... which should happen in the next week or two. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 949 bytes Desc: This is a digitally signed message part URL: From unionw539 at gmail.com Fri Sep 4 04:29:46 2015 From: unionw539 at gmail.com (COMPENSATION HEAD OFFICE) Date: Fri, 4 Sep 2015 13:29:46 +0900 (JST) Subject: compensation Message-ID: <338635.18037.qm@web101615.mail.kks.yahoo.co.jp> ? Contact us for your compensation consignment box -------------- next part -------------- An HTML attachment was scrubbed... URL: From agmartin at debian.org Fri Sep 4 13:17:53 2015 From: agmartin at debian.org (Agustin Martin) Date: Fri, 4 Sep 2015 15:17:53 +0200 Subject: Bug#797227: segfault - gst_memory_unmap, libgstreamer In-Reply-To: <1441185508.31247.77.camel@debian.org> References: <1441185508.31247.77.camel@debian.org> Message-ID: <20150904131753.GA6544@agmartin.aq.upm.es> On Wed, Sep 02, 2015 at 12:18:28PM +0300, Sebastian Dr?ge wrote: > On Mi, 2015-09-02 at 17:32 +0900, Changwoo Ryu wrote: > > Yes, I just have tested the patch on faad plugin at the GNOME > > bugzilla 748571. And it fixes the problem. > > Thanks for testing, Hi, Also tested here with a personal package rebuild including that fix. Problem seems fixed with it. > question is if I should upload a new package with > the fix to unstable or we just wait until 1.6.0 is released... which > should happen in the next week or two. I'd upload a new package with the fix. Even if upstream releases soon, new package may need some extra work and delay the fix even more. By the way, iceweasel's http://bugs.debian.org/788708 seems to be the same problem. Regards, -- Agustin From owner at bugs.debian.org Fri Sep 4 14:03:09 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 04 Sep 2015 14:03:09 +0000 Subject: Processed: your mail References: <1441375293.5272.147.camel@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > reassign 788708 gst-plugins-bad1.0 1.4.5-2 Bug #788708 [iceweasel] iceweasel: GStreamer causes segmentation fault Bug reassigned from package 'iceweasel' to 'gst-plugins-bad1.0'. No longer marked as found in versions iceweasel/40.0.3-3, iceweasel/38.2.1esr-1, and 38.0.1-2~bpo70+1. Ignoring request to alter fixed versions of bug #788708 to the same values previously set Bug #788708 [gst-plugins-bad1.0] iceweasel: GStreamer causes segmentation fault There is no source info for the package 'gst-plugins-bad1.0' at version '1.4.5-2' with architecture '' Unable to make a source version for version '1.4.5-2' Marked as found in versions 1.4.5-2. > End of message, stopping processing here. Please contact me if you need assistance. -- 788708: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788708 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From ftpmaster at ftp-master.debian.org Fri Sep 4 14:12:36 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 04 Sep 2015 14:12:36 +0000 Subject: Processing of gst-plugins-bad1.0_1.4.5-3_amd64.changes Message-ID: gst-plugins-bad1.0_1.4.5-3_amd64.changes uploaded successfully to localhost along with the files: gst-plugins-bad1.0_1.4.5-3.dsc gst-plugins-bad1.0_1.4.5-3.debian.tar.xz gstreamer1.0-plugins-bad-dbg_1.4.5-3_amd64.deb gstreamer1.0-plugins-bad-doc_1.4.5-3_all.deb gstreamer1.0-plugins-bad_1.4.5-3_amd64.deb libgstreamer-plugins-bad1.0-0_1.4.5-3_amd64.deb libgstreamer-plugins-bad1.0-dev_1.4.5-3_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From didi.debian at cknow.org Fri Sep 4 14:27:12 2015 From: didi.debian at cknow.org (Diederik de Haas) Date: Fri, 04 Sep 2015 16:27:12 +0200 Subject: Bug#788708: iceweasel: GStreamer causes segmentation fault In-Reply-To: <55E9A253.1070105@glorf.fr> References: <1440150236.24118.8.camel@zen.co.uk> <20150904133001.GA21964@agmartin.aq.upm.es> <55E9A253.1070105@glorf.fr> Message-ID: <1937544.dOJkVCkiTH@bagend> On Friday 04 September 2015 15:53:23 Guillaume Dupuy wrote: > Le 04/09/2015 15:30, Agustin Martin a ?crit : > > Hi, This may well be the same gstreamer1.0-plugins-bad problem > > reported in http://bugs.debian.org/797227. > > Indeed, updating gstreamer1.0-plugins-bad to the experimental version > solved this problem Same here. Thank you very much :) -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: This is a digitally signed message part. URL: From me at fabionatali.com Fri Sep 4 14:32:44 2015 From: me at fabionatali.com (Fabio Natali) Date: Fri, 4 Sep 2015 15:32:44 +0100 Subject: Bug#788708: iceweasel: GStreamer causes segmentation fault Message-ID: <55E9AB8C.1040402@fabionatali.com> On Fri, 4 Sep 2015 15:53:23 +0200 Guillaume Dupuy wrote: [...] > Indeed, updating gstreamer1.0-plugins-bad to the experimental version > solved this problem I was wrong and Guillaume right: updating to the Experimental version worked here too. Thanks! f -- Fabio Natali http://fabionatali.com From ftpmaster at ftp-master.debian.org Fri Sep 4 15:23:22 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 04 Sep 2015 15:23:22 +0000 Subject: gst-plugins-bad1.0_1.4.5-3_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 04 Sep 2015 16:58:00 +0300 Source: gst-plugins-bad1.0 Binary: gstreamer1.0-plugins-bad-doc gstreamer1.0-plugins-bad gstreamer1.0-plugins-bad-dbg libgstreamer-plugins-bad1.0-0 libgstreamer-plugins-bad1.0-dev Architecture: source amd64 all Version: 1.4.5-3 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gstreamer1.0-plugins-bad - GStreamer plugins from the "bad" set gstreamer1.0-plugins-bad-dbg - GStreamer plugins from the "bad" set (debug symbols) gstreamer1.0-plugins-bad-doc - GStreamer documentation for plugins from the "bad" set libgstreamer-plugins-bad1.0-0 - GStreamer development files for libraries from the "bad" set libgstreamer-plugins-bad1.0-dev - GStreamer development files for libraries from the "bad" set Closes: 788708 797227 Changes: gst-plugins-bad1.0 (1.4.5-3) unstable; urgency=medium . * debian/patches/03_fix-faad2-version-check.patch: + Fix faad2 version check, which caused wrong function prototypes to be used and as a result caused stack corruption (Closes: #797227, #788708). Checksums-Sha1: 16bdffb39540aac19114fc5d799b705d673882f1 4404 gst-plugins-bad1.0_1.4.5-3.dsc ea35573fd28a40d19808216eeab42191ddbc1160 32604 gst-plugins-bad1.0_1.4.5-3.debian.tar.xz fbed7ef61009fb36f65feacb031b02db2b17a8e8 7841456 gstreamer1.0-plugins-bad-dbg_1.4.5-3_amd64.deb 2b095a9ccf88f8a2f383bddd479252defb464d67 1249198 gstreamer1.0-plugins-bad-doc_1.4.5-3_all.deb 6721621a6b1975d346af3dbd2340e052873abbf0 2368716 gstreamer1.0-plugins-bad_1.4.5-3_amd64.deb f5143eb0249e2ed858926ad7bea7eb1ccff5e06f 1329698 libgstreamer-plugins-bad1.0-0_1.4.5-3_amd64.deb d1c32f4c3be0494cac5b0ddb6fe6207f5765eab1 1111356 libgstreamer-plugins-bad1.0-dev_1.4.5-3_amd64.deb Checksums-Sha256: cce5a6c9aef7613c6a4e96756b9479c5abc8acfc9f3073ecbd7097f89efc8526 4404 gst-plugins-bad1.0_1.4.5-3.dsc 3fb4750039fc71497b355559d98182910023c65728c12bb7627c8cde968cdd4b 32604 gst-plugins-bad1.0_1.4.5-3.debian.tar.xz b66a506eb8f488f20405fa4f98761f9ee60659744b546a2fd52fd9d605dec42c 7841456 gstreamer1.0-plugins-bad-dbg_1.4.5-3_amd64.deb 0e7274833b9f0e2a1bad5cd6192b7113f8eb4a6c43215a553dd23138df4a827d 1249198 gstreamer1.0-plugins-bad-doc_1.4.5-3_all.deb 26cc1c276d7db339e52c6d6de87b4f058dcfb894295932293189da6859aaa84f 2368716 gstreamer1.0-plugins-bad_1.4.5-3_amd64.deb 69fd6966d66bd2903d4df4a247c62feff504fb93e5f42ca0730f80f9d0afcd44 1329698 libgstreamer-plugins-bad1.0-0_1.4.5-3_amd64.deb fd4903a8d49baed6fc498e56c5520f916126ce52de92138772e590e04e6b0641 1111356 libgstreamer-plugins-bad1.0-dev_1.4.5-3_amd64.deb Files: 1aa82f95de8762f0cac889faea5c0fda 4404 libs extra gst-plugins-bad1.0_1.4.5-3.dsc d8c6b6f9c2d346681debc18b594dde02 32604 libs extra gst-plugins-bad1.0_1.4.5-3.debian.tar.xz eccf70ddc0a21725694ae3771da88023 7841456 debug extra gstreamer1.0-plugins-bad-dbg_1.4.5-3_amd64.deb 26486d14a8f79d18367c8799f689c16c 1249198 doc extra gstreamer1.0-plugins-bad-doc_1.4.5-3_all.deb 192b7810471ff3d02d931e4ac2b31528 2368716 libs extra gstreamer1.0-plugins-bad_1.4.5-3_amd64.deb 20014841ec18434b44b79d612795dddd 1329698 libs extra libgstreamer-plugins-bad1.0-0_1.4.5-3_amd64.deb 718e16951e0d507ca3c1650e241deb1f 1111356 libdevel extra libgstreamer-plugins-bad1.0-dev_1.4.5-3_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJV6aXQXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1bbQQAIxV8MYDdp5Cs3SG6km7lKsk EsVjola1RRo+SPpR8iGZO1/caq+MFkGrzHCfy8XlKIeiEVO4lqsILLSDPoOfBadJ Uqp3tqDmyZMt5NxKs/TxciOf1hAMKXo3HC0e79/5PyHAd5PZi8XPRkiJ/EVVPV9w kVpFlkM92tY4MfCNny8iaEyshajtKrMlKFknBih6BS75dDi957+oBi2PX5EtGbW9 4CS6XV+ZFwcJ33+BY/2TYpvBcNZoF1UVxs83IzAoSRQ0kBPjY6mV1X6iCoD22tk3 SxNeWD8Z52hFcIBgOBwGrU7ydAEoXcJqnSRgG4afTsg0SI4W26g6dOmuBUTgDeSR Rf+UksolSVQIEgNydzaEw7srTISCKFyL1/4grK4Bp5WHMXS6UYL6dJZr1v4OUVhZ NYWEHu3Pt/BONyKBF/cieaDaIwwdiOl/97sGmf+wsC8sCPF6871yY1gYQun7PL/d KENdvXcPC+u+4U6hW8fkatPRDdIY/d3KG+QLVcs3vNlKmLl2XiUleCgx6KLjp5LT zAmliGXBl95pih+1ymssdDvwEkT0b9M7vMvxhAm3GWcbcefMt9AXMawN8GjTF6/+ fVIF28DSy+4lxX1/23ZHhC3wCok5OMORcLpLD01W5+iUacon3y1oiWU4ub76A/RY l2arJfUB7ToHOuyZoCPz =E6tP -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From owner at bugs.debian.org Fri Sep 4 15:27:08 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 04 Sep 2015 15:27:08 +0000 Subject: Bug#788708: marked as done (iceweasel: GStreamer causes segmentation fault) References: Message-ID: Your message dated Fri, 04 Sep 2015 15:23:22 +0000 with message-id and subject line Bug#788708: fixed in gst-plugins-bad1.0 1.4.5-3 has caused the Debian Bug report #788708, regarding iceweasel: GStreamer causes segmentation fault 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 owner at bugs.debian.org immediately.) -- 788708: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788708 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Michael Schmid Subject: iceweasel: GStreamer causes segmentation fault Date: Sun, 14 Jun 2015 15:03:22 +0200 Size: 29680 URL: -------------- next part -------------- An embedded message was scrubbed... From: =?utf-8?q?Sebastian_Dr=C3=B6ge?= Subject: Bug#788708: fixed in gst-plugins-bad1.0 1.4.5-3 Date: Fri, 04 Sep 2015 15:23:22 +0000 Size: 7384 URL: From owner at bugs.debian.org Fri Sep 4 15:27:11 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 04 Sep 2015 15:27:11 +0000 Subject: Bug#797227: marked as done (segfault - gst_memory_unmap, libgstreamer) References: <1440786893.31764.3.camel@gmail.com> Message-ID: Your message dated Fri, 04 Sep 2015 15:23:22 +0000 with message-id and subject line Bug#797227: fixed in gst-plugins-bad1.0 1.4.5-3 has caused the Debian Bug report #797227, regarding segfault - gst_memory_unmap, libgstreamer 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 owner at bugs.debian.org immediately.) -- 797227: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=797227 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: jnqnfe Subject: segfault - gst_memory_unmap, libgstreamer Date: Fri, 28 Aug 2015 19:34:53 +0100 Size: 8575 URL: -------------- next part -------------- An embedded message was scrubbed... From: =?utf-8?q?Sebastian_Dr=C3=B6ge?= Subject: Bug#797227: fixed in gst-plugins-bad1.0 1.4.5-3 Date: Fri, 04 Sep 2015 15:23:22 +0000 Size: 7361 URL: From ftpmaster at ftp-master.debian.org Fri Sep 4 17:09:04 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 04 Sep 2015 17:09:04 +0000 Subject: Processing of gst-libav1.0_1.5.90-2_amd64.changes Message-ID: gst-libav1.0_1.5.90-2_amd64.changes uploaded successfully to localhost along with the files: gst-libav1.0_1.5.90-2.dsc gst-libav1.0_1.5.90-2.debian.tar.xz gstreamer1.0-libav-dbg_1.5.90-2_amd64.deb gstreamer1.0-libav_1.5.90-2_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 4 17:19:16 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 04 Sep 2015 17:19:16 +0000 Subject: gst-libav1.0_1.5.90-2_amd64.changes ACCEPTED into experimental Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 04 Sep 2015 17:54:25 +0100 Source: gst-libav1.0 Binary: gstreamer1.0-libav gstreamer1.0-libav-dbg Architecture: source amd64 Version: 1.5.90-2 Distribution: experimental Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Iain Lane Description: gstreamer1.0-libav - libav plugin for GStreamer gstreamer1.0-libav-dbg - libav plugin for GStreamer (debug symbols) Changes: gst-libav1.0 (1.5.90-2) experimental; urgency=medium . * debian/control: Add a Build-Dep on libswscale-dev - this is needed when building with system ffmpeg, as we do. Checksums-Sha1: a876b198df59141763bb76326d6b317cd290b2b3 2652 gst-libav1.0_1.5.90-2.dsc 3afc4fbe7b36a3bb05888d172531705f25cf1f57 10572 gst-libav1.0_1.5.90-2.debian.tar.xz 046bda167405e6bacd0e8dedfacdd17e0f2f47fa 469860 gstreamer1.0-libav-dbg_1.5.90-2_amd64.deb 68fcad87e94c773927d8434d0475203f3669ab19 182608 gstreamer1.0-libav_1.5.90-2_amd64.deb Checksums-Sha256: d9819fad6ba3e4a861773fd935595747a6c7ba10f1b558c676d4bb3fd4870ee4 2652 gst-libav1.0_1.5.90-2.dsc 82521382a9dc03f5d11f99b36e4f7cd89d26bc5ee33e9e993ab1e5afbaae687f 10572 gst-libav1.0_1.5.90-2.debian.tar.xz ed038d5b798186229374b032991bcd19752b6be65ef7e45cbb132d799e44d1aa 469860 gstreamer1.0-libav-dbg_1.5.90-2_amd64.deb 08b01e0ecd27359e2a5841e89c51b780bba1ff34b6381cd28d3e77f24577bd83 182608 gstreamer1.0-libav_1.5.90-2_amd64.deb Files: fbcae5043e94d096a613a1fa93888c2a 2652 libs optional gst-libav1.0_1.5.90-2.dsc 1756a36add36bc88384eefc8bcdff8c0 10572 libs optional gst-libav1.0_1.5.90-2.debian.tar.xz cce9152ae1ed91fca734a8b1e9340d89 469860 debug extra gstreamer1.0-libav-dbg_1.5.90-2_amd64.deb 76da4e3fb0f4da0d7af3c08dbd057383 182608 libs optional gstreamer1.0-libav_1.5.90-2_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBCgAGBQJV6c8gAAoJEONS1cUcUEHU2VcP/0aYrPFn3USVh+lPH+ET2TzP PWgx0Fpc8kDHuO9jKgNFLdDF/15a7wLvB0+WwaNwqJLF4WPwWwrcoy0pFS8wBay9 wSZcVyMl2Df9/oMOiWozP18H7oz7PsTflNaPU+mVCOmeY2HotEUpbi5qaj43zb08 kuhLrgtCL29xX9NHA8LH1p6QWoE9WxxVusEBExzlF1jVqanP+n4vSXGodeDehZzE 2kdgyw3L+cMj29pPb8pA+rkwt3XJLuyweKO8hbDi1dSMT/jWHQnMC61jLmeQkDXa 3csvB9BIEI8H/OOdlbSt5z6oar8tpWFd3DovUJorryjkkgQpM0r/nDHAC8n3DQbc vUrV+cuIS58TDFK5Gn3KPGZSvK/0j3nLZMw2coRcTic/G1SQLt+FimwBcHsFTNPt B6vCBd+0XjiCkJjva2g2LCGM+7MGHD7HSp/n5SadrG3KDq7GBOTvEfaR+8lS49Zs Rb15Pu/OcRVk1WDbsN3WON3u2V4Jn7zaLSEz47jQ4f1K0w3A6hGLsfT9hOyv+uF6 SEPjbzQJtImW/FuHQirCea6lWRT5Az4d2lc/Bvul2qpyf2NbbChqDJp9Vv7eCNE9 lFh6vDTByV2MmjIdFDtXT6VKoyG6Mr9dnytiG5ramJ1kEbLqBgtO8zRWm/6+dx+1 uuq1fbCa24HdX3yaF50/ =krTC -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From mlhpub at free.fr Sat Sep 5 20:27:57 2015 From: mlhpub at free.fr (Matt) Date: Sat, 05 Sep 2015 22:27:57 +0200 Subject: Bug#798120: gstreamer1.0-libav: libgstlibav.so cause Libre Office segmentation fault Message-ID: <20150905202757.3401.66952.reportbug@montreal> Package: gstreamer1.0-libav Version: 1.4.4-2 Severity: normal Dear Maintainer, Trying to look at a .PPS file with Libre Office, libgstlibav.so probably causes a segmentation fault. It happens when Libre Office try to switch in full screen mode with sounds effects. Impossible to reproduce if .PPS is saved in .PPT format without automatic full screen switching and slideshow starting. Syslog tells this : Sep 5 20:00:12 montreal kernel: [ 1924.538567] wavparse0:sink[2364]: segfault at 2d8 ip 00007ffa32d3abd4 sp 00007ffa4a221460 error 4 in libgstlibav.so[7ffa32d21000+37000] I have tried to install back gstreamer0.10-plugins-bad instead of gstreamer1.0-plugins-bad and the problem disappear with Libre Office (but others come back with Iceweasel). A but lost with these problems but may be help ? Thanks, Matthieu -- System Information: Debian Release: 8.2 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages gstreamer1.0-libav depends on: ii libavcodec56 10:2.6.4-dmo1 ii libavformat56 10:2.6.4-dmo1 ii libavutil54 10:2.6.4-dmo1 ii libc6 2.19-18+deb8u1 ii libglib2.0-0 2.42.1-1 ii libgstreamer-plugins-base1.0-0 1.4.4-2 ii libgstreamer1.0-0 1.4.4-2 gstreamer1.0-libav recommends no packages. gstreamer1.0-libav suggests no packages. -- no debconf information From noreply at release.debian.org Sun Sep 6 16:39:20 2015 From: noreply at release.debian.org (Debian testing watch) Date: Sun, 06 Sep 2015 16:39:20 +0000 Subject: gst-plugins-bad1.0 1.4.5-3 MIGRATED to testing Message-ID: FYI: The status of the gst-plugins-bad1.0 source package in Debian's testing distribution has changed. Previous version: 1.4.5-2 Current version: 1.4.5-3 -- 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. From noelamac at gmail.com Mon Sep 7 17:12:45 2015 From: noelamac at gmail.com (=?UTF-8?Q?Camale=C3=B3n?=) Date: Mon, 7 Sep 2015 19:12:45 +0200 Subject: Bug#768013: gstreamer1.0-libav: Missing dependency in wheezy-backports Message-ID: <20150907171245.GA7598@stt008.linux.site> Hi, Same here: *** root at stt008:/etc/apt# export LANGUAGE=en_US.UTF-8; apt-get -t wheezy-backports install gstreamer1.0-libav Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: gstreamer1.0-libav : Depends: libavcodec54 (>= 6:9.1-1) but it is not installable or libavcodec-extra-54 (>= 6:9.13) but it is not installable Depends: libavformat54 (>= 6:9.1-1) but it is not installable Depends: libavutil52 (>= 6:9.1-1) but it is not installable E: Unable to correct problems, you have held broken packages. *** I'm trying to get Firefox playing nicely with mp4 files but this bug prevented me from doing so :-) Hope it gets fixed any soon. Greetings, -- Camale?n From televigilancia02 at gmail.com Mon Sep 7 12:46:50 2015 From: televigilancia02 at gmail.com (GPS TELEVIGILANCIA) Date: Mon, 07 Sep 2015 12:46:50 +0000 Subject: GPS de Rastreo Satelital Para Vehiculos y Personas Message-ID: Your email client cannot read this email. To view it online, please go here: http://televigilancia.info/display.php?M=1245609&C=89ad2461c6f1e1692bcf030b5399a949&S=3&L=6&N=2 To stop receiving these emails:http://televigilancia.info/unsubscribe.php?M=1245609&C=89ad2461c6f1e1692bcf030b5399a949&L=6&N=3 -------------- next part -------------- An HTML attachment was scrubbed... URL: From rotemmusic9 at gmail.com Tue Sep 8 21:39:01 2015 From: rotemmusic9 at gmail.com (Rotem Hecht) Date: Wed, 9 Sep 2015 00:39:01 +0300 Subject: Music composer for film, games and Tv commercials Message-ID: <55ef5571.cb09b40a.e16ae.2a09@mx.google.com> Hello I hope you well I am Rotem Hecht. I work as a professional music composer and sound designer, I'm based in Israel (soon in Florida) and working with production companies all over the world. I compose original music for movies, television commercials, video games, events, corporate videos and I am open to other media scenarios. My portfolio includes projects performed for Microsoft, Hershey's, Kre-O, Hasbro, Mercedes, Audi, Nickelodeon, Hop! TV Channel and more I?m capable of delivering high quality products at decent rates and in short period of time. I would like to offer you my services. Please check my portfolio on my website www.rotemmusic.com Thank You for your time. Best Regards , Rotem Hecht Mob:+972-528-227726 rotemhecht at gmail.com Skype: rhecht1282 Unsubscribe -------------- next part -------------- An HTML attachment was scrubbed... URL: From owner at bugs.debian.org Sat Sep 12 14:30:08 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Sep 2015 14:30:08 +0000 Subject: Processed: reassign to gstreamer1.0-vaapi References: <1442068092.12216.7.camel@gmail.com> Message-ID: Processing commands for control at bugs.debian.org: > reassign 777333 gstreamer1.0-vaapi 0.5.9-2 Bug #777333 {Done: Tilman Schr?der } [nvidia-vdpau-driver] Iceweasel: Iceweasel crashes at the end of mp4 playback (with vdpau & nvidia-driver?) Bug reassigned from package 'nvidia-vdpau-driver' to 'gstreamer1.0-vaapi'. Ignoring request to alter found versions of bug #777333 to the same values previously set Ignoring request to alter fixed versions of bug #777333 to the same values previously set Bug #777333 {Done: Tilman Schr?der } [gstreamer1.0-vaapi] Iceweasel: Iceweasel crashes at the end of mp4 playback (with vdpau & nvidia-driver?) Marked as found in versions gstreamer-vaapi/0.5.9-2. > fixed 777333 0.6.0-1 Bug #777333 {Done: Tilman Schr?der } [gstreamer1.0-vaapi] Iceweasel: Iceweasel crashes at the end of mp4 playback (with vdpau & nvidia-driver?) Marked as fixed in versions gstreamer-vaapi/0.6.0-1. > thanks Stopping processing here. Please contact me if you need assistance. -- 777333: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=777333 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From owner at bugs.debian.org Sat Sep 12 14:39:22 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Sep 2015 14:39:22 +0000 Subject: Processed: fixed in new version References: <1442068684.12216.10.camel@gmail.com> Message-ID: Processing commands for control at bugs.debian.org: > fixed 784893 0.6.0-1 Bug #784893 [gstreamer1.0-vaapi] gstreamer1.0-vaapi: Iceweasel segfaults on some websites when gstreamer1.0-vaapi is installed Marked as fixed in versions gstreamer-vaapi/0.6.0-1. > reopen 777333 Bug #777333 {Done: Tilman Schr?der } [gstreamer1.0-vaapi] Iceweasel: Iceweasel crashes at the end of mp4 playback (with vdpau & nvidia-driver?) 'reopen' may be inappropriate when a bug has been closed with a version; all fixed versions will be cleared, and you may need to re-add them. Bug reopened No longer marked as fixed in versions gstreamer-vaapi/0.6.0-1. > severity 777333 normal Bug #777333 [gstreamer1.0-vaapi] Iceweasel: Iceweasel crashes at the end of mp4 playback (with vdpau & nvidia-driver?) Severity set to 'normal' from 'important' > merge 784893 777333 Bug #784893 [gstreamer1.0-vaapi] gstreamer1.0-vaapi: Iceweasel segfaults on some websites when gstreamer1.0-vaapi is installed Bug #777333 [gstreamer1.0-vaapi] Iceweasel: Iceweasel crashes at the end of mp4 playback (with vdpau & nvidia-driver?) Marked as fixed in versions gstreamer-vaapi/0.6.0-1. Merged 777333 784893 > thanks Stopping processing here. Please contact me if you need assistance. -- 777333: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=777333 784893: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784893 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From luca.boccassi at gmail.com Sat Sep 12 14:43:53 2015 From: luca.boccassi at gmail.com (Luca Boccassi) Date: Sat, 12 Sep 2015 15:43:53 +0100 Subject: Bug#777333: Reopened and merged Message-ID: <1442069033.12216.13.camel@gmail.com> Dear gstreamer-vaapi Maintaner(s), I reopened 777333 to merge it with 784893. I verified that the backtraces are the same, and that the problem when running on top of nvidia-vdpau is solved by upgrading to 0.6.0-1. Feel free to close again in case a backport of the fix to Jessie will not happen. Thanks! Kind regards, Luca Boccassi -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: This is a digitally signed message part URL: From owner at bugs.debian.org Tue Sep 15 21:03:11 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue, 15 Sep 2015 21:03:11 +0000 Subject: Processed: severity of 785901 is serious References: <1442350893-1489-bts-jmm@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > severity 785901 serious Bug #785901 [src:gnonlin] gnonlin: Please update to GStreamer 1.x Severity set to 'serious' from 'important' > thanks Stopping processing here. Please contact me if you need assistance. -- 785901: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785901 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From owner at bugs.debian.org Tue Sep 15 21:03:11 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue, 15 Sep 2015 21:03:11 +0000 Subject: Processed: severity of 785901 is serious References: <1442350893-1489-bts-jmm@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > severity 785901 serious Bug #785901 [src:gnonlin] gnonlin: Please update to GStreamer 1.x Severity set to 'serious' from 'important' > thanks Stopping processing here. Please contact me if you need assistance. -- 785901: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785901 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From owner at bugs.debian.org Tue Sep 15 21:42:37 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue, 15 Sep 2015 21:42:37 +0000 Subject: Processed: severity of 785852 is serious References: <1442353306-923-bts-jmm@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > severity 785852 serious Bug #785852 [src:pigment] pigment: Please update to GStreamer 1.x Severity set to 'serious' from 'important' > thanks Stopping processing here. Please contact me if you need assistance. -- 785852: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785852 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From owner at bugs.debian.org Tue Sep 15 21:42:40 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue, 15 Sep 2015 21:42:40 +0000 Subject: Processed: severity of 785858 is serious References: <1442353338-3108-bts-jmm@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > severity 785858 serious Bug #785858 [src:pigment-python] pigment-python: Please update to GStreamer 1.x Severity set to 'serious' from 'important' > thanks Stopping processing here. Please contact me if you need assistance. -- 785858: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785858 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From owner at bugs.debian.org Wed Sep 16 00:30:22 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 00:30:22 +0000 Subject: Processed: tagging 799089, tagging 779745, tagging 785918, tagging 785915, tagging 785913, tagging 785910 ... References: <1442363198-1762-bts-anbe@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > tags 799089 + sid stretch Bug #799089 [mopidy-soundcloud] Depends on gstreamer0.10-plugins-ugly Added tag(s) sid and stretch. > tags 779745 + sid stretch Bug #779745 [src:inn] inn: Transition to libsystemd Added tag(s) stretch and sid. > tags 785918 + sid stretch Bug #785918 [src:playitslowly] playitslowly: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785915 + sid stretch Bug #785915 [src:yauap] yauap: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785913 + sid stretch Bug #785913 [src:perroquet] perroquet: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785910 + sid stretch Bug #785910 [src:mopidy] mopidy: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785908 + sid stretch Bug #785908 [src:arista] arista: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785906 + sid stretch Bug #785906 [src:gstreamer-sharp] gstreamer-sharp: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785901 + sid stretch Bug #785901 [src:gnonlin] gnonlin: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785897 + sid stretch Bug #785897 [src:exaile] exaile: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785891 + sid stretch Bug #785891 [src:psimedia] psimedia: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785890 + sid stretch Bug #785890 [src:minirok] minirok: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785877 + sid stretch Bug #785877 [src:radiotray] radiotray: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785867 + sid stretch Bug #785867 [src:morituri] morituri: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785865 + sid stretch Bug #785865 [src:numm] numm: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785842 + sid stretch Bug #785842 [src:istanbul] istanbul: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785841 + sid stretch Bug #785841 [src:audiopreview] audiopreview: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785840 + sid stretch Bug #785840 [src:gcompris] gcompris: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785835 + sid stretch Bug #785835 [src:gstreamer0.10-dvswitch] gstreamer0.10-dvswitch: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785832 + sid stretch Bug #785832 [src:gamine] gamine: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785825 + sid stretch Bug #785825 [src:decibel-audio-player] decibel-audio-player: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 779765 + sid stretch Bug #779765 {Done: Michael Biebl } [src:syslog-ng] syslog-ng: Transition to libsystemd Added tag(s) sid and stretch. > tags 785835 + sid stretch Bug #785835 [src:gstreamer0.10-dvswitch] gstreamer0.10-dvswitch: Please update to GStreamer 1.x Ignoring request to alter tags of bug #785835 to the same tags previously set > thanks Stopping processing here. Please contact me if you need assistance. -- 779745: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779745 779765: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779765 785825: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785825 785832: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785832 785835: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785835 785840: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785840 785841: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785841 785842: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785842 785865: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785865 785867: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785867 785877: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785877 785890: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785890 785891: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785891 785897: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785897 785901: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785901 785906: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785906 785908: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785908 785910: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785910 785913: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785913 785915: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785915 785918: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785918 799089: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799089 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From owner at bugs.debian.org Wed Sep 16 00:30:22 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 00:30:22 +0000 Subject: Processed: tagging 799089, tagging 779745, tagging 785918, tagging 785915, tagging 785913, tagging 785910 ... References: <1442363198-1762-bts-anbe@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > tags 799089 + sid stretch Bug #799089 [mopidy-soundcloud] Depends on gstreamer0.10-plugins-ugly Added tag(s) sid and stretch. > tags 779745 + sid stretch Bug #779745 [src:inn] inn: Transition to libsystemd Added tag(s) stretch and sid. > tags 785918 + sid stretch Bug #785918 [src:playitslowly] playitslowly: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785915 + sid stretch Bug #785915 [src:yauap] yauap: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785913 + sid stretch Bug #785913 [src:perroquet] perroquet: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785910 + sid stretch Bug #785910 [src:mopidy] mopidy: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785908 + sid stretch Bug #785908 [src:arista] arista: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785906 + sid stretch Bug #785906 [src:gstreamer-sharp] gstreamer-sharp: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785901 + sid stretch Bug #785901 [src:gnonlin] gnonlin: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785897 + sid stretch Bug #785897 [src:exaile] exaile: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785891 + sid stretch Bug #785891 [src:psimedia] psimedia: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785890 + sid stretch Bug #785890 [src:minirok] minirok: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785877 + sid stretch Bug #785877 [src:radiotray] radiotray: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785867 + sid stretch Bug #785867 [src:morituri] morituri: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785865 + sid stretch Bug #785865 [src:numm] numm: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785842 + sid stretch Bug #785842 [src:istanbul] istanbul: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785841 + sid stretch Bug #785841 [src:audiopreview] audiopreview: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785840 + sid stretch Bug #785840 [src:gcompris] gcompris: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785835 + sid stretch Bug #785835 [src:gstreamer0.10-dvswitch] gstreamer0.10-dvswitch: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785832 + sid stretch Bug #785832 [src:gamine] gamine: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785825 + sid stretch Bug #785825 [src:decibel-audio-player] decibel-audio-player: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 779765 + sid stretch Bug #779765 {Done: Michael Biebl } [src:syslog-ng] syslog-ng: Transition to libsystemd Added tag(s) sid and stretch. > tags 785835 + sid stretch Bug #785835 [src:gstreamer0.10-dvswitch] gstreamer0.10-dvswitch: Please update to GStreamer 1.x Ignoring request to alter tags of bug #785835 to the same tags previously set > thanks Stopping processing here. Please contact me if you need assistance. -- 779745: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779745 779765: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=779765 785825: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785825 785832: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785832 785835: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785835 785840: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785840 785841: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785841 785842: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785842 785865: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785865 785867: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785867 785877: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785877 785890: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785890 785891: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785891 785897: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785897 785901: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785901 785906: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785906 785908: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785908 785910: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785910 785913: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785913 785915: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785915 785918: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785918 799089: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799089 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From owner at bugs.debian.org Wed Sep 16 02:15:20 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 02:15:20 +0000 Subject: Processed: reassign 490553 to src:webkitgtk, reassign 384839 to src:gtkhtml4.0, reassign 469907 to src:webkitgtk ... References: <1442369551-2373-bts-anbe@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > # reassigning bugs filed against no longer existing binary packages to their respective source packages > reassign 490553 src:webkitgtk 1.0.1-2 Bug #490553 [libwebkit-1.0-1] Recommend npapi plugins? Warning: Unknown package 'libwebkit-1.0-1' Bug reassigned from package 'libwebkit-1.0-1' to 'src:webkitgtk'. No longer marked as found in versions webkit/1.0.1-2. Ignoring request to alter fixed versions of bug #490553 to the same values previously set Bug #490553 [src:webkitgtk] Recommend npapi plugins? The source 'webkitgtk' and version '1.0.1-2' do not appear to match any binary packages Marked as found in versions webkitgtk/1.0.1-2. > reassign 384839 src:gtkhtml4.0 3.10.3-1 Bug #384839 [libgtkhtml3.8-dev] libgtkhtml3.8-dev: Add suitable documentation Warning: Unknown package 'libgtkhtml3.8-dev' Bug reassigned from package 'libgtkhtml3.8-dev' to 'src:gtkhtml4.0'. No longer marked as found in versions gtkhtml3.8/3.10.3-1. Ignoring request to alter fixed versions of bug #384839 to the same values previously set Bug #384839 [src:gtkhtml4.0] libgtkhtml3.8-dev: Add suitable documentation The source 'gtkhtml4.0' and version '3.10.3-1' do not appear to match any binary packages Marked as found in versions gtkhtml4.0/3.10.3-1. > reassign 469907 src:webkitgtk 1.4.12-1 Bug #469907 [libwebkit-1.0-1] libwebkitgtk0d: Does not implement cut&paste Warning: Unknown package 'libwebkit-1.0-1' Bug reassigned from package 'libwebkit-1.0-1' to 'src:webkitgtk'. Ignoring request to alter found versions of bug #469907 to the same values previously set Ignoring request to alter fixed versions of bug #469907 to the same values previously set Bug #469907 [src:webkitgtk] libwebkitgtk0d: Does not implement cut&paste The source 'webkitgtk' and version '1.4.12-1' do not appear to match any binary packages Marked as found in versions webkitgtk/1.4.12-1. > reassign 494452 src:webkitgtk 1.0.1-2 Bug #494452 [libwebkit-1.0-1] textarea scrollbars do not honour gtk-scrolled-window-placement = GTK_CORNER_TOP_RIGHT Warning: Unknown package 'libwebkit-1.0-1' Bug reassigned from package 'libwebkit-1.0-1' to 'src:webkitgtk'. No longer marked as found in versions webkit/1.0.1-2. Ignoring request to alter fixed versions of bug #494452 to the same values previously set Bug #494452 [src:webkitgtk] textarea scrollbars do not honour gtk-scrolled-window-placement = GTK_CORNER_TOP_RIGHT The source 'webkitgtk' and version '1.0.1-2' do not appear to match any binary packages Marked as found in versions webkitgtk/1.0.1-2. > reassign 474586 src:kdepim 4:3.5.9-2 Bug #474586 [libkcal2b] libkcal2b: Contains duplicate timezone info. Warning: Unknown package 'libkcal2b' Bug reassigned from package 'libkcal2b' to 'src:kdepim'. No longer marked as found in versions kdepim/4:3.5.9-2. Ignoring request to alter fixed versions of bug #474586 to the same values previously set Bug #474586 [src:kdepim] libkcal2b: Contains duplicate timezone info. Marked as found in versions kdepim/4:3.5.9-2. > reassign 544813 src:libgda5 3.0.2-6 Bug #544813 [libgda3-bin] libgda3-bin: documented option --usage not supported by gda-config-tool-3.0 Warning: Unknown package 'libgda3-bin' Bug reassigned from package 'libgda3-bin' to 'src:libgda5'. No longer marked as found in versions libgda3/3.0.2-6. Ignoring request to alter fixed versions of bug #544813 to the same values previously set Bug #544813 [src:libgda5] libgda3-bin: documented option --usage not supported by gda-config-tool-3.0 The source 'libgda5' and version '3.0.2-6' do not appear to match any binary packages Marked as found in versions libgda5/3.0.2-6. > reassign 432209 src:evolution-data-server 1.6.3-5etch1 Bug #432209 [libedata-cal1.2-5] Evolution Calendar crashes when altering event times Warning: Unknown package 'libedata-cal1.2-5' Bug reassigned from package 'libedata-cal1.2-5' to 'src:evolution-data-server'. No longer marked as found in versions 1.6.3-5etch1. Ignoring request to alter fixed versions of bug #432209 to the same values previously set Bug #432209 [src:evolution-data-server] Evolution Calendar crashes when altering event times Marked as found in versions evolution-data-server/1.6.3-5etch1. > reassign 275705 src:gstreamer0.10 0.8.7-1 Bug #275705 [libgstreamer0.8-0] use with transmeta crusoe leads to nasty staticy sounds when the load changes Warning: Unknown package 'libgstreamer0.8-0' Bug reassigned from package 'libgstreamer0.8-0' to 'src:gstreamer0.10'. No longer marked as found in versions 0.8.7-1. Ignoring request to alter fixed versions of bug #275705 to the same values previously set Bug #275705 [src:gstreamer0.10] use with transmeta crusoe leads to nasty staticy sounds when the load changes The source 'gstreamer0.10' and version '0.8.7-1' do not appear to match any binary packages Marked as found in versions gstreamer0.10/0.8.7-1. > reassign 376579 src:gnome-vfs Bug #376579 [libgnome-vfs0] evince: Won't load files with relative path and : in name Bug #462943 [libgnome-vfs0] fails to open filename with colon from command line Bug #473222 [libgnome-vfs0] evince: Fails to open files with colons in their name Warning: Unknown package 'libgnome-vfs0' Bug reassigned from package 'libgnome-vfs0' to 'src:gnome-vfs'. Bug reassigned from package 'libgnome-vfs0' to 'src:gnome-vfs'. Bug reassigned from package 'libgnome-vfs0' to 'src:gnome-vfs'. Ignoring request to alter found versions of bug #376579 to the same values previously set Ignoring request to alter found versions of bug #462943 to the same values previously set Ignoring request to alter found versions of bug #473222 to the same values previously set Ignoring request to alter fixed versions of bug #376579 to the same values previously set Ignoring request to alter fixed versions of bug #462943 to the same values previously set Ignoring request to alter fixed versions of bug #473222 to the same values previously set > reassign 349267 src:gnome-vfs Bug #349267 [libgnome-vfs0] libgnome-vfs0: nautilus fails to access smb Warning: Unknown package 'libgnome-vfs0' Bug reassigned from package 'libgnome-vfs0' to 'src:gnome-vfs'. Ignoring request to alter found versions of bug #349267 to the same values previously set Ignoring request to alter fixed versions of bug #349267 to the same values previously set > reassign 292568 src:gnome-vfs 1.0.5-5 Bug #292568 [libgnome-vfs0] libgnome-vfs0: nautilus fails to access sftp Warning: Unknown package 'libgnome-vfs0' Bug reassigned from package 'libgnome-vfs0' to 'src:gnome-vfs'. No longer marked as found in versions 1.0.5-5. Ignoring request to alter fixed versions of bug #292568 to the same values previously set Bug #292568 [src:gnome-vfs] libgnome-vfs0: nautilus fails to access sftp Marked as found in versions gnome-vfs/1.0.5-5. > reassign 409840 src:gnome-vfs Bug #409840 [gnome-vfs-extfs] gnome-vfs-extfs: please clarify what 'GMC' is in the description Warning: Unknown package 'gnome-vfs-extfs' Bug reassigned from package 'gnome-vfs-extfs' to 'src:gnome-vfs'. Ignoring request to alter found versions of bug #409840 to the same values previously set Ignoring request to alter fixed versions of bug #409840 to the same values previously set > reassign 445549 src:gnome-vfs 1:2.20.0-2 Bug #445549 [gnome-vfs2] 24_home_dir_fakeroot seems to leak memory Warning: Unknown package 'gnome-vfs2' Bug reassigned from package 'gnome-vfs2' to 'src:gnome-vfs'. No longer marked as found in versions 1:2.20.0-2. Ignoring request to alter fixed versions of bug #445549 to the same values previously set Bug #445549 [src:gnome-vfs] 24_home_dir_fakeroot seems to leak memory Marked as found in versions gnome-vfs/1:2.20.0-2. > reassign 213273 src:gnome-vfs Bug #213273 [libgnome-vfs-common] libgnome-vfs-common: abandons /etc/vfs on purge Warning: Unknown package 'libgnome-vfs-common' Bug reassigned from package 'libgnome-vfs-common' to 'src:gnome-vfs'. Ignoring request to alter found versions of bug #213273 to the same values previously set Ignoring request to alter fixed versions of bug #213273 to the same values previously set > thanks Stopping processing here. Please contact me if you need assistance. -- 213273: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=213273 275705: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=275705 292568: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=292568 349267: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=349267 376579: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376579 384839: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=384839 409840: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=409840 432209: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=432209 445549: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=445549 462943: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=462943 469907: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=469907 473222: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473222 474586: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474586 490553: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=490553 494452: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=494452 544813: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=544813 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From noreply at release.debian.org Wed Sep 16 04:39:04 2015 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Wed, 16 Sep 2015 04:39:04 +0000 Subject: pigment-python is marked for autoremoval from testing Message-ID: pigment-python 0.3.12-2.1 is marked for autoremoval from testing on 2015-10-01 It is affected by these RC bugs: 785858: pigment-python: Please update to GStreamer 1.x From noreply at release.debian.org Wed Sep 16 04:39:04 2015 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Wed, 16 Sep 2015 04:39:04 +0000 Subject: pigment is marked for autoremoval from testing Message-ID: pigment 0.3.17-1 is marked for autoremoval from testing on 2015-10-01 It is affected by these RC bugs: 785852: pigment: Please update to GStreamer 1.x From noreply at release.debian.org Wed Sep 16 04:39:06 2015 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Wed, 16 Sep 2015 04:39:06 +0000 Subject: gnonlin is marked for autoremoval from testing Message-ID: gnonlin 0.10.17-2 is marked for autoremoval from testing on 2015-10-16 It is affected by these RC bugs: 785901: gnonlin: Please update to GStreamer 1.x From noreply at release.debian.org Wed Sep 16 04:39:07 2015 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Wed, 16 Sep 2015 04:39:07 +0000 Subject: gstreamer0.10-editing-services is marked for autoremoval from testing Message-ID: gstreamer0.10-editing-services 0.10.1-2 is marked for autoremoval from testing on 2015-10-16 It (build-)depends on packages with these RC bugs: 785901: gnonlin: Please update to GStreamer 1.x From noreply at release.debian.org Wed Sep 16 04:39:06 2015 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Wed, 16 Sep 2015 04:39:06 +0000 Subject: gnonlin is marked for autoremoval from testing Message-ID: gnonlin 0.10.17-2 is marked for autoremoval from testing on 2015-10-16 It is affected by these RC bugs: 785901: gnonlin: Please update to GStreamer 1.x From noreply at release.debian.org Wed Sep 16 04:39:06 2015 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Wed, 16 Sep 2015 04:39:06 +0000 Subject: gnonlin is marked for autoremoval from testing Message-ID: gnonlin 0.10.17-2 is marked for autoremoval from testing on 2015-10-16 It is affected by these RC bugs: 785901: gnonlin: Please update to GStreamer 1.x From owner at bugs.debian.org Wed Sep 16 09:15:26 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 09:15:26 +0000 Subject: Processed: tagging 799104, tagging 785928, tagging 785922, tagging 785886, tagging 785876, tagging 785873 ... References: <1442394601-4044-bts-anbe@debian.org> Message-ID: Processing commands for control at bugs.debian.org: > tags 799104 + sid stretch Bug #799104 [fso-sounds-yue-base] Depends on gstreamer0.10-plugins-base Added tag(s) sid and stretch. > tags 785928 + sid stretch Bug #785928 [src:gst-chromaprint] gst-chromaprint: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785922 + sid stretch Bug #785922 [src:pychess] pychess: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785886 + sid stretch Bug #785886 [src:guayadeque] guayadeque: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785876 + sid stretch Bug #785876 [src:turpial] turpial: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785873 + sid stretch Bug #785873 [src:libgstreamer-interfaces-perl] libgstreamer-interfaces-perl: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785869 + sid stretch Bug #785869 [src:psychtoolbox-3] psychtoolbox-3: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785858 + sid stretch Bug #785858 [src:pigment-python] pigment-python: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785856 + sid stretch Bug #785856 [src:libgstreamer-perl] libgstreamer-perl: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785853 + sid stretch Bug #785853 [src:subtitlecomposer] subtitlecomposer: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785852 + sid stretch Bug #785852 [src:pigment] pigment: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785839 + sid stretch Bug #785839 [src:gnome-video-arcade] gnome-video-arcade: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785838 + sid stretch Bug #785838 [src:drawtk] drawtk: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785833 + sid stretch Bug #785833 [src:bluemindo] bluemindo: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785822 + sid stretch Bug #785822 [src:gnome-subtitles] gnome-subtitles: Please update to GStreamer 1.x Added tag(s) sid and stretch. > tags 785818 + sid stretch Bug #785818 [src:advene] advene: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 785817 + sid stretch Bug #785817 [src:gnac] gnac: Please update to GStreamer 1.x Added tag(s) stretch and sid. > tags 799104 + sid stretch Bug #799104 [fso-sounds-yue-base] Depends on gstreamer0.10-plugins-base Ignoring request to alter tags of bug #799104 to the same tags previously set > thanks Stopping processing here. Please contact me if you need assistance. -- 785817: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785817 785818: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785818 785822: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785822 785833: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785833 785838: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785838 785839: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785839 785852: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785852 785853: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785853 785856: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785856 785858: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785858 785869: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785869 785873: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785873 785876: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785876 785886: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785886 785922: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785922 785928: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785928 799104: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799104 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From ftpmaster at ftp-master.debian.org Wed Sep 16 13:32:07 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 16 Sep 2015 13:32:07 +0000 Subject: Bug#799085: Removed package(s) from unstable Message-ID: We believe that the bug you reported is now fixed; the following package(s) have been removed from unstable: ges0.10-tools | 0.10.1-2 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x ges0.10-tools | 0.10.1-2+b1 | hurd-i386 gir1.2-ges-0.10 | 0.10.1-2 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x gir1.2-ges-0.10 | 0.10.1-2+b1 | hurd-i386 gstreamer0.10-editing-services | 0.10.1-2 | source libges-0.10-0 | 0.10.1-2 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x libges-0.10-0 | 0.10.1-2+b1 | hurd-i386 libges-0.10-dev | 0.10.1-2 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x libges-0.10-dev | 0.10.1-2+b1 | hurd-i386 libges-0.10-doc | 0.10.1-2 | all ------------------- Reason ------------------- RoQA; gstreamer 0.10 is deprecated ---------------------------------------------- Note that the package(s) have simply been removed from the tag database and may (or may not) still be in the pool; this is not a bug. The package(s) will be physically removed automatically when no suite references them (and in the case of source, when no binary references it). Please also remember that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. Packages are usually not removed from testing by hand. Testing tracks unstable and will automatically remove packages which were removed from unstable when removing them from testing causes no dependency problems. The release team can force a removal from testing if it is really needed, please contact them if this should be the case. We try to close bugs which have been reported against this package automatically. But please check all old bugs, if they were closed correctly or should have been re-assigned to another package. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 799085 at bugs.debian.org. The full log for this bug can be viewed at https://bugs.debian.org/799085 This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster at ftp-master.debian.org. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain) From ftpmaster at ftp-master.debian.org Wed Sep 16 13:32:13 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 16 Sep 2015 13:32:13 +0000 Subject: Bug#799085: Removed package(s) from unstable Message-ID: Version: 0.10.1-2+rm Dear submitter, as the package gstreamer0.10-editing-services has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/799085 The version of this package that was in Debian prior to this removal can still be found using http://snapshot.debian.org/. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster at ftp-master.debian.org. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain) From owner at bugs.debian.org Wed Sep 16 13:33:10 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 13:33:10 +0000 Subject: Bug#624739: marked as done (formating issue with long description) References: <20110501042358.GA17139@violet> Message-ID: Your message dated Wed, 16 Sep 2015 13:32:13 +0000 with message-id and subject line Bug#799085: Removed package(s) from unstable has caused the Debian Bug report #624739, regarding formating issue with long description 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 owner at bugs.debian.org immediately.) -- 624739: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624739 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Gerfried Fuchs Subject: formating issue with long description Date: Sun, 1 May 2011 06:23:58 +0200 Size: 2570 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#799085: Removed package(s) from unstable Date: Wed, 16 Sep 2015 13:32:13 +0000 Size: 2891 URL: From owner at bugs.debian.org Wed Sep 16 13:33:13 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 13:33:13 +0000 Subject: Bug#744588: marked as done (gstreamer0.10-editing-services: run dh-autoreconf to update config.{sub,guess} and {libtool,aclocal}.m4) References: Message-ID: Your message dated Wed, 16 Sep 2015 13:32:13 +0000 with message-id and subject line Bug#799085: Removed package(s) from unstable has caused the Debian Bug report #744588, regarding gstreamer0.10-editing-services: run dh-autoreconf to update config.{sub,guess} and {libtool,aclocal}.m4 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 owner at bugs.debian.org immediately.) -- 744588: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744588 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Matthias Klose Subject: gstreamer0.10-editing-services: run dh-autoreconf to update config.{sub,guess} and {libtool,aclocal}.m4 Date: Sun, 13 Apr 2014 16:50:51 +0000 Size: 5918 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#799085: Removed package(s) from unstable Date: Wed, 16 Sep 2015 13:32:13 +0000 Size: 2923 URL: From ftpmaster at ftp-master.debian.org Wed Sep 16 13:42:02 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 16 Sep 2015 13:42:02 +0000 Subject: Bug#799171: Removed package(s) from unstable Message-ID: We believe that the bug you reported is now fixed; the following package(s) have been removed from unstable: libpigment-dbg | 0.3.17-1 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x libpigment-dbg | 0.3.17-1+b1 | hurd-i386 libpigment0.3-11 | 0.3.17-1 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x libpigment0.3-11 | 0.3.17-1+b1 | hurd-i386 libpigment0.3-dev | 0.3.17-1 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x libpigment0.3-dev | 0.3.17-1+b1 | hurd-i386 pigment | 0.3.17-1 | source ------------------- Reason ------------------- ROM; obsolete ---------------------------------------------- Note that the package(s) have simply been removed from the tag database and may (or may not) still be in the pool; this is not a bug. The package(s) will be physically removed automatically when no suite references them (and in the case of source, when no binary references it). Please also remember that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. Packages are usually not removed from testing by hand. Testing tracks unstable and will automatically remove packages which were removed from unstable when removing them from testing causes no dependency problems. The release team can force a removal from testing if it is really needed, please contact them if this should be the case. We try to close bugs which have been reported against this package automatically. But please check all old bugs, if they were closed correctly or should have been re-assigned to another package. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 799171 at bugs.debian.org. The full log for this bug can be viewed at https://bugs.debian.org/799171 This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster at ftp-master.debian.org. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain) From ftpmaster at ftp-master.debian.org Wed Sep 16 13:42:09 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 16 Sep 2015 13:42:09 +0000 Subject: Bug#799171: Removed package(s) from unstable Message-ID: Version: 0.3.17-1+rm Dear submitter, as the package pigment has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/799171 The version of this package that was in Debian prior to this removal can still be found using http://snapshot.debian.org/. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster at ftp-master.debian.org. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain) From ftpmaster at ftp-master.debian.org Wed Sep 16 13:42:40 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 16 Sep 2015 13:42:40 +0000 Subject: Bug#799171: Removed package(s) from unstable Message-ID: We believe that the bug you reported is now fixed; the following package(s) have been removed from unstable: pigment-python | 0.3.12-2.1 | source python-pgm | 0.3.12-2.1 | amd64, arm64, armel, armhf, hurd-i386, i386, kfreebsd-amd64, kfreebsd-i386, mips, mipsel, powerpc, ppc64el, s390x ------------------- Reason ------------------- ROM; obsolete ---------------------------------------------- Note that the package(s) have simply been removed from the tag database and may (or may not) still be in the pool; this is not a bug. The package(s) will be physically removed automatically when no suite references them (and in the case of source, when no binary references it). Please also remember that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. Packages are usually not removed from testing by hand. Testing tracks unstable and will automatically remove packages which were removed from unstable when removing them from testing causes no dependency problems. The release team can force a removal from testing if it is really needed, please contact them if this should be the case. We try to close bugs which have been reported against this package automatically. But please check all old bugs, if they were closed correctly or should have been re-assigned to another package. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 799171 at bugs.debian.org. The full log for this bug can be viewed at https://bugs.debian.org/799171 This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster at ftp-master.debian.org. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain) From ftpmaster at ftp-master.debian.org Wed Sep 16 13:42:46 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 16 Sep 2015 13:42:46 +0000 Subject: Bug#799171: Removed package(s) from unstable Message-ID: Version: 0.3.12-2.1+rm Dear submitter, as the package pigment-python has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/799171 The version of this package that was in Debian prior to this removal can still be found using http://snapshot.debian.org/. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster at ftp-master.debian.org. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain) From slomo at debian.org Wed Sep 16 13:42:27 2015 From: slomo at debian.org (Sebastian =?UTF-8?Q?Dr=C3=B6ge?=) Date: Wed, 16 Sep 2015 15:42:27 +0200 Subject: Bug#799174: Should not be part of next release Message-ID: <1442410947.2347.24.camel@debian.org> Package: liboil Severity: serious Tags: sid stretch liboil should not be part of the next release and should be removed, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=792121 for the reasoning. Only one package is holding it back right now. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 949 bytes Desc: This is a digitally signed message part URL: From owner at bugs.debian.org Wed Sep 16 13:45:11 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 13:45:11 +0000 Subject: Bug#558529: marked as done (Missing autoreconf to fix 554821 or similar bugs in the future) References: <200911290157.09468992219.peter.fritzsche@gmx.de> Message-ID: Your message dated Wed, 16 Sep 2015 13:42:09 +0000 with message-id and subject line Bug#799171: Removed package(s) from unstable has caused the Debian Bug report #558529, regarding Missing autoreconf to fix 554821 or similar bugs in the future 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 owner at bugs.debian.org immediately.) -- 558529: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=558529 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Peter Fritzsche Subject: Missing autoreconf to fix 554821 or similar bugs in the future Date: Sun, 29 Nov 2009 01:57:09 +0100 Size: 7768 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#799171: Removed package(s) from unstable Date: Wed, 16 Sep 2015 13:42:09 +0000 Size: 2914 URL: From owner at bugs.debian.org Wed Sep 16 13:45:14 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 13:45:14 +0000 Subject: Bug#558616: marked as done (Missing autoreconf to fix 554821 or similar bugs in the future) References: <200911290157.15316069985.peter.fritzsche@gmx.de> Message-ID: Your message dated Wed, 16 Sep 2015 13:42:46 +0000 with message-id and subject line Bug#799171: Removed package(s) from unstable has caused the Debian Bug report #558616, regarding Missing autoreconf to fix 554821 or similar bugs in the future 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 owner at bugs.debian.org immediately.) -- 558616: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=558616 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Peter Fritzsche Subject: Missing autoreconf to fix 554821 or similar bugs in the future Date: Sun, 29 Nov 2009 01:57:15 +0100 Size: 6442 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#799171: Removed package(s) from unstable Date: Wed, 16 Sep 2015 13:42:46 +0000 Size: 2876 URL: From owner at bugs.debian.org Wed Sep 16 13:45:17 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 13:45:17 +0000 Subject: Bug#722818: marked as done (pigment link with -L/usr/lib) References: <5233d8c0.d31BkYqsUEn0A8SC%wzssyqa@gmail.com> Message-ID: Your message dated Wed, 16 Sep 2015 13:42:09 +0000 with message-id and subject line Bug#799171: Removed package(s) from unstable has caused the Debian Bug report #722818, regarding pigment link with -L/usr/lib 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 owner at bugs.debian.org immediately.) -- 722818: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=722818 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: YunQiang Su Subject: pigment link with -L/usr/lib Date: Sat, 14 Sep 2013 11:32:16 +0800 Size: 30476 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#799171: Removed package(s) from unstable Date: Wed, 16 Sep 2015 13:42:09 +0000 Size: 2882 URL: From owner at bugs.debian.org Wed Sep 16 13:45:20 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 13:45:20 +0000 Subject: Bug#737669: marked as done (pigment: manually patch libtool files to fix FTBFS on ppc64el) References: <20140204210527.5578.76865.reportbug@logan-VirtualBox> Message-ID: Your message dated Wed, 16 Sep 2015 13:42:09 +0000 with message-id and subject line Bug#799171: Removed package(s) from unstable has caused the Debian Bug report #737669, regarding pigment: manually patch libtool files to fix FTBFS on ppc64el 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 owner at bugs.debian.org immediately.) -- 737669: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737669 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Logan Rosen Subject: pigment: manually patch libtool files to fix FTBFS on ppc64el Date: Tue, 04 Feb 2014 16:05:27 -0500 Size: 5820 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#799171: Removed package(s) from unstable Date: Wed, 16 Sep 2015 13:42:09 +0000 Size: 2914 URL: From owner at bugs.debian.org Wed Sep 16 13:45:23 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 13:45:23 +0000 Subject: Bug#744647: marked as done (pigment-python: run dh-autoreconf to update config.{sub,guess} and {libtool,aclocal}.m4) References: Message-ID: Your message dated Wed, 16 Sep 2015 13:42:46 +0000 with message-id and subject line Bug#799171: Removed package(s) from unstable has caused the Debian Bug report #744647, regarding pigment-python: run dh-autoreconf to update config.{sub,guess} and {libtool,aclocal}.m4 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 owner at bugs.debian.org immediately.) -- 744647: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744647 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Matthias Klose Subject: pigment-python: run dh-autoreconf to update config.{sub,guess} and {libtool,aclocal}.m4 Date: Sun, 13 Apr 2014 16:51:53 +0000 Size: 5675 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#799171: Removed package(s) from unstable Date: Wed, 16 Sep 2015 13:42:46 +0000 Size: 2908 URL: From owner at bugs.debian.org Wed Sep 16 13:45:27 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 13:45:27 +0000 Subject: Bug#785852: marked as done (pigment: Please update to GStreamer 1.x) References: Message-ID: Your message dated Wed, 16 Sep 2015 13:42:09 +0000 with message-id and subject line Bug#799171: Removed package(s) from unstable has caused the Debian Bug report #785852, regarding pigment: Please update to GStreamer 1.x 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 owner at bugs.debian.org immediately.) -- 785852: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785852 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: slomo at debian.org Subject: pigment: Please update to GStreamer 1.x Date: Wed, 20 May 2015 16:03:06 +0300 Size: 3684 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#799171: Removed package(s) from unstable Date: Wed, 16 Sep 2015 13:42:09 +0000 Size: 2914 URL: From owner at bugs.debian.org Wed Sep 16 13:45:30 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 13:45:30 +0000 Subject: Bug#785858: marked as done (pigment-python: Please update to GStreamer 1.x) References: Message-ID: Your message dated Wed, 16 Sep 2015 13:42:46 +0000 with message-id and subject line Bug#799171: Removed package(s) from unstable has caused the Debian Bug report #785858, regarding pigment-python: Please update to GStreamer 1.x 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 owner at bugs.debian.org immediately.) -- 785858: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785858 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: slomo at debian.org Subject: pigment-python: Please update to GStreamer 1.x Date: Wed, 20 May 2015 16:03:06 +0300 Size: 3705 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#799171: Removed package(s) from unstable Date: Wed, 16 Sep 2015 13:42:46 +0000 Size: 2908 URL: From ftpmaster at ftp-master.debian.org Wed Sep 16 14:29:58 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 16 Sep 2015 14:29:58 +0000 Subject: Processing of gst-fluendo-mp3_0.10.32.debian-1_source.changes Message-ID: gst-fluendo-mp3_0.10.32.debian-1_source.changes uploaded successfully to localhost along with the files: gst-fluendo-mp3_0.10.32.debian-1.dsc gst-fluendo-mp3_0.10.32.debian.orig.tar.xz gst-fluendo-mp3_0.10.32.debian-1.debian.tar.xz Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Wed Sep 16 15:21:34 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Wed, 16 Sep 2015 15:21:34 +0000 Subject: gst-fluendo-mp3_0.10.32.debian-1_source.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Wed, 16 Sep 2015 15:14:05 +0100 Source: gst-fluendo-mp3 Binary: gstreamer1.0-fluendo-mp3 Architecture: source Version: 0.10.32.debian-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Iain Lane Description: gstreamer1.0-fluendo-mp3 - Fluendo mp3 decoder GStreamer 1.0 plugin Closes: 785905 Changes: gst-fluendo-mp3 (0.10.32.debian-1) unstable; urgency=medium . * [f7df946] Imported Upstream version 0.10.32.debian * [5dc5a74] Drop GStreamer 0.10 package - 0.10 is deprecated and slated for removal (Closes: #785905) Checksums-Sha1: bc617e3bfe5efbf93087ba19bd1b12ece7ef0a35 2099 gst-fluendo-mp3_0.10.32.debian-1.dsc 3617e65ec86fca5835a80d8b98d6ed0a80df2923 339512 gst-fluendo-mp3_0.10.32.debian.orig.tar.xz cf2075e2e1dd7edd5bfe38584c11655964413b1f 6160 gst-fluendo-mp3_0.10.32.debian-1.debian.tar.xz Checksums-Sha256: 2a8f69495aef430839906632a7a5f5ff5a47ab66582086db0b28b664a553e123 2099 gst-fluendo-mp3_0.10.32.debian-1.dsc a01ab70957c780d6bb2e64c6f18ebb20ff2a9f35189e7d87572b6bb62d5e6413 339512 gst-fluendo-mp3_0.10.32.debian.orig.tar.xz de27066deb86d0feddcde14d0d8c53d8cb5290dcf197d67d190f4c83822ad037 6160 gst-fluendo-mp3_0.10.32.debian-1.debian.tar.xz Files: cdc0587f8222801cd57ec28320bd34e2 2099 libs optional gst-fluendo-mp3_0.10.32.debian-1.dsc ee236451e202d193224d1965a3b20218 339512 libs optional gst-fluendo-mp3_0.10.32.debian.orig.tar.xz 7efd20c1dcc94b8d3744c8cda8938782 6160 libs optional gst-fluendo-mp3_0.10.32.debian-1.debian.tar.xz -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBCgAGBQJV+XvFAAoJEONS1cUcUEHUZKAP/2PgysQG7OMDCLTdNKn142of vXRS+V2pvTYZFLRSYUv1MVFmTdbrHwm1sBZX6J+zXmL4tPiZxXNm+fNIONMbADGL pw5aX2l1UMthgoCnMadOkjjV6prETddcv3+Lk8pJAQ4Srsl+uJGCm68i3yX8r2E0 IX9xrkxmkwrBwvArFxlPV7F+OZMoum9liCVE6MfUYTznf79rm5H8UHaKNr7GLiGp 3tGVzwMBG/pxCIxOqf5Bsh13ysNCrPHRkAQTcorz4drWpCAUMGp7Pjmrjl1OfOyh ofXF9SLXO3hhy7IlycLsivdJYC3PSvS/T3mNUs6Le46e+Vq29Mwz+IsDNPwZV61t /Yyi/BdIjjQB6hL424k4DOqNehJtKMq16bCtFtJXfqsZyrZiL0sfu2VUl6HjM8Pp nBYP7+CnGDUo703tkyj1qOxHEoBLiJ1a6vA9jHkT8BFxphnDC5A5Ak73DgFd+KK6 4TqKZegkx1XuJ/GXH4FQCTHW3O+1FLecoNbNnhQWaVzm5Sh8vYW/5/3DyvHGdc0e kFW6jPwIDZmWH4fJH3x7zs+i0EhgqDu/HD9LvfOTQz9l5C3xPnIiEf8coRmK5Q6B MIhupn8omoUljrEnJKEQkFP8L8TUC1S95XdPtnapsvrGchELaQUtDrXU9/IauSeR cXgtBYje7CzckBu3Ku42 =Aw8N -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From owner at bugs.debian.org Wed Sep 16 15:24:06 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 16 Sep 2015 15:24:06 +0000 Subject: Bug#785905: marked as done (gst-fluendo-mp3: Please update to GStreamer 1.x) References: Message-ID: Your message dated Wed, 16 Sep 2015 15:21:34 +0000 with message-id and subject line Bug#785905: fixed in gst-fluendo-mp3 0.10.32.debian-1 has caused the Debian Bug report #785905, regarding gst-fluendo-mp3: Please update to GStreamer 1.x 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 owner at bugs.debian.org immediately.) -- 785905: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785905 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: slomo at debian.org Subject: gst-fluendo-mp3: Please update to GStreamer 1.x Date: Wed, 20 May 2015 16:03:05 +0300 Size: 3708 URL: -------------- next part -------------- An embedded message was scrubbed... From: Iain Lane Subject: Bug#785905: fixed in gst-fluendo-mp3 0.10.32.debian-1 Date: Wed, 16 Sep 2015 15:21:34 +0000 Size: 5411 URL: From noreply at release.debian.org Thu Sep 17 16:39:14 2015 From: noreply at release.debian.org (Debian testing watch) Date: Thu, 17 Sep 2015 16:39:14 +0000 Subject: gstreamer0.10-editing-services REMOVED from testing Message-ID: FYI: The status of the gstreamer0.10-editing-services source package in Debian's testing distribution has changed. Previous version: 0.10.1-2 Current version: (not in testing) Hint: Package not in unstable The script that generates this mail tries to extract removal reasons from comments in the britney hint files. Those comments were not originally meant to be machine readable, so if the reason for removing your package seems to be nonsense, it is probably the reporting script that got confused. Please check the actual hints file before you complain about meaningless removals. -- 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. From noreply at release.debian.org Thu Sep 17 16:39:16 2015 From: noreply at release.debian.org (Debian testing watch) Date: Thu, 17 Sep 2015 16:39:16 +0000 Subject: pigment REMOVED from testing Message-ID: FYI: The status of the pigment source package in Debian's testing distribution has changed. Previous version: 0.3.17-1 Current version: (not in testing) Hint: Package not in unstable The script that generates this mail tries to extract removal reasons from comments in the britney hint files. Those comments were not originally meant to be machine readable, so if the reason for removing your package seems to be nonsense, it is probably the reporting script that got confused. Please check the actual hints file before you complain about meaningless removals. -- 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. From noreply at release.debian.org Thu Sep 17 16:39:16 2015 From: noreply at release.debian.org (Debian testing watch) Date: Thu, 17 Sep 2015 16:39:16 +0000 Subject: pigment-python REMOVED from testing Message-ID: FYI: The status of the pigment-python source package in Debian's testing distribution has changed. Previous version: 0.3.12-2.1 Current version: (not in testing) Hint: Package not in unstable The script that generates this mail tries to extract removal reasons from comments in the britney hint files. Those comments were not originally meant to be machine readable, so if the reason for removing your package seems to be nonsense, it is probably the reporting script that got confused. Please check the actual hints file before you complain about meaningless removals. -- 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. From ftpmaster at ftp-master.debian.org Fri Sep 18 13:32:15 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 13:32:15 +0000 Subject: Bug#792121: Removed package(s) from unstable Message-ID: We believe that the bug you reported is now fixed; the following package(s) have been removed from unstable: liboil | 0.3.17-2 | source liboil0.3 | 0.3.17-2 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mips64el, mipsel, powerpc, ppc64el, s390x liboil0.3 | 0.3.17-2+b1 | hurd-i386 liboil0.3-dbg | 0.3.17-2 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mips64el, mipsel, powerpc, ppc64el, s390x liboil0.3-dbg | 0.3.17-2+b1 | hurd-i386 liboil0.3-dev | 0.3.17-2 | amd64, arm64, armel, armhf, i386, kfreebsd-amd64, kfreebsd-i386, mips, mips64el, mipsel, powerpc, ppc64el, s390x liboil0.3-dev | 0.3.17-2+b1 | hurd-i386 liboil0.3-doc | 0.3.17-2 | all ------------------- Reason ------------------- ROM; replaced by orc ---------------------------------------------- Note that the package(s) have simply been removed from the tag database and may (or may not) still be in the pool; this is not a bug. The package(s) will be physically removed automatically when no suite references them (and in the case of source, when no binary references it). Please also remember that the changes have been done on the master archive and will not propagate to any mirrors until the next dinstall run at the earliest. Packages are usually not removed from testing by hand. Testing tracks unstable and will automatically remove packages which were removed from unstable when removing them from testing causes no dependency problems. The release team can force a removal from testing if it is really needed, please contact them if this should be the case. We try to close bugs which have been reported against this package automatically. But please check all old bugs, if they were closed correctly or should have been re-assigned to another package. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 792121 at bugs.debian.org. The full log for this bug can be viewed at https://bugs.debian.org/792121 This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster at ftp-master.debian.org. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain) From ftpmaster at ftp-master.debian.org Fri Sep 18 13:32:24 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 13:32:24 +0000 Subject: Bug#792121: Removed package(s) from unstable Message-ID: Version: 0.3.17-2+rm Dear submitter, as the package liboil has just been removed from the Debian archive unstable we hereby close the associated bug reports. We are sorry that we couldn't deal with your issue properly. For details on the removal, please see https://bugs.debian.org/792121 The version of this package that was in Debian prior to this removal can still be found using http://snapshot.debian.org/. This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmaster at ftp-master.debian.org. Debian distribution maintenance software pp. Scott Kitterman (the ftpmaster behind the curtain) From owner at bugs.debian.org Fri Sep 18 13:36:06 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 18 Sep 2015 13:36:06 +0000 Subject: Bug#344251: marked as done (liboil0.3: Unclear package description) References: <20051221065629.3793.89799.reportbug@ibook.steinmann.cx> Message-ID: Your message dated Fri, 18 Sep 2015 13:32:24 +0000 with message-id and subject line Bug#792121: Removed package(s) from unstable has caused the Debian Bug report #344251, regarding liboil0.3: Unclear package description 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 owner at bugs.debian.org immediately.) -- 344251: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=344251 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Uwe Steinmann Subject: liboil0.3: Unclear package description Date: Wed, 21 Dec 2005 07:56:29 +0100 Size: 1994 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#792121: Removed package(s) from unstable Date: Fri, 18 Sep 2015 13:32:24 +0000 Size: 3074 URL: From owner at bugs.debian.org Fri Sep 18 13:36:09 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 18 Sep 2015 13:36:09 +0000 Subject: Bug#535955: marked as done (liboil0.3: No manual page for oil-bugreport) References: <20090706103746.GA4144@cavendish.icomputing.pl> Message-ID: Your message dated Fri, 18 Sep 2015 13:32:24 +0000 with message-id and subject line Bug#792121: Removed package(s) from unstable has caused the Debian Bug report #535955, regarding liboil0.3: No manual page for oil-bugreport 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 owner at bugs.debian.org immediately.) -- 535955: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535955 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Jakub Wilk Subject: liboil0.3: No manual page for oil-bugreport Date: Mon, 6 Jul 2009 12:37:46 +0200 Size: 2797 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#792121: Removed package(s) from unstable Date: Fri, 18 Sep 2015 13:32:24 +0000 Size: 3041 URL: From owner at bugs.debian.org Fri Sep 18 13:36:12 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 18 Sep 2015 13:36:12 +0000 Subject: Bug#558520: marked as done (Missing autoreconf to fix 554821 or similar bugs in the future) References: <200911290157.08326146745.peter.fritzsche@gmx.de> Message-ID: Your message dated Fri, 18 Sep 2015 13:32:24 +0000 with message-id and subject line Bug#792121: Removed package(s) from unstable has caused the Debian Bug report #558520, regarding Missing autoreconf to fix 554821 or similar bugs in the future 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 owner at bugs.debian.org immediately.) -- 558520: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=558520 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Peter Fritzsche Subject: Missing autoreconf to fix 554821 or similar bugs in the future Date: Sun, 29 Nov 2009 01:57:08 +0100 Size: 12836 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#792121: Removed package(s) from unstable Date: Fri, 18 Sep 2015 13:32:24 +0000 Size: 3074 URL: From owner at bugs.debian.org Fri Sep 18 13:36:19 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 18 Sep 2015 13:36:19 +0000 Subject: Bug#646326: marked as done (Please transition liboil for multiarch) References: <20111023093709.4437.19614.reportbug@localhost6.localdomain6> Message-ID: Your message dated Fri, 18 Sep 2015 13:32:24 +0000 with message-id and subject line Bug#792121: Removed package(s) from unstable has caused the Debian Bug report #646326, regarding Please transition liboil for multiarch 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 owner at bugs.debian.org immediately.) -- 646326: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=646326 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Felix Geyer Subject: Please transition liboil for multiarch Date: Sun, 23 Oct 2011 11:37:09 +0200 Size: 5073 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#792121: Removed package(s) from unstable Date: Fri, 18 Sep 2015 13:32:24 +0000 Size: 3074 URL: From owner at bugs.debian.org Fri Sep 18 13:36:22 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 18 Sep 2015 13:36:22 +0000 Subject: Bug#744616: marked as done (liboil: run dh-autoreconf to update config.{sub,guess} and {libtool,aclocal}.m4) References: Message-ID: Your message dated Fri, 18 Sep 2015 13:32:24 +0000 with message-id and subject line Bug#792121: Removed package(s) from unstable has caused the Debian Bug report #744616, regarding liboil: run dh-autoreconf to update config.{sub,guess} and {libtool,aclocal}.m4 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 owner at bugs.debian.org immediately.) -- 744616: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=744616 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Matthias Klose Subject: liboil: run dh-autoreconf to update config.{sub,guess} and {libtool,aclocal}.m4 Date: Sun, 13 Apr 2014 16:51:20 +0000 Size: 4471 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#792121: Removed package(s) from unstable Date: Fri, 18 Sep 2015 13:32:24 +0000 Size: 3074 URL: From owner at bugs.debian.org Fri Sep 18 13:36:15 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 18 Sep 2015 13:36:15 +0000 Subject: Bug#593485: marked as done (liboil: please make it built on powerpcspe) References: <20100818154545.GF14313@Chamillionaire.breakpoint.cc> Message-ID: Your message dated Fri, 18 Sep 2015 13:32:24 +0000 with message-id and subject line Bug#792121: Removed package(s) from unstable has caused the Debian Bug report #593485, regarding liboil: please make it built on powerpcspe 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 owner at bugs.debian.org immediately.) -- 593485: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593485 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Sebastian Andrzej Siewior Subject: liboil: please make it built on powerpcspe Date: Wed, 18 Aug 2010 17:45:45 +0200 Size: 18187 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#792121: Removed package(s) from unstable Date: Fri, 18 Sep 2015 13:32:24 +0000 Size: 3074 URL: From owner at bugs.debian.org Fri Sep 18 13:36:25 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 18 Sep 2015 13:36:25 +0000 Subject: Bug#745241: marked as done (liboil: FTBFS on ppc64: OIL: ERROR liboiltest.c 405: oil_test_check_impl(): function merge_linear_argb_powerpc in class merge_linear_argb failed check (3.64226e+10 > 0) || (outside=0)) References: <5352A0E0.5090306@gmail.com> Message-ID: Your message dated Fri, 18 Sep 2015 13:32:24 +0000 with message-id and subject line Bug#792121: Removed package(s) from unstable has caused the Debian Bug report #745241, regarding liboil: FTBFS on ppc64: OIL: ERROR liboiltest.c 405: oil_test_check_impl(): function merge_linear_argb_powerpc in class merge_linear_argb failed check (3.64226e+10 > 0) || (outside=0) 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 owner at bugs.debian.org immediately.) -- 745241: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745241 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Hiroyuki Yamamoto Subject: liboil: FTBFS on ppc64: OIL: ERROR liboiltest.c 405: oil_test_check_impl(): function merge_linear_argb_powerpc in class merge_linear_argb failed check (3.64226e+10 > 0) || (outside=0) Date: Sun, 20 Apr 2014 01:14:24 +0900 Size: 5820 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#792121: Removed package(s) from unstable Date: Fri, 18 Sep 2015 13:32:24 +0000 Size: 3074 URL: From owner at bugs.debian.org Fri Sep 18 13:36:28 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 18 Sep 2015 13:36:28 +0000 Subject: Bug#750040: marked as done (liboil: Conflicting definitions of function oil_test_get_source_data (and possibly others)) References: <20140531231843.GA1035@l04.Home> Message-ID: Your message dated Fri, 18 Sep 2015 13:32:24 +0000 with message-id and subject line Bug#792121: Removed package(s) from unstable has caused the Debian Bug report #750040, regarding liboil: Conflicting definitions of function oil_test_get_source_data (and possibly others) 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 owner at bugs.debian.org immediately.) -- 750040: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750040 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Michael Tautschnig Subject: liboil: Conflicting definitions of function oil_test_get_source_data (and possibly others) Date: Sun, 1 Jun 2014 00:18:43 +0100 Size: 5217 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#792121: Removed package(s) from unstable Date: Fri, 18 Sep 2015 13:32:24 +0000 Size: 3074 URL: From owner at bugs.debian.org Fri Sep 18 13:36:35 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 18 Sep 2015 13:36:35 +0000 Subject: Bug#799174: marked as done (Should not be part of next release) References: <1442410947.2347.24.camel@debian.org> Message-ID: Your message dated Fri, 18 Sep 2015 13:32:24 +0000 with message-id and subject line Bug#792121: Removed package(s) from unstable has caused the Debian Bug report #799174, regarding Should not be part of next release 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 owner at bugs.debian.org immediately.) -- 799174: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799174 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Sebastian =?ISO-8859-1?Q?Dr=F6ge?= Subject: Should not be part of next release Date: Wed, 16 Sep 2015 15:42:27 +0200 Size: 3601 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#792121: Removed package(s) from unstable Date: Fri, 18 Sep 2015 13:32:24 +0000 Size: 3074 URL: From ftpmaster at ftp-master.debian.org Fri Sep 18 18:46:22 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 18:46:22 +0000 Subject: Processing of gst-libav1.0_1.5.91-1_amd64.changes Message-ID: gst-libav1.0_1.5.91-1_amd64.changes uploaded successfully to localhost along with the files: gst-libav1.0_1.5.91-1.dsc gst-libav1.0_1.5.91.orig.tar.xz gst-libav1.0_1.5.91-1.debian.tar.xz gstreamer1.0-libav-dbg_1.5.91-1_amd64.deb gstreamer1.0-libav_1.5.91-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 18 18:50:47 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 18:50:47 +0000 Subject: gst-libav1.0_1.5.91-1_amd64.changes ACCEPTED into experimental Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 18 Sep 2015 20:06:57 +0200 Source: gst-libav1.0 Binary: gstreamer1.0-libav gstreamer1.0-libav-dbg Architecture: source amd64 Version: 1.5.91-1 Distribution: experimental Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gstreamer1.0-libav - libav plugin for GStreamer gstreamer1.0-libav-dbg - libav plugin for GStreamer (debug symbols) Changes: gst-libav1.0 (1.5.91-1) experimental; urgency=medium . * New upstream release candidate. Checksums-Sha1: df82c2c74fc063f1a2d2b34ebb7775bfad53496c 2782 gst-libav1.0_1.5.91-1.dsc c348cdb7d94fc44a501827c23d7faad41e7e2e3c 7684944 gst-libav1.0_1.5.91.orig.tar.xz 3a0a710ce3e2b885fdd33df5538218cd7120c499 10564 gst-libav1.0_1.5.91-1.debian.tar.xz 874dbe9cc505268abccb4eee193f8d0426feeda0 471116 gstreamer1.0-libav-dbg_1.5.91-1_amd64.deb 6690f07ef7047da5cb4b5f1aa67462b47682ac69 183536 gstreamer1.0-libav_1.5.91-1_amd64.deb Checksums-Sha256: f2ebb91f61f00e7eccd38447314f93af9f3c652399a90248de6637deb2e10b30 2782 gst-libav1.0_1.5.91-1.dsc 1473e8254d7446bacdea3a7481313d9125f17cfdacc0b4cc413abeab535217fd 7684944 gst-libav1.0_1.5.91.orig.tar.xz 8e624931e4963d5a0255956d6fa7495bc7b2475b10dd446a9a2e3aa312343b2e 10564 gst-libav1.0_1.5.91-1.debian.tar.xz db0541811940eac6738c38a7e87aa3b8373a4f71763aadb6f28fe5f1d21d9fd5 471116 gstreamer1.0-libav-dbg_1.5.91-1_amd64.deb b6f818d096b8e2784300f963c30542ee4f95daa9d0826cf940545c653a95e30d 183536 gstreamer1.0-libav_1.5.91-1_amd64.deb Files: dd1ab1810e31f3e06c6a4b85a9c3357d 2782 libs optional gst-libav1.0_1.5.91-1.dsc 9603be372398f7e218c2186339400fb5 7684944 libs optional gst-libav1.0_1.5.91.orig.tar.xz 542d6979b32bef8721fc0b1cf2367a9d 10564 libs optional gst-libav1.0_1.5.91-1.debian.tar.xz 870786aec2b0e4b6b137ceded8cf28fe 471116 debug extra gstreamer1.0-libav-dbg_1.5.91-1_amd64.deb 5346aad5d58e0eba5d3dbc8235bded23 183536 libs optional gstreamer1.0-libav_1.5.91-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJV/FsmXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1xO0P+gO57Cqa71Y0uoE/z+fnH7SH ht9VVzNSUJpj+1Fkh3MXbGGK4PPX4QIpG5DBsgtVODPBZdIo+Gx3AVywH6c4ahqt TfIY0vg3tC1ajX96wMghg4oftghEThoeM7vrF8lT3hV8khzcxhj4cWcHENnMyudT EZYeoUqttN2dQkGiLLx2vLMDZbvXFiGJ7QGk9QuyBAgQJ1QJLcRyxnrHc/IU5QtF mR/ksWVDOiMreWpE0EYRJKdOwrAoJ0yxUsrqq8HTJAaSsecr+pcydB29k5kwM2Ig 87xsXZhB1RZ91ZtWnRFWeD5YMfLZ8rWu3P2lARjVJJN6EhtJkenY//gxGaE0eo5p MkWfw779SQtlpl20NLFeY5whPIj0NFY6uI/Bb0sVJcn15+7LDG02BfkOtNqvt3J8 6B/ogCXM39tSkJuXC6UjYH80hHu9NnaTECBQlinrQBMvu1dGOTgt1rIn/kTuEksX pDF8DcXgQP7VvUp4h1kJeuaJgic3K3exebgAOeae2WnDZoKZYu2trOjc6gMNc3S6 1zf6OHToKnURXk08URiSYZTqgdEyJnnIQkiPwDU3WV5kD52taViUcJkhrZEcG9K/ umwAvIgcYeb3zXAexDVSh3nfw3WodsWmzgwLupGZ5x2sAJTw4pef3hm5gRLL7otM cC90lS9jo0g72oqN1yvA =wveo -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 18 18:56:29 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 18:56:29 +0000 Subject: Processing of gst-plugins-bad1.0_1.5.91-1_amd64.changes Message-ID: gst-plugins-bad1.0_1.5.91-1_amd64.changes uploaded successfully to localhost along with the files: gst-plugins-bad1.0_1.5.91-1.dsc gst-plugins-bad1.0_1.5.91.orig.tar.xz gst-plugins-bad1.0_1.5.91-1.debian.tar.xz gir1.2-gst-plugins-bad-1.0_1.5.91-1_amd64.deb gstreamer1.0-plugins-bad-dbg_1.5.91-1_amd64.deb gstreamer1.0-plugins-bad-doc_1.5.91-1_all.deb gstreamer1.0-plugins-bad_1.5.91-1_amd64.deb libgstreamer-plugins-bad1.0-0_1.5.91-1_amd64.deb libgstreamer-plugins-bad1.0-dev_1.5.91-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 18 18:56:30 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 18:56:30 +0000 Subject: Processing of gst-plugins-base1.0_1.5.91-1_amd64.changes Message-ID: gst-plugins-base1.0_1.5.91-1_amd64.changes uploaded successfully to localhost along with the files: gst-plugins-base1.0_1.5.91-1.dsc gst-plugins-base1.0_1.5.91.orig.tar.xz gst-plugins-base1.0_1.5.91-1.debian.tar.xz gir1.2-gst-plugins-base-1.0_1.5.91-1_amd64.deb gstreamer1.0-alsa_1.5.91-1_amd64.deb gstreamer1.0-plugins-base-apps_1.5.91-1_amd64.deb gstreamer1.0-plugins-base-dbg_1.5.91-1_amd64.deb gstreamer1.0-plugins-base-doc_1.5.91-1_all.deb gstreamer1.0-plugins-base_1.5.91-1_amd64.deb gstreamer1.0-x_1.5.91-1_amd64.deb libgstreamer-plugins-base1.0-0_1.5.91-1_amd64.deb libgstreamer-plugins-base1.0-dev_1.5.91-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 18 19:01:30 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:01:30 +0000 Subject: Processing of gst-plugins-ugly1.0_1.5.91-1_amd64.changes Message-ID: gst-plugins-ugly1.0_1.5.91-1_amd64.changes uploaded successfully to localhost along with the files: gst-plugins-ugly1.0_1.5.91-1.dsc gst-plugins-ugly1.0_1.5.91.orig.tar.xz gst-plugins-ugly1.0_1.5.91-1.debian.tar.xz gstreamer1.0-plugins-ugly-dbg_1.5.91-1_amd64.deb gstreamer1.0-plugins-ugly-doc_1.5.91-1_all.deb gstreamer1.0-plugins-ugly_1.5.91-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 18 19:01:33 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:01:33 +0000 Subject: Processing of gst-plugins-good1.0_1.5.91-1_amd64.changes Message-ID: gst-plugins-good1.0_1.5.91-1_amd64.changes uploaded successfully to localhost along with the files: gst-plugins-good1.0_1.5.91-1.dsc gst-plugins-good1.0_1.5.91.orig.tar.xz gst-plugins-good1.0_1.5.91-1.debian.tar.xz gstreamer1.0-plugins-good-dbg_1.5.91-1_amd64.deb gstreamer1.0-plugins-good-doc_1.5.91-1_all.deb gstreamer1.0-plugins-good_1.5.91-1_amd64.deb gstreamer1.0-pulseaudio_1.5.91-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 18 19:01:34 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:01:34 +0000 Subject: Processing of gst-rtsp-server1.0_1.5.91-1_amd64.changes Message-ID: gst-rtsp-server1.0_1.5.91-1_amd64.changes uploaded successfully to localhost along with the files: gst-rtsp-server1.0_1.5.91-1.dsc gst-rtsp-server1.0_1.5.91.orig.tar.xz gst-rtsp-server1.0_1.5.91-1.debian.tar.xz gir1.2-gst-rtsp-server-1.0_1.5.91-1_amd64.deb libgstrtspserver-1.0-0-dbg_1.5.91-1_amd64.deb libgstrtspserver-1.0-0_1.5.91-1_amd64.deb libgstrtspserver-1.0-dev_1.5.91-1_amd64.deb libgstrtspserver-1.0-doc_1.5.91-1_all.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 18 19:03:51 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:03:51 +0000 Subject: gst-plugins-bad1.0_1.5.91-1_amd64.changes ACCEPTED into experimental Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 18 Sep 2015 19:39:16 +0200 Source: gst-plugins-bad1.0 Binary: gstreamer1.0-plugins-bad-doc gstreamer1.0-plugins-bad gstreamer1.0-plugins-bad-dbg libgstreamer-plugins-bad1.0-0 libgstreamer-plugins-bad1.0-dev gir1.2-gst-plugins-bad-1.0 Architecture: source amd64 all Version: 1.5.91-1 Distribution: experimental Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gir1.2-gst-plugins-bad-1.0 - Description: GObject introspection data for the GStreamer librari gstreamer1.0-plugins-bad - GStreamer plugins from the "bad" set gstreamer1.0-plugins-bad-dbg - GStreamer plugins from the "bad" set (debug symbols) gstreamer1.0-plugins-bad-doc - GStreamer documentation for plugins from the "bad" set libgstreamer-plugins-bad1.0-0 - GStreamer development files for libraries from the "bad" set libgstreamer-plugins-bad1.0-dev - GStreamer development files for libraries from the "bad" set Changes: gst-plugins-bad1.0 (1.5.91-1) experimental; urgency=medium . * New upstream release candidate. Checksums-Sha1: 277f869dd6322aced9887b68606ecfb8ce504e8b 4744 gst-plugins-bad1.0_1.5.91-1.dsc 7d9744955e1716a4087dada93554e9826a949819 4207288 gst-plugins-bad1.0_1.5.91.orig.tar.xz db77f23fc8f7e9409eb9e07577952cdee5d65e25 32412 gst-plugins-bad1.0_1.5.91-1.debian.tar.xz 7f8ca33ec60724197f2d3ce7d1be7985ccccbef9 1272552 gir1.2-gst-plugins-bad-1.0_1.5.91-1_amd64.deb 77ca20fc21607f6b893110b2579787fd24c20297 9108150 gstreamer1.0-plugins-bad-dbg_1.5.91-1_amd64.deb 1f4584f3035734ab789f292a53b6a6e4c5ba90ae 1468388 gstreamer1.0-plugins-bad-doc_1.5.91-1_all.deb 3b2527e32ae7cca5cee66233055b13bbaf81f310 2723736 gstreamer1.0-plugins-bad_1.5.91-1_amd64.deb fd53cd321fffd3d5489ddc5c4094790f6ce3b98d 1579624 libgstreamer-plugins-bad1.0-0_1.5.91-1_amd64.deb e0090b37beba08364fe55e2558224171f61c5a93 1355890 libgstreamer-plugins-bad1.0-dev_1.5.91-1_amd64.deb Checksums-Sha256: e44f4fadccf3bd0a3090cf95b52fda1a13833042f86525bbc8228f468b59d301 4744 gst-plugins-bad1.0_1.5.91-1.dsc 193534a17c4338f8e8fa2f1720e6f61557e72ee6a6985d551020f63226a0c810 4207288 gst-plugins-bad1.0_1.5.91.orig.tar.xz 691d78654568cc797dbe791609f8e5e32c7d056df2ec7ee8e8fb5e8d979f402e 32412 gst-plugins-bad1.0_1.5.91-1.debian.tar.xz 7aaddc6cccc80f2b9bd53c476139a6887fb9f8fb6590f29a76c977c289558620 1272552 gir1.2-gst-plugins-bad-1.0_1.5.91-1_amd64.deb bc60369d59f24a8db290f6a0c92a7f0a55f66be64af241009390b1419500a0df 9108150 gstreamer1.0-plugins-bad-dbg_1.5.91-1_amd64.deb e049ab1c0d96ac4ac00f810d3bf0a787aa38b5b2ccc23840c7bfff407bfa859d 1468388 gstreamer1.0-plugins-bad-doc_1.5.91-1_all.deb a101f2da2818f91c21d00dfe8dfd1fc1f383a8a22cae01e7b59e9d4089e9ecfe 2723736 gstreamer1.0-plugins-bad_1.5.91-1_amd64.deb 7221ac313a997880efd6d68fbb75a56b499be48c6afff582ed0d7f746dfb518d 1579624 libgstreamer-plugins-bad1.0-0_1.5.91-1_amd64.deb 5c6e586b985d11c1de960eba915057e71761bc2e61a633ea00a9aaa679f53b07 1355890 libgstreamer-plugins-bad1.0-dev_1.5.91-1_amd64.deb Files: 4314fd4286a97819ad609caf90ac1876 4744 libs extra gst-plugins-bad1.0_1.5.91-1.dsc 7328b327470572acb0206baf848035af 4207288 libs extra gst-plugins-bad1.0_1.5.91.orig.tar.xz 0e19b0f5e773d053eb158b58f1c71d21 32412 libs extra gst-plugins-bad1.0_1.5.91-1.debian.tar.xz 37f345451e62d29969a54d81e288088b 1272552 introspection extra gir1.2-gst-plugins-bad-1.0_1.5.91-1_amd64.deb 3073edee1e99ec5ad87c8556e0485898 9108150 debug extra gstreamer1.0-plugins-bad-dbg_1.5.91-1_amd64.deb e9327d37ea72c522a05f9e1284242762 1468388 doc extra gstreamer1.0-plugins-bad-doc_1.5.91-1_all.deb 2a8c25880c2e6cc7dd3a777ca7d8d355 2723736 libs extra gstreamer1.0-plugins-bad_1.5.91-1_amd64.deb 40a4ffab73b3343ebc30325b48e71c14 1579624 libs extra libgstreamer-plugins-bad1.0-0_1.5.91-1_amd64.deb 66d42d11ca31cfa05e0411243d8f9fb5 1355890 libdevel extra libgstreamer-plugins-bad1.0-dev_1.5.91-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJV/FsmXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1fcYP/3WXAHZOpOk+mfNyuADZZIMZ Ntg9JvK2C3J9owVAtBJ9fczDWIV7fL0tEz0IJsxPFcPrRaTkf0aVPOAqMUaH1UYf r4UET1RTbdE6T4jI3dnIiWcZEaB0+xz4p/MpFsGyFSsa5sqGijLJagWgbIKMjMlP teIOCKeZXWkE3eJQmlVP1Br/W3Tb081cmWO7Ms/3vegIoKs7gGA0ZyWD1Zx++2g+ Egdi3OQEViDtvrChs/6I3KlQUfw4V7KdLY3JW+NolA3FVnDNEOEoYb+5k+mglzWq THn6Uy/8kGB+QEIHz5kE/6t6lxlhyncI4GjW8jQ8MSOnfha2ZALotcS0ripei49n rwark/5mNBb5M8O+pG6TGgWuIQ/waqltwUxDrVUO4LAI1q0ZM6QSkNCnGSqPWUzo jDzbXEz71vOIZy7gOy5WzwnrhQsJpD5KeYTRcqtujuX+tjdPqJmu/nSO7EAbrp/t h2eiOS59KfRItvopippReD05QG/Q+3OwpgNQ5kRox7Dxvfd4opJIUy0vaz1LbAEO O704KSFri1CHpDAnlGMlr6lwbK2CaERI09ifqqkagrA4Q7KSYZfgAt0NnV007V7M 6nN8rhDVsp4MRFlWOm/rCRCRkOxa8yv97YbH2xioq5inZY2cYWns6kxkAPJEY8/3 iiUvCDIxbpSvhXa5t7BM =BMo0 -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 18 19:04:08 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:04:08 +0000 Subject: gst-plugins-base1.0_1.5.91-1_amd64.changes ACCEPTED into experimental Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 18 Sep 2015 19:20:16 +0200 Source: gst-plugins-base1.0 Binary: gstreamer1.0-plugins-base-apps gstreamer1.0-plugins-base-doc libgstreamer-plugins-base1.0-0 libgstreamer-plugins-base1.0-dev gstreamer1.0-alsa gstreamer1.0-plugins-base gstreamer1.0-plugins-base-dbg gstreamer1.0-x gir1.2-gst-plugins-base-1.0 Architecture: source amd64 all Version: 1.5.91-1 Distribution: experimental Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gir1.2-gst-plugins-base-1.0 - Description: GObject introspection data for the GStreamer Plugins gstreamer1.0-alsa - GStreamer plugin for ALSA gstreamer1.0-plugins-base - GStreamer plugins from the "base" set gstreamer1.0-plugins-base-apps - GStreamer helper programs from the "base" set gstreamer1.0-plugins-base-dbg - GStreamer plugins from the "base" set gstreamer1.0-plugins-base-doc - GStreamer documentation for plugins from the "base" set gstreamer1.0-x - GStreamer plugins for X11 and Pango libgstreamer-plugins-base1.0-0 - GStreamer libraries from the "base" set libgstreamer-plugins-base1.0-dev - GStreamer development files for libraries from the "base" set Changes: gst-plugins-base1.0 (1.5.91-1) experimental; urgency=medium . * New upstream release candidate. Checksums-Sha1: dd045bdebbf281700aac6205507aba76a1fa03f0 3873 gst-plugins-base1.0_1.5.91-1.dsc 59274e6e4ba7b5bdd1c9df82b31022c34f9af0f7 2831644 gst-plugins-base1.0_1.5.91.orig.tar.xz 0627ea7814c2cf2b586cdd8ba4d3d62556a09395 40128 gst-plugins-base1.0_1.5.91-1.debian.tar.xz 29ba58f267f30879fdc82ae37285449dd3980ac0 910894 gir1.2-gst-plugins-base-1.0_1.5.91-1_amd64.deb 8369c0193eb463f0ee25aca2639dc71d4355df72 880358 gstreamer1.0-alsa_1.5.91-1_amd64.deb bc4c14a4e86289e9a6e20cea2348b2cba8d65461 878476 gstreamer1.0-plugins-base-apps_1.5.91-1_amd64.deb c4dd37b50c584c8db054160b7b04738c65a9c9d7 4377196 gstreamer1.0-plugins-base-dbg_1.5.91-1_amd64.deb 556efec7706c010edb7045d109acf959f7d37f10 1222850 gstreamer1.0-plugins-base-doc_1.5.91-1_all.deb bfa8b1d70594d09909cc7df29ee172cd0386b2ea 1344708 gstreamer1.0-plugins-base_1.5.91-1_amd64.deb 1eea3eb1b6eac8acc43014910428437ce30185bf 920342 gstreamer1.0-x_1.5.91-1_amd64.deb d2882ed321df2efe38cc402c9b8ea5e3c4981b0f 1468492 libgstreamer-plugins-base1.0-0_1.5.91-1_amd64.deb 10d70f0a0454170647fbb98d634a4f9454d2f0a3 1076660 libgstreamer-plugins-base1.0-dev_1.5.91-1_amd64.deb Checksums-Sha256: 3d0f1cb0f1bbdcfb10e3f53d7a415bd85a9c753c6ee142d26e78630a43872819 3873 gst-plugins-base1.0_1.5.91-1.dsc b56d3cde64903acf8dc0dd0cc42f99bf5f1a5be14bd2994e16f6509a7e994a19 2831644 gst-plugins-base1.0_1.5.91.orig.tar.xz f1d3a8e2222e546117950cb0b287b3378c4a3bfaecb721deaac3abbe23be6ada 40128 gst-plugins-base1.0_1.5.91-1.debian.tar.xz 5d9e266735aa915260149d89be46e8cb1ecf642a2ae29bb0ae57f17f109cb332 910894 gir1.2-gst-plugins-base-1.0_1.5.91-1_amd64.deb 53ac581595999f949cdfe581298a1ee8015f2261762a2450714441cf7268ed7a 880358 gstreamer1.0-alsa_1.5.91-1_amd64.deb 9af80eb174f681d7e91204cce16108e4754d9b1f5722002900545c53b17838f7 878476 gstreamer1.0-plugins-base-apps_1.5.91-1_amd64.deb 40c78166737f911c76f4fb83848cac5e3840ad222c92e8c4a40ec97927809386 4377196 gstreamer1.0-plugins-base-dbg_1.5.91-1_amd64.deb 22d119e60e4bab4f11075db09615af37714e9569d4c8d34c5236178dd498f77e 1222850 gstreamer1.0-plugins-base-doc_1.5.91-1_all.deb b6cde6a4e7cc49438c72016dc99899e738bca304f2b1738ce1b4afed19e033cd 1344708 gstreamer1.0-plugins-base_1.5.91-1_amd64.deb f9e67e8502fd029453592f9e70929a0cd58f08dce94814035ce0f5ff3ad36a2d 920342 gstreamer1.0-x_1.5.91-1_amd64.deb b93dce6f1be54e644f5bd6e1d62dae7763f9b4fdbac95ae6b3b12b46bcdfd73e 1468492 libgstreamer-plugins-base1.0-0_1.5.91-1_amd64.deb c4937876da74b7b11f346ca5451b89d2ba43c387b005e68a33c838b9a49df11c 1076660 libgstreamer-plugins-base1.0-dev_1.5.91-1_amd64.deb Files: 90ccc5ef3afe2338aa0ecb788ab89006 3873 libs optional gst-plugins-base1.0_1.5.91-1.dsc f7551f6dddb599093ab414ddd2f35f60 2831644 libs optional gst-plugins-base1.0_1.5.91.orig.tar.xz b82eac63cfeea2c43094ad9c167500d3 40128 libs optional gst-plugins-base1.0_1.5.91-1.debian.tar.xz 72d6e28dfc171156526c2bac2c9ae51a 910894 introspection optional gir1.2-gst-plugins-base-1.0_1.5.91-1_amd64.deb 651b8814db4b1cabd627c3b8eb6f5057 880358 libs optional gstreamer1.0-alsa_1.5.91-1_amd64.deb ee3eff94eda8cd772631646826d98ca1 878476 utils optional gstreamer1.0-plugins-base-apps_1.5.91-1_amd64.deb edd242e2796abc2493a29f4f451c90ba 4377196 debug extra gstreamer1.0-plugins-base-dbg_1.5.91-1_amd64.deb 81e57b937332ec2924a82ab4c870b188 1222850 doc optional gstreamer1.0-plugins-base-doc_1.5.91-1_all.deb a7b41e25358155ad3e904268380b76e7 1344708 libs optional gstreamer1.0-plugins-base_1.5.91-1_amd64.deb 5f55fc81720717af4b56d2365a82231d 920342 libs optional gstreamer1.0-x_1.5.91-1_amd64.deb a1eef9cbc18358aae7723109ea61d7b1 1468492 libs optional libgstreamer-plugins-base1.0-0_1.5.91-1_amd64.deb 0a256c6e8d78cc9eac5eb74fff58ae90 1076660 libdevel optional libgstreamer-plugins-base1.0-dev_1.5.91-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJV/FsmXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1M10QALp9KoC+XqN5uKg3Q2h/NSqA WQ7K8vWtZPGTTBhdedhO9rjwUCREeSZJSnKGygvpqq1x/zRkvRKoVfsA1T5bjVA5 dd1jJkyFwcO33RWh7LtzVElKTGjHy/8cmlpuDVuz/A7K6ofgxMOa0pVQWFRC6By6 3O+E5e4JwjcM23b/Plqklz3dPdlErSN+wsVJj+XPPClJDqA4jH//rSlrz+tDrqjR 9Ty75c/NQbFbwulJZFS3nKMulz7grgb9+U82MleuMnqIWGkGHeUZdRCp5/c0LNwB gPHz4Ockno527mEVx6xnkvU0EFwjhGcksYEKY0cVBAA5OntYb+giJnGmqGf4egNr 8lgy6eMyhnU0fmEn9T3PbeSEXIW2m3bSYzY6Of3BBY/HN+j04U52gsBK6rwZsYI1 vtFnhFqE7wEo8Ivsu0ubXmRbL+prWtr4zB4KmzEH0n7msJH8QmI/yc2dlhZFH5Ln uW0x8szY9lF5dDKIuLkfg+bKOEmCV/Ocv7cv2wC+ub5ikvGwk9ia7IUvAVW7BRuW NVfvBKgV7wMfwhVIgLR+1FAVUa7zcSVY+BGbGTWO41bhTHNzp2XqYKMejpt+B5dS F/tCLSy2JkFXIDE84c+ozMSnI2wy9z+KaybezeRU2Ce2lOlaGcn1CuJuBphLb28I GBxqYZePtFP1Rx6Q9DCt =jgNT -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 18 19:04:21 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:04:21 +0000 Subject: gst-plugins-good1.0_1.5.91-1_amd64.changes ACCEPTED into experimental Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 18 Sep 2015 19:28:00 +0200 Source: gst-plugins-good1.0 Binary: gstreamer1.0-plugins-good-doc gstreamer1.0-pulseaudio gstreamer1.0-plugins-good gstreamer1.0-plugins-good-dbg Architecture: source amd64 all Version: 1.5.91-1 Distribution: experimental Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gstreamer1.0-plugins-good - GStreamer plugins from the "good" set gstreamer1.0-plugins-good-dbg - GStreamer plugins from the "good" set gstreamer1.0-plugins-good-doc - GStreamer documentation for plugins from the "good" set gstreamer1.0-pulseaudio - GStreamer plugin for PulseAudio Changes: gst-plugins-good1.0 (1.5.91-1) experimental; urgency=medium . * New upstream release candidate. Checksums-Sha1: 0d83ed795898287842e5ae5a8c5575d5e2faf7e1 3553 gst-plugins-good1.0_1.5.91-1.dsc fce3341734f4c51fc6c0a45dc11419581156680c 3175508 gst-plugins-good1.0_1.5.91.orig.tar.xz 518156f734e48924d8092bba5e4f470e4f4a79a8 35524 gst-plugins-good1.0_1.5.91-1.debian.tar.xz db02b97e459346fbab8d34afc341e1f7ab7915b3 6791238 gstreamer1.0-plugins-good-dbg_1.5.91-1_amd64.deb 7a609d3c33650138f83985b9efc0efbe999a4a06 1200612 gstreamer1.0-plugins-good-doc_1.5.91-1_all.deb 6b4bffc7a176c518662a4b4e418c886a38d2ed27 2522758 gstreamer1.0-plugins-good_1.5.91-1_amd64.deb 9f1291a5170bd5b3b6c707397a7a323e60149dd3 1049250 gstreamer1.0-pulseaudio_1.5.91-1_amd64.deb Checksums-Sha256: 86a71ce8682de3d82d5e8c40c4eee0c4a1f012f3a0a17d2440eb4fa7c22f2f6b 3553 gst-plugins-good1.0_1.5.91-1.dsc bdd892935e9b6be5d87ec62de147e941c5ba5ec1510ca80e60faa9b961f5140a 3175508 gst-plugins-good1.0_1.5.91.orig.tar.xz 7f621ac6aa874754f9849b7633c9a0562e384dacc280c4eccf7558f25fb67ae0 35524 gst-plugins-good1.0_1.5.91-1.debian.tar.xz 21530efbdd73d251494e983542cd2e4c89ddddea148707ede2f089adb77e6c10 6791238 gstreamer1.0-plugins-good-dbg_1.5.91-1_amd64.deb 24fdaeabf8915e36ea3e46a7adc54b59735b37fd057f3599b89657ed2d34d145 1200612 gstreamer1.0-plugins-good-doc_1.5.91-1_all.deb 39bb9b2e35c93d4698bc27dfa2db000adcad522813694f25942ed1b937d37fa2 2522758 gstreamer1.0-plugins-good_1.5.91-1_amd64.deb 79e7ae64e32fe444974b1bdfe642836ac4507f1938560ae57885753e9d1c80f7 1049250 gstreamer1.0-pulseaudio_1.5.91-1_amd64.deb Files: cc3d80e306cd1b80aa2673201e43eb47 3553 libs optional gst-plugins-good1.0_1.5.91-1.dsc ab67a3df9f63fb8636431e252708fed8 3175508 libs optional gst-plugins-good1.0_1.5.91.orig.tar.xz 2d531d7b48fc7a846df6172260015a47 35524 libs optional gst-plugins-good1.0_1.5.91-1.debian.tar.xz 916f43953c1b1d6d6fa02ba2e4aaddd4 6791238 debug extra gstreamer1.0-plugins-good-dbg_1.5.91-1_amd64.deb ffb2ca2115214f9bef35edabe64d2a64 1200612 doc optional gstreamer1.0-plugins-good-doc_1.5.91-1_all.deb a92a7163d39e1cc43a5b56c8dbcc37a7 2522758 libs optional gstreamer1.0-plugins-good_1.5.91-1_amd64.deb ad1a7f13c875f7e54170d81c7b5b419b 1049250 sound optional gstreamer1.0-pulseaudio_1.5.91-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJV/FsmXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1u10QAIjks9QfHgpnUQoP2djt0v5U 1YDM6sZHU2FbR2FmqognskVZ1pXHDyLnrmF+UeGDffiLatekwzS4qrA4QgLms670 P76sXTsz7URbZVYEh2b6fRS1JCrCL2hbTrxqkTEsJ3KdUHfPMyARLPIm7njinGmm DXzJrCiPpAVBMx6jnr4y9+wPLTX6rYyGXb0fEKVXUpCoK0XXyjIt9jldL3QHyngO nk3FWNM2W6SXrYjBFd3pEpGhI+q2HYykk4ofYXHRJmQO+c8snhpSkG3+spfMhcNt sHcle5YsBpn4pbh6e1YoM3P1GijtuXl/aJE1vHbQquIcwdj8PUpJxl5XvYL5zuG+ JHdJi1UqElhkLb8uacb3c1h4zJcFTLYkS87iRfiXp3AeO3vrZAePCDD6B4kkbp37 NmxsSS+CIhE+8iBTJuhbDSre+4dtFmlUGMGSkd1PwO6qomZKUaw4V0KX3Jf6ri/S uNXk5sBZ1MGom09y1X0IvqZXKdfU7mnPF7b4zS/f1OlCcIjY3O/aoASkQ//zQJfl t2ZUzjdwKcSPASCtBjkm/NyS/V20SHOJG2WsTkMpxSFy232i8jTyUUpAw8AE6dhh ejjLznI4706/0KalXFdmNLbS0i7L11dqa9Xx3qwZA7MW6n71aRVEThi/uHoTZ4Fc JZ4GvWA25aBBBxdi0DxL =A+CK -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 18 19:04:29 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:04:29 +0000 Subject: gst-plugins-ugly1.0_1.5.91-1_amd64.changes ACCEPTED into experimental Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 18 Sep 2015 19:49:46 +0200 Source: gst-plugins-ugly1.0 Binary: gstreamer1.0-plugins-ugly-doc gstreamer1.0-plugins-ugly gstreamer1.0-plugins-ugly-dbg Architecture: source amd64 all Version: 1.5.91-1 Distribution: experimental Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gstreamer1.0-plugins-ugly - GStreamer plugins from the "ugly" set gstreamer1.0-plugins-ugly-dbg - GStreamer plugins from the "ugly" set (debug symbols) gstreamer1.0-plugins-ugly-doc - GStreamer documentation for plugins from the "ugly" set Changes: gst-plugins-ugly1.0 (1.5.91-1) experimental; urgency=medium . * New upstream release candidate. Checksums-Sha1: 5e2c3924f39bca22a6e22c59a618814c3186b948 3121 gst-plugins-ugly1.0_1.5.91-1.dsc 73d7547bd088bfb728510d9ac912dbbb75961548 858080 gst-plugins-ugly1.0_1.5.91.orig.tar.xz cf8205ed623f62f8d529c803b124bc69fef8f086 24880 gst-plugins-ugly1.0_1.5.91-1.debian.tar.xz 2791bcbd9180e70f7176d0d01ff887e561b449fa 859772 gstreamer1.0-plugins-ugly-dbg_1.5.91-1_amd64.deb dc26eeca7acf6affae2429d070a1df60648e68db 196802 gstreamer1.0-plugins-ugly-doc_1.5.91-1_all.deb 73262def2b54eea7e83544bc2fe9650c3219c30b 381248 gstreamer1.0-plugins-ugly_1.5.91-1_amd64.deb Checksums-Sha256: ca4f1522937e9a01723fb028c7bfffa57584139db82550eee95b212dcd0afeaf 3121 gst-plugins-ugly1.0_1.5.91-1.dsc 3a487329271f45dc56eaf53993aef319a9f57e61ec166a4fd61e2f4e04256950 858080 gst-plugins-ugly1.0_1.5.91.orig.tar.xz 32453e871802569f0df8505f0c3d019d26386b7027a35aaec976e30001065af3 24880 gst-plugins-ugly1.0_1.5.91-1.debian.tar.xz 84a44c7d68bdaf607ee70bd35b8f96714b3d81e937ea00e6f4edce08ed3bd6d0 859772 gstreamer1.0-plugins-ugly-dbg_1.5.91-1_amd64.deb e30a9d04f68e84be076abc46777a6d87a39001078a8328240a6258878fe1ae2f 196802 gstreamer1.0-plugins-ugly-doc_1.5.91-1_all.deb e7771051180b2536ed37137a0812227cfe299fee8eaa51c98a11431246fdd198 381248 gstreamer1.0-plugins-ugly_1.5.91-1_amd64.deb Files: f2dd3639ecd4d30b54678b4a6db46a9e 3121 libs optional gst-plugins-ugly1.0_1.5.91-1.dsc 78f2b8b4b86564dda5caa4926b5c6e24 858080 libs optional gst-plugins-ugly1.0_1.5.91.orig.tar.xz 6512509f7749ace9b874914517312f3c 24880 libs optional gst-plugins-ugly1.0_1.5.91-1.debian.tar.xz 89768b21ead5da48767837410acc05a0 859772 debug extra gstreamer1.0-plugins-ugly-dbg_1.5.91-1_amd64.deb 316103a896c2859805eb2e3f3ae80e32 196802 doc optional gstreamer1.0-plugins-ugly-doc_1.5.91-1_all.deb 45698e891eabfd44b8bdec9e41c72c8e 381248 libs optional gstreamer1.0-plugins-ugly_1.5.91-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJV/FsmXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1Tn8P/R6fZ7tQ0lZMzzWdgQiyuoHe BOfptMb8FUdL55AXkoPcoNfHxJSid+mxgWD9Zu0YNuH7O8F2PZYXolofaGpyykKo i6cK6br+pXmAPiWyI5ydC2V7X4iwJl/Vq92lVgwDxSYLKQ1Yzu/RukMM+EHEq8cy T7Xv9J5mP6p112yP84X8qLBg2Q3hnQbLJgd9Ms9gZrK5XswKP+/vee5dhqKkWCfE SXUDuCLtGLWk5BQRyBa8IaJo85BYwaT6QOU655rAu6P11p0y2wmu2AhLD/xwGDR/ Q2KaQUV9o8TVEb0RTmaY7EGr0qfBYBnvO3Pd976NJLHQHEWMDRNrYF3qMs69hRZK RnP5NsfLs4yxGmoy280JI39PzlP205PXvJEvp0IgFi9noA2C3UutblPCio0lbx5N 8bG3N44jrkiSbQz4T2M+32HRsJAOdBLBeY856RB4CmFuV1jzNzwEsijK1VyHaF9A M4QhglxK2z0yj0l2Ooj84syYTxcV10s3jq0J84/QqmPi5SSzK/VjsqOav9R3UiTQ L3mw4FO/Dx3LWf89ENAa+FfvaT4EG51r3OVW1G6o4tiQ0DxOl4bN9abdlTARapa5 yMwDv7mh3OoT7lgq1fp+fvKY8bCqhsg00BKsmc7oeaNbQR8NGafRpva2vcWdDu+S QPoFYQYcjdz9HBH/PLp8 =Hz0Y -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 18 19:04:38 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:04:38 +0000 Subject: gst-rtsp-server1.0_1.5.91-1_amd64.changes ACCEPTED into experimental Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 18 Sep 2015 20:10:47 +0200 Source: gst-rtsp-server1.0 Binary: libgstrtspserver-1.0-doc libgstrtspserver-1.0-dev libgstrtspserver-1.0-0 libgstrtspserver-1.0-0-dbg gir1.2-gst-rtsp-server-1.0 Architecture: source amd64 all Version: 1.5.91-1 Distribution: experimental Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gir1.2-gst-rtsp-server-1.0 - GObject introspection data for the GStreamer RTSP Server libgstrtspserver-1.0-0 - GStreamer RTSP Server (shared library) libgstrtspserver-1.0-0-dbg - GStreamer RTSP Server (debug symbols) libgstrtspserver-1.0-dev - GStreamer RTSP Server (development files) libgstrtspserver-1.0-doc - GStreamer RTSP Server (documentation) Changes: gst-rtsp-server1.0 (1.5.91-1) experimental; urgency=medium . * New upstream release candidate. Checksums-Sha1: be977d5124676d21e421787bc64125a61f11db62 2801 gst-rtsp-server1.0_1.5.91-1.dsc ee9f9f01f9f0a3d6cdae276460fd6d1ea7449eef 560756 gst-rtsp-server1.0_1.5.91.orig.tar.xz 89030d6b1ffb6194d13e2eb4a1def97a27668ce8 4508 gst-rtsp-server1.0_1.5.91-1.debian.tar.xz c4a07fe5d1740a0cf959cc07fa86175c7b2c20a0 76994 gir1.2-gst-rtsp-server-1.0_1.5.91-1_amd64.deb 5872ac0143d8ef48d6b41ed0d241031e472b7fe8 379776 libgstrtspserver-1.0-0-dbg_1.5.91-1_amd64.deb acdee7e1bf32c23158f33e5f3f93419b7d75b2b8 163146 libgstrtspserver-1.0-0_1.5.91-1_amd64.deb fd37a2e8da474adc00a66c06c335297d3650f53b 104292 libgstrtspserver-1.0-dev_1.5.91-1_amd64.deb b7bd02b3bd2beccb0b7eaae2e9464e5bfa646d07 133976 libgstrtspserver-1.0-doc_1.5.91-1_all.deb Checksums-Sha256: ce72e6f05f8e0df00eb8293186b9ff4d79866a6af7f5eba55617f5b676dfe846 2801 gst-rtsp-server1.0_1.5.91-1.dsc f7274e823ed4725af3ee246e7e71c7cddbd9af64d9778559594307ef9d4ab5d8 560756 gst-rtsp-server1.0_1.5.91.orig.tar.xz 8bdd897d051d052c2df30667ac494d9a68054dbdf96fb3e3e0bca014f538dd4a 4508 gst-rtsp-server1.0_1.5.91-1.debian.tar.xz 50cc4087b4498b47b5189a5557eb0992257b23b7c9f64820699fb41193f39917 76994 gir1.2-gst-rtsp-server-1.0_1.5.91-1_amd64.deb a42f9a08ac24540ee340356c2156fb133c443e769dec14cc0d860a563fafc1c9 379776 libgstrtspserver-1.0-0-dbg_1.5.91-1_amd64.deb 4f36648b64eb72af46367bee75aca3be1a0325c36577c80359ce9f636286109f 163146 libgstrtspserver-1.0-0_1.5.91-1_amd64.deb 414583cdea46082ef23196c862916cc0e915685d00e6affa3ba754a13e6c9380 104292 libgstrtspserver-1.0-dev_1.5.91-1_amd64.deb 5abbb525cbb01171965d7584ffb00fdb263e4ff36923c1e8ddfc5f7a896bac98 133976 libgstrtspserver-1.0-doc_1.5.91-1_all.deb Files: af2e383b30f25c6c34683f12ed4f3357 2801 libs optional gst-rtsp-server1.0_1.5.91-1.dsc 36ebd49dbe9abc8dc45ba804ad12edea 560756 libs optional gst-rtsp-server1.0_1.5.91.orig.tar.xz 6de2f4eeb99720e3b52e624a06272379 4508 libs optional gst-rtsp-server1.0_1.5.91-1.debian.tar.xz 4de6225bb5cd9d50a662661088355de9 76994 introspection optional gir1.2-gst-rtsp-server-1.0_1.5.91-1_amd64.deb e7877899e6a5219253362cc99fddbc82 379776 debug extra libgstrtspserver-1.0-0-dbg_1.5.91-1_amd64.deb 72a9842ec2d9bd36367a2f4fdeea2a60 163146 libs optional libgstrtspserver-1.0-0_1.5.91-1_amd64.deb acc5c6666ac34c1ea6c3cf22fb277fe1 104292 libdevel optional libgstrtspserver-1.0-dev_1.5.91-1_amd64.deb 280c6e6ad0da51233897e055efbe55b8 133976 doc optional libgstrtspserver-1.0-doc_1.5.91-1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJV/FsmXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1XfQP/1hCWY/+z4721UjYQQ2HCSvh GV1lkPNwc0ZLfBwOIHM0sXNefK80j8GUIJAHH2pulLLPuGRIZfB9IQkmtFNkJXDe jqBl1BDSf7NaIoLsrsILJAD1f0xzjY+1xHMEtV88ceVjSvK/lWW6oRadUUW3s8jL PKzrTujAz5qVx5ChxeXl0Cf8tsFExiYuHv7QvAUBbzae2XmMHOEaH6fNlk6XJ16J NCfIgmtSNjBFjsxzfz8BNy/SMUAIKsnu6JwyoO20zhbAjbPIhopLTuf+NVYfhiav kP9h4UGQU+duoHvX3SUx07uyOFwlEwcNEYL5EmOEMJWcHyLcyd4R1YTngcJEglRl 5amgqgZIUkTAYmxrLea2/DoKPWZahLwzdDOrQzNjthRhg3boUy4UUKMSe4/S7nio v76kKkQIl8WGIpenPub3mHRvbD4POZ0vNBpzPEjLLdwPZlrUL1uI2ATil5HrqwdS T1/xXof1aZFJDcLm34zMoFe0Vp9reasSFzCEX8i7GGiVBk4GhfS7Zt4Mhikcs0cD qaolaA8uZLAUfposRokn5BMRXqdpqcjHhiS32DnglBbgYupWyeC6C7dZvyw5hyl4 LxbfNcDV9krY/lKkqPP7CRIzkqVEaoRZMtia0/1T50zSiLqvSle7ZgROw8K7cvu7 nlvAjkvWEQasI1dgdY+e =QNAq -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 18 19:06:35 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:06:35 +0000 Subject: Processing of gstreamer-editing-services1.0_1.5.91-1_amd64.changes Message-ID: gstreamer-editing-services1.0_1.5.91-1_amd64.changes uploaded successfully to localhost along with the files: gstreamer-editing-services1.0_1.5.91-1.dsc gstreamer-editing-services1.0_1.5.91.orig.tar.xz gstreamer-editing-services1.0_1.5.91-1.debian.tar.xz ges1.0-tools_1.5.91-1_amd64.deb gir1.2-ges-1.0_1.5.91-1_amd64.deb libges-1.0-0-dbg_1.5.91-1_amd64.deb libges-1.0-0_1.5.91-1_amd64.deb libges-1.0-dev_1.5.91-1_amd64.deb libges-1.0-doc_1.5.91-1_all.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 18 19:06:35 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:06:35 +0000 Subject: Processing of gstreamer1.0_1.5.91-1_amd64.changes Message-ID: gstreamer1.0_1.5.91-1_amd64.changes uploaded successfully to localhost along with the files: gstreamer1.0_1.5.91-1.dsc gstreamer1.0_1.5.91.orig.tar.xz gstreamer1.0_1.5.91-1.debian.tar.xz gir1.2-gstreamer-1.0_1.5.91-1_amd64.deb gstreamer1.0-doc_1.5.91-1_all.deb gstreamer1.0-tools_1.5.91-1_amd64.deb libgstreamer1.0-0-dbg_1.5.91-1_amd64.deb libgstreamer1.0-0_1.5.91-1_amd64.deb libgstreamer1.0-dev_1.5.91-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 18 19:18:51 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:18:51 +0000 Subject: gstreamer-editing-services1.0_1.5.91-1_amd64.changes ACCEPTED into experimental Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 18 Sep 2015 20:34:21 +0200 Source: gstreamer-editing-services1.0 Binary: libges-1.0-doc libges-1.0-dev libges-1.0-0 libges-1.0-0-dbg ges1.0-tools gir1.2-ges-1.0 Architecture: source amd64 all Version: 1.5.91-1 Distribution: experimental Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: ges1.0-tools - Tools for use with the GStreamer editing services gir1.2-ges-1.0 - GObject introspection data for the GES library libges-1.0-0 - GStreamer editing services (shared library) libges-1.0-0-dbg - GStreamer editing services (debug symbols) libges-1.0-dev - GStreamer editing services (development files) libges-1.0-doc - GStreamer editing services (documentation) Changes: gstreamer-editing-services1.0 (1.5.91-1) experimental; urgency=medium . * New upstream release candidate. Checksums-Sha1: 1c69a4ccf19c6d58d798cfab5122c517f8ee9f1b 2897 gstreamer-editing-services1.0_1.5.91-1.dsc 79e0a57e54df0b6fca24fd9fec495116ca8181d4 1013524 gstreamer-editing-services1.0_1.5.91.orig.tar.xz 8884deb9980d3a6da51ffcd10b50e828fbfb4a72 6020 gstreamer-editing-services1.0_1.5.91-1.debian.tar.xz 6f4cfb57dbcf690b7dd6621acc5ce40e5b0c10c8 123982 ges1.0-tools_1.5.91-1_amd64.deb cb39641c27e8eaf7946b20e61a3bddf81f74519f 129488 gir1.2-ges-1.0_1.5.91-1_amd64.deb 0ac1c26bdc7cd375ece2572cad93408d188786f9 847434 libges-1.0-0-dbg_1.5.91-1_amd64.deb b7e1651f143412f4294bbd08088aaec6440f4b55 326912 libges-1.0-0_1.5.91-1_amd64.deb e25dad3bbc39a3f625446d29c0bfb903a5c13b8f 178050 libges-1.0-dev_1.5.91-1_amd64.deb 17fda51af902ccbf3158925a1d2c9a98a9ce6e29 234570 libges-1.0-doc_1.5.91-1_all.deb Checksums-Sha256: cec3f6d89fa33f44795e0fad8a57256863ec8b1c98a5107e5be5d6084d206d46 2897 gstreamer-editing-services1.0_1.5.91-1.dsc 22982a01f6ac2f38589a9f635633f3feacc7f137cdf33de24aaf5938f22ef3d1 1013524 gstreamer-editing-services1.0_1.5.91.orig.tar.xz e93e94b81c81667b64a526c30346b934f6263b109d311263d6057a0a7e9f8e0f 6020 gstreamer-editing-services1.0_1.5.91-1.debian.tar.xz cd2f81d9fb6d704fbd40f5da517ce1dd8ddf9503d67cf183e0457cab6f48970f 123982 ges1.0-tools_1.5.91-1_amd64.deb a2fed1c485de25f5638672707e5cf2cfd7b869315a2a685c02ddefdc384191bd 129488 gir1.2-ges-1.0_1.5.91-1_amd64.deb 29b15ee3cb35a45e9d38ddf8cab8179420a162227f44d070645aca53f5f81d4d 847434 libges-1.0-0-dbg_1.5.91-1_amd64.deb 1f61ad0a02474c55c7afbc204713c078105e8d05ec49290dcbbbebfa11c915d2 326912 libges-1.0-0_1.5.91-1_amd64.deb 553d25836db5888036357418f79b5986b5a1495c27abe9a86efd64a3af251bd2 178050 libges-1.0-dev_1.5.91-1_amd64.deb e180dabef6f619ee34aa1eb86877e345fe0cb6cfb952c0e1b1cd599e1ca0e93c 234570 libges-1.0-doc_1.5.91-1_all.deb Files: 047c244dddd5a33c60768a62929ffcf3 2897 libs optional gstreamer-editing-services1.0_1.5.91-1.dsc 4af750969d3a28d40e74444fea82b00c 1013524 libs optional gstreamer-editing-services1.0_1.5.91.orig.tar.xz 025cc61a42a958d80108c63157a306d5 6020 libs optional gstreamer-editing-services1.0_1.5.91-1.debian.tar.xz b7e24dc20a45b2786c193e2c49e5fa14 123982 utils optional ges1.0-tools_1.5.91-1_amd64.deb b94e240386dc220357c3e12ed5e27e30 129488 introspection optional gir1.2-ges-1.0_1.5.91-1_amd64.deb 41887e3cf1828803147b94e3c14feb24 847434 debug extra libges-1.0-0-dbg_1.5.91-1_amd64.deb f76991ac40c747d556f5738a761754cf 326912 libs optional libges-1.0-0_1.5.91-1_amd64.deb d64ececa1cb2e13854583507eca6f48d 178050 libdevel optional libges-1.0-dev_1.5.91-1_amd64.deb 6c8e681aba6fc0e451e060e0828c39da 234570 doc optional libges-1.0-doc_1.5.91-1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJV/FsmXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte184cP/1ft/e9bd2G/4Fm9Izvz/qPf McoSyZNMayadVAe3s3JxTdm8koA+GqIhUdS+HFLFkemmYYwA2ezLO8umMmceS/J9 M8/COs8W2Fq31BHcOcuDVTkVB5elOTDZNO2Kspgp4XihxHRDNt8jUkVsDZ1N5av/ Ok70Es9I4J4fEaNrRGj3TscP+XByp6yemSFNWrIZ5TuK348WoHDcxrmGcTA7AYlM vmi2K6NZiTNiKg3Ic1O8SDdk2tAp7zTkLqOUrLCggZs/ZnimZ46ZmyW2jj7veLL+ bxnXdNYx9nU4QkqM4h074vTOJjMWZFhbdQppZLzzIIDeS7xf4QWTZ6eUuYHXxIHy n3pweMX1wRFD3Yc+K6CVOtRpcewbm+i2mV8fwUsA/bpMiudEBoZmyiPPjfhJRIMq /3skTiPDhs7XkEAhc9KdLPrHf13iy0HNc8QxK6QOhvZf1kw2EhTwOFKlV+4o1X9c TsHSb2i5R+dZhQpcemQXQy+uMBJKHDCVXkKt7WCB0/BGx+GJD/tChx+EwmxTvKPT H0ZFngBaohB0JZNF7DExd7T0//oZL4qsFSALDSSLPHfKe+YpUADwUN68tGAcFDh4 6On+GoT6+ph+K9kSN5C+hlfSq8UmNcBpkhBuV+kspxBrdkXezjsDTLgHcTUeZqyu OYJgBoEhK3X6eUe6TCia =22CL -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 18 19:19:06 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 18 Sep 2015 19:19:06 +0000 Subject: gstreamer1.0_1.5.91-1_amd64.changes ACCEPTED into experimental Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 18 Sep 2015 18:57:10 +0200 Source: gstreamer1.0 Binary: libgstreamer1.0-0 libgstreamer1.0-0-dbg libgstreamer1.0-dev gstreamer1.0-doc gstreamer1.0-tools gir1.2-gstreamer-1.0 Architecture: source amd64 all Version: 1.5.91-1 Distribution: experimental Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gir1.2-gstreamer-1.0 - Description: GObject introspection data for the GStreamer library gstreamer1.0-doc - GStreamer core documentation and manuals gstreamer1.0-tools - Tools for use with GStreamer libgstreamer1.0-0 - Core GStreamer libraries and elements libgstreamer1.0-0-dbg - Core GStreamer libraries and elements libgstreamer1.0-dev - GStreamer core development files Changes: gstreamer1.0 (1.5.91-1) experimental; urgency=medium . * New upstream release candidate. Checksums-Sha1: 80c40bc16e907c8cd971816d224a8c7fa500af06 3124 gstreamer1.0_1.5.91-1.dsc 666a94e5ad39b6271fce49b605661d1be19ace9e 3548312 gstreamer1.0_1.5.91.orig.tar.xz a065c5fbe7fc814c0a7148a6a6905ec369cdbb28 41564 gstreamer1.0_1.5.91-1.debian.tar.xz 97957ee51c81c9d716eb8fc09728d868ede7fe68 956156 gir1.2-gstreamer-1.0_1.5.91-1_amd64.deb ced9c0eb1027997a6f938d36644d44e7673f27e8 4473800 gstreamer1.0-doc_1.5.91-1_all.deb 1e221a4c4a03270c7488605eabe03a3e2eea386f 927656 gstreamer1.0-tools_1.5.91-1_amd64.deb 32ba5e1115c18227ae4f0a6480b77d235d1c1dd8 3094924 libgstreamer1.0-0-dbg_1.5.91-1_amd64.deb 16a3c7edd61cda0b81b2ce2e7aae2177ba99060f 1800286 libgstreamer1.0-0_1.5.91-1_amd64.deb c847bd29207e35857df3cfc614f22c48d10ce0a5 1258098 libgstreamer1.0-dev_1.5.91-1_amd64.deb Checksums-Sha256: 7f8d8cb9f4b9a87d0384622f7d0dc43f514b1166b0e8a2cd41f83a6a94fefd82 3124 gstreamer1.0_1.5.91-1.dsc 1b25416d9908ee46ad79c2e070ed7560439d47e14cc77d4d509b5a3b03004f32 3548312 gstreamer1.0_1.5.91.orig.tar.xz e144fbe3f8f60cab05a8fa1bcdf64490fd2106f9c9ed3e986d1a6f45a2285881 41564 gstreamer1.0_1.5.91-1.debian.tar.xz c48c968884631afc1045c9df0a8659e96c9f9d4fa95e033611daef8d715902ca 956156 gir1.2-gstreamer-1.0_1.5.91-1_amd64.deb 6668e4a8e72d7caedf877cd996e015f55855f112b285f4180f567a22b341ff5f 4473800 gstreamer1.0-doc_1.5.91-1_all.deb 2c2e3080475d1ca2a36f9cc14c37429171e9fa540d9eeb14bd05a99fdd87bb58 927656 gstreamer1.0-tools_1.5.91-1_amd64.deb 4d0c8bc52ccbc338d7b79a335cf7480d0d796497a9e78435320002f2025f7ecb 3094924 libgstreamer1.0-0-dbg_1.5.91-1_amd64.deb 60d799db1f18c3f3d4dae30cf254446e8de28e59afec73a49c56c0257db8f035 1800286 libgstreamer1.0-0_1.5.91-1_amd64.deb b059db923ea6b37fcaab9caec2d8567b2da474244b989df44519c891f8461043 1258098 libgstreamer1.0-dev_1.5.91-1_amd64.deb Files: f9f0cfb3dbdaca1f8f6de1f8fca0a13e 3124 libs optional gstreamer1.0_1.5.91-1.dsc ea1741121cc28bbe5e34ea72e1dd6a3f 3548312 libs optional gstreamer1.0_1.5.91.orig.tar.xz 7a707571601ff4b1435af649cb55a9ae 41564 libs optional gstreamer1.0_1.5.91-1.debian.tar.xz b2aec6469f3c39637bf4951af98882a9 956156 introspection optional gir1.2-gstreamer-1.0_1.5.91-1_amd64.deb 805f109cf066f8d794772a30f96df1fa 4473800 doc optional gstreamer1.0-doc_1.5.91-1_all.deb b43102fe00841fd20652e3db9264b959 927656 utils optional gstreamer1.0-tools_1.5.91-1_amd64.deb 5de53d7127a76d94d394dd263574a621 3094924 debug extra libgstreamer1.0-0-dbg_1.5.91-1_amd64.deb dad452a6781cf710028bde5ab735e787 1800286 libs optional libgstreamer1.0-0_1.5.91-1_amd64.deb 976ea72163c6b68eb0d898972c2b05a3 1258098 libdevel optional libgstreamer1.0-dev_1.5.91-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJV/FsnXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte116QQANkAv1zi2HWEH+2dTV41b6xA gDLhKWHMmCuzYZs0I/ARvcIoGOF020SwBQOJF6qxi38aEy2M+cuGDEHkjxoOPamF SuTGwl5lOn253YxjK/arm5DRuGN+heFWoNR8x2i8CqJnB+lRILrWEnEKHrkJoe/y nakDUbpcH37ZZFLbV43gAnEsFsK1N6i2JpTOy35oCUL0pp928sM/GpFjZ0v28Yjx MO+Y5ZfcfMYEg2Ne4pNPC0X3HWDVoF+xZcSYWW/QgfMgu6pcsmP4JZUyMGRj8cAS 91E8N8lyXatqhCqO+zf9a9DpQDFZ7Ya5okdrQTpC+S0m4zvyEghWzgjyZokxMPFt o5f43ji5Rlxl1Kl1f9IhaGmRnlQ57GZUm+4H0tGW31Fe1lyCB3jL6lFghssNmNwo dqyqr6AWpESA0AIWhJiGrmBEGeJW70IBy+tIwi53KhUbdPZXJiBfHq9LnwnTbQ6F FhtxvnWyNywFEvyTXDvqg73cdE1ASXdnF2iTzyNAu2rj4BgkPImYylEFmqOvfGes QzJlp8o92vvygPkoHLCO9kS5hIaIUE2tyQRrAVAc9wFseAuIvOVOp2RK5olVgVLx vGxxcb8MVW7VslGtmnGdpq2eKasX1jQBTztBdtVRQGXZFnCcr2R35qKqNequTlVT 2lCtfZGibkwfvCvv6J1J =X/L8 -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From stefanor at debian.org Sat Sep 19 13:13:16 2015 From: stefanor at debian.org (Stefano Rivera) Date: Sat, 19 Sep 2015 09:13:16 -0400 Subject: Bug#799467: lintian: Update home of dh_gstscancodecs Message-ID: <20150919131316.GA23918@smetana.kardiogramm.net> Package: lintian Version: 2.5.37 Severity: normal Tags: patch This is bogus: > E: gst-plugins-dvswitch source: missing-build-dependency-for-dh_-command dh_gstscancodecs => libgstreamer0.10-dev We're migrating to GStreamer 1.0 (#785198). So, here's a patch. SR -------------- next part -------------- A non-text attachment was scrubbed... Name: dh_gstscancodecs-home.patch Type: text/x-diff Size: 808 bytes Desc: not available URL: From noreply at release.debian.org Sat Sep 19 16:39:14 2015 From: noreply at release.debian.org (Debian testing watch) Date: Sat, 19 Sep 2015 16:39:14 +0000 Subject: liboil REMOVED from testing Message-ID: FYI: The status of the liboil source package in Debian's testing distribution has changed. Previous version: 0.3.17-2 Current version: (not in testing) Hint: Package not in unstable The script that generates this mail tries to extract removal reasons from comments in the britney hint files. Those comments were not originally meant to be machine readable, so if the reason for removing your package seems to be nonsense, it is probably the reporting script that got confused. Please check the actual hints file before you complain about meaningless removals. -- 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. From owner at bugs.debian.org Sat Sep 19 17:03:11 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 19 Sep 2015 17:03:11 +0000 Subject: Bug#788601: marked as done (pitivi: segfaults on start, 100% of the time) References: <1442682021.4960.15.camel@debian.org> <20150613041137.26984.40827.reportbug@hephaestus.lan.complete.org> Message-ID: Your message dated Sat, 19 Sep 2015 19:00:21 +0200 with message-id <1442682021.4960.15.camel at debian.org> and subject line has caused the Debian Bug report #788601, regarding pitivi: segfaults on start, 100% of the time 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 owner at bugs.debian.org immediately.) -- 788601: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788601 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: John Goerzen Subject: pitivi: segfaults on start, 100% of the time Date: Fri, 12 Jun 2015 23:11:37 -0500 Size: 5317 URL: -------------- next part -------------- An embedded message was scrubbed... From: Sebastian =?ISO-8859-1?Q?Dr=F6ge?= Subject: Date: Sat, 19 Sep 2015 19:00:21 +0200 Size: 3273 URL: From ftpmaster at ftp-master.debian.org Sat Sep 19 21:44:35 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Sat, 19 Sep 2015 21:44:35 +0000 Subject: Processing of buzztrax_0.10.1-1_amd64.changes Message-ID: buzztrax_0.10.1-1_amd64.changes uploaded successfully to localhost along with the files: buzztrax_0.10.1-1.dsc buzztrax_0.10.1.orig.tar.gz buzztrax_0.10.1-1.debian.tar.xz buzztrax_0.10.1-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Sat Sep 19 21:50:52 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Sat, 19 Sep 2015 21:50:52 +0000 Subject: buzztrax_0.10.1-1_amd64.changes is NEW Message-ID: binary:buzztrax is NEW. source:buzztrax is NEW. Your package has been put into the NEW queue, which requires manual action from the ftpteam to process. The upload was otherwise valid (it had a good OpenPGP signature and file hashes are valid), so please be patient. Packages are routinely processed through to the archive, and do feel free to browse the NEW queue[1]. If there is an issue with the upload, you will recieve an email from a member of the ftpteam. If you have any questions, you may reply to this email. [1]: https://ftp-master.debian.org/new.html From carine33_bougnon at outlook.fr Sun Sep 20 17:39:10 2015 From: carine33_bougnon at outlook.fr (Carine Bougnon) Date: Sun, 20 Sep 2015 17:39:10 +0000 Subject: BONSOIR. Message-ID: Comment allez-vous? Bien j?esp?re. Moi ?a va J'aimerais avant tout m'excusez du d?rangement Je me pr?sente Carine Bougnon J'ai 32ans je fais 1m68 pour 57 KILOS Je suis une femme tr?s s?rieuse, honn?te, et sinc?re, dans tout ce que je fais dans la vie et surtout sympas cool attentionn?e et Qui a les pieds sur terre. Je suis c?libataire depuis 11 mois et j'ai une fille de 4 ans dont j'ai la garde. Cela ne vous d?range pas j?esp?re Moi non car j?adore les enfants.je suis ? la recherche l'?me s?ur un homme qui m?aimerait sinc?rement et en qui je placerais tout mon amour et toute ma confiance Je souhaite aussi une relation fond?e sur l?admiration, la confiance, le partage, la joie et la dur?e de l?amour relation durable sans prise de t?te avec une personne sinc?re s?rieuse fid?le sympas cool. Je vie ? paris et je suis originaire de paris Je suis fleuriste ? mon compte.La raison pour la quel je vous fait ce ?mail c'est juste que j'aimerais faire de nouvelle rencontre faire ample connaissance avec de nouvelle personne et voir si il a le feeling pr?voir une rencontre aussi j'aimerais vous dire que la distance n'est pas un obstacle pour moi. Je vous envoie deux de mes photos pour que vous sachiez que je suis sinc?re dans ma recherche,Tout en esp?rant avoir une r?ponse de vous. Au plaisir de vous lire bisous et bonne soir?e. Cordialement Carine. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: CARINE1.jpg Type: image/jpeg Size: 113169 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: CARINE2.jpg Type: image/jpeg Size: 36031 bytes Desc: not available URL: From debian at kitterman.com Mon Sep 21 13:27:23 2015 From: debian at kitterman.com (Scott Kitterman) Date: Mon, 21 Sep 2015 09:27:23 -0400 Subject: Bug#799677: pitivi: Incorrect depends, build-depends, and other issues Message-ID: <20150921132723.8659.75907.reportbug@kitterma-E6430> Package: pitivi Version: 0.94-3 Severity: serious Justification: Policy 3.5 To start with, pitivi only builds against a single python3 version (the default), not all versions, so it should build-dep on python3-dev vice python3-all-dev. The python3-all-dev build-dep makes it appear on the list of candidate packages for the python3.5 transition [1], which is should not. That is, however, probably the most minor thing I noticed once I started looking. In the depends, it should be python3:Depends vice python:Depends. Since the python files are shipped in a private library location, you will have to specify the location to dh_python3 (see man dh_python3, private dirs. The generated python3 depends should currently look like: python3 (<< 3.5), python3 (>= 3.4~) The manual python3 depends should be removed. I was not able to figure out how to make this work, but I suspect it has to do with a linking issue in the build. If you look at the i386 build log [2], it contains: dpkg-shlibdeps: warning: debian/pitivi/usr/lib/i386-linux-gnu/pitivi/python/pitivi/timeline/renderer.so contains an unresolvable reference to symbol PyList_GetItem: it's probably a plugin dpkg-shlibdeps: warning: 8 other similar warnings have been skipped (use -v to see them all) PyList_GetItem is provided by python3.4, so this is not a plugin, it's a missing link. I suspect that between fixing that and the private dirs issue for dh_python3, the depends issue should end up sorted. Finally, if you look at the file list for the binary (the same i386 build log [2] provides a convenient place to look), there are multiple __pycache__ directories in the binary that should not be there. Those should be generated on the target system. Scott K [1] https://release.debian.org/transitions/html/python3.5.html [2] https://buildd.debian.org/status/fetch.php?pkg=pitivi&arch=i386&ver=0.94-3&stamp=1440056865 From debian at kitterman.com Mon Sep 21 14:43:52 2015 From: debian at kitterman.com (Scott Kitterman) Date: Mon, 21 Sep 2015 10:43:52 -0400 Subject: Bug#799689: gst-python1.0: Missing python3 interpreter depends for python3-gst-1.0 Message-ID: <20150921144352.21542.76555.reportbug@kitterma-E6430> Source: gst-python1.0 Version: 1.4.0-2 Severity: serious Tags: patch Justification: Policy 3.5 The package uses python:Depends instead of python3:Depends for python3-gst-1.0, so it does not end up with correct dependencies. Fixing this gives a correct result. Please see the attached patch which fixes this as well as cleaning up some obsolete provides while I was at it. Scott K -------------- next part -------------- A non-text attachment was scrubbed... Name: gst-python1.0.debdiff Type: text/x-diff Size: 1854 bytes Desc: not available URL: From slomo at debian.org Mon Sep 21 14:55:01 2015 From: slomo at debian.org (Sebastian =?UTF-8?Q?Dr=C3=B6ge?=) Date: Mon, 21 Sep 2015 16:55:01 +0200 Subject: Bug#799689: gst-python1.0: Missing python3 interpreter depends for python3-gst-1.0 In-Reply-To: <20150921144352.21542.76555.reportbug@kitterma-E6430> References: <20150921144352.21542.76555.reportbug@kitterma-E6430> Message-ID: <1442847301.4960.45.camel@debian.org> On Mo, 2015-09-21 at 10:43 -0400, Scott Kitterman wrote: > The package uses python:Depends instead of python3:Depends for > python3-gst-1.0, so it does not end up with correct dependencies. > Fixing this gives a correct result. Please see the attached patch > which fixes this as well as cleaning up some obsolete provides while > I was at it. Thanks, I'll upload this together with the 1.6.0 release end of this week. Unless this is blocking you right now and needs to be resolved ASAP :) -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 949 bytes Desc: This is a digitally signed message part URL: From debian at kitterman.com Mon Sep 21 15:50:48 2015 From: debian at kitterman.com (Scott Kitterman) Date: Mon, 21 Sep 2015 11:50:48 -0400 Subject: Bug#799689: gst-python1.0: Missing python3 interpreter depends for python3-gst-1.0 In-Reply-To: <1442847301.4960.45.camel@debian.org> References: <20150921144352.21542.76555.reportbug@kitterma-E6430> <1442847301.4960.45.camel@debian.org> Message-ID: <6782055.EUEEL9OP9Y@kitterma-e6430> On Monday, September 21, 2015 04:55:01 PM Sebastian Dr?ge wrote: > On Mo, 2015-09-21 at 10:43 -0400, Scott Kitterman wrote: > > The package uses python:Depends instead of python3:Depends for > > python3-gst-1.0, so it does not end up with correct dependencies. > > Fixing this gives a correct result. Please see the attached patch > > which fixes this as well as cleaning up some obsolete provides while > > I was at it. > > Thanks, I'll upload this together with the 1.6.0 release end of this > week. Unless this is blocking you right now and needs to be resolved > ASAP :) The end of the week is fine. Thanks, Scott K -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 836 bytes Desc: This is a digitally signed message part. URL: From noreply at release.debian.org Tue Sep 22 16:39:09 2015 From: noreply at release.debian.org (Debian testing watch) Date: Tue, 22 Sep 2015 16:39:09 +0000 Subject: gst-fluendo-mp3 0.10.32.debian-1 MIGRATED to testing Message-ID: FYI: The status of the gst-fluendo-mp3 source package in Debian's testing distribution has changed. Previous version: 0.10.29.debian-1 Current version: 0.10.32.debian-1 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See https://release.debian.org/testing-watch/ for more information. From slomo at debian.org Tue Sep 22 18:41:35 2015 From: slomo at debian.org (Sebastian =?UTF-8?Q?Dr=C3=B6ge?=) Date: Tue, 22 Sep 2015 20:41:35 +0200 Subject: Bug#799677: pitivi: Incorrect depends, build-depends, and other issues In-Reply-To: <20150921132723.8659.75907.reportbug@kitterma-E6430> References: <20150921132723.8659.75907.reportbug@kitterma-E6430> Message-ID: <1442947295.2306.54.camel@debian.org> On Mon, 21 Sep 201509:27:23 -0400 Scott Kitterman wrote: > To start with, pitivi only builds against a single python3 version (the > default), not all versions, so it should build-dep on python3-dev vice > python3-all-dev. The python3-all-dev build-dep makes it appear on the list > of candidate packages for the python3.5 transition [1], which is should not. Thanks, will fix with next upload > That is, however, probably the most minor thing I noticed once I started > looking. > > In the depends, it should be python3:Depends vice python:Depends. Since the > python files are shipped in a private library location, you will have to > specify the location to dh_python3 (see man dh_python3, private dirs. > > The generated python3 depends should currently look like: > > python3 (<< 3.5), python3 (>= 3.4~) > > The manual python3 depends should be removed. I was not able to figure out > how to make this work, but I suspect it has to do with a linking issue in the > build. Ack > If you look at the i386 build log [2], it contains: > > dpkg-shlibdeps: warning: debian/pitivi/usr/lib/i386-linux-gnu/pitivi/python/pitivi/timeline/renderer.so contains an unresolvable reference to symbol PyList_GetItem: it's probably a plugin > dpkg-shlibdeps: warning: 8 other similar warnings have been skipped (use -v to see them all) > > PyList_GetItem is provided by python3.4, so this is not a plugin, it's a > missing link. My understanding is that you don't link Python modules against libpython, because the interpreter is already statically linked against libpython itself. > I suspect that between fixing that and the private dirs issue for dh_python3, > the depends issue should end up sorted. > > Finally, if you look at the file list for the binary (the same i386 build log > [2] provides a convenient place to look), there are multiple __pycache__ > directories in the binary that should not be there. Those should be generated > on the target system. Thanks! -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 949 bytes Desc: This is a digitally signed message part URL: From ftpmaster at ftp-master.debian.org Fri Sep 25 22:12:05 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:12:05 +0000 Subject: Processing of gst-libav1.0_1.6.0-1_amd64.changes Message-ID: gst-libav1.0_1.6.0-1_amd64.changes uploaded successfully to localhost along with the files: gst-libav1.0_1.6.0-1.dsc gst-libav1.0_1.6.0.orig.tar.xz gst-libav1.0_1.6.0-1.debian.tar.xz gstreamer1.0-libav-dbg_1.6.0-1_amd64.deb gstreamer1.0-libav_1.6.0-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 25 22:17:08 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:17:08 +0000 Subject: Processing of gst-plugins-bad1.0_1.6.0-1_amd64.changes Message-ID: gst-plugins-bad1.0_1.6.0-1_amd64.changes uploaded successfully to localhost along with the files: gst-plugins-bad1.0_1.6.0-1.dsc gst-plugins-bad1.0_1.6.0.orig.tar.xz gst-plugins-bad1.0_1.6.0-1.debian.tar.xz gir1.2-gst-plugins-bad-1.0_1.6.0-1_amd64.deb gstreamer1.0-plugins-bad-dbg_1.6.0-1_amd64.deb gstreamer1.0-plugins-bad-doc_1.6.0-1_all.deb gstreamer1.0-plugins-bad_1.6.0-1_amd64.deb libgstreamer-plugins-bad1.0-0_1.6.0-1_amd64.deb libgstreamer-plugins-bad1.0-dev_1.6.0-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 25 22:20:01 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:20:01 +0000 Subject: gst-libav1.0_1.6.0-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 25 Sep 2015 23:09:06 +0200 Source: gst-libav1.0 Binary: gstreamer1.0-libav gstreamer1.0-libav-dbg Architecture: source amd64 Version: 1.6.0-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gstreamer1.0-libav - libav plugin for GStreamer gstreamer1.0-libav-dbg - libav plugin for GStreamer (debug symbols) Changes: gst-libav1.0 (1.6.0-1) unstable; urgency=medium . * New upstream stable release. Checksums-Sha1: 7ccc07908ae753f39f3c65a92dbb4ca954b79706 2773 gst-libav1.0_1.6.0-1.dsc 8eb3aea26b23b55e9f2ee9c418dc0194e0f11470 7687504 gst-libav1.0_1.6.0.orig.tar.xz 23949dee075d916de6484a9b5f2ce68f6ad44342 10580 gst-libav1.0_1.6.0-1.debian.tar.xz f00d6c27084ec78bf5289b89cb4d56960f1f6ec1 473718 gstreamer1.0-libav-dbg_1.6.0-1_amd64.deb 290627ed60be668b639fddfdd60470a1624609eb 185186 gstreamer1.0-libav_1.6.0-1_amd64.deb Checksums-Sha256: 6695f6659964f080b00e90f811ca2541d1d8fee918eafa8521f0de72ed2e9013 2773 gst-libav1.0_1.6.0-1.dsc 6cca6cf73182a882768ef0c860af88c2fd2c77e2c81ce464a998ab4e6baa604c 7687504 gst-libav1.0_1.6.0.orig.tar.xz 5070957c640616e7c204a86fcd6f04233e2f3c8519acd4aacd564effb328dbe3 10580 gst-libav1.0_1.6.0-1.debian.tar.xz 64483449d5f4cc9dfea45d71fdcd2f21891a4008bc4f1e6e9ac8ac39a9cfd8d6 473718 gstreamer1.0-libav-dbg_1.6.0-1_amd64.deb 230921693d6067f12de1150b305d319bb7d057e43e02354d9778dc54e8eb8d88 185186 gstreamer1.0-libav_1.6.0-1_amd64.deb Files: c246a2650913c63e3ffa8f0e34c219de 2773 libs optional gst-libav1.0_1.6.0-1.dsc eda67328be0878bb73449c29ca55baf8 7687504 libs optional gst-libav1.0_1.6.0.orig.tar.xz 50a99269a084cf0a9daea7062428a7a7 10580 libs optional gst-libav1.0_1.6.0-1.debian.tar.xz 7f71e8630eb9efb1514e834e1503a187 473718 debug extra gstreamer1.0-libav-dbg_1.6.0-1_amd64.deb dc462b7d4742bbcd15be701ebf34ffea 185186 libs optional gstreamer1.0-libav_1.6.0-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBb1uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte19VoQAMqmHN1ZylZSH8f5ZFie1lbt vLyBVRCifx3jvoTBYB0YSovLq/7e1/mUWw89FWGJFuQD+C3B+cUnG89bKLT0wf1f xZ061rg5bmpMlmUnqVPn1qxXlRV/DbKNXb/kqAPAc8CNwD12cwFk6SoliDPQvcPH /RVrU1g7REn76AG7wxpbr3MKL6CKHElkLbZNeHf6kRsfNU/NsrJj+sOZHr7PGga5 Oy3Urg8Sm9Oce83sWR6v3ObMC9n4Nn659mVtv9+xuU563b27GWq7TEFHQUvGKLMp JK0jUmlEhjQTuc8TFvjGefupyBS5EJ2yaB8YaP0/54GXQwzCE7bmuy4KMOxSz5UV b2ytisnlsYiuCpqvx6PO2ZvmGxny8mGnxI8di/ao8Fef4sVo7nHwSwsgQKG3e73e 7AYG/j+XrKDxrEjuPdR5z8EuLVzuX94ypjPomGHlj6kHLQFZTrIe4IruAqiil5jF oqQinz5i8tbtry3Z30rZ3V2XKFwJV2oYCPYCMKUvECWz3vlicoHmcUj6IWhXkjW2 FKMycXkk8OMvc/rCNHJPzYCeNaVjuqziGdpXyJX+i2PRUmoUmPhwDBJfphiP1oFR VmA9wuBRKupat6p2BdP+sSmlSs4oZCA7GIgyjlO+U6UnyAo0mPgiWJUcLraMiZM7 PwW4zFLhg4JkNIRaGEmD =JHfw -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 25 22:20:19 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:20:19 +0000 Subject: gst-plugins-bad1.0_1.6.0-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 25 Sep 2015 23:02:02 +0200 Source: gst-plugins-bad1.0 Binary: gstreamer1.0-plugins-bad-doc gstreamer1.0-plugins-bad gstreamer1.0-plugins-bad-dbg libgstreamer-plugins-bad1.0-0 libgstreamer-plugins-bad1.0-dev gir1.2-gst-plugins-bad-1.0 Architecture: source amd64 all Version: 1.6.0-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gir1.2-gst-plugins-bad-1.0 - Description: GObject introspection data for the GStreamer librari gstreamer1.0-plugins-bad - GStreamer plugins from the "bad" set gstreamer1.0-plugins-bad-dbg - GStreamer plugins from the "bad" set (debug symbols) gstreamer1.0-plugins-bad-doc - GStreamer documentation for plugins from the "bad" set libgstreamer-plugins-bad1.0-0 - GStreamer development files for libraries from the "bad" set libgstreamer-plugins-bad1.0-dev - GStreamer development files for libraries from the "bad" set Changes: gst-plugins-bad1.0 (1.6.0-1) unstable; urgency=medium . * New upstream stable release. Checksums-Sha1: 8eb988e9059e80e36add60778ce795d4e3092a07 4734 gst-plugins-bad1.0_1.6.0-1.dsc 02e78040a60178584bfa359e747f006306324966 4209172 gst-plugins-bad1.0_1.6.0.orig.tar.xz b69cf8e5f1aa2c54ef7a5197d17efeb7bf2d7184 32912 gst-plugins-bad1.0_1.6.0-1.debian.tar.xz 2f7591d77ea7f68167f58eeffa5d159ddf8bd74f 1275980 gir1.2-gst-plugins-bad-1.0_1.6.0-1_amd64.deb 603978cec7416e92be3e1a804d873bf0f01fdec4 9112536 gstreamer1.0-plugins-bad-dbg_1.6.0-1_amd64.deb ecb3c9ae2b17a9ed0d14bf135a2abfbcf06ca0cb 1471736 gstreamer1.0-plugins-bad-doc_1.6.0-1_all.deb d7689e2bf78d74e8e986f772410cc564f72990f9 2724604 gstreamer1.0-plugins-bad_1.6.0-1_amd64.deb 60fed9bc13541fdf2099f179f5aeeb8c6d29b85b 1581976 libgstreamer-plugins-bad1.0-0_1.6.0-1_amd64.deb 1f5cb28fea3202f441c00ef940ab925ae05418a1 1359318 libgstreamer-plugins-bad1.0-dev_1.6.0-1_amd64.deb Checksums-Sha256: 5fc654897f2ad062ba5af1fc0b3dd857253e8b54dd987e296cbf5411e533a8e1 4734 gst-plugins-bad1.0_1.6.0-1.dsc d8ff26128d4ecd2ffeb28e14843808d2d971b09056b7cee6f08afcae01fc0f49 4209172 gst-plugins-bad1.0_1.6.0.orig.tar.xz f7f387060947713bcc4ee76eb009b6731e2bfdaa4425a3ffa9b8e0f9dd153e7f 32912 gst-plugins-bad1.0_1.6.0-1.debian.tar.xz 6228b132183820de078164d230f92a4fd706217faaae6546d08b3472bf7d35a1 1275980 gir1.2-gst-plugins-bad-1.0_1.6.0-1_amd64.deb 391ebf12c4e47f40b8589633f4904e06458531ef992bba38b85884d04b73f29d 9112536 gstreamer1.0-plugins-bad-dbg_1.6.0-1_amd64.deb e0bb74527dd25a14ef3e13cdf1542240eb00aa1a8d339550c7a268c37b7704aa 1471736 gstreamer1.0-plugins-bad-doc_1.6.0-1_all.deb d90dcd0627e5ced04d4242db26b9f98a03636d45c60814a9007ef01610c917b1 2724604 gstreamer1.0-plugins-bad_1.6.0-1_amd64.deb b5c0a731ae4d147fb5f286b80832fd56587aecda2e3108415369e486c5e90002 1581976 libgstreamer-plugins-bad1.0-0_1.6.0-1_amd64.deb 8e1d53b601431d8a366a43c15f1f5f5f04acbfcd16407f485fe43c987654eab3 1359318 libgstreamer-plugins-bad1.0-dev_1.6.0-1_amd64.deb Files: ee9fd2966714ac9f5a57929533d74046 4734 libs extra gst-plugins-bad1.0_1.6.0-1.dsc 111632f8d1d1ba39bbf3665aaafcb28c 4209172 libs extra gst-plugins-bad1.0_1.6.0.orig.tar.xz f7717ad2126ebaef8ad8abf4491dea90 32912 libs extra gst-plugins-bad1.0_1.6.0-1.debian.tar.xz 6a4c3c617818aa5c40320c1493e7639c 1275980 introspection extra gir1.2-gst-plugins-bad-1.0_1.6.0-1_amd64.deb 65b4c14db844429598cfaefbd2d2cead 9112536 debug extra gstreamer1.0-plugins-bad-dbg_1.6.0-1_amd64.deb cfb813fb3ffac3f796e31a0a745013ee 1471736 doc extra gstreamer1.0-plugins-bad-doc_1.6.0-1_all.deb 02ab8d10c4bf39eaad08e842b5b0161e 2724604 libs extra gstreamer1.0-plugins-bad_1.6.0-1_amd64.deb bc96f259ab1927911943d017c5b716c3 1581976 libs extra libgstreamer-plugins-bad1.0-0_1.6.0-1_amd64.deb 61809a372883105ab1bad1c43efaa6d2 1359318 libdevel extra libgstreamer-plugins-bad1.0-dev_1.6.0-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBb1uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte12gQQAKngF4O7Z7sMXavsl3gvxOfo 7WWBMlMUI4R6sm34qIG5i7uSbwhgrr4GDGkvxkXPtk4CzXqodrMdoIkmHKpJpoyI SOOVsDVJGxzTUPDSWS/nRGiuK1LnGlX5rDcXwh3I4dZTrVMa06nG1cc8eyn2BPuB wwdI9EVKNC4/zwQA8xuWWLdFpyy77BzmrZulZaecMoPZwygS1jL6K7XQGmkQ7dxl L55YBuDFqsECXn2+3fXyjQiFk5AQYT9axjLa02DftrfjHezE7eryuUHTISlrxjcT UZZ3W6cNcQQUMjF9esAOZn/94Ug4/sAnqmIWK01Eb6/xcOXYryYkZoYmrJnBEOPG xB8UqbTsQ6vD1hp3yZfx7Ql2P+YUg8GbK8uiJSilU7YdrYCGnk+g4H4VaG6L+Lbu JH8BR0eWlVnGk6G+LyrIYtQ8OqSPxhKOguj7LFYO9NBGGPNa6rRdP9mksPEpM/Qo oUYSUwTIQDraFnUaOsp1HAV5ta6/QukWA1eq+I6LuKUsBOE0wNAInZZJyF16Njk/ jndpX+BJj/JMAXKkK4BqmzMnqjDKW3doSc3OVhClu+fxX2TGsFwMWhJ0aPSUKalB BRs2zOt5lDLSappu/Sn+g92qtBnWWaO6dkZVniAtCUwCVjGvLYYpZyyrRUVmFvBR Hnep/Q4iWuqpNXAA9Z95 =Ak0z -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 25 22:22:11 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:22:11 +0000 Subject: Processing of gst-plugins-base1.0_1.6.0-1_amd64.changes Message-ID: gst-plugins-base1.0_1.6.0-1_amd64.changes uploaded successfully to localhost along with the files: gst-plugins-base1.0_1.6.0-1.dsc gst-plugins-base1.0_1.6.0.orig.tar.xz gst-plugins-base1.0_1.6.0-1.debian.tar.xz gir1.2-gst-plugins-base-1.0_1.6.0-1_amd64.deb gstreamer1.0-alsa_1.6.0-1_amd64.deb gstreamer1.0-plugins-base-apps_1.6.0-1_amd64.deb gstreamer1.0-plugins-base-dbg_1.6.0-1_amd64.deb gstreamer1.0-plugins-base-doc_1.6.0-1_all.deb gstreamer1.0-plugins-base_1.6.0-1_amd64.deb gstreamer1.0-x_1.6.0-1_amd64.deb libgstreamer-plugins-base1.0-0_1.6.0-1_amd64.deb libgstreamer-plugins-base1.0-dev_1.6.0-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 25 22:27:13 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:27:13 +0000 Subject: Processing of gst-python1.0_1.6.0-1_amd64.changes Message-ID: gst-python1.0_1.6.0-1_amd64.changes uploaded successfully to localhost along with the files: gst-python1.0_1.6.0-1.dsc gst-python1.0_1.6.0.orig.tar.xz gst-python1.0_1.6.0-1.debian.tar.xz python-gst-1.0-dbg_1.6.0-1_amd64.deb python-gst-1.0_1.6.0-1_amd64.deb python3-gst-1.0-dbg_1.6.0-1_amd64.deb python3-gst-1.0_1.6.0-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 25 22:27:12 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:27:12 +0000 Subject: Processing of gst-plugins-ugly1.0_1.6.0-1_amd64.changes Message-ID: gst-plugins-ugly1.0_1.6.0-1_amd64.changes uploaded successfully to localhost along with the files: gst-plugins-ugly1.0_1.6.0-1.dsc gst-plugins-ugly1.0_1.6.0.orig.tar.xz gst-plugins-ugly1.0_1.6.0-1.debian.tar.xz gstreamer1.0-plugins-ugly-dbg_1.6.0-1_amd64.deb gstreamer1.0-plugins-ugly-doc_1.6.0-1_all.deb gstreamer1.0-plugins-ugly_1.6.0-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 25 22:27:12 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:27:12 +0000 Subject: Processing of gst-plugins-good1.0_1.6.0-1_amd64.changes Message-ID: gst-plugins-good1.0_1.6.0-1_amd64.changes uploaded successfully to localhost along with the files: gst-plugins-good1.0_1.6.0-1.dsc gst-plugins-good1.0_1.6.0.orig.tar.xz gst-plugins-good1.0_1.6.0-1.debian.tar.xz gstreamer1.0-plugins-good-dbg_1.6.0-1_amd64.deb gstreamer1.0-plugins-good-doc_1.6.0-1_all.deb gstreamer1.0-plugins-good_1.6.0-1_amd64.deb gstreamer1.0-pulseaudio_1.6.0-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 25 22:32:14 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:32:14 +0000 Subject: Processing of gst-rtsp-server1.0_1.6.0-1_amd64.changes Message-ID: gst-rtsp-server1.0_1.6.0-1_amd64.changes uploaded successfully to localhost along with the files: gst-rtsp-server1.0_1.6.0-1.dsc gst-rtsp-server1.0_1.6.0.orig.tar.xz gst-rtsp-server1.0_1.6.0-1.debian.tar.xz gir1.2-gst-rtsp-server-1.0_1.6.0-1_amd64.deb libgstrtspserver-1.0-0-dbg_1.6.0-1_amd64.deb libgstrtspserver-1.0-0_1.6.0-1_amd64.deb libgstrtspserver-1.0-dev_1.6.0-1_amd64.deb libgstrtspserver-1.0-doc_1.6.0-1_all.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 25 22:32:16 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:32:16 +0000 Subject: Processing of gstreamer-editing-services1.0_1.6.0-1_amd64.changes Message-ID: gstreamer-editing-services1.0_1.6.0-1_amd64.changes uploaded successfully to localhost along with the files: gstreamer-editing-services1.0_1.6.0-1.dsc gstreamer-editing-services1.0_1.6.0.orig.tar.xz gstreamer-editing-services1.0_1.6.0-1.debian.tar.xz ges1.0-tools_1.6.0-1_amd64.deb gir1.2-ges-1.0_1.6.0-1_amd64.deb libges-1.0-0-dbg_1.6.0-1_amd64.deb libges-1.0-0_1.6.0-1_amd64.deb libges-1.0-dev_1.6.0-1_amd64.deb libges-1.0-doc_1.6.0-1_all.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From ftpmaster at ftp-master.debian.org Fri Sep 25 22:34:14 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:34:14 +0000 Subject: gst-plugins-base1.0_1.6.0-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 18 Sep 2015 20:54:02 +0200 Source: gst-plugins-base1.0 Binary: gstreamer1.0-plugins-base-apps gstreamer1.0-plugins-base-doc libgstreamer-plugins-base1.0-0 libgstreamer-plugins-base1.0-dev gstreamer1.0-alsa gstreamer1.0-plugins-base gstreamer1.0-plugins-base-dbg gstreamer1.0-x gir1.2-gst-plugins-base-1.0 Architecture: source amd64 all Version: 1.6.0-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gir1.2-gst-plugins-base-1.0 - Description: GObject introspection data for the GStreamer Plugins gstreamer1.0-alsa - GStreamer plugin for ALSA gstreamer1.0-plugins-base - GStreamer plugins from the "base" set gstreamer1.0-plugins-base-apps - GStreamer helper programs from the "base" set gstreamer1.0-plugins-base-dbg - GStreamer plugins from the "base" set gstreamer1.0-plugins-base-doc - GStreamer documentation for plugins from the "base" set gstreamer1.0-x - GStreamer plugins for X11 and Pango libgstreamer-plugins-base1.0-0 - GStreamer libraries from the "base" set libgstreamer-plugins-base1.0-dev - GStreamer development files for libraries from the "base" set Changes: gst-plugins-base1.0 (1.6.0-1) unstable; urgency=medium . * debian/control.in: + Remove Recommends on gstreamer-codec-install | gnome-codec-install. * New upstream stable release. Checksums-Sha1: fbf18e4db5a69f13fb5d5dc1a7fe159d0150acd6 3865 gst-plugins-base1.0_1.6.0-1.dsc c8d5076c64015ba85ad6f6e7f284c24558fdfbf3 2833380 gst-plugins-base1.0_1.6.0.orig.tar.xz 3872321b893c867d461a6b2ab0ee33f8d5ec6fc4 40156 gst-plugins-base1.0_1.6.0-1.debian.tar.xz 86a394e615d9d713e052516f3926f618887bd870 912402 gir1.2-gst-plugins-base-1.0_1.6.0-1_amd64.deb 58148f2326ce50eacc37bab6406443379df2d422 881854 gstreamer1.0-alsa_1.6.0-1_amd64.deb 40664d1e3979e555382e3f9f4626f7b2e69def86 879940 gstreamer1.0-plugins-base-apps_1.6.0-1_amd64.deb 6c70c250819b7c135f5d0b88963f9e03e3badec1 4381436 gstreamer1.0-plugins-base-dbg_1.6.0-1_amd64.deb afe042666b90756815b691733914b00f69b47886 1224268 gstreamer1.0-plugins-base-doc_1.6.0-1_all.deb 3bab4a868ae1328bcc363e25f408cea7cb1cb22f 1345928 gstreamer1.0-plugins-base_1.6.0-1_amd64.deb ba4a61ed9b3d33812a782a47cf841b7db06d6397 921904 gstreamer1.0-x_1.6.0-1_amd64.deb af249d4fd4f7ad24b9f5537e5f5144aca5c675b4 1470546 libgstreamer-plugins-base1.0-0_1.6.0-1_amd64.deb 91b2ea332997ae4df861bc63f2f487fbc7395c3b 1078216 libgstreamer-plugins-base1.0-dev_1.6.0-1_amd64.deb Checksums-Sha256: 0e098a41984bd15fe31b6281a94702b96f0991bd9a0635b0360e341bd4cbd77c 3865 gst-plugins-base1.0_1.6.0-1.dsc 314fd1b707f65caf8eb6164d9422fc51e2b220a890ccd2de6ec03a2883d77231 2833380 gst-plugins-base1.0_1.6.0.orig.tar.xz 792ff666ca66a055595308f0c5a62c3204cbda6f8091e903d4f735dfc603ed17 40156 gst-plugins-base1.0_1.6.0-1.debian.tar.xz aa59ae5ad3e599f64ffbc704dfda07d3ca31f60d5cd0b167169bb62069d0dd50 912402 gir1.2-gst-plugins-base-1.0_1.6.0-1_amd64.deb deb37063aff9f42d9a030a2feb6310975d5bfedf31b5b08da44eb5faa2b32bf0 881854 gstreamer1.0-alsa_1.6.0-1_amd64.deb c1bd2b51ef9ba0c0ab6c6050128b5b5db192bd244eaa40839c4f6dc35ce20cb5 879940 gstreamer1.0-plugins-base-apps_1.6.0-1_amd64.deb 6a1e2f8591e40a9e76f4373783376e5df425f21aab2bc512c653a7588ee9aab0 4381436 gstreamer1.0-plugins-base-dbg_1.6.0-1_amd64.deb 4a92014fb3a4ff20d0a1437363d3ff4373065e8ab8a696b40eb1015e8495d04b 1224268 gstreamer1.0-plugins-base-doc_1.6.0-1_all.deb 48f2e76810b120352ea5df125888b3d4506747c50226e927e8292d79dc26771f 1345928 gstreamer1.0-plugins-base_1.6.0-1_amd64.deb 67a9e6c357702eb9d6d178f1e7a844324eb1e4af781e4cd26736e8cb8ce52616 921904 gstreamer1.0-x_1.6.0-1_amd64.deb 32c496ac351d67b8d842e79a6399a9469d2e7b98d35370113b42c3a59c2b8ff3 1470546 libgstreamer-plugins-base1.0-0_1.6.0-1_amd64.deb 5d2a2e4c4194d784df6d1f7ead8055a8b137254e06e25a80e6693b96d8c21b64 1078216 libgstreamer-plugins-base1.0-dev_1.6.0-1_amd64.deb Files: 5c5f1cadf62ded6e3e0d2f476dd9b810 3865 libs optional gst-plugins-base1.0_1.6.0-1.dsc 3c223f1d2716e1861ba84287ea02b164 2833380 libs optional gst-plugins-base1.0_1.6.0.orig.tar.xz cb074453cd4c61f44e79016f4a5c92a2 40156 libs optional gst-plugins-base1.0_1.6.0-1.debian.tar.xz 2a0637d2e32543aed3cbe0627b205538 912402 introspection optional gir1.2-gst-plugins-base-1.0_1.6.0-1_amd64.deb f31d1604dee3fa895bc80d3b681ddc41 881854 libs optional gstreamer1.0-alsa_1.6.0-1_amd64.deb 5ac4ddd7c55a7ddcf2f645e43ae50d16 879940 utils optional gstreamer1.0-plugins-base-apps_1.6.0-1_amd64.deb 26cc0c0360e38bb470be8d92744f4178 4381436 debug extra gstreamer1.0-plugins-base-dbg_1.6.0-1_amd64.deb 5d26d8d21909c21669be47b82860d04d 1224268 doc optional gstreamer1.0-plugins-base-doc_1.6.0-1_all.deb bf5f101733f1a2a4f42ae8e5ed8cfff2 1345928 libs optional gstreamer1.0-plugins-base_1.6.0-1_amd64.deb 138a180d43449133bf8f15c45a6badf2 921904 libs optional gstreamer1.0-x_1.6.0-1_amd64.deb 1bfc596cc2de01fa51ca0a64b61d9a0e 1470546 libs optional libgstreamer-plugins-base1.0-0_1.6.0-1_amd64.deb 714aa70c644e94c9ed7d65e4b581fd53 1078216 libdevel optional libgstreamer-plugins-base1.0-dev_1.6.0-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBb1uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1xdEQAM/X8hNRBQ1P1CTH4lptru14 ESVyACsyQi1ZJ7Dac9s3AL+ilmeA9Xf01PQwpGMFHF2ywpyBNptKVDqs1lX8hrYm c+FWK3AS5D9fEuzebzThio+QMHlkkO1z55YNTgRdM6dNWfAdAsiYBK4Kogn4FCjY XlihWxUf596q9mxuBs4d6jlC9CMb7+CvGLAQVYIz1lJsUuS5eaxHuJnQpc1T951v XUJB+5sydqmRFiK9DOlgGuAImdaBo6puUbXTHYF7NX1FLCn+3lrHzZ2r9D7uXDhc mW61GgkHPQfTEK7U0dgRrMYW1EOh7iffbqRqVJqlgRNL/9SruhTDq28B2NTYwOuW HvMzZBJ5Jk/97yQ2t7jDaYUI5fghjrTCBlyu4YhcyKOa1CvFnuh1LaUKtj5h8VV1 Nc1aAqq0YG1W4AsLUMi8X3T2J/eSFt6kdniPlcthtJQqxsvSP3stb4bxNi8pKxbS CwPJC6SGrCcxsVO2gf9XT1YEgBogAepCipWvXH1WPMWMmGvIZtLL1mo23evC1+UX QK3Gt+xkLKlksJLXB3UFQDxWLbINV8RwxopLuJfhIAZB/sRwCfVG+48ANXnVVTGk OPaapXt6CMJoa5jQo+mBB1x/VNoFY/5PiviSRyBgLX/d1Y0EcVKYR8jGMKtL2Jb7 PbCnBCrBJ47dCNzfcA6q =CXR8 -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 25 22:34:27 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:34:27 +0000 Subject: gst-plugins-good1.0_1.6.0-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 25 Sep 2015 22:57:18 +0200 Source: gst-plugins-good1.0 Binary: gstreamer1.0-plugins-good-doc gstreamer1.0-pulseaudio gstreamer1.0-plugins-good gstreamer1.0-plugins-good-dbg Architecture: source amd64 all Version: 1.6.0-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gstreamer1.0-plugins-good - GStreamer plugins from the "good" set gstreamer1.0-plugins-good-dbg - GStreamer plugins from the "good" set gstreamer1.0-plugins-good-doc - GStreamer documentation for plugins from the "good" set gstreamer1.0-pulseaudio - GStreamer plugin for PulseAudio Changes: gst-plugins-good1.0 (1.6.0-1) unstable; urgency=medium . * New upstream stable release. Checksums-Sha1: d76c608f721577e703f1813a4071a7586a06526b 3543 gst-plugins-good1.0_1.6.0-1.dsc d87b7456e4044f363fb13c7810fb8950a4a3f63d 3176568 gst-plugins-good1.0_1.6.0.orig.tar.xz bd36cf97c22eafb2e9dcc767d4db93b4d2f4430e 35568 gst-plugins-good1.0_1.6.0-1.debian.tar.xz 89f98b93881c7be1479134a4a1aee6efa6b1a8c5 6792962 gstreamer1.0-plugins-good-dbg_1.6.0-1_amd64.deb 3f4dbe69c30f3428454e17ccb2da76bf6e87779d 1203160 gstreamer1.0-plugins-good-doc_1.6.0-1_all.deb 193c07b4bd1f266c02f44889843e091903d679bf 2525862 gstreamer1.0-plugins-good_1.6.0-1_amd64.deb ec2a8883991771bc4f52dea95eb78d5e3e09a607 1051746 gstreamer1.0-pulseaudio_1.6.0-1_amd64.deb Checksums-Sha256: c48d3ec4987be6dffea44de7791f690f2a9570c6284b9f493c5daa0ce72469e6 3543 gst-plugins-good1.0_1.6.0-1.dsc a0915639595305e48884656e22b16fda7c6892aa02cdb3eb43e23dab6e6b81fa 3176568 gst-plugins-good1.0_1.6.0.orig.tar.xz 69afd000301dac4da64a682dad43cd70f5f3b9ece026abde459ff48d96d1cdbe 35568 gst-plugins-good1.0_1.6.0-1.debian.tar.xz 8e0028328a73b32acef154e2a560a0cef3d849ce38fa6ba42e106078d72cfecb 6792962 gstreamer1.0-plugins-good-dbg_1.6.0-1_amd64.deb d21842199dddc09eb86f472fae158c5ccd1a74b866d6ec046e46ea7a614b2a29 1203160 gstreamer1.0-plugins-good-doc_1.6.0-1_all.deb 0ea4806708f996ee870cabcc27c247726443e8604fb611a93cfa8e7d6764d282 2525862 gstreamer1.0-plugins-good_1.6.0-1_amd64.deb f9353e55993d52e775ad49c84181929877c85b9ae08259986402a727fbfc2cd5 1051746 gstreamer1.0-pulseaudio_1.6.0-1_amd64.deb Files: a6401dacfc5b0befb6df75485886dbcd 3543 libs optional gst-plugins-good1.0_1.6.0-1.dsc a28d0d46c929f0064432d2fd94c12ef1 3176568 libs optional gst-plugins-good1.0_1.6.0.orig.tar.xz aa45164aa6d6201444cb18153a260589 35568 libs optional gst-plugins-good1.0_1.6.0-1.debian.tar.xz 8ccd2552dd9337cbc49526c344784d52 6792962 debug extra gstreamer1.0-plugins-good-dbg_1.6.0-1_amd64.deb 48732edf483065615eb73a93e592a825 1203160 doc optional gstreamer1.0-plugins-good-doc_1.6.0-1_all.deb 2366a26384265f3535a005cfd2570975 2525862 libs optional gstreamer1.0-plugins-good_1.6.0-1_amd64.deb 9bf5f7b998a63670716b722ab96419d2 1051746 sound optional gstreamer1.0-pulseaudio_1.6.0-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBb1uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1iDEP/3LUNGIZ/5KbnBM14tQGOyEa M0HwZ0PtzPoAfbxV1EDkCEz+52dz+LICXpGj+5z0aimkkBfmv7e7o/C6ibqkMxRy goVMwrRpTUUQykFMyGBU8eDKUT1gcpEauGTcyovEEz9slw2UC0a47sHx0MjzchC2 0WPRVXWUBB07J/xHzwgn+Yfr4mPMSl2lP8aa/TmdFdTiJQneeTaQGQ/ryQt9Rk+L THzkXs9gc7DO6hV3yX9u8uFfww3EIa6MxmZ+a165wbl8mfM2dlpMzkj2eq1u/dvf exSvpHSQNztluF3b4VUoIuN9ihXA0bsHdMAgmSYXSys8A4vbQUCOLB94K1GSbUUq SikytFF5mQLSPDbOn5HEknE30y4ARlqvQAw1fgTxYw1zmGiquN+thN1+arqlBICE R9vdHs5kwiMrK3ySMj5LizTggFvxXUXHr9OvZL+fJ8SV1ipXQy1mpiZiX/VWl+tF xb0mMYByMfMunuJHQ2K6jMmI9ubkVxE1Ocm7S6m4fzAccQgJzfa/rJkjRBSji71u 9e8Ykn49+y/MYzECRqYwLL9h0RRMr4KzmHNzQleMjHaOk99Lv/ST4Ipy2N+8Ilrz qtyP/LiLWJnu1/TgDHeSxy71y2xmH1HpjvODJtzZKsY7+J7ku9sB5pHr9YOQVkA+ 3xtN5dR9u7FA9LKsZIj/ =VLGr -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 25 22:34:36 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:34:36 +0000 Subject: gst-plugins-ugly1.0_1.6.0-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 25 Sep 2015 23:05:23 +0200 Source: gst-plugins-ugly1.0 Binary: gstreamer1.0-plugins-ugly-doc gstreamer1.0-plugins-ugly gstreamer1.0-plugins-ugly-dbg Architecture: source amd64 all Version: 1.6.0-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gstreamer1.0-plugins-ugly - GStreamer plugins from the "ugly" set gstreamer1.0-plugins-ugly-dbg - GStreamer plugins from the "ugly" set (debug symbols) gstreamer1.0-plugins-ugly-doc - GStreamer documentation for plugins from the "ugly" set Changes: gst-plugins-ugly1.0 (1.6.0-1) unstable; urgency=medium . * New upstream stable release. Checksums-Sha1: 1ad69202013eb122649664bfe0865e760ce01149 3111 gst-plugins-ugly1.0_1.6.0-1.dsc 9db2ca0da8ec8baac8a51fd8d4c639bd90c75085 859996 gst-plugins-ugly1.0_1.6.0.orig.tar.xz 7aa0b980386b8fac8619374e8c4bdf01638588d2 24884 gst-plugins-ugly1.0_1.6.0-1.debian.tar.xz 8e9b1fe2fdb6bf443186a34c98faa914a486431e 861618 gstreamer1.0-plugins-ugly-dbg_1.6.0-1_amd64.deb 12dd09e2873b8b163eee9fda6e51665f8707fdd8 198482 gstreamer1.0-plugins-ugly-doc_1.6.0-1_all.deb e12efc306d9bf95997cd4110ca40586037b188b4 383042 gstreamer1.0-plugins-ugly_1.6.0-1_amd64.deb Checksums-Sha256: 19d17ff437b678d30e5478be81c74a8514af50b9271ce1e51ab04a9c7e8a7b9d 3111 gst-plugins-ugly1.0_1.6.0-1.dsc 91178dc0d687a83c083190a905681d3a66901374b1004fc52cd300b7802e5f06 859996 gst-plugins-ugly1.0_1.6.0.orig.tar.xz 31d8501c7f0e8cd7ead57c30a8959d0ecd374084f43be0f07b12e6bc1549104c 24884 gst-plugins-ugly1.0_1.6.0-1.debian.tar.xz 8a75eb20490aebccadd028e4f9a87ee549b694b36cf1f6f581a2b139ae94ee33 861618 gstreamer1.0-plugins-ugly-dbg_1.6.0-1_amd64.deb bb42d327d55c5a8fa966de24420fdf1ed92e1db11da9e298dfc0fe8ed55e410d 198482 gstreamer1.0-plugins-ugly-doc_1.6.0-1_all.deb 2a80bfe3a9acefb01edaaabc41be983df33da4d9ae2bd44d1faf758e9a09e0dd 383042 gstreamer1.0-plugins-ugly_1.6.0-1_amd64.deb Files: 65c9600865431c00392989a88dda3daa 3111 libs optional gst-plugins-ugly1.0_1.6.0-1.dsc 7df6ab044d7754c1087375ce5f770be8 859996 libs optional gst-plugins-ugly1.0_1.6.0.orig.tar.xz 10a116ba2b58b55dcbcc58487af4bafe 24884 libs optional gst-plugins-ugly1.0_1.6.0-1.debian.tar.xz cfc82b0583c5021f4f5ffcdb673167a6 861618 debug extra gstreamer1.0-plugins-ugly-dbg_1.6.0-1_amd64.deb 935af2a899dc1c235687baee43a8b8df 198482 doc optional gstreamer1.0-plugins-ugly-doc_1.6.0-1_all.deb c92dc4107d44b9037d142a23d8a019b0 383042 libs optional gstreamer1.0-plugins-ugly_1.6.0-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBb1uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1eLoQAMvjFzk3b+1BlADT50pJ5h6f 1WXC1lu0jrqYosZ8u3qyz7kgQxnK8I3wbXlSc1dW8/WwmZMvfbfvWQQns06gv3HO 2+TFXB173LC3ZxMdFKGmmQnptFebSUZfodtSjmftRYsQtqJydKBrjjAqnYpC/ONL wdBtVyZmi1TuKFnQ6osXY9awJhzwdXn13sytMc4THPO60WFEUS55nL+aNONghycO O5yRGQLPZGda9PmSLj1izRWDzA0y34yNlcTX9aIoi8OwnQHCFGYnj6auOW8AnxAO DN5HAkCYNnIVzIuKQ2dQpNxXEvcpIQjg5lWQBHxCb6mLoOoQYCvK2KqRKWtTYO/D Fh2WYfDN5n1wHx5kAyxoVlgutkUAp2kPwx9yovdWBCvvedb98fScBYIfoWyaNTv3 Cvb/oYyhEOSsQPb/6O1Eg5kCslq9K6psu2z1L02ZfIvzJCDnCVHuLO1m8Hn/uVzm SMZ6DdH8WmJGPqqjoKd5qkSe3K3upNsY35giAPPcfJ/w6MJqEfuHzxw3ZfhKmH5e 8K8ZEP4cxDuAE+l5B1YNOHeSB3R4lmPKY1vfQ9ULVmtO/7va5Q9+uLpcnqs9vQqn x4ucEfcT0vAWhddoICYCOAMcKZJ5TLPM+J1RJevyzvftDdzgk1mIv/MuahAUrf7h FoXLEApUN1XTC1wkfvze =7ZOX -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 25 22:34:44 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:34:44 +0000 Subject: gst-python1.0_1.6.0-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 25 Sep 2015 18:23:04 +0200 Source: gst-python1.0 Binary: python-gst-1.0 python3-gst-1.0 python-gst-1.0-dbg python3-gst-1.0-dbg Architecture: source amd64 Version: 1.6.0-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: python-gst-1.0 - GStreamer GObject Introspection overrides for Python python-gst-1.0-dbg - GStreamer GObject Introspection overrides for Python (debug exten python3-gst-1.0 - GStreamer GObject Introspection overrides for Python (Python 3) python3-gst-1.0-dbg - GStreamer GObject Introspection overrides for Python (Python 3, d Closes: 799689 Changes: gst-python1.0 (1.6.0-1) unstable; urgency=medium . [ Scott Kitterman ] * Fix python3 depends by using python3:Depends vice python:Depends so correct depends are generated (Closes: #799689). * Remove obsolete provides . [ Sebastian Dr?ge ] * New upstream stable release. Checksums-Sha1: ccc931cb1542fa9e920b8e95261dd30324f2448d 2504 gst-python1.0_1.6.0-1.dsc a1f1da88483af6e3baae11a723cd4a843371bcbe 368100 gst-python1.0_1.6.0.orig.tar.xz 8b451907735ab00bda793713cdae608a0dac283f 2816 gst-python1.0_1.6.0-1.debian.tar.xz 7bfe09fbe3a11bb2ddda8107fe72c557d0a02409 69194 python-gst-1.0-dbg_1.6.0-1_amd64.deb ed68b37667972c9332e84a1b7deb2803c3bc6a6c 55922 python-gst-1.0_1.6.0-1_amd64.deb 162ef0dadde5aa6fb77275e15a5a734bf5a2bf40 70226 python3-gst-1.0-dbg_1.6.0-1_amd64.deb 74244570d177756412272553930af8ec04106069 56316 python3-gst-1.0_1.6.0-1_amd64.deb Checksums-Sha256: 4e30714773efcf3aebe30a9920f479e59764deefcb198063b4eb15ec8cdacfb3 2504 gst-python1.0_1.6.0-1.dsc 60dbc7f5ac2b6655ed4a7ed2cee63ee5a525d37cb16eaa6b9df7d7dfe4e9605f 368100 gst-python1.0_1.6.0.orig.tar.xz 8871f578db2e12a5d9ba9b49c9fd88fc2e803f8c9a319916d75a060dbcc3e17c 2816 gst-python1.0_1.6.0-1.debian.tar.xz 6b850634568cb427e6b3f526f03e6b17af6cb24c7df2c22d1fc7504eb1be9aa4 69194 python-gst-1.0-dbg_1.6.0-1_amd64.deb a565f5cafcf4f096836714d4b8d6dac9d205b41d873a24c6bc2d61ce852a562f 55922 python-gst-1.0_1.6.0-1_amd64.deb 61a10338143aafc1d08bf09be3a1e8c82df413652dcdacc6da0c4732035ea2bc 70226 python3-gst-1.0-dbg_1.6.0-1_amd64.deb 1c7df0be799f8bc22ea0a262af0160b8569ac66dadfe17b6d49657e74a72e37e 56316 python3-gst-1.0_1.6.0-1_amd64.deb Files: 169fd8838092f03c7d82e77ca5381c98 2504 python optional gst-python1.0_1.6.0-1.dsc 498792e9e1b61a90de1e28cf04e88a9e 368100 python optional gst-python1.0_1.6.0.orig.tar.xz 7bc29fafd2f1ef05c869f2fe22820dc7 2816 python optional gst-python1.0_1.6.0-1.debian.tar.xz 465f7e88dbcbf81579b1ace58a2f71f2 69194 debug extra python-gst-1.0-dbg_1.6.0-1_amd64.deb 6c062d2fe87c6ae062981037c5557ae6 55922 python optional python-gst-1.0_1.6.0-1_amd64.deb 58d907ae4f138c3bdf4a8aecd8667eee 70226 debug extra python3-gst-1.0-dbg_1.6.0-1_amd64.deb 567821d9a72d60a6bb308707e01e47f7 56316 python optional python3-gst-1.0_1.6.0-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBb1uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1JL4QAMDipjDE+RN4nunLzLxsA3KB adRI3h8Dt1d87v2YAdgi5Fzttz22JgdE1NbP0YKXBc8QmufQdzWuNQsvYaSRxzhW DLgSJ4JH0rtJVujWjt8vTCTKnopPJ8jaWb+H8nLHiBC7RiRRMmjHmHVHODZjnh+z 2qcK3KvGcb6Pj8Sv2cr+sPPngC2z2rV6UgBWBfZKnFzCxhGiBbfK2cKbF/lR7cTP SQCvIYYdPtzknsY7a9u5/VHTIv9tvV5nADswbGVkLV+DKbG+yk4VCektINuOitr0 ZxaTYugRMxh5mpMFJ3oAtBL9GV3O3s2yt3VYf4sjPlI8jLQm/EWYdlf4j49roN1q jtMHI/sBYQ6P0CAO9aye2NFSX63WULdGw03W6z6YDF8T5DKihPOBfufKzhWnrzda yPAcRZ9kvFzLuvMZr8bUdvzj5vJZswIxTGD3UGFaTocwSDP7ek+6/xw+Q7Hl2pJR 7ezKNjbe37wnLZGH/rJ1XSRWs6iPdBq1ujTrfizQ8E6lBcMx2gUlQNdDhTgB/tEc iIJHus/fzIBVrXOlqbeyludiRBRa976Csf3bTOXVPfBaNFA55zDEuIBzn+Rk+ozi HybmGqY7L9rY3OYqzsqcr2f3D4GikjJ88lDVk0dEf8RPqM7DNjW65eP7t38srtby /vJi8JxIGlKdlGb/ZTOa =bJqd -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 25 22:34:54 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:34:54 +0000 Subject: gst-rtsp-server1.0_1.6.0-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 25 Sep 2015 23:11:01 +0200 Source: gst-rtsp-server1.0 Binary: libgstrtspserver-1.0-doc libgstrtspserver-1.0-dev libgstrtspserver-1.0-0 libgstrtspserver-1.0-0-dbg gir1.2-gst-rtsp-server-1.0 Architecture: source amd64 all Version: 1.6.0-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gir1.2-gst-rtsp-server-1.0 - GObject introspection data for the GStreamer RTSP Server libgstrtspserver-1.0-0 - GStreamer RTSP Server (shared library) libgstrtspserver-1.0-0-dbg - GStreamer RTSP Server (debug symbols) libgstrtspserver-1.0-dev - GStreamer RTSP Server (development files) libgstrtspserver-1.0-doc - GStreamer RTSP Server (documentation) Changes: gst-rtsp-server1.0 (1.6.0-1) unstable; urgency=medium . * New upstream stable release. Checksums-Sha1: c4fa2f5cae53cd9c70e6997d37d3a7e2d834dd9a 2788 gst-rtsp-server1.0_1.6.0-1.dsc ad11b3b9874a7dc1b45456b8bf9729ae9d04b314 561716 gst-rtsp-server1.0_1.6.0.orig.tar.xz eef4e0ec230e70ef3b8caf8dabce3f514ace7075 4528 gst-rtsp-server1.0_1.6.0-1.debian.tar.xz cb18be92132ffd93136de1591628d047165f712f 77084 gir1.2-gst-rtsp-server-1.0_1.6.0-1_amd64.deb 3f58ad4f0ae0015f38ddacba4b4c6d2ee3b7cdc5 379778 libgstrtspserver-1.0-0-dbg_1.6.0-1_amd64.deb af2e08bc14521fda751a538e1e50dd0e7a62dd56 163854 libgstrtspserver-1.0-0_1.6.0-1_amd64.deb 5026104af76f4f7164d7a23f184cdf3441a258be 104406 libgstrtspserver-1.0-dev_1.6.0-1_amd64.deb 1a06f21a7934394e6443715f46cebf31e34b6483 134040 libgstrtspserver-1.0-doc_1.6.0-1_all.deb Checksums-Sha256: 4472a805b40c82b08cc4045fa0329a9d57f62d6599dbf8e761abfa4e75a4a91a 2788 gst-rtsp-server1.0_1.6.0-1.dsc 1e1526d700ba36df5b30c887ccc37179903255022e57f716afb3ef172fe0746f 561716 gst-rtsp-server1.0_1.6.0.orig.tar.xz 6d696ab9fb3f0c79ec3ef639a56c59c1cb7396e0c427a2b8c64798633f873d6f 4528 gst-rtsp-server1.0_1.6.0-1.debian.tar.xz ce95edc5c30139e3765488acfe1b1d2317f5a41926e3bc8bf11a9791df65b7cc 77084 gir1.2-gst-rtsp-server-1.0_1.6.0-1_amd64.deb d45927cd765a8f08110affe349acadd6ca7eef91eb307a1e3324b613b096fa82 379778 libgstrtspserver-1.0-0-dbg_1.6.0-1_amd64.deb 5799fdef63f442a980c0bf13e10c6fe264858a13313f3e17db507e8064ded36c 163854 libgstrtspserver-1.0-0_1.6.0-1_amd64.deb 2b378d3e18a20c21d65da1d44f2cb6b5c73e8d108bd1cc22f2983301bdf43cb8 104406 libgstrtspserver-1.0-dev_1.6.0-1_amd64.deb 19a84c4c08d00d11364cb4e4110b2c833e32332d08ff8d36fecfa13a0e388de5 134040 libgstrtspserver-1.0-doc_1.6.0-1_all.deb Files: 119a102f1c8ad6b95f793054c8ccd0b5 2788 libs optional gst-rtsp-server1.0_1.6.0-1.dsc c8162f67c184663c1e1aa3ce872ef1e3 561716 libs optional gst-rtsp-server1.0_1.6.0.orig.tar.xz 216627d69215af8b5b892ab56b2829b6 4528 libs optional gst-rtsp-server1.0_1.6.0-1.debian.tar.xz 0e9159728bf0d7edd1af58ee49316d56 77084 introspection optional gir1.2-gst-rtsp-server-1.0_1.6.0-1_amd64.deb 041847915ccba053e47c076d93c32d9e 379778 debug extra libgstrtspserver-1.0-0-dbg_1.6.0-1_amd64.deb ab36634a5fce9faa1eebb1628b879704 163854 libs optional libgstrtspserver-1.0-0_1.6.0-1_amd64.deb 2b13a4bd6e282ee921aadbb45a99af39 104406 libdevel optional libgstrtspserver-1.0-dev_1.6.0-1_amd64.deb 80b21cee504010405328ddaec5a7c403 134040 doc optional libgstrtspserver-1.0-doc_1.6.0-1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBb1uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1D+QQAKkZCebKtTi2r+mR0J4yH0kE heq0akY32Hhfxnrx+6Ipg2Lq8gLP/EDNEkUQh5j1IDVFfpojd/K26GlpU9Y8VMtc /tSgZXikidHhqZE6O+HTfhNyXXjL9it5FAtG+S7Ig/BkXO/azwyIITciws3ZFIbF OwVsATkV4trXKCgLfbGn1ccH93JarkkHqhke6/hlkkyguQnZGzKYqOKxak037fc0 DhEV7OuRYuittMuBjMJUVoYa4F0lNbakverX5qhKhhGSbr1PAV80RiOtaaKYsDUk cSRrTUknnkNiEMrZLZfq2rh4Cy+n20N10lnrcAhYKRRApcDnujgrjyG+XbYFxyRv NYlVToT17p0sZtHc0FuBQSS04zNx/oSYMw4TVL5xich7247R8dxH2MGL1tyD4sP7 4zdDbhWXDMbSR5xoEuvshJ9EhKtsVVgujrm3P0BYmU7zchv5SJ9yWCfRvwyOcRma LOKS0yc8Fau92VPjHZT+0HjQ9pydmy5vjpKNF0RbYanXRn6LJJlApu4IfpZQzBOv 3FW5ytJPQU6PCBkguDRo3gyJAzuhNPC5LpvJiaaFdIV6J3WnnJaAW0kxa9qBH29V mpvYB6bV/TIRuRgJMplg7V/dkyDDJ1judzS5bgVAkCQY0Ov25RLWR56sDoZuthis X04o0mAmddswxDi85HTe =beDF -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 25 22:35:05 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:35:05 +0000 Subject: gstreamer-editing-services1.0_1.6.0-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 25 Sep 2015 18:26:14 +0200 Source: gstreamer-editing-services1.0 Binary: libges-1.0-doc libges-1.0-dev libges-1.0-0 libges-1.0-0-dbg ges1.0-tools gir1.2-ges-1.0 Architecture: source amd64 all Version: 1.6.0-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: ges1.0-tools - Tools for use with the GStreamer editing services gir1.2-ges-1.0 - GObject introspection data for the GES library libges-1.0-0 - GStreamer editing services (shared library) libges-1.0-0-dbg - GStreamer editing services (debug symbols) libges-1.0-dev - GStreamer editing services (development files) libges-1.0-doc - GStreamer editing services (documentation) Changes: gstreamer-editing-services1.0 (1.6.0-1) unstable; urgency=medium . * New upstream stable release. Checksums-Sha1: 616816339161efaa7d9a997fa0abd32917033cff 2883 gstreamer-editing-services1.0_1.6.0-1.dsc e4f0049f8edf88734ed25ffff2fbc8d6dcf6eafd 1013632 gstreamer-editing-services1.0_1.6.0.orig.tar.xz aa4e1fb2bf2cc6e534c9aeafbbab713909e3a896 6016 gstreamer-editing-services1.0_1.6.0-1.debian.tar.xz e36c3ed6ffe107e3ca1af22fac0e0d3971916c83 124396 ges1.0-tools_1.6.0-1_amd64.deb 32aae73914078bf12dc08ffb854330dfbf5673f9 129890 gir1.2-ges-1.0_1.6.0-1_amd64.deb 1c1e9b965c3f2e35799a2611e786591c8a17d6dd 849116 libges-1.0-0-dbg_1.6.0-1_amd64.deb 3976aa9c468d4aa3af36007df2a912be1e2a32ed 327686 libges-1.0-0_1.6.0-1_amd64.deb 78372cabcea968852b8b3aafc6c495628f221f65 178498 libges-1.0-dev_1.6.0-1_amd64.deb a30d431ea10f8c6cb8ae11c4eb10b720d8db8777 234958 libges-1.0-doc_1.6.0-1_all.deb Checksums-Sha256: 9365cc4603c3544329fdf3934972cd83b64aa0dea1b2b6bfd1a157cb16b9d97d 2883 gstreamer-editing-services1.0_1.6.0-1.dsc 4a780cc27029d25271cf4f8bc17531aa9a1d435e4f807202fd3790f53b964dbe 1013632 gstreamer-editing-services1.0_1.6.0.orig.tar.xz 4e0d5a1713b103208d8b62dadafccbb7c834c58237df3c7aa156ae53299cb293 6016 gstreamer-editing-services1.0_1.6.0-1.debian.tar.xz c67a027a544c6670c5dbe23d984bc5f0cda671ee181c3ef63116f8d2e79d26f7 124396 ges1.0-tools_1.6.0-1_amd64.deb 976493b25607fe3edeb29e6b270a6021140b109f665bb037fdc7385c21590625 129890 gir1.2-ges-1.0_1.6.0-1_amd64.deb 98ad03f639d280532ddd93f5fcfb20e3d0d1f91dcb1f0f1a4f648ab16bb05adb 849116 libges-1.0-0-dbg_1.6.0-1_amd64.deb 5e072ac2e7940b028336a2cd6c9b485331b7312657aaf6be8d4fabfabe43b9be 327686 libges-1.0-0_1.6.0-1_amd64.deb 5a4f0b7093a23442a9eb9ba0c835f15726b12d67bc711fffbc3cf6489afc1416 178498 libges-1.0-dev_1.6.0-1_amd64.deb 7bb6ed098e0d346c29aab86b2266db7ce5350ffffc6bf25caff0f026e6222a01 234958 libges-1.0-doc_1.6.0-1_all.deb Files: 8d76fcada4a145e7f9f8cac9ed9f0c1d 2883 libs optional gstreamer-editing-services1.0_1.6.0-1.dsc fd4071d6f2fdd0c302f579b3180115c1 1013632 libs optional gstreamer-editing-services1.0_1.6.0.orig.tar.xz a830f8140bda57d877a0ad047f984194 6016 libs optional gstreamer-editing-services1.0_1.6.0-1.debian.tar.xz 636c7264d91948cd1ec8306e76562f36 124396 utils optional ges1.0-tools_1.6.0-1_amd64.deb 24ce9225f37a7e52f209e831adf4fdc6 129890 introspection optional gir1.2-ges-1.0_1.6.0-1_amd64.deb 39a0b852a56a3f68973e915684f31af9 849116 debug extra libges-1.0-0-dbg_1.6.0-1_amd64.deb f8c1b1063cc60af9f4b11f8abf716dbc 327686 libs optional libges-1.0-0_1.6.0-1_amd64.deb 91875de8e6a599d15f9971d67b4087e7 178498 libdevel optional libges-1.0-dev_1.6.0-1_amd64.deb 05d7762b27eaf034a05d6b56b979f988 234958 doc optional libges-1.0-doc_1.6.0-1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBb1uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1U14P/1E8Da8n1uMn5hDic0Eq4CYd pFN8GcUSo4jc2fHLTPCjumxE+Y7SepDUQjbmb0wfEYAJ6zHb4P/7tPUK22/gNr6q xnInFZMWmjFqHqKq+sYgU0AAvdzwF/K+1F+66y6PbZxAKKdBghLmpudHznZJSzlN tz/Z6UTtU+pL8cqsRiRIG0koE9MPbL9X/IKjDArbhCYTR1duKD3vXBmAuu10T4nf V5EZnHnREgRnXCvIxGZUt427zsbsXnOkDiS1d1X3TgoDrW0aK4DpSqhg88oruwFW kRyysTaUKUBKFsOUJCVa70/8/SywIaXbA/ldsw4rw76WHh4Oa1LkPIb7KK2NTy1l /EzjM6Wv8WDdYjiV8DxBsMiYIfgY9UfwB9Vny8hoKrCsMwy/pIFH6bG28ksNFnre vZ2MvhuLu/EFq/ViQjo8IMtt3RJZJGVNT/yuEWU60C5iseHwaO0FFbCrpxuejwbf Tcu5INEBceHT/3BcI1BhiBlRZfWtw/GLQ0FlEegAWeUs+CJ/fXJbopp0vctn+y7n ePh4jKzaCx7a7jj0QD0NbElWyqu+gA5Lb5Qvy66FjCtzQVhcFfOfo9DluD4rYAfY U3qQSrI2JeD8L06Bj2jHInxa5BAo+DF5PwF6Jvve4SpgRhrP/bl3yWJdszTE1nYJ f3BuSlIK6py5fc9oisga =W2dF -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From ftpmaster at ftp-master.debian.org Fri Sep 25 22:37:17 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:37:17 +0000 Subject: Processing of gstreamer1.0_1.6.0-1_amd64.changes Message-ID: gstreamer1.0_1.6.0-1_amd64.changes uploaded successfully to localhost along with the files: gstreamer1.0_1.6.0-1.dsc gstreamer1.0_1.6.0.orig.tar.xz gstreamer1.0_1.6.0-1.debian.tar.xz gir1.2-gstreamer-1.0_1.6.0-1_amd64.deb gstreamer1.0-doc_1.6.0-1_all.deb gstreamer1.0-tools_1.6.0-1_amd64.deb libgstreamer1.0-0-dbg_1.6.0-1_amd64.deb libgstreamer1.0-0_1.6.0-1_amd64.deb libgstreamer1.0-dev_1.6.0-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) From owner at bugs.debian.org Fri Sep 25 22:39:11 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 25 Sep 2015 22:39:11 +0000 Subject: Bug#799689: marked as done (gst-python1.0: Missing python3 interpreter depends for python3-gst-1.0) References: <20150921144352.21542.76555.reportbug@kitterma-E6430> Message-ID: Your message dated Fri, 25 Sep 2015 22:34:44 +0000 with message-id and subject line Bug#799689: fixed in gst-python1.0 1.6.0-1 has caused the Debian Bug report #799689, regarding gst-python1.0: Missing python3 interpreter depends for python3-gst-1.0 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 owner at bugs.debian.org immediately.) -- 799689: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799689 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Scott Kitterman Subject: gst-python1.0: Missing python3 interpreter depends for python3-gst-1.0 Date: Mon, 21 Sep 2015 10:43:52 -0400 Size: 4804 URL: -------------- next part -------------- An embedded message was scrubbed... From: =?utf-8?q?Sebastian_Dr=C3=B6ge?= Subject: Bug#799689: fixed in gst-python1.0 1.6.0-1 Date: Fri, 25 Sep 2015 22:34:44 +0000 Size: 6942 URL: From ftpmaster at ftp-master.debian.org Fri Sep 25 22:49:18 2015 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Fri, 25 Sep 2015 22:49:18 +0000 Subject: gstreamer1.0_1.6.0-1_amd64.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 25 Sep 2015 22:45:29 +0200 Source: gstreamer1.0 Binary: libgstreamer1.0-0 libgstreamer1.0-0-dbg libgstreamer1.0-dev gstreamer1.0-doc gstreamer1.0-tools gir1.2-gstreamer-1.0 Architecture: source amd64 all Version: 1.6.0-1 Distribution: unstable Urgency: medium Maintainer: Maintainers of GStreamer packages Changed-By: Sebastian Dr?ge Description: gir1.2-gstreamer-1.0 - Description: GObject introspection data for the GStreamer library gstreamer1.0-doc - GStreamer core documentation and manuals gstreamer1.0-tools - Tools for use with GStreamer libgstreamer1.0-0 - Core GStreamer libraries and elements libgstreamer1.0-0-dbg - Core GStreamer libraries and elements libgstreamer1.0-dev - GStreamer core development files Changes: gstreamer1.0 (1.6.0-1) unstable; urgency=medium . * New stable upstream release. Checksums-Sha1: 9296306efe1f3e79ed635b5887a15b6b469139db 3117 gstreamer1.0_1.6.0-1.dsc 400348dcb51a7ab37390e5cf7efa5208f6fe5860 3549712 gstreamer1.0_1.6.0.orig.tar.xz fecc28c7e3c8b0403354fe0f218bb6ba238a10cf 41540 gstreamer1.0_1.6.0-1.debian.tar.xz 5cc23369dc207b781ffc102b72d2ffaf450ea771 958360 gir1.2-gstreamer-1.0_1.6.0-1_amd64.deb 469e0ff7fb4786f696c80a62cda498f1dcbe79dc 4475824 gstreamer1.0-doc_1.6.0-1_all.deb 68387c34f4c1f06be62de9ad9b8e43e07dc971de 929802 gstreamer1.0-tools_1.6.0-1_amd64.deb 5857e3ad1c752d9ebc900b88872fce31d9c450b0 3097854 libgstreamer1.0-0-dbg_1.6.0-1_amd64.deb 58c2c653ae30de841b8e0fbabf16688473a77d6f 1804346 libgstreamer1.0-0_1.6.0-1_amd64.deb 2d5881ad08c9e99a202d278e9b1b2264761a1cfc 1260380 libgstreamer1.0-dev_1.6.0-1_amd64.deb Checksums-Sha256: ffcdd6e59d27fe56231635f173027c76b60345dc4fc166466aad98d15ee59414 3117 gstreamer1.0_1.6.0-1.dsc 52ef885647afef11c8b7645a9afefe04aa09e8971c4b932e7717872ab8a30fcc 3549712 gstreamer1.0_1.6.0.orig.tar.xz ccd510b299d01f8fb45d6f13fc1f7068269631bd72fe3a58c2e62a2f22f93db9 41540 gstreamer1.0_1.6.0-1.debian.tar.xz 7d9605c70ac03de725f8a91ad620baa8c01a2cee5ce8f4622dc8c650c0b0482c 958360 gir1.2-gstreamer-1.0_1.6.0-1_amd64.deb 1e27e22e8754d3b796e257917536d1401c22d67d2d7d9295eea2f2a16dc6c4c2 4475824 gstreamer1.0-doc_1.6.0-1_all.deb d79e49bd2ca345dba291f20ddd835f034ea7656013affff67755fdf6c5f06f4b 929802 gstreamer1.0-tools_1.6.0-1_amd64.deb 8e1ca6e7f000bd7efb5e0502ce6b798ea8799263b266738ede60160e59870b51 3097854 libgstreamer1.0-0-dbg_1.6.0-1_amd64.deb cc20f942c68bd417a01bc0578b9f980c537cf199ff791c416a280adf9bec3bf1 1804346 libgstreamer1.0-0_1.6.0-1_amd64.deb c7e1d1c360dee9732934d0c84b0b73d1d6faa52d41467eccea473de00308d8e1 1260380 libgstreamer1.0-dev_1.6.0-1_amd64.deb Files: 8bba6c9f79d148e7747f50d2ddc40227 3117 libs optional gstreamer1.0_1.6.0-1.dsc 201c15ac4b956833f7f6774485433969 3549712 libs optional gstreamer1.0_1.6.0.orig.tar.xz 4e541a02861224b24a00a7b5e6bf38ee 41540 libs optional gstreamer1.0_1.6.0-1.debian.tar.xz 72a963e8024d1767c19aab40750640a6 958360 introspection optional gir1.2-gstreamer-1.0_1.6.0-1_amd64.deb b95be107a0b0b4de309f81a020cbe4e9 4475824 doc optional gstreamer1.0-doc_1.6.0-1_all.deb 3bc7e3ff436420dd4dc8684f1ae78946 929802 utils optional gstreamer1.0-tools_1.6.0-1_amd64.deb 33af71c94ed2e430065623ccd2d76570 3097854 debug extra libgstreamer1.0-0-dbg_1.6.0-1_amd64.deb d64ae10322697555dcc5842c8a275387 1804346 libs optional libgstreamer1.0-0_1.6.0-1_amd64.deb fe7a851b70cfe5f4c949933775163727 1260380 libdevel optional libgstreamer1.0-dev_1.6.0-1_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBb1vXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte1i1YP/j38tt10Yn+KgtLigOKJ29LN E66/qCAWgbf387+I5Vu/J3Wf9mHrz/5RJ88dO+RvYvnFrf1l0rk0lWwpCgY22aaM T3sVnGRcxUgKouDrTuoDsHq2SY3Cat9EvhaVXtSoSwZnGP27bOnxFKcequzVQ2D4 2J5hI8Tbz7ui7eMP5sjrcLd59m6GdUunPDsaK7kqVIRaIA1qsGrgXzkh5avVLvHL 1Jlo7cZxsUorSPDApFA/YDggy5rqxHfMLckJgBeekWKafcirtCmYj4DCDorHXZGn 2s4rW/xKKPu8iF8ti9RpFKYz3KNJpgeHKfGic0mKoVKCIkSa1Tvu1nb8HGoOSS3v O7zjttVRJmJwMdoHn0GDEZwqGIEsTzVxuYAMETW6Ze+aJVxtDQ5sth00jg8A2IEH SlRWJtF4lROscqUXUy8sY78iu9+NTlLtH/HWF/L+t3WruJv5sMvCy9OAm9bXZu/t 671rRiiB9dGCwhtLikYwpzPvYK4W/YV73M+zyvHhBEjLeQtK5NMlCZG4aT2blLmA FKGulmeOp+nwFsX/tcmZa+N8UoM0s3xiVlen2hXEwgtQQA9FUIy1G5aqqxu8j4Kz IqIWcuZGGTzGMXPrGnl4crpfje3V4CTH9GaVodbEL/HORWp5iNAlBVPATntw0zbM qtATKNSYmek9NKhc/PPI =OooR -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From slomo at debian.org Fri Sep 25 23:34:24 2015 From: slomo at debian.org (=?utf-8?q?Sebastian_Dr=C3=B6ge?=) Date: Fri, 25 Sep 2015 23:34:24 +0000 Subject: Accepted pitivi 0.94-4 (source amd64) into unstable Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 25 Sep 2015 13:36:50 +0200 Source: pitivi Binary: pitivi Architecture: source amd64 Version: 0.94-4 Distribution: unstable Urgency: medium Maintainer: Loic Minier Changed-By: Sebastian Dr?ge Description: pitivi - non-linear audio/video editor using GStreamer Closes: 799677 Changes: pitivi (0.94-4) unstable; urgency=medium . * debian/rules, debian/control: + Fixup python packaging to generate the correct dependencies and not ship any cache files (Closes: #799677). Checksums-Sha1: d686343c5432650f309b423f9cb718dcb853b04f 2003 pitivi_0.94-4.dsc 7efea5b0535a3dc14fd719c48226e6d130266eea 7576 pitivi_0.94-4.debian.tar.xz 023abb25cce9f02da6e1e78dfeb84c626247958b 2623386 pitivi_0.94-4_amd64.deb Checksums-Sha256: ef93345630b1e1f584508614bdaba3646ae7fd7b4a2800954598a4fd276de63a 2003 pitivi_0.94-4.dsc 0f41fe4bf9b3a38bb0ff2ab0c31152a77b5630e3029025c3d1ab0f41878f1af7 7576 pitivi_0.94-4.debian.tar.xz 4136f9ba4a067ae3c0371b5d2888add10bbe38a5fd1a9dc5c24c9a03ba9a8bfc 2623386 pitivi_0.94-4_amd64.deb Files: 72e2b094b447bc5654eac973367f0969 2003 gnome optional pitivi_0.94-4.dsc bfc7367ac83fc8682c122d6598a0ee13 7576 gnome optional pitivi_0.94-4.debian.tar.xz 2d52aeabca8d1404e0d4bbac6b0737f0 2623386 gnome optional pitivi_0.94-4_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJWBdg0XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3RjRCQzdDQzNDQTA2Rjk3MzM2QkJGRUIw NjY4Q0MxNDg2QzJEN0I1AAoJEAZozBSGwte12U4P/i2hYRqX/IVAaX6IYi6yjpQB 2jPWBKJCexSjEMYD9L6y9Tg4lyzB0td9Eax5qKI2ZAGpgtz+HFi2dPzaogpRu3qw ZGzpR6Pne8vdwMvoXGR9GYdMQFpS85dmPKJ1Gkt1jW2LHeRECiHpHH1LuNAsI4E1 jgnQR7ZuhE02EGBr0wyk//ZHTv68KNXh8OBk+DjIvVy648RiJitay6ggf9wGRoPD JaaiIdeGh8Q4aSfS9vYuIOv0Pl1RxrEqHAvFom2bv5sZKX/v1tZailxpPJ2k2THD wT1P0GBVZ3kRkcib+veEB3mFt5O5n60R+eeO10DfsgcnMdib5okEHtwIWHSe/VZ8 L1Eesfqdvbydu0ORY8g+7TftfyeXeaNmvGOZ2JbyYvIgW2G/FwK7Q5L4Y5Gl+zZ/ Bd6uslCvDmkPYbR+6QJqDgSmk19g11KLfnPTnFubMtBr7eErwTcQ8cFa0GnEkW28 wSUFQVXqg0e71brpuJaKXvWK497OL5Se0scBr9RiSWHbxjXfhh4rBoGclJAv1706 ZCl9fzIn7ou1ATjzIodf+nOY0CXdVsq6GvzyWNwHfPPC5Peyddkk+smkZKae0JpD cV4pSfJYwUddIRU6ZviUOO2xW3Yi43Ma1vShzl1gtnTq9qiDNgz5EBKbi3Eaimr/ LjnInPBZEgwnufcVGPzk =IGH3 -----END PGP SIGNATURE----- From owner at bugs.debian.org Fri Sep 25 23:39:04 2015 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Fri, 25 Sep 2015 23:39:04 +0000 Subject: Bug#799677: marked as done (pitivi: Incorrect depends, build-depends, and other issues) References: <20150921132723.8659.75907.reportbug@kitterma-E6430> Message-ID: Your message dated Fri, 25 Sep 2015 23:34:24 +0000 with message-id and subject line Bug#799677: fixed in pitivi 0.94-4 has caused the Debian Bug report #799677, regarding pitivi: Incorrect depends, build-depends, and other issues 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 owner at bugs.debian.org immediately.) -- 799677: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799677 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Scott Kitterman Subject: pitivi: Incorrect depends, build-depends, and other issues Date: Mon, 21 Sep 2015 09:27:23 -0400 Size: 4003 URL: -------------- next part -------------- An embedded message was scrubbed... From: =?utf-8?q?Sebastian_Dr=C3=B6ge?= Subject: Bug#799677: fixed in pitivi 0.94-4 Date: Fri, 25 Sep 2015 23:34:24 +0000 Size: 5224 URL: From unionw539 at gmail.com Sat Sep 26 05:37:53 2015 From: unionw539 at gmail.com (COMPENSATION HEAD OFFICE) Date: Sat, 26 Sep 2015 14:37:53 +0900 (JST) Subject: consignment Message-ID: <276549.45052.qm@web101613.mail.kks.yahoo.co.jp> ? Contact us for your compensation consignment box From lamby at debian.org Sat Sep 26 19:33:21 2015 From: lamby at debian.org (Chris Lamb) Date: Sat, 26 Sep 2015 20:33:21 +0100 Subject: Bug#800097: gst-plugins-bad0.10: FTBFS: dh_install: gstreamer0.10-plugins-bad missing files (debian/tmp/usr/lib/*/gstreamer-0.10/libgstgme.so), aborting Message-ID: <1443296001.3936049.394330497.0B1C580D@webmail.messagingengine.com> Source: gst-plugins-bad0.10 Version: 0.10.23-8.1 Severity: serious Justification: fails to build from source User: reproducible-builds at lists.alioth.debian.org Usertags: ftbfs X-Debbugs-Cc: reproducible-builds at lists.alioth.debian.org Dear Maintainer, gst-plugins-bad0.10 fails to build from source in unstable/amd64: [..] dh_bugfiles -pgstreamer0.10-plugins-bad dh_install -pgstreamer0.10-plugins-bad dh_install: gstreamer0.10-plugins-bad missing files (debian/tmp/usr/lib/*/gstreamer-0.10/libgstgme.so), aborting /usr/share/cdbs/1/rules/debhelper.mk:213: recipe for target 'binary-install/gstreamer0.10-plugins-bad' failed make: *** [binary-install/gstreamer0.10-plugins-bad] Error 2 dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2 [..] The full build log is attached or can be viewed here: https://reproducible.debian.net/logs/unstable/amd64/gst-plugins-bad0.10_0.10.23-8.1.build1.log.gz Regards, -- ,''`. : :' : Chris Lamb `. `'` lamby at debian.org / chris-lamb.co.uk `- -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: gst-plugins-bad0.10.0.10.23-8.1.unstable.amd64.log.txt URL: From editor at pakinsight.com Sat Sep 26 07:54:49 2015 From: editor at pakinsight.com (Pakistan) Date: Sat, 26 Sep 2015 07:54:49 +0000 Subject: 4th International Conference on Emerging Trends in Scientific Research Message-ID: Your email client cannot read this email. To view it online, please go here: http://marketing.pakinsight.com/display.php?M=511109&C=44fe333a0abbdde8e6b55f2ca3505cf8&S=11&L=12&N=6 To stop receiving these emails:http://marketing.pakinsight.com/unsubscribe.php?M=511109&C=44fe333a0abbdde8e6b55f2ca3505cf8&L=12&N=11 Powered by Hairyspire -------------- next part -------------- An HTML attachment was scrubbed... URL: From beatricet at libero.it Sun Sep 27 09:49:03 2015 From: beatricet at libero.it (Beatrice Torracca) Date: Sun, 27 Sep 2015 11:49:03 +0200 Subject: Bug#800138: gir1.2-gst-plugins-bad-1.0: Description field in control file has double "Description:" word Message-ID: <20150927094903.1953.7742.reportbug@aebea.it> Package: gir1.2-gst-plugins-bad-1.0 Severity: minor Hi! this package short description now reads: "Description: Description: GObject introspection data for the GStreamer libraries from the "bad" set" as you can see the word Description is duplicated at the beginning because the header of the field Description is duplicated in the control file of the corresponding source package. (http://sources.debian.net/src/gst-plugins-bad1.0/1.6.0-1/debian/control/) Thanks, beatrice. From ABeamer at napavalley.edu Sun Sep 27 10:24:09 2015 From: ABeamer at napavalley.edu (Alan Beamer) Date: Sun, 27 Sep 2015 03:24:09 -0700 Subject: No subject Message-ID: <6ADF225719795642BE40F6F460A272FF01E2B99F1414@mail.napavalley.edu> Do you need an investor? Our investors fund project and business. We also give out loan/credit to any individual and company at 3% interest rate yearly. For more information, Contact us via Email: omfcreditsrl at gmail.com If you need an investor or quick funding, forward your response ONLY to this E-mail: omfcreditsrl at gmail.com From noreply at release.debian.org Tue Sep 29 04:39:04 2015 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Tue, 29 Sep 2015 04:39:04 +0000 Subject: pitivi is marked for autoremoval from testing Message-ID: pitivi 0.94-3 is marked for autoremoval from testing on 2015-10-20 It is affected by these RC bugs: 799677: pitivi: Incorrect depends, build-depends, and other issues It (build-)depends on packages with these RC bugs: 799689: gst-python1.0: Missing python3 interpreter depends for python3-gst-1.0 From noreply at release.debian.org Tue Sep 29 04:39:04 2015 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Tue, 29 Sep 2015 04:39:04 +0000 Subject: pitivi is marked for autoremoval from testing Message-ID: pitivi 0.94-3 is marked for autoremoval from testing on 2015-10-20 It is affected by these RC bugs: 799677: pitivi: Incorrect depends, build-depends, and other issues It (build-)depends on packages with these RC bugs: 799689: gst-python1.0: Missing python3 interpreter depends for python3-gst-1.0 From noreply at release.debian.org Tue Sep 29 04:39:08 2015 From: noreply at release.debian.org (Debian testing autoremoval watch) Date: Tue, 29 Sep 2015 04:39:08 +0000 Subject: gst-python1.0 is marked for autoremoval from testing Message-ID: gst-python1.0 1.4.0-2 is marked for autoremoval from testing on 2015-11-04 It is affected by these RC bugs: 799689: gst-python1.0: Missing python3 interpreter depends for python3-gst-1.0 From produccion at algivert.com Tue Sep 29 04:58:10 2015 From: produccion at algivert.com (ACCOUNTANT) Date: Tue, 29 Sep 2015 00:58:10 -0400 Subject: New Order Message-ID: <51f5f94817cdb66f51841163c9aae4b6@books-directory-projectreports.com> > Hello Sir, > > We did not receive your response about our new Order we sent to you. > Please find our re attached PO N0. 2201000741 it in excel format zipped. > > Please send us the order confirmation with delivery schedule so we can prepare payment. > > Thanks & regards > > Dr. Rahul Kasar, > Head | Cymbio Pharma | #234 | N.H.7 | Venkatala | Yelanka | Bangalore-560 064 | India > Ph: 91-080 28571353, 28571845, Ext 107 | M: +91 9900014113 > drrahul at karlegroup.com | www.cymbio.co.in > > Corporate headquarter- > Karel Group of Companies | No. 151, Industrial Suburb | Yeshwanthpur | > Bangalore-560 022| India | Ph: 080 41285301 to 15. > > www.karlegroup.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: PO 2201000741.zip Type: application/zip Size: 563212 bytes Desc: not available URL: From aktiwari at ntu.edu.sg Tue Sep 29 07:54:26 2015 From: aktiwari at ntu.edu.sg (Tiwari Amit Kumar (Dr)) Date: Tue, 29 Sep 2015 07:54:26 +0000 Subject: No subject Message-ID: <500B006DDDE60A44BA21793E050E845C01C066E8@EXCHMBOX34.staff.main.ntu.edu.sg> Avete bisogno di un prestito urgente? per iniziare la vostra attivit? o acquistare una casa, se s?, di contattarci tramite questo particolare e-mail: davivas at shqiptar.eu ________________________________ CONFIDENTIALITY: This email is intended solely for the person(s) named and may be confidential and/or privileged. If you are not the intended recipient, please delete it, notify us and do not copy, use, or disclose its contents. Towards a sustainable earth: Print only when necessary. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From postmaster at ssbinstrumentos.com.br Tue Sep 29 09:16:36 2015 From: postmaster at ssbinstrumentos.com.br (CIAL =?ISO-8859-1?Q?balan=E7as_t=E9cnicas?=) Date: Tue, 29 Sep 2015 06:16:36 -0300 Subject: =?ISO-8859-1?Q?BALAN=C7AS?= CONTADORAS DE =?ISO-8859-1?Q?PE=C7AS?= - 100% nacionais - para 2, 5, 10, 25 E 50 QUILOS Message-ID: CIAL balan?as t?cnicas BALAN?AS CONTADORAS DE PE?AS 2, 5, 10, 25 E 50 QUILOS Valor promocional at? o dia 30/09/2015 - qualquer dos modelos R$ 1.199,00 - pagamento 25/50 dias Fa?a sua compra, envie seu pedido no e-mail: vendas at cialcomercio.com.br ou ligue (11) 3932-3535 -------------- next part -------------- A non-text attachment was scrubbed... Name: FINAL_LINHA_MC.jpg Type: application/octet-stream Size: 297729 bytes Desc: not available URL: From peteremmanuel110 at yahoo.co.jp Tue Sep 29 10:44:18 2015 From: peteremmanuel110 at yahoo.co.jp (Rebeca Attoumbe) Date: Tue, 29 Sep 2015 19:44:18 +0900 (JST) Subject: From Miss Rebeca Attoumbe, Message-ID: <907182.62056.qm@web100416.mail.kks.yahoo.co.jp> >From Miss Rebeca Attoumbe, ? Before I continue, let me introduce myself to you as Miss Rebeca Attoumbe, it is great pleasure to contact you in the first place no matter we have not meet before.But as long as you will reassure me of your sincerity to received this fund under your care until i arrive in your country. ? I am the Daugher of late Dr ROBIN GILLES Attoumbe of blessed memory, who was the Director General of Coffee/Cocoa Export Corporation(C.E.C.) of Ivory Coast? who died in a motor acident a few months ago in a private Hospital here in my country . ? Before his death he has being informing me of his fund in a prime bank here in Abidjan, Amount is? 3,5 million? Euro(Three? million Five hundred Thousand Euro ) ? Meanwhile I want to travel out of Ivory Coast entirely due to harasments here since after the war. I will like? you to assist me to get this money transferred into your nominated private account in your country for invesment purpose. You shall also source for good investment for both of us to? invest the money wisely. ? Please do consider my proposal and get back to me if it interest you, I will give you more Details upon your responses, For the interest of this transaction do not hesitate to contact me immediately you receive this message for more information to enable us proceed in concluding with all arrangement. No other person knows about this money expect me and you, ? Awaiting for your most urgent response. ? Thanks for your co-operation and remain blessed. ? Best Regards, ? Miss Rebeca Attoumbe. -------------- next part -------------- An HTML attachment was scrubbed... URL: From dma+debianbugs at subgraph.com Tue Sep 29 21:10:18 2015 From: dma+debianbugs at subgraph.com (dma) Date: Tue, 29 Sep 2015 21:10:18 +0000 Subject: Bug#800473: gstreamer0.10-plugins-bad: libgme.so.0.6.0 not linked to zlib when built Message-ID: <20150929211018.22730.70972.reportbug@host.lan> Package: gstreamer0.10-plugins-bad Version: 0.10.23-8.1 Severity: normal Dear Maintainer, It appears that the binary libgme.so.0.6.0 was not linked to zlib when it was built. It consequently fails to load, with the following error output through gst-plugin-scanner: 2015/09/29 16:51:17 [iceweasel] (stderr) (gst-plugin-scanner:167): GStreamer-WARNING **: Failed to load plugin '/usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgme.so': /usr/lib/x86_64-linux-gnu/libgme.so.0: undefined symbol: gzseek An examination of the ELF shows that zlib is indeed not linked: linux-vdso.so.1 (0x000003683ff42000) libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x000003683f75c000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x000003683f45b000) libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x000003683f245000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x000003683ee9c000) /lib64/ld-linux-x86-64.so.2 (0x000003683fd24000) I modified the gme/CMakeLists.txt to include directives to explicitly link zlib, and then rebuilt libgme, and the error went away: user at host:~/Downloads/game-music-emu-0.6.0/gme$ ldd /usr/lib/x86_64-linux-gnu/libgme.so.0.6.0 linux-vdso.so.1 (0x0000039952d02000) libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x0000039952669000) libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00000399522ee000) libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x0000039951fed000) libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x0000039951dd7000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x0000039951a2e000) /lib64/ld-linux-x86-64.so.2 (0x0000039952ae4000) -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 4.1.7-grsec-amd64 (SMP w/8 CPU cores) Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages gstreamer0.10-plugins-bad depends on: ii dconf-gsettings-backend [gsettings-backend] 0.24.0-2 ii gstreamer0.10-plugins-base 0.10.36-2 ii libass5 0.12.3-2 ii libbz2-1.0 1.0.6-8 ii libc6 2.19-22 ii libcairo2 1.14.2-2 ii libcdaudio1 0.99.12p2-13+b1 ii libcurl3-gnutls 7.44.0-2 ii libdc1394-22 2.2.3-1 ii libdca0 0.0.5-7 ii libdirectfb-1.2-9 1.2.10.0-5.1 ii libdvdnav4 5.0.3-1 ii libdvdread4 5.0.3-1 ii libfaad2 2.8.0~cvs20150510-1 ii libflite1 1.4-release-12 ii libgcc1 1:5.2.1-17 ii libglib2.0-0 2.44.1-1.1 ii libgme0 0.6.0-2 ii libgsm1 1.0.13-4 ii libgstreamer-plugins-bad0.10-0 0.10.23-8.1 ii libgstreamer-plugins-base0.10-0 0.10.36-2 ii libgstreamer0.10-0 0.10.36-1.5 ii libjasper1 1.900.1-debian1-2.4 ii libkate1 0.4.1-4.1 ii libmimic0 1.0.4-2.3 ii libmms0 0.6.2-4 ii libmodplug1 1:0.8.8.5-2 ii libmpcdec6 2:0.1~r475-1 ii libofa0 0.9.3-10 ii libopenal1 1:1.16.0-3 ii libopus0 1.1-2 ii liborc-0.4-0 1:0.4.24-1 ii libpng12-0 1.2.50-2+b2 ii librsvg2-2 2.40.10-1 ii librtmp1 2.4+20150115.gita107cef-1+b2 ii libschroedinger-1.0-0 1.0.11-2.1 ii libslv2-9 0.6.6+dfsg1-3 ii libsndfile1 1.0.25-9.1 ii libsoundtouch0 1.9.0-1 ii libspandsp2 0.0.6-2.1 ii libssl1.0.0 1.0.2d-1 ii libstdc++6 5.2.1-17 ii libvo-aacenc0 0.1.3-1 ii libvo-amrwbenc0 0.1.3-1 ii libvpx2 1.4.0-4 ii libwildmidi1 0.3.8-2 ii libx11-6 2:1.6.3-1 ii libxml2 2.9.2+zdfsg1-4 ii libxvidcore4 2:1.3.4-1 ii libzbar0 0.10+doc-10 ii libzvbi0 0.2.35-9 gstreamer0.10-plugins-bad recommends no packages. Versions of packages gstreamer0.10-plugins-bad suggests: pn frei0r-plugins -- no debconf information