Skip to content
Snippets Groups Projects
Commit 76b1d6d4 authored by nimrod's avatar nimrod
Browse files

Initial commit.

parents
No related branches found
No related tags found
No related merge requests found
~*
debian/python3-vlc
debian/python3-vlc.debhelper.log
debian/python3-vlc.links
debian/python3-vlc.postinst.debhelper
debian/python3-vlc.prerm.debhelper
debian/python3-vlc.substvars
*.pyc
python3-vlc (0.1) UNRELEASED; urgency=medium
* Initial release.
-- Nimrod Adar <nimrod@shore.co.il> Sun, 24 Aug 2014 19:32:03 +0300
9
Source: python3-vlc
Section: video
Priority: optional
Build-Depends: dh-python, python3 (>= 3.2), libvlc-dev
Maintainer: Nimrod Adar <nimrod@shore.co.il>
X-Python3-Version: >= 3.2
Standards-Version: 3.9.5.0
Package: python3-vlc
Depends: python3 (>= 3.2), libvlc5
Architecture: all
Description: Python binding for libvlc.
Files: *
Copyright: 2014 VideoLAN project
License: LGPL-2.1+
python3-vlc_0.1_all.deb video optional
vlc.py usr/lib/python3/dist-packages
#!/usr/bin/make -f
%:
cd source && ./generate.py /usr/include/vlc/ -o ../vlc.py
dh $@ --with python3
3.0 (native)
#!/usr/bin/env python
from fabric.api import task, local, settings
@task
def publish ():
build ()
for dist in ['wheezy', 'jessie', 'sid']:
local ('''reprepro includedeb ''' + dist + ''' ../python3-vlc_*.deb''')
@task
def build ():
local ('''dpkg-buildpackage''')
@task
def clean ():
with settings(warn_only=True):
local ('''rm vlc.py''')
local ('''rm ../python3-vlc_*''')
local ('''rm -r debian/python3-vlc.substvars debian/python3-vlc.prerm.debhelper\
debian/python3-vlc.postinst.debhelper debian/python3-vlc.debhelper.log\
debian/python3-vlc''')
source @ c3b73e03
Subproject commit c3b73e035f93f80d39c916e8ab262471f2aa03b2
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment