diff -Nru catfish-1.0.2/debian/changelog catfish-1.0.2/debian/changelog --- catfish-1.0.2/debian/changelog 2014-03-13 20:31:54.000000000 +0000 +++ catfish-1.0.2/debian/changelog 2014-03-31 06:07:56.000000000 +0000 @@ -1,3 +1,17 @@ +catfish (1.0.2-2) unstable; urgency=medium + + * Team upload. + * Change python version to python3, improves case-insensitive + search for non-english file names (lp: #1280607) + * debian/control: + - Change dependencies to python3 + - Remove suggests for python-zeitgeist, no python3-zeitgeist + * debian/rules: + - Change build to python3 + - Removed obsolete line for pexpect license + + -- Sean Davis Sat, 29 Mar 2014 23:03:33 -0400 + catfish (1.0.2-1) unstable; urgency=medium * New upstream release diff -Nru catfish-1.0.2/debian/control catfish-1.0.2/debian/control --- catfish-1.0.2/debian/control 2014-03-13 20:31:28.000000000 +0000 +++ catfish-1.0.2/debian/control 2014-03-31 06:03:42.000000000 +0000 @@ -3,8 +3,7 @@ Priority: optional Maintainer: Jackson Doak Uploaders: Python Applications Team -Build-Depends: debhelper (>= 9), python, - python-distutils-extra (>= 2.10) +Build-Depends: debhelper (>= 9), python3, python3-distutils-extra Standards-Version: 3.9.5 Homepage: https://launchpad.net/catfish-search Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/catfish/trunk/ @@ -12,17 +11,15 @@ Package: catfish Architecture: all -Depends: ${python:Depends}, +Depends: ${python3:Depends}, ${misc:Depends}, gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-pango-1.0, gir1.2-gdkpixbuf-2.0, - python-gi-cairo, - python-pexpect + python3-gi-cairo, + python3-pexpect Recommends: mlocate | locate -Suggests: python-zeitgeist, - zeitgeist Description: File searching tool which is configurable via the command line Catfish is a handy file searching tool for Linux and UNIX. The interface is intentionally lightweight and simple, using only Gtk+3. diff -Nru catfish-1.0.2/debian/rules catfish-1.0.2/debian/rules --- catfish-1.0.2/debian/rules 2014-03-13 20:31:28.000000000 +0000 +++ catfish-1.0.2/debian/rules 2014-03-31 06:07:03.000000000 +0000 @@ -6,15 +6,11 @@ DESTDIR := ${CURDIR}/debian/catfish %: - dh $@ --with python2 + dh $@ --with python3 override_dh_auto_configure: - ./configure --prefix=/usr + ./configure --prefix=/usr --python=python3 override_dh_auto_install: dh_auto_install find $(DESTDIR)/usr/share -type f -exec chmod a-x '{}' ';' - rm -f $(DESTDIR)/usr/share/catfish/catfish_lib/pexpect/LICENSE - -override_dh_installchanglogs: - dh_installchangeslogs ChangeLog