--- python-memory-profiler-0.31+git20141019.orig/debian/changelog +++ python-memory-profiler-0.31+git20141019/debian/changelog @@ -0,0 +1,6 @@ +python-memory-profiler (0.31+git20141019-1) unstable; urgency=medium + + * Initial release (Closes: #764855) + + -- Changwoo Ryu Sun, 19 Oct 2014 17:18:27 +0900 + --- python-memory-profiler-0.31+git20141019.orig/debian/compat +++ python-memory-profiler-0.31+git20141019/debian/compat @@ -0,0 +1 @@ +9 --- python-memory-profiler-0.31+git20141019.orig/debian/control +++ python-memory-profiler-0.31+git20141019/debian/control @@ -0,0 +1,42 @@ +Source: python-memory-profiler +Section: python +Priority: optional +Maintainer: Changwoo Ryu +Build-Depends: debhelper (>= 9.0.0), + dh-python (>> 1.20130913), + python-all (>= 2.6.6-3~), + python-setuptools, + python3-all (>= 3.2~), + python3-setuptools, + python-psutil, + python3-psutil, +Standards-Version: 3.9.6 +Homepage: https://github.com/fabianp/memory_profiler +Vcs-Git: git://anonscm.debian.org/users/cwryu/python-memory-profiler.git +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=users/cwryu/python-memory-profiler.git;a=summary +X-Python-Version: >= 2.6 +X-Python3-Version: >= 3.2 + +Package: python-memory-profiler +Architecture: all +Depends: ${misc:Depends}, + ${python:Depends}, + python-psutil, +Description: memory consumption analysis for Python programs (Python 2 build) + This is a Python module for monitoring memory consumption of a process + as well as line-by-line analysis of memory consumption for Python + programs. + . + This module is built for Python version 2.x. + +Package: python3-memory-profiler +Architecture: all +Depends: ${misc:Depends}, + ${python:Depends}, + python3-psutil, +Description: memory consumption analysis for Python programs (Python 3 build) + This is a Python module for monitoring memory consumption of a process + as well as line-by-line analysis of memory consumption for Python + programs. + . + This module is built for Python version 3.x. --- python-memory-profiler-0.31+git20141019.orig/debian/copyright +++ python-memory-profiler-0.31+git20141019/debian/copyright @@ -0,0 +1,50 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: memory_profiler +Source: https://github.com/fabianp/memory_profiler + +Files: * +Copyright: Copyright (c) 2007–2014 Fabian Pedregosa. All rights reserved. +License: BSD-3 + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + . + a. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + b. 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. + c. Neither the name of the memory_profiler developers 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 REGENTS 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. + +Files: debian/* +Copyright: 2014 Changwoo Ryu +License: GPL-3+ + 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 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. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + Comment: + on Debian systems, the complete text of the GNU General Public License + version 3 or later can be found in `/usr/share/common-licenses/GPL-3'. --- python-memory-profiler-0.31+git20141019.orig/debian/gbp.conf +++ python-memory-profiler-0.31+git20141019/debian/gbp.conf @@ -0,0 +1,4 @@ +[DEFAULT] +pristine-tar = True +debian-branch = debian +upstream-branch = upstream --- python-memory-profiler-0.31+git20141019.orig/debian/python-memory-profiler.docs +++ python-memory-profiler-0.31+git20141019/debian/python-memory-profiler.docs @@ -0,0 +1 @@ +README.rst --- python-memory-profiler-0.31+git20141019.orig/debian/python-memory-profiler.examples +++ python-memory-profiler-0.31+git20141019/debian/python-memory-profiler.examples @@ -0,0 +1 @@ +examples/* --- python-memory-profiler-0.31+git20141019.orig/debian/python-memory-profiler.install +++ python-memory-profiler-0.31+git20141019/debian/python-memory-profiler.install @@ -0,0 +1 @@ +usr/lib/python2*/dist-packages/* --- python-memory-profiler-0.31+git20141019.orig/debian/python3-memory-profiler.docs +++ python-memory-profiler-0.31+git20141019/debian/python3-memory-profiler.docs @@ -0,0 +1 @@ +README.rst --- python-memory-profiler-0.31+git20141019.orig/debian/python3-memory-profiler.examples +++ python-memory-profiler-0.31+git20141019/debian/python3-memory-profiler.examples @@ -0,0 +1 @@ +examples/* --- python-memory-profiler-0.31+git20141019.orig/debian/python3-memory-profiler.install +++ python-memory-profiler-0.31+git20141019/debian/python3-memory-profiler.install @@ -0,0 +1 @@ +usr/lib/python3*/dist-packages/* --- python-memory-profiler-0.31+git20141019.orig/debian/rules +++ python-memory-profiler-0.31+git20141019/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f +#export DH_VERBOSE=1 + +PYVERS := $(shell pyversions -r) +PY3VERS := $(shell py3versions -r) + +%: + dh $@ --with python2,python3 --buildsystem=pybuild --- python-memory-profiler-0.31+git20141019.orig/debian/watch +++ python-memory-profiler-0.31+git20141019/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://github.com/fabianp/memory_profiler/tags .*/([\d\.]+)\.tar\.gz