[Python-modules-commits] r33488 - in packages/pytoml/trunk (10 files)
lucab at users.alioth.debian.org
lucab at users.alioth.debian.org
Mon Jul 27 16:22:01 UTC 2015
Date: Monday, July 27, 2015 @ 16:21:58
Author: lucab
Revision: 33488
Initial pytoml packaging
Added:
packages/pytoml/trunk/debian/
packages/pytoml/trunk/debian/changelog
packages/pytoml/trunk/debian/compat
packages/pytoml/trunk/debian/control
packages/pytoml/trunk/debian/copyright
packages/pytoml/trunk/debian/patches/
packages/pytoml/trunk/debian/rules
packages/pytoml/trunk/debian/source/
packages/pytoml/trunk/debian/source/format
packages/pytoml/trunk/debian/watch
Added: packages/pytoml/trunk/debian/changelog
===================================================================
--- packages/pytoml/trunk/debian/changelog (rev 0)
+++ packages/pytoml/trunk/debian/changelog 2015-07-27 16:21:58 UTC (rev 33488)
@@ -0,0 +1,5 @@
+pytoml (0.1.2-1) UNRELEASED; urgency=medium
+
+ * Initial upload to Debian (Closes: #793759)
+
+ -- Luca Bruno <lucab at debian.org> Sun, 26 Jul 2015 12:44:12 +0200
Added: packages/pytoml/trunk/debian/compat
===================================================================
--- packages/pytoml/trunk/debian/compat (rev 0)
+++ packages/pytoml/trunk/debian/compat 2015-07-27 16:21:58 UTC (rev 33488)
@@ -0,0 +1 @@
+9
Added: packages/pytoml/trunk/debian/control
===================================================================
--- packages/pytoml/trunk/debian/control (rev 0)
+++ packages/pytoml/trunk/debian/control 2015-07-27 16:21:58 UTC (rev 33488)
@@ -0,0 +1,40 @@
+Source: pytoml
+Section: python
+Priority: optional
+Maintainer: Luca Bruno <lucab at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9), python-all, python3-all, dh-python, python-setuptools, python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.4
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pytoml/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pytoml/trunk/
+Homepage: https://github.com/avakar/pytoml
+
+Package: python-pytoml
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: TOML parser and emitter for Python2
+ This project aims at being a specs-conforming and strict parser and writer
+ for TOML files. The library currently supports version 0.4.0 of the specs.
+ .
+ TOML aims to be a minimal configuration file format that is easy to read
+ due to obvious semantics. It is designed to map unambiguously to a hash
+ table and it is easy to parse into data structures in a wide variety of
+ languages.
+ .
+ This package contains the module for Python2 and runs with >= 2.7.
+
+Package: python3-pytoml
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: TOML parser and emitter for Python3
+ This project aims at being a specs-conforming and strict parser and writer
+ for TOML files. The library currently supports version 0.4.0 of the specs.
+ .
+ TOML aims to be a minimal configuration file format that is easy to read
+ due to obvious semantics. It is designed to map unambiguously to a hash
+ table and it is easy to parse into data structures in a wide variety of
+ languages.
+ .
+ This package contains the module for Python3 and runs with >= 3.4.
Added: packages/pytoml/trunk/debian/copyright
===================================================================
--- packages/pytoml/trunk/debian/copyright (rev 0)
+++ packages/pytoml/trunk/debian/copyright 2015-07-27 16:21:58 UTC (rev 33488)
@@ -0,0 +1,27 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pytoml
+Source: https://github.com/avakar/pytoml
+
+Files: *
+Copyright: (C) 2015 Martin Vejnár
+License: MIT
+
+Files: debian/*
+Copyright: (C) 2015 Luca Bruno <lucab at debian.org>
+License: MIT
+
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
Added: packages/pytoml/trunk/debian/rules
===================================================================
--- packages/pytoml/trunk/debian/rules (rev 0)
+++ packages/pytoml/trunk/debian/rules 2015-07-27 16:21:58 UTC (rev 33488)
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+
+PY2VERS := $(shell pyversions -s)
+PY3VERS := $(shell py3versions -s)
+
+%:
+ dh $@ --with python2,python3
+
+
+override_dh_auto_build:
+ set -e ; \
+ for python in $(PY2VERS) $(PY3VERS); do \
+ $$python setup.py build; \
+ done
+
+override_dh_auto_install:
+ set -e ; \
+ for python in $(PY2VERS); do \
+ $$python setup.py install --root=debian/python-pytoml --install-layout=deb; \
+ done
+ set -e ; \
+ for python in $(PY3VERS); do \
+ $$python setup.py install --root=debian/python3-pytoml --install-layout=deb; \
+ done
+
Property changes on: packages/pytoml/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/pytoml/trunk/debian/source/format
===================================================================
--- packages/pytoml/trunk/debian/source/format (rev 0)
+++ packages/pytoml/trunk/debian/source/format 2015-07-27 16:21:58 UTC (rev 33488)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/pytoml/trunk/debian/watch
===================================================================
--- packages/pytoml/trunk/debian/watch (rev 0)
+++ packages/pytoml/trunk/debian/watch 2015-07-27 16:21:58 UTC (rev 33488)
@@ -0,0 +1,2 @@
+version=3
+https://github.com/avakar/pytoml/releases /avakar/pytoml/archive/v(\d+\.\d+\.\d+)\.tar\.gz
More information about the Python-modules-commits
mailing list