summaryrefslogtreecommitdiff
path: root/graphics/f-spot
diff options
context:
space:
mode:
authorkefren <kefren@pkgsrc.org>2015-05-24 06:50:14 +0000
committerkefren <kefren@pkgsrc.org>2015-05-24 06:50:14 +0000
commitf21df4187d208555f8daabcc6bd3dd4674db8bed (patch)
treec13a69d98568885136b1fa8ef7f95b6c925de6f6 /graphics/f-spot
parentb22f49cad7066f86782083d4b43f3155b571ac22 (diff)
downloadpkgsrc-f21df4187d208555f8daabcc6bd3dd4674db8bed.tar.gz
Fix lambda used in tags reduce
Diffstat (limited to 'graphics/f-spot')
-rw-r--r--graphics/f-spot/Makefile4
-rw-r--r--graphics/f-spot/distinfo4
-rw-r--r--graphics/f-spot/patches/patch-FlickrRemote.cs4
3 files changed, 6 insertions, 6 deletions
diff --git a/graphics/f-spot/Makefile b/graphics/f-spot/Makefile
index 7f784697a12..22d76b01b25 100644
--- a/graphics/f-spot/Makefile
+++ b/graphics/f-spot/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.70 2015/05/23 10:33:01 kefren Exp $
+# $NetBSD: Makefile,v 1.71 2015/05/24 06:50:14 kefren Exp $
#
DISTNAME= f-spot-0.8.2
-PKGREVISION= 30
+PKGREVISION= 31
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/f-spot/0.8/}
EXTRACT_SUFX= .tar.bz2
diff --git a/graphics/f-spot/distinfo b/graphics/f-spot/distinfo
index 2a97147ab47..fee6a8f7625 100644
--- a/graphics/f-spot/distinfo
+++ b/graphics/f-spot/distinfo
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.9 2015/05/23 10:33:01 kefren Exp $
+$NetBSD: distinfo,v 1.10 2015/05/24 06:50:14 kefren Exp $
SHA1 (f-spot-0.8.2.tar.bz2) = 258e30a11ac24f963a47ead19c3d14bf755816e5
RMD160 (f-spot-0.8.2.tar.bz2) = 658f437cb336fc29a718cf021ba54ee62dbee757
Size (f-spot-0.8.2.tar.bz2) = 3222712 bytes
SHA1 (patch-FlickrExport.cs) = 15610c7f0e0d321d8acf4282cb04953e62180c2c
-SHA1 (patch-FlickrRemote.cs) = 63b3e8c6e57ca2c02a38c00fc2f0dcaf69825779
+SHA1 (patch-FlickrRemote.cs) = a77d7306a4ac149891d73e880ff93253584c9a29
SHA1 (patch-FolderTreeView.cs) = 0e5804189b8c11caafe0bbcae8faa9a24fa4d5a5
SHA1 (patch-GdkImageLoader.cs) = 945f8349af0a5cbbfd97cf73641eae268a8aed05
SHA1 (patch-GroupSelector.cs) = bed9b5e8737f3079037bc0e68898ae765808c01e
diff --git a/graphics/f-spot/patches/patch-FlickrRemote.cs b/graphics/f-spot/patches/patch-FlickrRemote.cs
index 56567dd09a3..e629aa66c98 100644
--- a/graphics/f-spot/patches/patch-FlickrRemote.cs
+++ b/graphics/f-spot/patches/patch-FlickrRemote.cs
@@ -1,4 +1,4 @@
-$NetBSD: patch-FlickrRemote.cs,v 1.1 2015/05/23 10:33:01 kefren Exp $
+$NetBSD: patch-FlickrRemote.cs,v 1.2 2015/05/24 06:50:14 kefren Exp $
Make it compile with newer flickrnet
@@ -44,7 +44,7 @@ Make it compile with newer flickrnet
public ArrayList Search (string[] tags, int licenseId)
{
-+ var options = new PhotoSearchOptions { Tags = tags.Aggregate((a, b) => a += b + " ") };
++ var options = new PhotoSearchOptions { Tags = tags.Aggregate((a, b) => a + " " + b) };
ArrayList photos_url = new ArrayList ();
// Photos photos = flickr.PhotosSearchText (tags, licenseId);
- Photos photos = flickr.PhotosSearch (tags);