[Python-modules-commits] r27966 - in packages/python-jsonpify/trunk (9 files)

vasudev-guest at users.alioth.debian.org vasudev-guest at users.alioth.debian.org
Thu Feb 27 18:47:28 UTC 2014


    Date: Thursday, February 27, 2014 @ 18:47:28
  Author: vasudev-guest
Revision: 27966

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

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


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

Added: packages/python-jsonpify/trunk/debian/changelog
===================================================================
--- packages/python-jsonpify/trunk/debian/changelog	                        (rev 0)
+++ packages/python-jsonpify/trunk/debian/changelog	2014-02-27 18:47:28 UTC (rev 27966)
@@ -0,0 +1,7 @@
+python-jsonpify (1.1-1) unstable; urgency=medium
+
+  * Initial release.
+    Closes: bug#740272.
+
+ -- Vasudev Kamath <kamathvasudev at gmail.com>  Thu, 27 Feb 2014 23:09:01 +0530
+

Added: packages/python-jsonpify/trunk/debian/compat
===================================================================
--- packages/python-jsonpify/trunk/debian/compat	                        (rev 0)
+++ packages/python-jsonpify/trunk/debian/compat	2014-02-27 18:47:28 UTC (rev 27966)
@@ -0,0 +1 @@
+9
\ No newline at end of file

Added: packages/python-jsonpify/trunk/debian/control
===================================================================
--- packages/python-jsonpify/trunk/debian/control	                        (rev 0)
+++ packages/python-jsonpify/trunk/debian/control	2014-02-27 18:47:28 UTC (rev 27966)
@@ -0,0 +1,26 @@
+Source: python-jsonpify
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Vasudev Kamath <kamathvasudev at gmail.com>,
+Build-Depends: debhelper (>= 9~),
+ python,
+ python-setuptools,
+ python-flask
+Standards-Version: 3.9.5
+Homepage: https://github.com/wcdolphin/flask-jsonpify
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-jsonpify/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-jsonpify/trunk/
+X-Python-Version: >= 2.6
+
+Package: python-jsonpify
+Architecture: all
+Depends: ${python:Depends},
+ ${misc:Depends}
+Description: extension to Flask's core jsonify function
+ This package provides extension to Flask's core jsonify function,
+ returning JSON padded response when a callback is specified as
+ request's argument.
+ .
+ Its usage and implementation is same as flask.jsonify differing only
+ when request has a callback specified.
\ No newline at end of file

Added: packages/python-jsonpify/trunk/debian/copyright
===================================================================
--- packages/python-jsonpify/trunk/debian/copyright	                        (rev 0)
+++ packages/python-jsonpify/trunk/debian/copyright	2014-02-27 18:47:28 UTC (rev 27966)
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Flask-Jsonpify
+Upstream-Contact: https://github.com/wcdolphin/flask-jsonpify/issues/
+Source: https://github.com/wcdolphin/flask-jsonpify
+
+Files: *
+Copyright: 2013, Cory Dolphin
+License: Expat
+
+Files: debian/*
+Copyright: 2014, Vasudev Kamath <kamathvasudev at gmail.com>
+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
+ X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+ AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
+ TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+

Added: packages/python-jsonpify/trunk/debian/rules
===================================================================
--- packages/python-jsonpify/trunk/debian/rules	                        (rev 0)
+++ packages/python-jsonpify/trunk/debian/rules	2014-02-27 18:47:28 UTC (rev 27966)
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+
+# Supported Python versions
+PYVERS = $(shell pyversions -r)
+PY2_PACKAGE_NAME = python-jsonpify
+
+%:
+	dh $@ --with=python2
+
+override_dh_auto_build:
+	set -xe; \
+	for py in $(PYVERS); do \
+		$$py setup.py build; \
+	done
+
+
+overide_dh_auto_install:
+	set -xe; \
+	for py in $(PYVERS); do \
+		$$py setup.py install --skip-build \
+			--root debian/$(PY2_PACKAGE_NAME)\
+			--install-layout deb;\
+	done
+	# Remove me when dh_python2 can handle this file
+	rm -vf debian/*/usr/lib/python*/*-packages/*.egg-info/SOURCES.txt


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

Added: packages/python-jsonpify/trunk/debian/source/format
===================================================================
--- packages/python-jsonpify/trunk/debian/source/format	                        (rev 0)
+++ packages/python-jsonpify/trunk/debian/source/format	2014-02-27 18:47:28 UTC (rev 27966)
@@ -0,0 +1 @@
+3.0 (quilt)
\ No newline at end of file

Added: packages/python-jsonpify/trunk/debian/watch
===================================================================
--- packages/python-jsonpify/trunk/debian/watch	                        (rev 0)
+++ packages/python-jsonpify/trunk/debian/watch	2014-02-27 18:47:28 UTC (rev 27966)
@@ -0,0 +1,3 @@
+version = 3
+https://pypi.python.org/pypi/Flask-Jsonpify \
+ 	.*/Flask-Jsonpify-(.*)\.tar\.gz
\ No newline at end of file




More information about the Python-modules-commits mailing list