[Python-apps-commits] r4594 - in packages/objgraph/trunk (11 files)

stefanor-guest at users.alioth.debian.org stefanor-guest at users.alioth.debian.org
Mon Jan 25 08:52:13 UTC 2010


    Date: Monday, January 25, 2010 @ 08:52:12
  Author: stefanor-guest
Revision: 4594

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/objgraph/trunk/debian/
  packages/objgraph/trunk/debian/changelog
  packages/objgraph/trunk/debian/compat
  packages/objgraph/trunk/debian/control
  packages/objgraph/trunk/debian/copyright
  packages/objgraph/trunk/debian/docs
  packages/objgraph/trunk/debian/patches/
  packages/objgraph/trunk/debian/patches/excise-setuptools.dif
  packages/objgraph/trunk/debian/patches/series
  packages/objgraph/trunk/debian/rules
  packages/objgraph/trunk/debian/watch


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

Added: packages/objgraph/trunk/debian/changelog
===================================================================
--- packages/objgraph/trunk/debian/changelog	                        (rev 0)
+++ packages/objgraph/trunk/debian/changelog	2010-01-25 08:52:12 UTC (rev 4594)
@@ -0,0 +1,5 @@
+objgraph (1.2-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #566798)
+
+ -- Stefano Rivera <stefano at rivera.za.net>  Mon, 25 Jan 2010 04:02:00 +0200

Added: packages/objgraph/trunk/debian/compat
===================================================================
--- packages/objgraph/trunk/debian/compat	                        (rev 0)
+++ packages/objgraph/trunk/debian/compat	2010-01-25 08:52:12 UTC (rev 4594)
@@ -0,0 +1 @@
+7

Added: packages/objgraph/trunk/debian/control
===================================================================
--- packages/objgraph/trunk/debian/control	                        (rev 0)
+++ packages/objgraph/trunk/debian/control	2010-01-25 08:52:12 UTC (rev 4594)
@@ -0,0 +1,21 @@
+Source: objgraph
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Stefano Rivera <stefano at rivera.za.net>
+Build-Depends: debhelper (>= 7), python-support (>= 0.8)
+Standards-Version: 3.8.3
+Homepage: http://mg.pov.lt/objgraph/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/objgraph/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/objgraph/trunk/
+XS-Python-Version: all
+
+Package: python-objgraph
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Recommends: graphviz
+Description: Ad-hoc tools for drawing Python object reference graphs with graphviz
+ objgraph contains a set of utility functions for exploring Python objects in memory.
+ It can be used for counting and statistics, finding root references
+ responsible for large object trees and  export the object reference graphs in
+ graphviz format.

Added: packages/objgraph/trunk/debian/copyright
===================================================================
--- packages/objgraph/trunk/debian/copyright	                        (rev 0)
+++ packages/objgraph/trunk/debian/copyright	2010-01-25 08:52:12 UTC (rev 4594)
@@ -0,0 +1,43 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=135
+Name: html2text
+Maintainer: Marius Gedminas <marius at pov.lt>
+Source: http://pypi.python.org/pypi/objgraph/
+
+Files: *
+Copyright: 2008 Marius Gedminas
+License: MIT-1
+ Released under the MIT licence.
+ .
+ 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.
+
+Files: debian/*
+Copyright: 2010, Stefano Rivera <stefano at rivera.za.net>
+License: GPL-2+
+ 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 2 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.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ version 2 can be found in the /usr/share/common-licenses/GPL-2 file.

Added: packages/objgraph/trunk/debian/docs
===================================================================
--- packages/objgraph/trunk/debian/docs	                        (rev 0)
+++ packages/objgraph/trunk/debian/docs	2010-01-25 08:52:12 UTC (rev 4594)
@@ -0,0 +1 @@
+README.txt

Added: packages/objgraph/trunk/debian/patches/excise-setuptools.dif
===================================================================
--- packages/objgraph/trunk/debian/patches/excise-setuptools.dif	                        (rev 0)
+++ packages/objgraph/trunk/debian/patches/excise-setuptools.dif	2010-01-25 08:52:12 UTC (rev 4594)
@@ -0,0 +1,19 @@
+Description: We want a deterministic build. Don't try to use setuptools over
+ distutils.
+Author: Stefano Rivera <stefano at rivera.za.net>
+Forwarded: no
+Last-Updated: 2010-01-25
+
+--- a/setup.py
++++ b/setup.py
+@@ -1,9 +1,6 @@
+ import os, sys
+ 
+-try:
+-    from setuptools import setup
+-except ImportError:
+-    from distutils import setup
++from distutils.core import setup
+ 
+ 
+ def relative(filename):

Added: packages/objgraph/trunk/debian/patches/series
===================================================================
--- packages/objgraph/trunk/debian/patches/series	                        (rev 0)
+++ packages/objgraph/trunk/debian/patches/series	2010-01-25 08:52:12 UTC (rev 4594)
@@ -0,0 +1 @@
+excise-setuptools.dif

Added: packages/objgraph/trunk/debian/rules
===================================================================
--- packages/objgraph/trunk/debian/rules	                        (rev 0)
+++ packages/objgraph/trunk/debian/rules	2010-01-25 08:52:12 UTC (rev 4594)
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@


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

Added: packages/objgraph/trunk/debian/watch
===================================================================
--- packages/objgraph/trunk/debian/watch	                        (rev 0)
+++ packages/objgraph/trunk/debian/watch	2010-01-25 08:52:12 UTC (rev 4594)
@@ -0,0 +1,3 @@
+version=3
+
+http://pypi.python.org/packages/source/o/objgraph/objgraph-(.*).tar.gz




More information about the Python-apps-commits mailing list