[Python-modules-commits] r29232 - in packages/python-demjson/trunk/debian (5 files)
takaki at users.alioth.debian.org
takaki at users.alioth.debian.org
Fri Jun 6 08:37:26 UTC 2014
Date: Friday, June 6, 2014 @ 08:37:25
Author: takaki
Revision: 29232
Add python-3 support.
Modified:
packages/python-demjson/trunk/debian/changelog
packages/python-demjson/trunk/debian/control
packages/python-demjson/trunk/debian/copyright
packages/python-demjson/trunk/debian/docs
packages/python-demjson/trunk/debian/rules
Modified: packages/python-demjson/trunk/debian/changelog
===================================================================
--- packages/python-demjson/trunk/debian/changelog 2014-06-05 20:00:18 UTC (rev 29231)
+++ packages/python-demjson/trunk/debian/changelog 2014-06-06 08:37:25 UTC (rev 29232)
@@ -1,10 +1,16 @@
-python-demjson (1.6-3) UNRELEASED; urgency=low
+python-demjson (2.0.1-1) UNRELEASED; urgency=low
+ [ Jakub Wilk ]
* Add Vcs-* fields.
* Fix a typo in the package description.
- -- Jakub Wilk <jwilk at debian.org> Fri, 21 Jun 2013 19:55:25 +0200
+ [ TANIGUCHI Takaki ]
+ * New upstream release
+ * Add support for Python-3
+ * Bump Standards-Version to 3.9.5.
+ -- TANIGUCHI Takaki <takaki at debian.org> Fri, 06 Jun 2014 16:10:44 +0900
+
python-demjson (1.6-2) unstable; urgency=low
* Team upload.
Modified: packages/python-demjson/trunk/debian/control
===================================================================
--- packages/python-demjson/trunk/debian/control 2014-06-05 20:00:18 UTC (rev 29231)
+++ packages/python-demjson/trunk/debian/control 2014-06-06 08:37:25 UTC (rev 29232)
@@ -3,10 +3,12 @@
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: TANIGUCHI Takaki <takaki at debian.org>
-Build-Depends: debhelper (>= 7),
- python-all (>= 2.6.6-3),
- python-setuptools
-Standards-Version: 3.9.2
+Build-Depends: debhelper (>= 7)
+ , python-all (>= 2.6.6-3)
+ , python3-all
+ , python-setuptools
+ , python3-setuptools
+Standards-Version: 3.9.5
Homepage: http://deron.meranda.us/python/demjson/
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-demjson/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-demjson/trunk/
@@ -15,8 +17,16 @@
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
Provides: ${python:Provides}
-Breaks: ${python:Breaks}
Description: encoder, decoder, and lint/validator for JSON in Python
demjson is a comprehensive Python language binding to the JSON
language-independent data encoding standard, which is often used as a
simpler substitute for XML in AJAX-based web applications.
+
+Package: python3-demjson
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Provides: ${python:Provides}
+Description: encoder, decoder, and lint/validator for JSON in Python
+ demjson is a comprehensive Python language binding to the JSON
+ language-independent data encoding standard, which is often used as a
+ simpler substitute for XML in AJAX-based web applications.
Modified: packages/python-demjson/trunk/debian/copyright
===================================================================
--- packages/python-demjson/trunk/debian/copyright 2014-06-05 20:00:18 UTC (rev 29231)
+++ packages/python-demjson/trunk/debian/copyright 2014-06-06 08:37:25 UTC (rev 29232)
@@ -1,4 +1,4 @@
-Format: http://dep.debian.net/deps/dep5
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: demjson
Source: http://pypi.python.org/pypi/demjson/
@@ -26,3 +26,4 @@
.
On Debian systems, the complete text of the GNU Lesser General
Public License version 3 can be found in `/usr/share/common-licenses/LGPL-3'.
+
Modified: packages/python-demjson/trunk/debian/docs
===================================================================
--- packages/python-demjson/trunk/debian/docs 2014-06-05 20:00:18 UTC (rev 29231)
+++ packages/python-demjson/trunk/debian/docs 2014-06-06 08:37:25 UTC (rev 29232)
@@ -1,5 +1,2 @@
-AUTHORS.txt
-CHANGES.txt
-NEWS.txt
+README.md
README.txt
-THANKS.txt
Modified: packages/python-demjson/trunk/debian/rules
===================================================================
--- packages/python-demjson/trunk/debian/rules 2014-06-05 20:00:18 UTC (rev 29231)
+++ packages/python-demjson/trunk/debian/rules 2014-06-06 08:37:25 UTC (rev 29232)
@@ -1,13 +1,12 @@
#!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+export PYBUILD_DESTDIR_python2=debian/python-demjson/
+export PYBUILD_DESTDIR_python3=debian/python3-demjson/
%:
- dh $@ --with python2
+ dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_install:
+ dh_install
+ mv $(CURDIR)/debian/python3-demjson/usr/bin/jsonlint \
+ $(CURDIR)/debian/python3-demjson/usr/bin/jsonlint3
More information about the Python-modules-commits
mailing list