Date: Wednesday, July 31, 2019 @ 16:37:30
Author: alad
Revision: 495644
archrelease: copy trunk to community-any
Added:
python-kitchen/repos/community-any/PKGBUILD
(from rev 495643, python-kitchen/trunk/PKGBUILD)
Deleted:
python-kitchen/repos/community-any/PKGBUILD
----------+
PKGBUILD | 61 ++++++++++++++++++++++++-------------------------------------
1 file changed, 24 insertions(+), 37 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2019-07-31 16:37:23 UTC (rev 495643)
+++ PKGBUILD 2019-07-31 16:37:30 UTC (rev 495644)
@@ -1,37 +0,0 @@
-# Maintainer: Alad Wenter <[email protected]>
-# Contributor: John Jenkins [email protected]
-# Contributor: Sean Anderson [email protected]
-pkgname=('python-kitchen' 'python2-kitchen')
-pkgbase=python-kitchen
-pkgver=1.2.5
-pkgrel=3
-pkgdesc="Useful snippets of python code"
-url="https://github.com/fedora-infra/kitchen"
-makedepends=('python-setuptools' 'python2-setuptools')
-license=('LGPL')
-arch=('any')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('1258af80868fc8c30170a43040b1eb5434bc5ffa5ff4ab98ffb9ee3d3c1e2f76')
-
-build() {
- cd "kitchen-$pkgver"
-
- # kitchen has separate source trees for python2 and python3
- python setup.py build
- python2 setup.py build
-}
-
-package_python-kitchen() {
- depends=('python')
- cd "kitchen-$pkgver"
-
- python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-kitchen() {
- depends=('python2')
- cd "kitchen-$pkgver"
-
- python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
- sed -i 's/python/python2/'
"$pkgdir/usr/lib/python2.7/site-packages/kitchen/pycompat24/base64/_base64.py"
-}
Copied: python-kitchen/repos/community-any/PKGBUILD (from rev 495643,
python-kitchen/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2019-07-31 16:37:30 UTC (rev 495644)
@@ -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.6
+pkgrel=1
+pkgdesc="Useful snippets of python code"
+url="https://github.com/fedora-infra/kitchen"
+depends=('python')
+makedepends=('python-setuptools')
+license=('LGPL')
+arch=('any')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha256sums=('6963dd84819713aafdd55e5314dcce6df5a37430b62fd9c48770e9f1a467b2b0')
+
+build() {
+ cd "kitchen-$pkgver"
+ python setup.py build
+}
+
+package() {
+ cd "kitchen-$pkgver"
+ python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}