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

2017-09-12 Thread Antonio Rojas
Date: Tuesday, September 12, 2017 @ 20:22:10
  Author: arojas
Revision: 257180

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

Added:
  poedit/repos/community-staging-i686/
  poedit/repos/community-staging-i686/PKGBUILD
(from rev 257179, poedit/trunk/PKGBUILD)
  poedit/repos/community-staging-i686/icu59.patch
(from rev 257179, poedit/trunk/icu59.patch)
  
poedit/repos/community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch
(from rev 257179, 
poedit/trunk/poedit-2.0.2_fix_drawroundedrectangle_assert.patch)
  poedit/repos/community-staging-x86_64/
  poedit/repos/community-staging-x86_64/PKGBUILD
(from rev 257179, poedit/trunk/PKGBUILD)
  poedit/repos/community-staging-x86_64/icu59.patch
(from rev 257179, poedit/trunk/icu59.patch)
  
poedit/repos/community-staging-x86_64/poedit-2.0.2_fix_drawroundedrectangle_assert.patch
(from rev 257179, 
poedit/trunk/poedit-2.0.2_fix_drawroundedrectangle_assert.patch)

-+
 community-staging-i686/PKGBUILD |  
 41 ++
 community-staging-i686/icu59.patch  |  
 11 ++
 community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch   |  
 29 +++
 community-staging-x86_64/PKGBUILD   |  
 41 ++
 community-staging-x86_64/icu59.patch|  
 11 ++
 community-staging-x86_64/poedit-2.0.2_fix_drawroundedrectangle_assert.patch |  
 29 +++
 6 files changed, 162 insertions(+)

Copied: poedit/repos/community-staging-i686/PKGBUILD (from rev 257179, 
poedit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-12 20:22:10 UTC (rev 257180)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+epoch=1
+pkgver=2.0.3
+pkgrel=2
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+depends=('gtkspell3' 'lucene++' 'wxgtk3')
+makedepends=('boost')
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz
+icu59.patch
+poedit-2.0.2_fix_drawroundedrectangle_assert.patch)
+sha256sums=('1ff4c7b3966946b2dc06ba8dda5d8861fa00a94d8387821db511f339092d9577'
+'4d2fcbc1ce5a8d8bab878687337c1f038ed1a83b37652e0a41d7f5c2b26b27bc'
+'721d81cebd32dd27d678d72f1ad527d7d3d74a49862cfa876cbd14f6b54d21d6')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+#patch -Np1 -i ../icu59.patch
+#patch -Np1 -i ../poedit-2.0.2_fix_drawroundedrectangle_assert.patch
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit 
--with-wx-config=/usr/bin/wx-config-gtk3
+make CPPFLAGS+=' -DUCHAR_TYPE=uint16_t'
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: poedit/repos/community-staging-i686/icu59.patch (from rev 257179, 
poedit/trunk/icu59.patch)
===
--- community-staging-i686/icu59.patch  (rev 0)
+++ community-staging-i686/icu59.patch  2017-09-12 20:22:10 UTC (rev 257180)
@@ -0,0 +1,11 @@
+diff -upr poedit-2.0.1.orig/src/unicode_helpers.cpp 
poedit-2.0.1/src/unicode_helpers.cpp
+--- poedit-2.0.1.orig/src/unicode_helpers.cpp  2017-04-26 10:55:31.807183266 
+0300
 poedit-2.0.1/src/unicode_helpers.cpp   2017-04-26 11:02:47.373899526 
+0300
+@@ -25,6 +25,7 @@
+ 
+ #include "unicode_helpers.h"
+ 
++#include 
+ #include "str_helpers.h"
+ 
+ #include 

Copied: 
poedit/repos/community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch
 (from rev 257179, 
poedit/trunk/poedit-2.0.2_fix_drawroundedrectangle_assert.patch)
===
--- community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch   
(rev 0)
+++ community-staging-i686/poedit-2.0.2_fix_drawroundedrectangle_assert.patch   
2017-09-12 20:22:10 UTC (rev 257180)
@@ -0,0 +1,29 @@
+From 86e0677f48a309314b45ba5f06c1c62d14b2200d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Va=CC=81clav=20Slavi=CC=81k?= 
+Date: Thu, 1 Jun 2017 19:19:44 +0200
+Subject: [PATCH] Fix DrawRoundedRectangle assert with wxGTK 3.0
+
+Don't draw if w=0.
+
+Fixes #396.
+---
+ 

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

2017-07-02 Thread Balló György
Date: Sunday, July 2, 2017 @ 16:31:56
  Author: bgyorgy
Revision: 242073

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

Added:
  poedit/repos/community-i686/PKGBUILD
(from rev 242072, poedit/trunk/PKGBUILD)
  poedit/repos/community-i686/icu59.patch
(from rev 242072, poedit/trunk/icu59.patch)
  poedit/repos/community-x86_64/PKGBUILD
(from rev 242072, poedit/trunk/PKGBUILD)
  poedit/repos/community-x86_64/icu59.patch
(from rev 242072, poedit/trunk/icu59.patch)
Deleted:
  poedit/repos/community-i686/PKGBUILD
  poedit/repos/community-i686/icu59.patch
  poedit/repos/community-x86_64/PKGBUILD
  poedit/repos/community-x86_64/icu59.patch

--+
 /PKGBUILD|   78 +
 /icu59.patch |   22 +++
 community-i686/PKGBUILD  |   39 
 community-i686/icu59.patch   |   11 -
 community-x86_64/PKGBUILD|   39 
 community-x86_64/icu59.patch |   11 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-02 16:31:50 UTC (rev 242072)
+++ community-i686/PKGBUILD 2017-07-02 16:31:56 UTC (rev 242073)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Scarpino 
-# Contributor: Giovanni Scafora 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=poedit
-epoch=1
-pkgver=2.0.2
-pkgrel=1
-pkgdesc="Cross-platform gettext catalogs (.po files) editor"
-arch=('i686' 'x86_64')
-url="http://www.poedit.net/;
-license=('MIT')
-# poedit-2.0: https://github.com/vslavik/poedit/issues/366
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz
-icu59.patch)
-sha256sums=('b88bc222d4215344d0eb87dda19aafcc0b2465718c4b556015330beb96f7b402'
-'4d2fcbc1ce5a8d8bab878687337c1f038ed1a83b37652e0a41d7f5c2b26b27bc')
-
-prepare() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-patch -Np1 -i ../icu59.patch
-}
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make CPPFLAGS+=' -DUCHAR_TYPE=uint16_t'
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 242072, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-02 16:31:56 UTC (rev 242073)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+epoch=1
+pkgver=2.0.2
+pkgrel=2
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+# poedit-2.0: https://github.com/vslavik/poedit/issues/366
+depends=('gtkspell3' 'lucene++' 'wxgtk3')
+makedepends=('boost')
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz
+icu59.patch)
+sha256sums=('b88bc222d4215344d0eb87dda19aafcc0b2465718c4b556015330beb96f7b402'
+'4d2fcbc1ce5a8d8bab878687337c1f038ed1a83b37652e0a41d7f5c2b26b27bc')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -Np1 -i ../icu59.patch
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit 
--with-wx-config=/usr/bin/wx-config-gtk3
+make CPPFLAGS+=' -DUCHAR_TYPE=uint16_t'
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-i686/icu59.patch
===
--- community-i686/icu59.patch  2017-07-02 16:31:50 UTC (rev 242072)
+++ community-i686/icu59.patch  2017-07-02 16:31:56 UTC (rev 242073)
@@ -1,11 +0,0 @@
-diff -upr poedit-2.0.1.orig/src/unicode_helpers.cpp 
poedit-2.0.1/src/unicode_helpers.cpp
 poedit-2.0.1.orig/src/unicode_helpers.cpp  2017-04-26 10:55:31.807183266 
+0300
-+++ poedit-2.0.1/src/unicode_helpers.cpp   2017-04-26 11:02:47.373899526 
+0300
-@@ -25,6 +25,7 @@
- 
- #include "unicode_helpers.h"
- 
-+#include 
- #include "str_helpers.h"
- 
- #include 

Copied: 

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

2017-06-20 Thread Sergej Pupykin
Date: Tuesday, June 20, 2017 @ 10:05:05
  Author: spupykin
Revision: 238935

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

Added:
  poedit/repos/community-i686/PKGBUILD
(from rev 238934, poedit/trunk/PKGBUILD)
  poedit/repos/community-i686/icu59.patch
(from rev 238934, poedit/trunk/icu59.patch)
  poedit/repos/community-x86_64/PKGBUILD
(from rev 238934, poedit/trunk/PKGBUILD)
  poedit/repos/community-x86_64/icu59.patch
(from rev 238934, poedit/trunk/icu59.patch)
Deleted:
  poedit/repos/community-i686/PKGBUILD
  poedit/repos/community-i686/icu59.patch
  poedit/repos/community-x86_64/PKGBUILD
  poedit/repos/community-x86_64/icu59.patch

--+
 /PKGBUILD|   78 +
 /icu59.patch |   22 +++
 community-i686/PKGBUILD  |   39 
 community-i686/icu59.patch   |   11 -
 community-x86_64/PKGBUILD|   39 
 community-x86_64/icu59.patch |   11 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-20 10:04:47 UTC (rev 238934)
+++ community-i686/PKGBUILD 2017-06-20 10:05:05 UTC (rev 238935)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Scarpino 
-# Contributor: Giovanni Scafora 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=poedit
-epoch=1
-pkgver=2.0.1
-pkgrel=3
-pkgdesc="Cross-platform gettext catalogs (.po files) editor"
-arch=('i686' 'x86_64')
-url="http://www.poedit.net/;
-license=('MIT')
-# poedit-2.0: https://github.com/vslavik/poedit/issues/366
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz
-icu59.patch)
-sha256sums=('8766874175b2221ef670d89b32f0fe900cde3e27e5dcb2c1b6cf6d01e8d56ff3'
-'4d2fcbc1ce5a8d8bab878687337c1f038ed1a83b37652e0a41d7f5c2b26b27bc')
-
-prepare() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-patch -Np1 -i ../icu59.patch
-}
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make CPPFLAGS+=' -DUCHAR_TYPE=uint16_t'
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 238934, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-20 10:05:05 UTC (rev 238935)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+epoch=1
+pkgver=2.0.2
+pkgrel=1
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+# poedit-2.0: https://github.com/vslavik/poedit/issues/366
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz
+icu59.patch)
+sha256sums=('b88bc222d4215344d0eb87dda19aafcc0b2465718c4b556015330beb96f7b402'
+'4d2fcbc1ce5a8d8bab878687337c1f038ed1a83b37652e0a41d7f5c2b26b27bc')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -Np1 -i ../icu59.patch
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make CPPFLAGS+=' -DUCHAR_TYPE=uint16_t'
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-i686/icu59.patch
===
--- community-i686/icu59.patch  2017-06-20 10:04:47 UTC (rev 238934)
+++ community-i686/icu59.patch  2017-06-20 10:05:05 UTC (rev 238935)
@@ -1,11 +0,0 @@
-diff -upr poedit-2.0.1.orig/src/unicode_helpers.cpp 
poedit-2.0.1/src/unicode_helpers.cpp
 poedit-2.0.1.orig/src/unicode_helpers.cpp  2017-04-26 10:55:31.807183266 
+0300
-+++ poedit-2.0.1/src/unicode_helpers.cpp   2017-04-26 11:02:47.373899526 
+0300
-@@ -25,6 +25,7 @@
- 
- #include "unicode_helpers.h"
- 
-+#include 
- #include "str_helpers.h"
- 
- #include 

Copied: 

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

2016-03-31 Thread Sergej Pupykin
Date: Thursday, March 31, 2016 @ 13:25:54
  Author: spupykin
Revision: 169065

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-31 11:25:39 UTC (rev 169064)
+++ community-i686/PKGBUILD 2016-03-31 11:25:54 UTC (rev 169065)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Scarpino 
-# Contributor: Giovanni Scafora 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=poedit
-pkgver=1.8.7
-pkgrel=1
-pkgdesc="Cross-platform gettext catalogs (.po files) editor"
-arch=('i686' 'x86_64')
-url="http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('eb65bdacf0121f0d994ee50c0d1dc4b6')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 169064, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-31 11:25:54 UTC (rev 169065)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+pkgver=1.8.7.1
+pkgrel=1
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('9365961105c52c031330731d530861ac')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2016-03-31 11:25:39 UTC (rev 169064)
+++ community-i686/poedit.install   2016-03-31 11:25:54 UTC (rev 169065)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 169064, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2016-03-31 11:25:54 UTC (rev 169065)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {

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

2016-02-08 Thread Sergej Pupykin
Date: Monday, February 8, 2016 @ 13:16:49
  Author: spupykin
Revision: 160892

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-08 12:16:30 UTC (rev 160891)
+++ community-i686/PKGBUILD 2016-02-08 12:16:49 UTC (rev 160892)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Scarpino 
-# Contributor: Giovanni Scafora 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=poedit
-pkgver=1.8.6
-pkgrel=3
-pkgdesc="Cross-platform gettext catalogs (.po files) editor"
-arch=('i686' 'x86_64')
-url="http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('c493b759b5201b2679a42e25dac90287')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 160891, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-08 12:16:49 UTC (rev 160892)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+pkgver=1.8.7
+pkgrel=1
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('eb65bdacf0121f0d994ee50c0d1dc4b6')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2016-02-08 12:16:30 UTC (rev 160891)
+++ community-i686/poedit.install   2016-02-08 12:16:49 UTC (rev 160892)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 160891, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2016-02-08 12:16:49 UTC (rev 160892)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  

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

2015-11-20 Thread Sergej Pupykin
Date: Friday, November 20, 2015 @ 19:37:40
  Author: spupykin
Revision: 147235

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-20 18:36:48 UTC (rev 147234)
+++ community-i686/PKGBUILD 2015-11-20 18:37:40 UTC (rev 147235)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Scarpino 
-# Contributor: Giovanni Scafora 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=poedit
-pkgver=1.8.5
-pkgrel=3
-pkgdesc="Cross-platform gettext catalogs (.po files) editor"
-arch=('i686' 'x86_64')
-url="http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('572660b367013a2534e66eec078a809c')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 147234, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-20 18:37:40 UTC (rev 147235)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+pkgver=1.8.6
+pkgrel=1
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('c493b759b5201b2679a42e25dac90287')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2015-11-20 18:36:48 UTC (rev 147234)
+++ community-i686/poedit.install   2015-11-20 18:37:40 UTC (rev 147235)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 147234, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2015-11-20 18:37:40 UTC (rev 147235)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+ 

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

2015-10-01 Thread Sergej Pupykin
Date: Thursday, October 1, 2015 @ 16:27:35
  Author: spupykin
Revision: 142320

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-01 14:27:05 UTC (rev 142319)
+++ community-i686/PKGBUILD 2015-10-01 14:27:35 UTC (rev 142320)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Scarpino 
-# Contributor: Giovanni Scafora 
-# Contributor: Alexander Fehr 
-# Contributor: Daniel J Griffiths 
-
-pkgname=poedit
-pkgver=1.8.4
-pkgrel=1
-pkgdesc="Cross-platform gettext catalogs (.po files) editor"
-arch=('i686' 'x86_64')
-url="http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('c5d61b1c4faa19f6d4a7dbe73138df29')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 142319, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-01 14:27:35 UTC (rev 142320)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+pkgver=1.8.5
+pkgrel=1
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('i686' 'x86_64')
+url="http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('572660b367013a2534e66eec078a809c')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2015-10-01 14:27:05 UTC (rev 142319)
+++ community-i686/poedit.install   2015-10-01 14:27:35 UTC (rev 142320)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 142319, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2015-10-01 14:27:35 UTC (rev 142320)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+ 

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

2015-08-11 Thread Sergej Pupykin
Date: Tuesday, August 11, 2015 @ 14:59:11
  Author: spupykin
Revision: 138233

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-08-11 12:58:58 UTC (rev 138232)
+++ community-i686/PKGBUILD 2015-08-11 12:59:11 UTC (rev 138233)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.8.2
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('1ba553276f2e658e6652c152a68b5243')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 138232, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-08-11 12:59:11 UTC (rev 138233)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.8.4
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('c5d61b1c4faa19f6d4a7dbe73138df29')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2015-08-11 12:58:58 UTC (rev 138232)
+++ community-i686/poedit.install   2015-08-11 12:59:11 UTC (rev 138233)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 138232, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2015-08-11 12:59:11 UTC (rev 138233)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2015-07-01 Thread Sergej Pupykin
Date: Wednesday, July 1, 2015 @ 18:05:59
  Author: spupykin
Revision: 136209

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-01 16:05:43 UTC (rev 136208)
+++ community-i686/PKGBUILD 2015-07-01 16:05:59 UTC (rev 136209)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.8.1
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('65ebf2db400c509568d654eaac7bfa96')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 136208, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-01 16:05:59 UTC (rev 136209)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.8.2
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('1ba553276f2e658e6652c152a68b5243')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2015-07-01 16:05:43 UTC (rev 136208)
+++ community-i686/poedit.install   2015-07-01 16:05:59 UTC (rev 136209)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 136208, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2015-07-01 16:05:59 UTC (rev 136209)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2015-05-28 Thread Sergej Pupykin
Date: Thursday, May 28, 2015 @ 12:18:04
  Author: spupykin
Revision: 134267

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-28 10:17:48 UTC (rev 134266)
+++ community-i686/PKGBUILD 2015-05-28 10:18:04 UTC (rev 134267)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.7.5
-pkgrel=4
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('d95cd2a6a4fec6f5e92475172e97c81d')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 134266, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-28 10:18:04 UTC (rev 134267)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.8.1
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('65ebf2db400c509568d654eaac7bfa96')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2015-05-28 10:17:48 UTC (rev 134266)
+++ community-i686/poedit.install   2015-05-28 10:18:04 UTC (rev 134267)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 134266, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2015-05-28 10:18:04 UTC (rev 134267)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2015-04-28 Thread Evangelos Foutras
Date: Wednesday, April 29, 2015 @ 04:53:52
  Author: foutrelis
Revision: 132487

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-29 02:53:43 UTC (rev 132486)
+++ community-i686/PKGBUILD 2015-04-29 02:53:52 UTC (rev 132487)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.7.5
-pkgrel=3
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('d95cd2a6a4fec6f5e92475172e97c81d')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 132486, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-29 02:53:52 UTC (rev 132487)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.7.5
+pkgrel=4
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('d95cd2a6a4fec6f5e92475172e97c81d')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2015-04-29 02:53:43 UTC (rev 132486)
+++ community-i686/poedit.install   2015-04-29 02:53:52 UTC (rev 132487)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 132486, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2015-04-29 02:53:52 UTC (rev 132487)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2015-04-02 Thread Sergej Pupykin
Date: Thursday, April 2, 2015 @ 13:25:04
  Author: spupykin
Revision: 130530

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-02 11:24:52 UTC (rev 130529)
+++ community-i686/PKGBUILD 2015-04-02 11:25:04 UTC (rev 130530)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.7.4
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('733b8aec84e508e6bb6b06e1acdfe2b1')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 130529, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-02 11:25:04 UTC (rev 130530)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.7.5
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('d95cd2a6a4fec6f5e92475172e97c81d')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2015-04-02 11:24:52 UTC (rev 130529)
+++ community-i686/poedit.install   2015-04-02 11:25:04 UTC (rev 130530)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 130529, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2015-04-02 11:25:04 UTC (rev 130530)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2015-02-09 Thread Sergej Pupykin
Date: Monday, February 9, 2015 @ 11:11:01
  Author: spupykin
Revision: 127370

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-09 10:10:47 UTC (rev 127369)
+++ community-i686/PKGBUILD 2015-02-09 10:11:01 UTC (rev 127370)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.7.3
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('7d467aca720eff3e1e0feec9d2aa70b6')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 127369, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-09 10:11:01 UTC (rev 127370)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.7.4
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('733b8aec84e508e6bb6b06e1acdfe2b1')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2015-02-09 10:10:47 UTC (rev 127369)
+++ community-i686/poedit.install   2015-02-09 10:11:01 UTC (rev 127370)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 127369, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2015-02-09 10:11:01 UTC (rev 127370)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2015-01-12 Thread Sergej Pupykin
Date: Monday, January 12, 2015 @ 19:01:47
  Author: spupykin
Revision: 125844

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-12 18:01:32 UTC (rev 125843)
+++ community-i686/PKGBUILD 2015-01-12 18:01:47 UTC (rev 125844)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.7.1
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('52915cd751c926366cf6a08371caff57')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 125843, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-12 18:01:47 UTC (rev 125844)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.7.3
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('7d467aca720eff3e1e0feec9d2aa70b6')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2015-01-12 18:01:32 UTC (rev 125843)
+++ community-i686/poedit.install   2015-01-12 18:01:47 UTC (rev 125844)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 125843, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2015-01-12 18:01:47 UTC (rev 125844)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2014-12-15 Thread Sergej Pupykin
Date: Monday, December 15, 2014 @ 18:17:07
  Author: spupykin
Revision: 123914

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-15 17:16:54 UTC (rev 123913)
+++ community-i686/PKGBUILD 2014-12-15 17:17:07 UTC (rev 123914)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.11
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('9ffd93844e50f65c89c2a8d58c2ddcca')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 123913, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-15 17:17:07 UTC (rev 123914)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.7.1
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('52915cd751c926366cf6a08371caff57')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2014-12-15 17:16:54 UTC (rev 123913)
+++ community-i686/poedit.install   2014-12-15 17:17:07 UTC (rev 123914)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 123913, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2014-12-15 17:17:07 UTC (rev 123914)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2014-12-02 Thread Sergej Pupykin
Date: Tuesday, December 2, 2014 @ 15:24:33
  Author: spupykin
Revision: 123360

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-02 14:24:17 UTC (rev 123359)
+++ community-i686/PKGBUILD 2014-12-02 14:24:33 UTC (rev 123360)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.10
-pkgrel=2
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('85f1e31531659e73eb2e5b4bdf029dce')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 123359, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-02 14:24:33 UTC (rev 123360)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.11
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('9ffd93844e50f65c89c2a8d58c2ddcca')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2014-12-02 14:24:17 UTC (rev 123359)
+++ community-i686/poedit.install   2014-12-02 14:24:33 UTC (rev 123360)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 123359, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2014-12-02 14:24:33 UTC (rev 123360)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2014-10-21 Thread Sergej Pupykin
Date: Tuesday, October 21, 2014 @ 11:39:42
  Author: spupykin
Revision: 121134

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-21 09:39:30 UTC (rev 121133)
+++ community-i686/PKGBUILD 2014-10-21 09:39:42 UTC (rev 121134)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.9
-pkgrel=4
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('a7820969fe5e182480549034bc0035ac')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 121133, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-21 09:39:42 UTC (rev 121134)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.10
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('85f1e31531659e73eb2e5b4bdf029dce')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2014-10-21 09:39:30 UTC (rev 121133)
+++ community-i686/poedit.install   2014-10-21 09:39:42 UTC (rev 121134)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 121133, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2014-10-21 09:39:42 UTC (rev 121134)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2014-09-29 Thread Sergej Pupykin
Date: Monday, September 29, 2014 @ 19:35:11
  Author: spupykin
Revision: 119804

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-29 17:34:58 UTC (rev 119803)
+++ community-i686/PKGBUILD 2014-09-29 17:35:11 UTC (rev 119804)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.9
-pkgrel=2
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('a7820969fe5e182480549034bc0035ac')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 119803, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-29 17:35:11 UTC (rev 119804)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.9
+pkgrel=3
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('a7820969fe5e182480549034bc0035ac')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2014-09-29 17:34:58 UTC (rev 119803)
+++ community-i686/poedit.install   2014-09-29 17:35:11 UTC (rev 119804)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 119803, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2014-09-29 17:35:11 UTC (rev 119804)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2014-09-05 Thread Felix Yan
Date: Friday, September 5, 2014 @ 15:59:51
  Author: fyan
Revision: 118402

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

Added:
  poedit/repos/community-i686/PKGBUILD
(from rev 118386, poedit/trunk/PKGBUILD)
  poedit/repos/community-i686/poedit.install
(from rev 118388, poedit/trunk/poedit.install)
  poedit/repos/community-x86_64/PKGBUILD
(from rev 118395, poedit/trunk/PKGBUILD)
  poedit/repos/community-x86_64/poedit.install
(from rev 118396, poedit/trunk/poedit.install)
Deleted:
  poedit/repos/community-i686/PKGBUILD
  poedit/repos/community-i686/poedit.install
  poedit/repos/community-x86_64/PKGBUILD
  poedit/repos/community-x86_64/poedit.install

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-05 13:59:50 UTC (rev 118401)
+++ community-i686/PKGBUILD 2014-09-05 13:59:51 UTC (rev 118402)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.7
-pkgrel=2
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('f94ec908d13000c87bf22f7448ecd032')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 118386, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-05 13:59:51 UTC (rev 118402)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.9
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('a7820969fe5e182480549034bc0035ac')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2014-09-05 13:59:50 UTC (rev 118401)
+++ community-i686/poedit.install   2014-09-05 13:59:51 UTC (rev 118402)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 118388, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2014-09-05 13:59:51 UTC (rev 118402)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2014-09-05 Thread Felix Yan
Date: Friday, September 5, 2014 @ 16:09:28
  Author: fyan
Revision: 118411

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

Added:
  poedit/repos/community-testing-i686/PKGBUILD
(from rev 118410, poedit/trunk/PKGBUILD)
  poedit/repos/community-testing-i686/poedit.install
(from rev 118410, poedit/trunk/poedit.install)
  poedit/repos/community-testing-x86_64/PKGBUILD
(from rev 118410, poedit/trunk/PKGBUILD)
  poedit/repos/community-testing-x86_64/poedit.install
(from rev 118410, poedit/trunk/poedit.install)
Deleted:
  poedit/repos/community-testing-i686/PKGBUILD
  poedit/repos/community-testing-i686/poedit.install
  poedit/repos/community-testing-x86_64/PKGBUILD
  poedit/repos/community-testing-x86_64/poedit.install

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2014-09-05 14:07:50 UTC (rev 118410)
+++ community-testing-i686/PKGBUILD 2014-09-05 14:09:28 UTC (rev 118411)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.7
-pkgrel=3
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('f94ec908d13000c87bf22f7448ecd032')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-testing-i686/PKGBUILD (from rev 118410, 
poedit/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-09-05 14:09:28 UTC (rev 118411)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.9
+pkgrel=2
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('a7820969fe5e182480549034bc0035ac')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-testing-i686/poedit.install
===
--- community-testing-i686/poedit.install   2014-09-05 14:07:50 UTC (rev 
118410)
+++ community-testing-i686/poedit.install   2014-09-05 14:09:28 UTC (rev 
118411)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-testing-i686/poedit.install (from rev 118410, 
poedit/trunk/poedit.install)
===
--- community-testing-i686/poedit.install   (rev 0)
+++ community-testing-i686/poedit.install   2014-09-05 

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

2014-08-09 Thread Balló György
Date: Saturday, August 9, 2014 @ 12:19:12
  Author: bgyorgy
Revision: 117067

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

Added:
  poedit/repos/community-staging-i686/PKGBUILD
(from rev 117066, poedit/trunk/PKGBUILD)
  poedit/repos/community-staging-i686/poedit.install
(from rev 117066, poedit/trunk/poedit.install)
  poedit/repos/community-staging-x86_64/PKGBUILD
(from rev 117066, poedit/trunk/PKGBUILD)
  poedit/repos/community-staging-x86_64/poedit.install
(from rev 117066, poedit/trunk/poedit.install)
Deleted:
  poedit/repos/community-staging-i686/PKGBUILD
  poedit/repos/community-staging-i686/poedit.install
  poedit/repos/community-staging-x86_64/PKGBUILD
  poedit/repos/community-staging-x86_64/poedit.install

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

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2014-08-09 10:19:05 UTC (rev 117066)
+++ community-staging-i686/PKGBUILD 2014-08-09 10:19:12 UTC (rev 117067)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.7
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell3')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
-md5sums=('f94ec908d13000c87bf22f7448ecd032')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-staging-i686/PKGBUILD (from rev 117066, 
poedit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-08-09 10:19:12 UTC (rev 117067)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.7
+pkgrel=2
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('f94ec908d13000c87bf22f7448ecd032')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-staging-i686/poedit.install
===
--- community-staging-i686/poedit.install   2014-08-09 10:19:05 UTC (rev 
117066)
+++ community-staging-i686/poedit.install   2014-08-09 10:19:12 UTC (rev 
117067)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-staging-i686/poedit.install (from rev 117066, 
poedit/trunk/poedit.install)
===
--- community-staging-i686/poedit.install   (rev 0)
+++ community-staging-i686/poedit.install   2014-08-09 

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

2014-06-11 Thread Sergej Pupykin
Date: Wednesday, June 11, 2014 @ 15:18:17
  Author: spupykin
Revision: 113012

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-06-11 13:18:04 UTC (rev 113011)
+++ community-i686/PKGBUILD 2014-06-11 13:18:17 UTC (rev 113012)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.4
-pkgrel=5
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell3')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}b.tar.gz)
-md5sums=('bd494435b42121b5262b386d95ca66fd')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 113011, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-06-11 13:18:17 UTC (rev 113012)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.5
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell3')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+md5sums=('1b75c10d6f9fbf4c6df6c8954976e172')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2014-06-11 13:18:04 UTC (rev 113011)
+++ community-i686/poedit.install   2014-06-11 13:18:17 UTC (rev 113012)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 113011, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2014-06-11 13:18:17 UTC (rev 113012)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2014-06-03 Thread Sergej Pupykin
Date: Tuesday, June 3, 2014 @ 12:15:21
  Author: spupykin
Revision: 112543

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-06-03 10:15:03 UTC (rev 112542)
+++ community-i686/PKGBUILD 2014-06-03 10:15:21 UTC (rev 112543)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.4
-pkgrel=4
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell')
-makedepends=('boost' 'libsm')
-install=poedit.install
-#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
-source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}b.tar.gz)
-md5sums=('bd494435b42121b5262b386d95ca66fd')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 112542, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-06-03 10:15:21 UTC (rev 112543)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.4
+pkgrel=5
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++' 'gtkspell3')
+makedepends=('boost' 'libsm')
+install=poedit.install
+#source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+#source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-$pkgver.tar.gz
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}b.tar.gz)
+md5sums=('bd494435b42121b5262b386d95ca66fd')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2014-06-03 10:15:03 UTC (rev 112542)
+++ community-i686/poedit.install   2014-06-03 10:15:21 UTC (rev 112543)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 112542, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2014-06-03 10:15:21 UTC (rev 112543)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

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

2014-02-10 Thread Sergej Pupykin
Date: Monday, February 10, 2014 @ 13:39:42
  Author: spupykin
Revision: 105570

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

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

-+
 /PKGBUILD   |   72 ++
 /poedit.install |   24 
 community-i686/PKGBUILD |   35 --
 community-i686/poedit.install   |   12 --
 community-x86_64/PKGBUILD   |   35 --
 community-x86_64/poedit.install |   12 --
 6 files changed, 96 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-02-10 12:39:30 UTC (rev 105569)
+++ community-i686/PKGBUILD 2014-02-10 12:39:42 UTC (rev 105570)
@@ -1,35 +0,0 @@
-# $Id$
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.6.3
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('MIT')
-depends=('wxgtk' 'desktop-file-utils' 'lucene++')
-makedepends=('boost' 'libsm')
-install=poedit.install
-source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
-md5sums=('f58be3cee666d3c586a85c26abba7816')
-
-prepare() {
-cd ${srcdir}/${pkgname}-${pkgver}
-sed -i 's|Wx/filename.h|wx/filename.h|' src/tm/transmem.cpp
-}
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr --libexecdir=/usr/lib/poedit
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 105569, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-02-10 12:39:42 UTC (rev 105570)
@@ -0,0 +1,36 @@
+# $Id$
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.6.3
+pkgrel=2
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('MIT')
+depends=('wxgtk' 'desktop-file-utils' 'lucene++')
+makedepends=('boost' 'libsm')
+install=poedit.install
+source=(http://www.poedit.net/dl/poedit-$pkgver.tar.gz)
+md5sums=('f58be3cee666d3c586a85c26abba7816')
+
+prepare() {
+cd ${srcdir}/${pkgname}-${pkgver}
+sed -i 's|Wx/filename.h|wx/filename.h|' src/tm/transmem.cpp
+sed -i 's|libexec/poedit|lib/poedit/poedit|g' src/tm/tm_migrate.cpp
+}
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure --prefix=/usr --libexecdir=/usr/lib/poedit
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2014-02-10 12:39:30 UTC (rev 105569)
+++ community-i686/poedit.install   2014-02-10 12:39:42 UTC (rev 105570)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 105569, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2014-02-10 12:39:42 UTC (rev 105570)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-02-10 12:39:30 UTC (rev 105569)
+++ 

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

2013-08-21 Thread Sergej Pupykin
Date: Wednesday, August 21, 2013 @ 14:27:48
  Author: spupykin
Revision: 96184

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

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

-+
 /PKGBUILD   |   62 ++
 /poedit.install |   24 ++
 community-i686/PKGBUILD |   31 ---
 community-i686/poedit.install   |   12 ---
 community-x86_64/PKGBUILD   |   31 ---
 community-x86_64/poedit.install |   12 ---
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-08-21 12:27:34 UTC (rev 96183)
+++ community-i686/PKGBUILD 2013-08-21 12:27:48 UTC (rev 96184)
@@ -1,31 +0,0 @@
-# $Id$
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.5.7
-pkgrel=3
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('custom')
-depends=('wxgtk2.9' 'gtkspell' 'db' 'hicolor-icon-theme' 'gettext')
-makedepends=('pkgconfig' 'boost')
-install=poedit.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('f5b53ec66a606f088b0aa388595ea5f9')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-export WX_CONFIG_PATH=/usr/bin/wx-config-2.9
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 96183, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-08-21 12:27:48 UTC (rev 96184)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.5.7
+pkgrel=4
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('custom')
+depends=('wxgtk2.9' 'gtkspell' 'db' 'hicolor-icon-theme' 'gettext')
+makedepends=('pkgconfig' 'boost')
+install=poedit.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('f5b53ec66a606f088b0aa388595ea5f9')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+export WX_CONFIG_PATH=/usr/bin/wx-config-2.9
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2013-08-21 12:27:34 UTC (rev 96183)
+++ community-i686/poedit.install   2013-08-21 12:27:48 UTC (rev 96184)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 96183, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2013-08-21 12:27:48 UTC (rev 96184)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-08-21 12:27:34 UTC (rev 96183)
+++ community-x86_64/PKGBUILD   2013-08-21 12:27:48 UTC (rev 96184)
@@ -1,31 +0,0 @@
-# $Id$
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# 

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

2013-07-22 Thread Sergej Pupykin
Date: Monday, July 22, 2013 @ 13:20:50
  Author: spupykin
Revision: 94359

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

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

-+
 /PKGBUILD   |   62 ++
 /poedit.install |   24 ++
 community-i686/PKGBUILD |   31 ---
 community-i686/poedit.install   |   12 ---
 community-x86_64/PKGBUILD   |   31 ---
 community-x86_64/poedit.install |   12 ---
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-22 11:20:35 UTC (rev 94358)
+++ community-i686/PKGBUILD 2013-07-22 11:20:50 UTC (rev 94359)
@@ -1,31 +0,0 @@
-# $Id$
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.5.5
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('custom')
-depends=('wxgtk2.9' 'gtkspell' 'db=5.1' 'hicolor-icon-theme' 'gettext')
-makedepends=('pkgconfig' 'boost')
-install=poedit.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('da86cb73cee9d006a42f9574811d13ab')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-export WX_CONFIG_PATH=/usr/bin/wx-config-2.9
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 94358, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-22 11:20:50 UTC (rev 94359)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.5.7
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('custom')
+depends=('wxgtk2.9' 'gtkspell' 'db=5.1' 'hicolor-icon-theme' 'gettext')
+makedepends=('pkgconfig' 'boost')
+install=poedit.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('f5b53ec66a606f088b0aa388595ea5f9')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+export WX_CONFIG_PATH=/usr/bin/wx-config-2.9
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2013-07-22 11:20:35 UTC (rev 94358)
+++ community-i686/poedit.install   2013-07-22 11:20:50 UTC (rev 94359)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 94358, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2013-07-22 11:20:50 UTC (rev 94359)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-07-22 11:20:35 UTC (rev 94358)
+++ community-x86_64/PKGBUILD   2013-07-22 11:20:50 UTC (rev 94359)
@@ -1,31 +0,0 @@
-# $Id$
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# 

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

2013-04-03 Thread Sergej Pupykin
Date: Wednesday, April 3, 2013 @ 12:14:55
  Author: spupykin
Revision: 87572

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

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

-+
 /PKGBUILD   |   62 ++
 /poedit.install |   24 ++
 community-i686/PKGBUILD |   30 --
 community-i686/poedit.install   |   12 ---
 community-x86_64/PKGBUILD   |   30 --
 community-x86_64/poedit.install |   12 ---
 6 files changed, 86 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-03 10:14:36 UTC (rev 87571)
+++ community-i686/PKGBUILD 2013-04-03 10:14:55 UTC (rev 87572)
@@ -1,30 +0,0 @@
-# $Id$
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr pizzap...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=poedit
-pkgver=1.5.4
-pkgrel=1
-pkgdesc=Cross-platform gettext catalogs (.po files) editor
-arch=('i686' 'x86_64')
-url=http://www.poedit.net/;
-license=('custom')
-depends=('wxgtk=2.8.11' 'gtkspell' 'db=5.1' 'hicolor-icon-theme' 'gettext')
-makedepends=('pkgconfig' 'boost')
-install=poedit.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('708991f73368f2ea7a24134058d2caf2')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: poedit/repos/community-i686/PKGBUILD (from rev 87571, 
poedit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-03 10:14:55 UTC (rev 87572)
@@ -0,0 +1,31 @@
+# $Id$
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Alexander Fehr pizzap...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=poedit
+pkgver=1.5.5
+pkgrel=1
+pkgdesc=Cross-platform gettext catalogs (.po files) editor
+arch=('i686' 'x86_64')
+url=http://www.poedit.net/;
+license=('custom')
+depends=('wxgtk2.9' 'gtkspell' 'db=5.1' 'hicolor-icon-theme' 'gettext')
+makedepends=('pkgconfig' 'boost')
+install=poedit.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('da86cb73cee9d006a42f9574811d13ab')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+export WX_CONFIG_PATH=/usr/bin/wx-config-2.9
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-i686/poedit.install
===
--- community-i686/poedit.install   2013-04-03 10:14:36 UTC (rev 87571)
+++ community-i686/poedit.install   2013-04-03 10:14:55 UTC (rev 87572)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: poedit/repos/community-i686/poedit.install (from rev 87571, 
poedit/trunk/poedit.install)
===
--- community-i686/poedit.install   (rev 0)
+++ community-i686/poedit.install   2013-04-03 10:14:55 UTC (rev 87572)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-04-03 10:14:36 UTC (rev 87571)
+++ community-x86_64/PKGBUILD   2013-04-03 10:14:55 UTC (rev 87572)
@@ -1,30 +0,0 @@
-# $Id$
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Alexander Fehr