-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/control | 5 | ||||
-rw-r--r--[l---------] | debian/copyright | 20 | ||||
-rw-r--r-- | debian/examples | 1 | ||||
-rw-r--r-- | debian/iii.dirs (renamed from debian/dirs) | 0 | ||||
-rw-r--r-- | debian/iii.docs (renamed from debian/docs) | 0 | ||||
-rwxr-xr-x | debian/rules | 14 |
7 files changed, 34 insertions, 13 deletions
diff --git a/debian/changelog b/debian/changelog index 2c8ae3b..20c0ae6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,24 +1,31 @@ +iii (0.2.1) natty; urgency=low + + * the thing handles more file types now + * memory consumption when calculating digest is reduced + + -- Michael Krelin <hacker@klever.net> Thu, 13 Oct 2011 12:07:22 +0200 + iii (0.2) unstable; urgency=low * extract and store .log files supplied for geotagging purpose * added a sample script for geotagging photos based on the log file * improved compatibility with Geo X2 card * added a sample script for sorting uploaded photos based on exif timestamp * added utility to extract chunks from RIFF files -- Michael Krelin <hacker@klever.net> Sat, 19 Mar 2011 17:52:46 +0100 iii (0.1) unstable; urgency=low * 0.1 release * check uploaded file integrity * integrity digest calculation * make upload directory if it doesn't exist -- Michael Krelin <hacker@klever.net> Sun, 05 Apr 2009 15:55:48 +0200 iii (0.0) unstable; urgency=low * Initial release -- Michael Krelin <hacker@klever.net> Sun, 08 Mar 2009 19:39:38 +0100 diff --git a/debian/control b/debian/control index aaa8c78..a89849f 100644 --- a/debian/control +++ b/debian/control @@ -1,13 +1,14 @@ Source: iii Section: graphics Priority: optional Maintainer: Michael Krelin <hacker@klever.net> -Build-Depends: debhelper (>=7), gsoap, libssl-dev, libconfuse-dev, libarchive-dev, gettext -Standards-Version: 3.8.4 +Build-Depends: debhelper, cdbs, gsoap, libssl-dev, libconfuse-dev, libarchive-dev, gettext, xsltproc, pkg-config +Standards-Version: 3.9.1 +Homepage: http://kin.klever.net/iii Package: iii Architecture: any Depends: adduser, ${shlibs:Depends}, ${misc:Depends} Description: Eye-Fi Manager implementation Implementation of Eye-Fi manager service for Linux diff --git a/debian/copyright b/debian/copyright index 012065c..9579d6d 120000..100644 --- a/debian/copyright +++ b/debian/copyright @@ -1 +1,19 @@ -../COPYING
\ No newline at end of file +Copyright (c) 2009-2011 Klever Group (http://www.klever.net/) + +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. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/debian/examples b/debian/examples deleted file mode 100644 index c1afd06..0000000 --- a/debian/examples +++ b/dev/null @@ -1 +0,0 @@ -doc/000000000000.conf diff --git a/debian/dirs b/debian/iii.dirs index 04efab3..04efab3 100644 --- a/debian/dirs +++ b/debian/iii.dirs diff --git a/debian/docs b/debian/iii.docs index 3cc350b..3cc350b 100644 --- a/debian/docs +++ b/debian/iii.docs diff --git a/debian/rules b/debian/rules index 86549d3..daed1b6 100755 --- a/debian/rules +++ b/debian/rules @@ -1,11 +1,7 @@ #!/usr/bin/make -f -%: - dh $@ -build: build-stamp -build-stamp: - sh autogen.sh --version - dh build --before configure - dh_auto_configure -- --enable-debug - dh build --after configure - touch $@ +makebuilddir/iii:: + bash autogen.sh --version + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk |