summaryrefslogtreecommitdiff
path: root/trunk/debian
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/debian')
-rw-r--r--trunk/debian/changelog43
-rw-r--r--trunk/debian/compat1
-rw-r--r--trunk/debian/control22
-rw-r--r--trunk/debian/control.~1~22
-rw-r--r--trunk/debian/copyright23
-rw-r--r--trunk/debian/dimbola.docs2
-rw-r--r--trunk/debian/pycompat1
-rwxr-xr-xtrunk/debian/rules8
8 files changed, 122 insertions, 0 deletions
diff --git a/trunk/debian/changelog b/trunk/debian/changelog
new file mode 100644
index 0000000..d9be639
--- /dev/null
+++ b/trunk/debian/changelog
@@ -0,0 +1,43 @@
+dimbola (0.0.4) UNRELEASED; urgency=low
+
+ * debian/control: Dependency on dcraw demoted to recommendation,
+ since Dimbola does not absolutely have to have dcraw installed.
+
+ -- Lars Wirzenius <liw@liw.fi> Wed, 25 Nov 2009 21:47:17 +0200
+
+dimbola (0.0.3) karmic; urgency=low
+
+ * New upstream version.
+ * debian/control: No longer need to depend on netpbm.
+ * debian/control: Build-Depends on python 2.5, not 2.6, to allow
+ building on Debian sid.
+
+ -- Lars Wirzenius <liw@liw.fi> Sat, 24 Oct 2009 14:27:00 +0300
+
+dimbola (0.0.2) karmic; urgency=low
+
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 11 Oct 2009 18:00:17 +0300
+
+dimbola (0.0.1debian1) karmic; urgency=low
+
+ * Changes for getting Dimbola work on Debian sid.
+ * Depend on python-multiprocessing and python 2.5, or python 2.6.
+ * Added "from __future__ import with_statement" to every module
+ that uses the with statement.
+ * Removed unnecessary import of fractions module.
+
+ -- Lars Wirzenius <liw@liw.fi> Thu, 24 Sep 2009 19:47:43 +0300
+
+dimbola (0.0.1) karmic; urgency=low
+
+ * New upstream version.
+
+ -- Lars Wirzenius <liw@liw.fi> Thu, 24 Sep 2009 19:47:43 +0300
+
+dimbola (0.0.0) karmic; urgency=low
+
+ * Initial packaging. Note that this version probably won't work.
+
+ -- Lars Wirzenius <liw@liw.fi> Thu, 17 Sep 2009 23:12:44 +0300
diff --git a/trunk/debian/compat b/trunk/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/trunk/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/trunk/debian/control b/trunk/debian/control
new file mode 100644
index 0000000..2094747
--- /dev/null
+++ b/trunk/debian/control
@@ -0,0 +1,22 @@
+Source: dimbola
+Maintainer: Lars Wirzenius <liw@liw.fi>
+Section: graphics
+Priority: optional
+Standards-Version: 3.8.2
+Build-Depends: debhelper (>= 7.3.8), python-support (>= 1.0.3),
+ python (>= 2.5), markdown
+XS-Python-Version: >= 2.6
+Vcs-Bzr: http://bazaar.launchpad.net/%7Edimbola-team/dimbola/trunk/
+Homepage: https://launchpad.net/dimbola
+
+Package: dimbola
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-gtk2,
+ python-gnome2, python-pyexiv2, python (>= 2.5),
+ python-multiprocessing | python (>= 2.6)
+Recommends: dcraw
+XB-Python-Version: ${python:Versions}
+Description: manage digital photograph collection
+ A photographer's tool for managing a collection of digital photographs,
+ primarly in the RAW format.
+
diff --git a/trunk/debian/control.~1~ b/trunk/debian/control.~1~
new file mode 100644
index 0000000..51dad1a
--- /dev/null
+++ b/trunk/debian/control.~1~
@@ -0,0 +1,22 @@
+Source: dimbola
+Maintainer: Lars Wirzenius <liw@liw.fi>
+Section: graphics
+Priority: optional
+Standards-Version: 3.8.2
+Build-Depends: debhelper (>= 7.3.8), python-support (>= 1.0.3),
+ python (>= 2.5), markdown
+XS-Python-Version: >= 2.6
+Vcs-Bzr: http://bazaar.launchpad.net/%7Edimbola-team/dimbola/trunk/
+Homepage: https://launchpad.net/dimbola
+
+Package: dimbola
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-gtk2,
+ python-gnome2, python-pyexiv2, python (>= 2.5),
+ python-multiprocessing | python (>= 2.6), python-pyexiv2
+Recommends: dcraw
+XB-Python-Version: ${python:Versions}
+Description: manage digital photograph collection
+ A photographer's tool for managing a collection of digital photographs,
+ primarly in the RAW format.
+
diff --git a/trunk/debian/copyright b/trunk/debian/copyright
new file mode 100644
index 0000000..98eeba5
--- /dev/null
+++ b/trunk/debian/copyright
@@ -0,0 +1,23 @@
+Dimbola was originally written Lars Wirzenius <liw@liw.fi>.
+
+All of the code is currently owned by Lars Wirzenius and licensed under
+the GNU GPL version 3, or later version.
+
+ Copyright (C) 2009 Lars Wirzenius <liw@liw.fi>
+
+ 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 program. If not, see <http://www.gnu.org/licenses/>.
+
+On a Debian system, you can find a copy of the GPL version 3 in
+/usr/share/common-licenses/GPL-3.
+
diff --git a/trunk/debian/dimbola.docs b/trunk/debian/dimbola.docs
new file mode 100644
index 0000000..9eafbe1
--- /dev/null
+++ b/trunk/debian/dimbola.docs
@@ -0,0 +1,2 @@
+README
+NEWS
diff --git a/trunk/debian/pycompat b/trunk/debian/pycompat
new file mode 100644
index 0000000..0cfbf08
--- /dev/null
+++ b/trunk/debian/pycompat
@@ -0,0 +1 @@
+2
diff --git a/trunk/debian/rules b/trunk/debian/rules
new file mode 100755
index 0000000..d0ad1c9
--- /dev/null
+++ b/trunk/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+%:
+ dh $@ --buildsystem=python_distutils
+
+override_dh_auto_build:
+ $(MAKE)
+ dh_auto_build --buildsystem=python_distutils
+