debian/0000755000000000000000000000000011705410742007167 5ustar debian/patches/0000755000000000000000000000000011705410742010616 5ustar debian/patches/icons_dir.diff0000644000000000000000000000201111705406544013420 0ustar Description: Fix dfo icon path Origin: vendor, Debian Forwarded: no Author: Varun Hiremath Last-Update: Thu, 13 Aug 2009 20:52:59 -0400 Index: dfo-0.0.08062007~r43/DeskFlickrUI.cs =================================================================== --- dfo-0.0.08062007~r43.orig/DeskFlickrUI.cs 2007-08-07 17:10:04.000000000 +0530 +++ dfo-0.0.08062007~r43/DeskFlickrUI.cs 2007-08-07 17:10:28.000000000 +0530 @@ -134,7 +134,7 @@ Tooltips tips; private static string BASE_DIR = System.AppDomain.CurrentDomain.BaseDirectory; - private static string IMAGE_DIR = System.IO.Path.Combine(BASE_DIR, "icons"); + private static string IMAGE_DIR = System.IO.Path.Combine("/usr/share/dfo/", "icons"); public static string ICON_PATH = System.IO.Path.Combine(IMAGE_DIR, "Font-Book.ico"); public static string THUMBNAIL_PATH = System.IO.Path.Combine(IMAGE_DIR, "FontBookThumbnail.png"); public static string SQTHUMBNAIL_PATH = System.IO.Path.Combine(IMAGE_DIR, "FontBookSquareThumbnail.png"); debian/patches/sqlite.diff0000644000000000000000000000260211705406544012756 0ustar Index: dfo-0.8+svn52/compile.sh =================================================================== --- dfo-0.8+svn52.orig/compile.sh 2011-07-02 10:28:57.064550163 +0100 +++ dfo-0.8+svn52/compile.sh 2011-07-02 10:29:05.512832517 +0100 @@ -1,2 +1,2 @@ #!/bin/bash -mono-csc -pkg:glade-sharp-2.0 -pkg:gconf-sharp-2.0 -pkg:flickrnet -r:System.Data -r:Mono.Data.SqliteClient.dll -resource:glade/organizer.glade Main.cs *.cs +mono-csc -pkg:glade-sharp-2.0 -pkg:gconf-sharp-2.0 -pkg:flickrnet -r:System.Data -r:Mono.Data.Sqlite.dll -resource:glade/organizer.glade Main.cs *.cs Index: dfo-0.8+svn52/PersistentInformation.cs =================================================================== --- dfo-0.8+svn52.orig/PersistentInformation.cs 2011-07-02 10:29:13.541244906 +0100 +++ dfo-0.8+svn52/PersistentInformation.cs 2011-07-02 10:29:40.406231746 +0100 @@ -4,7 +4,7 @@ using System.Data; using System.IO; using System.Collections; -using Mono.Data.SqliteClient; +using Mono.Data.Sqlite; public class PersistentInformation { @@ -258,7 +258,7 @@ dbcmd.Dispose(); dbcon.Close(); return true; - } catch (SqliteSyntaxException ex) { + } catch (SqliteException ex) { if (!ex.Message.Contains("already exists")) throw ex; else return false; } @@ -2087,4 +2087,4 @@ client.Set(HPOSITION, value); } } - } \ No newline at end of file + } debian/patches/compile.diff0000644000000000000000000000140211705406544013102 0ustar Description: Fix upstream compile.sh file to use -pkg:flickrnet Origin: vendor, Debian Forwarded: no Author: Varun Hiremath Last-Update: Thu, 13 Aug 2009 20:52:59 -0400 Index: dfo-0.7+svn45/compile.sh =================================================================== --- dfo-0.7+svn45.orig/compile.sh 2007-06-13 17:45:46.000000000 +0530 +++ dfo-0.7+svn45/compile.sh 2008-05-03 11:05:50.000000000 +0530 @@ -1,2 +1,2 @@ #!/bin/bash -gmcs -pkg:glade-sharp-2.0 -pkg:gconf-sharp-2.0 -r:lib/FlickrNet.dll -r:System.Data -r:Mono.Data.SqliteClient.dll -resource:glade/organizer.glade Main.cs *.cs +mono-csc -pkg:glade-sharp-2.0 -pkg:gconf-sharp-2.0 -pkg:flickrnet -r:System.Data -r:Mono.Data.SqliteClient.dll -resource:glade/organizer.glade Main.cs *.cs debian/patches/run.sh.diff0000644000000000000000000000113611705406544012673 0ustar Description: Do not set MONO_PATH in the run script Origin: vendor, Debian Forwarded: no Author: Varun Hiremath Last-Update: Thu, 13 Aug 2009 20:52:59 -0400 Index: dfo-0.7+svn45/run.sh =================================================================== --- dfo-0.7+svn45.orig/run.sh 2008-05-03 11:05:59.000000000 +0530 +++ dfo-0.7+svn45/run.sh 2008-05-03 11:06:15.000000000 +0530 @@ -1,3 +1,3 @@ #!/bin/sh -dfodir=`dirname $0` -MONO_PATH=$dfodir/lib:$MONO_PATH exec /usr/bin/mono $dfodir/Main.exe \ No newline at end of file +dfodir=/usr/share/dfo/ +exec /usr/bin/mono $dfodir/Main.exe debian/patches/series0000644000000000000000000000006411705406544012040 0ustar icons_dir.diff run.sh.diff compile.diff sqlite.diff debian/NEWS0000644000000000000000000000151211705406544007672 0ustar dfo (0.8+svn52-1) unstable; urgency=low Important note regarding v0.8 Fixes released in this version: 1. Instead of storing all the thumbnails and small images in a single directory, they're now sharded in subdirectories, hence avoiding the 'too-many-files-in-one-directory' issue. 2. The conflict resolution is only done when there're noticeable changes to the images. 3. File extension is now extracted from information provided by flickr server, instead of defaulting to JPG. 4. DFO crash upon entering apostrophes ('s) in set name. If you're upgrading from v0.7, please delete .desktopflickr directory located in $HOME_DIR. This would prompt DFO to re-download the thumbnails and small images to a new directory structure. -- Varun Hiremath Sun, 01 Mar 2009 03:32:35 -0500 debian/rules0000755000000000000000000000075211705406544010260 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk export MONO_SHARED_DIR := /tmp post-patches:: debian/stamp-build debian/stamp-build: $(SHELL) compile.sh touch $@ clean:: $(RM) Main.exe debian/stamp-build install/dfo:: mkdir -p $(DEB_DESTDIR)/usr/bin cp run.sh $(DEB_DESTDIR)/usr/bin/dfo chmod +x $(DEB_DESTDIR)/usr/bin/dfo common-binary-predeb-arch common-binary-predeb-indep:: dh_clideps -pdfo get-orig-source: sh debian/orig-tar.sh $(DEB_UPSTREAM_VERSION) debian/control0000644000000000000000000000306511705406544010603 0ustar Source: dfo Section: utils Priority: optional Maintainer: Debian CLI Applications Team Uploaders: Varun Hiremath , Torsten Werner Build-Depends: cdbs, debhelper (>= 7) Build-Depends-Indep: cli-common-dev (>= 0.4.4), libflickrnet-cil-dev, libgconf2.0-cil-dev, libglade2.0-cil-dev, libgnome2.0-cil-dev, mono-devel (>= 2.4.3), pkg-config Standards-Version: 3.9.2 Homepage: http://code.google.com/p/dfo/ Vcs-Svn: svn://svn.debian.org/svn/pkg-cli-apps/packages/dfo/trunk/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-cli-apps/packages/dfo/trunk/ Package: dfo Architecture: all Depends: ${cli:Depends}, ${misc:Depends}, ${shlibs:Depends} Description: Desktop Flickr Organizer for GNOME DFO allows online/offline mode management of your photos. With DFO you can manage your existing photos and sets, create new sets, edit tags, descriptions, and permissions, contribute to group pools, and so on. Basically performing most of the tasks that Flickr's online management tool Organizer does. . Some of the features include: - Add/Delete/Edit comments. Text search comments and their author names. - Post photos to blogs. - Easy Drag-n-drop photos from nautilus for uploading. - Image preview in file chooser dialog, shown when uploading photos. - Edit title, description, privacy and tags of photos set for uploading. - Allow reverting of edits done to photo. debian/copyright0000644000000000000000000000202011705406544011121 0ustar This package was debianized by Varun Hiremath on Mon, 06 Aug 2007 21:41:48 +0530. It was downloaded from http://dfo.googlecode.com/svn/trunk/ Upstream Author: Manish Rai Jain Copyright: © 2007 Manish Rai Jain License: 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 2 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. On Debian systems, you can find the GPL license in: /usr/share/common-licenses/GPL The Debian packaging is © 2007, Varun Hiremath and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. debian/watch0000644000000000000000000000020211705406544010217 0ustar version=3 opts="dversionmangle=s/\+svn.*//" \ http://code.google.com/p/dfo/downloads/list .*desktopflickrorganizer-v(.*)\.tar\.gz debian/manpages0000644000000000000000000000001511705406544010706 0ustar debian/dfo.1 debian/install0000644000000000000000000000014311705406544010563 0ustar Main.exe /usr/share/dfo/ debian/dfo.desktop /usr/share/applications/ icons/* /usr/share/dfo/icons/ debian/orig-tar.sh0000755000000000000000000000073611705406544011265 0ustar #!/bin/sh -e # called by uscan with '--upstream-version' TAR=../dfo_$1.orig.tar.gz DIR=dfo-$1 REVISION=`echo $1 | sed -e 's/.*svn//'` # checkout sources from svn svn export -r $REVISION http://dfo.googlecode.com/svn/trunk $DIR # clean up the upstream tarball tar -c -z -f $TAR --exclude *.dll $DIR rm -rf $DIR # move to directory 'tarballs' if [ -r .svn/deb-layout ]; then . .svn/deb-layout mv $TAR $origDir echo "moved $TAR to $origDir" fi exit 0 debian/changelog0000644000000000000000000000752211705410064011044 0ustar dfo (0.8+svn52-7) unstable; urgency=low * No-change rebuild against Mono 2.10 -- Jo Shields Wed, 18 Jan 2012 00:19:42 +0000 dfo (0.8+svn52-6) unstable; urgency=low * debian/patches/sqlite.diff: Add new patch to use Mono.Data.Sqlite instead of Mono.Data.SqliteClient; the former works on both 2.6.7 and 2.10.1. Thanks to Julian Taylor for the patch. (Closes: #631428) * Bump Standards-Version to 3.9.2, no changes required * Run wrap-and-sort for readability -- Iain Lane Sat, 02 Jul 2011 10:39:26 +0100 dfo (0.8+svn52-5) unstable; urgency=low * debian/control: + Update build-deps to use GNOME# -dev packages (Closes: #564404) + Update build-dep to mono-devel 2.4.3 -- Jo Shields Tue, 12 Jan 2010 11:32:44 +0000 dfo (0.8+svn52-4) unstable; urgency=low [ Iain Lane ] * debian/control: Update flickrnet dependency to use the new -dev package (Closes: #560618) [ Varun Hiremath ] * Switch to source format 3.0 * debian/control: - Drop quilt dependency - Bump dh compat to 7 * patches/compile.diff: s/csc/mono-csc/ -- Varun Hiremath Tue, 15 Dec 2009 11:24:59 -0500 dfo (0.8+svn52-3) unstable; urgency=low * debian/control: - Build-Depends: Replace libflickrnet2.1.5-cil with libflickrnet2.2-cil - Bump Standards-Version to 3.8.3 * Add description to all debian/patches * Add debian/README.source explaining the patch system -- Varun Hiremath Wed, 26 Aug 2009 12:49:43 -0400 dfo (0.8+svn52-2) unstable; urgency=low * debian/control: libgnome2.0-cil -> libgnome2.24-cil for GNOME# transition. -- Iain Lane Sat, 18 Apr 2009 15:23:16 +0100 dfo (0.8+svn52-1) unstable; urgency=low * New upstream release * Add debian/NEWS file with important release notes for version 0.8 -- Varun Hiremath Sun, 01 Mar 2009 03:53:00 -0500 dfo (0.7+svn51-3) unstable; urgency=low * upload to unstable -- Torsten Werner Sun, 15 Feb 2009 21:26:46 +0100 dfo (0.7+svn51-2) experimental; urgency=low * debian/control: + Build-Depends-Indep: - using mono-devel instead of mono-gmcs * debian/patches/: + compile.diff updated -- David Paleino Fri, 28 Nov 2008 03:30:06 +0100 dfo (0.7+svn51-1) unstable; urgency=low * new upstream version * Remove FlickrNet.dll from orig tarball. (Closes: #494294) * Change Standards-Version: 3.8.0 (no other changes). -- Torsten Werner Mon, 11 Aug 2008 00:32:22 +0200 dfo (0.7+svn45-4) unstable; urgency=low * Move package to pkg-cli-apps svn * debian/control: + Set Maintainer to Debian CLI Applications Team and add myself to Uploaders + Update Vcs headers * debian/patches: + Update compile.diff to use -pkg:flickrnet instead of using fullpath to the flickrnet library + Update run.sh.diff to not set MONO_PATH in the run script * Fix lintian spelling-error-in-description Gnome GNOME -- Varun Hiremath Sun, 04 May 2008 22:01:19 +0530 dfo (0.7+svn45-3) unstable; urgency=low * debian/control: + Remove mono from Build-Depends (Closes: #457789) + Update Standards-Version to 3.7.3 + Add Homepage header and replace XS-Vcs with Vcs + Separate out Build-Depends and Build-Depends-Indep * Add watch file -- Varun Hiremath Wed, 02 Jan 2008 22:18:03 +0530 dfo (0.7+svn45-2) unstable; urgency=low [ Torsten Werner ] * Add myself to Uploaders. [ Varun Hiremath ] * debian/rules: Set MONO_SHARED_DIR to /tmp (Closes: #445801) -- Varun Hiremath Wed, 10 Oct 2007 11:02:19 +0530 dfo (0.7+svn45-1) unstable; urgency=low * Initial release (Closes: #436285) -- Varun Hiremath Mon, 06 Aug 2007 21:41:48 +0530 debian/dfo.desktop0000644000000000000000000000036611705406544011344 0ustar [Desktop Entry] Name=Desktop Flickr Organizer Comment=Desktop Flickr Organizer for Gnome Icon=/usr/share/dfo/icons/FontBookSquareThumbnail.png TryExec=dfo Exec=dfo StartupNotify=true Terminal=false Type=Application Categories=GNOME;GTK;Graphics; debian/compat0000644000000000000000000000000211705406544010372 0ustar 7 debian/source/0000755000000000000000000000000011705410742010467 5ustar debian/source/format0000644000000000000000000000001411705406544011702 0ustar 3.0 (quilt) debian/dfo.10000644000000000000000000000260211705406544010026 0ustar .TH DFO 1 "December 7, 2006" .SH NAME dfo \- Desktop Flickr Organizer for Gnome .SH DESCRIPTION DFO allows online/offline mode management of your photos. With DFO you can manage your existing photos and sets, create new sets, edit tags, descriptions, and permissions, contribute to group pools, and so on. Basically performing most of the tasks that Flickr's online management tool Organizer does. .SH NOTE The first time you run DFO, the app won't know who you are or have access to your Flickr account, so all you will see is a window with several empty panes. To get started, select Connect from the File menu. DFO will open a link to the Flickr site in your default Web browser, where you must grant DFO authorization to connect to your Flickr account. This is a security precaution enforced by Flickr on all apps that use the Flickr API. .PP .SH FEATURES .PP * Add/Delete/Edit comments. Text search comments and their author names. .PP * Post photos to blogs. .PP * Easy Drag-n-drop photos from nautilus for uploading. .PP * Image preview in file chooser dialog, shown when uploading photos. .PP * Edit title, description, privacy and tags of photos set for uploading. .PP * Allow reverting of edits done to photo. .PP .PP .SH HOMEPAGE http://code.google.com/p/dfo/ .SH AUTHOR This manual page was written by Varun Hiremath , for the Debian project (but may be used by others).