[arch-commits] Commit in ibus-anthy/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-11-16 Thread Evangelos Foutras via arch-commits
Date: Saturday, November 16, 2019 @ 17:42:52
  Author: foutrelis
Revision: 529662

archrelease: copy trunk to community-x86_64

Added:
  ibus-anthy/repos/community-x86_64/PKGBUILD
(from rev 529661, ibus-anthy/trunk/PKGBUILD)
Deleted:
  ibus-anthy/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 37 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-16 17:42:48 UTC (rev 529661)
+++ PKGBUILD2019-11-16 17:42:52 UTC (rev 529662)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Rainy 
-# Contributor: Lee.MaRS 
-# Contributor: Daniel J Griffiths 
-
-pkgname=ibus-anthy
-pkgver=1.5.11
-pkgrel=2
-pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
-arch=('x86_64')
-license=('LGPL')
-url='http://ibus.googlecode.com'
-depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
-makedepends=('intltool' 'gobject-introspection')
-source=("https://github.com/ibus/ibus-anthy/releases/download/$pkgver/ibus-anthy-$pkgver.tar.gz;)
-sha512sums=('2ac85bf4ddba56e3f84c3732082b3b63a07175ea712aad2865de4f87b8c0967da303ee1edccbed0890095e8ddab10e58307a47b72ee11b51de3927fdb9e72418')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --libexec=/usr/lib/ibus
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-

Copied: ibus-anthy/repos/community-x86_64/PKGBUILD (from rev 529661, 
ibus-anthy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-11-16 17:42:52 UTC (rev 529662)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Contributor: Rainy 
+# Contributor: Lee.MaRS 
+# Contributor: Daniel J Griffiths 
+
+pkgname=ibus-anthy
+pkgver=1.5.11
+pkgrel=3
+pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
+arch=('x86_64')
+license=('LGPL')
+url='http://ibus.googlecode.com'
+depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
+makedepends=('intltool' 'gobject-introspection')
+source=("https://github.com/ibus/ibus-anthy/releases/download/$pkgver/ibus-anthy-$pkgver.tar.gz;)
+sha512sums=('2ac85bf4ddba56e3f84c3732082b3b63a07175ea712aad2865de4f87b8c0967da303ee1edccbed0890095e8ddab10e58307a47b72ee11b51de3927fdb9e72418')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Remove bad config file found in the source tarball so it gets regenerated
+  # https://bugs.archlinux.org/task/64520
+  rm {engine,setup}/python3/_config.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in ibus-anthy/repos/community-x86_64 (PKGBUILD PKGBUILD)

2019-05-15 Thread Felix Yan via arch-commits
Date: Wednesday, May 15, 2019 @ 08:53:57
  Author: felixonmars
Revision: 467309

archrelease: copy trunk to community-x86_64

Added:
  ibus-anthy/repos/community-x86_64/PKGBUILD
(from rev 467308, ibus-anthy/trunk/PKGBUILD)
Deleted:
  ibus-anthy/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   59 +--
 1 file changed, 29 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-15 08:53:45 UTC (rev 467308)
+++ PKGBUILD2019-05-15 08:53:57 UTC (rev 467309)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Rainy 
-# Contributor: Lee.MaRS 
-# Contributor: Daniel J Griffiths 
-
-pkgname=ibus-anthy
-pkgver=1.5.10
-pkgrel=2
-pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
-arch=('x86_64')
-license=('LGPL')
-url='http://ibus.googlecode.com'
-depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
-makedepends=('intltool' 'gobject-introspection')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ibus/ibus-anthy/archive/$pkgver.tar.gz;)
-sha512sums=('37a9b86ebe32ea639637880fffb29a86b971534e2faa668b2f88df66568bc99c58685481e1f7ae1f05fcf85d1816e3ef3e5fbc065207ac4188e0edcae8eb4925')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --libexec=/usr/lib/ibus
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-

Copied: ibus-anthy/repos/community-x86_64/PKGBUILD (from rev 467308, 
ibus-anthy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-15 08:53:57 UTC (rev 467309)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+# Contributor: Rainy 
+# Contributor: Lee.MaRS 
+# Contributor: Daniel J Griffiths 
+
+pkgname=ibus-anthy
+pkgver=1.5.11
+pkgrel=1
+pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
+arch=('x86_64')
+license=('LGPL')
+url='http://ibus.googlecode.com'
+depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
+makedepends=('intltool' 'gobject-introspection')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ibus/ibus-anthy/archive/$pkgver.tar.gz;)
+sha512sums=('ffdcdecb7c61afe1d52352935144f8b0af7fc0e22efce7b91b60c6c2061bc998362336a41c246887f604126e6bba2b215dbec771636926a9902ec5f761b918b9')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in ibus-anthy/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-08-30 Thread Felix Yan via arch-commits
Date: Thursday, August 30, 2018 @ 16:21:03
  Author: felixonmars
Revision: 375507

archrelease: copy trunk to community-x86_64

Added:
  ibus-anthy/repos/community-x86_64/PKGBUILD
(from rev 375506, ibus-anthy/trunk/PKGBUILD)
Deleted:
  ibus-anthy/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-30 16:20:47 UTC (rev 375506)
+++ PKGBUILD2018-08-30 16:21:03 UTC (rev 375507)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Rainy 
-# Contributor: Lee.MaRS 
-# Contributor: Daniel J Griffiths 
-
-pkgname=ibus-anthy
-pkgver=1.5.10
-pkgrel=1
-pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
-arch=('x86_64')
-license=('LGPL')
-url='http://ibus.googlecode.com'
-depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
-makedepends=('intltool' 'gobject-introspection')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ibus/ibus-anthy/archive/$pkgver.tar.gz;)
-sha512sums=('37a9b86ebe32ea639637880fffb29a86b971534e2faa668b2f88df66568bc99c58685481e1f7ae1f05fcf85d1816e3ef3e5fbc065207ac4188e0edcae8eb4925')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --libexec=/usr/lib/ibus
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-

Copied: ibus-anthy/repos/community-x86_64/PKGBUILD (from rev 375506, 
ibus-anthy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-30 16:21:03 UTC (rev 375507)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Rainy 
+# Contributor: Lee.MaRS 
+# Contributor: Daniel J Griffiths 
+
+pkgname=ibus-anthy
+pkgver=1.5.10
+pkgrel=2
+pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
+arch=('x86_64')
+license=('LGPL')
+url='http://ibus.googlecode.com'
+depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
+makedepends=('intltool' 'gobject-introspection')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ibus/ibus-anthy/archive/$pkgver.tar.gz;)
+sha512sums=('37a9b86ebe32ea639637880fffb29a86b971534e2faa668b2f88df66568bc99c58685481e1f7ae1f05fcf85d1816e3ef3e5fbc065207ac4188e0edcae8eb4925')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in ibus-anthy/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-04-10 Thread Felix Yan via arch-commits
Date: Wednesday, April 11, 2018 @ 01:17:13
  Author: felixonmars
Revision: 315691

archrelease: copy trunk to community-x86_64

Added:
  ibus-anthy/repos/community-x86_64/PKGBUILD
(from rev 315690, ibus-anthy/trunk/PKGBUILD)
Deleted:
  ibus-anthy/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-11 01:16:51 UTC (rev 315690)
+++ PKGBUILD2018-04-11 01:17:13 UTC (rev 315691)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Rainy 
-# Contributor: Lee.MaRS 
-# Contributor: Daniel J Griffiths 
-
-pkgname=ibus-anthy
-pkgver=1.5.9
-pkgrel=1
-pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
-arch=('i686' 'x86_64')
-license=('LGPL')
-url='http://ibus.googlecode.com'
-depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
-makedepends=('intltool' 'git' 'gobject-introspection')
-source=("git+https://github.com/ibus/ibus-anthy.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-  cd $pkgname
-
-  ./autogen.sh --prefix=/usr --libexec=/usr/lib/ibus
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir/" install
-}
-

Copied: ibus-anthy/repos/community-x86_64/PKGBUILD (from rev 315690, 
ibus-anthy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-11 01:17:13 UTC (rev 315691)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Rainy 
+# Contributor: Lee.MaRS 
+# Contributor: Daniel J Griffiths 
+
+pkgname=ibus-anthy
+pkgver=1.5.10
+pkgrel=1
+pkgdesc='Japanese input method Anthy IMEngine for IBus Framework'
+arch=('x86_64')
+license=('LGPL')
+url='http://ibus.googlecode.com'
+depends=('ibus' 'anthy' 'python' 'gtk-update-icon-cache' 'python-gobject')
+makedepends=('intltool' 'gobject-introspection')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ibus/ibus-anthy/archive/$pkgver.tar.gz;)
+sha512sums=('37a9b86ebe32ea639637880fffb29a86b971534e2faa668b2f88df66568bc99c58685481e1f7ae1f05fcf85d1816e3ef3e5fbc065207ac4188e0edcae8eb4925')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+