diffstat of debian/ for f-spot_0.8.2-5 f-spot_0.8.2+git20150924-1 .pc/.quilt_patches | 1 .pc/.quilt_series | 1 .pc/.version | 1 changelog | 6 +++ control | 5 +-- patches/0001-ubuntu_xdg-photo-dir.patch | 35 ---------------------- patches/0001-xdg-photo-dir.patch | 18 +++++++++++ patches/0002-link-libfspot-with-libm.patch | 10 ++++++ patches/0003-link-libfspot-with-needed-libm.patch | 23 -------------- patches/series | 5 +-- source/format | 2 - 11 files changed, 42 insertions(+), 65 deletions(-) diff -Nru f-spot-0.8.2/debian/.pc/.quilt_patches f-spot-0.8.2+git20150924/debian/.pc/.quilt_patches --- f-spot-0.8.2/debian/.pc/.quilt_patches 1970-01-01 00:00:00.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/.pc/.quilt_patches 2015-09-24 08:47:59.000000000 +0000 @@ -0,0 +1 @@ +patches diff -Nru f-spot-0.8.2/debian/.pc/.quilt_series f-spot-0.8.2+git20150924/debian/.pc/.quilt_series --- f-spot-0.8.2/debian/.pc/.quilt_series 1970-01-01 00:00:00.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/.pc/.quilt_series 2015-09-24 08:47:59.000000000 +0000 @@ -0,0 +1 @@ +series diff -Nru f-spot-0.8.2/debian/.pc/.version f-spot-0.8.2+git20150924/debian/.pc/.version --- f-spot-0.8.2/debian/.pc/.version 1970-01-01 00:00:00.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/.pc/.version 2015-09-24 08:47:59.000000000 +0000 @@ -0,0 +1 @@ +2 diff -Nru f-spot-0.8.2/debian/changelog f-spot-0.8.2+git20150924/debian/changelog --- f-spot-0.8.2/debian/changelog 2019-03-09 05:14:35.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/changelog 2015-09-24 08:35:01.000000000 +0000 @@ -1,3 +1,9 @@ +f-spot (0.8.2+git20150924-1) unstable; urgency=medium + + * update from git repo. + + -- Deepin Packages Builder Thu, 24 Sep 2015 16:34:38 +0800 + f-spot (0.8.2-5) unstable; urgency=low * No-change rebuild for Mono 2.10 transition diff -Nru f-spot-0.8.2/debian/control f-spot-0.8.2+git20150924/debian/control --- f-spot-0.8.2/debian/control 2019-03-09 05:14:35.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/control 2015-09-24 08:39:43.000000000 +0000 @@ -21,7 +21,7 @@ libgnome-vfs2.0-cil-dev (>= 2.20.2), libflickrnet-cil-dev, libgnome-keyring1.0-cil-dev, - liblcms1-dev, + liblcms2-dev, libgnomeui-dev (>= 2.2), libexif-dev (>= 0.5.7), libexif-dev (<< 0.7.0), @@ -31,8 +31,7 @@ gnome-doc-utils (>= 0.17.3) Standards-Version: 3.9.1 Homepage: http://www.f-spot.org/ -Vcs-Git: git://git.debian.org/git/pkg-cli-apps/packages/f-spot.git -Vcs-Browser: http://git.debian.org/?p=pkg-cli-apps/packages/f-spot.git +Vcs-Browser: https://github.com/mono/f-spot.git Package: f-spot Architecture: any diff -Nru f-spot-0.8.2/debian/patches/0001-ubuntu_xdg-photo-dir.patch f-spot-0.8.2+git20150924/debian/patches/0001-ubuntu_xdg-photo-dir.patch --- f-spot-0.8.2/debian/patches/0001-ubuntu_xdg-photo-dir.patch 2019-03-09 05:14:35.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/patches/0001-ubuntu_xdg-photo-dir.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -From: Debian CLI Applications Team -Date: Fri, 20 May 2011 10:27:46 +0100 -Subject: ubuntu_xdg-photo-dir - -# ubuntu_xdg_photo_dir.patch: Patch by Andrew Higginson to set the default import target to -# XDG pictures dir/Photos (as translated). This only affects the first run, existing users -# will see no change --- f-spot-0.6.0.0.orig/debian/patches/ubuntu_xdg_photo_dir.patch -++ f-spot-0.6.0.0/debian/patches/ubuntu_xdg_photo_dir.patch -@ -0,0 +1,16 @@ ---- - src/Clients/MainApp/FSpot/Preferences.cs | 9 ++++++++- - 1 files changed, 8 insertions(+), 1 deletions(-) - -diff --git a/src/Clients/MainApp/FSpot/Preferences.cs b/src/Clients/MainApp/FSpot/Preferences.cs -index 5996b5f..676c1f5 100644 ---- a/src/Clients/MainApp/FSpot/Preferences.cs -+++ b/src/Clients/MainApp/FSpot/Preferences.cs -@@ -155,7 +155,14 @@ namespace FSpot - case SCREENSAVER_DELAY: - return 4.0; - case STORAGE_PATH: -- return System.IO.Path.Combine (Global.HomeDirectory, Catalog.GetString("Photos")); -+ String default_storage_path = System.IO.Path.Combine ( -+ Environment.GetFolderPath (Environment.SpecialFolder.MyPictures), -+ Catalog.GetString ("Photos") -+ ); -+ if (!System.IO.Directory.Exists (default_storage_path)) { -+ System.IO.Directory.CreateDirectory (default_storage_path); -+ } -+ return default_storage_path; - case EXPORT_EMAIL_SIZE: - return 3; // medium size 640px - case EXPORT_EMAIL_ROTATE: --- diff -Nru f-spot-0.8.2/debian/patches/0001-xdg-photo-dir.patch f-spot-0.8.2+git20150924/debian/patches/0001-xdg-photo-dir.patch --- f-spot-0.8.2/debian/patches/0001-xdg-photo-dir.patch 1970-01-01 00:00:00.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/patches/0001-xdg-photo-dir.patch 2015-09-24 08:51:50.000000000 +0000 @@ -0,0 +1,18 @@ +--- f-spot-0.8.2+git20150924.orig/src/Clients/MainApp/FSpot/Preferences.cs ++++ f-spot-0.8.2+git20150924/src/Clients/MainApp/FSpot/Preferences.cs +@@ -190,7 +190,14 @@ namespace FSpot + case SCREENSAVER_DELAY: + return 4.0; + case STORAGE_PATH: +- return System.IO.Path.Combine (Global.HomeDirectory, Catalog.GetString("Photos")); ++ String default_storage_path = System.IO.Path.Combine ( ++ Environment.GetFolderPath (Environment.SpecialFolder.MyPictures), ++ Catalog.GetString ("Photos") ++ ); ++ if (!System.IO.Directory.Exists (default_storage_path)) { ++ System.IO.Directory.CreateDirectory (default_storage_path); ++ } ++ return default_storage_path; + case EXPORT_EMAIL_SIZE: + return 3; // medium size 640px + case EXPORT_EMAIL_ROTATE: diff -Nru f-spot-0.8.2/debian/patches/0002-link-libfspot-with-libm.patch f-spot-0.8.2+git20150924/debian/patches/0002-link-libfspot-with-libm.patch --- f-spot-0.8.2/debian/patches/0002-link-libfspot-with-libm.patch 1970-01-01 00:00:00.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/patches/0002-link-libfspot-with-libm.patch 2015-09-24 08:53:11.000000000 +0000 @@ -0,0 +1,10 @@ +--- f-spot-0.8.2+git20150924.orig/lib/libfspot/Makefile.am ++++ f-spot-0.8.2+git20150924/lib/libfspot/Makefile.am +@@ -19,6 +19,7 @@ libfspot_la_SOURCES = \ + + libfspot_la_LIBADD = \ + -lX11 \ ++ -lm \ + $(F_LIBS) \ + $(LCMS_LIBS) \ + $(GIO_LIBS) diff -Nru f-spot-0.8.2/debian/patches/0003-link-libfspot-with-needed-libm.patch f-spot-0.8.2+git20150924/debian/patches/0003-link-libfspot-with-needed-libm.patch --- f-spot-0.8.2/debian/patches/0003-link-libfspot-with-needed-libm.patch 2019-03-09 05:14:35.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/patches/0003-link-libfspot-with-needed-libm.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -From: Julian Taylor -Date: Mon, 5 Sep 2011 02:50:23 +0200 -Subject: link libfspot with needed libm - -Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=640436 -Forwarded: https://bugzilla.gnome.org/show_bug.cgi?id=658210 ---- - lib/libfspot/Makefile.in | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/lib/libfspot/Makefile.in b/lib/libfspot/Makefile.in -index ecb0bab..08fd448 100644 ---- a/lib/libfspot/Makefile.in -+++ b/lib/libfspot/Makefile.in -@@ -366,6 +366,7 @@ libfspot_la_SOURCES = \ - - libfspot_la_LIBADD = \ - -lX11 \ -+ -lm \ - $(F_LIBS) \ - $(LCMS_LIBS) \ - $(GIO_LIBS) --- diff -Nru f-spot-0.8.2/debian/patches/series f-spot-0.8.2+git20150924/debian/patches/series --- f-spot-0.8.2/debian/patches/series 2019-03-09 05:14:35.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/patches/series 2015-09-24 08:53:07.000000000 +0000 @@ -1,3 +1,2 @@ -0001-ubuntu_xdg-photo-dir.patch -0002-PixbufLoader-from-gtk-sharp-master-does-not-have-a-C.patch -0003-link-libfspot-with-needed-libm.patch +0001-xdg-photo-dir.patch +0002-link-libfspot-with-libm.patch diff -Nru f-spot-0.8.2/debian/source/format f-spot-0.8.2+git20150924/debian/source/format --- f-spot-0.8.2/debian/source/format 2019-03-09 05:14:35.000000000 +0000 +++ f-spot-0.8.2+git20150924/debian/source/format 2015-09-24 08:51:23.000000000 +0000 @@ -1 +1 @@ -1.0 +3.0 (quilt)