[Python-modules-commits] r11594 - in packages/uncertainties/trunk (8 files)

jwilk at users.alioth.debian.org jwilk at users.alioth.debian.org
Sat Feb 6 23:55:13 UTC 2010


    Date: Saturday, February 6, 2010 @ 23:55:11
  Author: jwilk
Revision: 11594

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/uncertainties/trunk/debian/
  packages/uncertainties/trunk/debian/changelog
  packages/uncertainties/trunk/debian/clean
  packages/uncertainties/trunk/debian/compat
  packages/uncertainties/trunk/debian/control
  packages/uncertainties/trunk/debian/copyright
  packages/uncertainties/trunk/debian/rules
  packages/uncertainties/trunk/debian/watch


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

Added: packages/uncertainties/trunk/debian/changelog
===================================================================
--- packages/uncertainties/trunk/debian/changelog	                        (rev 0)
+++ packages/uncertainties/trunk/debian/changelog	2010-02-06 23:55:11 UTC (rev 11594)
@@ -0,0 +1,5 @@
+uncertainties (1.2.2-1) UNRELEASED; urgency=low
+
+  * Initial release (closes: #566485).
+
+ -- Jakub Wilk <jwilk at debian.org>  Sat, 06 Feb 2010 23:13:06 +0100

Added: packages/uncertainties/trunk/debian/clean
===================================================================
--- packages/uncertainties/trunk/debian/clean	                        (rev 0)
+++ packages/uncertainties/trunk/debian/clean	2010-02-06 23:55:11 UTC (rev 11594)
@@ -0,0 +1 @@
+changelog

Added: packages/uncertainties/trunk/debian/compat
===================================================================
--- packages/uncertainties/trunk/debian/compat	                        (rev 0)
+++ packages/uncertainties/trunk/debian/compat	2010-02-06 23:55:11 UTC (rev 11594)
@@ -0,0 +1 @@
+7

Added: packages/uncertainties/trunk/debian/control
===================================================================
--- packages/uncertainties/trunk/debian/control	                        (rev 0)
+++ packages/uncertainties/trunk/debian/control	2010-02-06 23:55:11 UTC (rev 11594)
@@ -0,0 +1,23 @@
+Source: uncertainties
+Maintainer: Jakub Wilk <jwilk at debian.org>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 7.0.50~), python-support (>= 0.90), python (>= 2.5)
+Standards-Version: 3.8.4
+XS-Python-Version: >= 2.5
+Homepage: http://pypi.python.org/pypi/uncertainties/
+
+Package: python-uncertainties
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Python module for calculations with uncertainties
+ uncertainties is a Python module, which allows calculations such as
+ .
+   (0.2 +/- 0.01) * 2 = 0.4 +/- 0.02
+ .
+ to be performed transparently; much more complex mathematical expressions
+ involving numbers with uncertainties can also be evaluated transparently.
+ .
+ Correlations between expressions are correctly taken into account; x-x is
+ thus exactly zero, for instance. The uncertainties produced by this module
+ are what is predicted by error propagation theory.

Added: packages/uncertainties/trunk/debian/copyright
===================================================================
--- packages/uncertainties/trunk/debian/copyright	                        (rev 0)
+++ packages/uncertainties/trunk/debian/copyright	2010-02-06 23:55:11 UTC (rev 11594)
@@ -0,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=135
+Name: uncertainties
+Maintainer: Eric O. LEBIGOT (EOL) <eric.lebigot at normalesup.org>
+Source: http://pypi.python.org/pypi/uncertainties/
+
+Files: *
+Copyright: 2009, Eric O. LEBIGOT (EOL) <eric.lebigot at normalesup.org>
+License: GPL-2
+ This software is released under a dual license.  (1) The GNU General
+ Public License version 2.  (2) Any other license, as long as it is
+ obtained from the original author.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ version 2 can be found in the /usr/share/common-licenses/GPL-2 file.
+
+Files: debian/*
+Copyright: 2010, Jakub Wilk
+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.

Added: packages/uncertainties/trunk/debian/rules
===================================================================
--- packages/uncertainties/trunk/debian/rules	                        (rev 0)
+++ packages/uncertainties/trunk/debian/rules	2010-02-06 23:55:11 UTC (rev 11594)
@@ -0,0 +1,24 @@
+#!/usr/bin/make -f
+
+.PHONY: override_dh_pysupport
+override_dh_pysupport:
+# For some reason *.egg-info differ between Python versions.
+# Let's leave only ony copy.
+	find -name '*.egg-info' | tail -n +2 | xargs -n1 cp -f `find -name '*.egg-info' | head -n 1`
+	dh_pysupport
+
+.PHONY: override_dh_installchangelogs
+override_dh_installchangelogs:
+	grep -A 1000 'Version history' PKG-INFO \
+	| tail -n +3 \
+	| sed -e 's/^ *//; s/  */ /g; /^ *$$/ q; s/$$/\n/' \
+	| fmt > changelog
+	dh_installchangelogs
+
+.PHONY: build build-arch build-indep binary binary-indep clean
+build build-indep binary binary-indep clean:
+	dh $(@)
+# In order not to confuse lintian, *-arch are separate targets:
+build-arch binary-arch:
+
+# vim:ts=4 sw=4 noet


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

Added: packages/uncertainties/trunk/debian/watch
===================================================================
--- packages/uncertainties/trunk/debian/watch	                        (rev 0)
+++ packages/uncertainties/trunk/debian/watch	2010-02-06 23:55:11 UTC (rev 11594)
@@ -0,0 +1,2 @@
+version=3
+http://code.google.com/u/uncertainties/downloads/list http://python-pipeline.googlecode.com/files/uncertainties-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list