[arch-commits] Commit in (gimp-ufraw)

2018-05-11 Thread Christian Hesse via arch-commits
Date: Friday, May 11, 2018 @ 10:20:18
  Author: eworm
Revision: 320682

remove gimp-ufraw, replaced by gimp-nufraw

Deleted:
  gimp-ufraw/


[arch-commits] Commit in gimp-ufraw/repos/community-testing-x86_64 (10 files)

2018-04-13 Thread Evangelos Foutras via arch-commits
Date: Friday, April 13, 2018 @ 14:44:05
  Author: foutrelis
Revision: 316183

archrelease: copy trunk to community-testing-x86_64

Added:
  gimp-ufraw/repos/community-testing-x86_64/001-no-gimp-remote.patch
(from rev 316182, gimp-ufraw/trunk/001-no-gimp-remote.patch)
  gimp-ufraw/repos/community-testing-x86_64/002-CVE-2015-8366.patch
(from rev 316182, gimp-ufraw/trunk/002-CVE-2015-8366.patch)
  gimp-ufraw/repos/community-testing-x86_64/003-fix-unsigned-char.patch
(from rev 316182, gimp-ufraw/trunk/003-fix-unsigned-char.patch)
  gimp-ufraw/repos/community-testing-x86_64/004-gcc-7.patch
(from rev 316182, gimp-ufraw/trunk/004-gcc-7.patch)
  gimp-ufraw/repos/community-testing-x86_64/PKGBUILD
(from rev 316182, gimp-ufraw/trunk/PKGBUILD)
Deleted:
  gimp-ufraw/repos/community-testing-x86_64/001-no-gimp-remote.patch
  gimp-ufraw/repos/community-testing-x86_64/002-CVE-2015-8366.patch
  gimp-ufraw/repos/community-testing-x86_64/003-fix-unsigned-char.patch
  gimp-ufraw/repos/community-testing-x86_64/004-gcc-7.patch
  gimp-ufraw/repos/community-testing-x86_64/PKGBUILD

-+
 001-no-gimp-remote.patch|   24 
 002-CVE-2015-8366.patch |   34 +--
 003-fix-unsigned-char.patch |   30 +-
 004-gcc-7.patch |   30 +-
 PKGBUILD|  122 +-
 5 files changed, 120 insertions(+), 120 deletions(-)

Deleted: 001-no-gimp-remote.patch
===
--- 001-no-gimp-remote.patch2018-04-13 14:43:55 UTC (rev 316182)
+++ 001-no-gimp-remote.patch2018-04-13 14:44:05 UTC (rev 316183)
@@ -1,12 +0,0 @@
-Don't use gimp-remote since gimp 2.4 already includes gimp-remote functionality
 a/ufraw_conf.c
-+++ b/ufraw_conf.c
-@@ -137,7 +137,7 @@
- #elif HAVE_GIMP_2_4
- "gimp", /* remoteGimpCommand */
- #else
--"gimp-remote", /* remoteGimpCommand */
-+"gimp", /* remoteGimpCommand */
- #endif
- 
- /* EXIF data */

Copied: gimp-ufraw/repos/community-testing-x86_64/001-no-gimp-remote.patch 
(from rev 316182, gimp-ufraw/trunk/001-no-gimp-remote.patch)
===
--- 001-no-gimp-remote.patch(rev 0)
+++ 001-no-gimp-remote.patch2018-04-13 14:44:05 UTC (rev 316183)
@@ -0,0 +1,12 @@
+Don't use gimp-remote since gimp 2.4 already includes gimp-remote functionality
+--- a/ufraw_conf.c
 b/ufraw_conf.c
+@@ -137,7 +137,7 @@
+ #elif HAVE_GIMP_2_4
+ "gimp", /* remoteGimpCommand */
+ #else
+-"gimp-remote", /* remoteGimpCommand */
++"gimp", /* remoteGimpCommand */
+ #endif
+ 
+ /* EXIF data */

Deleted: 002-CVE-2015-8366.patch
===
--- 002-CVE-2015-8366.patch 2018-04-13 14:43:55 UTC (rev 316182)
+++ 002-CVE-2015-8366.patch 2018-04-13 14:44:05 UTC (rev 316183)
@@ -1,17 +0,0 @@
-Fix a buffer overflow bug.  See
-https://github.com/LibRaw/LibRaw/commit/89d065424f09b788f443734d44857289489ca9e2
-
 a/dcraw.cc
-+++ b/dcraw.cc
-@@ -3013,7 +3013,10 @@
-   diff = diff ? -diff : 0x80;
- if (ftell(ifp) + 12 >= (int) seg[1][1])
-   diff = 0;
--raw_image[pix] = pred[pix & 1] += diff;
-+if(pix>=raw_width*raw_height)
-+  derror();
-+else
-+  raw_image[pix] = pred[pix & 1] += diff;
- if (!(pix & 1) && HOLE(pix / raw_width)) pix += 2;
-   }
-   maximum = 0xff;

Copied: gimp-ufraw/repos/community-testing-x86_64/002-CVE-2015-8366.patch (from 
rev 316182, gimp-ufraw/trunk/002-CVE-2015-8366.patch)
===
--- 002-CVE-2015-8366.patch (rev 0)
+++ 002-CVE-2015-8366.patch 2018-04-13 14:44:05 UTC (rev 316183)
@@ -0,0 +1,17 @@
+Fix a buffer overflow bug.  See
+https://github.com/LibRaw/LibRaw/commit/89d065424f09b788f443734d44857289489ca9e2
+
+--- a/dcraw.cc
 b/dcraw.cc
+@@ -3013,7 +3013,10 @@
+   diff = diff ? -diff : 0x80;
+ if (ftell(ifp) + 12 >= (int) seg[1][1])
+   diff = 0;
+-raw_image[pix] = pred[pix & 1] += diff;
++if(pix>=raw_width*raw_height)
++  derror();
++else
++  raw_image[pix] = pred[pix & 1] += diff;
+ if (!(pix & 1) && HOLE(pix / raw_width)) pix += 2;
+   }
+   maximum = 0xff;

Deleted: 003-fix-unsigned-char.patch
===
--- 003-fix-unsigned-char.patch 2018-04-13 14:43:55 UTC (rev 316182)
+++ 003-fix-unsigned-char.patch 2018-04-13 14:44:05 UTC (rev 316183)
@@ -1,15 +0,0 @@
-Description: Fix unsigned char declaration of src[]
-Author: John Paul Adrian Glaubitz 
-Last-Update: 2017-02-27
-
 ufraw-0.22.orig/dcraw.cc
-+++ ufraw-0.22/dcraw.cc
-@@ -2285,7 +2285,7 @@ void CLASS quicktake_100_load_raw()
- 
- void CLASS kodak_radc_load_raw()
- {
--  static const char src[] = {
-+  static const signed char src[] = {
- 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2018-04-13 Thread Evangelos Foutras via arch-commits
Date: Friday, April 13, 2018 @ 14:43:55
  Author: foutrelis
Revision: 316182

upgpkg: gimp-ufraw 0.22-13

Rebuild against glibc 2.26.

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-13 14:41:54 UTC (rev 316181)
+++ PKGBUILD2018-04-13 14:43:55 UTC (rev 316182)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=12
+pkgrel=13
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64')


[arch-commits] Commit in gimp-ufraw/repos (staging-x86_64)

2018-04-13 Thread Evangelos Foutras via arch-commits
Date: Friday, April 13, 2018 @ 14:41:54
  Author: foutrelis
Revision: 316181

Remove stale repos/staging-x86_64

Deleted:
  gimp-ufraw/repos/staging-x86_64/


[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2018-04-12 Thread Christian Hesse via arch-commits
Date: Thursday, April 12, 2018 @ 19:55:48
  Author: eworm
Revision: 316117

upgpkg: gimp-ufraw 0.22-12

cfitsio 3.440 rebuild

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-12 19:50:39 UTC (rev 316116)
+++ PKGBUILD2018-04-12 19:55:48 UTC (rev 316117)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=11
+pkgrel=12
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64')


[arch-commits] Commit in gimp-ufraw/repos (6 files)

2018-04-12 Thread Christian Hesse via arch-commits
Date: Thursday, April 12, 2018 @ 19:56:04
  Author: eworm
Revision: 316118

archrelease: copy trunk to community-staging-x86_64

Added:
  gimp-ufraw/repos/community-staging-x86_64/
  gimp-ufraw/repos/community-staging-x86_64/001-no-gimp-remote.patch
(from rev 316117, gimp-ufraw/trunk/001-no-gimp-remote.patch)
  gimp-ufraw/repos/community-staging-x86_64/002-CVE-2015-8366.patch
(from rev 316117, gimp-ufraw/trunk/002-CVE-2015-8366.patch)
  gimp-ufraw/repos/community-staging-x86_64/003-fix-unsigned-char.patch
(from rev 316117, gimp-ufraw/trunk/003-fix-unsigned-char.patch)
  gimp-ufraw/repos/community-staging-x86_64/004-gcc-7.patch
(from rev 316117, gimp-ufraw/trunk/004-gcc-7.patch)
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 316117, gimp-ufraw/trunk/PKGBUILD)

-+
 001-no-gimp-remote.patch|   12 
 002-CVE-2015-8366.patch |   17 +++
 003-fix-unsigned-char.patch |   15 ++
 004-gcc-7.patch |   15 ++
 PKGBUILD|   61 ++
 5 files changed, 120 insertions(+)

Copied: gimp-ufraw/repos/community-staging-x86_64/001-no-gimp-remote.patch 
(from rev 316117, gimp-ufraw/trunk/001-no-gimp-remote.patch)
===
--- community-staging-x86_64/001-no-gimp-remote.patch   
(rev 0)
+++ community-staging-x86_64/001-no-gimp-remote.patch   2018-04-12 19:56:04 UTC 
(rev 316118)
@@ -0,0 +1,12 @@
+Don't use gimp-remote since gimp 2.4 already includes gimp-remote functionality
+--- a/ufraw_conf.c
 b/ufraw_conf.c
+@@ -137,7 +137,7 @@
+ #elif HAVE_GIMP_2_4
+ "gimp", /* remoteGimpCommand */
+ #else
+-"gimp-remote", /* remoteGimpCommand */
++"gimp", /* remoteGimpCommand */
+ #endif
+ 
+ /* EXIF data */

Copied: gimp-ufraw/repos/community-staging-x86_64/002-CVE-2015-8366.patch (from 
rev 316117, gimp-ufraw/trunk/002-CVE-2015-8366.patch)
===
--- community-staging-x86_64/002-CVE-2015-8366.patch
(rev 0)
+++ community-staging-x86_64/002-CVE-2015-8366.patch2018-04-12 19:56:04 UTC 
(rev 316118)
@@ -0,0 +1,17 @@
+Fix a buffer overflow bug.  See
+https://github.com/LibRaw/LibRaw/commit/89d065424f09b788f443734d44857289489ca9e2
+
+--- a/dcraw.cc
 b/dcraw.cc
+@@ -3013,7 +3013,10 @@
+   diff = diff ? -diff : 0x80;
+ if (ftell(ifp) + 12 >= (int) seg[1][1])
+   diff = 0;
+-raw_image[pix] = pred[pix & 1] += diff;
++if(pix>=raw_width*raw_height)
++  derror();
++else
++  raw_image[pix] = pred[pix & 1] += diff;
+ if (!(pix & 1) && HOLE(pix / raw_width)) pix += 2;
+   }
+   maximum = 0xff;

Copied: gimp-ufraw/repos/community-staging-x86_64/003-fix-unsigned-char.patch 
(from rev 316117, gimp-ufraw/trunk/003-fix-unsigned-char.patch)
===
--- community-staging-x86_64/003-fix-unsigned-char.patch
(rev 0)
+++ community-staging-x86_64/003-fix-unsigned-char.patch2018-04-12 
19:56:04 UTC (rev 316118)
@@ -0,0 +1,15 @@
+Description: Fix unsigned char declaration of src[]
+Author: John Paul Adrian Glaubitz 
+Last-Update: 2017-02-27
+
+--- ufraw-0.22.orig/dcraw.cc
 ufraw-0.22/dcraw.cc
+@@ -2285,7 +2285,7 @@ void CLASS quicktake_100_load_raw()
+ 
+ void CLASS kodak_radc_load_raw()
+ {
+-  static const char src[] = {
++  static const signed char src[] = {
+ 1,1, 2,3, 3,4, 4,2, 5,7, 6,5, 7,6, 7,8,
+ 1,0, 2,1, 3,3, 4,4, 5,2, 6,7, 7,6, 8,5, 8,8,
+ 2,1, 2,3, 3,0, 3,2, 3,4, 4,6, 5,5, 6,7, 6,8,

Copied: gimp-ufraw/repos/community-staging-x86_64/004-gcc-7.patch (from rev 
316117, gimp-ufraw/trunk/004-gcc-7.patch)
===
--- community-staging-x86_64/004-gcc-7.patch(rev 0)
+++ community-staging-x86_64/004-gcc-7.patch2018-04-12 19:56:04 UTC (rev 
316118)
@@ -0,0 +1,15 @@
+diff --git a/dcraw.cc b/dcraw.cc
+index 88c8068..d78c66b 100644
+--- a/dcraw.cc
 b/dcraw.cc
+@@ -8766,8 +8766,8 @@ void CLASS identify()
+   "Nikon", "Nokia", "Olympus", "Pentax", "Phase One", "Ricoh",
+   "Samsung", "Sigma", "Sinar", "Sony" };
+   char head[32], *cp;
+-  unsigned fsize, i, c;
+-  int hlen, flen, zero_fsize=1;
++  unsigned fsize;
++  int hlen, flen, zero_fsize=1, i, c;
+   struct jhead jh;
+ 
+   tiff_flip = flip = filters = UINT_MAX;  /* unknown */

Copied: gimp-ufraw/repos/community-staging-x86_64/PKGBUILD (from rev 316117, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-12 19:56:04 UTC (rev 316118)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Alexander Rødseth 

[arch-commits] Commit in gimp-ufraw/repos/community-x86_64 (10 files)

2018-01-28 Thread Balló György via arch-commits
Date: Sunday, January 28, 2018 @ 21:59:14
  Author: bgyorgy
Revision: 287710

archrelease: copy trunk to community-x86_64

Added:
  gimp-ufraw/repos/community-x86_64/001-no-gimp-remote.patch
(from rev 287709, gimp-ufraw/trunk/001-no-gimp-remote.patch)
  gimp-ufraw/repos/community-x86_64/002-CVE-2015-8366.patch
(from rev 287709, gimp-ufraw/trunk/002-CVE-2015-8366.patch)
  gimp-ufraw/repos/community-x86_64/003-fix-unsigned-char.patch
(from rev 287709, gimp-ufraw/trunk/003-fix-unsigned-char.patch)
  gimp-ufraw/repos/community-x86_64/004-gcc-7.patch
(from rev 287709, gimp-ufraw/trunk/004-gcc-7.patch)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 287709, gimp-ufraw/trunk/PKGBUILD)
Deleted:
  gimp-ufraw/repos/community-x86_64/001-no-gimp-remote.patch
  gimp-ufraw/repos/community-x86_64/002-CVE-2015-8366.patch
  gimp-ufraw/repos/community-x86_64/003-fix-unsigned-char.patch
  gimp-ufraw/repos/community-x86_64/004-gcc-7.patch
  gimp-ufraw/repos/community-x86_64/PKGBUILD

-+
 001-no-gimp-remote.patch|   24 
 002-CVE-2015-8366.patch |   34 +--
 003-fix-unsigned-char.patch |   30 +-
 004-gcc-7.patch |   30 +-
 PKGBUILD|  123 --
 5 files changed, 120 insertions(+), 121 deletions(-)

Deleted: 001-no-gimp-remote.patch
===
--- 001-no-gimp-remote.patch2018-01-28 21:59:01 UTC (rev 287709)
+++ 001-no-gimp-remote.patch2018-01-28 21:59:14 UTC (rev 287710)
@@ -1,12 +0,0 @@
-Don't use gimp-remote since gimp 2.4 already includes gimp-remote functionality
 a/ufraw_conf.c
-+++ b/ufraw_conf.c
-@@ -137,7 +137,7 @@
- #elif HAVE_GIMP_2_4
- "gimp", /* remoteGimpCommand */
- #else
--"gimp-remote", /* remoteGimpCommand */
-+"gimp", /* remoteGimpCommand */
- #endif
- 
- /* EXIF data */

Copied: gimp-ufraw/repos/community-x86_64/001-no-gimp-remote.patch (from rev 
287709, gimp-ufraw/trunk/001-no-gimp-remote.patch)
===
--- 001-no-gimp-remote.patch(rev 0)
+++ 001-no-gimp-remote.patch2018-01-28 21:59:14 UTC (rev 287710)
@@ -0,0 +1,12 @@
+Don't use gimp-remote since gimp 2.4 already includes gimp-remote functionality
+--- a/ufraw_conf.c
 b/ufraw_conf.c
+@@ -137,7 +137,7 @@
+ #elif HAVE_GIMP_2_4
+ "gimp", /* remoteGimpCommand */
+ #else
+-"gimp-remote", /* remoteGimpCommand */
++"gimp", /* remoteGimpCommand */
+ #endif
+ 
+ /* EXIF data */

Deleted: 002-CVE-2015-8366.patch
===
--- 002-CVE-2015-8366.patch 2018-01-28 21:59:01 UTC (rev 287709)
+++ 002-CVE-2015-8366.patch 2018-01-28 21:59:14 UTC (rev 287710)
@@ -1,17 +0,0 @@
-Fix a buffer overflow bug.  See
-https://github.com/LibRaw/LibRaw/commit/89d065424f09b788f443734d44857289489ca9e2
-
 a/dcraw.cc
-+++ b/dcraw.cc
-@@ -3013,7 +3013,10 @@
-   diff = diff ? -diff : 0x80;
- if (ftell(ifp) + 12 >= (int) seg[1][1])
-   diff = 0;
--raw_image[pix] = pred[pix & 1] += diff;
-+if(pix>=raw_width*raw_height)
-+  derror();
-+else
-+  raw_image[pix] = pred[pix & 1] += diff;
- if (!(pix & 1) && HOLE(pix / raw_width)) pix += 2;
-   }
-   maximum = 0xff;

Copied: gimp-ufraw/repos/community-x86_64/002-CVE-2015-8366.patch (from rev 
287709, gimp-ufraw/trunk/002-CVE-2015-8366.patch)
===
--- 002-CVE-2015-8366.patch (rev 0)
+++ 002-CVE-2015-8366.patch 2018-01-28 21:59:14 UTC (rev 287710)
@@ -0,0 +1,17 @@
+Fix a buffer overflow bug.  See
+https://github.com/LibRaw/LibRaw/commit/89d065424f09b788f443734d44857289489ca9e2
+
+--- a/dcraw.cc
 b/dcraw.cc
+@@ -3013,7 +3013,10 @@
+   diff = diff ? -diff : 0x80;
+ if (ftell(ifp) + 12 >= (int) seg[1][1])
+   diff = 0;
+-raw_image[pix] = pred[pix & 1] += diff;
++if(pix>=raw_width*raw_height)
++  derror();
++else
++  raw_image[pix] = pred[pix & 1] += diff;
+ if (!(pix & 1) && HOLE(pix / raw_width)) pix += 2;
+   }
+   maximum = 0xff;

Deleted: 003-fix-unsigned-char.patch
===
--- 003-fix-unsigned-char.patch 2018-01-28 21:59:01 UTC (rev 287709)
+++ 003-fix-unsigned-char.patch 2018-01-28 21:59:14 UTC (rev 287710)
@@ -1,15 +0,0 @@
-Description: Fix unsigned char declaration of src[]
-Author: John Paul Adrian Glaubitz 
-Last-Update: 2017-02-27
-
 ufraw-0.22.orig/dcraw.cc
-+++ ufraw-0.22/dcraw.cc
-@@ -2285,7 +2285,7 @@ void CLASS quicktake_100_load_raw()
- 
- void CLASS kodak_radc_load_raw()
- {
--  static const char src[] = {
-+  static const signed char src[] = {
- 1,1, 2,3, 3,4, 4,2, 5,7, 6,5, 7,6, 7,8,
- 1,0, 2,1, 3,3, 4,4, 5,2, 6,7, 7,6, 8,5, 8,8,
- 2,1, 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2018-01-28 Thread Balló György via arch-commits
Date: Sunday, January 28, 2018 @ 21:59:01
  Author: bgyorgy
Revision: 287709

upgpkg: gimp-ufraw 0.22-11

Remove unused cinepaint dependency

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-28 21:44:42 UTC (rev 287708)
+++ PKGBUILD2018-01-28 21:59:01 UTC (rev 287709)
@@ -5,15 +5,14 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=10
+pkgrel=11
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64')
 license=('GPL')
 depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
+makedepends=('gimp')
+optdepends=('gimp: to use the gimp import plugin for raw images')
 source=("https://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;
 '001-no-gimp-remote.patch'
 '002-CVE-2015-8366.patch'


[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2017-08-04 Thread Christian Hesse
Date: Friday, August 4, 2017 @ 08:20:45
  Author: eworm
Revision: 248120

switch to https download

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-04 08:19:21 UTC (rev 248119)
+++ PKGBUILD2017-08-04 08:20:45 UTC (rev 248120)
@@ -14,7 +14,7 @@
 makedepends=('gimp' 'cinepaint')
 optdepends=('gimp: to use the gimp import plugin for raw images'
 'cinepaint: to use the cinepaint import plugin for raw images')
-source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;
+source=("https://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;
 '001-no-gimp-remote.patch'
 '002-CVE-2015-8366.patch'
 '003-fix-unsigned-char.patch'


[arch-commits] Commit in gimp-ufraw/repos (12 files)

2017-07-14 Thread Christian Hesse
Date: Friday, July 14, 2017 @ 19:32:01
  Author: eworm
Revision: 245114

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/
  gimp-ufraw/repos/community-staging-i686/001-no-gimp-remote.patch
(from rev 245113, gimp-ufraw/trunk/001-no-gimp-remote.patch)
  gimp-ufraw/repos/community-staging-i686/002-CVE-2015-8366.patch
(from rev 245113, gimp-ufraw/trunk/002-CVE-2015-8366.patch)
  gimp-ufraw/repos/community-staging-i686/003-fix-unsigned-char.patch
(from rev 245113, gimp-ufraw/trunk/003-fix-unsigned-char.patch)
  gimp-ufraw/repos/community-staging-i686/004-gcc-7.patch
(from rev 245113, gimp-ufraw/trunk/004-gcc-7.patch)
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 245113, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/
  gimp-ufraw/repos/community-staging-x86_64/001-no-gimp-remote.patch
(from rev 245113, gimp-ufraw/trunk/001-no-gimp-remote.patch)
  gimp-ufraw/repos/community-staging-x86_64/002-CVE-2015-8366.patch
(from rev 245113, gimp-ufraw/trunk/002-CVE-2015-8366.patch)
  gimp-ufraw/repos/community-staging-x86_64/003-fix-unsigned-char.patch
(from rev 245113, gimp-ufraw/trunk/003-fix-unsigned-char.patch)
  gimp-ufraw/repos/community-staging-x86_64/004-gcc-7.patch
(from rev 245113, gimp-ufraw/trunk/004-gcc-7.patch)
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 245113, gimp-ufraw/trunk/PKGBUILD)

--+
 community-staging-i686/001-no-gimp-remote.patch  |   12 +++
 community-staging-i686/002-CVE-2015-8366.patch   |   17 
 community-staging-i686/003-fix-unsigned-char.patch   |   15 
 community-staging-i686/004-gcc-7.patch   |   15 
 community-staging-i686/PKGBUILD  |   62 +
 community-staging-x86_64/001-no-gimp-remote.patch|   12 +++
 community-staging-x86_64/002-CVE-2015-8366.patch |   17 
 community-staging-x86_64/003-fix-unsigned-char.patch |   15 
 community-staging-x86_64/004-gcc-7.patch |   15 
 community-staging-x86_64/PKGBUILD|   62 +
 10 files changed, 242 insertions(+)

Copied: gimp-ufraw/repos/community-staging-i686/001-no-gimp-remote.patch (from 
rev 245113, gimp-ufraw/trunk/001-no-gimp-remote.patch)
===
--- community-staging-i686/001-no-gimp-remote.patch 
(rev 0)
+++ community-staging-i686/001-no-gimp-remote.patch 2017-07-14 19:32:01 UTC 
(rev 245114)
@@ -0,0 +1,12 @@
+Don't use gimp-remote since gimp 2.4 already includes gimp-remote functionality
+--- a/ufraw_conf.c
 b/ufraw_conf.c
+@@ -137,7 +137,7 @@
+ #elif HAVE_GIMP_2_4
+ "gimp", /* remoteGimpCommand */
+ #else
+-"gimp-remote", /* remoteGimpCommand */
++"gimp", /* remoteGimpCommand */
+ #endif
+ 
+ /* EXIF data */

Copied: gimp-ufraw/repos/community-staging-i686/002-CVE-2015-8366.patch (from 
rev 245113, gimp-ufraw/trunk/002-CVE-2015-8366.patch)
===
--- community-staging-i686/002-CVE-2015-8366.patch  
(rev 0)
+++ community-staging-i686/002-CVE-2015-8366.patch  2017-07-14 19:32:01 UTC 
(rev 245114)
@@ -0,0 +1,17 @@
+Fix a buffer overflow bug.  See
+https://github.com/LibRaw/LibRaw/commit/89d065424f09b788f443734d44857289489ca9e2
+
+--- a/dcraw.cc
 b/dcraw.cc
+@@ -3013,7 +3013,10 @@
+   diff = diff ? -diff : 0x80;
+ if (ftell(ifp) + 12 >= (int) seg[1][1])
+   diff = 0;
+-raw_image[pix] = pred[pix & 1] += diff;
++if(pix>=raw_width*raw_height)
++  derror();
++else
++  raw_image[pix] = pred[pix & 1] += diff;
+ if (!(pix & 1) && HOLE(pix / raw_width)) pix += 2;
+   }
+   maximum = 0xff;

Copied: gimp-ufraw/repos/community-staging-i686/003-fix-unsigned-char.patch 
(from rev 245113, gimp-ufraw/trunk/003-fix-unsigned-char.patch)
===
--- community-staging-i686/003-fix-unsigned-char.patch  
(rev 0)
+++ community-staging-i686/003-fix-unsigned-char.patch  2017-07-14 19:32:01 UTC 
(rev 245114)
@@ -0,0 +1,15 @@
+Description: Fix unsigned char declaration of src[]
+Author: John Paul Adrian Glaubitz 
+Last-Update: 2017-02-27
+
+--- ufraw-0.22.orig/dcraw.cc
 ufraw-0.22/dcraw.cc
+@@ -2285,7 +2285,7 @@ void CLASS quicktake_100_load_raw()
+ 
+ void CLASS kodak_radc_load_raw()
+ {
+-  static const char src[] = {
++  static const signed char src[] = {
+ 1,1, 2,3, 3,4, 4,2, 5,7, 6,5, 7,6, 7,8,
+ 1,0, 2,1, 3,3, 4,4, 5,2, 6,7, 7,6, 8,5, 8,8,
+ 2,1, 2,3, 3,0, 3,2, 3,4, 4,6, 5,5, 6,7, 6,8,

Copied: gimp-ufraw/repos/community-staging-i686/004-gcc-7.patch (from rev 
245113, gimp-ufraw/trunk/004-gcc-7.patch)

[arch-commits] Commit in gimp-ufraw/trunk (5 files)

2017-07-14 Thread Christian Hesse
Date: Friday, July 14, 2017 @ 19:31:52
  Author: eworm
Revision: 245113

upgpkg: gimp-ufraw 0.22-10

* exiv2 0.26 rebuild
* include patches from Debian
* fix compilation with GCC 7.1

Added:
  gimp-ufraw/trunk/001-no-gimp-remote.patch
  gimp-ufraw/trunk/002-CVE-2015-8366.patch
  gimp-ufraw/trunk/003-fix-unsigned-char.patch
  gimp-ufraw/trunk/004-gcc-7.patch
Modified:
  gimp-ufraw/trunk/PKGBUILD

-+
 001-no-gimp-remote.patch|   12 
 002-CVE-2015-8366.patch |   17 +
 003-fix-unsigned-char.patch |   15 +++
 004-gcc-7.patch |   15 +++
 PKGBUILD|   21 ++---
 5 files changed, 77 insertions(+), 3 deletions(-)

Added: 001-no-gimp-remote.patch
===
--- 001-no-gimp-remote.patch(rev 0)
+++ 001-no-gimp-remote.patch2017-07-14 19:31:52 UTC (rev 245113)
@@ -0,0 +1,12 @@
+Don't use gimp-remote since gimp 2.4 already includes gimp-remote functionality
+--- a/ufraw_conf.c
 b/ufraw_conf.c
+@@ -137,7 +137,7 @@
+ #elif HAVE_GIMP_2_4
+ "gimp", /* remoteGimpCommand */
+ #else
+-"gimp-remote", /* remoteGimpCommand */
++"gimp", /* remoteGimpCommand */
+ #endif
+ 
+ /* EXIF data */

Added: 002-CVE-2015-8366.patch
===
--- 002-CVE-2015-8366.patch (rev 0)
+++ 002-CVE-2015-8366.patch 2017-07-14 19:31:52 UTC (rev 245113)
@@ -0,0 +1,17 @@
+Fix a buffer overflow bug.  See
+https://github.com/LibRaw/LibRaw/commit/89d065424f09b788f443734d44857289489ca9e2
+
+--- a/dcraw.cc
 b/dcraw.cc
+@@ -3013,7 +3013,10 @@
+   diff = diff ? -diff : 0x80;
+ if (ftell(ifp) + 12 >= (int) seg[1][1])
+   diff = 0;
+-raw_image[pix] = pred[pix & 1] += diff;
++if(pix>=raw_width*raw_height)
++  derror();
++else
++  raw_image[pix] = pred[pix & 1] += diff;
+ if (!(pix & 1) && HOLE(pix / raw_width)) pix += 2;
+   }
+   maximum = 0xff;

Added: 003-fix-unsigned-char.patch
===
--- 003-fix-unsigned-char.patch (rev 0)
+++ 003-fix-unsigned-char.patch 2017-07-14 19:31:52 UTC (rev 245113)
@@ -0,0 +1,15 @@
+Description: Fix unsigned char declaration of src[]
+Author: John Paul Adrian Glaubitz 
+Last-Update: 2017-02-27
+
+--- ufraw-0.22.orig/dcraw.cc
 ufraw-0.22/dcraw.cc
+@@ -2285,7 +2285,7 @@ void CLASS quicktake_100_load_raw()
+ 
+ void CLASS kodak_radc_load_raw()
+ {
+-  static const char src[] = {
++  static const signed char src[] = {
+ 1,1, 2,3, 3,4, 4,2, 5,7, 6,5, 7,6, 7,8,
+ 1,0, 2,1, 3,3, 4,4, 5,2, 6,7, 7,6, 8,5, 8,8,
+ 2,1, 2,3, 3,0, 3,2, 3,4, 4,6, 5,5, 6,7, 6,8,

Added: 004-gcc-7.patch
===
--- 004-gcc-7.patch (rev 0)
+++ 004-gcc-7.patch 2017-07-14 19:31:52 UTC (rev 245113)
@@ -0,0 +1,15 @@
+diff --git a/dcraw.cc b/dcraw.cc
+index 88c8068..d78c66b 100644
+--- a/dcraw.cc
 b/dcraw.cc
+@@ -8766,8 +8766,8 @@ void CLASS identify()
+   "Nikon", "Nokia", "Olympus", "Pentax", "Phase One", "Ricoh",
+   "Samsung", "Sigma", "Sinar", "Sony" };
+   char head[32], *cp;
+-  unsigned fsize, i, c;
+-  int hlen, flen, zero_fsize=1;
++  unsigned fsize;
++  int hlen, flen, zero_fsize=1, i, c;
+   struct jhead jh;
+ 
+   tiff_flip = flip = filters = UINT_MAX;  /* unknown */

Modified: PKGBUILD
===
--- PKGBUILD2017-07-14 18:06:06 UTC (rev 245112)
+++ PKGBUILD2017-07-14 19:31:52 UTC (rev 245113)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=9
+pkgrel=10
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')
@@ -14,8 +14,16 @@
 makedepends=('gimp' 'cinepaint')
 optdepends=('gimp: to use the gimp import plugin for raw images'
 'cinepaint: to use the cinepaint import plugin for raw images')
-source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;
+'001-no-gimp-remote.patch'
+'002-CVE-2015-8366.patch'
+'003-fix-unsigned-char.patch'
+'004-gcc-7.patch')
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e'
+'5a3d33edc738228ea5442cef95d2914cd20fbbae911b1005a5cb0d7931fdeda1'
+'3fc1cb962d1023e6c81e2c93353faae8ee395ba31ea121265686918ad51cb219'
+'dbb0dc200867cb67f2ba7688b164e28393ce409092fb759e79b0912dceb3424a'
+'5a4be00a7548eb78d7d325646b80ceae2d54fd8bfd46f977586b5e1272af3e4c')
 
 prepare() {
   # One of the include files that comes with cinepaint 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2016-11-22 Thread Levente Polyak
Date: Tuesday, November 22, 2016 @ 17:35:26
  Author: anthraxx
Revision: 196545

upgpkg: gimp-ufraw 0.22-9 (jasper rebuild)

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-22 17:29:19 UTC (rev 196544)
+++ PKGBUILD2016-11-22 17:35:26 UTC (rev 196545)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=8
+pkgrel=9
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')


[arch-commits] Commit in gimp-ufraw/repos (4 files)

2016-11-22 Thread Levente Polyak
Date: Tuesday, November 22, 2016 @ 17:35:40
  Author: anthraxx
Revision: 196546

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 196545, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 196545, gimp-ufraw/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: gimp-ufraw/repos/community-staging-i686/PKGBUILD (from rev 196545, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-11-22 17:35:40 UTC (rev 196546)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=9
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-x86_64/PKGBUILD (from rev 196545, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-11-22 17:35:40 UTC (rev 196546)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=9
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gimp-ufraw/repos (4 files)

2016-11-10 Thread Levente Polyak
Date: Thursday, November 10, 2016 @ 17:13:16
  Author: anthraxx
Revision: 195310

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 195309, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 195309, gimp-ufraw/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: gimp-ufraw/repos/community-staging-i686/PKGBUILD (from rev 195309, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-11-10 17:13:16 UTC (rev 195310)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=8
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-x86_64/PKGBUILD (from rev 195309, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-11-10 17:13:16 UTC (rev 195310)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=8
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gimp-ufraw/repos (4 files)

2016-11-09 Thread Levente Polyak
Date: Wednesday, November 9, 2016 @ 23:29:51
  Author: anthraxx
Revision: 195271

archrelease: copy trunk to staging-x86_64, staging-i686

Added:
  gimp-ufraw/repos/staging-i686/
  gimp-ufraw/repos/staging-i686/PKGBUILD
(from rev 195270, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/staging-x86_64/
  gimp-ufraw/repos/staging-x86_64/PKGBUILD
(from rev 195270, gimp-ufraw/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   47 ++
 staging-x86_64/PKGBUILD |   47 ++
 2 files changed, 94 insertions(+)

Copied: gimp-ufraw/repos/staging-i686/PKGBUILD (from rev 195270, 
gimp-ufraw/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-11-09 23:29:51 UTC (rev 195271)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=8
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/staging-x86_64/PKGBUILD (from rev 195270, 
gimp-ufraw/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-11-09 23:29:51 UTC (rev 195271)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=8
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2016-11-09 Thread Levente Polyak
Date: Wednesday, November 9, 2016 @ 23:29:40
  Author: anthraxx
Revision: 195270

upgpkg: gimp-ufraw 0.22-8 (jasper rebuild)

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-11-09 23:25:21 UTC (rev 195269)
+++ PKGBUILD2016-11-09 23:29:40 UTC (rev 195270)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=7
+pkgrel=8
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')


[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2016-06-06 Thread Christian Hesse
Date: Monday, June 6, 2016 @ 22:48:57
  Author: eworm
Revision: 178054

upgpkg: gimp-ufraw 0.22-7

cfitsio rebuild

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-06 20:47:35 UTC (rev 178053)
+++ PKGBUILD2016-06-06 20:48:57 UTC (rev 178054)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=6
+pkgrel=7
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')


[arch-commits] Commit in gimp-ufraw/repos (4 files)

2016-06-06 Thread Christian Hesse
Date: Monday, June 6, 2016 @ 22:49:02
  Author: eworm
Revision: 178055

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 178054, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 178054, gimp-ufraw/trunk/PKGBUILD)
Deleted:
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |   94 
 community-staging-i686/PKGBUILD   |   47 --
 community-staging-x86_64/PKGBUILD |   47 --
 3 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2016-06-06 20:48:57 UTC (rev 178054)
+++ community-staging-i686/PKGBUILD 2016-06-06 20:49:02 UTC (rev 178055)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Tobias Kieslich 
-# Contributor: Martin Sugioarto 
-
-pkgname=gimp-ufraw
-pkgver=0.22
-pkgrel=6
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
-
-prepare() {
-  # One of the include files that comes with cinepaint requires
-  # ../lib/wire/ to exist...
-  mkdir -p lib
-  ln -s /usr/include/cinepaint/wire lib/wire
-}
-
-build() {
-  cd "ufraw-$pkgver"
-
-  ./configure \
---prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
---with-gimp \
---with-cinepaint \
---enable-contrast
-  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
-  make
-}
-
-package() {
-  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
-  rm -f "$pkgdir/usr/bin/dcraw"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-i686/PKGBUILD (from rev 178054, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-06-06 20:49:02 UTC (rev 178055)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=7
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2016-06-06 20:48:57 UTC (rev 178054)
+++ community-staging-x86_64/PKGBUILD   2016-06-06 20:49:02 UTC (rev 178055)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Tobias Kieslich 
-# Contributor: Martin Sugioarto 
-
-pkgname=gimp-ufraw
-pkgver=0.22
-pkgrel=6
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw 

[arch-commits] Commit in gimp-ufraw/repos (4 files)

2016-06-06 Thread Christian Hesse
Date: Monday, June 6, 2016 @ 22:47:35
  Author: eworm
Revision: 178053

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 178052, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 178052, gimp-ufraw/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: gimp-ufraw/repos/community-staging-i686/PKGBUILD (from rev 178052, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-06-06 20:47:35 UTC (rev 178053)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=6
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-x86_64/PKGBUILD (from rev 178052, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-06-06 20:47:35 UTC (rev 178053)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=6
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD gimp-ufraw.install)

2016-05-24 Thread Christian Hesse
Date: Tuesday, May 24, 2016 @ 23:41:00
  Author: eworm
Revision: 176461

upgpkg: gimp-ufraw 0.22-6

Hooks! (Remove install file...)

Modified:
  gimp-ufraw/trunk/PKGBUILD
Deleted:
  gimp-ufraw/trunk/gimp-ufraw.install

+
 PKGBUILD   |3 +--
 gimp-ufraw.install |   13 -
 2 files changed, 1 insertion(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-24 21:23:31 UTC (rev 176460)
+++ PKGBUILD2016-05-24 21:41:00 UTC (rev 176461)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=5
+pkgrel=6
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')
@@ -14,7 +14,6 @@
 makedepends=('gimp' 'cinepaint')
 optdepends=('gimp: to use the gimp import plugin for raw images'
 'cinepaint: to use the cinepaint import plugin for raw images')
-install="$pkgname.install"
 source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
 sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
 

Deleted: gimp-ufraw.install
===
--- gimp-ufraw.install  2016-05-24 21:23:31 UTC (rev 176460)
+++ gimp-ufraw.install  2016-05-24 21:41:00 UTC (rev 176461)
@@ -1,13 +0,0 @@
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gimp-ufraw/repos (6 files)

2016-05-24 Thread Christian Hesse
Date: Tuesday, May 24, 2016 @ 23:41:05
  Author: eworm
Revision: 176462

archrelease: copy trunk to community-x86_64, community-i686

Added:
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 176461, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 176461, gimp-ufraw/trunk/PKGBUILD)
Deleted:
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 /PKGBUILD   |   94 ++
 community-i686/PKGBUILD |   48 -
 community-i686/gimp-ufraw.install   |   13 
 community-x86_64/PKGBUILD   |   48 -
 community-x86_64/gimp-ufraw.install |   13 
 5 files changed, 94 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-24 21:41:00 UTC (rev 176461)
+++ community-i686/PKGBUILD 2016-05-24 21:41:05 UTC (rev 176462)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Tobias Kieslich 
-# Contributor: Martin Sugioarto 
-
-pkgname=gimp-ufraw
-pkgver=0.22
-pkgrel=5
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install="$pkgname.install"
-source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
-
-prepare() {
-  # One of the include files that comes with cinepaint requires
-  # ../lib/wire/ to exist...
-  mkdir -p lib
-  ln -s /usr/include/cinepaint/wire lib/wire
-}
-
-build() {
-  cd "ufraw-$pkgver"
-
-  ./configure \
---prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
---with-gimp \
---with-cinepaint \
---enable-contrast
-  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
-  make
-}
-
-package() {
-  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
-  rm -f "$pkgdir/usr/bin/dcraw"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 176461, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-24 21:41:05 UTC (rev 176462)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=6
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   2016-05-24 21:41:00 UTC (rev 176461)
+++ community-i686/gimp-ufraw.install   2016-05-24 21:41:05 UTC (rev 176462)
@@ -1,13 +0,0 @@
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-05-24 21:41:00 UTC (rev 176461)
+++ community-x86_64/PKGBUILD   2016-05-24 21:41:05 UTC (rev 176462)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2016-02-04 Thread Antonio Rojas
Date: Thursday, February 4, 2016 @ 21:18:08
  Author: arojas
Revision: 160343

lensfun 0.3.2 rebuild

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-04 20:15:12 UTC (rev 160342)
+++ PKGBUILD2016-02-04 20:18:08 UTC (rev 160343)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=4
+pkgrel=5
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')


[arch-commits] Commit in gimp-ufraw/repos (6 files)

2016-02-04 Thread Antonio Rojas
Date: Thursday, February 4, 2016 @ 21:18:35
  Author: arojas
Revision: 160344

archrelease: copy trunk to community-testing-x86_64, community-testing-i686

Added:
  gimp-ufraw/repos/community-testing-i686/
  gimp-ufraw/repos/community-testing-i686/PKGBUILD
(from rev 160343, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-testing-i686/gimp-ufraw.install
(from rev 160343, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-testing-x86_64/
  gimp-ufraw/repos/community-testing-x86_64/PKGBUILD
(from rev 160343, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-testing-x86_64/gimp-ufraw.install
(from rev 160343, gimp-ufraw/trunk/gimp-ufraw.install)

-+
 community-testing-i686/PKGBUILD |   48 ++
 community-testing-i686/gimp-ufraw.install   |   13 +++
 community-testing-x86_64/PKGBUILD   |   48 ++
 community-testing-x86_64/gimp-ufraw.install |   13 +++
 4 files changed, 122 insertions(+)

Copied: gimp-ufraw/repos/community-testing-i686/PKGBUILD (from rev 160343, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-04 20:18:35 UTC (rev 160344)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=5
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-testing-i686/gimp-ufraw.install (from rev 
160343, gimp-ufraw/trunk/gimp-ufraw.install)
===
--- community-testing-i686/gimp-ufraw.install   (rev 0)
+++ community-testing-i686/gimp-ufraw.install   2016-02-04 20:18:35 UTC (rev 
160344)
@@ -0,0 +1,13 @@
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-testing-x86_64/PKGBUILD (from rev 160343, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-02-04 20:18:35 UTC (rev 160344)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=5
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm 

[arch-commits] Commit in gimp-ufraw/repos (6 files)

2015-12-07 Thread Evangelos Foutras
Date: Monday, December 7, 2015 @ 13:33:50
  Author: foutrelis
Revision: 149813

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 149812, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install
(from rev 149812, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-staging-x86_64/
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 149811, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/gimp-ufraw.install
(from rev 149812, gimp-ufraw/trunk/gimp-ufraw.install)

-+
 community-staging-i686/PKGBUILD |   48 ++
 community-staging-i686/gimp-ufraw.install   |   13 +++
 community-staging-x86_64/PKGBUILD   |   48 ++
 community-staging-x86_64/gimp-ufraw.install |   13 +++
 4 files changed, 122 insertions(+)

Copied: gimp-ufraw/repos/community-staging-i686/PKGBUILD (from rev 149812, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 12:33:50 UTC (rev 149813)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=4
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/bin/dcraw"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install (from rev 
149812, gimp-ufraw/trunk/gimp-ufraw.install)
===
--- community-staging-i686/gimp-ufraw.install   (rev 0)
+++ community-staging-i686/gimp-ufraw.install   2015-12-07 12:33:50 UTC (rev 
149813)
@@ -0,0 +1,13 @@
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-x86_64/PKGBUILD (from rev 149811, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-07 12:33:50 UTC (rev 149813)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Tobias Kieslich 
+# Contributor: Martin Sugioarto 
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=4
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd "ufraw-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i "s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/" Makefile
+  make
+}
+
+package() {
+  make -C "ufraw-$pkgver" DESTDIR="$pkgdir" install
+  rm 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2015-12-07 Thread Evangelos Foutras
Date: Monday, December 7, 2015 @ 13:33:36
  Author: foutrelis
Revision: 149810

C++11 ABI rebuild

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-07 12:33:26 UTC (rev 149809)
+++ PKGBUILD2015-12-07 12:33:36 UTC (rev 149810)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=3
+pkgrel=4
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')


[arch-commits] Commit in gimp-ufraw/repos (8 files)

2015-07-03 Thread Alexander Rødseth
Date: Friday, July 3, 2015 @ 14:56:55
  Author: arodseth
Revision: 136322

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 136321, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install
(from rev 136321, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 136321, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/gimp-ufraw.install
(from rev 136321, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
  gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
  gimp-ufraw/repos/community-staging-x86_64/gimp-ufraw.install

-+
 /PKGBUILD   |   96 ++
 /gimp-ufraw.install |   26 +++
 community-staging-i686/PKGBUILD |   48 -
 community-staging-i686/gimp-ufraw.install   |6 -
 community-staging-x86_64/PKGBUILD   |   48 -
 community-staging-x86_64/gimp-ufraw.install |6 -
 6 files changed, 122 insertions(+), 108 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2015-07-03 12:55:46 UTC (rev 136321)
+++ community-staging-i686/PKGBUILD 2015-07-03 12:56:55 UTC (rev 136322)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Martin Sugioarto na...@web.de
-
-pkgname=gimp-ufraw
-pkgver=0.22
-pkgrel=2
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
-
-prepare() {
-  # One of the include files that comes with cinepaint requires
-  # ../lib/wire/ to exist...
-  mkdir -p lib
-  ln -s /usr/include/cinepaint/wire lib/wire
-}
-
-build() {
-  cd ufraw-$pkgver
-
-  ./configure \
---prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
---with-gimp \
---with-cinepaint \
---enable-contrast
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  make -C ufraw-$pkgver DESTDIR=$pkgdir install
-  rm -f $pkgdir/usr/bin/dcraw
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-i686/PKGBUILD (from rev 136321, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-07-03 12:56:55 UTC (rev 136322)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=3
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  make -C ufraw-$pkgver DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-staging-i686/gimp-ufraw.install
===
--- community-staging-i686/gimp-ufraw.install   2015-07-03 12:55:46 UTC (rev 
136321)
+++ community-staging-i686/gimp-ufraw.install   2015-07-03 12:56:55 UTC (rev 
136322)
@@ -1,6 +0,0 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD gimp-ufraw.install)

2015-07-03 Thread Alexander Rødseth
Date: Friday, July 3, 2015 @ 14:48:50
  Author: arodseth
Revision: 136319

upgpkg: gimp-ufraw 0.22-2

Modified:
  gimp-ufraw/trunk/PKGBUILD
  gimp-ufraw/trunk/gimp-ufraw.install

+
 PKGBUILD   |2 +-
 gimp-ufraw.install |   15 ---
 2 files changed, 5 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-03 12:39:55 UTC (rev 136318)
+++ PKGBUILD2015-07-03 12:48:50 UTC (rev 136319)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=1
+pkgrel=2
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')

Modified: gimp-ufraw.install
===
--- gimp-ufraw.install  2015-07-03 12:39:55 UTC (rev 136318)
+++ gimp-ufraw.install  2015-07-03 12:48:50 UTC (rev 136319)
@@ -1,13 +1,6 @@
-post_install() {
-  update-desktop-database -q
-}
+updb() { update-desktop-database -q }
+post_upgrade() { updb }
+post_install() { updb }
+post_remove()  { updb }
 
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}
-
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in gimp-ufraw/repos (6 files)

2015-07-03 Thread Alexander Rødseth
Date: Friday, July 3, 2015 @ 14:49:51
  Author: arodseth
Revision: 136320

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 136319, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install
(from rev 136319, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-staging-x86_64/
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 136319, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/gimp-ufraw.install
(from rev 136319, gimp-ufraw/trunk/gimp-ufraw.install)

-+
 community-staging-i686/PKGBUILD |   48 ++
 community-staging-i686/gimp-ufraw.install   |6 +++
 community-staging-x86_64/PKGBUILD   |   48 ++
 community-staging-x86_64/gimp-ufraw.install |6 +++
 4 files changed, 108 insertions(+)

Copied: gimp-ufraw/repos/community-staging-i686/PKGBUILD (from rev 136319, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-07-03 12:49:51 UTC (rev 136320)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=2
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  make -C ufraw-$pkgver DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install (from rev 
136319, gimp-ufraw/trunk/gimp-ufraw.install)
===
--- community-staging-i686/gimp-ufraw.install   (rev 0)
+++ community-staging-i686/gimp-ufraw.install   2015-07-03 12:49:51 UTC (rev 
136320)
@@ -0,0 +1,6 @@
+updb() { update-desktop-database -q }
+post_upgrade() { updb }
+post_install() { updb }
+post_remove()  { updb }
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-x86_64/PKGBUILD (from rev 136319, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-07-03 12:49:51 UTC (rev 136320)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=2
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  make -C ufraw-$pkgver DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD gimp-ufraw.install)

2015-07-03 Thread Alexander Rødseth
Date: Friday, July 3, 2015 @ 14:55:46
  Author: arodseth
Revision: 136321

upgpkg: gimp-ufraw 0.22-3

Modified:
  gimp-ufraw/trunk/PKGBUILD
  gimp-ufraw/trunk/gimp-ufraw.install

+
 PKGBUILD   |2 +-
 gimp-ufraw.install |   15 +++
 2 files changed, 12 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-03 12:49:51 UTC (rev 136320)
+++ PKGBUILD2015-07-03 12:55:46 UTC (rev 136321)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.22
-pkgrel=2
+pkgrel=3
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')

Modified: gimp-ufraw.install
===
--- gimp-ufraw.install  2015-07-03 12:49:51 UTC (rev 136320)
+++ gimp-ufraw.install  2015-07-03 12:55:46 UTC (rev 136321)
@@ -1,6 +1,13 @@
-updb() { update-desktop-database -q }
-post_upgrade() { updb }
-post_install() { updb }
-post_remove()  { updb }
+post_upgrade() {
+  update-desktop-database -q
+}
 
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in gimp-ufraw/repos (8 files)

2015-06-26 Thread Alexander Rødseth
Date: Saturday, June 27, 2015 @ 00:45:51
  Author: arodseth
Revision: 135913

archrelease: copy trunk to community-x86_64, community-i686

Added:
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 135912, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
(from rev 135912, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 135912, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install
(from rev 135912, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 /PKGBUILD   |   96 ++
 /gimp-ufraw.install |   26 +
 community-i686/PKGBUILD |   47 
 community-i686/gimp-ufraw.install   |   13 
 community-x86_64/PKGBUILD   |   47 
 community-x86_64/gimp-ufraw.install |   13 
 6 files changed, 122 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-26 22:44:29 UTC (rev 135912)
+++ community-i686/PKGBUILD 2015-06-26 22:45:51 UTC (rev 135913)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Martin Sugioarto na...@web.de
-
-pkgname=gimp-ufraw
-pkgver=0.21
-pkgrel=1
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('2a6a1bcc633bdc8e15615cf726befcd7f27ab00e7c2a518469a24e1a96964d87')
-
-prepare() {
-  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
-  mkdir -p lib
-  ln -s /usr/include/cinepaint/wire lib/wire
-}
-
-build() {
-  cd ufraw-$pkgver
-
-  ./configure \
---prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
---with-gimp \
---with-cinepaint \
---enable-contrast
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  make -C ufraw-$pkgver DESTDIR=$pkgdir install
-  rm -f $pkgdir/usr/bin/dcraw
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 135912, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-26 22:45:51 UTC (rev 135913)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.22
+pkgrel=1
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
+
+prepare() {
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  make -C ufraw-$pkgver DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   2015-06-26 22:44:29 UTC (rev 135912)
+++ community-i686/gimp-ufraw.install   2015-06-26 22:45:51 UTC (rev 135913)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}
-
-# vim:set ts=2 sw=2 et:

Copied: 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2015-06-26 Thread Alexander Rødseth
Date: Saturday, June 27, 2015 @ 00:44:29
  Author: arodseth
Revision: 135912

upgpkg: gimp-ufraw 0.22-1

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-26 22:31:51 UTC (rev 135911)
+++ PKGBUILD2015-06-26 22:44:29 UTC (rev 135912)
@@ -4,7 +4,7 @@
 # Contributor: Martin Sugioarto na...@web.de
 
 pkgname=gimp-ufraw
-pkgver=0.21
+pkgver=0.22
 pkgrel=1
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
@@ -16,10 +16,11 @@
 'cinepaint: to use the cinepaint import plugin for raw images')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('2a6a1bcc633bdc8e15615cf726befcd7f27ab00e7c2a518469a24e1a96964d87')
+sha256sums=('f7abd28ce587db2a74b4c54149bd8a2523a7ddc09bedf4f923246ff0ae09a25e')
 
 prepare() {
-  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
+  # One of the include files that comes with cinepaint requires
+  # ../lib/wire/ to exist...
   mkdir -p lib
   ln -s /usr/include/cinepaint/wire lib/wire
 }


[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2015-02-17 Thread Alexander Rødseth
Date: Tuesday, February 17, 2015 @ 13:38:43
  Author: arodseth
Revision: 127852

upgpkg: gimp-ufraw 0.21-1

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |   12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-17 12:28:28 UTC (rev 127851)
+++ PKGBUILD2015-02-17 12:38:43 UTC (rev 127852)
@@ -4,19 +4,19 @@
 # Contributor: Martin Sugioarto na...@web.de
 
 pkgname=gimp-ufraw
-pkgver=0.20
-pkgrel=2
+pkgver=0.21
+pkgrel=1
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')
 license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
 makedepends=('gimp' 'cinepaint')
 optdepends=('gimp: to use the gimp import plugin for raw images'
 'cinepaint: to use the cinepaint import plugin for raw images')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('6dcd30f73238f56641ec87ae07807a6ebeab141a1a481aafe3ddab6f3db8a1e0')
+sha256sums=('2a6a1bcc633bdc8e15615cf726befcd7f27ab00e7c2a518469a24e1a96964d87')
 
 prepare() {
   # One of the include files that comes with cinepaint looks for 
../lib/wire/...
@@ -40,9 +40,7 @@
 }
 
 package() {
-  cd ufraw-$pkgver
-
-  make DESTDIR=$pkgdir install
+  make -C ufraw-$pkgver DESTDIR=$pkgdir install
   rm -f $pkgdir/usr/bin/dcraw
 }
 


[arch-commits] Commit in gimp-ufraw/repos (8 files)

2015-02-17 Thread Alexander Rødseth
Date: Tuesday, February 17, 2015 @ 13:57:59
  Author: arodseth
Revision: 127856

archrelease: copy trunk to community-x86_64, community-i686

Added:
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 127854, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
(from rev 127855, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 127852, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install
(from rev 127852, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 /PKGBUILD   |   94 ++
 /gimp-ufraw.install |   26 +
 community-i686/PKGBUILD |   49 -
 community-i686/gimp-ufraw.install   |   13 
 community-x86_64/PKGBUILD   |   49 -
 community-x86_64/gimp-ufraw.install |   13 
 6 files changed, 120 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-17 12:51:42 UTC (rev 127855)
+++ community-i686/PKGBUILD 2015-02-17 12:57:59 UTC (rev 127856)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Martin Sugioarto na...@web.de
-
-pkgname=gimp-ufraw
-pkgver=0.20
-pkgrel=2
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('6dcd30f73238f56641ec87ae07807a6ebeab141a1a481aafe3ddab6f3db8a1e0')
-
-prepare() {
-  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
-  mkdir -p lib
-  ln -s /usr/include/cinepaint/wire lib/wire
-}
-
-build() {
-  cd ufraw-$pkgver
-
-  ./configure \
---prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
---with-gimp \
---with-cinepaint \
---enable-contrast
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ufraw-$pkgver
-
-  make DESTDIR=$pkgdir install
-  rm -f $pkgdir/usr/bin/dcraw
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 127854, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-17 12:57:59 UTC (rev 127856)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.21
+pkgrel=1
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('2a6a1bcc633bdc8e15615cf726befcd7f27ab00e7c2a518469a24e1a96964d87')
+
+prepare() {
+  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  make -C ufraw-$pkgver DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   2015-02-17 12:51:42 UTC (rev 127855)
+++ community-i686/gimp-ufraw.install   2015-02-17 12:57:59 UTC (rev 127856)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}
-
-# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gimp-ufraw/repos (8 files)

2015-01-10 Thread Gaetan Bisson
Date: Sunday, January 11, 2015 @ 04:30:40
  Author: bisson
Revision: 125718

archrelease: copy trunk to community-x86_64, community-i686

Added:
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 125717, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
(from rev 125717, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 125717, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install
(from rev 125717, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 /PKGBUILD   |   98 ++
 /gimp-ufraw.install |   26 +
 community-i686/PKGBUILD |   49 -
 community-i686/gimp-ufraw.install   |   13 
 community-x86_64/PKGBUILD   |   49 -
 community-x86_64/gimp-ufraw.install |   13 
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-11 03:29:49 UTC (rev 125717)
+++ community-i686/PKGBUILD 2015-01-11 03:30:40 UTC (rev 125718)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Martin Sugioarto na...@web.de
-
-pkgname=gimp-ufraw
-pkgver=0.20
-pkgrel=1
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('6dcd30f73238f56641ec87ae07807a6ebeab141a1a481aafe3ddab6f3db8a1e0')
-
-prepare() {
-  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
-  mkdir -p lib
-  ln -s /usr/include/cinepaint/wire lib/wire
-}
-
-build() {
-  cd ufraw-$pkgver
-
-  ./configure \
---prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
---with-gimp \
---with-cinepaint \
---enable-contrast
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ufraw-$pkgver
-
-  make DESTDIR=$pkgdir install
-  rm -f $pkgdir/usr/bin/dcraw
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 125717, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-11 03:30:40 UTC (rev 125718)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.20
+pkgrel=2
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('6dcd30f73238f56641ec87ae07807a6ebeab141a1a481aafe3ddab6f3db8a1e0')
+
+prepare() {
+  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   2015-01-11 03:29:49 UTC (rev 125717)
+++ community-i686/gimp-ufraw.install   2015-01-11 03:30:40 UTC (rev 125718)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}
-
-# vim:set ts=2 sw=2 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2015-01-10 Thread Gaetan Bisson
Date: Sunday, January 11, 2015 @ 04:29:49
  Author: bisson
Revision: 125717

rebuild for lensfun-0.3.0-1

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-10 23:20:22 UTC (rev 125716)
+++ PKGBUILD2015-01-11 03:29:49 UTC (rev 125717)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.20
-pkgrel=1
+pkgrel=2
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')


[arch-commits] Commit in gimp-ufraw/repos (8 files)

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:44:46
  Author: arodseth
Revision: 119963

archrelease: copy trunk to community-x86_64, community-i686

Added:
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 119962, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
(from rev 119962, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 119962, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install
(from rev 119962, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 /PKGBUILD   |   98 ++
 /gimp-ufraw.install |   26 +
 community-i686/PKGBUILD |   49 -
 community-i686/gimp-ufraw.install   |   13 
 community-x86_64/PKGBUILD   |   49 -
 community-x86_64/gimp-ufraw.install |   13 
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-01 11:44:36 UTC (rev 119962)
+++ community-i686/PKGBUILD 2014-10-01 11:44:46 UTC (rev 119963)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Martin Sugioarto na...@web.de
-
-pkgname=gimp-ufraw
-pkgver=0.19.2
-pkgrel=1
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('73befe9f16f015a8c0f26cef3bb2e17cac9ae64aef2ade48c29aedb1ee51abd3')
-
-prepare() {
-  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
-  mkdir -p lib
-  ln -s /usr/include/cinepaint/wire lib/wire
-}
-
-build() {
-  cd ufraw-$pkgver
-
-  ./configure \
---prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
---with-gimp \
---with-cinepaint \
---enable-contrast
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ufraw-$pkgver
-
-  make DESTDIR=$pkgdir install
-  rm -f $pkgdir/usr/bin/dcraw
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 119962, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-01 11:44:46 UTC (rev 119963)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.20
+pkgrel=1
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('6dcd30f73238f56641ec87ae07807a6ebeab141a1a481aafe3ddab6f3db8a1e0')
+
+prepare() {
+  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   2014-10-01 11:44:36 UTC (rev 119962)
+++ community-i686/gimp-ufraw.install   2014-10-01 11:44:46 UTC (rev 119963)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}
-
-# vim:set ts=2 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2014-10-01 Thread Alexander Rødseth
Date: Wednesday, October 1, 2014 @ 13:44:36
  Author: arodseth
Revision: 119962

upgpkg: gimp-ufraw 0.20-1

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-01 11:44:13 UTC (rev 119961)
+++ PKGBUILD2014-10-01 11:44:36 UTC (rev 119962)
@@ -4,7 +4,7 @@
 # Contributor: Martin Sugioarto na...@web.de
 
 pkgname=gimp-ufraw
-pkgver=0.19.2
+pkgver=0.20
 pkgrel=1
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
@@ -16,7 +16,7 @@
 'cinepaint: to use the cinepaint import plugin for raw images')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('73befe9f16f015a8c0f26cef3bb2e17cac9ae64aef2ade48c29aedb1ee51abd3')
+sha256sums=('6dcd30f73238f56641ec87ae07807a6ebeab141a1a481aafe3ddab6f3db8a1e0')
 
 prepare() {
   # One of the include files that comes with cinepaint looks for 
../lib/wire/...


[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2014-03-22 Thread Alexander Rødseth
Date: Saturday, March 22, 2014 @ 17:39:50
  Author: arodseth
Revision: 108090

upgpkg: gimp-ufraw 0.19.2-1

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |   22 ++
 1 file changed, 14 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-22 16:30:40 UTC (rev 108089)
+++ PKGBUILD2014-03-22 16:39:50 UTC (rev 108090)
@@ -4,8 +4,8 @@
 # Contributor: Martin Sugioarto na...@web.de
 
 pkgname=gimp-ufraw
-pkgver=0.19
-pkgrel=3
+pkgver=0.19.2
+pkgrel=1
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')
@@ -16,10 +16,16 @@
 'cinepaint: to use the cinepaint import plugin for raw images')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
+sha256sums=('73befe9f16f015a8c0f26cef3bb2e17cac9ae64aef2ade48c29aedb1ee51abd3')
 
+prepare() {
+  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
 build() {
-  cd $srcdir/ufraw-$pkgver
+  cd ufraw-$pkgver
 
   ./configure \
 --prefix=/usr \
@@ -26,15 +32,15 @@
 --enable-extras \
 --enable-mime \
 --enable-openmp \
- --with-gimp \
- --with-cinepaint \
- --enable-contrast
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
   sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
   make
 }
 
 package() {
-  cd $srcdir/ufraw-$pkgver
+  cd ufraw-$pkgver
 
   make DESTDIR=$pkgdir install
   rm -f $pkgdir/usr/bin/dcraw



[arch-commits] Commit in gimp-ufraw/repos (8 files)

2014-03-22 Thread Alexander Rødseth
Date: Saturday, March 22, 2014 @ 17:40:00
  Author: arodseth
Revision: 108091

archrelease: copy trunk to community-x86_64, community-i686

Added:
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 108090, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
(from rev 108090, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 108090, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install
(from rev 108090, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 /PKGBUILD   |   98 ++
 /gimp-ufraw.install |   26 +
 community-i686/PKGBUILD |   43 --
 community-i686/gimp-ufraw.install   |   13 
 community-x86_64/PKGBUILD   |   43 --
 community-x86_64/gimp-ufraw.install |   13 
 6 files changed, 124 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-22 16:39:50 UTC (rev 108090)
+++ community-i686/PKGBUILD 2014-03-22 16:40:00 UTC (rev 108091)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Martin Sugioarto na...@web.de
-
-pkgname=gimp-ufraw
-pkgver=0.19
-pkgrel=3
-pkgdesc='Converter for raw files; utility and GIMP plugin'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
-
-build() {
-  cd $srcdir/ufraw-$pkgver
-
-  ./configure \
---prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
- --with-gimp \
- --with-cinepaint \
- --enable-contrast
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd $srcdir/ufraw-$pkgver
-
-  make DESTDIR=$pkgdir install
-  rm -f $pkgdir/usr/bin/dcraw
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 108090, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-22 16:40:00 UTC (rev 108091)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.19.2
+pkgrel=1
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('73befe9f16f015a8c0f26cef3bb2e17cac9ae64aef2ade48c29aedb1ee51abd3')
+
+prepare() {
+  # One of the include files that comes with cinepaint looks for 
../lib/wire/...
+  mkdir -p lib
+  ln -s /usr/include/cinepaint/wire lib/wire
+}
+
+build() {
+  cd ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+--with-gimp \
+--with-cinepaint \
+--enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   2014-03-22 16:39:50 UTC (rev 108090)
+++ community-i686/gimp-ufraw.install   2014-03-22 16:40:00 UTC (rev 108091)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/gimp-ufraw.install (from rev 108090, 
gimp-ufraw/trunk/gimp-ufraw.install)

[arch-commits] Commit in gimp-ufraw/repos (6 files)

2014-01-24 Thread Laurent Carlier
Date: Friday, January 24, 2014 @ 15:07:48
  Author: lcarlier
Revision: 104670

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 104669, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install
(from rev 104669, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-staging-x86_64/
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 104669, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/gimp-ufraw.install
(from rev 104669, gimp-ufraw/trunk/gimp-ufraw.install)

-+
 community-staging-i686/PKGBUILD |   43 ++
 community-staging-i686/gimp-ufraw.install   |   13 +++
 community-staging-x86_64/PKGBUILD   |   43 ++
 community-staging-x86_64/gimp-ufraw.install |   13 +++
 4 files changed, 112 insertions(+)

Copied: gimp-ufraw/repos/community-staging-i686/PKGBUILD (from rev 104669, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-24 14:07:48 UTC (rev 104670)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.19
+pkgrel=3
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
+
+build() {
+  cd $srcdir/ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd $srcdir/ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install (from rev 
104669, gimp-ufraw/trunk/gimp-ufraw.install)
===
--- community-staging-i686/gimp-ufraw.install   (rev 0)
+++ community-staging-i686/gimp-ufraw.install   2014-01-24 14:07:48 UTC (rev 
104670)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-x86_64/PKGBUILD (from rev 104669, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-01-24 14:07:48 UTC (rev 104670)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.19
+pkgrel=3
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
+
+build() {
+  cd $srcdir/ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd $srcdir/ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-x86_64/gimp-ufraw.install (from rev 
104669, gimp-ufraw/trunk/gimp-ufraw.install)
===
--- 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2014-01-24 Thread Laurent Carlier
Date: Friday, January 24, 2014 @ 15:07:39
  Author: lcarlier
Revision: 104669

upgpkg: gimp-ufraw 0.19-3

exiv2-0.24 rebuild

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-24 13:48:22 UTC (rev 104668)
+++ PKGBUILD2014-01-24 14:07:39 UTC (rev 104669)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.19
-pkgrel=2
+pkgrel=3
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')



[arch-commits] Commit in gimp-ufraw/repos (6 files)

2014-01-24 Thread Laurent Carlier
Date: Friday, January 24, 2014 @ 18:00:02
  Author: lcarlier
Revision: 104704

restore and rebuild, accidentaly removed

Added:
  gimp-ufraw/repos/community-i686/
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 community-i686/PKGBUILD |   43 ++
 community-i686/gimp-ufraw.install   |   13 ++
 community-x86_64/PKGBUILD   |   43 ++
 community-x86_64/gimp-ufraw.install |   13 ++
 4 files changed, 112 insertions(+)

Added: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-24 17:00:02 UTC (rev 104704)
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 104699 2014-01-24 16:28:05Z lcarlier $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.19
+pkgrel=2.1
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
+
+build() {
+  cd $srcdir/ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd $srcdir/ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Added: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   (rev 0)
+++ community-i686/gimp-ufraw.install   2014-01-24 17:00:02 UTC (rev 104704)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}
+
+# vim:set ts=2 sw=2 et:

Added: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-01-24 17:00:02 UTC (rev 104704)
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 104699 2014-01-24 16:28:05Z lcarlier $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.19
+pkgrel=2.1
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
+
+build() {
+  cd $srcdir/ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd $srcdir/ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Added: community-x86_64/gimp-ufraw.install
===
--- community-x86_64/gimp-ufraw.install (rev 0)
+++ community-x86_64/gimp-ufraw.install 2014-01-24 17:00:02 UTC (rev 104704)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2013-04-29 Thread Evangelos Foutras
Date: Monday, April 29, 2013 @ 14:05:23
  Author: foutrelis
Revision: 89439

upgpkg: gimp-ufraw 0.19-2

libpng 1.6 rebuild.

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-29 12:01:28 UTC (rev 89438)
+++ PKGBUILD2013-04-29 12:05:23 UTC (rev 89439)
@@ -5,7 +5,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.19
-pkgrel=1
+pkgrel=2
 pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')



[arch-commits] Commit in gimp-ufraw/repos (6 files)

2013-04-29 Thread Evangelos Foutras
Date: Monday, April 29, 2013 @ 14:05:34
  Author: foutrelis
Revision: 89440

archrelease: copy trunk to community-staging-x86_64, community-staging-i686

Added:
  gimp-ufraw/repos/community-staging-i686/
  gimp-ufraw/repos/community-staging-i686/PKGBUILD
(from rev 89439, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install
(from rev 89439, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-staging-x86_64/
  gimp-ufraw/repos/community-staging-x86_64/PKGBUILD
(from rev 89439, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-staging-x86_64/gimp-ufraw.install
(from rev 89439, gimp-ufraw/trunk/gimp-ufraw.install)

-+
 community-staging-i686/PKGBUILD |   43 ++
 community-staging-i686/gimp-ufraw.install   |   13 +++
 community-staging-x86_64/PKGBUILD   |   43 ++
 community-staging-x86_64/gimp-ufraw.install |   13 +++
 4 files changed, 112 insertions(+)

Copied: gimp-ufraw/repos/community-staging-i686/PKGBUILD (from rev 89439, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-29 12:05:34 UTC (rev 89440)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.19
+pkgrel=2
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
+
+build() {
+  cd $srcdir/ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd $srcdir/ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-i686/gimp-ufraw.install (from rev 
89439, gimp-ufraw/trunk/gimp-ufraw.install)
===
--- community-staging-i686/gimp-ufraw.install   (rev 0)
+++ community-staging-i686/gimp-ufraw.install   2013-04-29 12:05:34 UTC (rev 
89440)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-x86_64/PKGBUILD (from rev 89439, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-29 12:05:34 UTC (rev 89440)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.19
+pkgrel=2
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
+
+build() {
+  cd $srcdir/ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd $srcdir/ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-staging-x86_64/gimp-ufraw.install (from rev 
89439, gimp-ufraw/trunk/gimp-ufraw.install)
===
--- 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2013-03-14 Thread Alexander Rødseth
Date: Thursday, March 14, 2013 @ 21:51:18
  Author: arodseth
Revision: 86295

upgpkg: gimp-ufraw 0.19-1

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |   25 +
 1 file changed, 13 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-14 20:45:45 UTC (rev 86294)
+++ PKGBUILD2013-03-14 20:51:18 UTC (rev 86295)
@@ -4,9 +4,9 @@
 # Contributor: Martin Sugioarto na...@web.de
 
 pkgname=gimp-ufraw
-pkgver=0.18
-pkgrel=6
-pkgdesc='Standalone or gimp plugin converter for raw files'
+pkgver=0.19
+pkgrel=1
+pkgdesc='Converter for raw files; utility and GIMP plugin'
 url='http://ufraw.sourceforge.net/'
 arch=('x86_64' 'i686')
 license=('GPL')
@@ -14,20 +14,21 @@
 makedepends=('gimp' 'cinepaint')
 optdepends=('gimp: to use the gimp import plugin for raw images'
 'cinepaint: to use the cinepaint import plugin for raw images')
-install=gimp-ufraw.install
+install=$pkgname.install
 source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('24fe739c61e9e14de198477c8662553e93427569c1d595556d440e6b9205')
+sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
 
 build() {
   cd $srcdir/ufraw-$pkgver
 
-  ./configure --prefix=/usr \
-  --enable-extras \
-  --enable-mime \
-  --enable-openmp \
- --with-gimp \
- --with-cinepaint \
- --enable-contrast
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
   sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
   make
 }



[arch-commits] Commit in gimp-ufraw/repos (8 files)

2013-03-14 Thread Alexander Rødseth
Date: Thursday, March 14, 2013 @ 21:51:33
  Author: arodseth
Revision: 86296

archrelease: copy trunk to community-x86_64, community-i686

Added:
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 86295, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
(from rev 86295, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 86295, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install
(from rev 86295, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 community-i686/PKGBUILD |   85 +-
 community-i686/gimp-ufraw.install   |   26 +-
 community-x86_64/PKGBUILD   |   85 +-
 community-x86_64/gimp-ufraw.install |   26 +-
 4 files changed, 112 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-14 20:51:18 UTC (rev 86295)
+++ community-i686/PKGBUILD 2013-03-14 20:51:33 UTC (rev 86296)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Tobias Kieslich tob...@archlinux.org
-# Contributor: Martin Sugioarto na...@web.de
-
-pkgname=gimp-ufraw
-pkgver=0.18
-pkgrel=6
-pkgdesc='Standalone or gimp plugin converter for raw files'
-url='http://ufraw.sourceforge.net/'
-arch=('x86_64' 'i686')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=gimp-ufraw.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
-sha256sums=('24fe739c61e9e14de198477c8662553e93427569c1d595556d440e6b9205')
-
-build() {
-  cd $srcdir/ufraw-$pkgver
-
-  ./configure --prefix=/usr \
-  --enable-extras \
-  --enable-mime \
-  --enable-openmp \
- --with-gimp \
- --with-cinepaint \
- --enable-contrast
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd $srcdir/ufraw-$pkgver
-
-  make DESTDIR=$pkgdir install
-  rm -f $pkgdir/usr/bin/dcraw
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 86295, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-14 20:51:33 UTC (rev 86296)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.19
+pkgrel=1
+pkgdesc='Converter for raw files; utility and GIMP plugin'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('12d551418c5e69ae904cb92e9ac11b4d2e4327a857ee13ac890f34320eb58b9a')
+
+build() {
+  cd $srcdir/ufraw-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--enable-extras \
+--enable-mime \
+--enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd $srcdir/ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   2013-03-14 20:51:18 UTC (rev 86295)
+++ community-i686/gimp-ufraw.install   2013-03-14 20:51:33 UTC (rev 86296)
@@ -1,13 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gimp-ufraw/repos/community-i686/gimp-ufraw.install (from rev 86295, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- community-i686/gimp-ufraw.install   (rev 0)
+++ community-i686/gimp-ufraw.install   2013-03-14 20:51:33 UTC 

[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD gimp-ufraw.install)

2013-02-01 Thread Alexander Rødseth
Date: Friday, February 1, 2013 @ 17:28:07
  Author: arodseth
Revision: 83472

Feature request FS#31385

Modified:
  gimp-ufraw/trunk/PKGBUILD
  gimp-ufraw/trunk/gimp-ufraw.install

+
 PKGBUILD   |   34 +-
 gimp-ufraw.install |2 ++
 2 files changed, 23 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-01 16:02:51 UTC (rev 83471)
+++ PKGBUILD2013-02-01 16:28:07 UTC (rev 83472)
@@ -1,34 +1,42 @@
 # $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
 
 pkgname=gimp-ufraw
 pkgver=0.18
-pkgrel=5
-pkgdesc=Standalone or gimp plugin converter for raw files
-url=http://ufraw.sourceforge.net/;
-arch=('i686' 'x86_64')
+pkgrel=6
+pkgdesc='Standalone or gimp plugin converter for raw files'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
 license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
 makedepends=('gimp' 'cinepaint')
 optdepends=('gimp: to use the gimp import plugin for raw images'
 'cinepaint: to use the cinepaint import plugin for raw images')
 install=gimp-ufraw.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
-sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('24fe739c61e9e14de198477c8662553e93427569c1d595556d440e6b9205')
 
 build() {
-  cd ${srcdir}/ufraw-${pkgver}
+  cd $srcdir/ufraw-$pkgver
 
   ./configure --prefix=/usr \
   --enable-extras \
   --enable-mime \
-  --enable-openmp
+  --enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
   sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
   make
 }
 
 package() {
-  cd ${srcdir}/ufraw-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/bin/dcraw
+  cd $srcdir/ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
 }
+
+# vim:set ts=2 sw=2 et:

Modified: gimp-ufraw.install
===
--- gimp-ufraw.install  2013-02-01 16:02:51 UTC (rev 83471)
+++ gimp-ufraw.install  2013-02-01 16:28:07 UTC (rev 83472)
@@ -9,3 +9,5 @@
 post_remove() {
   update-desktop-database -q
 }
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in gimp-ufraw/repos (8 files)

2013-02-01 Thread Alexander Rødseth
Date: Friday, February 1, 2013 @ 17:28:18
  Author: arodseth
Revision: 83473

archrelease: copy trunk to community-x86_64, community-i686

Added:
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 83472, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
(from rev 83472, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 83472, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install
(from rev 83472, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/community-i686/PKGBUILD
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
  gimp-ufraw/repos/community-x86_64/PKGBUILD
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install

-+
 community-i686/PKGBUILD |   76 ++
 community-i686/gimp-ufraw.install   |   24 +-
 community-x86_64/PKGBUILD   |   76 ++
 community-x86_64/gimp-ufraw.install |   24 +-
 4 files changed, 110 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-02-01 16:28:07 UTC (rev 83472)
+++ community-i686/PKGBUILD 2013-02-01 16:28:18 UTC (rev 83473)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-
-pkgname=gimp-ufraw
-pkgver=0.18
-pkgrel=5
-pkgdesc=Standalone or gimp plugin converter for raw files
-url=http://ufraw.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=gimp-ufraw.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
-sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
-
-build() {
-  cd ${srcdir}/ufraw-${pkgver}
-
-  ./configure --prefix=/usr \
-  --enable-extras \
-  --enable-mime \
-  --enable-openmp
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/ufraw-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/bin/dcraw
-}

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 83472, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-01 16:28:18 UTC (rev 83473)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias Kieslich tob...@archlinux.org
+# Contributor: Martin Sugioarto na...@web.de
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=6
+pkgdesc='Standalone or gimp plugin converter for raw files'
+url='http://ufraw.sourceforge.net/'
+arch=('x86_64' 'i686')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils' 'cfitsio' 
'lensfun')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-$pkgver.tar.gz;)
+sha256sums=('24fe739c61e9e14de198477c8662553e93427569c1d595556d440e6b9205')
+
+build() {
+  cd $srcdir/ufraw-$pkgver
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp \
+ --with-gimp \
+ --with-cinepaint \
+ --enable-contrast
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd $srcdir/ufraw-$pkgver
+
+  make DESTDIR=$pkgdir install
+  rm -f $pkgdir/usr/bin/dcraw
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/gimp-ufraw.install
===
--- community-i686/gimp-ufraw.install   2013-02-01 16:28:07 UTC (rev 83472)
+++ community-i686/gimp-ufraw.install   2013-02-01 16:28:18 UTC (rev 83473)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}

Copied: gimp-ufraw/repos/community-i686/gimp-ufraw.install (from rev 83472, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- community-i686/gimp-ufraw.install   (rev 0)
+++ community-i686/gimp-ufraw.install   2013-02-01 16:28:18 UTC (rev 83473)
@@ -0,0 +1,13 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD

[arch-commits] Commit in gimp-ufraw/repos (6 files)

2013-01-27 Thread Pierre Schmitz
Date: Sunday, January 27, 2013 @ 17:15:51
  Author: pierre
Revision: 83146

archrelease: copy trunk to community-i686, community-x86_64

Added:
  gimp-ufraw/repos/community-i686/
  gimp-ufraw/repos/community-i686/PKGBUILD
(from rev 83145, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-i686/gimp-ufraw.install
(from rev 83145, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/community-x86_64/
  gimp-ufraw/repos/community-x86_64/PKGBUILD
(from rev 83145, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/community-x86_64/gimp-ufraw.install
(from rev 83145, gimp-ufraw/trunk/gimp-ufraw.install)

-+
 community-i686/PKGBUILD |   34 ++
 community-i686/gimp-ufraw.install   |   11 +++
 community-x86_64/PKGBUILD   |   34 ++
 community-x86_64/gimp-ufraw.install |   11 +++
 4 files changed, 90 insertions(+)

Copied: gimp-ufraw/repos/community-i686/PKGBUILD (from rev 83145, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-01-27 16:15:51 UTC (rev 83146)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=5
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/community-i686/gimp-ufraw.install (from rev 83145, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- community-i686/gimp-ufraw.install   (rev 0)
+++ community-i686/gimp-ufraw.install   2013-01-27 16:15:51 UTC (rev 83146)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}

Copied: gimp-ufraw/repos/community-x86_64/PKGBUILD (from rev 83145, 
gimp-ufraw/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-01-27 16:15:51 UTC (rev 83146)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=5
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/community-x86_64/gimp-ufraw.install (from rev 83145, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- community-x86_64/gimp-ufraw.install (rev 0)
+++ community-x86_64/gimp-ufraw.install 2013-01-27 16:15:51 UTC (rev 83146)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in (gimp-ufraw)

2013-01-27 Thread Pierre Schmitz
Date: Sunday, January 27, 2013 @ 17:16:10
  Author: pierre
Revision: 176164

extra2community: Moving gimp-ufraw from extra to community

Deleted:
  gimp-ufraw/



[arch-commits] Commit in gimp-ufraw/repos (10 files)

2012-08-06 Thread Andrea Scarpino
Date: Monday, August 6, 2012 @ 19:07:20
  Author: andrea
Revision: 164834

db-move: moved gimp-ufraw from [testing] to [extra] (i686, x86_64)

Added:
  gimp-ufraw/repos/extra-i686/PKGBUILD
(from rev 164826, gimp-ufraw/repos/testing-i686/PKGBUILD)
  gimp-ufraw/repos/extra-i686/gimp-ufraw.install
(from rev 164826, gimp-ufraw/repos/testing-i686/gimp-ufraw.install)
  gimp-ufraw/repos/extra-x86_64/PKGBUILD
(from rev 164826, gimp-ufraw/repos/testing-x86_64/PKGBUILD)
  gimp-ufraw/repos/extra-x86_64/gimp-ufraw.install
(from rev 164826, gimp-ufraw/repos/testing-x86_64/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/extra-i686/PKGBUILD
  gimp-ufraw/repos/extra-i686/gimp-ufraw.install
  gimp-ufraw/repos/extra-x86_64/PKGBUILD
  gimp-ufraw/repos/extra-x86_64/gimp-ufraw.install
  gimp-ufraw/repos/testing-i686/
  gimp-ufraw/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |   68 +++---
 extra-i686/gimp-ufraw.install   |   22 ++--
 extra-x86_64/PKGBUILD   |   68 +++---
 extra-x86_64/gimp-ufraw.install |   22 ++--
 4 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-08-06 23:07:15 UTC (rev 164833)
+++ extra-i686/PKGBUILD 2012-08-06 23:07:20 UTC (rev 164834)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-
-pkgname=gimp-ufraw
-pkgver=0.18
-pkgrel=4
-pkgdesc=Standalone or gimp plugin converter for raw files
-url=http://ufraw.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=gimp-ufraw.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
-sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
-
-build() {
-  cd ${srcdir}/ufraw-${pkgver}
-
-  ./configure --prefix=/usr \
-  --enable-extras \
-  --enable-mime \
-  --enable-openmp
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/ufraw-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/bin/dcraw
-}

Copied: gimp-ufraw/repos/extra-i686/PKGBUILD (from rev 164826, 
gimp-ufraw/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-08-06 23:07:20 UTC (rev 164834)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=5
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Deleted: extra-i686/gimp-ufraw.install
===
--- extra-i686/gimp-ufraw.install   2012-08-06 23:07:15 UTC (rev 164833)
+++ extra-i686/gimp-ufraw.install   2012-08-06 23:07:20 UTC (rev 164834)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}

Copied: gimp-ufraw/repos/extra-i686/gimp-ufraw.install (from rev 164826, 
gimp-ufraw/repos/testing-i686/gimp-ufraw.install)
===
--- extra-i686/gimp-ufraw.install   (rev 0)
+++ extra-i686/gimp-ufraw.install   2012-08-06 23:07:20 UTC (rev 164834)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-08-06 23:07:15 UTC (rev 164833)
+++ extra-x86_64/PKGBUILD   2012-08-06 23:07:20 UTC (rev 164834)
@@ 

[arch-commits] Commit in gimp-ufraw/repos (8 files)

2012-08-02 Thread Andrea Scarpino
Date: Thursday, August 2, 2012 @ 11:21:23
  Author: andrea
Revision: 164676

db-move: moved gimp-ufraw from [staging] to [testing] (i686, x86_64)

Added:
  gimp-ufraw/repos/testing-i686/
  gimp-ufraw/repos/testing-i686/PKGBUILD
(from rev 164672, gimp-ufraw/repos/staging-i686/PKGBUILD)
  gimp-ufraw/repos/testing-i686/gimp-ufraw.install
(from rev 164672, gimp-ufraw/repos/staging-i686/gimp-ufraw.install)
  gimp-ufraw/repos/testing-x86_64/
  gimp-ufraw/repos/testing-x86_64/PKGBUILD
(from rev 164672, gimp-ufraw/repos/staging-x86_64/PKGBUILD)
  gimp-ufraw/repos/testing-x86_64/gimp-ufraw.install
(from rev 164672, gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/staging-i686/
  gimp-ufraw/repos/staging-x86_64/

---+
 testing-i686/PKGBUILD |   34 ++
 testing-i686/gimp-ufraw.install   |   11 +++
 testing-x86_64/PKGBUILD   |   34 ++
 testing-x86_64/gimp-ufraw.install |   11 +++
 4 files changed, 90 insertions(+)

Copied: gimp-ufraw/repos/testing-i686/PKGBUILD (from rev 164672, 
gimp-ufraw/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-08-02 15:21:23 UTC (rev 164676)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=5
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/testing-i686/gimp-ufraw.install (from rev 164672, 
gimp-ufraw/repos/staging-i686/gimp-ufraw.install)
===
--- testing-i686/gimp-ufraw.install (rev 0)
+++ testing-i686/gimp-ufraw.install 2012-08-02 15:21:23 UTC (rev 164676)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}

Copied: gimp-ufraw/repos/testing-x86_64/PKGBUILD (from rev 164672, 
gimp-ufraw/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-08-02 15:21:23 UTC (rev 164676)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=5
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/testing-x86_64/gimp-ufraw.install (from rev 164672, 
gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install)
===
--- testing-x86_64/gimp-ufraw.install   (rev 0)
+++ testing-x86_64/gimp-ufraw.install   2012-08-02 15:21:23 UTC (rev 164676)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2012-07-29 Thread Eric Bélanger
Date: Sunday, July 29, 2012 @ 20:31:55
  Author: eric
Revision: 164304

upgpkg: gimp-ufraw 0.18-5

Rebuild against exiv2 0.23

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-30 00:23:10 UTC (rev 164303)
+++ PKGBUILD2012-07-30 00:31:55 UTC (rev 164304)
@@ -3,7 +3,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.18
-pkgrel=4
+pkgrel=5
 pkgdesc=Standalone or gimp plugin converter for raw files
 url=http://ufraw.sourceforge.net/;
 arch=('i686' 'x86_64')



[arch-commits] Commit in gimp-ufraw/repos (6 files)

2012-07-29 Thread Eric Bélanger
Date: Sunday, July 29, 2012 @ 20:32:08
  Author: eric
Revision: 164305

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gimp-ufraw/repos/staging-i686/
  gimp-ufraw/repos/staging-i686/PKGBUILD
(from rev 164304, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/staging-i686/gimp-ufraw.install
(from rev 164304, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/staging-x86_64/
  gimp-ufraw/repos/staging-x86_64/PKGBUILD
(from rev 164304, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install
(from rev 164304, gimp-ufraw/trunk/gimp-ufraw.install)

---+
 staging-i686/PKGBUILD |   34 ++
 staging-i686/gimp-ufraw.install   |   11 +++
 staging-x86_64/PKGBUILD   |   34 ++
 staging-x86_64/gimp-ufraw.install |   11 +++
 4 files changed, 90 insertions(+)

Copied: gimp-ufraw/repos/staging-i686/PKGBUILD (from rev 164304, 
gimp-ufraw/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-07-30 00:32:08 UTC (rev 164305)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=5
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/staging-i686/gimp-ufraw.install (from rev 164304, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- staging-i686/gimp-ufraw.install (rev 0)
+++ staging-i686/gimp-ufraw.install 2012-07-30 00:32:08 UTC (rev 164305)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}

Copied: gimp-ufraw/repos/staging-x86_64/PKGBUILD (from rev 164304, 
gimp-ufraw/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-07-30 00:32:08 UTC (rev 164305)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=5
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install (from rev 164304, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- staging-x86_64/gimp-ufraw.install   (rev 0)
+++ staging-x86_64/gimp-ufraw.install   2012-07-30 00:32:08 UTC (rev 164305)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/repos (5 files)

2012-02-05 Thread Ionut Biru
Date: Sunday, February 5, 2012 @ 06:48:49
  Author: ibiru
Revision: 148739

db-move: moved gimp-ufraw from [testing] to [extra] (i686)

Added:
  gimp-ufraw/repos/extra-i686/PKGBUILD
(from rev 148654, gimp-ufraw/repos/testing-i686/PKGBUILD)
  gimp-ufraw/repos/extra-i686/gimp-ufraw.install
(from rev 148654, gimp-ufraw/repos/testing-i686/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/extra-i686/PKGBUILD
  gimp-ufraw/repos/extra-i686/gimp-ufraw.install
  gimp-ufraw/repos/testing-i686/

+
 PKGBUILD   |   69 +--
 gimp-ufraw.install |   22 
 2 files changed, 45 insertions(+), 46 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-05 11:48:46 UTC (rev 148738)
+++ extra-i686/PKGBUILD 2012-02-05 11:48:49 UTC (rev 148739)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-
-pkgname=gimp-ufraw
-pkgver=0.18
-pkgrel=3
-pkgdesc=Standalone or gimp plugin converter for raw files
-url=http://ufraw.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=gimp-ufraw.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
-md5sums=('454f40a402928998a82e2645d9265d96')
-sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
-
-build() {
-  cd ${srcdir}/ufraw-${pkgver}
-
-  ./configure --prefix=/usr \
-  --enable-extras \
-  --enable-mime \
-  --enable-openmp
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/ufraw-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/bin/dcraw
-}

Copied: gimp-ufraw/repos/extra-i686/PKGBUILD (from rev 148654, 
gimp-ufraw/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-05 11:48:49 UTC (rev 148739)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=4
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Deleted: extra-i686/gimp-ufraw.install
===
--- extra-i686/gimp-ufraw.install   2012-02-05 11:48:46 UTC (rev 148738)
+++ extra-i686/gimp-ufraw.install   2012-02-05 11:48:49 UTC (rev 148739)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}

Copied: gimp-ufraw/repos/extra-i686/gimp-ufraw.install (from rev 148654, 
gimp-ufraw/repos/testing-i686/gimp-ufraw.install)
===
--- extra-i686/gimp-ufraw.install   (rev 0)
+++ extra-i686/gimp-ufraw.install   2012-02-05 11:48:49 UTC (rev 148739)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/repos (5 files)

2012-02-05 Thread Ionut Biru
Date: Sunday, February 5, 2012 @ 06:48:50
  Author: ibiru
Revision: 148740

db-move: moved gimp-ufraw from [testing] to [extra] (x86_64)

Added:
  gimp-ufraw/repos/extra-x86_64/PKGBUILD
(from rev 148654, gimp-ufraw/repos/testing-x86_64/PKGBUILD)
  gimp-ufraw/repos/extra-x86_64/gimp-ufraw.install
(from rev 148654, gimp-ufraw/repos/testing-x86_64/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/extra-x86_64/PKGBUILD
  gimp-ufraw/repos/extra-x86_64/gimp-ufraw.install
  gimp-ufraw/repos/testing-x86_64/

+
 PKGBUILD   |   69 +--
 gimp-ufraw.install |   22 
 2 files changed, 45 insertions(+), 46 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-02-05 11:48:49 UTC (rev 148739)
+++ extra-x86_64/PKGBUILD   2012-02-05 11:48:50 UTC (rev 148740)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-
-pkgname=gimp-ufraw
-pkgver=0.18
-pkgrel=3
-pkgdesc=Standalone or gimp plugin converter for raw files
-url=http://ufraw.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=gimp-ufraw.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
-md5sums=('454f40a402928998a82e2645d9265d96')
-sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
-
-build() {
-  cd ${srcdir}/ufraw-${pkgver}
-
-  ./configure --prefix=/usr \
-  --enable-extras \
-  --enable-mime \
-  --enable-openmp
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/ufraw-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/bin/dcraw
-}

Copied: gimp-ufraw/repos/extra-x86_64/PKGBUILD (from rev 148654, 
gimp-ufraw/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-02-05 11:48:50 UTC (rev 148740)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=4
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Deleted: extra-x86_64/gimp-ufraw.install
===
--- extra-x86_64/gimp-ufraw.install 2012-02-05 11:48:49 UTC (rev 148739)
+++ extra-x86_64/gimp-ufraw.install 2012-02-05 11:48:50 UTC (rev 148740)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}

Copied: gimp-ufraw/repos/extra-x86_64/gimp-ufraw.install (from rev 148654, 
gimp-ufraw/repos/testing-x86_64/gimp-ufraw.install)
===
--- extra-x86_64/gimp-ufraw.install (rev 0)
+++ extra-x86_64/gimp-ufraw.install 2012-02-05 11:48:50 UTC (rev 148740)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/repos (4 files)

2012-01-30 Thread Ionut Biru
Date: Monday, January 30, 2012 @ 13:46:28
  Author: ibiru
Revision: 148120

db-move: moved gimp-ufraw from [staging] to [testing] (i686)

Added:
  gimp-ufraw/repos/testing-i686/
  gimp-ufraw/repos/testing-i686/PKGBUILD
(from rev 148047, gimp-ufraw/repos/staging-i686/PKGBUILD)
  gimp-ufraw/repos/testing-i686/gimp-ufraw.install
(from rev 148047, gimp-ufraw/repos/staging-i686/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/staging-i686/

+
 PKGBUILD   |   34 ++
 gimp-ufraw.install |   11 +++
 2 files changed, 45 insertions(+)

Copied: gimp-ufraw/repos/testing-i686/PKGBUILD (from rev 148047, 
gimp-ufraw/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-01-30 18:46:28 UTC (rev 148120)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=4
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/testing-i686/gimp-ufraw.install (from rev 148047, 
gimp-ufraw/repos/staging-i686/gimp-ufraw.install)
===
--- testing-i686/gimp-ufraw.install (rev 0)
+++ testing-i686/gimp-ufraw.install 2012-01-30 18:46:28 UTC (rev 148120)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/repos (4 files)

2012-01-30 Thread Ionut Biru
Date: Monday, January 30, 2012 @ 13:46:29
  Author: ibiru
Revision: 148121

db-move: moved gimp-ufraw from [staging] to [testing] (x86_64)

Added:
  gimp-ufraw/repos/testing-x86_64/
  gimp-ufraw/repos/testing-x86_64/PKGBUILD
(from rev 148047, gimp-ufraw/repos/staging-x86_64/PKGBUILD)
  gimp-ufraw/repos/testing-x86_64/gimp-ufraw.install
(from rev 148047, gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/staging-x86_64/

+
 PKGBUILD   |   34 ++
 gimp-ufraw.install |   11 +++
 2 files changed, 45 insertions(+)

Copied: gimp-ufraw/repos/testing-x86_64/PKGBUILD (from rev 148047, 
gimp-ufraw/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-01-30 18:46:29 UTC (rev 148121)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=4
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/testing-x86_64/gimp-ufraw.install (from rev 148047, 
gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install)
===
--- testing-x86_64/gimp-ufraw.install   (rev 0)
+++ testing-x86_64/gimp-ufraw.install   2012-01-30 18:46:29 UTC (rev 148121)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2012-01-21 Thread Eric Bélanger
Date: Saturday, January 21, 2012 @ 12:06:38
  Author: eric
Revision: 147079

upgpkg: gimp-ufraw 0.18-4

Rebuild against libpng 1.5 and libtiff 4.0

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-01-21 15:49:21 UTC (rev 147078)
+++ PKGBUILD2012-01-21 17:06:38 UTC (rev 147079)
@@ -3,7 +3,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.18
-pkgrel=3
+pkgrel=4
 pkgdesc=Standalone or gimp plugin converter for raw files
 url=http://ufraw.sourceforge.net/;
 arch=('i686' 'x86_64')
@@ -14,7 +14,6 @@
 'cinepaint: to use the cinepaint import plugin for raw images')
 install=gimp-ufraw.install
 source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
-md5sums=('454f40a402928998a82e2645d9265d96')
 sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
 
 build() {



[arch-commits] Commit in gimp-ufraw/repos (6 files)

2012-01-21 Thread Eric Bélanger
Date: Saturday, January 21, 2012 @ 12:07:06
  Author: eric
Revision: 147080

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gimp-ufraw/repos/staging-i686/
  gimp-ufraw/repos/staging-i686/PKGBUILD
(from rev 147079, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/staging-i686/gimp-ufraw.install
(from rev 147079, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/staging-x86_64/
  gimp-ufraw/repos/staging-x86_64/PKGBUILD
(from rev 147079, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install
(from rev 147079, gimp-ufraw/trunk/gimp-ufraw.install)

---+
 staging-i686/PKGBUILD |   34 ++
 staging-i686/gimp-ufraw.install   |   11 +++
 staging-x86_64/PKGBUILD   |   34 ++
 staging-x86_64/gimp-ufraw.install |   11 +++
 4 files changed, 90 insertions(+)

Copied: gimp-ufraw/repos/staging-i686/PKGBUILD (from rev 147079, 
gimp-ufraw/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-01-21 17:07:06 UTC (rev 147080)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=4
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/staging-i686/gimp-ufraw.install (from rev 147079, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- staging-i686/gimp-ufraw.install (rev 0)
+++ staging-i686/gimp-ufraw.install 2012-01-21 17:07:06 UTC (rev 147080)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}

Copied: gimp-ufraw/repos/staging-x86_64/PKGBUILD (from rev 147079, 
gimp-ufraw/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-01-21 17:07:06 UTC (rev 147080)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=4
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install (from rev 147079, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- staging-x86_64/gimp-ufraw.install   (rev 0)
+++ staging-x86_64/gimp-ufraw.install   2012-01-21 17:07:06 UTC (rev 147080)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2011-11-29 Thread Eric Bélanger
Date: Wednesday, November 30, 2011 @ 01:23:53
  Author: eric
Revision: 143848

upgpkg: gimp-ufraw 0.18-3

Rebuild against cinepaint 1.0

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-30 06:23:25 UTC (rev 143847)
+++ PKGBUILD2011-11-30 06:23:53 UTC (rev 143848)
@@ -3,7 +3,7 @@
 
 pkgname=gimp-ufraw
 pkgver=0.18
-pkgrel=2
+pkgrel=3
 pkgdesc=Standalone or gimp plugin converter for raw files
 url=http://ufraw.sourceforge.net/;
 arch=('i686' 'x86_64')



[arch-commits] Commit in gimp-ufraw/repos (8 files)

2011-11-29 Thread Eric Bélanger
Date: Wednesday, November 30, 2011 @ 01:25:30
  Author: eric
Revision: 143849

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  gimp-ufraw/repos/extra-i686/PKGBUILD
(from rev 143848, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/extra-i686/gimp-ufraw.install
(from rev 143848, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/extra-x86_64/PKGBUILD
(from rev 143848, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/extra-x86_64/gimp-ufraw.install
(from rev 143848, gimp-ufraw/trunk/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/extra-i686/PKGBUILD
  gimp-ufraw/repos/extra-i686/gimp-ufraw.install
  gimp-ufraw/repos/extra-x86_64/PKGBUILD
  gimp-ufraw/repos/extra-x86_64/gimp-ufraw.install

-+
 extra-i686/PKGBUILD |   70 +++---
 extra-i686/gimp-ufraw.install   |   22 +--
 extra-x86_64/PKGBUILD   |   70 +++---
 extra-x86_64/gimp-ufraw.install |   22 +--
 4 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-11-30 06:23:53 UTC (rev 143848)
+++ extra-i686/PKGBUILD 2011-11-30 06:25:30 UTC (rev 143849)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-
-pkgname=gimp-ufraw
-pkgver=0.18
-pkgrel=2
-pkgdesc=Standalone or gimp plugin converter for raw files
-url=http://ufraw.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
-makedepends=('gimp' 'cinepaint')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-'cinepaint: to use the cinepaint import plugin for raw images')
-install=gimp-ufraw.install
-source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
-md5sums=('454f40a402928998a82e2645d9265d96')
-sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
-
-build() {
-  cd ${srcdir}/ufraw-${pkgver}
-
-  ./configure --prefix=/usr \
-  --enable-extras \
-  --enable-mime \
-  --enable-openmp
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/ufraw-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/bin/dcraw
-}

Copied: gimp-ufraw/repos/extra-i686/PKGBUILD (from rev 143848, 
gimp-ufraw/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-11-30 06:25:30 UTC (rev 143849)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=3
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+md5sums=('454f40a402928998a82e2645d9265d96')
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Deleted: extra-i686/gimp-ufraw.install
===
--- extra-i686/gimp-ufraw.install   2011-11-30 06:23:53 UTC (rev 143848)
+++ extra-i686/gimp-ufraw.install   2011-11-30 06:25:30 UTC (rev 143849)
@@ -1,11 +0,0 @@
-post_install() {
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_remove() {
-  update-desktop-database -q
-}

Copied: gimp-ufraw/repos/extra-i686/gimp-ufraw.install (from rev 143848, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- extra-i686/gimp-ufraw.install   (rev 0)
+++ extra-i686/gimp-ufraw.install   2011-11-30 06:25:30 UTC (rev 143849)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-11-30 06:23:53 UTC (rev 143848)
+++ extra-x86_64/PKGBUILD   2011-11-30 06:25:30 UTC (rev 143849)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-

[arch-commits] Commit in gimp-ufraw/repos (4 files)

2011-10-05 Thread Andrea Scarpino
Date: Wednesday, October 5, 2011 @ 15:06:38
  Author: andrea
Revision: 139880

db-move: moved gimp-ufraw from [staging] to [extra] (i686)

Added:
  gimp-ufraw/repos/extra-i686/PKGBUILD
(from rev 139875, gimp-ufraw/repos/staging-i686/PKGBUILD)
  gimp-ufraw/repos/extra-i686/gimp-ufraw.install
(from rev 139875, gimp-ufraw/repos/staging-i686/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/extra-i686/PKGBUILD
  gimp-ufraw/repos/staging-i686/

+
 PKGBUILD   |   69 +--
 gimp-ufraw.install |   11 
 2 files changed, 46 insertions(+), 34 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-10-05 19:06:37 UTC (rev 139879)
+++ extra-i686/PKGBUILD 2011-10-05 19:06:38 UTC (rev 139880)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-
-pkgname=gimp-ufraw
-pkgver=0.18
-pkgrel=1
-pkgdesc=Standalone or gimp plugin converter for raw files
-url=http://ufraw.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('gtkimageview' 'exiv2')
-makedepends=('gimp' 'cinepaint' 'pkg-config')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-   'cinepaint: to use the cinepaint import plugin for raw images')
-source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
-md5sums=('454f40a402928998a82e2645d9265d96')
-sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
-
-build() {
-  cd ${srcdir}/ufraw-${pkgver}
-
-  ./configure --prefix=/usr \
-  --enable-extras \
-  --enable-mime \
-  --enable-openmp
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/ufraw-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/bin/dcraw
-}

Copied: gimp-ufraw/repos/extra-i686/PKGBUILD (from rev 139875, 
gimp-ufraw/repos/staging-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-10-05 19:06:38 UTC (rev 139880)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=2
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+md5sums=('454f40a402928998a82e2645d9265d96')
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/extra-i686/gimp-ufraw.install (from rev 139875, 
gimp-ufraw/repos/staging-i686/gimp-ufraw.install)
===
--- extra-i686/gimp-ufraw.install   (rev 0)
+++ extra-i686/gimp-ufraw.install   2011-10-05 19:06:38 UTC (rev 139880)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/repos (4 files)

2011-10-05 Thread Andrea Scarpino
Date: Wednesday, October 5, 2011 @ 15:06:39
  Author: andrea
Revision: 139881

db-move: moved gimp-ufraw from [staging] to [extra] (x86_64)

Added:
  gimp-ufraw/repos/extra-x86_64/PKGBUILD
(from rev 139875, gimp-ufraw/repos/staging-x86_64/PKGBUILD)
  gimp-ufraw/repos/extra-x86_64/gimp-ufraw.install
(from rev 139875, gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install)
Deleted:
  gimp-ufraw/repos/extra-x86_64/PKGBUILD
  gimp-ufraw/repos/staging-x86_64/

+
 PKGBUILD   |   69 +--
 gimp-ufraw.install |   11 
 2 files changed, 46 insertions(+), 34 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-10-05 19:06:38 UTC (rev 139880)
+++ extra-x86_64/PKGBUILD   2011-10-05 19:06:39 UTC (rev 139881)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-
-pkgname=gimp-ufraw
-pkgver=0.18
-pkgrel=1
-pkgdesc=Standalone or gimp plugin converter for raw files
-url=http://ufraw.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('gtkimageview' 'exiv2')
-makedepends=('gimp' 'cinepaint' 'pkg-config')
-optdepends=('gimp: to use the gimp import plugin for raw images'
-   'cinepaint: to use the cinepaint import plugin for raw images')
-source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
-md5sums=('454f40a402928998a82e2645d9265d96')
-sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
-
-build() {
-  cd ${srcdir}/ufraw-${pkgver}
-
-  ./configure --prefix=/usr \
-  --enable-extras \
-  --enable-mime \
-  --enable-openmp
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
-  make
-}
-
-package() {
-  cd ${srcdir}/ufraw-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/bin/dcraw
-}

Copied: gimp-ufraw/repos/extra-x86_64/PKGBUILD (from rev 139875, 
gimp-ufraw/repos/staging-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-10-05 19:06:39 UTC (rev 139881)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=2
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+md5sums=('454f40a402928998a82e2645d9265d96')
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/extra-x86_64/gimp-ufraw.install (from rev 139875, 
gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install)
===
--- extra-x86_64/gimp-ufraw.install (rev 0)
+++ extra-x86_64/gimp-ufraw.install 2011-10-05 19:06:39 UTC (rev 139881)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD gimp-ufraw.install)

2011-10-02 Thread Eric Bélanger
Date: Sunday, October 2, 2011 @ 09:49:39
  Author: eric
Revision: 139503

upgpkg: gimp-ufraw 0.18-2

Rebuild against exiv2 0.22, Correct license, Add missing depends, Add .install 
file to run update-desktop-database

Added:
  gimp-ufraw/trunk/gimp-ufraw.install
Modified:
  gimp-ufraw/trunk/PKGBUILD

+
 PKGBUILD   |   11 ++-
 gimp-ufraw.install |   11 +++
 2 files changed, 17 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-02 12:43:42 UTC (rev 139502)
+++ PKGBUILD2011-10-02 13:49:39 UTC (rev 139503)
@@ -3,15 +3,16 @@
 
 pkgname=gimp-ufraw
 pkgver=0.18
-pkgrel=1
+pkgrel=2
 pkgdesc=Standalone or gimp plugin converter for raw files
 url=http://ufraw.sourceforge.net/;
 arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('gtkimageview' 'exiv2')
-makedepends=('gimp' 'cinepaint' 'pkg-config')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
 optdepends=('gimp: to use the gimp import plugin for raw images'
-   'cinepaint: to use the cinepaint import plugin for raw images')
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
 source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
 md5sums=('454f40a402928998a82e2645d9265d96')
 sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')

Added: gimp-ufraw.install
===
--- gimp-ufraw.install  (rev 0)
+++ gimp-ufraw.install  2011-10-02 13:49:39 UTC (rev 139503)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/repos (6 files)

2011-10-02 Thread Eric Bélanger
Date: Sunday, October 2, 2011 @ 09:50:06
  Author: eric
Revision: 139504

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gimp-ufraw/repos/staging-i686/
  gimp-ufraw/repos/staging-i686/PKGBUILD
(from rev 139503, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/staging-i686/gimp-ufraw.install
(from rev 139503, gimp-ufraw/trunk/gimp-ufraw.install)
  gimp-ufraw/repos/staging-x86_64/
  gimp-ufraw/repos/staging-x86_64/PKGBUILD
(from rev 139503, gimp-ufraw/trunk/PKGBUILD)
  gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install
(from rev 139503, gimp-ufraw/trunk/gimp-ufraw.install)

---+
 staging-i686/PKGBUILD |   35 +++
 staging-i686/gimp-ufraw.install   |   11 +++
 staging-x86_64/PKGBUILD   |   35 +++
 staging-x86_64/gimp-ufraw.install |   11 +++
 4 files changed, 92 insertions(+)

Copied: gimp-ufraw/repos/staging-i686/PKGBUILD (from rev 139503, 
gimp-ufraw/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-10-02 13:50:06 UTC (rev 139504)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=2
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+md5sums=('454f40a402928998a82e2645d9265d96')
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/staging-i686/gimp-ufraw.install (from rev 139503, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- staging-i686/gimp-ufraw.install (rev 0)
+++ staging-i686/gimp-ufraw.install 2011-10-02 13:50:06 UTC (rev 139504)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}

Copied: gimp-ufraw/repos/staging-x86_64/PKGBUILD (from rev 139503, 
gimp-ufraw/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2011-10-02 13:50:06 UTC (rev 139504)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+
+pkgname=gimp-ufraw
+pkgver=0.18
+pkgrel=2
+pkgdesc=Standalone or gimp plugin converter for raw files
+url=http://ufraw.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils')
+makedepends=('gimp' 'cinepaint')
+optdepends=('gimp: to use the gimp import plugin for raw images'
+'cinepaint: to use the cinepaint import plugin for raw images')
+install=gimp-ufraw.install
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+md5sums=('454f40a402928998a82e2645d9265d96')
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
+
+build() {
+  cd ${srcdir}/ufraw-${pkgver}
+
+  ./configure --prefix=/usr \
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
+}
+
+package() {
+  cd ${srcdir}/ufraw-${pkgver}
+  make DESTDIR=${pkgdir} install
+  rm -f ${pkgdir}/usr/bin/dcraw
+}

Copied: gimp-ufraw/repos/staging-x86_64/gimp-ufraw.install (from rev 139503, 
gimp-ufraw/trunk/gimp-ufraw.install)
===
--- staging-x86_64/gimp-ufraw.install   (rev 0)
+++ staging-x86_64/gimp-ufraw.install   2011-10-02 13:50:06 UTC (rev 139504)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_remove() {
+  update-desktop-database -q
+}



[arch-commits] Commit in gimp-ufraw/repos (extra-i686)

2011-02-28 Thread Eric Bélanger
Date: Monday, February 28, 2011 @ 16:58:14
  Author: eric
Revision: 111737

db-move: gimp-ufraw removed by eric for move to [extra] (i686)

Deleted:
  gimp-ufraw/repos/extra-i686/



[arch-commits] Commit in gimp-ufraw/repos (extra-i686 testing-i686)

2011-02-28 Thread Eric Bélanger
Date: Monday, February 28, 2011 @ 16:58:14
  Author: eric
Revision: 111738

db-move: moved gimp-ufraw from [testing] to [extra] (i686)

Added:
  gimp-ufraw/repos/extra-i686/
Deleted:
  gimp-ufraw/repos/testing-i686/



[arch-commits] Commit in gimp-ufraw/repos (extra-x86_64)

2011-02-28 Thread Eric Bélanger
Date: Monday, February 28, 2011 @ 16:58:15
  Author: eric
Revision: 111739

db-move: gimp-ufraw removed by eric for move to [extra] (x86_64)

Deleted:
  gimp-ufraw/repos/extra-x86_64/



[arch-commits] Commit in gimp-ufraw/repos (extra-x86_64 testing-x86_64)

2011-02-28 Thread Eric Bélanger
Date: Monday, February 28, 2011 @ 16:58:16
  Author: eric
Revision: 111740

db-move: moved gimp-ufraw from [testing] to [extra] (x86_64)

Added:
  gimp-ufraw/repos/extra-x86_64/
Deleted:
  gimp-ufraw/repos/testing-x86_64/



[arch-commits] Commit in gimp-ufraw/repos (staging-i686 testing-i686)

2011-02-23 Thread Eric Bélanger
Date: Wednesday, February 23, 2011 @ 20:49:35
  Author: eric
Revision: 111099

db-move: moved gimp-ufraw from [staging] to [testing] (i686)

Added:
  gimp-ufraw/repos/testing-i686/
Deleted:
  gimp-ufraw/repos/staging-i686/



[arch-commits] Commit in gimp-ufraw/repos (staging-x86_64 testing-x86_64)

2011-02-23 Thread Eric Bélanger
Date: Wednesday, February 23, 2011 @ 20:49:36
  Author: eric
Revision: 00

db-move: moved gimp-ufraw from [staging] to [testing] (x86_64)

Added:
  gimp-ufraw/repos/testing-x86_64/
Deleted:
  gimp-ufraw/repos/staging-x86_64/



[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2011-02-22 Thread Eric Bélanger
Date: Wednesday, February 23, 2011 @ 02:43:56
  Author: eric
Revision: 110928

upgpkg: gimp-ufraw 0.18-1
Upstream update, Rebuilt against exiv2 0.21.1

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |   21 ++---
 1 file changed, 10 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-02-23 07:41:47 UTC (rev 110927)
+++ PKGBUILD2011-02-23 07:43:56 UTC (rev 110928)
@@ -2,34 +2,33 @@
 # Maintainer: Tobias Kieslich tob...@archlinux.org
 
 pkgname=gimp-ufraw
-_srcname=ufraw
-pkgver=0.16
-pkgrel=4
+pkgver=0.18
+pkgrel=1
 pkgdesc=Standalone or gimp plugin converter for raw files
 url=http://ufraw.sourceforge.net/;
 arch=('i686' 'x86_64')
 license=('GPL2')
 depends=('gtkimageview' 'exiv2')
-makedepends=('gimp' 'cinepaint' 'pkgconfig')
+makedepends=('gimp' 'cinepaint' 'pkg-config')
 optdepends=('gimp: to use the gimp import plugin for raw images'
'cinepaint: to use the cinepaint import plugin for raw images')
-source=(http://downloads.sourceforge.net/${_srcname}/${_srcname}-${pkgver}.tar.gz)
-md5sums=('61e100e42f17e3a7fcfae64506eebd14')
+source=(http://downloads.sourceforge.net/ufraw/ufraw-${pkgver}.tar.gz)
+md5sums=('454f40a402928998a82e2645d9265d96')
+sha1sums=('41c9ad7aa7f1cbb63a6b0b330b3599b18a7e8cd2')
 
 build() {
-  cd ${srcdir}/${_srcname}-${pkgver}
+  cd ${srcdir}/ufraw-${pkgver}
 
   ./configure --prefix=/usr \
   --enable-extras \
   --enable-mime \
-  --enable-openmp \
-  --with-exiv2
+  --enable-openmp
   sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
   make
 }
 
 package() {
-  cd ${srcdir}/${_srcname}-${pkgver}
+  cd ${srcdir}/ufraw-${pkgver}
   make DESTDIR=${pkgdir} install
-  rm -f ${pkgdir}/usr/bin/dcraw
+  rm -f ${pkgdir}/usr/bin/dcraw
 }



[arch-commits] Commit in gimp-ufraw/repos (staging-i686)

2011-02-22 Thread Eric Bélanger
Date: Wednesday, February 23, 2011 @ 02:44:12
  Author: eric
Revision: 110929

archrelease: copy trunk to staging-i686

Added:
  gimp-ufraw/repos/staging-i686/



[arch-commits] Commit in gimp-ufraw/repos (staging-x86_64)

2011-02-22 Thread Eric Bélanger
Date: Wednesday, February 23, 2011 @ 02:44:29
  Author: eric
Revision: 110930

archrelease: copy trunk to staging-x86_64

Added:
  gimp-ufraw/repos/staging-x86_64/



[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2010-10-19 Thread Ionut Biru
Date: Tuesday, October 19, 2010 @ 17:03:01
  Author: ibiru
Revision: 96307

upgpkg: gimp-ufraw 0.16-4
exiv2 rebuild

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-10-19 21:02:38 UTC (rev 96306)
+++ PKGBUILD2010-10-19 21:03:01 UTC (rev 96307)
@@ -4,7 +4,7 @@
 pkgname=gimp-ufraw
 _srcname=ufraw
 pkgver=0.16
-pkgrel=3
+pkgrel=4
 pkgdesc=Standalone or gimp plugin converter for raw files
 url=http://ufraw.sourceforge.net/;
 arch=('i686' 'x86_64')
@@ -23,13 +23,13 @@
   --enable-extras \
   --enable-mime \
   --enable-openmp \
-  --with-exiv2 || return 1
-  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile 
|| return 1
-  make || return 1
+  --with-exiv2
+  sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile
+  make
 }
 
 package() {
   cd ${srcdir}/${_srcname}-${pkgver}
-  make DESTDIR=${pkgdir} install || return 1
+  make DESTDIR=${pkgdir} install
   rm -f ${pkgdir}/usr/bin/dcraw
 }



[arch-commits] Commit in gimp-ufraw/repos (staging-i686)

2010-10-19 Thread Ionut Biru
Date: Tuesday, October 19, 2010 @ 17:03:21
  Author: ibiru
Revision: 96308

archrelease: copy trunk to staging-i686

Added:
  gimp-ufraw/repos/staging-i686/



[arch-commits] Commit in gimp-ufraw/repos (staging-x86_64)

2010-10-19 Thread Ionut Biru
Date: Tuesday, October 19, 2010 @ 17:03:41
  Author: ibiru
Revision: 96309

archrelease: copy trunk to staging-x86_64

Added:
  gimp-ufraw/repos/staging-x86_64/



[arch-commits] Commit in gimp-ufraw/repos (extra-i686)

2010-10-19 Thread Ionut Biru
Date: Tuesday, October 19, 2010 @ 17:49:10
  Author: ibiru
Revision: 96329

db-move: gimp-ufraw removed by ibiru for move to [extra] (i686)

Deleted:
  gimp-ufraw/repos/extra-i686/



[arch-commits] Commit in gimp-ufraw/repos (extra-x86_64 staging-x86_64)

2010-10-19 Thread Ionut Biru
Date: Tuesday, October 19, 2010 @ 17:49:16
  Author: ibiru
Revision: 96332

db-move: moved gimp-ufraw from [staging] to [extra] (x86_64)

Added:
  gimp-ufraw/repos/extra-x86_64/
Deleted:
  gimp-ufraw/repos/staging-x86_64/



[arch-commits] Commit in gimp-ufraw/repos (extra-i686)

2010-03-11 Thread Andrea Scarpino
Date: Thursday, March 11, 2010 @ 10:21:54
  Author: andrea
Revision: 71893

db-move: gimp-ufraw removed by andrea for move to extra

Deleted:
  gimp-ufraw/repos/extra-i686/



[arch-commits] Commit in gimp-ufraw/repos (extra-i686 testing-i686)

2010-03-11 Thread Andrea Scarpino
Date: Thursday, March 11, 2010 @ 10:21:54
  Author: andrea
Revision: 71894

db-move: moved gimp-ufraw from [testing] to [extra] (i686)

Added:
  gimp-ufraw/repos/extra-i686/
Deleted:
  gimp-ufraw/repos/testing-i686/



[arch-commits] Commit in gimp-ufraw/repos (extra-x86_64)

2010-03-11 Thread Andrea Scarpino
Date: Thursday, March 11, 2010 @ 10:22:00
  Author: andrea
Revision: 71895

db-move: gimp-ufraw removed by andrea for move to extra

Deleted:
  gimp-ufraw/repos/extra-x86_64/



[arch-commits] Commit in gimp-ufraw/repos (extra-x86_64 testing-x86_64)

2010-03-11 Thread Andrea Scarpino
Date: Thursday, March 11, 2010 @ 10:22:01
  Author: andrea
Revision: 71896

db-move: moved gimp-ufraw from [testing] to [extra] (x86_64)

Added:
  gimp-ufraw/repos/extra-x86_64/
Deleted:
  gimp-ufraw/repos/testing-x86_64/



[arch-commits] Commit in gimp-ufraw/repos (extra-i686)

2010-01-30 Thread Jan de Groot
Date: Saturday, January 30, 2010 @ 14:49:38
  Author: jgc
Revision: 65629

db-move: gimp-ufraw removed by jgc for move to extra

Deleted:
  gimp-ufraw/repos/extra-i686/



[arch-commits] Commit in gimp-ufraw/repos (extra-i686 testing-i686)

2010-01-30 Thread Jan de Groot
Date: Saturday, January 30, 2010 @ 14:49:39
  Author: jgc
Revision: 65630

db-move: moved gimp-ufraw from [testing] to [extra] (i686)

Added:
  gimp-ufraw/repos/extra-i686/
Deleted:
  gimp-ufraw/repos/testing-i686/



[arch-commits] Commit in gimp-ufraw/repos (extra-x86_64)

2010-01-30 Thread Jan de Groot
Date: Saturday, January 30, 2010 @ 15:19:08
  Author: jgc
Revision: 66035

db-move: gimp-ufraw removed by jgc for move to extra

Deleted:
  gimp-ufraw/repos/extra-x86_64/



[arch-commits] Commit in gimp-ufraw/repos (extra-x86_64 testing-x86_64)

2010-01-30 Thread Jan de Groot
Date: Saturday, January 30, 2010 @ 15:19:11
  Author: jgc
Revision: 66036

db-move: moved gimp-ufraw from [testing] to [extra] (x86_64)

Added:
  gimp-ufraw/repos/extra-x86_64/
Deleted:
  gimp-ufraw/repos/testing-x86_64/



[arch-commits] Commit in gimp-ufraw/trunk (PKGBUILD)

2010-01-21 Thread Eric Bélanger
Date: Thursday, January 21, 2010 @ 21:58:07
  Author: eric
Revision: 64741

upgpkg: gimp-ufraw 0.16-2
Rebuilt for libpng 1.4 and libjpeg 8

Modified:
  gimp-ufraw/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-01-22 02:47:50 UTC (rev 64740)
+++ PKGBUILD2010-01-22 02:58:07 UTC (rev 64741)
@@ -5,7 +5,7 @@
 pkgname=gimp-ufraw
 _srcname=ufraw
 pkgver=0.16
-pkgrel=1
+pkgrel=2
 pkgdesc=Standalone or gimp plugin converter for raw files
 url=http://ufraw.sourceforge.net/;
 arch=('i686' 'x86_64')



[arch-commits] Commit in gimp-ufraw/repos (testing-i686)

2010-01-21 Thread Eric Bélanger
Date: Thursday, January 21, 2010 @ 21:58:16
  Author: eric
Revision: 64742

archrelease: new repo testing-i686

Added:
  gimp-ufraw/repos/testing-i686/



[arch-commits] Commit in gimp-ufraw/repos (testing-i686)

2010-01-21 Thread Eric Bélanger
Date: Thursday, January 21, 2010 @ 21:58:23
  Author: eric
Revision: 64743

Initialized merge tracking via svnmerge with revisions 1-64741 from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/gimp-ufraw/trunk

Modified:
  gimp-ufraw/repos/testing-i686/(properties)


Property changes on: gimp-ufraw/repos/testing-i686
___
Added: svnmerge-integrated
   + /gimp-ufraw/trunk:1-64741



[arch-commits] Commit in gimp-ufraw/repos (testing-x86_64)

2010-01-21 Thread Eric Bélanger
Date: Thursday, January 21, 2010 @ 21:58:55
  Author: eric
Revision: 64744

archrelease: new repo testing-x86_64

Added:
  gimp-ufraw/repos/testing-x86_64/



[arch-commits] Commit in gimp-ufraw/repos (testing-x86_64)

2010-01-21 Thread Eric Bélanger
Date: Thursday, January 21, 2010 @ 21:59:02
  Author: eric
Revision: 64745

Initialized merge tracking via svnmerge with revisions 1-64743 from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/gimp-ufraw/trunk

Modified:
  gimp-ufraw/repos/testing-x86_64/  (properties)


Property changes on: gimp-ufraw/repos/testing-x86_64
___
Added: svnmerge-integrated
   + /gimp-ufraw/trunk:1-64743



[arch-commits] Commit in gimp-ufraw/repos (extra-i686 extra-i686/PKGBUILD)

2009-12-02 Thread Giovanni Scafora
Date: Wednesday, December 2, 2009 @ 07:14:46
  Author: giovanni
Revision: 60220

Merged revisions 60219 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/gimp-ufraw/trunk


  r60219 | giovanni | 2009-12-02 04:14:02 -0800 (mer, 02 dic 2009) | 2 lines
  
  upgpkg: gimp-ufraw 0.16-1
  upstream release


Modified:
  gimp-ufraw/repos/extra-i686/  (properties)
  gimp-ufraw/repos/extra-i686/PKGBUILD

--+
 PKGBUILD |   28 ++--
 1 file changed, 14 insertions(+), 14 deletions(-)


Property changes on: gimp-ufraw/repos/extra-i686
___
Modified: svnmerge-integrated
   - /gimp-ufraw/trunk:1-45102
   + /gimp-ufraw/trunk:1-60219

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2009-12-02 12:14:02 UTC (rev 60219)
+++ extra-i686/PKGBUILD 2009-12-02 12:14:46 UTC (rev 60220)
@@ -4,29 +4,29 @@
 
 pkgname=gimp-ufraw
 _srcname=ufraw
-pkgver=0.15
-pkgrel=4
-pkgdesc=standalone or gimp plugin converter for raw files
+pkgver=0.16
+pkgrel=1
+pkgdesc=Standalone or gimp plugin converter for raw files
 url=http://ufraw.sourceforge.net/;
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=(GPL2)
-depends=('lcms' 'gtk2' 'libexif' 'exiv2=0.18')
+depends=('gtkimageview=1.6.4' 'exiv2=0.18')
 makedepends=('gimp' 'cinepaint' 'pkgconfig')
 optdepends=('gimp: to use the gimp import plugin for raw images' \
 'cinepaint: to use the cinepaint import plugin for raw images')
-source=(http://downloads.sourceforge.net/sourceforge/${_srcname}/${_srcname}-${pkgver}.tar.gz
 ufraw-0.15-glibc-2.10.patch)
-md5sums=('6d8f6c98a388c438784cd909dd82d540' '18774fd178266f18c398b22f99783860')
+source=(http://downloads.sourceforge.net/sourceforge/${_srcname}/${_srcname}-${pkgver}.tar.gz)
+md5sums=('61e100e42f17e3a7fcfae64506eebd14')
 
 build() {
-  cd ${srcdir}/${_srcname}-${pkgver}
-  patch -p1  ../ufraw-0.15-glibc-2.10.patch || return 1
+  cd ${srcdir}/${_srcname}-${pkgver}
+
   ./configure --prefix=/usr \
---enable-extras \
---enable-mime \
---enable-openmp \
---with-libexif --with-exiv2 || return 1
+  --enable-extras \
+  --enable-mime \
+  --enable-openmp \
+  --with-exiv2 || return 1
   sed -i s/-ffast-math -fomit-frame-pointer -W -Wall -O3/${CFLAGS}/ Makefile 
|| return 1
   make || return 1
-  make DESTDIR=${pkgdir} install || return 1
+  make DESTDIR=${pkgdir} install || return 1
   rm -f ${pkgdir}/usr/bin/dcraw
 }



[arch-commits] Commit in gimp-ufraw/trunk (ufraw-0.15-glibc-2.10.patch)

2009-12-02 Thread Giovanni Scafora
Date: Wednesday, December 2, 2009 @ 07:20:44
  Author: giovanni
Revision: 60222

cleanup

Deleted:
  gimp-ufraw/trunk/ufraw-0.15-glibc-2.10.patch

-+
 ufraw-0.15-glibc-2.10.patch |   12 
 1 file changed, 12 deletions(-)

Deleted: ufraw-0.15-glibc-2.10.patch
===
--- ufraw-0.15-glibc-2.10.patch 2009-12-02 12:15:58 UTC (rev 60221)
+++ ufraw-0.15-glibc-2.10.patch 2009-12-02 12:20:44 UTC (rev 60222)
@@ -1,12 +0,0 @@
 ufraw-0.15.old/dcraw.cc2008-12-23 07:19:41.0 +
-+++ ufraw-0.15/dcraw.cc2009-05-28 15:25:51.0 +0100
-@@ -8401,7 +8401,7 @@
-   argv[argc] = ;
-   for (arg=1; (((opm = argv[arg][0]) - 2) | 2) == '+'; ) {
- opt = argv[arg++][1];
--if ((cp = strchr (sp=nbrkStqmHAC, opt)))
-+if ((cp = (char*) strchr (sp=nbrkStqmHAC, opt)))
-   for (i=0; i  1141142[cp-sp]-'0'; i++)
-   if (!isdigit(argv[arg+i][0])) {
- dcraw_message (DCRAW_ERROR,_(Non-numeric argument to \-%c\\n), 
opt);
-



[arch-commits] Commit in gimp-ufraw/repos (2 files)

2009-12-02 Thread Giovanni Scafora
Date: Wednesday, December 2, 2009 @ 07:21:34
  Author: giovanni
Revision: 60223

Merged revisions 60222 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/gimp-ufraw/trunk


  r60222 | giovanni | 2009-12-02 04:20:44 -0800 (mer, 02 dic 2009) | 1 line
  
  cleanup


Modified:
  gimp-ufraw/repos/extra-i686/  (properties)
Deleted:
  gimp-ufraw/repos/extra-i686/ufraw-0.15-glibc-2.10.patch

-+
 ufraw-0.15-glibc-2.10.patch |   12 
 1 file changed, 12 deletions(-)


Property changes on: gimp-ufraw/repos/extra-i686
___
Modified: svnmerge-integrated
   - /gimp-ufraw/trunk:1-60219
   + /gimp-ufraw/trunk:1-60222

Deleted: extra-i686/ufraw-0.15-glibc-2.10.patch
===
--- extra-i686/ufraw-0.15-glibc-2.10.patch  2009-12-02 12:20:44 UTC (rev 
60222)
+++ extra-i686/ufraw-0.15-glibc-2.10.patch  2009-12-02 12:21:34 UTC (rev 
60223)
@@ -1,12 +0,0 @@
 ufraw-0.15.old/dcraw.cc2008-12-23 07:19:41.0 +
-+++ ufraw-0.15/dcraw.cc2009-05-28 15:25:51.0 +0100
-@@ -8401,7 +8401,7 @@
-   argv[argc] = ;
-   for (arg=1; (((opm = argv[arg][0]) - 2) | 2) == '+'; ) {
- opt = argv[arg++][1];
--if ((cp = strchr (sp=nbrkStqmHAC, opt)))
-+if ((cp = (char*) strchr (sp=nbrkStqmHAC, opt)))
-   for (i=0; i  1141142[cp-sp]-'0'; i++)
-   if (!isdigit(argv[arg+i][0])) {
- dcraw_message (DCRAW_ERROR,_(Non-numeric argument to \-%c\\n), 
opt);
-