Date: Wednesday, January 9, 2019 @ 23:53:56
  Author: alad
Revision: 421337

import python-kitchen

Added:
  python-kitchen/
  python-kitchen/repos/
  python-kitchen/trunk/
  python-kitchen/trunk/PKGBUILD

----------+
 PKGBUILD |   24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

Added: python-kitchen/trunk/PKGBUILD
===================================================================
--- python-kitchen/trunk/PKGBUILD                               (rev 0)
+++ python-kitchen/trunk/PKGBUILD       2019-01-09 23:53:56 UTC (rev 421337)
@@ -0,0 +1,24 @@
+# Maintainer: Alad Wenter <[email protected]>
+# Contributor: John Jenkins [email protected]
+# Contributor: Sean Anderson [email protected]
+pkgname=python-kitchen
+pkgver=1.2.5
+pkgrel=2
+pkgdesc="Useful snippets of python code"
+url="https://github.com/fedora-infra/kitchen";
+depends=('python')
+makedepends=('python' 'python-setuptools')
+license=('LGPL')
+arch=('any')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('1258af80868fc8c30170a43040b1eb5434bc5ffa5ff4ab98ffb9ee3d3c1e2f76')
+
+build() {
+    cd "kitchen-$pkgver"
+    python setup.py build
+}
+
+package() {
+    cd "kitchen-$pkgver"
+    python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}

Reply via email to