debian/0000755000000000000000000000000011747062412007172 5ustar debian/source/0000755000000000000000000000000011747062360010474 5ustar debian/source/format0000644000000000000000000000001411407443644011703 0ustar 3.0 (quilt) debian/python3-easygui.docs0000644000000000000000000000006211565267253013122 0ustar easygui_py3doc.html py3_easygui_version_info.html debian/changelog0000644000000000000000000000237111747062346011055 0ustar python-easygui (0.96-3) unstable; urgency=low [Adreas Noteng] * Enable jpeg and png graphics by adding Recommends: python-imaging-tk (LP: #774720) * Bump Standards-Version to 3.9.3 -Update debian/copyright to machine readable copyright file version 1 * Add missing python-tk/python3-tk dependency (LP: #818473) [Charlie Smotherman] * debian/rules - changed to dh $@ --with python2,python3 - added rules to build python3 package * debian/control - increased min python version to (>=2.6.6-3) - changed XS-P-V to X-P-V >=2.5 - removed ${python:Breaks} - wrapped text in Description - added python3-all (>= 3.1.2-6~) to B-D - increased debhelper to (>= 7.0.50~), because we use dh overrides. - added X-Python3-Version: >= 3.0. - added python3-easygui binary stanza. - removed myself from Uploaders. -- Andreas Noteng Sat, 28 Apr 2012 23:35:22 +0200 python-easygui (0.96-2) unstable; urgency=low * Team upload. * Rebuild to add Python 2.7 support -- Piotr Ożarowski Sun, 08 May 2011 16:45:48 +0200 python-easygui (0.96-1) unstable; urgency=low * Initial release (Closes: #586505) -- Andreas Noteng Thu, 14 Oct 2010 22:51:23 +0200 debian/python3-easygui.doc-base0000644000000000000000000000050711742225405013641 0ustar Document: python3-easygui Title: EasyGUI Manual Author: Steve Ferg Abstract: This manual describes what EasyGUI is, and how to use it to create simple GUIs for your Python scripts. Section: Programming/Python Format: HTML Index: /usr/share/doc/python3-easygui/easygui_py3doc.html Files: /usr/share/doc/python3-easygui/*.html debian/python-easygui.doc-base0000644000000000000000000000050311742225405013552 0ustar Document: python-easygui Title: EasyGUI Manual Author: Steve Ferg Abstract: This manual describes what EasyGUI is, and how to use it to create simple GUIs for your Python scripts. Section: Programming/Python Format: HTML Index: /usr/share/doc/python-easygui/easygui_pydoc.html Files: /usr/share/doc/python-easygui/*.html debian/control0000644000000000000000000000322711747061707010607 0ustar Source: python-easygui Section: python Priority: optional Maintainer: Andreas Noteng Uploaders: Debian Python Modules Team Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3), python3-all (>= 3.1.2-6~) Standards-Version: 3.9.3 X-Python-Version: >= 2.5 X-Python3-Version: >= 3.0 Homepage: http://easygui.sourceforge.net/ Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-easygui/trunk/ Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-easygui/trunk/ Package: python-easygui Architecture: all Depends: python-tk, ${misc:Depends}, ${python:Depends} Recommends: python-imaging-tk Description: module for very simple, very easy GUI programming in Python This package provides the Python modules EasyGUI. Experienced Pythonistas need support for quick and dirty GUI features. New Python programmers need GUI capabilities that don't require any knowledge of Tkinter, frames, widgets, callbacks or lambda. This is what EasyGUI provides. Using EasyGUI, all GUI interactions are invoked by simple function calls. Package: python3-easygui Architecture: all Depends: python3-tk, ${misc:Depends}, ${python3:Depends} Description: module for very simple, very easy GUI programming in Python3 This package provides the Python3 modules EasyGUI. Experienced Pythonistas need support for quick and dirty GUI features. New Python programmers need GUI capabilities that don't require any knowledge of Tkinter, frames, widgets, callbacks or lambda. This is what EasyGUI provides. Using EasyGUI, all GUI interactions are invoked by simple function calls. debian/copyright0000644000000000000000000000346611741372227011140 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: EasyGUI Upstream-Contact: Steve Ferg Source: http://easygui.sourceforge.net/ Comment: The license in the tarball is not updated, upstream changed the license after the release of the v0.96 source tarball. Please see the upstream download page for confirmation: http://easygui.sourceforge.net/download/version0.96/ Files: * Copyright: 2008 Steve Ferg License: BSD-3-clause Files: debian/* Copyright: 2010-2012, Andreas Noteng 2011, Charlie Smotherman License: BSD-3-clause License: BSD-3-clause 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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/rules0000755000000000000000000000145511740420162010250 0ustar #!/usr/bin/make -f PYVERS := $(shell pyversions -r) PY3VERS := $(shell py3versions -r) %: dh $@ --with python2,python3 override_dh_auto_build: set -ex; \ for py in $(PYVERS) $(PY3VERS); do \ $$py setup.py build; \ done override_dh_auto_install: set -ex; \ for py in $(PYVERS); do \ $$py setup.py install --skip-build --root debian/python-easygui \ --install-layout deb; \ done set -ex; \ for py in $(PY3VERS); do \ $$py setup.py install --skip-build --root debian/python3-easygui \ --install-layout deb; \ done override_dh_installdocs: cp easygui_pydoc.html easygui_py3doc.html cp easygui_version_info.html py3_easygui_version_info.html dh_installdocs override_dh_auto_clean: rm -rf build *.egg.info rm -rf easygui_py3doc.html rm -rf py3_easygui_version_info.html dh_auto_clean debian/watch0000644000000000000000000000007311741334453010224 0ustar version=3 http://sf.net/easygui/easygui-([0-9.]+)\.tar\.gz debian/python-easygui.docs0000644000000000000000000000005511565267253013041 0ustar easygui_pydoc.html easygui_version_info.html debian/compat0000644000000000000000000000000211407434124010364 0ustar 7