[Python-modules-commits] r26517 - in packages/enzyme/trunk (11 files)

emillon-guest at users.alioth.debian.org emillon-guest at users.alioth.debian.org
Sun Nov 24 14:45:21 UTC 2013


    Date: Sunday, November 24, 2013 @ 14:45:20
  Author: emillon-guest
Revision: 26517

[svn-inject] Application des modifications Debian (0.4.0-1) pour le tronc

Added:
  packages/enzyme/trunk/debian/
  packages/enzyme/trunk/debian/changelog
  packages/enzyme/trunk/debian/compat
  packages/enzyme/trunk/debian/control
  packages/enzyme/trunk/debian/copyright
  packages/enzyme/trunk/debian/docs
  packages/enzyme/trunk/debian/rules
  packages/enzyme/trunk/debian/source/
  packages/enzyme/trunk/debian/source/format
  packages/enzyme/trunk/debian/source/options
  packages/enzyme/trunk/debian/watch


Property changes on: packages/enzyme/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/enzyme/trunk/debian/changelog
===================================================================
--- packages/enzyme/trunk/debian/changelog	                        (rev 0)
+++ packages/enzyme/trunk/debian/changelog	2013-11-24 14:45:20 UTC (rev 26517)
@@ -0,0 +1,5 @@
+enzyme (0.4.0-1) unstable; urgency=low
+
+  * Initial packaging.
+
+ -- Oxan van Leeuwen <oxan at oxanvanleeuwen.nl>  Sun, 10 Nov 2013 16:46:25 +0100

Added: packages/enzyme/trunk/debian/compat
===================================================================
--- packages/enzyme/trunk/debian/compat	                        (rev 0)
+++ packages/enzyme/trunk/debian/compat	2013-11-24 14:45:20 UTC (rev 26517)
@@ -0,0 +1 @@
+9

Added: packages/enzyme/trunk/debian/control
===================================================================
--- packages/enzyme/trunk/debian/control	                        (rev 0)
+++ packages/enzyme/trunk/debian/control	2013-11-24 14:45:20 UTC (rev 26517)
@@ -0,0 +1,34 @@
+Source: enzyme
+Section: python
+Priority: extra
+Maintainer: Oxan van Leeuwen <oxan at oxanvanleeuwen.nl>
+Build-Depends: debhelper (>= 9), dh-python, python-all (>= 2.6.6-6~), python-setuptools, python3-all, python3-setuptools
+Standards-Version: 3.9.5
+Homepage: https://github.com/Diaoul/enzyme
+Vcs-Git: https://github.com/oxan/enzyme-debian.git
+Vcs-Browser: https://github.com/oxan/enzyme-debian
+X-Python-Version: >= 2.6
+
+Package: python-enzyme
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: video metadata parser (Python 2)
+ Python module to parse metadata in video files.
+ .
+ enzyme extracts metadata such as the type and encoding of video streams, type,
+ encoding and language of audio streams, chapters, tags and subtitle tracks
+ from video files.
+ .
+ This package contains the Python 2 module.
+
+Package: python3-enzyme
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: video metadata parser (Python 3)
+ Python module to parse metadata in video files.
+ .
+ enzyme extracts metadata such as the type and encoding of video streams, type,
+ encoding and language of audio streams, chapters, tags and subtitle tracks
+ from video files.
+ .
+ This package contains the Python 3 module.

Added: packages/enzyme/trunk/debian/copyright
===================================================================
--- packages/enzyme/trunk/debian/copyright	                        (rev 0)
+++ packages/enzyme/trunk/debian/copyright	2013-11-24 14:45:20 UTC (rev 26517)
@@ -0,0 +1,28 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: enzyme
+Upstream-Contact: https://github.com/Diaoul/enzyme
+Source: http://pypi.python.org/pypi/enzyme
+
+Files: *
+Copyright: 2013 Antoine Bertin <diaoulael at gmail.com>
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2012, 2013 Oxan van Leeuwen <oxan at oxanvanleeuwen.nl>
+License: Apache-2.0
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+     http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the full text of the Apache License version 2 can
+ be found in /usr/share/common-licenses/Apache-2.0.
\ No newline at end of file

Added: packages/enzyme/trunk/debian/docs
===================================================================
--- packages/enzyme/trunk/debian/docs	                        (rev 0)
+++ packages/enzyme/trunk/debian/docs	2013-11-24 14:45:20 UTC (rev 26517)
@@ -0,0 +1 @@
+README.rst
\ No newline at end of file

Added: packages/enzyme/trunk/debian/rules
===================================================================
--- packages/enzyme/trunk/debian/rules	                        (rev 0)
+++ packages/enzyme/trunk/debian/rules	2013-11-24 14:45:20 UTC (rev 26517)
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+export PYBUILD_NAME=enzyme
+# The tests require the download of a 180MB file, which isn't allowed during
+# Debian package build, so let's disable it.
+export PYBUILD_DISABLE=test
+
+%:
+	dh $@ --with=python2,python3 --buildsystem=pybuild
+
+override_dh_installchangelogs:
+	dh_installchangelogs HISTORY.rst
+
+# Keep this override so that the tests can be run simply by commenting the
+# export line above. pybuild sets the proxy to a non-existent one by default,
+# to avoid downloads during the package build. That's fine, but we only run
+# the tests manually.
+# Note: add python-yaml, python-requests, python3-yaml and python3-requests
+# to Build-Depends if you want to run the tests.
+override_dh_auto_test:
+	http_proxy='' https_proxy='' dh_auto_test
\ No newline at end of file


Property changes on: packages/enzyme/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/enzyme/trunk/debian/source/format
===================================================================
--- packages/enzyme/trunk/debian/source/format	                        (rev 0)
+++ packages/enzyme/trunk/debian/source/format	2013-11-24 14:45:20 UTC (rev 26517)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/enzyme/trunk/debian/source/options
===================================================================
--- packages/enzyme/trunk/debian/source/options	                        (rev 0)
+++ packages/enzyme/trunk/debian/source/options	2013-11-24 14:45:20 UTC (rev 26517)
@@ -0,0 +1 @@
+extend-diff-ignore = "enzyme/tests/test_(mkv|parsers)/(.*)"
\ No newline at end of file

Added: packages/enzyme/trunk/debian/watch
===================================================================
--- packages/enzyme/trunk/debian/watch	                        (rev 0)
+++ packages/enzyme/trunk/debian/watch	2013-11-24 14:45:20 UTC (rev 26517)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/e/enzyme/enzyme-(.*).tar.gz




More information about the Python-modules-commits mailing list