debian/0000775000000000000000000000000012302612700007161 5ustar debian/source/0000775000000000000000000000000012302612677010476 5ustar debian/source/options0000664000000000000000000000005212164624715012113 0ustar extend-diff-ignore = "^[^/]*[.]egg-info/" debian/source/format0000664000000000000000000000001412164624715011706 0ustar 3.0 (quilt) debian/copyright0000664000000000000000000000440012164624715011131 0ustar This work was packaged for Debian by: TANIGUCHI Takaki on Fri, 26 Nov 2010 10:23:12 +0900 It was downloaded from: http://pypi.python.org/pypi/repoze.lru/0.3 Upstream Author: Agendaless Consulting Copyright: Copyright (c) 2009 Agendaless Consulting and Contributors. License: A copyright notice accompanies this license document that identifies the copyright holders. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions in source code must retain the accompanying copyright notice, this list of conditions, and the following disclaimer. 2. Redistributions in binary form must reproduce the accompanying copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Names of the copyright holders must not be used to endorse or promote products derived from this software without prior written permission from the copyright holders. 4. If any files are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. Disclaimer THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED 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 COPYRIGHT HOLDERS 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. The Debian packaging is: Copyright (C) 2010 TANIGUCHI Takaki and is licensed under the GPL version 3, see "/usr/share/common-licenses/GPL-3". debian/python-repoze.lru.install0000664000000000000000000000002212164625604014204 0ustar /usr/lib/python2* debian/changelog0000664000000000000000000000361512302612637011051 0ustar python-repoze.lru (0.6-4) unstable; urgency=medium * The tests appear to pass now, revert 0.6-3. (Closes: #739893) -- Dimitri John Ledkov Mon, 24 Feb 2014 09:44:56 +0000 python-repoze.lru (0.6-3) unstable; urgency=low * Add patches that mark 0.1s timing tests expect failure, as python sleep can complete before requested time elapses. -- Dmitrijs Ledkovs Fri, 02 Aug 2013 09:09:54 +0100 python-repoze.lru (0.6-2) unstable; urgency=low * Team upload * Add python3 package (Closes: #714784) * Bump debhelper to 9, standards to 3.8.4 * Install upstream changelog under proper name -- Dmitrijs Ledkovs Tue, 02 Jul 2013 20:38:00 +0100 python-repoze.lru (0.6-1) unstable; urgency=low [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. [ TANIGUCHI Takaki ] * New upstream release -- TANIGUCHI Takaki Wed, 08 May 2013 21:01:13 +0900 python-repoze.lru (0.5-2) unstable; urgency=low * debian/source/options: Ignore egg-file changes. (Closes: #671111) -- TANIGUCHI Takaki Wed, 09 May 2012 21:36:49 +0900 python-repoze.lru (0.5-1) unstable; urgency=low * New upstream release * Bump Standards-Version 3.9.3 (with no changes). -- TANIGUCHI Takaki Mon, 09 Apr 2012 10:24:06 +0900 python-repoze.lru (0.4-1) unstable; urgency=low [ Jakub Wilk ] * Add Vcs-* fields. [ TANIGUCHI Takaki ] * New upstream release -- TANIGUCHI Takaki Tue, 20 Sep 2011 11:37:18 +0900 python-repoze.lru (0.3-2) unstable; urgency=low * Switch to dh_python2. * Bump Standards-Version 3.9.2 (with no changes). -- TANIGUCHI Takaki Mon, 23 May 2011 12:40:57 +0900 python-repoze.lru (0.3-1) unstable; urgency=low * Initial release (Closes: #604996) -- TANIGUCHI Takaki Fri, 26 Nov 2010 10:23:12 +0900 debian/control0000664000000000000000000000254612164626323010607 0ustar Source: python-repoze.lru Section: python Priority: extra Maintainer: Debian Python Modules Team Uploaders: TANIGUCHI Takaki Build-Depends: debhelper (>= 9), python-setuptools, python-all, python3-setuptools, python3-all Standards-Version: 3.9.4 X-Python3-Versions: >= 3.2 Homepage: http://www.repoze.org/ Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-repoze.lru/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-repoze.lru/trunk/ Package: python-repoze.lru Architecture: all Depends: ${python:Depends}, ${misc:Depends} Provides: ${python:Provides} Description: tiny LRU cache implementation and decorator repoze.lru is a LRU (least recently used) cache implementation. Keys and values that are not used frequently will be evicted from the cache faster than keys and values that are used frequently. . This is the Python 2 version of the package. Package: python3-repoze.lru Architecture: all Depends: ${python3:Depends}, ${misc:Depends} Description: tiny LRU cache implementation and decorator for Python 3 repoze.lru is a LRU (least recently used) cache implementation. Keys and values that are not used frequently will be evicted from the cache faster than keys and values that are used frequently. . This is the Python 3 version of the package. debian/rules0000775000000000000000000000124612164626455010266 0ustar #!/usr/bin/make -f PYTHON2:=$(shell pyversions -r) PYTHON3:=$(shell py3versions -r) py3sdo=set -e; $(foreach py, $(PYTHON3), $(py) $(1);) pyalldo=set -e; $(foreach py, $(PYTHON2) $(PYTHON3), $(py) $(1);) %: dh $@ --with python2,python3 override_dh_auto_build: dh_auto_build $(call py3sdo, setup.py build) override_dh_auto_install: dh_auto_install $(call py3sdo, setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb) override_dh_auto_clean: dh_auto_clean rm -rf build *.egg-info ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) override_dh_auto_test: $(call pyalldo, setup.py test) endif override_dh_installchangelogs: dh_installchangelogs CHANGES.txt debian/watch0000664000000000000000000000012712164624715010231 0ustar version=3 http://pypi.python.org/packages/source/r/repoze.lru/repoze.lru-(.*)\.tar\.gz debian/python3-repoze.lru.install0000664000000000000000000000002212164625622014267 0ustar /usr/lib/python3* debian/docs0000664000000000000000000000003112164626447010051 0ustar COPYRIGHT.txt README.txt debian/compat0000664000000000000000000000000212164625427010377 0ustar 9