From 225ebc36b2eadcf04c7e41ff037b62fd16144cc7 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Sat, 21 Jan 2012 13:12:08 +0000 Subject: removed debian packaging stuff from the master branch Yes, I still don't know what the most sane way of maintaining packaging Signed-off-by: Michael Krelin --- diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 20c0ae6..0000000 --- a/debian/changelog +++ b/dev/null @@ -1,31 +0,0 @@ -iii (0.2.1) natty; urgency=low - - * the thing handles more file types now - * memory consumption when calculating digest is reduced - - -- Michael Krelin 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 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 Sun, 05 Apr 2009 15:55:48 +0200 - -iii (0.0) unstable; urgency=low - - * Initial release - - -- Michael Krelin Sun, 08 Mar 2009 19:39:38 +0100 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index 7ed6ff8..0000000 --- a/debian/compat +++ b/dev/null @@ -1 +0,0 @@ -5 diff --git a/debian/control b/debian/control deleted file mode 100644 index a89849f..0000000 --- a/debian/control +++ b/dev/null @@ -1,14 +0,0 @@ -Source: iii -Section: graphics -Priority: optional -Maintainer: Michael Krelin -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 deleted file mode 100644 index 9579d6d..0000000 --- a/debian/copyright +++ b/dev/null @@ -1,19 +0,0 @@ -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/iii.dirs b/debian/iii.dirs deleted file mode 100644 index 04efab3..0000000 --- a/debian/iii.dirs +++ b/dev/null @@ -1,3 +0,0 @@ -/etc/iii -/usr/sbin -/usr/share/doc/iii diff --git a/debian/iii.docs b/debian/iii.docs deleted file mode 100644 index 3cc350b..0000000 --- a/debian/iii.docs +++ b/dev/null @@ -1,2 +0,0 @@ -AUTHORS -NEWS diff --git a/debian/iii.init b/debian/iii.init deleted file mode 100755 index c60c25e..0000000 --- a/debian/iii.init +++ b/dev/null @@ -1,57 +0,0 @@ -#!/bin/sh -### BEGIN INIT INFO -# Provides: iii -# Required-Start: $remote_fs $network -# Required-Stop: $remote_fs $network -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: Start iii eye-fi card manager daemon. -### END INIT INFO - -set -e - -PATH=/sbin:/bin:/usr/sbin:/usr/bin -NAME=iii -DAEMON=/usr/sbin/${NAME}d -DESC="Eye-Fi card manager daemon" -PIDFILE=/var/run/${NAME}d.pid -SCRIPTNAME=/etc/init.d/$NAME -USER=eyefi -SSD="/sbin/start-stop-daemon" - -test -x $DAEMON || exit 0 - -if [ -f /etc/default/$NAME ] ; then - . /etc/default/$NAME - fi - -test -z "$NO_IIID" || exit 0 - -. /lib/lsb/init-functions - -case "$1" in - start) - log_daemon_msg "Starting $DESC" $NAME - $SSD --start --pidfile $PIDFILE --chuid $USER --background --make-pidfile --exec $DAEMON -- $DAEMON_OPTS - log_end_msg $? - ;; - stop) - log_daemon_msg "Stopping $DESC" $NAME - if $SSD --stop --oknodo --retry 30 --pidfile $PIDFILE --exec $DAEMON ; then - rm -f $PIDFILE - log_end_msg 0 - else - log_end_msg 1 - fi - ;; - restart|force-reload) - $SCRIPTNAME stop - $SCRIPTNAME start - ;; - *) - echo "Usage: $SCRIPTNAME {start|stop}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/debian/iii.postinst b/debian/iii.postinst deleted file mode 100755 index f52bf84..0000000 --- a/debian/iii.postinst +++ b/dev/null @@ -1,18 +0,0 @@ -#!/bin/sh -set -e -UG=eyefi -P=iii -H=/var/lib/$P - -if [ "$1" = configure ] ; then - getent group $UG >/dev/null 2>&1 || addgroup --system $UG - getent passwd $UG >/dev/null 2>&1 || adduser --system --home $H \ - --no-create-home --disabled-password --ingroup $UG $UG - if ! test -d $H ; then - mkdir -p $H - chown $UG:$UG $H - chmod 2770 $H - fi -fi - -#DEBHELPER# diff --git a/debian/iii.postrm b/debian/iii.postrm deleted file mode 100755 index 6060c4f..0000000 --- a/debian/iii.postrm +++ b/dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -set -e - -#DEBHELPER# diff --git a/debian/iii.prerm b/debian/iii.prerm deleted file mode 100755 index 6060c4f..0000000 --- a/debian/iii.prerm +++ b/dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -set -e - -#DEBHELPER# diff --git a/debian/rules b/debian/rules deleted file mode 100755 index daed1b6..0000000 --- a/debian/rules +++ b/dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/make -f - -makebuilddir/iii:: - bash autogen.sh --version - -include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/class/autotools.mk diff --git a/debian/source/format b/debian/source/format deleted file mode 100644 index 89ae9db..0000000 --- a/debian/source/format +++ b/dev/null @@ -1 +0,0 @@ -3.0 (native) -- cgit v0.9.0.2