[Python-modules-commits] r25604 - in packages/python-memprof/trunk (12 files)

vicho at users.alioth.debian.org vicho at users.alioth.debian.org
Fri Aug 16 11:58:05 UTC 2013


    Date: Friday, August 16, 2013 @ 11:58:03
  Author: vicho
Revision: 25604

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

Added:
  packages/python-memprof/trunk/debian/
  packages/python-memprof/trunk/debian/changelog
  packages/python-memprof/trunk/debian/compat
  packages/python-memprof/trunk/debian/control
  packages/python-memprof/trunk/debian/copyright
  packages/python-memprof/trunk/debian/docs
  packages/python-memprof/trunk/debian/mp_plot.1
  packages/python-memprof/trunk/debian/python-memprof.manpages
  packages/python-memprof/trunk/debian/rules
  packages/python-memprof/trunk/debian/source/
  packages/python-memprof/trunk/debian/source/format
  packages/python-memprof/trunk/debian/watch


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

Added: packages/python-memprof/trunk/debian/changelog
===================================================================
--- packages/python-memprof/trunk/debian/changelog	                        (rev 0)
+++ packages/python-memprof/trunk/debian/changelog	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1,5 @@
+python-memprof (0.2.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #714110)
+
+ -- Javi Merino <vicho at debian.org>  Thu, 15 Aug 2013 11:55:39 +0200

Added: packages/python-memprof/trunk/debian/compat
===================================================================
--- packages/python-memprof/trunk/debian/compat	                        (rev 0)
+++ packages/python-memprof/trunk/debian/compat	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1 @@
+9

Added: packages/python-memprof/trunk/debian/control
===================================================================
--- packages/python-memprof/trunk/debian/control	                        (rev 0)
+++ packages/python-memprof/trunk/debian/control	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1,24 @@
+Source: python-memprof
+Section: python
+Priority: extra
+Maintainer: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Uploaders: Javi Merino <vicho at debian.org>
+Build-Depends: debhelper (>= 9),
+ python (>= 2.6.6-3~),
+ python3,
+ python-setuptools,
+Standards-Version: 3.9.4
+Homepage: http://jmdana.github.io/memprof/
+#Vcs-Git: git://git.debian.org/collab-maint/python-memprof.git
+#Vcs-Browser: http://git.debian.org/?p=collab-maint/python-memprof.git;a=summary
+
+Package: python-memprof
+Architecture: all
+Depends: ${misc:Depends},
+ ${python:Depends},
+ python-nose,
+ python-tornado
+Description: memory profiler for Python
+ python-memprof logs the memory used by variables during the execution
+ of decorated methods.  It creates a report in a text file and you can
+ plot the result using "mp_plot".

Added: packages/python-memprof/trunk/debian/copyright
===================================================================
--- packages/python-memprof/trunk/debian/copyright	                        (rev 0)
+++ packages/python-memprof/trunk/debian/copyright	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1,28 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-memprof
+Source: https://github.com/jmdana/memprof
+
+Files: *
+Copyright: 2013 Jose M. Dana <jmdana at gmail.com>
+License: GPL-3.0+
+
+Files: debian/*
+Copyright: 2013 Javi Merino <vicho at debian.org>
+License: GPL-3.0+
+
+License: GPL-3.0+
+ 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 3 of the License, or
+ (at your option) any later version.
+ .
+ This package 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.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

Added: packages/python-memprof/trunk/debian/docs
===================================================================
--- packages/python-memprof/trunk/debian/docs	                        (rev 0)
+++ packages/python-memprof/trunk/debian/docs	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1 @@
+README.md

Added: packages/python-memprof/trunk/debian/mp_plot.1
===================================================================
--- packages/python-memprof/trunk/debian/mp_plot.1	                        (rev 0)
+++ packages/python-memprof/trunk/debian/mp_plot.1	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1,17 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.3.
+.TH MP_PLOT.PY "1" "August 2013" "mp_plot.py 0.2.3" "User Commands"
+.SH NAME
+mp_plot \- mp_plot
+.SH DESCRIPTION
+usage: mp_plot [\-h] [\-t THRESHOLD] logfiles [logfiles ...]
+.SS "positional arguments:"
+.TP
+logfiles
+the logfiles
+.SS "optional arguments:"
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+show this help message and exit
+.TP
+\fB\-t\fR THRESHOLD, \fB\-\-threshold\fR THRESHOLD
+threshold (default: 1048576 bytes)

Added: packages/python-memprof/trunk/debian/python-memprof.manpages
===================================================================
--- packages/python-memprof/trunk/debian/python-memprof.manpages	                        (rev 0)
+++ packages/python-memprof/trunk/debian/python-memprof.manpages	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1 @@
+debian/mp_plot.1

Added: packages/python-memprof/trunk/debian/rules
===================================================================
--- packages/python-memprof/trunk/debian/rules	                        (rev 0)
+++ packages/python-memprof/trunk/debian/rules	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ --with python2,python3


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

Added: packages/python-memprof/trunk/debian/source/format
===================================================================
--- packages/python-memprof/trunk/debian/source/format	                        (rev 0)
+++ packages/python-memprof/trunk/debian/source/format	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-memprof/trunk/debian/watch
===================================================================
--- packages/python-memprof/trunk/debian/watch	                        (rev 0)
+++ packages/python-memprof/trunk/debian/watch	2013-08-16 11:58:03 UTC (rev 25604)
@@ -0,0 +1,6 @@
+# Compulsory line, this is a version 3 file
+version=3
+
+# rune for GitHub from https://wiki.debian.org/debian/watch/
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/memprof-$1.tar.gz/ \
+  https://github.com/jmdana/memprof/tags .*/v?(\d\S*)\.tar\.gz




More information about the Python-modules-commits mailing list