[arch-commits] Commit in gourmet/repos/community-any (6 files)

Balló György bgyorgy at nymeria.archlinux.org
Wed Mar 12 00:25:56 UTC 2014


    Date: Wednesday, March 12, 2014 @ 01:25:56
  Author: bgyorgy
Revision: 107057

archrelease: copy trunk to community-any

Added:
  gourmet/repos/community-any/.contrib
    (from rev 107056, gourmet/trunk/.contrib)
  gourmet/repos/community-any/PKGBUILD
    (from rev 107056, gourmet/trunk/PKGBUILD)
  gourmet/repos/community-any/gourmet.install
    (from rev 107056, gourmet/trunk/gourmet.install)
Deleted:
  gourmet/repos/community-any/.contrib
  gourmet/repos/community-any/PKGBUILD
  gourmet/repos/community-any/gourmet.install

-----------------+
 .contrib        |    6 ++--
 PKGBUILD        |   80 +++++++++++++++++++++++++++---------------------------
 gourmet.install |   22 +++++++-------
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: .contrib
===================================================================
--- .contrib	2014-03-12 00:25:47 UTC (rev 107056)
+++ .contrib	2014-03-12 00:25:56 UTC (rev 107057)
@@ -1,3 +0,0 @@
-# Contributor: Corrado Primier <bardo at aur.archlinux.org>
-# Contributor: Eric Belanger <belanger at astro.umontreal.ca>
-# Contributor: Andrew Conkling <andrewski at fr.st>

Copied: gourmet/repos/community-any/.contrib (from rev 107056, gourmet/trunk/.contrib)
===================================================================
--- .contrib	                        (rev 0)
+++ .contrib	2014-03-12 00:25:56 UTC (rev 107057)
@@ -0,0 +1,3 @@
+# Contributor: Corrado Primier <bardo at aur.archlinux.org>
+# Contributor: Eric Belanger <belanger at astro.umontreal.ca>
+# Contributor: Andrew Conkling <andrewski at fr.st>

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2014-03-12 00:25:47 UTC (rev 107056)
+++ PKGBUILD	2014-03-12 00:25:56 UTC (rev 107057)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Ray Rashif <schiv at archlinux.org>
-# Contributor: see .contrib
-
-pkgname=gourmet
-pkgver=0.16.1
-pkgrel=1
-pkgdesc="A simple but powerful recipe-managing application"
-arch=('any')
-url="http://thinkle.github.io/gourmet/"
-license=('GPL')
-depends=('pygtk' 'python2-pillow' 'python2-sqlalchemy' 'hicolor-icon-theme')
-makedepends=('python2-distutils-extra')
-optdepends=('gstreamer0.10-python: play timer sounds'
-            'ipython2: Python Shell plugin'
-            'pyrtf: RTF support'
-            'python2-beautifulsoup3: Webpage import plugin'
-            'python2-gtkspell: Spell Checking plugin'
-            'python2-poppler: Printing and PDF Export plugin'
-            'python2-reportlab: Printing and PDF Export plugin')
-install=$pkgname.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/thinkle/$pkgname/archive/$pkgver.tar.gz")
-md5sums=('322814a7394d6bace7e0ef887efbe0f8')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # python2 fix
-  for file in $(find . -name '*.py' -print); do
-    sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $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" --optimize=1
-}

Copied: gourmet/repos/community-any/PKGBUILD (from rev 107056, gourmet/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2014-03-12 00:25:56 UTC (rev 107057)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Ray Rashif <schiv at archlinux.org>
+
+pkgname=gourmet
+pkgver=0.17.0
+pkgrel=1
+pkgdesc="A simple but powerful recipe-managing application"
+arch=('any')
+url="http://thinkle.github.io/gourmet/"
+license=('GPL')
+depends=('pygtk' 'python2-pillow' 'python2-sqlalchemy' 'hicolor-icon-theme')
+makedepends=('python2-distutils-extra')
+optdepends=('gstreamer0.10-python: play timer sounds'
+            'ipython2: Python Shell plugin'
+            'pyrtf: RTF support'
+            'python2-beautifulsoup3: Webpage import plugin'
+            'python2-gtkspell: Spell Checking plugin'
+            'python2-poppler: Printing and PDF Export plugin'
+            'python2-reportlab: Printing and PDF Export plugin')
+install=$pkgname.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/thinkle/$pkgname/archive/$pkgver.tar.gz")
+md5sums=('94755dfd6b560cd77aa3c1bcdeb73d8f')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # python2 fix
+  find . -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  python2 setup.py build
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}

Deleted: gourmet.install
===================================================================
--- gourmet.install	2014-03-12 00:25:47 UTC (rev 107056)
+++ gourmet.install	2014-03-12 00:25:56 UTC (rev 107057)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: gourmet/repos/community-any/gourmet.install (from rev 107056, gourmet/trunk/gourmet.install)
===================================================================
--- gourmet.install	                        (rev 0)
+++ gourmet.install	2014-03-12 00:25:56 UTC (rev 107057)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}




More information about the arch-commits mailing list