debian/0000755000000000000000000000000012256342352007172 5ustar debian/copyright0000644000000000000000000000355112247145101011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Contact: Jorge Bastida Upstream-Name: glue Source: http://pypi.python.org/pypi/glue Files: * Copyright: Copyright 2012-2013, Jorge Bastida License: BSD (3 clause) Files: debian/* Copyright: Copyright 2012-2013, Angel Abad License: BSD (3 clause) License: BSD (3 clause) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . * Redistributions of source code _must_ retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form may or may not reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of XySSL nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS 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 OWNER OR CONTRIBUTORS 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. debian/changelog0000644000000000000000000000351212256342301011037 0ustar glue (0.4-1) unstable; urgency=medium * Imported Upstream version 0.4 * Declare compliance with Debian Policy 3.9.5. * debian/patches/20_use_pil_instead_pillow: - Removed, now Debian ships pillow package. * debian/patches/20_use_correct_pillow_version: - Use >= instead == in Pillow version dependency. -- Angel Abad Tue, 24 Dec 2013 18:30:21 +0100 glue (0.3-1) unstable; urgency=low * Imported Upstream version 0.3 * debian/watch: Use https in pypi * debian/copyright: Update years * debian/control: - Switch python-sphinx to B-D again because it is needed in the clean target - Use canonical url in Vcs-Git -- Angel Abad Thu, 11 Apr 2013 17:58:05 +0200 glue (0.2.9.1-1) unstable; urgency=low * Imported Upstream version 0.2.9.1 * debian/patches/20_use_pil_instead_pillow: - Use PIL instead Pillow, Pillow is a PIL fork, but at the moment isnt present in Debian. * debian/control: - Switch python-sphinx to B-D-I. - Change Vcs-Git to canonical URI (git://anonscm.debian.org). * Bump Standards-Version to 3.9.4. -- Angel Abad Thu, 10 Jan 2013 10:52:46 +0100 glue (0.2.6.1-1) unstable; urgency=low * Imported Upstream version 0.2.6.1 -- Angel Abad Mon, 16 Jul 2012 14:12:25 +0200 glue (0.2.5-3) unstable; urgency=low * debian/control: Depends on python-pkg-resources for load_entry_point -- Angel Abad Wed, 23 May 2012 13:51:15 +0200 glue (0.2.5-2) unstable; urgency=low * debian/copyright: Fix typo in upstream copyright * debian/control: Update section to graphics -- Angel Abad Mon, 21 May 2012 23:43:08 +0200 glue (0.2.5-1) unstable; urgency=low * Initial release (Closes: #672360) -- Angel Abad Mon, 21 May 2012 12:57:20 +0200 debian/watch0000644000000000000000000000016412247145101010215 0ustar version=2 https://pypi.python.org/pypi/glue https://pypi.python.org/packages/source/g/glue/glue-(.+).tar.gz#md5=.* debian/compat0000644000000000000000000000000212247145101010361 0ustar 7 debian/README.Debian0000644000000000000000000000013212247145101011220 0ustar glue is so generic command name, so in Debian systems we will rename it to glue-sprites. debian/source/0000755000000000000000000000000012247145101010463 5ustar debian/source/format0000644000000000000000000000001412247145101011671 0ustar 3.0 (quilt) debian/pydist-overrides0000644000000000000000000000002412247145101012416 0ustar pil python-imaging debian/patches/0000755000000000000000000000000012256342125010617 5ustar debian/patches/series0000644000000000000000000000006012256342044012030 0ustar 10_rename_command 20_use_correct_pillow_version debian/patches/20_use_correct_pillow_version0000644000000000000000000000052312256342125016513 0ustar Description: Use >= instead == in Pillow version dependency Author: Angel Abad --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ py_modules=['glue'], platforms='any', install_requires=[ - 'Pillow==1.7.8' + 'Pillow>=1.7.8' ], classifiers=[ 'Development Status :: 4 - Beta', debian/patches/10_rename_command0000644000000000000000000000071612247145101014006 0ustar Description: Rename glue command glue is so generic, so we rename to glue-sprite for Debian systems. Author: Angel Abad --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ try: from setuptools import setup kw = {'entry_points': - """[console_scripts]\nglue = glue:main\n""", + """[console_scripts]\nglue-sprite = glue:main\n""", 'zip_safe': False} except ImportError: from distutils.core import setup debian/rules0000755000000000000000000000045612247145101010250 0ustar #!/usr/bin/make -f %: dh $@ --with python2,sphinxdoc override_dh_installdocs: python setup.py build_sphinx dh_installdocs build/sphinx/html override_dh_installchangelogs: dh_installchangelogs docs/changelog.rst override_dh_auto_clean: rm -rf glue.egg-info rm -rf build/sphinx dh_auto_clean debian/control0000644000000000000000000000156612256340250010600 0ustar Source: glue Maintainer: Angel Abad Section: graphics Priority: optional Build-Depends: debhelper (>= 7.4.3), python-setuptools (>= 0.6b3), python (>= 2.6.6-3), python-sphinx (>= 1.0.7+dfsg) Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/collab-maint/glue.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/glue.git Homepage: http://gluecss.com X-Python-Version: >= 2.6 Package: glue-sprite Architecture: all Depends: ${misc:Depends}, ${python:Depends}, ${sphinxdoc:Depends}, python-pkg-resources Recommends: optipng Description: Simple command line tool to generate CSS sprites Glue is a simple command line tool to generate CSS sprites using any kind of source images like PNG, JPEG or GIF. Glue will generate a unique PNG file containing every source image and a CSS file including the necessary CSS classes to use the sprite. debian/doc-base0000644000000000000000000000100112247145101010553 0ustar Document: glue-sprite Title: glue-sprite application documentation Author: Jorge Bastida Abstract: Documentation for glue command line tool to generate CSS sprites using any kind of source images like PNG, JPEG or GIF. Glue will generate a unique PNG file containing every source image and a CSS file including the necessary CSS classes to use the sprite. Section: Graphics Format: HTML Index: /usr/share/doc/glue-sprite/html/index.html Files: /usr/share/doc/glue-sprite/html/*.html debian/lintian-overrides0000644000000000000000000000007112247145101012542 0ustar glue-sprite: binary-without-manpage usr/bin/glue-sprite