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

2016-01-04 Thread Lukas Fleischer
Date: Monday, January 4, 2016 @ 22:07:11
  Author: lfleischer
Revision: 155485

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

Added:
  sxiv/repos/community-i686/PKGBUILD
(from rev 155484, sxiv/trunk/PKGBUILD)
  sxiv/repos/community-i686/sxiv.install
(from rev 155484, sxiv/trunk/sxiv.install)
  sxiv/repos/community-x86_64/PKGBUILD
(from rev 155484, sxiv/trunk/PKGBUILD)
  sxiv/repos/community-x86_64/sxiv.install
(from rev 155484, sxiv/trunk/sxiv.install)
Deleted:
  sxiv/repos/community-i686/PKGBUILD
  sxiv/repos/community-i686/sxiv.install
  sxiv/repos/community-x86_64/PKGBUILD
  sxiv/repos/community-x86_64/sxiv.install

---+
 /PKGBUILD |   66 
 /sxiv.install |   24 ++
 community-i686/PKGBUILD   |   33 
 community-i686/sxiv.install   |   12 ---
 community-x86_64/PKGBUILD |   33 
 community-x86_64/sxiv.install |   12 ---
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-04 21:06:54 UTC (rev 155484)
+++ community-i686/PKGBUILD 2016-01-04 21:07:11 UTC (rev 155485)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Bert Muennich 
-# Contributor: Brad Fanella 
-
-pkgname=sxiv
-pkgver=1.3.1
-pkgrel=1
-pkgdesc='Simple X Image Viewer'
-arch=('i686' 'x86_64')
-license=('GPL2')
-install=sxiv.install
-url='https://github.com/muennich/sxiv'
-depends=('imlib2' 'desktop-file-utils' 'xdg-utils' 'hicolor-icon-theme' 
'libexif')
-source=(https://github.com/muennich/sxiv/archive/v$pkgver.tar.gz)
-md5sums=('3255d0d47e0a4cddd752ec03ee4bddaf')
-
-prepare() {
-  cd $pkgname-$pkgver
-  ln -s config.def.h config.h
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-  make -C icon PREFIX=/usr DESTDIR="$pkgdir" install
-  install -Dm644 sxiv.desktop "$pkgdir"/usr/share/applications/sxiv.desktop
-}

Copied: sxiv/repos/community-i686/PKGBUILD (from rev 155484, 
sxiv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-04 21:07:11 UTC (rev 155485)
@@ -0,0 +1,33 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Bert Muennich 
+# Contributor: Brad Fanella 
+
+pkgname=sxiv
+pkgver=1.3.2
+pkgrel=1
+pkgdesc='Simple X Image Viewer'
+arch=('i686' 'x86_64')
+license=('GPL2')
+install=sxiv.install
+url='https://github.com/muennich/sxiv'
+depends=('imlib2' 'desktop-file-utils' 'xdg-utils' 'hicolor-icon-theme' 
'libexif')
+source=("$pkgname-$pkgver.tar.gz"::"https://github.com/muennich/sxiv/archive/v$pkgver.tar.gz;)
+md5sums=('44822b3d4672a7ed22f1a14c86a0914f')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  ln -s config.def.h config.h
+}
+
+build() {
+  make -C "$pkgname-$pkgver"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+  make -C icon PREFIX=/usr DESTDIR="$pkgdir" install
+  install -Dm644 sxiv.desktop "$pkgdir"/usr/share/applications/sxiv.desktop
+}

Deleted: community-i686/sxiv.install
===
--- community-i686/sxiv.install 2016-01-04 21:06:54 UTC (rev 155484)
+++ community-i686/sxiv.install 2016-01-04 21:07:11 UTC (rev 155485)
@@ -1,12 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: sxiv/repos/community-i686/sxiv.install (from rev 155484, 
sxiv/trunk/sxiv.install)
===
--- community-i686/sxiv.install (rev 0)
+++ community-i686/sxiv.install 2016-01-04 21:07:11 UTC (rev 155485)
@@ -0,0 +1,12 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-01-04 21:06:54 UTC (rev 155484)
+++ community-x86_64/PKGBUILD   2016-01-04 21:07:11 UTC (rev 155485)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Bert Muennich 
-# Contributor: Brad Fanella 

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

2014-11-18 Thread Lukas Fleischer
Date: Tuesday, November 18, 2014 @ 21:14:50
  Author: lfleischer
Revision: 122717

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

Added:
  sxiv/repos/community-i686/PKGBUILD
(from rev 122716, sxiv/trunk/PKGBUILD)
  sxiv/repos/community-i686/sxiv.install
(from rev 122716, sxiv/trunk/sxiv.install)
  sxiv/repos/community-x86_64/PKGBUILD
(from rev 122716, sxiv/trunk/PKGBUILD)
  sxiv/repos/community-x86_64/sxiv.install
(from rev 122716, sxiv/trunk/sxiv.install)
Deleted:
  sxiv/repos/community-i686/PKGBUILD
  sxiv/repos/community-i686/sxiv.install
  sxiv/repos/community-x86_64/PKGBUILD
  sxiv/repos/community-x86_64/sxiv.install

---+
 /PKGBUILD |   66 
 /sxiv.install |   24 ++
 community-i686/PKGBUILD   |   33 
 community-i686/sxiv.install   |   12 ---
 community-x86_64/PKGBUILD |   33 
 community-x86_64/sxiv.install |   12 ---
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-18 20:14:36 UTC (rev 122716)
+++ community-i686/PKGBUILD 2014-11-18 20:14:50 UTC (rev 122717)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Bert Muennich muennich at informatik.hu-berlin.de
-# Contributor: Brad Fanella bradfane...@archlinux.us
-
-pkgname=sxiv
-pkgver=1.3
-pkgrel=1
-pkgdesc='Simple X Image Viewer'
-arch=('i686' 'x86_64')
-license=('GPL2')
-install=sxiv.install
-url='https://github.com/muennich/sxiv'
-depends=('imlib2' 'desktop-file-utils' 'xdg-utils' 'hicolor-icon-theme' 
'libexif')
-source=(https://github.com/muennich/sxiv/archive/v$pkgver.tar.gz)
-md5sums=('af4c832ae3857fc177691aa624ad6017')
-
-prepare() {
-  cd $pkgname-$pkgver
-  ln -s config.def.h config.h
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make PREFIX=/usr DESTDIR=$pkgdir install
-  make -C icon PREFIX=/usr DESTDIR=$pkgdir install
-  install -Dm644 sxiv.desktop $pkgdir/usr/share/applications/sxiv.desktop
-}

Copied: sxiv/repos/community-i686/PKGBUILD (from rev 122716, 
sxiv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-18 20:14:50 UTC (rev 122717)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Bert Muennich muennich at informatik.hu-berlin.de
+# Contributor: Brad Fanella bradfane...@archlinux.us
+
+pkgname=sxiv
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='Simple X Image Viewer'
+arch=('i686' 'x86_64')
+license=('GPL2')
+install=sxiv.install
+url='https://github.com/muennich/sxiv'
+depends=('imlib2' 'desktop-file-utils' 'xdg-utils' 'hicolor-icon-theme' 
'libexif')
+source=(https://github.com/muennich/sxiv/archive/v$pkgver.tar.gz)
+md5sums=('3255d0d47e0a4cddd752ec03ee4bddaf')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ln -s config.def.h config.h
+}
+
+build() {
+  make -C $pkgname-$pkgver
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=/usr DESTDIR=$pkgdir install
+  make -C icon PREFIX=/usr DESTDIR=$pkgdir install
+  install -Dm644 sxiv.desktop $pkgdir/usr/share/applications/sxiv.desktop
+}

Deleted: community-i686/sxiv.install
===
--- community-i686/sxiv.install 2014-11-18 20:14:36 UTC (rev 122716)
+++ community-i686/sxiv.install 2014-11-18 20:14:50 UTC (rev 122717)
@@ -1,12 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: sxiv/repos/community-i686/sxiv.install (from rev 122716, 
sxiv/trunk/sxiv.install)
===
--- community-i686/sxiv.install (rev 0)
+++ community-i686/sxiv.install 2014-11-18 20:14:50 UTC (rev 122717)
@@ -0,0 +1,12 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-18 20:14:36 UTC (rev 122716)
+++ community-x86_64/PKGBUILD   2014-11-18 20:14:50 UTC (rev 122717)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Bert Muennich muennich at informatik.hu-berlin.de
-# Contributor: Brad Fanella bradfane...@archlinux.us
-

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

2014-05-27 Thread Bartłomiej Piotrowski
Date: Tuesday, May 27, 2014 @ 11:44:35
  Author: bpiotrowski
Revision: 111958

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

Added:
  sxiv/repos/community-staging-i686/
  sxiv/repos/community-staging-i686/PKGBUILD
(from rev 111957, sxiv/trunk/PKGBUILD)
  sxiv/repos/community-staging-i686/giflib-5.1.0.patch
(from rev 111957, sxiv/trunk/giflib-5.1.0.patch)
  sxiv/repos/community-staging-i686/sxiv.install
(from rev 111957, sxiv/trunk/sxiv.install)
  sxiv/repos/community-staging-x86_64/
  sxiv/repos/community-staging-x86_64/PKGBUILD
(from rev 111957, sxiv/trunk/PKGBUILD)
  sxiv/repos/community-staging-x86_64/giflib-5.1.0.patch
(from rev 111957, sxiv/trunk/giflib-5.1.0.patch)
  sxiv/repos/community-staging-x86_64/sxiv.install
(from rev 111957, sxiv/trunk/sxiv.install)

-+
 community-staging-i686/PKGBUILD |   34 ++
 community-staging-i686/giflib-5.1.0.patch   |   15 +++
 community-staging-i686/sxiv.install |7 +
 community-staging-x86_64/PKGBUILD   |   34 ++
 community-staging-x86_64/giflib-5.1.0.patch |   15 +++
 community-staging-x86_64/sxiv.install   |7 +
 6 files changed, 112 insertions(+)

Copied: sxiv/repos/community-staging-i686/PKGBUILD (from rev 111957, 
sxiv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-05-27 09:44:35 UTC (rev 111958)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Bert Muennich muennich at informatik.hu-berlin.de
+# Contributor: Brad Fanella bradfane...@archlinux.us
+
+pkgname=sxiv
+pkgver=1.2
+pkgrel=2
+pkgdesc='Simple X Image Viewer'
+arch=('i686' 'x86_64')
+license=('GPL2')
+install=sxiv.install
+url='https://github.com/muennich/sxiv'
+depends=('imlib2' 'desktop-file-utils')
+source=(https://github.com/muennich/sxiv/archive/v$pkgver.tar.gz
+giflib-5.1.0.patch)
+md5sums=('9b79d3c70693d9abbc66295cf6f281a0'
+ '98a6c832655b90e57ff137df41a1fb90')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../giflib-5.1.0.patch
+}
+
+build() {
+  make -C $pkgname-$pkgver
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=$pkgdir/usr install
+  install -Dm644 sxiv.desktop $pkgdir/usr/share/applications/sxiv.desktop
+}

Copied: sxiv/repos/community-staging-i686/giflib-5.1.0.patch (from rev 111957, 
sxiv/trunk/giflib-5.1.0.patch)
===
--- community-staging-i686/giflib-5.1.0.patch   (rev 0)
+++ community-staging-i686/giflib-5.1.0.patch   2014-05-27 09:44:35 UTC (rev 
111958)
@@ -0,0 +1,15 @@
+diff -rupN a/image.c b/image.c
+--- a/image.c  2014-04-24 20:40:26.0 +0200
 b/image.c  2014-05-27 11:39:41.786715632 +0200
+@@ -278,7 +278,11 @@ bool img_load_gif(img_t *img, const file
+   }
+   } while (rec != TERMINATE_RECORD_TYPE);
+ 
++#if defined(GIFLIB_MAJOR)  GIFLIB_MAJOR = 5  GIFLIB_MINOR = 1
++  DGifCloseFile(gif, NULL);
++#else
+   DGifCloseFile(gif);
++#endif
+ 
+   if (err  !file-loaded)
+   warn(corrupted gif file: %s, file-name);

Copied: sxiv/repos/community-staging-i686/sxiv.install (from rev 111957, 
sxiv/trunk/sxiv.install)
===
--- community-staging-i686/sxiv.install (rev 0)
+++ community-staging-i686/sxiv.install 2014-05-27 09:44:35 UTC (rev 111958)
@@ -0,0 +1,7 @@
+post_install () {
+  update-desktop-database -q
+}
+
+post_upgrade () {
+  update-desktop-database -q
+}

Copied: sxiv/repos/community-staging-x86_64/PKGBUILD (from rev 111957, 
sxiv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-05-27 09:44:35 UTC (rev 111958)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Bert Muennich muennich at informatik.hu-berlin.de
+# Contributor: Brad Fanella bradfane...@archlinux.us
+
+pkgname=sxiv
+pkgver=1.2
+pkgrel=2
+pkgdesc='Simple X Image Viewer'
+arch=('i686' 'x86_64')
+license=('GPL2')
+install=sxiv.install
+url='https://github.com/muennich/sxiv'
+depends=('imlib2' 'desktop-file-utils')
+source=(https://github.com/muennich/sxiv/archive/v$pkgver.tar.gz
+giflib-5.1.0.patch)
+md5sums=('9b79d3c70693d9abbc66295cf6f281a0'
+ '98a6c832655b90e57ff137df41a1fb90')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../giflib-5.1.0.patch
+}
+
+build() {
+  make -C $pkgname-$pkgver
+}
+
+package() {
+  cd