summaryrefslogtreecommitdiff
path: root/community/kiwi
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/kiwi
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/kiwi')
-rw-r--r--community/kiwi/ChangeLog36
-rw-r--r--community/kiwi/PKGBUILD31
2 files changed, 67 insertions, 0 deletions
diff --git a/community/kiwi/ChangeLog b/community/kiwi/ChangeLog
new file mode 100644
index 000000000..0574c29ff
--- /dev/null
+++ b/community/kiwi/ChangeLog
@@ -0,0 +1,36 @@
+2009-04-17 Brad Fanella <bradfanella@archlinux.us>
+
+ * Updated for i686 and x86_64: Python fixes
+
+2009-04-17 Douglas Soares de Andrade <douglas@archlinux.org>
+
+ * Updated for i686: 1.9.25
+
+2009-02-06 Douglas Soares de Andrade <douglas@archlinux.org>
+
+ * Updated for i686: 1.9.24
+
+2008-11-04 Douglas Soares de Andrade <douglas@archlinux.org>
+
+ * Updated for python 2.6
+
+2008-06-25 Mateusz Herych <heniekk@gmail.com>
+
+ * Updated for x86_64 - 1.9.22
+
+2008-06-25 Douglas Soares de Andrade <dsa@aur.archlinux.org>
+
+ * Updated for i686 - 1.9.22
+
+2008-06-02 Douglas Soares de Andrade <dsa@aur.archlinux.org>
+
+ * Updated for i686 - 1.9.21
+
+2008-02-17 Douglas Soares de Andrade <dsa@aur.archlinux.org>
+
+ * Updated to newer version - 1.9.20
+
+2007-12-19 Douglas Soares de Andrade <dsa@aur.archlinux.org>
+
+ * Updated to newer version - 1.9.19
+
diff --git a/community/kiwi/PKGBUILD b/community/kiwi/PKGBUILD
new file mode 100644
index 000000000..bd02fe205
--- /dev/null
+++ b/community/kiwi/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 26968 2010-09-16 03:55:06Z bfanella $
+# Maintainer: Brad Fanella <bradfanella@archlinux.us>
+# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
+# Contributor: William Rea <sillywilly@gmail.com>
+
+pkgname=kiwi
+pkgver=1.9.26
+pkgrel=3
+pkgdesc="A set of classes and wrappers for PyGTK"
+arch=('i686' 'x86_64')
+url="http://www.async.com.br/projects/kiwi"
+license=("LGPL")
+depends=('pygtk')
+makedepends=('gettext')
+source=(http://download.gnome.org/sources/$pkgname/1.9/$pkgname-$pkgver.tar.bz2)
+md5sums=('43c2aab9acf8d95321ee1ccec2c5e4e4')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+
+ # python2 fix
+ for file in bin/{kiwi-i18n,kiwi-ui-test} setup.py; do
+ echo "Applying python2 fix for ${file}"
+ sed -i 's_/usr/bin/env python_/usr/bin/env python2_' ${file}
+ done
+
+}
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ python2 setup.py install --root=$pkgdir
+}