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

2017-07-14 Thread Antonio Rojas
Date: Friday, July 14, 2017 @ 22:50:58
  Author: arojas
Revision: 300577

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

Added:
  geeqie/repos/staging-i686/
  
geeqie/repos/staging-i686/0001-Work-around-changed-c-11-std-string-implementation.patch
(from rev 300576, 
geeqie/trunk/0001-Work-around-changed-c-11-std-string-implementation.patch)
  geeqie/repos/staging-i686/PKGBUILD
(from rev 300576, geeqie/trunk/PKGBUILD)
  geeqie/repos/staging-x86_64/
  
geeqie/repos/staging-x86_64/0001-Work-around-changed-c-11-std-string-implementation.patch
(from rev 300576, 
geeqie/trunk/0001-Work-around-changed-c-11-std-string-implementation.patch)
  geeqie/repos/staging-x86_64/PKGBUILD
(from rev 300576, geeqie/trunk/PKGBUILD)

--+
 staging-i686/0001-Work-around-changed-c-11-std-string-implementation.patch   | 
  66 ++
 staging-i686/PKGBUILD| 
  39 +
 staging-x86_64/0001-Work-around-changed-c-11-std-string-implementation.patch | 
  66 ++
 staging-x86_64/PKGBUILD  | 
  39 +
 4 files changed, 210 insertions(+)

Copied: 
geeqie/repos/staging-i686/0001-Work-around-changed-c-11-std-string-implementation.patch
 (from rev 300576, 
geeqie/trunk/0001-Work-around-changed-c-11-std-string-implementation.patch)
===
--- staging-i686/0001-Work-around-changed-c-11-std-string-implementation.patch  
(rev 0)
+++ staging-i686/0001-Work-around-changed-c-11-std-string-implementation.patch  
2017-07-14 22:50:58 UTC (rev 300577)
@@ -0,0 +1,66 @@
+From 0b044d1d685307e5755917e31d56a1a3104cd505 Mon Sep 17 00:00:00 2001
+From: David Kalnischkies 
+Date: Fri, 27 May 2016 12:04:40 +0100
+Subject: [PATCH] Work around changed c++11 std::string implementation
+
+Bug was already partly fixed by 96db62d but there was even more
+positions that was unseen by Solomon.
+
+The patch is originally from Debian bug report #800350.
+
+Signed-off-by: Klaus Ethgen 
+---
+ src/exiv2.cc | 12 +++-
+ 1 file changed, 7 insertions(+), 5 deletions(-)
+
+diff --git a/src/exiv2.cc b/src/exiv2.cc
+index 1dbe1182..49b8e07c 100644
+--- a/src/exiv2.cc
 b/src/exiv2.cc
+@@ -25,6 +25,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ // EXIV2_TEST_VERSION is defined in Exiv2 0.15 and newer.
+ #ifndef EXIV2_TEST_VERSION
+@@ -1140,8 +1141,9 @@ guchar *exif_get_preview(ExifData *exif, guint 
*data_len, gint requested_width,
+ 
+   if (!exif->image()) return NULL;
+ 
++  std::string const path = exif->image()->io().path();
+   /* given image pathname, first do simple (and fast) file extension test 
*/
+-  gboolean is_raw = filter_file_class(exif->image()->io().path().c_str(), 
FORMAT_CLASS_RAWIMAGE);
++  gboolean is_raw = filter_file_class(path.c_str(), 
FORMAT_CLASS_RAWIMAGE);
+ 
+   if (!is_raw && requested_width == 0) return NULL;
+ 
+@@ -1241,10 +1243,10 @@ extern "C" guchar *exif_get_preview(ExifData *exif, 
guint *data_len, gint reques
+   if (!exif) return NULL;
+   if (!exif->image()) return NULL;
+ 
+-  const char* path = exif->image()->io().path().c_str();
++  std::string const path = exif->image()->io().path();
+ 
+   /* given image pathname, first do simple (and fast) file extension test 
*/
+-  if (!filter_file_class(path, FORMAT_CLASS_RAWIMAGE)) return NULL;
++  if (!filter_file_class(path.c_str(), FORMAT_CLASS_RAWIMAGE)) return 
NULL;
+ 
+   try {
+   struct stat st;
+@@ -1255,9 +1257,9 @@ extern "C" guchar *exif_get_preview(ExifData *exif, 
guint *data_len, gint reques
+ 
+   RawFile rf(exif->image()->io());
+   offset = rf.preview_offset();
+-  DEBUG_1("%s: offset %lu", path, offset);
++  DEBUG_1("%s: offset %lu", path.c_str(), offset);
+ 
+-  fd = open(path, O_RDONLY);
++  fd = open(path.c_str(), O_RDONLY);
+   if (fd == -1)
+   {
+   return NULL;
+-- 
+2.13.2
+

Copied: geeqie/repos/staging-i686/PKGBUILD (from rev 300576, 
geeqie/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-07-14 22:50:58 UTC (rev 300577)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Contributor: Lukas Jirkovsky 
+
+pkgname=geeqie
+pkgver=1.3
+pkgrel=3
+pkgdesc="A lightweight image browser and viewer"
+arch=('i686' 'x86_64')
+url="http://www.geeqie.org/;
+license=('GPL2')
+depends=('exiv2' 'gtk2' 'lcms')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils' 'git')
+optdepends=('librsvg: SVG rendering'
+   'fbida: for jpeg rotation'
+ 

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

2017-06-27 Thread Evangelos Foutras
Date: Tuesday, June 27, 2017 @ 08:12:11
  Author: foutrelis
Revision: 299290

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

Added:
  
geeqie/repos/extra-i686/0001-Work-around-changed-c-11-std-string-implementation.patch
(from rev 299289, 
geeqie/trunk/0001-Work-around-changed-c-11-std-string-implementation.patch)
  geeqie/repos/extra-i686/PKGBUILD
(from rev 299289, geeqie/trunk/PKGBUILD)
  
geeqie/repos/extra-x86_64/0001-Work-around-changed-c-11-std-string-implementation.patch
(from rev 299289, 
geeqie/trunk/0001-Work-around-changed-c-11-std-string-implementation.patch)
  geeqie/repos/extra-x86_64/PKGBUILD
(from rev 299289, geeqie/trunk/PKGBUILD)
Deleted:
  geeqie/repos/extra-i686/PKGBUILD
  geeqie/repos/extra-x86_64/PKGBUILD

+
 /PKGBUILD  |   
78 ++
 extra-i686/0001-Work-around-changed-c-11-std-string-implementation.patch   |   
66 
 extra-i686/PKGBUILD|   
31 ---
 extra-x86_64/0001-Work-around-changed-c-11-std-string-implementation.patch |   
66 
 extra-x86_64/PKGBUILD  |   
31 ---
 5 files changed, 210 insertions(+), 62 deletions(-)

Copied: 
geeqie/repos/extra-i686/0001-Work-around-changed-c-11-std-string-implementation.patch
 (from rev 299289, 
geeqie/trunk/0001-Work-around-changed-c-11-std-string-implementation.patch)
===
--- extra-i686/0001-Work-around-changed-c-11-std-string-implementation.patch
(rev 0)
+++ extra-i686/0001-Work-around-changed-c-11-std-string-implementation.patch
2017-06-27 08:12:11 UTC (rev 299290)
@@ -0,0 +1,66 @@
+From 0b044d1d685307e5755917e31d56a1a3104cd505 Mon Sep 17 00:00:00 2001
+From: David Kalnischkies 
+Date: Fri, 27 May 2016 12:04:40 +0100
+Subject: [PATCH] Work around changed c++11 std::string implementation
+
+Bug was already partly fixed by 96db62d but there was even more
+positions that was unseen by Solomon.
+
+The patch is originally from Debian bug report #800350.
+
+Signed-off-by: Klaus Ethgen 
+---
+ src/exiv2.cc | 12 +++-
+ 1 file changed, 7 insertions(+), 5 deletions(-)
+
+diff --git a/src/exiv2.cc b/src/exiv2.cc
+index 1dbe1182..49b8e07c 100644
+--- a/src/exiv2.cc
 b/src/exiv2.cc
+@@ -25,6 +25,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ // EXIV2_TEST_VERSION is defined in Exiv2 0.15 and newer.
+ #ifndef EXIV2_TEST_VERSION
+@@ -1140,8 +1141,9 @@ guchar *exif_get_preview(ExifData *exif, guint 
*data_len, gint requested_width,
+ 
+   if (!exif->image()) return NULL;
+ 
++  std::string const path = exif->image()->io().path();
+   /* given image pathname, first do simple (and fast) file extension test 
*/
+-  gboolean is_raw = filter_file_class(exif->image()->io().path().c_str(), 
FORMAT_CLASS_RAWIMAGE);
++  gboolean is_raw = filter_file_class(path.c_str(), 
FORMAT_CLASS_RAWIMAGE);
+ 
+   if (!is_raw && requested_width == 0) return NULL;
+ 
+@@ -1241,10 +1243,10 @@ extern "C" guchar *exif_get_preview(ExifData *exif, 
guint *data_len, gint reques
+   if (!exif) return NULL;
+   if (!exif->image()) return NULL;
+ 
+-  const char* path = exif->image()->io().path().c_str();
++  std::string const path = exif->image()->io().path();
+ 
+   /* given image pathname, first do simple (and fast) file extension test 
*/
+-  if (!filter_file_class(path, FORMAT_CLASS_RAWIMAGE)) return NULL;
++  if (!filter_file_class(path.c_str(), FORMAT_CLASS_RAWIMAGE)) return 
NULL;
+ 
+   try {
+   struct stat st;
+@@ -1255,9 +1257,9 @@ extern "C" guchar *exif_get_preview(ExifData *exif, 
guint *data_len, gint reques
+ 
+   RawFile rf(exif->image()->io());
+   offset = rf.preview_offset();
+-  DEBUG_1("%s: offset %lu", path, offset);
++  DEBUG_1("%s: offset %lu", path.c_str(), offset);
+ 
+-  fd = open(path, O_RDONLY);
++  fd = open(path.c_str(), O_RDONLY);
+   if (fd == -1)
+   {
+   return NULL;
+-- 
+2.13.2
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-06-27 08:11:43 UTC (rev 299289)
+++ extra-i686/PKGBUILD 2017-06-27 08:12:11 UTC (rev 299290)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Contributor: Lukas Jirkovsky 
-
-pkgname=geeqie
-pkgver=1.3
-pkgrel=1
-pkgdesc="A lightweight image browser and viewer"
-arch=('i686' 'x86_64')
-url="http://www.geeqie.org/;
-license=('GPL2')
-depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
-makedepends=('intltool' 'doxygen' 'gnome-doc-utils' 'git')
-optdepends=('librsvg: 

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

2016-06-12 Thread Gaetan Bisson
Date: Sunday, June 12, 2016 @ 10:29:44
  Author: bisson
Revision: 269368

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

Added:
  geeqie/repos/extra-i686/PKGBUILD
(from rev 269367, geeqie/trunk/PKGBUILD)
  geeqie/repos/extra-x86_64/PKGBUILD
(from rev 269367, geeqie/trunk/PKGBUILD)
Deleted:
  geeqie/repos/extra-i686/PKGBUILD
  geeqie/repos/extra-i686/fix-fullscreen.patch
  geeqie/repos/extra-x86_64/PKGBUILD
  geeqie/repos/extra-x86_64/fix-fullscreen.patch

---+
 /PKGBUILD |   62 
 extra-i686/PKGBUILD   |   37 
 extra-i686/fix-fullscreen.patch   |  107 
 extra-x86_64/PKGBUILD |   37 
 extra-x86_64/fix-fullscreen.patch |  107 
 5 files changed, 62 insertions(+), 288 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-12 08:28:47 UTC (rev 269367)
+++ extra-i686/PKGBUILD 2016-06-12 08:29:44 UTC (rev 269368)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Contributor: Lukas Jirkovsky 
-
-pkgname=geeqie
-pkgver=1.2.3
-pkgrel=2
-pkgdesc="A lightweight image browser and viewer"
-arch=('i686' 'x86_64')
-url="http://www.geeqie.org/;
-license=('GPL2')
-depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
-makedepends=('intltool' 'doxygen' 'gnome-doc-utils' 'git')
-optdepends=('librsvg: SVG rendering'
-   'fbida: for jpeg rotation'
-   'exiv2: for tiff and png rotation')
-source=(http://www.geeqie.org/${pkgname}-${pkgver}.tar.xz
-fix-fullscreen.patch)
-sha1sums=('d01c971ed5906973ff4788d1f7387563dcdbb0e9'
-  'dab15bbda9b329f663276b25bf1989b410596644')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -p1 -i ../fix-fullscreen.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: geeqie/repos/extra-i686/PKGBUILD (from rev 269367, 
geeqie/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-12 08:29:44 UTC (rev 269368)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Contributor: Lukas Jirkovsky 
+
+pkgname=geeqie
+pkgver=1.3
+pkgrel=1
+pkgdesc="A lightweight image browser and viewer"
+arch=('i686' 'x86_64')
+url="http://www.geeqie.org/;
+license=('GPL2')
+depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils' 'git')
+optdepends=('librsvg: SVG rendering'
+   'fbida: for jpeg rotation'
+   'exiv2: for tiff and png rotation')
+validpgpkeys=('85D4CA42952C949B175362B379D0B06F4E20AF1C')
+source=(http://www.geeqie.org/${pkgname}-${pkgver}.tar.xz{,.asc})
+sha1sums=('f991b44d8587f2f42d5793700c5f6882bed6abf9' 'SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/fix-fullscreen.patch
===
--- extra-i686/fix-fullscreen.patch 2016-06-12 08:28:47 UTC (rev 269367)
+++ extra-i686/fix-fullscreen.patch 2016-06-12 08:29:44 UTC (rev 269368)
@@ -1,107 +0,0 @@
-diff -Naur old/src/fullscreen.c new/src/fullscreen.c
 old/src/fullscreen.c   2015-08-16 16:37:58.132952447 +0900
-+++ new/src/fullscreen.c   2015-08-16 16:43:30.031882508 +0900
-@@ -210,10 +210,6 @@
-void (*stop_func)(FullScreenData *, gpointer), 
gpointer stop_data)
- {
-   FullScreenData *fs;
--  GdkScreen *screen;
--  gint x, y;
--  gint w, h;
--  GdkGeometry geometry;
-   GdkWindow *gdkwin;
- 
-   if (!window || !imd) return NULL;
-@@ -229,14 +225,9 @@
-   fs->stop_data = stop_data;
- 
-   DEBUG_1("full screen requests screen %d", options->fullscreen.screen);
--  fullscreen_prefs_get_geometry(options->fullscreen.screen, window, , 
, , ,
--, >same_region);
- 
-   fs->window = window_new(GTK_WINDOW_TOPLEVEL, "fullscreen", NULL, NULL, 
_("Full screen"));
- 
--  /* this requests no decorations, if you still have them complain to the 
window manager author(s) */
--  gtk_window_set_decorated(GTK_WINDOW(fs->window), FALSE);
--
-   if (options->fullscreen.screen < 0)
-   {
-   /* If we want control of the window size and position this is 
not what we want.
-@@ -246,9 +237,42 @@
-   }
-   else
-   {
--  gtk_window_set_screen(GTK_WINDOW(fs->window), screen);
-+ 

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

2015-08-13 Thread Gaetan Bisson
Date: Thursday, August 13, 2015 @ 10:46:04
  Author: bisson
Revision: 243393

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

Added:
  geeqie/repos/testing-i686/
  geeqie/repos/testing-i686/PKGBUILD
(from rev 243392, geeqie/trunk/PKGBUILD)
  geeqie/repos/testing-i686/geeqie.install
(from rev 243392, geeqie/trunk/geeqie.install)
  geeqie/repos/testing-x86_64/
  geeqie/repos/testing-x86_64/PKGBUILD
(from rev 243392, geeqie/trunk/PKGBUILD)
  geeqie/repos/testing-x86_64/geeqie.install
(from rev 243392, geeqie/trunk/geeqie.install)

---+
 testing-i686/PKGBUILD |   28 
 testing-i686/geeqie.install   |   11 +++
 testing-x86_64/PKGBUILD   |   28 
 testing-x86_64/geeqie.install |   11 +++
 4 files changed, 78 insertions(+)

Copied: geeqie/repos/testing-i686/PKGBUILD (from rev 243392, 
geeqie/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-08-13 08:46:04 UTC (rev 243393)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+
+pkgname=geeqie
+pkgver=1.2
+pkgrel=1
+pkgdesc=A lightweight image browser and viewer
+arch=('i686' 'x86_64')
+url=http://www.geeqie.org/;
+license=('GPL2')
+depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils' 'git')
+optdepends=('librsvg: SVG rendering')
+install=geeqie.install
+source=('git://www.geeqie.org/geeqie.git#commit=ca42d65be013f9bcded858b656c594d45c7f8e1d')
+sha1sums=('SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}
+  ./autogen.sh --prefix=/usr
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}
+  make DESTDIR=${pkgdir} install
+}

Copied: geeqie/repos/testing-i686/geeqie.install (from rev 243392, 
geeqie/trunk/geeqie.install)
===
--- testing-i686/geeqie.install (rev 0)
+++ testing-i686/geeqie.install 2015-08-13 08:46:04 UTC (rev 243393)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: geeqie/repos/testing-x86_64/PKGBUILD (from rev 243392, 
geeqie/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-08-13 08:46:04 UTC (rev 243393)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+
+pkgname=geeqie
+pkgver=1.2
+pkgrel=1
+pkgdesc=A lightweight image browser and viewer
+arch=('i686' 'x86_64')
+url=http://www.geeqie.org/;
+license=('GPL2')
+depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils' 'git')
+optdepends=('librsvg: SVG rendering')
+install=geeqie.install
+source=('git://www.geeqie.org/geeqie.git#commit=ca42d65be013f9bcded858b656c594d45c7f8e1d')
+sha1sums=('SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}
+  ./autogen.sh --prefix=/usr
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}
+  make DESTDIR=${pkgdir} install
+}

Copied: geeqie/repos/testing-x86_64/geeqie.install (from rev 243392, 
geeqie/trunk/geeqie.install)
===
--- testing-x86_64/geeqie.install   (rev 0)
+++ testing-x86_64/geeqie.install   2015-08-13 08:46:04 UTC (rev 243393)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}


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

2012-07-29 Thread Eric Bélanger
Date: Sunday, July 29, 2012 @ 20:23:10
  Author: eric
Revision: 164303

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

Added:
  geeqie/repos/staging-i686/
  geeqie/repos/staging-i686/PKGBUILD
(from rev 164302, geeqie/trunk/PKGBUILD)
  geeqie/repos/staging-i686/geeqie.install
(from rev 164302, geeqie/trunk/geeqie.install)
  geeqie/repos/staging-x86_64/
  geeqie/repos/staging-x86_64/PKGBUILD
(from rev 164302, geeqie/trunk/PKGBUILD)
  geeqie/repos/staging-x86_64/geeqie.install
(from rev 164302, geeqie/trunk/geeqie.install)

---+
 staging-i686/PKGBUILD |   29 +
 staging-i686/geeqie.install   |   11 +++
 staging-x86_64/PKGBUILD   |   29 +
 staging-x86_64/geeqie.install |   11 +++
 4 files changed, 80 insertions(+)

Copied: geeqie/repos/staging-i686/PKGBUILD (from rev 164302, 
geeqie/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-07-30 00:23:10 UTC (rev 164303)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+
+pkgname=geeqie
+pkgver=1.0
+pkgrel=7
+pkgdesc=A lightweight image browser and viewer (fork of GQview)
+arch=('i686' 'x86_64')
+url=http://geeqie.sourceforge.net/;
+license=('GPL3')
+depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils')
+optdepends=('librsvg: SVG rendering')
+replaces=('gqview-devel')
+install=geeqie.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('8494a557d67d20e6ad720645ec789dd2b33a3266')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  CPPFLAGS=-D_FILE_OFFSET_BITS=64 ./configure --prefix=/usr
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: geeqie/repos/staging-i686/geeqie.install (from rev 164302, 
geeqie/trunk/geeqie.install)
===
--- staging-i686/geeqie.install (rev 0)
+++ staging-i686/geeqie.install 2012-07-30 00:23:10 UTC (rev 164303)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: geeqie/repos/staging-x86_64/PKGBUILD (from rev 164302, 
geeqie/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2012-07-30 00:23:10 UTC (rev 164303)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+
+pkgname=geeqie
+pkgver=1.0
+pkgrel=7
+pkgdesc=A lightweight image browser and viewer (fork of GQview)
+arch=('i686' 'x86_64')
+url=http://geeqie.sourceforge.net/;
+license=('GPL3')
+depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils')
+optdepends=('librsvg: SVG rendering')
+replaces=('gqview-devel')
+install=geeqie.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('8494a557d67d20e6ad720645ec789dd2b33a3266')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  CPPFLAGS=-D_FILE_OFFSET_BITS=64 ./configure --prefix=/usr
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: geeqie/repos/staging-x86_64/geeqie.install (from rev 164302, 
geeqie/trunk/geeqie.install)
===
--- staging-x86_64/geeqie.install   (rev 0)
+++ staging-x86_64/geeqie.install   2012-07-30 00:23:10 UTC (rev 164303)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}



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

2011-10-02 Thread Eric Bélanger
Date: Sunday, October 2, 2011 @ 08:43:42
  Author: eric
Revision: 139502

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

Added:
  geeqie/repos/staging-i686/
  geeqie/repos/staging-i686/PKGBUILD
(from rev 139501, geeqie/trunk/PKGBUILD)
  geeqie/repos/staging-i686/geeqie.install
(from rev 139501, geeqie/trunk/geeqie.install)
  geeqie/repos/staging-x86_64/
  geeqie/repos/staging-x86_64/PKGBUILD
(from rev 139501, geeqie/trunk/PKGBUILD)
  geeqie/repos/staging-x86_64/geeqie.install
(from rev 139501, geeqie/trunk/geeqie.install)

---+
 staging-i686/PKGBUILD |   30 ++
 staging-i686/geeqie.install   |   11 +++
 staging-x86_64/PKGBUILD   |   30 ++
 staging-x86_64/geeqie.install |   11 +++
 4 files changed, 82 insertions(+)

Copied: geeqie/repos/staging-i686/PKGBUILD (from rev 139501, 
geeqie/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2011-10-02 12:43:42 UTC (rev 139502)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+
+pkgname=geeqie
+pkgver=1.0
+pkgrel=6
+pkgdesc=A lightweight image browser and viewer (fork of GQview)
+arch=('i686' 'x86_64')
+url=http://geeqie.sourceforge.net/;
+license=('GPL3')
+depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils')
+optdepends=('librsvg: SVG rendering')
+replaces=('gqview-devel')
+install=geeqie.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('1d67ef990390224c5052697d93bb49c0')
+sha1sums=('8494a557d67d20e6ad720645ec789dd2b33a3266')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  CPPFLAGS=-D_FILE_OFFSET_BITS=64 ./configure --prefix=/usr
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: geeqie/repos/staging-i686/geeqie.install (from rev 139501, 
geeqie/trunk/geeqie.install)
===
--- staging-i686/geeqie.install (rev 0)
+++ staging-i686/geeqie.install 2011-10-02 12:43:42 UTC (rev 139502)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: geeqie/repos/staging-x86_64/PKGBUILD (from rev 139501, 
geeqie/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2011-10-02 12:43:42 UTC (rev 139502)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+
+pkgname=geeqie
+pkgver=1.0
+pkgrel=6
+pkgdesc=A lightweight image browser and viewer (fork of GQview)
+arch=('i686' 'x86_64')
+url=http://geeqie.sourceforge.net/;
+license=('GPL3')
+depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils')
+makedepends=('intltool' 'doxygen' 'gnome-doc-utils')
+optdepends=('librsvg: SVG rendering')
+replaces=('gqview-devel')
+install=geeqie.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('1d67ef990390224c5052697d93bb49c0')
+sha1sums=('8494a557d67d20e6ad720645ec789dd2b33a3266')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  CPPFLAGS=-D_FILE_OFFSET_BITS=64 ./configure --prefix=/usr
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: geeqie/repos/staging-x86_64/geeqie.install (from rev 139501, 
geeqie/trunk/geeqie.install)
===
--- staging-x86_64/geeqie.install   (rev 0)
+++ staging-x86_64/geeqie.install   2011-10-02 12:43:42 UTC (rev 139502)
@@ -0,0 +1,11 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}