--- myghtyutils-0.52.orig/debian/copyright +++ myghtyutils-0.52/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by Oleksandr Moskalenko on Tue, +17 Oct 2006 00:57:00 -0600. + +It was downloaded from . + +Upstream Author: Michael Bayer + +Copyright: Copyright (c) 2006 Mike Bayer . + +License: + + This package is licensed under the MIT License. + + 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. + +The Debian packaging is (C) 2006, Oleksandr Moskalenko and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- myghtyutils-0.52.orig/debian/control +++ myghtyutils-0.52/debian/control @@ -0,0 +1,29 @@ +Source: myghtyutils +Section: python +Priority: optional +Maintainer: Debian Python Modules Team +Uploaders: Oleksandr Moskalenko +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: python-all, python-support (>= 0.6.4), python-setuptools (>= 0.6b3-1~) +Standards-Version: 3.8.4 +XS-Python-Version: all +Vcs-Svn: svn://svn.debian.org/python-modules/packages/myghtyutils/trunk/ +Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/myghtyutils/trunk/ +Homepage: http://www.myghty.org/ + +Package: python-myghtyutils +Architecture: all +Depends: ${python:Depends}, python, ${misc:Depends} +XB-Python-Version: ${python:Versions} +Enhances: python-myghty +Description: Set of utility classes used by Myghty templating + Utility classes used by Myghty templating: + container - the Containment system providing back-end neutral key/value + storage, with support for in-memory, DBM files, flat files, and memcached. + buffer - some functions for augmenting file objects . + util - various utility functions and objects. + synchronizer - provides many reader/single writer synchronization using + either thread mutexes or lockfiles. + session - provides a Session interface built upon the Container, similar + interface to mod_python session. Currently needs a mod_python-like request + object, this should be changed to something more generic. --- myghtyutils-0.52.orig/debian/watch +++ myghtyutils-0.52/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://cheeseshop.python.org/packages/source/M/MyghtyUtils/MyghtyUtils-(.*)\.zip --- myghtyutils-0.52.orig/debian/changelog +++ myghtyutils-0.52/debian/changelog @@ -0,0 +1,51 @@ +myghtyutils (0.52-4) unstable; urgency=low + + [ Piotr Ożarowski ] + * Rename XS-Vcs-* fields to Vcs-* (dpkg supports them now) + + [ Carlos Galisteo ] + * debian/control + - Added Homepage field. + + [ Sandro Tosi ] + * debian/control + - switch Vcs-Browser field to viewsvn + + [ Oleksandr Moskalenko ] + * debian/control: + - Changed maintainer to dpmt and put myself in uploaders. + - Changed section to python. + - Updated copyright notice. + - Updated Standards-Version to 3.8.4. + - Moved python depends to Build-Depends-Indep. + - Updated Build-Depends-Indep. + * debian/rules: + - Updated build system. + * debian/dirs: + - Added the file to create doc and pysupport dirs. + + -- Oleksandr Moskalenko Thu, 18 Feb 2010 14:13:00 -0600 + +myghtyutils (0.52-3) unstable; urgency=low + + * Piotr Ożarowski : + + New python-support handles egg's directory name correctly + - bump python-support required version + - remove mv part from debian/rules + + -- Oleksandr Moskalenko Mon, 14 May 2007 09:46:20 -0600 + +myghtyutils (0.52-2) unstable; urgency=low + + * debian/control: + - Added Debian Python Modules Team + to Uploaders. + - Added XS-Vcs-Svn and XS-Vcs-Browser control fields. + + -- Oleksandr Moskalenko Mon, 29 Jan 2007 17:33:09 -0700 + +myghtyutils (0.52-1) unstable; urgency=low + + * Initial release (Closes: #393739). + + -- Oleksandr Moskalenko Tue, 17 Oct 2006 00:53:52 -0600 --- myghtyutils-0.52.orig/debian/dirs +++ myghtyutils-0.52/debian/dirs @@ -0,0 +1 @@ +usr/share/python-support/python-myghtyutils --- myghtyutils-0.52.orig/debian/rules +++ myghtyutils-0.52/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 +package=python-myghtyutils +PYVERS=$(shell pyversions -vr) + +-include /usr/share/python/python.mk +ifeq (,$(py_libdir)) + py_libdir = /usr/lib/python$(subst python,,$(1))/site-packages + endif + +clean: + rm -f build-* + dh_testdir + dh_testroot + rm -rf build + find . -name *\.py[co] -exec rm -f {} \; + dh_clean + +build: build-indep + +build-indep: + touch $@ + +build-stamp: + dh_testdir + python setup.py build + touch $@ + +install: $(PYVERS:%=install-python%) +install-python%: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + python$* setup.py install \ + --no-compile $(py_setup_install_args) \ + --single-version-externally-managed \ + --root $(CURDIR)/debian/$(package) + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdirs + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_pysupport + dh_compress -X.py + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- myghtyutils-0.52.orig/debian/compat +++ myghtyutils-0.52/debian/compat @@ -0,0 +1 @@ +5