debian/0000755000000000000000000000000012301206003007151 5ustar debian/copyright0000644000000000000000000000277712223017006011127 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: lesscpy Upstream-Contact: Johann T Mariusson Source: git://github.com/robotis/Lesscpy.git Files: debian/* Copyright: (c) 2013, Thomas Goirand License: Expat Files: * Copyright: (c) 2012, Johann T Mariusson (c) 2012, Patrick (c) 2012, Simon de Haan 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/changelog0000644000000000000000000000212512301206003011023 0ustar python-lesscpy (0.9j-3fakesync2) trusty; urgency=medium * No-change rebuild for Python 3.4. -- Matthias Klose Wed, 19 Feb 2014 20:54:03 +0100 python-lesscpy (0.9j-3fakesync1) trusty-proposed; urgency=low * Fake sync due to mismatching orig tarball. -- Logan Rosen Sun, 10 Nov 2013 23:59:37 -0500 python-lesscpy (0.9j-3) unstable; urgency=low * d/patches/fixup-python3-argparse.patch: Fix use of argparse for compatibility with python3.3. -- James Page Wed, 02 Oct 2013 14:12:42 +0100 python-lesscpy (0.9j-2) unstable; urgency=low * Renamed the MIT license to Expat, after kind explanation from the FTP Masters. -- Thomas Goirand Tue, 01 Oct 2013 01:34:26 +0000 python-lesscpy (0.9j-1) unstable; urgency=low * New upstream release. * Uploading to unstable. -- Thomas Goirand Sat, 07 Sep 2013 16:48:49 +0800 python-lesscpy (0.9h-1) experimental; urgency=low * Initial release. (Closes: #717382) -- Thomas Goirand Sat, 20 Jul 2013 00:45:19 +0800 debian/compat0000644000000000000000000000000212223017006010355 0ustar 9 debian/patches/0000755000000000000000000000000012223017006010606 5ustar debian/patches/fixup-python3-argparse.patch0000644000000000000000000000152212223017006016166 0ustar Description: Fixup for python3.3 compat Author: James Page Forwarded: https://github.com/robotis/Lesscpy/pull/23 --- a/lesscpy/scripts/compiler.py +++ b/lesscpy/scripts/compiler.py @@ -84,8 +84,9 @@ def run(): """Run compiler """ aparse = argparse.ArgumentParser(description='LessCss Compiler', - epilog='<< jtm@robot.is @_o >>', - version=VERSION_STR) + epilog='<< jtm@robot.is @_o >>') + aparse.add_argument('-v', '--version', action='version', + version=VERSION_STR) aparse.add_argument('-I', '--include', action="store", type=str, help="Included less-files (comma separated)") aparse.add_argument('-V', '--verbose', action="store_true", debian/patches/remove_non_ascii_chars_from_license.patch0000644000000000000000000000066512223017006021062 0ustar Description: Removes non-ascii chars from LICENSE file which are making FTBFS Author: Thomas Goirand Forwarded: no --- python-lesscpy-0.9j.orig/LICENSE +++ python-lesscpy-0.9j/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2012 Jóhann T Maríusson +Copyright (c) 2012 Johann T Mariusson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the debian/patches/series0000644000000000000000000000010712223017006012021 0ustar remove_non_ascii_chars_from_license.patch fixup-python3-argparse.patch debian/control0000644000000000000000000000413512240062071010566 0ustar Source: python-lesscpy Section: python Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: PKG OpenStack Uploaders: Julien Danjou , Thomas Goirand , Mehdi Abaakouk Build-Depends: debhelper (>= 9), openstack-pkg-tools, python-all (>= 2.6.6-3~), python-ply, python-setuptools, python3-all, python3-ply, python3-setuptools Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-lesscpy.git Vcs-Git: git://anonscm.debian.org/openstack/python-lesscpy.git Homepage: https://pypi.python.org/pypi/lesscpy Package: python-lesscpy Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: python-ply, ${misc:Depends}, ${python:Depends} Replaces: python3-lesscpy (<< 0.9j) Recommends: ${python:Recommends} Description: LessCss Compiler for Python 2.x Lesscpy is a compiler written in Python for the lesscss language. It is very useful if node.js can't be installed in the environment. Not all features of lesscss are supported (yet). Some features wil probably never be supported (JavaScript evaluation). . This program uses PLY (Python Lex-Yacc) to tokenize/parse the input and is considerably slower than the nodejs compiler. . This package provides the Python 2.x module. Package: python3-lesscpy Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: python3-ply, ${misc:Depends}, ${python3:Depends} Recommends: ${python3:Recommends} Description: LessCss Compiler for Python 3.x Lesscpy is a compiler written in Python for the lesscss language. It is very useful if node.js can't be installed in the environment. Not all features of lesscss are supported (yet). Some features wil probably never be supported (JavaScript evaluation). . This program uses PLY (Python Lex-Yacc) to tokenize/parse the input and is considerably slower than the nodejs compiler. . This package provides the Python 3.x module. debian/rules0000755000000000000000000000140412223017006010236 0ustar #!/usr/bin/make -f UPSTREAM_GIT = git://github.com/robotis/Lesscpy.git include /usr/share/openstack-pkg-tools/pkgos.make PYTHONS:=$(shell pyversions -vr) PYTHON3S:=$(shell py3versions -vr) %: dh $@ --buildsystem=python_distutils --with python2,python3 override_dh_clean: dh_clean -O--buildsystem=python_distutils rm -rf build override_dh_auto_install: set -e && for pyvers in $(PYTHONS); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python-lesscpy; \ done set -e && for pyvers in $(PYTHON3S); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python3-lesscpy; \ done mv $(CURDIR)/debian/python3-lesscpy/usr/bin/lesscpy $(CURDIR)/debian/python3-lesscpy/usr/bin/python3-lesscpy debian/source/0000755000000000000000000000000012223017006010457 5ustar debian/source/format0000644000000000000000000000001412223017006011665 0ustar 3.0 (quilt) debian/gbp.conf0000644000000000000000000000024012223017006010572 0ustar [DEFAULT] upstream-branch = master debian-branch = debian/unstable upstream-tag = %(version)s compression = xz [git-buildpackage] export-dir = ../build-area/ debian/watch0000644000000000000000000000012012223017006010201 0ustar version=3 http://pypi.python.org/packages/source/l/lesscpy lesscpy-(.*).tar.gz