summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--debian/changelog19
-rw-r--r--debian/compat1
-rw-r--r--debian/control40
-rw-r--r--debian/copyright53
-rw-r--r--debian/manpages1
-rw-r--r--debian/patches/05_removed-empty-directory.diff15
-rw-r--r--debian/patches/series1
-rw-r--r--debian/pyversions1
-rwxr-xr-xdebian/rules16
-rw-r--r--debian/source/format1
-rw-r--r--debian/source/local-options2
-rw-r--r--debian/watch2
13 files changed, 153 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..845ca06
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.pc
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..06a0e1f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,19 @@
+rapid-photo-downloader (0.3.3-3) experimental; urgency=low
+
+ * Remove DMUA field, now useless
+ * Add (X-)Python-Version: fields in control file, as per Python Policy
+
+ -- Julien Valroff <julien@debian.org> Mon, 22 Nov 2010 21:34:48 +0100
+
+rapid-photo-downloader (0.3.3-2) experimental; urgency=low
+
+ * Update my email address
+ * Fix watch file
+
+ -- Julien Valroff <julien@debian.org> Mon, 08 Nov 2010 21:43:55 +0100
+
+rapid-photo-downloader (0.3.3-1) experimental; urgency=low
+
+ * Initial release (Closes: #539183)
+
+ -- Julien Valroff <julien@kirya.net> Mon, 25 Oct 2010 18:42:48 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..dde3a37
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: rapid-photo-downloader
+Section: graphics
+Priority: optional
+Maintainer: Julien Valroff <julien@debian.org>
+Build-Depends: debhelper (>= 7.0.50~),
+ python
+Build-Depends-Indep: python-support (>= 0.90),
+ gettext
+Standards-Version: 3.9.1
+X-Python-Version: >= 2.5
+Homepage: http://damonlynch.net/rapid
+Vcs-Git: git://git.kirya.net/git/rapid-photo-downloader.git
+Vcs-Browser: http://git.kirya.net/?p=rapid-photo-downloader.git;a=summary
+
+Package: rapid-photo-downloader
+Architecture: all
+Depends: ${python:Depends},
+ ${misc:Depends},
+ python-gnome2,
+ python-gtk2 (>= 2.12),
+ python-glade2 (>= 2.12),
+ python-gconf (>= 2.18),
+ python-gnome2 (>= 2.12),
+ python-pyexiv2 (>= 0.1.1),
+ python-notify,
+ librsvg2-common,
+ gnome-icon-theme,
+ librsvg2-common
+Recommends:
+ python-imaging,
+ python-kaa-metadata,
+ python-hachoir-metadata,
+ ffmpegthumbnailer
+XB-Python-Version: ${python:Versions}
+Description: Photo downloader (importer) from cameras, memory cards other devices
+ Rapid Photo Downloader can be used by both professional and amateur
+ photographers to download photos and videos from multiple cameras,
+ memory cards and Portable Storage Devices simultaneously. It provides
+ many flexible, user-defined options for subfolder creation, photo and
+ video renaming, and backup.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..11c5c94
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,53 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: rapid-photo-downloader
+Maintainer: Damon Lynch <damonlynch@gmail.com>
+Source: https://launchpad.net/rapid
+
+Files: *
+Copyright: 2007-2010 Damon Lynch <damonlynch@gmail.com>
+License: GPL-2+
+ On Debian systems the full text of the GNU Lesser General Public
+ License can be found in the `/usr/share/common-licenses/GPL'
+ file.
+
+Files: rapid/ValidatedEntry.py
+Copyright: 2006 Daniel J. Popowich <dpopowich@astro.umass.edu>
+License: other
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated documentation files
+ (the "Software"), to deal in the Software without restriction,
+ including without limitation the rights to use, copy, modify, merge,
+ publish, distribute, sublicense, and/or sell copies of the Software,
+ and to permit persons to whom the Software is furnished to do so,
+ subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+
+Files: rapid/gnomeglade.py, rapid/misc.py, rapid/prefs.py, rapid/paths.py
+Copyright: 2002-2006 Stephen Kennedy <stevek@gnome.org>
+License: GPL-2+
+ On Debian systems the full text of the GNU Lesser General Public
+ License can be found in the `/usr/share/common-licenses/GPL'
+ file.
+
+Files: rapid/idletube.py
+Copyright: 2005 Antoon Pardon
+License: other
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the "Software"),
+ to deal in the Software without restriction, including without limitation
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ and/or sell copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+
+Files: debian/*
+Copyright: 2009 Damon Lynch <damonlynch@gmail.com>
+ 2009-2010 Julien Valroff <julien@kirya.net>
+License: GPL-2+.
+ On Debian systems the full text of the GNU Lesser General Public
+ License can be found in the `/usr/share/common-licenses/GPL'
+ file.
diff --git a/debian/manpages b/debian/manpages
new file mode 100644
index 0000000..c12dd1b
--- /dev/null
+++ b/debian/manpages
@@ -0,0 +1 @@
+rapid-photo-downloader.1
diff --git a/debian/patches/05_removed-empty-directory.diff b/debian/patches/05_removed-empty-directory.diff
new file mode 100644
index 0000000..c57450d
--- /dev/null
+++ b/debian/patches/05_removed-empty-directory.diff
@@ -0,0 +1,15 @@
+Description: Remove empty directory from installation
+Author: Julien Valroff <julien@debian.org>
+
+diff -Nur -x '*.orig' -x '*~' rapid-photo-downloader/setup.py rapid-photo-downloader.new/setup.py
+--- rapid-photo-downloader/setup.py 2009-07-26 14:18:01.000000000 +0200
++++ rapid-photo-downloader.new/setup.py 2009-11-15 09:42:03.969423282 +0100
+@@ -66,7 +66,6 @@
+ data_files=[
+ ('share/applications', ['data/rapid-photo-downloader.desktop']),
+ ('share/pixmaps', ['data/icons/48x48/apps/rapid-photo-downloader.png', 'data/icons/rapid-photo-downloader.xpm']),
+- ('share/icons/hicolor/scalable/apps', glob.glob('data/icons/scalable/apps/*.svg')),
+ ('share/icons/hicolor/16x16/apps', glob.glob('data/icons/16x16/apps/*.png')),
+ ('share/icons/hicolor/22x22/apps', glob.glob('data/icons/22x22/apps/*.png')),
+ ('share/icons/hicolor/24x24/apps', glob.glob('data/icons/24x24/apps/*.png')),
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..bff31eb
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+05_removed-empty-directory.diff
diff --git a/debian/pyversions b/debian/pyversions
new file mode 100644
index 0000000..3ec13be
--- /dev/null
+++ b/debian/pyversions
@@ -0,0 +1 @@
+2.5-2.6
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..87f510b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+%:
+ dh $@
+
+override_dh_auto_configure:
+ pod2man --section=1 --release=$(VERSION) --center "" doc/rapid-photo-downloader.pod > rapid-photo-downloader.1
+
+override_dh_auto_install:
+ dh_auto_install
+ -rm -rf debian/rapid-photo-downloader/usr/share/icons/hicolor/scalable/
+
+override_dh_auto_clean:
+ -rm rapid-photo-downloader.1
+ -rm -rf build/
+ dh_auto_clean
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/source/local-options b/debian/source/local-options
new file mode 100644
index 0000000..9cdfca9
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1,2 @@
+unapply-patches
+abort-on-upstream-changes
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..31e87de
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://launchpad.net/rapid/+download .*/rapid-photo-downloader-([0-9.]+)\.tar\.gz