[Python-modules-commits] r5800 - in packages/python-gmpy/trunk (8 files)
certik-guest at users.alioth.debian.org
certik-guest at users.alioth.debian.org
Wed Jul 2 07:55:46 UTC 2008
Date: Wednesday, July 2, 2008 @ 07:55:44
Author: certik-guest
Revision: 5800
initial commit
Added:
packages/python-gmpy/trunk/debian/
packages/python-gmpy/trunk/debian/changelog
packages/python-gmpy/trunk/debian/compat
packages/python-gmpy/trunk/debian/control
packages/python-gmpy/trunk/debian/copyright
packages/python-gmpy/trunk/debian/docs
packages/python-gmpy/trunk/debian/rules
packages/python-gmpy/trunk/debian/watch
Property changes on: packages/python-gmpy/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: packages/python-gmpy/trunk/debian/changelog
===================================================================
--- packages/python-gmpy/trunk/debian/changelog (rev 0)
+++ packages/python-gmpy/trunk/debian/changelog 2008-07-02 07:55:44 UTC (rev 5800)
@@ -0,0 +1,19 @@
+python-gmpy (1.02~1.dfsg.1-1) unstable; urgency=low
+
+ * New upstream release
+ * Bump Standards-Version to 3.7.3 (no changes needed)
+
+ -- Martin Kelly <aomighty at gmail.com> Sat, 29 Dec 2007 21:27:19 -0800
+
+python-gmpy (1.01.dfsg.1-1) unstable; urgency=medium
+
+ * Modified the upstream sources to include a COPYING license file, since the
+ upstream author did not include one (Closes: #427005)
+
+ -- Martin Kelly <aomighty at gmail.com> Sat, 02 Jun 2007 11:40:18 -0700
+
+python-gmpy (1.01-1) unstable; urgency=low
+
+ * Initial release (Closes: #299723)
+
+ -- Martin Kelly <aomighty at gmail.com> Fri, 18 May 2007 21:46:23 -0700
Added: packages/python-gmpy/trunk/debian/compat
===================================================================
--- packages/python-gmpy/trunk/debian/compat (rev 0)
+++ packages/python-gmpy/trunk/debian/compat 2008-07-02 07:55:44 UTC (rev 5800)
@@ -0,0 +1 @@
+5
Added: packages/python-gmpy/trunk/debian/control
===================================================================
--- packages/python-gmpy/trunk/debian/control (rev 0)
+++ packages/python-gmpy/trunk/debian/control 2008-07-02 07:55:44 UTC (rev 5800)
@@ -0,0 +1,19 @@
+Source: python-gmpy
+Section: python
+Priority: optional
+Maintainer: Martin Kelly <aomighty at gmail.com>
+Build-Depends: debhelper (>= 5.0.38), python-all-dev (>= 2.3.5-11), python-central (>= 0.5.6), libgmp3-dev (>= 4.0.1)
+Standards-Version: 3.7.3
+Homepage: http://gmpy.sourceforge.net/
+XS-Python-Version: >= 2.3
+
+Package: python-gmpy
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}
+Provides: ${python:Provides}
+XB-Python-Version: ${python:Versions}
+Description: Interfaces GMP to Python for fast, unbound-precision computations
+ gmpy is a C-coded Python extension module that wraps the GMP library to
+ provide to Python code fast multiprecision arithmetic (integer, rational, and
+ float), random number generation, advanced number-theoretical functions, and
+ more.
Added: packages/python-gmpy/trunk/debian/copyright
===================================================================
--- packages/python-gmpy/trunk/debian/copyright (rev 0)
+++ packages/python-gmpy/trunk/debian/copyright 2008-07-02 07:55:44 UTC (rev 5800)
@@ -0,0 +1,33 @@
+This package was debianized by Martin Kelly <aomighty at gmail.com> on
+Fri, 18 May 2007 21:46:23 -0700.
+
+It was downloaded from http://gmpy.sourceforge.net/
+
+Upstream Author: Alex Martelli <aleaxit at gmail.com>
+
+Copyright: 2000-2007 Alex Martelli
+
+License:
+
+ This package is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+src/pysymbolicext.c and src/pysymbolicext.h files are
+Copyright 2000 by Pearu Peterson <pearu at ioc.ee>
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+The Debian packaging is (C) 2007-2008 Martin Kelly <aomighty at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: packages/python-gmpy/trunk/debian/docs
===================================================================
--- packages/python-gmpy/trunk/debian/docs (rev 0)
+++ packages/python-gmpy/trunk/debian/docs 2008-07-02 07:55:44 UTC (rev 5800)
@@ -0,0 +1 @@
+doc/gmpydoc.txt
Added: packages/python-gmpy/trunk/debian/rules
===================================================================
--- packages/python-gmpy/trunk/debian/rules (rev 0)
+++ packages/python-gmpy/trunk/debian/rules 2008-07-02 07:55:44 UTC (rev 5800)
@@ -0,0 +1,44 @@
+#!/usr/bin/make -f
+
+PYVERS=$(shell pyversions -vr)
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f *-stamp
+ rm -rf build*
+ find . -name *\.py[co] -exec rm {} \;
+ dh_clean
+
+build: $(PYVERS:%=build-python%)
+ touch $@
+
+build-python%:
+ dh_testdir
+ python$* setup.py build
+ touch $@
+
+install: build $(PYVERS:%=install-python%)
+
+install-python%:
+ python$* setup.py install --root $(CURDIR)/debian/python-gmpy/
+
+binary-indep: build install
+
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_pycentral
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
Property changes on: packages/python-gmpy/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: packages/python-gmpy/trunk/debian/watch
===================================================================
--- packages/python-gmpy/trunk/debian/watch (rev 0)
+++ packages/python-gmpy/trunk/debian/watch 2008-07-02 07:55:44 UTC (rev 5800)
@@ -0,0 +1,4 @@
+# Compulsory line, this is a version 3 file
+version=3
+opts="uversionmangle=s/-/~/" \
+http://code.google.com/p/gmpy/downloads/list http://gmpy.googlecode.com/files/gmpy-(.*).zip
More information about the Python-modules-commits
mailing list