pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/f-spot Fix lambda used in tags reduce



details:   https://anonhg.NetBSD.org/pkgsrc/rev/56177c4fe280
branches:  trunk
changeset: 652121:56177c4fe280
user:      kefren <kefren%pkgsrc.org@localhost>
date:      Sun May 24 06:50:14 2015 +0000

description:
Fix lambda used in tags reduce

diffstat:

 graphics/f-spot/Makefile                      |  4 ++--
 graphics/f-spot/distinfo                      |  4 ++--
 graphics/f-spot/patches/patch-FlickrRemote.cs |  4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diffs (48 lines):

diff -r e8e5b9bf784a -r 56177c4fe280 graphics/f-spot/Makefile
--- a/graphics/f-spot/Makefile  Sun May 24 06:27:00 2015 +0000
+++ b/graphics/f-spot/Makefile  Sun May 24 06:50:14 2015 +0000
@@ -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 -r e8e5b9bf784a -r 56177c4fe280 graphics/f-spot/distinfo
--- a/graphics/f-spot/distinfo  Sun May 24 06:27:00 2015 +0000
+++ b/graphics/f-spot/distinfo  Sun May 24 06:50:14 2015 +0000
@@ -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 -r e8e5b9bf784a -r 56177c4fe280 graphics/f-spot/patches/patch-FlickrRemote.cs
--- a/graphics/f-spot/patches/patch-FlickrRemote.cs     Sun May 24 06:27:00 2015 +0000
+++ b/graphics/f-spot/patches/patch-FlickrRemote.cs     Sun May 24 06:50:14 2015 +0000
@@ -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 @@
  
        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);



Home | Main Index | Thread Index | Old Index