debian/0000755000000000000000000000000012240165761007172 5ustar debian/copyright0000644000000000000000000000244312230202147011115 0ustar This package was debianized by Arthur Vuillard on Fri Oct 18 11:46:48 CEST 2013 It was downloaded from Upstream Author: Richard Jones License: Copyright (c) 2012-2013 Richard Jones 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/rules0000755000000000000000000000025712230201151010235 0ustar #!/usr/bin/make -f # This file was automatically generated by stdeb 0.6.0+git at # Fri, 18 Oct 2013 09:42:01 +0000 %: dh $@ --with python2 --buildsystem=python_distutils debian/source/0000755000000000000000000000000012230201151010451 5ustar debian/source/format0000644000000000000000000000001412230201151011657 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212230201151010347 0ustar 7 debian/control0000644000000000000000000000175612240165757010613 0ustar Source: python-parse Maintainer: Cyril Bouthors Uploaders: Arthur Vuillard , Cyril Bouthors , Cyril Bouthors Section: python Priority: optional Build-Depends: python-all (>= 2.6.6-3), debhelper (>= 7) Standards-Version: 3.9.4 Package: python-parse Architecture: all Depends: ${misc:Depends}, ${python:Depends} Description: Parse provides the reverse function for format(). Parse strings using a specification based on the Python format() syntax. . ``parse()`` is the opposite of ``format()`` . The module is set up to only export ``parse()``, ``search()`` and ``findall()`` when ``import *`` is used: . >>> from parse import * . From there it's a simple thing to parse a string: . >>> parse("It's {}, I love it!", "It's spam, I love it!") >>> _[0] 'spam' . Or to search a string for some pattern: . >>> search('Age: {:d}\n', 'Name: Rufus\nAge: 42\nColor: red\n') debian/changelog0000644000000000000000000000023712240165617011046 0ustar python-parse (1.6.3-1) unstable; urgency=low * Initial release (closes: #726715). -- Cyril Bouthors Mon, 11 Nov 2013 15:37:03 +0100