[Python-modules-commits] r6352 - in packages/pyrrd/trunk (7 files)
lash-guest at users.alioth.debian.org
lash-guest at users.alioth.debian.org
Sun Aug 24 14:51:10 UTC 2008
Date: Sunday, August 24, 2008 @ 14:51:09
Author: lash-guest
Revision: 6352
[svn-inject] Applying Debian modifications to trunk
Added:
packages/pyrrd/trunk/debian/
packages/pyrrd/trunk/debian/changelog
packages/pyrrd/trunk/debian/compat
packages/pyrrd/trunk/debian/control
packages/pyrrd/trunk/debian/copyright
packages/pyrrd/trunk/debian/rules
packages/pyrrd/trunk/debian/watch
Property changes on: packages/pyrrd/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: packages/pyrrd/trunk/debian/changelog
===================================================================
--- packages/pyrrd/trunk/debian/changelog (rev 0)
+++ packages/pyrrd/trunk/debian/changelog 2008-08-24 14:51:09 UTC (rev 6352)
@@ -0,0 +1,6 @@
+pyrrd (0.0.3-1) unstable; urgency=low
+
+ * Initial release (Closes: #496239)
+
+ -- Andrea Corradi <lash at unstable.it> Sat, 23 Aug 2008 21:20:49 +0200
+
Added: packages/pyrrd/trunk/debian/compat
===================================================================
--- packages/pyrrd/trunk/debian/compat (rev 0)
+++ packages/pyrrd/trunk/debian/compat 2008-08-24 14:51:09 UTC (rev 6352)
@@ -0,0 +1 @@
+7
Added: packages/pyrrd/trunk/debian/control
===================================================================
--- packages/pyrrd/trunk/debian/control (rev 0)
+++ packages/pyrrd/trunk/debian/control 2008-08-24 14:51:09 UTC (rev 6352)
@@ -0,0 +1,20 @@
+Source: pyrrd
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Andrea Corradi <lash at unstable.it>
+Build-Depends: python-support (>= 0.6), debhelper (>= 7)
+Standards-Version: 3.8.0
+Homepage: http://code.google.com/p/pyrrd/
+Vcs-Svn: http://pyrrd.googlecode.com/svn/trunk/
+Vcs-Browser: http://code.google.com/p/pyrrd/source/browse/
+XS-Python-Version: all
+
+Package: pyrrd
+Architecture: any
+Depends: ${python:Depends}, rrdtool
+Description: object-oriented python interface for RRD
+ PyRRD is a module that wraps RRDTool to allow for the greatest possible
+ programmatic ease in creating, updating, querying and graphing RRD data.
+ The idea is to make RRDTool insanely easy to use and to be aesthetically
+ pleasing for Python programmers.
Added: packages/pyrrd/trunk/debian/copyright
===================================================================
--- packages/pyrrd/trunk/debian/copyright (rev 0)
+++ packages/pyrrd/trunk/debian/copyright 2008-08-24 14:51:09 UTC (rev 6352)
@@ -0,0 +1,47 @@
+This package was debianized by Andrea Corradi <lash at unstable.it> on
+Sat, 23 Aug 2008 19:49:03 +0200.
+
+It was downloaded from http://code.google.com/p/pyrrd/downloads/list
+
+Upstream Author:
+
+ Duncan McGreggor <duncan at adytum.us>
+
+Copyright:
+
+ Copyright (c) 2004-2008, AdytumSolutions, Inc.
+
+License:
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials provided
+ with the distribution.
+ * Neither the name of AdytumSolutions, Inc. nor the names of
+ its contributors may be used to endorse or promote products
+ derived from this software without specific prior written
+ permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+
+
+The Debian packaging is (C) 2008, Andrea Corradi <lash at unstable.it> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
Added: packages/pyrrd/trunk/debian/rules
===================================================================
--- packages/pyrrd/trunk/debian/rules (rev 0)
+++ packages/pyrrd/trunk/debian/rules 2008-08-24 14:51:09 UTC (rev 6352)
@@ -0,0 +1,56 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+ORIGFILES = PyRRD.egg-info/SOURCES.txt
+
+build: build-stamp
+
+build-stamp:
+ dh_testdir
+
+ for f in $(ORIGFILES) ; do [ -e $$f.d-r-orig ] || cp -p $$f $$f.d-r-orig ; done
+
+ python setup.py build
+
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ [! -d build ] || rm -rf build
+
+ python setup.py clean
+ for f in $(ORIGFILES) ; do [ ! -e $$f.d-r-orig ] || mv $$f.d-r-orig $$f ; done
+ dh_clean ez_setup.pyc
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ python setup.py install --single-version-externally-managed --root=$(CURDIR)/debian/pyrrd
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_installexamples examples/*
+ dh_pysupport
+ dh_link
+ dh_compress
+ dh_fixperms
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
Property changes on: packages/pyrrd/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: packages/pyrrd/trunk/debian/watch
===================================================================
--- packages/pyrrd/trunk/debian/watch (rev 0)
+++ packages/pyrrd/trunk/debian/watch 2008-08-24 14:51:09 UTC (rev 6352)
@@ -0,0 +1,3 @@
+version=3
+
+http://pyrrd.googlecode.com/files/PyRRD-(.*)\.tar\.gz
More information about the Python-modules-commits
mailing list