[Python-modules-commits] [python-measurement] 05/05: change version to 1.8.0-1 (unstable) Initial release (Closes: #824664). change urgency to low

Michael Fladischer fladi at moszumanska.debian.org
Wed May 18 15:01:30 UTC 2016


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch master
in repository python-measurement.

commit 46b5ed604aa64824fb25f40443ee9f9ff2c625c2
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Wed May 18 17:00:11 2016 +0200

    change version to 1.8.0-1 (unstable)
    Initial release (Closes: #824664).
    change urgency to low
---
 debian/changelog                       |  5 +++
 debian/clean                           |  1 +
 debian/compat                          |  1 +
 debian/control                         | 79 ++++++++++++++++++++++++++++++++++
 debian/copyright                       | 31 +++++++++++++
 debian/python-measurement-doc.doc-base |  9 ++++
 debian/python-measurement-doc.docs     |  1 +
 debian/python-measurement.docs         |  1 +
 debian/python3-measurement.docs        |  1 +
 debian/rules                           | 17 ++++++++
 debian/watch                           |  3 ++
 11 files changed, 149 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..065ddf7
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-measurement (1.8.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #824664).
+
+ -- Michael Fladischer <fladi at debian.org>  Wed, 18 May 2016 17:00:06 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..ed1254d
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+measurement.egg-info/SOURCES.txt
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..be4114c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,79 @@
+Source: python-measurement
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-nose,
+               python-setuptools,
+               python-six,
+               python-sympy,
+               python3-all,
+               python3-nose,
+               python3-setuptools,
+               python3-six,
+               python3-sphinx,
+               python3-sympy
+Standards-Version: 3.9.8
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-measurement.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-measurement.git
+Homepage: https://github.com/coddingtonbear/python-measurement
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.4
+
+Package: python-measurement
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: unit-aware measurement objects (Python2 version)
+ Easily use and manipulate unit-aware measurement objects in Python.
+ .
+ django.contrib.gis.measure has these wonderful Distance objects that can be
+ used not only for storing a unit-aware distance measurement, but also for
+ converting between different units and adding/subtracting these objects from
+ one another.
+ .
+ This module not only provides those Distance and Area measurement objects
+ (courtesy of Django), but also other measurements including Weight, Volume, and
+ Temperature.
+ .
+ This package contains the Python 2 version of the library.
+
+Package: python3-measurement
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: unit-aware measurement objects (Python3 version)
+ Easily use and manipulate unit-aware measurement objects in Python.
+ .
+ django.contrib.gis.measure has these wonderful Distance objects that can be
+ used not only for storing a unit-aware distance measurement, but also for
+ converting between different units and adding/subtracting these objects from
+ one another.
+ .
+ This module not only provides those Distance and Area measurement objects
+ (courtesy of Django), but also other measurements including Weight, Volume, and
+ Temperature.
+ .
+ This package contains the Python 3 version of the library.
+
+Package: python-measurement-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends},
+         ${sphinxdoc:Depends}
+Description: unit-aware measurement objects (Documentation)
+ Easily use and manipulate unit-aware measurement objects in Python.
+ .
+ django.contrib.gis.measure has these wonderful Distance objects that can be
+ used not only for storing a unit-aware distance measurement, but also for
+ converting between different units and adding/subtracting these objects from
+ one another.
+ .
+ This module not only provides those Distance and Area measurement objects
+ (courtesy of Django), but also other measurements including Weight, Volume, and
+ Temperature.
+ .
+ This package contains the documentation.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..6e87d10
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-measurement
+Upstream-Contact: Adam Coddington <me at adamcoddington.net>
+Source: https://github.com/coddingtonbear/python-measurement
+
+Files: *
+Copyright: 2014, Adam Coddington <me at adamcoddington.net>
+License: Expat
+
+Files: debian/*
+Copyright: 2016, Fladischer Michael <fladi at debian.org>
+License: Expat
+
+License: Expat
+ 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, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ 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.
diff --git a/debian/python-measurement-doc.doc-base b/debian/python-measurement-doc.doc-base
new file mode 100644
index 0000000..ac08fcc
--- /dev/null
+++ b/debian/python-measurement-doc.doc-base
@@ -0,0 +1,9 @@
+Document: python-python-measurement-doc
+Title: python-measurement Documentation
+Author: Adam Coddington <me at adamcoddington.net>
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-measurement-doc/html/index.html
+Files: /usr/share/doc/python-measurement-doc/html/*.html
+       /usr/share/doc/python-measurement-doc/html/topics/*.html
diff --git a/debian/python-measurement-doc.docs b/debian/python-measurement-doc.docs
new file mode 100644
index 0000000..2981a3c
--- /dev/null
+++ b/debian/python-measurement-doc.docs
@@ -0,0 +1 @@
+docs/.build/html
diff --git a/debian/python-measurement.docs b/debian/python-measurement.docs
new file mode 100644
index 0000000..7239029
--- /dev/null
+++ b/debian/python-measurement.docs
@@ -0,0 +1 @@
+readme.rst
diff --git a/debian/python3-measurement.docs b/debian/python3-measurement.docs
new file mode 100644
index 0000000..7239029
--- /dev/null
+++ b/debian/python3-measurement.docs
@@ -0,0 +1 @@
+readme.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..66a1471
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=measurement
+
+%:
+	dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
+
+override_dh_auto_build:
+	dh_auto_build
+	PYTHONPATH=. sphinx-build -b html -d docs/.build/.doctrees -N docs docs/.build/html
+
+override_dh_clean:
+	dh_clean
+	rm -rf docs/.build
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..aa62dc8
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/measurement/measurement-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-measurement.git



More information about the Python-modules-commits mailing list