From 3a34288606f7913ab8ca1ca3f6a002234447f6ca Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Tue, 19 Mar 2019 12:45:11 +0000 Subject: [PATCH] community/python-setuptools-markdown to 0.2-4 --- community/python-setuptools-markdown/PKGBUILD | 36 ++++++------------- 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/community/python-setuptools-markdown/PKGBUILD b/community/python-setuptools-markdown/PKGBUILD index 9f5866ad5..320962649 100644 --- a/community/python-setuptools-markdown/PKGBUILD +++ b/community/python-setuptools-markdown/PKGBUILD @@ -1,44 +1,30 @@ -# $Id$ # Maintainer: Felix Yan # ALARM: Kevin Mihelich -# - removed makedepends on python-pypandoc and python2-pypandoc -# - removed depends on those in the packages +# - removed dependency on python-pypandoc -pkgbase=python-setuptools-markdown -pkgname=(python-setuptools-markdown python2-setuptools-markdown) +pkgname=python-setuptools-markdown pkgver=0.2 -pkgrel=3 +_commit=48c3977bf3404141fec78e2d1f8658bfbcf82f53 +pkgrel=4 pkgdesc="Use Markdown for your project description" arch=('any') url="https://github.com/msabramo/setuptools-markdown" license=('MIT') -makedepends=('python-setuptools' 'python2-setuptools' 'git') -source=("git+https://github.com/msabramo/setuptools-markdown.git#commit=$_commit") -md5sums=('SKIP') +depends=('python-setuptools') +source=("$pkgname-$_commit.tar.gz::https://github.com/msabramo/setuptools-markdown/archive/$_commit.tar.gz") +sha512sums=('8e946ddcc488ef42179eb1da5bc3c155c3f307744074c0c0e2f6bcc9d131a6df8504c8c1e7e862fdeb3a89288c4c4ccbab1d49eb331ceb9599bb89e1a0904655') prepare() { - cp -a setuptools-markdown{,-py2} + mv setuptools-markdown-{$_commit,$pkgver} } build() { - cd "${srcdir}/setuptools-markdown" + cd setuptools-markdown-$pkgver python setup.py build - - cd "${srcdir}/setuptools-markdown-py2" - python2 setup.py build } -package_python-setuptools-markdown() { - depends=('python-setuptools') - - cd "${srcdir}/setuptools-markdown" +package() { + cd setuptools-markdown-$pkgver python setup.py install --root "$pkgdir" } - -package_python2-setuptools-markdown() { - depends=('python2-setuptools') - - cd "${srcdir}/setuptools-markdown-py2" - python2 setup.py install --root "$pkgdir" -}