debian/0000755000000000000000000000000011612507142007165 5ustar debian/docs0000644000000000000000000000002111372311234010027 0ustar NEWS README TODO debian/control0000644000000000000000000000166011612252732010575 0ustar Source: pyntor Section: editors Priority: optional Maintainer: Vanessa Gutierrez Build-Depends: debhelper (>= 7.0.50~) Build-Depends-Indep: python, python-support (>= 0.4) Standards-Version: 3.9.2 Homepage: http://pyntor.coolprojects.org/ Package: pyntor Architecture: all Depends: ${python:Depends}, python-pygame, ${misc:Depends} Description: flexible and componentized presentation program Pyntor is a small, flexible and componentized presentation program. It is built upon Python and the SDL library (via pygame). Pyntor features a wiki-like presentation component, a HTML page component (Pyromaniac), and several more. Standard features like PDF/HTML export, page selection and interactivity are available, as are advanced features such as full-text search in the presentation slides. . Due to the minimal size and maximum configurability, Pyntor is a nice alternative to conventional presentation programs. debian/rules0000755000000000000000000000221511612507135010247 0ustar #!/usr/bin/make -f # -*- makefile -*- # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: dh_testdir touch $@ clean: dh_testdir dh_testroot rm -f build-stamp [ ! -f Makefile ] || $(MAKE) clean rm -f config.sub config.guess config.log dh_clean install: build dh_testdir dh_testroot dh_prep # Add here commands to install the package into debian/pyntor. $(MAKE) install prefix=$(CURDIR)/debian/pyntor/usr # Let's do it with dh_installexamples rm $(CURDIR)/debian/pyntor/usr/share/pyntor/pyntor-selfrun.template # Removed this file since it maakes no sense to have a menu entry rm -rf $(CURDIR)/debian/pyntor/usr/share/applications # Build architecture-dependent files here. binary-indep: build install dh_testdir dh_testroot dh_installchangelogs dh_installexamples dh_installdocs dh_installman dh_pysupport dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary-arch: build install binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/watch0000644000000000000000000000010711372504746010226 0ustar version=3 http://pyntor.coolprojects.org/download/pyntor-(.*)\.tar\.gz debian/changelog0000644000000000000000000000443311612506565011053 0ustar pyntor (0.6-4) unstable; urgency=low * Removed menu entry (LP: #750148). * Updated Debian Policy version to 3.9.2. * Added recommended targets for porting scripts. -- Vanessa Gutierrez Fri, 22 Jul 2011 07:50:38 -0300 pyntor (0.6-3) unstable; urgency=low * New Maintainer (Closes: #523194) * debian/rules: New target schema. * debian/copyright: updated copyright symbol. * Adding main Category for .desktop file and drop deprecated Encoding key. * Moved selfrun template to examples dir. -- Vanessa Gutierrez Sun, 20 Jun 2010 01:51:56 -0300 pyntor (0.6-2) unstable; urgency=low * QA upload. * Switch to dpkg-source 3.0 (quilt) format - Move diff.gz patches into patches/, added source/format * debian/control - Set maintainer to QA group, added Homepage - Update Standards-Version to 3.8.4 (no other changes required) - Change python-dev to python in Build-Depends-Indep * debian/control, debian/rules, debian/compat - Switch to debhelper sequencer, bump debhelper version and compat * debian/watch - Added watch file -- Ricardo Mones Wed, 12 May 2010 13:27:46 +0200 pyntor (0.6-1.1) unstable; urgency=low * Non-maintainer upload. * Update package to the last python policy (Closes: #380911). * Move sdlnewstuffpyntor.py to /usr/share/pyntor, and fix tools/pyntor-components sys.path accordingly. -- Pierre Habouzit Fri, 1 Sep 2006 14:32:19 +0200 pyntor (0.6-1) unstable; urgency=low * New upstream release (Closes: #366781). * Bump up Standards-Version to 3.7.2 (no changes). * Moved python build-dep to build-dep-indep. -- Florian Ragwitz Sat, 27 May 2006 16:31:50 +0200 pyntor (0.5+svn46-3) unstable; urgency=low * Added missing dependency to python-pygame (Closes: #358188). -- Florian Ragwitz Tue, 21 Mar 2006 18:21:49 +0100 pyntor (0.5+svn46-2) unstable; urgency=low * Use Architecture: all instead of any as this package does not contain architecture dependent code (Closes: #357721). -- Florian Ragwitz Sun, 19 Mar 2006 21:54:30 +0100 pyntor (0.5+svn46-1) unstable; urgency=low * Initial release (Closes: #349534). -- Florian Ragwitz Tue, 24 Jan 2006 01:20:22 +0100 debian/compat0000644000000000000000000000000211372504746010375 0ustar 7 debian/source/0000755000000000000000000000000011372510465010472 5ustar debian/source/format0000644000000000000000000000001411372504746011705 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000011612360356010620 5ustar debian/patches/new-python-policy.patch0000644000000000000000000000166311372510346015253 0ustar Subject: New Python Policy fixes Author: Pierre HABOUZIT Bug-Debian: http://bugs.debian.org/380911 --- pyntor-0.6.orig/Makefile +++ pyntor-0.6/Makefile @@ -11,9 +11,9 @@ @cp pyntor $(prefix)/bin @cp selfrun/pyntor-selfrun $(prefix)/bin @cp tools/pyntor-components $(prefix)/bin - @echo "-- libraries ($(prefix)/lib/site-python)" - @mkdir -p $(prefix)/lib/site-python - @cp tools/sdlnewstuffpyntor.py $(prefix)/lib/site-python + @echo "-- libraries ($(prefix)/share/pyntor)" + @mkdir -p $(prefix)/share/pyntor + @cp tools/sdlnewstuffpyntor.py $(prefix)/share/pyntor @echo "-- data files ($(prefix)/share/pyntor)" @mkdir -p $(prefix)/share/pyntor @cp -r components $(prefix)/share/pyntor --- pyntor-0.6.orig/tools/pyntor-components +++ pyntor-0.6/tools/pyntor-components @@ -15,6 +15,7 @@ import getopt import glob +sys.path.append('/usr/share/pyntor') import sdlnewstuffpyntor version = "0.0+svn-20060225" debian/patches/series0000644000000000000000000000006311407323644012035 0ustar new-python-policy.patch desktop-category-fix.patch debian/patches/desktop-category-fix.patch0000644000000000000000000000134611612360356015715 0ustar Subject: Adding Main category for .desktop file Author: Vanessa Gutierrez Index: pyntor-0.6/data/pyntor.desktop =================================================================== --- pyntor-0.6.orig/data/pyntor.desktop 2011-07-22 17:42:10.000000000 -0300 +++ pyntor-0.6/data/pyntor.desktop 2011-07-22 17:43:20.000000000 -0300 @@ -1,12 +1,11 @@ [Desktop Entry] -Encoding=UTF-8 +Type=Application Name=Pyntor +Exec=/usr/bin/pyntor /usr/share/doc/pyntor/example/script Comment=Viewer for presentation slides Comment[de]=Präsentationsprogramm -Exec=pyntor %f Icon=pyntor -Terminal=false -Type=Application +Terminal=true MimeType=application/x-pyntor; #FilePattern=pyntor -Categories=Presentation; +Categories=Office; debian/copyright0000644000000000000000000000066011407332646011131 0ustar This package was debianized by Florian Ragwitz on Tue, 24 Jan 2006 01:20:22 +0100. It was downloaded from http://pyntor.coolprojects.org/ Upstream author: Josef Spillner Copyright © 2004-2006 Josef Spillner License: Published under GNU GPL conditions On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. debian/examples0000644000000000000000000000004011612506534010724 0ustar selfrun/pyntor-selfrun.template