debian/0000755000000000000000000000000012304027274007167 5ustar debian/docs0000644000000000000000000000001411412231132010022 0ustar README ACKS debian/copyright0000644000000000000000000000346711412231132011121 0ustar Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=233 Upstream-Name: lockfile Upstream-Maintainer: Skip Montanaro Upstream-Source: http://pypi.python.org/packages/source/l/lockfile/ Files: * Copyright: © 2007 Skip Montanaro. License: Expat Files: debian/* Copyright: © 2009 Ben Finney License: GPL-2+ This is free software; you may copy, modify, and/or distribute this work under the terms of the GNU General Public License, version 2 or later. No warranty expressed or implied. See the file '/usr/share/common-licenses/GPL-2' for details. Files: debian/patches/* Copyright: © 2009 Ben Finney License: Expat License: Expat 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. debian/changelog0000644000000000000000000000726112304027274011047 0ustar python-lockfile (1:0.8-2ubuntu2) trusty; urgency=medium * No change rebuild to drop files in /usr/share/pyshared. -- Matthias Klose Fri, 28 Feb 2014 07:36:47 +0100 python-lockfile (1:0.8-2ubuntu1) precise; urgency=low * Build using dh_python2 -- Matthias Klose Sat, 17 Dec 2011 14:19:18 +0000 python-lockfile (1:0.8-2) unstable; urgency=low * The “Slow mind” release. * Revert to upstream version 0.8, since version 0.9 should not have been made available and upstream is currently unresponsive. (Closes: bug#581061) * debian/control: + Declare “Standards-Version: 3.9.0”. No further changes needed. + Alter description to correctly describe version 0.8. * debian/pyversions: + This older version supports Python 2.4 or later; declare it. -- Ben Finney Tue, 29 Jun 2010 09:37:38 +1000 python-lockfile (0.9-2) unstable; urgency=low * The “Sax flute fun” release. * debian/control: + Set “Priority: optional” to allow other common packages to depend on this one. + Update the package description to better match the new capabilities. * debian/pyversions: + This version requires Python 2.5 or later; declare it. (Closes: Bug#580937) -- Ben Finney Mon, 10 May 2010 10:19:07 +1000 python-lockfile (0.9-1) unstable; urgency=low * The “Euclid” release. * New upstream version. Highlight since last release: + Reorganise library into a package. + API names changed for classes: LinkLockFile MkdirLockFile SQLiteLockFile + New lockfile class ‘PIDLockFile’. * debian/control: + Declare “Standards-Version: 3.8.4”. No further changes needed. * Drop ‘Provides’ field, since a Python-versioned dependency should not be necessary (ref. ‘python-support’ documentation). * debian/source/format: + Declare source package format. * debian/watch: + Detect source files when upstream moves them to a different provider. -- Ben Finney Wed, 28 Apr 2010 18:54:54 +1000 python-lockfile (0.8-1) unstable; urgency=low * New upstream release (Closes: Bug#539181): + Works around a bug in the Python ‘threading’ module. * debian/control, debian/rules: + Use nicer override handling from later ‘debhelper’ version. + Switch to ‘python-support’ for Python packaging. * debian/control: + Update to ‘Standards-Version: 3.8.2’, no changes required. + Set ‘Vcs-*’ fields to point to active repository. -- Ben Finney Thu, 30 Jul 2009 09:58:51 +1000 python-lockfile (0.7-4) unstable; urgency=low * Thanks to Julian Andres Klode for feedback that improved this release. * debian/control: + Relax ‘Build-Depends’, don't need the full Python build environment. * debian/copyright: + License patches under same terms as the upstream work. * debian/rules, debian/docs: + Install upstream ‘RELEASE-NOTES’ as a changelog equivalent. -- Ben Finney Sat, 07 Mar 2009 01:09:02 +1100 python-lockfile (0.7-3) unstable; urgency=low * debian/copyright: + Remove comment leaders from license grant text. -- Ben Finney Thu, 05 Mar 2009 08:12:09 +1100 python-lockfile (0.7-2) unstable; urgency=low * debian/rules: + Tell python-central to clean up properly during prerm. -- Ben Finney Wed, 04 Mar 2009 19:35:32 +1100 python-lockfile (0.7-1) unstable; urgency=low * Initial release (Closes: Bug#517666). -- Ben Finney Sun, 01 Mar 2009 22:57:01 +1100 debian/compat0000644000000000000000000000000211412231132010352 0ustar 7 debian/control0000644000000000000000000000242411673122375010602 0ustar Source: python-lockfile Priority: optional Maintainer: Ben Finney Section: python Homepage: http://pypi.python.org/pypi/lockfile VCS-bzr: http://bzr.debian.org/bzr/collab-maint/python-lockfile/python-lockfile.debian/ VCS-Browser: http://bzr.debian.org/loggerhead/collab-maint/python-lockfile/python-lockfile.debian/ Build-Depends: debhelper (>= 7.0.50), python (>= 2.6.6-3~) Standards-Version: 3.9.0 Package: python-lockfile Architecture: all Depends: ${misc:Depends}, ${python:Depends} Description: file locking library for Python The ‘lockfile’ module exports a ‘FileLock’ class which provides a simple API for locking files. . The appropriate implementation for ‘FileLock’ is chosen automatically based on the OS capabilities for an atomic filesystem operation. These implementations are also available for explicit use as ‘LinkFileLock’ and ‘MkdirFileLock’. . Other back ends are possible with the same semantics; an example provided is ‘SQLiteFileLock’. . Unlike other Python locking libraries (the Windows ‘msvcrt.locking’ function, the Unix ‘fcntl.flock’, ‘fcntl.lockf’, and the deprecated ‘posixfile’ module), the API is identical across both Unix (including GNU/Linux and MacOS) and Windows platforms. debian/rules0000755000000000000000000000221511673122425010251 0ustar #! /usr/bin/make -f # # debian/rules # # Copyright © 2009 Ben Finney # This is free software; you may copy, modify, and/or distribute this # work under the terms of the GNU General Public License, version 2 or # later. No warranty expressed or implied. # See the file ‘/usr/share/common-licenses/GPL-2’ for details. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DOC_SRC_DIR = doc DOC_HTML_DIR = doc/html SPHINX_BUILD = sphinx-build .PHONY: build build: dist-build doc-build dist-build: dh build --with=python2 doc-build: dist-build ### Docs don't build yet. ### $(SPHINX_BUILD) ${DOC_SRC_DIR} ${DOC_HTML_DIR} .PHONY: clean clean: dh clean --with=python2 .PHONY: install install: build dh install --with=python2 .PHONY: binary-indep binary-indep: build install dh binary-indep --with=python2 .PHONY: binary-arch binary-arch: build install .PHONY: binary binary: build binary-indep binary-arch .PHONY: override_dh_installchangelogs override_dh_installchangelogs: dh_installchangelogs RELEASE-NOTES # Local variables: # mode: makefile # coding: utf-8 # End: # vim: filetype=make fileencoding=utf-8 : debian/source/0000755000000000000000000000000011412231132010454 5ustar debian/source/format0000644000000000000000000000001411412231132011662 0ustar 3.0 (quilt) debian/pyversions0000644000000000000000000000000511412231132011313 0ustar 2.4- debian/watch0000644000000000000000000000041211412231132010202 0ustar # debian/watch # Debian uscan file for ‘python-lockfile’ package. # Manpage: uscan(1) # Compulsory line, this is a version 3 file. version=3 # Current version from Python Package Index. http://pypi.python.org/pypi/lockfile \ http://.+/lockfile-(.+).tar.gz