--- autorenamer-0.4.orig/debian/autorenamer.docs +++ autorenamer-0.4/debian/autorenamer.docs @@ -0,0 +1 @@ +README --- autorenamer-0.4.orig/debian/autorenamer.links +++ autorenamer-0.4/debian/autorenamer.links @@ -0,0 +1 @@ +/usr/share/autorenamer/autorenamer.py /usr/bin/autorenamer --- autorenamer-0.4.orig/debian/autorenamer.manpages +++ autorenamer-0.4/debian/autorenamer.manpages @@ -0,0 +1 @@ +autorenamer.1 --- autorenamer-0.4.orig/debian/autorenamer.menu +++ autorenamer-0.4/debian/autorenamer.menu @@ -0,0 +1,2 @@ +?package(autorenamer):needs="X11" section="Applications/File Management"\ + title="AutoRenamer" command="/usr/bin/autorenamer" --- autorenamer-0.4.orig/debian/changelog +++ autorenamer-0.4/debian/changelog @@ -0,0 +1,38 @@ +autorenamer (0.4-1) unstable; urgency=medium + + * New upstream version: + - [d5be76c] Port to GTK3 and redo thumbnail creation. + - [46d28aa] Update copyright year. + - [f61babb] Some reordering. + - [beb5c87] Disable "Toggle dirs" button if none are present. + - [6d28dce] Add a randomization function. + - [dbbf658] Fix dialog popup. + - [ee56909] Fix "Toggle directories". + - [ef8977c] Replace makefile with a setup script. + * Use dh_python2. + * Updated description, dependencies, Standards-Version, copyright years and + Vcs URL. + + -- Marcin Owsiany Wed, 02 Mar 2016 17:23:22 +0100 + +autorenamer (0.3-1) unstable; urgency=low + + * New upstream version. + - [1fbe5cd] Confirm closing window when there are unsaved changes. + * [86089b3] Added a homepage field. + + -- Marcin Owsiany Sat, 07 Jul 2012 08:19:13 +0100 + +autorenamer (0.2-1) unstable; urgency=low + + * New upstream version. Notable changes: + - [af90f14] The initial directory is the working directory. + - Make it possible to constrain renames by selecting entries. + + -- Marcin Owsiany Wed, 11 Jan 2012 22:40:24 +0000 + +autorenamer (0.1-1) unstable; urgency=low + + * Initial release (Closes: #650200) + + -- Marcin Owsiany Sun, 27 Nov 2011 17:43:38 +0000 --- autorenamer-0.4.orig/debian/compat +++ autorenamer-0.4/debian/compat @@ -0,0 +1 @@ +8 --- autorenamer-0.4.orig/debian/control +++ autorenamer-0.4/debian/control @@ -0,0 +1,23 @@ +Source: autorenamer +Section: utils +Priority: extra +Maintainer: Marcin Owsiany +Build-Depends: debhelper (>= 8), python, dh-python +Standards-Version: 3.9.6 +Vcs-Browser: https://github.com/porridge/autorenamer +Vcs-Git: git://github.com/porridge/autorenamer.git -b debian +Homepage: http://marcin.owsiany.pl/autorenamer-page + +Package: autorenamer +Architecture: all +Depends: python, gir1.2-gtk-3.0, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, ${misc:Depends}, ${python:Depends} +Description: program to rename files to make them sort in given order + This is a simple graphical program that lets you reorder the files using + drag-and-drop and then changes the names of the files such that their + alphabetical sorting matches the ordering you chose. You can also shuffle + the files. + . + Currently the renaming consists of prepending each filename with a short + number. + . + The program displays thumbnails of files using GNOME libraries. --- autorenamer-0.4.orig/debian/copyright +++ autorenamer-0.4/debian/copyright @@ -0,0 +1,35 @@ +Format: http://dep.debian.net/deps/dep5/ +Upstream-Name: autorenamer +Upstream-Contact: Marcin Owsiany +Source: https://github.com/porridge/autorenamer + +Files: * +Copyright: 2011-2016, Marcin Owsiany +License: BSD-2-Clause + +Files: autorenamer.py +Copyright: 2011-2016, Marcin Owsiany + 2007-2009, Jan Bodnar +License: BSD-2-Clause + +License: BSD-2-Clause + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + . + 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. + . + 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 HOLDER 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. --- autorenamer-0.4.orig/debian/gbp.conf +++ autorenamer-0.4/debian/gbp.conf @@ -0,0 +1,7 @@ +# autorenamer configuration file for git-buildpackage and friends +[DEFAULT] +upstream-branch=master +debian-branch=debian +[git-dch] +id-length=7 +meta=True --- autorenamer-0.4.orig/debian/rules +++ autorenamer-0.4/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f +export DH_VERBOSE=1 +%: + dh $@ --with python2 + +override_dh_auto_install: + python setup.py install --root=debian/autorenamer --install-layout=deb --install-lib=/usr/share/autorenamer --install-scripts=/usr/share/autorenamer + +override_dh_auto_build: