Bug#859761: closed by Sebastian Ramacher <sramac...@debian.org> (Bug#859761: fixed in libdvd-pkg 1.4.1-1-1)

2018-01-18 Thread Sebastian Ramacher
On 2018-01-19 10:09:28, Stephen Thomas wrote:
> Thanks, Sebastian.
> 
> The diff shows a couple of newlines inside the new CAPSH string that were 
> intended to be spaces; I should know better than to embed source code in 
> emails, but it should still work so meh.

Fixed for the next upload: 
https://anonscm.debian.org/cgit/pkg-multimedia/libdvd-pkg.git/commit/?id=34b9ba9

Cheers
-- 
Sebastian Ramacher


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

Bug#859761: closed by Sebastian Ramacher <sramac...@debian.org> (Bug#859761: fixed in libdvd-pkg 1.4.1-1-1)

2018-01-18 Thread Stephen Thomas
Thanks, Sebastian.

The diff shows a couple of newlines inside the new CAPSH string that were 
intended to be spaces; I should know better than to embed source code in 
emails, but it should still work so meh.

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


January Pricelist

2018-01-18 Thread Bonesca - Jona
[  ]( http://r.newsletter.bonescamail.nl/track/click/yc44xsfalaoatrd )

   [ Click here for our latest pricelist!
Haga clic aquí para ver la lista de ofertas!
Klicken Sie hier für die letzte Preisliste!
Klik hier voor de meest recente prijslijst!
Cliquez ici pour la liste des prix récentes! ]( 
http://r.newsletter.bonescamail.nl/track/click/yc44xsfbdqoatrd )   
   [ Click here for complete overview latest offers
Haga clic aquí para ver la lista completa de las últimas ofertas
Klicken Sie hier für die komplette Liste der letzten Angebote
Klik hier voor het complete overzicht recente aanbiedingen
Cliquez ici pour la liste complète des offres récentes ]( 
http://r.newsletter.bonescamail.nl/track/click/yc44xsfc66oatrd )     
This email was sent to pkg-multimedia-maintainers@lists.alioth.debian.org
You received this email because you are registered with Bonesca Import en 
Export BV
 
[ Unsubscribe here ]( http://r.newsletter.bonescamail.nl/8l118g3tqoatrg.html )  

Sent by
[  ]( http://r.newsletter.bonescamail.nl/track/click/yc44xsfcymoatrd )     
© 2017 Bonesca Import en Export BV  

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

Bug#859761: marked as done (libdvd-pkg: dpkg-buildpackage fails without libcap2-bin)

2018-01-18 Thread Debian Bug Tracking System
Your message dated Thu, 18 Jan 2018 22:49:49 +
with message-id 
and subject line Bug#859761: fixed in libdvd-pkg 1.4.1-1-1
has caused the Debian Bug report #859761,
regarding libdvd-pkg: dpkg-buildpackage fails without libcap2-bin
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
859761: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859761
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libdvd-pkg
Version: 1.4.0-1-2
Severity: normal
Tags: patch

Dear Maintainer,

After installing libdvd-pkg without the recommended libcap2-bin package
also installed, dpkg-reconfigure libdvd-pkg failed as follows:

libvd-pkg: Checking orig.tar integrity...
/usr/src/libdvd-pkg/libdvdcss_1.4.0.orig.tar.bz2: OK
libdvd-pkg: Unpacking and configuring...
libdvd-pkg: Building the package... (it may take a while)
libdvd-pkg: Build log will be saved to
/usr/src/libdvd-pkg/libdvdcss2_1.4.0-1~local_amd64.build
dpkg-buildpackage: error: unknown option or argument
>/usr/src/libdvd-pkg/libdvdcss2_1.4.0-1~local_amd64.build

Use --help for program usage information.

Tracked this down to the following lines inside
/usr/lib/libdvd-pkg/b-i_libdvdcss.sh:

BUILDCMD="dpkg-buildpackage -b -uc >${BUILDLOG} 2>&1"
CAPSH=$(which capsh) \
&& ${CAPSH} --secbits=0x14
--drop=cap_dac_read_search,cap_fsetid,cap_kill,cap_setgid,cap_setuid,cap_setpcap,cap_linux_immutable,cap_net_bind_service,cap_net_broadcast,cap_net_admin,cap_net_raw,cap_ipc_lock,cap_ipc_owner,cap_sys_module,cap_sys_rawio,cap_sys_chroot,cap_sys_ptrace,cap_sys_pacct,cap_sys_admin,cap_sys_boot,cap_sys_nice,cap_sys_resource,cap_sys_time,cap_sys_tty_config,cap_mknod,cap_lease,cap_audit_write,cap_audit_control,cap_setfcap,cap_mac_override,cap_mac_admin,cap_syslog-ep
--print \
-- -c "${BUILDCMD}" \
|| ${BUILDCMD}

The issue is that when CAPSH doesn't get defined because $(which capsh)
fails, the fallback is for ${BUILDCMD} to be expanded as a command. But
redirects are processed before parameter expansions, so the redirects
inside BUILDCMD end up passed to dpkg-buildpackage as arguments instead
of doing what they're supposed to.

Replacing the CAPSH= command line with the following fixes the issue:

CAPSH="$(which capsh) --secbits=0x14
--drop=cap_dac_read_search,cap_fsetid,cap_kill,cap_setgid,cap_setuid,cap_setpcap,cap_linux_immutable,cap_net_bind_service,cap_net_broadcast,cap_net_admin,cap_net_raw,cap_ipc_lock,cap_ipc_owner,cap_sys_module,cap_sys_rawio,cap_sys_chroot,cap_sys_ptrace,cap_sys_pacct,cap_sys_admin,cap_sys_boot,cap_sys_nice,cap_sys_resource,cap_sys_time,cap_sys_tty_config,cap_mknod,cap_lease,cap_audit_write,cap_audit_control,cap_setfcap,cap_mac_override,cap_mac_admin,cap_syslog-ep
--print --" || CAPSH=/bin/bash
${CAPSH} -c "${BUILDCMD}"

That way, BUILDCMD always gets passed to /bin/bash as a complete command
line so its embedded redirects will work whether capsh exists or not.

Having CAPSH fall back to /bin/sh also works, but the docs for capsh
explicitly specify /bin/bash as the shell its -- option invokes, so
using it for the fallback seems like the Right Thing.


-- System Information:
Debian Release: 9.0
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-2-amd64 (SMP w/1 CPU core)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libdvd-pkg depends on:
pn  build-essential
ii  debconf [debconf-2.0]  1.5.60
pn  debhelper  
pn  dh-autoreconf  
ii  wget   1.18-5

Versions of packages libdvd-pkg recommends:
ii  libcap2-bin  1:2.25-1

libdvd-pkg suggests no packages.

-- debconf information:
  libdvd-pkg/upgrade:
* libdvd-pkg/build: true
* libdvd-pkg/post-invoke_hook-remove: false
* libdvd-pkg/post-invoke_hook-install: true
  libdvd-pkg/title_b-i:
  libdvd-pkg/title_u:
* libdvd-pkg/first-install:
--- End Message ---
--- Begin Message ---
Source: libdvd-pkg
Source-Version: 1.4.1-1-1

We believe that the bug you reported is fixed in the latest version of
libdvd-pkg, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 859...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated 

libdvd-pkg_1.4.1-1-1_amd64.changes ACCEPTED into unstable

2018-01-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 18 Jan 2018 23:20:32 +0100
Source: libdvd-pkg
Binary: libdvd-pkg
Architecture: source all
Version: 1.4.1-1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 libdvd-pkg - DVD-Video playing library - installer
Closes: 859761
Changes:
 libdvd-pkg (1.4.1-1-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Sebastian Ramacher ]
   * New upstream release.
   * debian/control: Bump Standards-Version.
 .
   [ Stephen Thomas ]
   * Fix invocation of dpkg-buildpackage if libcap2-bin is not available.
 (Closes: #859761)
Checksums-Sha1:
 6e8f1f2bbbe36970477c5cde82498757a36bf3c0 1963 libdvd-pkg_1.4.1-1-1.dsc
 3e05adf6b7ce709d097f0c94ea1ea32023b933af 3796 libdvd-pkg_1.4.1-1.orig.tar.xz
 4fdbfbe48c7e1a6020993d0b7c9abeae876a01d3 13748 
libdvd-pkg_1.4.1-1-1.debian.tar.xz
 e5040609873e8f79a5b456e2804225ddec62dac0 15404 libdvd-pkg_1.4.1-1-1_all.deb
 14805b2ab8fa5e130ac3b2d17b23935dc36b12b8 6215 
libdvd-pkg_1.4.1-1-1_amd64.buildinfo
Checksums-Sha256:
 bea870ffcfbe97fbcbbeb71b7213ef371c2eff8959e6c0093b11378bd56a0255 1963 
libdvd-pkg_1.4.1-1-1.dsc
 da39439829c2bcfcd2e44b775f5d22baa8625334a0239d9ef3f2460954eb69ac 3796 
libdvd-pkg_1.4.1-1.orig.tar.xz
 86608cfa08f890c3ebbb27dbb48b7edc008d907c65e41e79c1b1a26c32615bf7 13748 
libdvd-pkg_1.4.1-1-1.debian.tar.xz
 9d4eff17c4fc03be6d6c12ba1f6fc84e707bf7d51e5d5f208eac257fade0f820 15404 
libdvd-pkg_1.4.1-1-1_all.deb
 f312c5e6ace4a5896d68a8cf6f8086bb24a3f2b9a7faa5e3ad5a0cfe0fdd3b88 6215 
libdvd-pkg_1.4.1-1-1_amd64.buildinfo
Files:
 bdc145d7266db28f7629a34a18b430e5 1963 contrib/utils optional 
libdvd-pkg_1.4.1-1-1.dsc
 d4a22d4a76d93a5c0e44c484253c2afd 3796 contrib/utils optional 
libdvd-pkg_1.4.1-1.orig.tar.xz
 36f56bf5f5c4d55f93a922fa5b72029e 13748 contrib/utils optional 
libdvd-pkg_1.4.1-1-1.debian.tar.xz
 0bfbc6876fd7a379f3800a6430ff7590 15404 contrib/utils optional 
libdvd-pkg_1.4.1-1-1_all.deb
 71c9352e298de5b74ff591d2af71a298 6215 contrib/utils optional 
libdvd-pkg_1.4.1-1-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAlphHfcVHHNyYW1hY2hl
ckBkZWJpYW4ub3JnAAoJEGny/FFupxmTm84P/36IygWQeg4v4HlKP6Nfba9zGk6E
LDpYptyTvAYiX3nh4vHEsYvZTqCLf5Vi+nT5GmBHcxIAZ0wbZui0NiGv0x1SGm9I
/LCS3JrwFhiPOZZGta4DJtrMQpqbX/ZQmlY90si/o6aJF+8OIuY8JxfibYrOeN3u
kgql3hMVhMIILgk+BN7eA1aYaoVE+yjlrnEDtQyIr7AYFfIHjemxGD0FCtucHp6j
cNtf4+SMFTxg3CiMHc2rfVysIuCIYsL74zU6Uueta9ItCYWZhp+95CVnR72FTASY
32w6Y0O8bFJ3smcW/0tgZOJNU4M812mIOQjTI1M/Jzbx0ZzPajwDwx1DTaM2xIbA
sAKrzpJrclL93ot6bXc8UFlBvFbm2mluRy5f4AHzH5srIFSMGafJKT2Bb0dp1T2i
JQJtro9PxNrTtl75WP8d7ALjT6XcQpa3w2tkwdnf1qIjQrpxLvH6+3pVgi1psPQb
KaCEjlfwvnt+lofRqddaEh9j9vvz+dSqYGI1R9cmQ/1Bb9eTAA2SwG1xrD4isHyI
TEZeYPbujoXFe8hkitdmV4+52jL8z7qH1uESmf9d2YUPUSWP9sMim+X/6cHOstck
H05OWVGZo82B4ysDp9DP1oMuEa+zxdv5qrICeaGhkOW4Tqy92eolySVaKNK3B+B9
biAXA8eq78wU9uDx
=Hdqi
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


Processing of libdvd-pkg_1.4.1-1-1_amd64.changes

2018-01-18 Thread Debian FTP Masters
libdvd-pkg_1.4.1-1-1_amd64.changes uploaded successfully to localhost
along with the files:
  libdvd-pkg_1.4.1-1-1.dsc
  libdvd-pkg_1.4.1-1.orig.tar.xz
  libdvd-pkg_1.4.1-1-1.debian.tar.xz
  libdvd-pkg_1.4.1-1-1_all.deb
  libdvd-pkg_1.4.1-1-1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

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


Processed: Bug#859761 marked as pending

2018-01-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 859761 pending
Bug #859761 [libdvd-pkg] libdvd-pkg: dpkg-buildpackage fails without libcap2-bin
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
859761: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859761
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

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


Bug#887621: marked as done (libvlc-bin: trigger problem after upgrade from stretch: find: '/usr/lib/x86_64-linux-gnu/vlc/plugins': No such file or directory)

2018-01-18 Thread Debian Bug Tracking System
Your message dated Thu, 18 Jan 2018 22:09:00 +
with message-id 
and subject line Bug#887621: fixed in vlc 3.0.0~rc6-1
has caused the Debian Bug report #887621,
regarding libvlc-bin: trigger problem after upgrade from stretch: find: 
'/usr/lib/x86_64-linux-gnu/vlc/plugins': No such file or directory
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
887621: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=887621
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:vlc
Version: 3.0.0~rc5-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'stretch'.
It installed fine in 'stretch', then the upgrade to 'sid' fails.

>From the attached log (scroll to the bottom...):

  Setting up libvlc-bin:amd64 (3.0.0~rc5-1) ...
  Processing triggers for libc-bin (2.26-2) ...
  Processing triggers for libvlc-bin:amd64 (3.0.0~rc5-1) ...
  find: '/usr/lib/x86_64-linux-gnu/vlc/plugins': No such file or directory
  dpkg: error processing package libvlc-bin:amd64 (--configure):
   installed libvlc-bin:amd64 package post-installation script subprocess 
returned error exit status 1
  Errors were encountered while processing:
   libvlc-bin:amd64


cheers,

Andreas


libvlc-bin_3.0.0~rc5-1.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: vlc
Source-Version: 3.0.0~rc6-1

We believe that the bug you reported is fixed in the latest version of
vlc, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 887...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated vlc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 18 Jan 2018 22:31:56 +0100
Source: vlc
Binary: vlc libvlc-dev libvlc5 libvlccore-dev libvlccore9 libvlc-bin vlc-bin 
vlc-data vlc-l10n vlc-plugin-base vlc-plugin-access-extra 
vlc-plugin-video-output vlc-plugin-video-splitter vlc-plugin-visualization 
vlc-plugin-skins2 vlc-plugin-qt vlc-plugin-fluidsynth vlc-plugin-jack 
vlc-plugin-notify vlc-plugin-svg vlc-plugin-samba vlc-plugin-zvbi
Architecture: source
Version: 3.0.0~rc6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 libvlc-bin - tools for VLC's base library
 libvlc-dev - development files for libvlc
 libvlc5- multimedia player and streamer library
 libvlccore-dev - development files for libvlccore
 libvlccore9 - base library for VLC and its modules
 vlc- multimedia player and streamer
 vlc-bin- binaries from VLC
 vlc-data   - common data for VLC
 vlc-l10n   - translations for VLC
 vlc-plugin-access-extra - multimedia player and streamer (extra access plugins)
 vlc-plugin-base - multimedia player and streamer (base plugins)
 vlc-plugin-fluidsynth - FluidSynth plugin for VLC
 vlc-plugin-jack - JACK audio plugins for VLC
 vlc-plugin-notify - LibNotify plugin for VLC
 vlc-plugin-qt - multimedia player and streamer (Qt plugin)
 vlc-plugin-samba - Samba plugin for VLC
 vlc-plugin-skins2 - multimedia player and streamer (Skins2 plugin)
 vlc-plugin-svg - SVG plugin for VLC
 vlc-plugin-video-output - multimedia player and streamer (video output plugins)
 vlc-plugin-video-splitter - multimedia player and streamer (video splitter 
plugins)
 vlc-plugin-visualization - multimedia player and streamer (visualization 
plugins)
 vlc-plugin-zvbi - transitional dummy package
Closes: 887440 887621
Changes:
 vlc (3.0.0~rc6-1) unstable; urgency=medium
 .
   [ Helmut Grohne ]
   * debian/control: Annotate Build-Depends: python3 with :native. (Closes:
 #887440)
 .
   [ Sebastian Ramacher ]
   * New upstream release candidate.
   * debian/rules:
 - Handle vendor consistently.
 - Remove workaround for some resources.
   * debian/vlc-plugin-base.install: Install lua byte code.
   * debian/libvlc-bin.postinst.in: Exit early if plugins directory does not
 exist. 

Bug#887440: marked as done (vlc FTCBFS: python3 build-dependency not installable)

2018-01-18 Thread Debian Bug Tracking System
Your message dated Thu, 18 Jan 2018 22:09:00 +
with message-id 
and subject line Bug#887440: fixed in vlc 3.0.0~rc6-1
has caused the Debian Bug report #887440,
regarding vlc FTCBFS: python3 build-dependency not installable
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
887440: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=887440
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: vlc
Version: 3.0.0~rc5-1
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

vlc fails to cross build from source, because installing its
Build-Depends fails. It lists python3 in Build-Depends and by default
that means the host architecture python3. It cannot be installed nor
executed, but vlc really needs an executable python3, i.e. the one for
the build architecture. Getting it is a matter of annotating the
dependency with :native (or :any if you prefer). The attached patch does
that. Please consider applying it.

After applying it, the Build-Depends still fail to install, because
libsmbclient-dev is not installable for foreign architectures. This
issue is tracked as #862338 and #878612. My patch is orthogonal.

Even though vlc will not cross build from source, please close this bug
when fixing the python3 dependency.

Helmut
diff --minimal -Nru vlc-3.0.0~rc5/debian/changelog 
vlc-3.0.0~rc5/debian/changelog
--- vlc-3.0.0~rc5/debian/changelog  2018-01-11 19:41:02.0 +0100
+++ vlc-3.0.0~rc5/debian/changelog  2018-01-16 15:35:52.0 +0100
@@ -1,3 +1,10 @@
+vlc (3.0.0~rc5-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Annotate Build-Depends: python3 with :native. (Closes: #-1)
+
+ -- Helmut Grohne   Tue, 16 Jan 2018 15:35:52 +0100
+
 vlc (3.0.0~rc5-1) unstable; urgency=medium
 
   * New upstream release candidate.
diff --minimal -Nru vlc-3.0.0~rc5/debian/control vlc-3.0.0~rc5/debian/control
--- vlc-3.0.0~rc5/debian/control2018-01-11 19:41:02.0 +0100
+++ vlc-3.0.0~rc5/debian/control2018-01-16 15:35:50.0 +0100
@@ -126,7 +126,7 @@
oss4-dev [kfreebsd-any],
pkg-config,
protobuf-compiler,
-   python3,
+   python3:native,
qtbase5-dev (>= 5.6),
qtbase5-private-dev (>= 5.6),
wayland-protocols [linux-any],
--- End Message ---
--- Begin Message ---
Source: vlc
Source-Version: 3.0.0~rc6-1

We believe that the bug you reported is fixed in the latest version of
vlc, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 887...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sebastian Ramacher  (supplier of updated vlc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 18 Jan 2018 22:31:56 +0100
Source: vlc
Binary: vlc libvlc-dev libvlc5 libvlccore-dev libvlccore9 libvlc-bin vlc-bin 
vlc-data vlc-l10n vlc-plugin-base vlc-plugin-access-extra 
vlc-plugin-video-output vlc-plugin-video-splitter vlc-plugin-visualization 
vlc-plugin-skins2 vlc-plugin-qt vlc-plugin-fluidsynth vlc-plugin-jack 
vlc-plugin-notify vlc-plugin-svg vlc-plugin-samba vlc-plugin-zvbi
Architecture: source
Version: 3.0.0~rc6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 libvlc-bin - tools for VLC's base library
 libvlc-dev - development files for libvlc
 libvlc5- multimedia player and streamer library
 libvlccore-dev - development files for libvlccore
 libvlccore9 - base library for VLC and its modules
 vlc- multimedia player and streamer
 vlc-bin- binaries from VLC
 vlc-data   - common data for VLC
 vlc-l10n   - translations for VLC
 vlc-plugin-access-extra - multimedia player and streamer (extra access plugins)
 vlc-plugin-base - multimedia player and streamer (base plugins)
 vlc-plugin-fluidsynth - FluidSynth plugin for VLC
 vlc-plugin-jack - JACK audio plugins for VLC
 vlc-plugin-notify - LibNotify plugin for 

vlc_3.0.0~rc6-1_source.changes ACCEPTED into unstable

2018-01-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 18 Jan 2018 22:31:56 +0100
Source: vlc
Binary: vlc libvlc-dev libvlc5 libvlccore-dev libvlccore9 libvlc-bin vlc-bin 
vlc-data vlc-l10n vlc-plugin-base vlc-plugin-access-extra 
vlc-plugin-video-output vlc-plugin-video-splitter vlc-plugin-visualization 
vlc-plugin-skins2 vlc-plugin-qt vlc-plugin-fluidsynth vlc-plugin-jack 
vlc-plugin-notify vlc-plugin-svg vlc-plugin-samba vlc-plugin-zvbi
Architecture: source
Version: 3.0.0~rc6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 libvlc-bin - tools for VLC's base library
 libvlc-dev - development files for libvlc
 libvlc5- multimedia player and streamer library
 libvlccore-dev - development files for libvlccore
 libvlccore9 - base library for VLC and its modules
 vlc- multimedia player and streamer
 vlc-bin- binaries from VLC
 vlc-data   - common data for VLC
 vlc-l10n   - translations for VLC
 vlc-plugin-access-extra - multimedia player and streamer (extra access plugins)
 vlc-plugin-base - multimedia player and streamer (base plugins)
 vlc-plugin-fluidsynth - FluidSynth plugin for VLC
 vlc-plugin-jack - JACK audio plugins for VLC
 vlc-plugin-notify - LibNotify plugin for VLC
 vlc-plugin-qt - multimedia player and streamer (Qt plugin)
 vlc-plugin-samba - Samba plugin for VLC
 vlc-plugin-skins2 - multimedia player and streamer (Skins2 plugin)
 vlc-plugin-svg - SVG plugin for VLC
 vlc-plugin-video-output - multimedia player and streamer (video output plugins)
 vlc-plugin-video-splitter - multimedia player and streamer (video splitter 
plugins)
 vlc-plugin-visualization - multimedia player and streamer (visualization 
plugins)
 vlc-plugin-zvbi - transitional dummy package
Closes: 887440 887621
Changes:
 vlc (3.0.0~rc6-1) unstable; urgency=medium
 .
   [ Helmut Grohne ]
   * debian/control: Annotate Build-Depends: python3 with :native. (Closes:
 #887440)
 .
   [ Sebastian Ramacher ]
   * New upstream release candidate.
   * debian/rules:
 - Handle vendor consistently.
 - Remove workaround for some resources.
   * debian/vlc-plugin-base.install: Install lua byte code.
   * debian/libvlc-bin.postinst.in: Exit early if plugins directory does not
 exist. (Closes: #887621)
Checksums-Sha1:
 e44aa835866c58b745e0e68a40bae3e13cb851f2 6219 vlc_3.0.0~rc6-1.dsc
 4a60ec88361ede73eb64b3f861fab60339bedf79 25078544 vlc_3.0.0~rc6.orig.tar.xz
 acb13007bdfa856b074a92684896d4f337cdaf4d 62460 vlc_3.0.0~rc6-1.debian.tar.xz
Checksums-Sha256:
 1209d170b32bec4754069d09d27f1dbf261148293502b0f7060a1d5d5bf3c288 6219 
vlc_3.0.0~rc6-1.dsc
 d99886abc489e1bbe91455b190838d30cacb91e67828cbae22fcce5a5e78f7e7 25078544 
vlc_3.0.0~rc6.orig.tar.xz
 3ead1c82525573ea5aa70edf2be01bd58a541569a6c3ac460050b3c9ec3bed31 62460 
vlc_3.0.0~rc6-1.debian.tar.xz
Files:
 3a390826dc1aaa190ad86cab8ef7198b 6219 video optional vlc_3.0.0~rc6-1.dsc
 e3856956d9c993fe406cb553d2a3b5f6 25078544 video optional 
vlc_3.0.0~rc6.orig.tar.xz
 324bb9d5dd2f803875e51c6e027bb34a 62460 video optional 
vlc_3.0.0~rc6-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAlphFCwACgkQafL8UW6n
GZNiUBAAiUnTmgw0/F39EnEnWPJxxGm4VtCwAsLpozTGMDe61lpcxNMM7yCtR/J1
l2R5hMPtcU16SS0hgltQtFJ0xsfjfNPoSodKTNruCD20m1O1uPybm7zI/IsH5Nz1
UT/Td2ftMFyfx4Pu5l3lC0GPYfUWX7lz57GK4d++ZOt3XDGJvgFH0OHthy7ykSZz
AWU9L61aVHYdEG3NwIb2bRWr1OTyJAhuDueTrygmW0W8bJScrdoBWgNi5xVgYOOr
rA226fbMqyu69c+xmGV0H0HTejczmrH9dj20cUMzL06XpmQ8GgRQDwGP9mGO9i/I
pqxsX+jkGAuy64XMhg7syLBzY4GadwoyIisEG9JTXi/hFdpn8xoCTmYK65ZsuJTi
G4OGO/XSSr6fjw8y07t+n/camf0o7iVv1KQkYQPZdPXbZ6VBkwaDSQeEJUxtaZ3/
dlYCKpuPCnhS26lPB9/Ij0sq363HA7eyxtcIKVsaxqyy36hcasopuyqoTgOeALIU
HLP12u/7zxcDuTz5HLAFBOogKbvXaoUcpYGgUCBnXK9spYOWLJ8BKfCTmCBJ/GM6
9g9bb3Op8u9V0RfyjmWnlWY1NV11QBcg4GNWSdFbGhyUFcwGR8Hp/KtwCZMJZKs/
iWCGJRi8j75jZqiLyLmwYD2h87NN8WUbgRckpBeCGnBfr2C7X3s=
=NTSB
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


Processing of vlc_3.0.0~rc6-1_source.changes

2018-01-18 Thread Debian FTP Masters
vlc_3.0.0~rc6-1_source.changes uploaded successfully to localhost
along with the files:
  vlc_3.0.0~rc6-1.dsc
  vlc_3.0.0~rc6.orig.tar.xz
  vlc_3.0.0~rc6-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

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


Notification

2018-01-18 Thread Service INC




 











  PayPal














Dear Costumer,  Recently, there's been activity in your account that seems unusual Compared to your Normal account activities.  What do I need to do?  Please visit the following website to complete the renewal of your Information. Simply Click on the web address below















 










Confirm










 



 



 










 




 Best regards, Your PayPal team




 










 











 





unsubscribe

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

Bug#887621: libvlc-bin: trigger problem after upgrade from stretch: find: '/usr/lib/x86_64-linux-gnu/vlc/plugins': No such file or directory

2018-01-18 Thread Andreas Beckmann
Package: src:vlc
Version: 3.0.0~rc5-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'stretch'.
It installed fine in 'stretch', then the upgrade to 'sid' fails.

>From the attached log (scroll to the bottom...):

  Setting up libvlc-bin:amd64 (3.0.0~rc5-1) ...
  Processing triggers for libc-bin (2.26-2) ...
  Processing triggers for libvlc-bin:amd64 (3.0.0~rc5-1) ...
  find: '/usr/lib/x86_64-linux-gnu/vlc/plugins': No such file or directory
  dpkg: error processing package libvlc-bin:amd64 (--configure):
   installed libvlc-bin:amd64 package post-installation script subprocess 
returned error exit status 1
  Errors were encountered while processing:
   libvlc-bin:amd64


cheers,

Andreas


libvlc-bin_3.0.0~rc5-1.log.gz
Description: application/gzip
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

x264_0.152.2854+gite9a5903-1_amd64.changes ACCEPTED into experimental, experimental

2018-01-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 05 Jan 2018 12:14:48 +0100
Source: x264
Binary: x264 libx264-152 libx264-dev
Architecture: source amd64
Version: 2:0.152.2854+gite9a5903-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Rico Tzschichholz 
Description:
 libx264-152 - x264 video coding library
 libx264-dev - development files for libx264
 x264   - video encoder for the H.264/MPEG-4 AVC standard
Changes:
 x264 (2:0.152.2854+gite9a5903-1) experimental; urgency=medium
 .
   [ Rico Tzschichholz ]
   * Update to new stable upstream
   * New upstream version 0.152.2854+gite9a5903
   * Require nasm (>= 2.13) instead of yasm
   * Update debian/control for soname bump
   * Regenerate manpage
 .
   [ Sebastian Ramacher ]
   * debian/control:
 - Bump Standards-Version.
 - Remove obsolete Pre-Depends.
Checksums-Sha1:
 0ad01575b9110179ce292b0ebb94bac1fcbbb4bf 2469 x264_0.152.2854+gite9a5903-1.dsc
 0a57f7c0673d6e37e85da082ce21ff9ee11c161e 912193 
x264_0.152.2854+gite9a5903.orig.tar.gz
 1ec7b07812e81d7564d49d62f351dd9c7222a985 23528 
x264_0.152.2854+gite9a5903-1.debian.tar.xz
 a51a01d10731b4e98adc8cf91491bd623db1a9c7 2376972 
libx264-152-dbgsym_0.152.2854+gite9a5903-1_amd64.deb
 3b576e3b5e97249416ba1064aadca6a36db0161f 615896 
libx264-152_0.152.2854+gite9a5903-1_amd64.deb
 d0738a6835d00f322ffb9af3cf962e5b3d4f30eb 469440 
libx264-dev_0.152.2854+gite9a5903-1_amd64.deb
 f544ad4279ffed2203fbcaf2de720096212a50a2 374264 
x264-dbgsym_0.152.2854+gite9a5903-1_amd64.deb
 f63a9b0ad453eadf88f0a730c4174c93de3220f3 10446 
x264_0.152.2854+gite9a5903-1_amd64.buildinfo
 e6d58e26efbafef5e8c1b91106ba4ef3a4aa66eb 86552 
x264_0.152.2854+gite9a5903-1_amd64.deb
Checksums-Sha256:
 4beb5ab187d15cad8b5776c79d52a7d4336f248af8b7ca2e9056ebec6cc1d7d9 2469 
x264_0.152.2854+gite9a5903-1.dsc
 8b623844222e23ae1f166a58575967d41e8a4478b43c4b2ff4b75dbcdd1f2d82 912193 
x264_0.152.2854+gite9a5903.orig.tar.gz
 7725874fafb3f604c0156db703315cf171853cace389484899c4665829029f74 23528 
x264_0.152.2854+gite9a5903-1.debian.tar.xz
 77f2acf68707135c08368f6044573463891db2049fea53bda9c978f86656c833 2376972 
libx264-152-dbgsym_0.152.2854+gite9a5903-1_amd64.deb
 cf065ec7cc6a3efe52ab2fcfb24efeffdc8222401826b6e25be2070cb88031bd 615896 
libx264-152_0.152.2854+gite9a5903-1_amd64.deb
 3430fa8080d8309a4af804d761961ef352d503df1a957399b837c39f039ede1d 469440 
libx264-dev_0.152.2854+gite9a5903-1_amd64.deb
 bf5eff06365f3d450ee0840e4a39302cc342820c956a8f852691a8ea405ce078 374264 
x264-dbgsym_0.152.2854+gite9a5903-1_amd64.deb
 06cfb9224b387eb2317f2db76029fd4e1e49eaecea037479e2d56b5c5a2ae390 10446 
x264_0.152.2854+gite9a5903-1_amd64.buildinfo
 158ce6ca7db09408a1fd18e41e82a2a30e2813394abd8e499dee276cc399ba0c 86552 
x264_0.152.2854+gite9a5903-1_amd64.deb
Files:
 60f8748cb6e611a6f5d9e77189fe8d5b 2469 libs optional 
x264_0.152.2854+gite9a5903-1.dsc
 957a20a31b7103ff6a39b07321994058 912193 libs optional 
x264_0.152.2854+gite9a5903.orig.tar.gz
 e0ffd15de3a8e0a611ead0e41c792cca 23528 libs optional 
x264_0.152.2854+gite9a5903-1.debian.tar.xz
 e396b08ebdbb28a54ba5348cb8b630d4 2376972 debug optional 
libx264-152-dbgsym_0.152.2854+gite9a5903-1_amd64.deb
 6b87be6d250ca5b8b95affc8106c457e 615896 libs optional 
libx264-152_0.152.2854+gite9a5903-1_amd64.deb
 d98a28ab155d8e883ef1f1f60b0f4022 469440 libdevel optional 
libx264-dev_0.152.2854+gite9a5903-1_amd64.deb
 a13d5ac4e4ca229c22781964643f9936 374264 debug optional 
x264-dbgsym_0.152.2854+gite9a5903-1_amd64.deb
 49afcfab24dd6b2df7253df5fdfd48ff 10446 libs optional 
x264_0.152.2854+gite9a5903-1_amd64.buildinfo
 befb9e93f0b916bb6a62d9526a4f7b75 86552 graphics optional 
x264_0.152.2854+gite9a5903-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE94y6B4F7sUmhHTOQafL8UW6nGZMFAlpPX84ACgkQafL8UW6n
GZOCTw//dPG1BbuJhSCiW4TlqLw+h0w/wb6sGhk/P5yv5RiEVuu55HKCrXxjn+2L
44gY/hdWoGAC7H8IJ/TdR6CFwIgk2XpD49xVU1MEGt5rsqQbPXwnds6JTYmNgFAY
g0O2gcILn2wRYKHPMXzH/W0he9TFlC/JjQBOkbmxlQDYhf2Zx5jxi920RvAuckXq
OKp30y5b4sWgaUhUEX42MKQHgnbWjpePAgLEnd2Zz0A2Dd99cndOaNF1KOdKlxmi
qu4nb5nuLKYoTj+qq5e6ou8I+T1fSKPEHVHEX6RyxQvrX4oenKypyPBL2EEPmKA6
H++IHOwFFcRhcJHuZ3BJSmCEUnI6JQFZ94sr3OiYA66EoFp0qYGo5WvXIGGRKTXr
R664fE/+XcU3ta1Pbgr6RgqGTWPu8eukf5ZeNfOwQRC3nc5WhBOxh0j9z6upK9Y/
IZJrs4fqOa5HUPjw9FETqVfVLrmJfd4qa5OGwmY4uCy2CcSfCKHTwEv1y23ZxTob
Pv15JJh5OAsOn5bJYqbhbIEfn7HbPCOxo4h390shZe3a/t7urcrw5xTJngrlfYpW
pmewYke5p4QI88MNjNQXXyV5UcxZJXBZK88OvPJi+5LsZISdpUj1lNbNntVnZruO
XhTmLL92mBbxZvGNXq01e+HvCEyyivEcvpWuAIPIk68VgAdEWTI=
=kVUT
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

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


Bug#887565: Please package python3-vlc

2018-01-18 Thread Sebastian Ramacher
Control: reassign -1 wnpp
Control: title -1 RFP: python-vlc -- Python bindings for VLC

On 2018-01-18 13:27:32, Mike Abrahall wrote:
> Package: src:vlc
> Version: 3.0.0~rc5-1
> Severity: wishlist
> 
> I have a Python app that uses VLC via the standard bindings.
> This is already upstream 
> https://git.videolan.org/?p=vlc/bindings/python.git;a=tree
> I can ship that file myself, but when VLC updates my app breaks.
> It would be much easier if this was just packaged alongside the VLC packages.

The Python bindings for VLC will require a new source package. Thus I am
reassigning this bug to wnpp. I am also adding Olivier to CC. He was interested
in packaging it.

Olivier, did you make any progress since our last conversation?

Cheers
-- 
Sebastian Ramacher


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

Processed (with 1 error): Re: Bug#887565: Please package python3-vlc

2018-01-18 Thread Debian Bug Tracking System
Processing control commands:

> reassign -1 wnpp
Bug #887565 [src:vlc] Please package python3-vlc
Bug reassigned from package 'src:vlc' to 'wnpp'.
No longer marked as found in versions vlc/3.0.0~rc5-1.
Ignoring request to alter fixed versions of bug #887565 to the same values 
previously set
> title -1 RFP: python-vlc -- Python bindings for VLC
Unknown command or malformed arguments to command.


-- 
887565: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=887565
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

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