[Python-modules-commits] r22341 - in packages/python-myconnpy/trunk (9 files)

anoteng-guest at users.alioth.debian.org anoteng-guest at users.alioth.debian.org
Wed Jun 27 21:54:54 UTC 2012


    Date: Wednesday, June 27, 2012 @ 21:54:52
  Author: anoteng-guest
Revision: 22341

[svn-inject] Applying Debian modifications (0.3.2-1) to trunk

Added:
  packages/python-myconnpy/trunk/debian/
  packages/python-myconnpy/trunk/debian/changelog
  packages/python-myconnpy/trunk/debian/compat
  packages/python-myconnpy/trunk/debian/control
  packages/python-myconnpy/trunk/debian/copyright
  packages/python-myconnpy/trunk/debian/rules
  packages/python-myconnpy/trunk/debian/source/
  packages/python-myconnpy/trunk/debian/source/format
  packages/python-myconnpy/trunk/debian/watch


Property changes on: packages/python-myconnpy/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-myconnpy/trunk/debian/changelog
===================================================================
--- packages/python-myconnpy/trunk/debian/changelog	                        (rev 0)
+++ packages/python-myconnpy/trunk/debian/changelog	2012-06-27 21:54:52 UTC (rev 22341)
@@ -0,0 +1,5 @@
+python-myconnpy (0.3.2-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #XXXXXX)
+
+ -- Andreas Noteng <andreas at noteng.no>  Wed, 27 Jun 2012 22:20:00 +0200

Added: packages/python-myconnpy/trunk/debian/compat
===================================================================
--- packages/python-myconnpy/trunk/debian/compat	                        (rev 0)
+++ packages/python-myconnpy/trunk/debian/compat	2012-06-27 21:54:52 UTC (rev 22341)
@@ -0,0 +1 @@
+5

Added: packages/python-myconnpy/trunk/debian/control
===================================================================
--- packages/python-myconnpy/trunk/debian/control	                        (rev 0)
+++ packages/python-myconnpy/trunk/debian/control	2012-06-27 21:54:52 UTC (rev 22341)
@@ -0,0 +1,28 @@
+Source: python-myconnpy
+Section: python
+Priority: optional
+Maintainer: Andreas Noteng <andreas at noteng.no>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7.0.50~), python-all, python3-all
+Standards-Version: 3.9.3
+X-Python-Version: >= 2.4
+X-Python3-Version: >= 3.0
+Homepage: http://forge.mysql.com/projects/project.php?id=302
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-myconnpy/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-myconnpy/trunk/
+
+Package: python-myconnpy
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: module for connecting to MySQL databases
+ MySQL Connector/Python is implementing the MySQL Client/Server protocol
+ completely in Python. This means you don't have to compile anything or MySQL
+ (client library) doesn't even have to be installed on the machine.
+
+Package: python3-myconnpy
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: module for connecting to MySQL databases
+ MySQL Connector/Python is implementing the MySQL Client/Server protocol
+ completely in Python. This means you don't have to compile anything or MySQL
+ (client library) doesn't even have to be installed on the machine.

Added: packages/python-myconnpy/trunk/debian/copyright
===================================================================
--- packages/python-myconnpy/trunk/debian/copyright	                        (rev 0)
+++ packages/python-myconnpy/trunk/debian/copyright	2012-06-27 21:54:52 UTC (rev 22341)
@@ -0,0 +1,54 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: MySQL Connector/Python
+Upstream-Contact: Geert Vanderkelen <geert at vanderkelen.org>
+Source: https://launchpad.net/myconnpy
+
+Files: *
+Copyright: 2009,2010 Oracle
+License: GPL-2 with FLOSS License Exception
+
+Files: debian/*
+Copyright: 2012 Andreas Noteng <andreas at noteng.no>
+License: GPL-3+
+
+License: GPL-2 with FLOSS License Exception
+ This program is free software; you can redistribute it
+ and/or modify it under the terms of the GNU General Public
+ License as published by the Free Software Foundation;
+ version 2 of the License.
+ .
+ There are special exceptions to the terms
+ and conditions of the GPL as it is applied to this software, see the FLOSS
+ License Exception. http://www.mysql.com/about/legal/licensing/foss-exception/
+ .
+ This program 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 General Public License for more
+ details.
+ .
+ You should have received a copy of the GNU 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
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
+
+License: GPL-3+
+     This program is free software: you can redistribute it and/or modify
+     it under the terms of the GNU General Public License as published by
+     the Free Software Foundation, either version 3 of the License, or
+     (at your option) any later version.
+     .
+     This program 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 General Public License for more details.
+     .
+     You should have received a copy of the GNU General Public License
+     along with this program.  If not, see <http://www.gnu.org/licenses/>.
+     .
+     On Debian systems, the full text of this license can be found in
+     /usr/share/common-licenses/GPL-3.

Added: packages/python-myconnpy/trunk/debian/rules
===================================================================
--- packages/python-myconnpy/trunk/debian/rules	                        (rev 0)
+++ packages/python-myconnpy/trunk/debian/rules	2012-06-27 21:54:52 UTC (rev 22341)
@@ -0,0 +1,29 @@
+#!/usr/bin/make -f
+
+PYVERS := $(shell pyversions -r)
+PY3VERS := $(shell py3versions -r)
+
+%:
+	dh $@ --with python2,python3
+
+override_dh_auto_build:
+	set -ex; \
+	for py in $(PYVERS) $(PY3VERS); do \
+		$$py setup.py build; \
+	done
+
+override_dh_auto_install:
+	set -ex; \
+	for py in $(PYVERS); do \
+		$$py setup.py install --skip-build --root debian/python-myconnpy \
+			--install-layout deb; \
+	done
+	set -ex; \
+	for py in $(PY3VERS); do \
+		$$py setup.py install --skip-build --root debian/python3-myconnpy \
+			--install-layout deb; \
+	done
+
+override_dh_auto_clean:
+	rm -rf build *.egg.info
+	dh_auto_clean


Property changes on: packages/python-myconnpy/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-myconnpy/trunk/debian/source/format
===================================================================
--- packages/python-myconnpy/trunk/debian/source/format	                        (rev 0)
+++ packages/python-myconnpy/trunk/debian/source/format	2012-06-27 21:54:52 UTC (rev 22341)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-myconnpy/trunk/debian/watch
===================================================================
--- packages/python-myconnpy/trunk/debian/watch	                        (rev 0)
+++ packages/python-myconnpy/trunk/debian/watch	2012-06-27 21:54:52 UTC (rev 22341)
@@ -0,0 +1,2 @@
+version=3
+http://launchpad.net/myconnpy/+download https://launchpad.net/myconnpy/.*/.*/mysql-connector-python-(.*)-devel\.tar\.gz




More information about the Python-modules-commits mailing list