[Python-modules-commits] r24596 - in packages/pyflot/trunk (14 files)

asb at users.alioth.debian.org asb at users.alioth.debian.org
Tue May 28 19:01:14 UTC 2013


    Date: Tuesday, May 28, 2013 @ 19:01:08
  Author: asb
Revision: 24596

Initial release (Closes: #710060).

Added:
  packages/pyflot/trunk/debian/
  packages/pyflot/trunk/debian/changelog
  packages/pyflot/trunk/debian/compat
  packages/pyflot/trunk/debian/control
  packages/pyflot/trunk/debian/copyright
  packages/pyflot/trunk/debian/doc-base
  packages/pyflot/trunk/debian/docs
  packages/pyflot/trunk/debian/rules
  packages/pyflot/trunk/debian/source/
  packages/pyflot/trunk/debian/source/format
  packages/pyflot/trunk/debian/tests/
  packages/pyflot/trunk/debian/tests/control
  packages/pyflot/trunk/debian/tests/testsuite
  packages/pyflot/trunk/debian/watch


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

Added: packages/pyflot/trunk/debian/changelog
===================================================================
--- packages/pyflot/trunk/debian/changelog	                        (rev 0)
+++ packages/pyflot/trunk/debian/changelog	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1,5 @@
+pyflot (0.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #710060).
+
+ -- Andrew Starr-Bochicchio <asb at debian.org>  Tue, 28 May 2013 13:28:36 -0400

Added: packages/pyflot/trunk/debian/compat
===================================================================
--- packages/pyflot/trunk/debian/compat	                        (rev 0)
+++ packages/pyflot/trunk/debian/compat	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1 @@
+9

Added: packages/pyflot/trunk/debian/control
===================================================================
--- packages/pyflot/trunk/debian/control	                        (rev 0)
+++ packages/pyflot/trunk/debian/control	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1,23 @@
+Source: pyflot
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Andrew Starr-Bochicchio <asb at debian.org>
+Build-Depends: debhelper (>= 9), python-all, python-sphinx (>= 1.0.7+dfsg)
+Standards-Version: 3.9.4
+X-Python-Version: >=2.5
+Homepage: https://github.com/andrefsp/pyflot
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pyflot/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pyflot/trunk/
+
+Package: python-pyflot
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, ${sphinxdoc:Depends}
+Enhances: libjs-flot
+Description: interface from Python to libjs-flot
+ PyFlot makes it easy to generate flot graphs. Its primary goal
+ is to allow one to specify data inputs and options in a Python
+ application and generate the appropriate JSON. Common uses of this
+ are rendering into a template as flot() arguments or as the payload of
+ an XHR response. PyFlot takes care of all the annoying details of
+ converting types to match up with how flot expects them.

Added: packages/pyflot/trunk/debian/copyright
===================================================================
--- packages/pyflot/trunk/debian/copyright	                        (rev 0)
+++ packages/pyflot/trunk/debian/copyright	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: PyFlot
+Source: https://github.com/andrefsp/pyflot
+
+Files: *
+Copyright: 2012 Andre da Palma <andrefsp at gmail.com>
+License: MIT
+
+Files: debian/*
+Copyright: 2013 Andrew Starr-Bochicchio <asb at debian.org>
+License: MIT
+
+License: MIT
+ 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/pyflot/trunk/debian/doc-base
===================================================================
--- packages/pyflot/trunk/debian/doc-base	                        (rev 0)
+++ packages/pyflot/trunk/debian/doc-base	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1,8 @@
+Document: pyflot
+Title: PyFlot documentation
+Abstract: Documentation for PyFlot in HTML form.
+Section: Programming
+
+Format: HTML
+Index: /usr/share/doc/python-pyflot/html/index.html
+Files: /usr/share/doc/python-pyflot/html/*.html

Added: packages/pyflot/trunk/debian/docs
===================================================================
--- packages/pyflot/trunk/debian/docs	                        (rev 0)
+++ packages/pyflot/trunk/debian/docs	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1 @@
+README.rst

Added: packages/pyflot/trunk/debian/rules
===================================================================
--- packages/pyflot/trunk/debian/rules	                        (rev 0)
+++ packages/pyflot/trunk/debian/rules	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1,26 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYTHON2=$(shell pyversions -vr)
+
+%:
+	dh $@ --with python2,sphinxdoc
+
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+test-python%:
+	python$* runtests.py
+
+override_dh_auto_test: $(PYTHON2:%=test-python%)
+endif
+
+override_dh_installdocs:
+	cd docs && $(MAKE) html
+	dh_installdocs docs/_build/html
+
+override_dh_auto_clean:
+	dh_auto_clean
+	rm -rf build
+	rm -rf docs/_build
+	rm -rf *.egg-info


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

Added: packages/pyflot/trunk/debian/source/format
===================================================================
--- packages/pyflot/trunk/debian/source/format	                        (rev 0)
+++ packages/pyflot/trunk/debian/source/format	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/pyflot/trunk/debian/tests/control
===================================================================
--- packages/pyflot/trunk/debian/tests/control	                        (rev 0)
+++ packages/pyflot/trunk/debian/tests/control	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1,2 @@
+Tests: testsuite
+Depends: @, python

Added: packages/pyflot/trunk/debian/tests/testsuite
===================================================================
--- packages/pyflot/trunk/debian/tests/testsuite	                        (rev 0)
+++ packages/pyflot/trunk/debian/tests/testsuite	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+python runtests.py  2>&1


Property changes on: packages/pyflot/trunk/debian/tests/testsuite
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/pyflot/trunk/debian/watch
===================================================================
--- packages/pyflot/trunk/debian/watch	                        (rev 0)
+++ packages/pyflot/trunk/debian/watch	2013-05-28 19:01:08 UTC (rev 24596)
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(.*)\.tar\.gz/pyflot-$1.tar.gz/ \
+  https://github.com/andrefsp/pyflot/tags .*/v?(\d[\d\.]+)\.tar\.gz




More information about the Python-modules-commits mailing list