debian/0000755000000000000000000000000011602645172007172 5ustar debian/rules0000755000000000000000000000131411602645131010244 0ustar #!/usr/bin/make -f # -*- makefile -*- DEB_PYTHON_SYSTEM=pysupport include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/python-module.mk include /usr/share/cdbs/1/rules/patchsys-quilt.mk DEB_CONFIGURE_EXTRA_FLAGS := --no-compile --prefix $(DEB_DESTDIR)/usr --install-layout=deb binary-install/mirage:: /usr/bin/python setup.py install $(DEB_CONFIGURE_EXTRA_FLAGS) dh_pysupport -pmirage dh_installman debian/mirage.1 rm -f $(DEB_DESTDIR)/usr/share/mirage/COPYING rm -f $(DEB_DESTDIR)/usr/share/mirage/README rm -f $(DEB_DESTDIR)/usr/share/mirage/TODO rm -f $(DEB_DESTDIR)/usr/share/mirage/CHANGELOG configure/mirage:: python setup.py build clean:: /usr/bin/python setup.py clean debian/control0000644000000000000000000000156311602645131010575 0ustar Source: mirage Section: graphics Priority: extra Maintainer: Xavier Oswald Build-Depends: cdbs (>= 0.4.51), debhelper (>= 7), python-support (>= 0.7.6), python-dev (>= 2.6), python-gtk2-dev, quilt Standards-Version: 3.9.1 Homepage: http://mirageiv.berlios.de/ Package: mirage Architecture: any Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}, python-gtk2 Suggests: gimp, imagemagick, menu Description: fast and simple GTK+ image viewer Mirage is ideal for users who wish to keep their computers lean while still having a clean image viewer. . Features: * Supports png, jpg, svg, xpm, gif, bmp, tiff, and others * Preloading to navigate faster through images (optional) * Thumbnail pane for quick navigation * Slideshow and fullscreen mode * Rotating, zooming, flipping, resizing, and cropping * Custom user actions * Screenshot debian/mirage.postinst0000644000000000000000000000026411427515111012237 0ustar #! /bin/sh set -e #DEBHELPER# # Register our X Desktop Group Shared MIME-info Database info if [ -x /usr/bin/update-desktop-database ]; then update-desktop-database fi exit 0 debian/menu0000644000000000000000000000021411427515111010050 0ustar ?package(mirage):\ needs="X11"\ section="Applications/Viewers"\ title="Mirage"\ longtitle="Mirage image viewer"\ command="mirage" debian/watch0000644000000000000000000000026511427515111010220 0ustar version=3 opts=downloadurlmangle=s/prdownload/download/ \ http://developer.berlios.de/project/showfiles.php?group_id=6637 \ http://prdownload.berlios.de/mirageiv/mirage-(.*).tar.gz debian/copyright0000644000000000000000000000232411427515111011120 0ustar This package was debianized by Mike Massonnet on Sun, 14 Jan 2007 23:46:41 +0100. It was downloaded from Upstream Author: Scott Horowitz Copyright: Copyright 2006 Scott Horowitz License: This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. The Debian packaging is © 2007, Mike Massonnet and is licensed under the GPL, see above. debian/mirage.10000644000000000000000000000203211427515111010507 0ustar .TH MIRAGE 1 "January 15, 2007" .SH NAME mirage \- A fast and simple GTK+ Image Viewer .SH SYNOPSIS .B mirage [\fIOPTION\fR]... [\fIFILES\fR|\fIFOLDERS\fR]... .SH DESCRIPTION Mirage is a fast and simple GTK+ Image Viewer. .SH OPTIONS .TP \fB\-h\fR, \fB\-\-help\fR Show this help and exit .TP \fB\-v\fR, \fB\-\-version\fR Show version information and exit .TP \fB\-V\fR, \fB\-\-verbose\fR Show more detailed information .TP \fB\-R\fR, \fB\-\-recursive\fR Recursively include all images found in subdirectories of FOLDERS .TP \fB\-s\fR, \fB\-\-slideshow\fR Start in slideshow mode .TP \fB\-f\fR, \fB\-\-fullscreen\fR Start in fullscreen mode .TP \fB\-o\fR, \fB\-\-onload 'cmd'\fR Execute 'cmd' when an image is loaded (uses same syntax as custom actions, i.e. mirage \-o \(aqecho file is %F\(aq) .SH "SEE ALSO" .PP Website: http://mirageiv.berlios.de .SH AUTHOR Mirage was written by Scott Horowitz . .PP This manual page was written by Mike Massonnet , for the Debian project (but may be used by others). debian/docs0000644000000000000000000000001211427515111010030 0ustar CHANGELOG debian/pycompat0000644000000000000000000000000211427515111010733 0ustar 2 debian/patches/0000755000000000000000000000000011427524366010627 5ustar debian/patches/halfSelected.patch0000644000000000000000000000134511427524344014232 0ustar # mirage loads a cached image and does not update self.currimg_name. # Author: Evgeni Golov Index: mirage-0.9.5.1/mirage.py =================================================================== --- mirage-0.9.5.1.orig/mirage.py 2010-08-08 14:02:53.000000000 +0200 +++ mirage-0.9.5.1/mirage.py 2010-08-08 14:04:37.000000000 +0200 @@ -4000,6 +4000,7 @@ self.last_image_action_was_smart_fit = False elif self.open_mode == self.open_mode_1to1 or (self.open_mode == self.open_mode_last and self.last_mode == self.open_mode_1to1): self.last_image_action_was_fit = False + self.currimg_name = str(self.image_list[self.curr_img_in_list]) else: # Need to load the current image self.currimg_pixbuf = None debian/patches/remove_gimp_remote.patch0000644000000000000000000000213311427524366015533 0ustar # By default, Ctrl+E is bound to the gimp-remote-2.4 command, which is no # longer available in sid. # Author: Jakub Wilk . Index: mirage-0.9.5.1/mirage.py =================================================================== --- mirage-0.9.5.1.orig/mirage.py 2010-08-08 14:06:47.000000000 +0200 +++ mirage-0.9.5.1/mirage.py 2010-08-08 14:07:29.000000000 +0200 @@ -157,7 +157,7 @@ self.preloading_images = True self.action_names = ["Open in GIMP", "Create Thumbnail", "Create Thumbnails", "Move to Favorites"] self.action_shortcuts = ["e", "t", "t", "f"] - self.action_commands = ["gimp-remote-2.4 %F", "convert %F -thumbnail 150x150 %Pt_%N.jpg", "convert %F -thumbnail 150x150 %Pt_%N.jpg", "mkdir -p ~/mirage-favs; mv %F ~/mirage-favs; [NEXT]"] + self.action_commands = ["gimp %F &", "convert %F -thumbnail 150x150 %Pt_%N.jpg", "convert %F -thumbnail 150x150 %Pt_%N.jpg", "mkdir -p ~/mirage-favs; mv %F ~/mirage-favs; [NEXT]"] self.action_batch = [False, False, True, False] self.onload_cmd = None self.searching_for_images = False debian/patches/series0000644000000000000000000000005411427517632012041 0ustar halfSelected.patch remove_gimp_remote.patch debian/changelog0000644000000000000000000001053211602645172011045 0ustar mirage (0.9.5.1-1.1) unstable; urgency=low * Non-maintainer upload. * Patch by Jakub Wilk to fix FTBFS with python 2.7 (closes: #628830). -- Julien Cristau Wed, 29 Jun 2011 17:53:19 +0200 mirage (0.9.5.1-1) unstable; urgency=low * New upstream release. * Python 2.6 migration (Closes: #590361). * Bump Stantards-Version to 3.9.1. * Refresh halfSelected.patch and remove_gimp_remote.patch. * Remove xdg_specification.patch, fixed upstream. -- Xavier Oswald Thu, 12 Aug 2010 09:20:30 +0200 mirage (0.9.3-5.1) unstable; urgency=low * Non-maintainer upload. * Update debian/control. - Update python-dev of version from 2.5 to 2.6. - Update XS-Python-Version from 2.5 to 2.6. -- Nobuhiro Iwamatsu Fri, 06 Aug 2010 08:59:39 +0900 mirage (0.9.3-5) unstable; urgency=low * Fix dh_pysupport call, so only python-support controlled files are installed (Closes: #566038) * Fix half-selected images (Closes: #536285). Thanks to Evgeni Golov patch * Provide a mirage menu item (Closes: #550023) * Add XDG base directory specification support (Closes: #535816). Thanks to Jakub Wilk patch * Add suggest gimp, imagemagick, menu (Closes: #535822) * By default, Ctrl+E is bound to the gimp-remote-2.4 command, which is no longer available in sid (Closes: #535817) Thanks to Jakub Wilk patch * Switch to dpkg-source 3.0 (quilt) format * Bump Standards-Version to 3.8.4 -- Xavier Oswald Wed, 10 Feb 2010 00:29:30 +0100 mirage (0.9.3-4) unstable; urgency=low * Remove forgotten DM flag * Support python transition (Closes: #532827) * Remove uploaders Mike Massonet (Thanks Mike for your work) -- Xavier Oswald Fri, 12 Jun 2009 14:30:25 +0200 mirage (0.9.3-3) unstable; urgency=low * debian/control: + Change my mail address + Bump Standards-Version to 3.8.1 + Update debhelper to 7 + Remove DM flag * Update debian/compat to 7 * Remove twice README, TODO and CHANGELOG * Fix lintian warnings: W: mirage: desktop-mimetype-without-update-call /usr/share/applications/mirage.desktop W: mirage source: debhelper-but-no-misc-depends mirage I: mirage: copyright-with-old-dh-make-debian-copyright -- Xavier Oswald Thu, 23 Apr 2009 00:43:54 +0200 mirage (0.9.3-2) unstable; urgency=low * Update debian policy to 3.8.0 * Add XS-Python-Version: current (Closes: #484701) * Add dh_installchangelogs -- Xavier Oswald Mon, 16 Jun 2008 11:35:12 +0200 mirage (0.9.3-1) unstable; urgency=low [ Xavier Oswald ] * Remove quilt from Build-Depends * Remove leftover .pc/.version [ Mike Massonnet ] * New upstream release * Bump Python version to 2.5 * Add DM-Upload-Allowed: flag * Install upstream changelog file * Drop patch for desktop entry file (fixed upstream) -- Xavier Oswald Thu, 05 Jun 2008 12:48:37 +0200 mirage (0.9.2-2) unstable; urgency=low [ Mike Massonnet ] * Replace python-central against python-support and go for cdbs -- Mike Massonnet (mmassonnet) Wed, 12 Mar 2008 01:28:47 +0100 mirage (0.9.2-1) unstable; urgency=low [ Xavier Oswald ] * New upstream release * Update debian policy to 3.7.3 * Add watch file (Closes: #463174) * Remove mirage.desktop patch, fixed upstream * Add Homepage field in the control file [ Mike Massonnet ] * Refined the description * Fixed manpage * Add Build-dep: quilt to patch the errors reported by desktop-file-validate -- Xavier Oswald Wed, 20 Feb 2008 08:19:57 +0100 mirage (0.9-1) unstable; urgency=low * New upstream release * Use desktop.patch to fix mirage.desktop policy * Update copyright from GPLv2 to GPLv3 * EXIF tags saved after rotating an image (Closes: #415208) -- Xavier Oswald Mon, 29 Oct 2007 10:40:10 +0100 mirage (0.8.3-1) unstable; urgency=low * New upstream release * Use "*" for the long description (Closes: #410664) -- Xavier Oswald Mon, 12 Feb 2007 20:46:28 +0100 mirage (0.8.2-1) unstable; urgency=low * Initial release (Closes: #381523) * Clean debian/rules * Solve the lintian warning about the license -- Xavier Oswald Mon, 15 Jan 2007 13:56:20 +0100 debian/compat0000644000000000000000000000000211427515111010362 0ustar 7 debian/source/0000755000000000000000000000000011427515111010464 5ustar debian/source/format0000644000000000000000000000001411427515111011672 0ustar 3.0 (quilt)