[arch-commits] Commit in python-unrardll/trunk (PKGBUILD)

2020-11-11 Thread Evangelos Foutras via arch-commits
Date: Wednesday, November 11, 2020 @ 10:35:18
  Author: foutrelis
Revision: 750135

upgpkg: python-unrardll 0.1.4-5: Python 3.9 rebuild

Modified:
  python-unrardll/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-11 10:35:18 UTC (rev 750134)
+++ PKGBUILD2020-11-11 10:35:18 UTC (rev 750135)
@@ -4,7 +4,7 @@
 _pkgname=unrardll
 pkgname=python-unrardll
 pkgver=0.1.4
-pkgrel=4
+pkgrel=5
 pkgdesc="Python wrapper for UnRAR DLL"
 arch=('x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};


[arch-commits] Commit in python-unrardll/trunk (PKGBUILD)

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:15:01
  Author: foutrelis
Revision: 749385

upgpkg: python-unrardll 0.1.4-4: Python 3.9 rebuild

Modified:
  python-unrardll/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-10 05:14:31 UTC (rev 749384)
+++ PKGBUILD2020-11-10 05:15:01 UTC (rev 749385)
@@ -4,7 +4,7 @@
 _pkgname=unrardll
 pkgname=python-unrardll
 pkgver=0.1.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Python wrapper for UnRAR DLL"
 arch=('x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};


[arch-commits] Commit in python-unrardll/trunk (PKGBUILD)

2020-09-25 Thread Eli Schwartz via arch-commits
Date: Friday, September 25, 2020 @ 06:01:19
  Author: eschwartz
Revision: 711974

upgpkg: python-unrardll 0.1.4-3: drop python2

no longer used by calibre, and is therefore not needed at all

Modified:
  python-unrardll/trunk/PKGBUILD

--+
 PKGBUILD |   26 ++
 1 file changed, 6 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-25 05:59:09 UTC (rev 711973)
+++ PKGBUILD2020-09-25 06:01:19 UTC (rev 711974)
@@ -2,16 +2,15 @@
 # Contributor: Eli Schwartz 
 
 _pkgname=unrardll
-pkgbase='python-unrardll'
-pkgname=('python-unrardll' 'python2-unrardll')
+pkgname=python-unrardll
 pkgver=0.1.4
-pkgrel=2
+pkgrel=3
 pkgdesc="Python wrapper for UnRAR DLL"
 arch=('x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};
 license=('BSD')
-depends=('libunrar')
-makedepends=('python-setuptools' 'python2-setuptools')
+depends=('libunrar' 'python')
+makedepends=('python-setuptools')
 
source=("https://pypi.io/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
 sha256sums=('4149c0729cf96a0bae80360e7d94dc40af1088c8da7f6eb8d10e09b8632e92ad'
 'SKIP')
@@ -23,7 +22,6 @@
   cd "${srcdir}/${_pkgname}-${pkgver}"
 
   python setup.py build
-  python2 setup.py build
 }
 
 check() {
@@ -30,23 +28,11 @@
   cd "${srcdir}/${_pkgname}-${pkgver}"
 
   python setup.py test
-  python2 setup.py test
 }
 
-package_python-unrardll() {
-  depends+=('python')
+package() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
 
-  cd "${srcdir}/${_pkgname}-${pkgver}"
   python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-
   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
-
-package_python2-unrardll() {
-  depends+=('python2')
-
-  cd "${srcdir}/${_pkgname}-${pkgver}"
-  python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}


[arch-commits] Commit in python-unrardll/trunk (PKGBUILD)

2019-11-03 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 06:12:29
  Author: felixonmars
Revision: 523323

Python 3.8 rebuild

Modified:
  python-unrardll/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-04 06:11:40 UTC (rev 523322)
+++ PKGBUILD2019-11-04 06:12:29 UTC (rev 523323)
@@ -5,7 +5,7 @@
 pkgbase='python-unrardll'
 pkgname=('python-unrardll' 'python2-unrardll')
 pkgver=0.1.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Python wrapper for UnRAR DLL"
 arch=('x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};


[arch-commits] Commit in python-unrardll/trunk (PKGBUILD)

2019-06-11 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 11, 2019 @ 07:06:13
  Author: eschwartz
Revision: 480169

upgpkg: python-unrardll 0.1.4-1

upstream release
sdist now has tests, so add check()

Modified:
  python-unrardll/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 12 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-11 04:40:56 UTC (rev 480168)
+++ PKGBUILD2019-06-11 07:06:13 UTC (rev 480169)
@@ -4,8 +4,8 @@
 _pkgname=unrardll
 pkgbase='python-unrardll'
 pkgname=('python-unrardll' 'python2-unrardll')
-pkgver=0.1.3
-pkgrel=4
+pkgver=0.1.4
+pkgrel=1
 pkgdesc="Python wrapper for UnRAR DLL"
 arch=('x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};
@@ -13,8 +13,10 @@
 depends=('libunrar')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("https://pypi.io/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('5f214ab1ec24208c6ee353f2d836e536968d5379b7140129f04aa3a52bc56a5e'
+sha256sums=('4149c0729cf96a0bae80360e7d94dc40af1088c8da7f6eb8d10e09b8632e92ad'
 'SKIP')
+b2sums=('cbbbe53b9457a4a633f10a2bb5817685ebb75c88f6b20eee01a39610c0b5541bd86f77917efc7824277794e12b30afac4eb0237694cd7b0cc7caf76fb6dbf80e'
+'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C')
 
 build() {
@@ -24,6 +26,13 @@
   python2 setup.py build
 }
 
+check() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+
+  python setup.py test
+  python2 setup.py test
+}
+
 package_python-unrardll() {
   depends+=('python')
 


[arch-commits] Commit in python-unrardll/trunk (PKGBUILD)

2018-06-30 Thread Felix Yan via arch-commits
Date: Saturday, June 30, 2018 @ 18:38:55
  Author: felixonmars
Revision: 349057

Python 3.7 rebuild

Modified:
  python-unrardll/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-30 18:38:53 UTC (rev 349056)
+++ PKGBUILD2018-06-30 18:38:55 UTC (rev 349057)
@@ -5,7 +5,7 @@
 pkgbase='python-unrardll'
 pkgname=('python-unrardll' 'python2-unrardll')
 pkgver=0.1.3
-pkgrel=3
+pkgrel=4
 pkgdesc="Python wrapper for UnRAR DLL"
 arch=('x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};


[arch-commits] Commit in python-unrardll/trunk (PKGBUILD)

2017-06-28 Thread Antonio Rojas
Date: Wednesday, June 28, 2017 @ 22:39:16
  Author: arojas
Revision: 241533

Rebuild for libunrar

Modified:
  python-unrardll/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-28 22:26:05 UTC (rev 241532)
+++ PKGBUILD2017-06-28 22:39:16 UTC (rev 241533)
@@ -5,7 +5,7 @@
 pkgbase='python-unrardll'
 pkgname=('python-unrardll' 'python2-unrardll')
 pkgver=0.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Python wrapper for UnRAR DLL"
 arch=('i686' 'x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};


[arch-commits] Commit in python-unrardll/trunk (PKGBUILD)

2017-06-19 Thread Jelle van der Waa
Date: Monday, June 19, 2017 @ 18:16:39
  Author: jelle
Revision: 238713

upgpkg: python-unrardll 0.1.3-2

Modified:
  python-unrardll/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-19 18:09:54 UTC (rev 238712)
+++ PKGBUILD2017-06-19 18:16:39 UTC (rev 238713)
@@ -5,7 +5,7 @@
 pkgbase='python-unrardll'
 pkgname=('python-unrardll' 'python2-unrardll')
 pkgver=0.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Python wrapper for UnRAR DLL"
 arch=('i686' 'x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};


[arch-commits] Commit in python-unrardll/trunk (PKGBUILD)

2017-06-19 Thread Jelle van der Waa
Date: Monday, June 19, 2017 @ 18:09:54
  Author: jelle
Revision: 238712

Fixes for conflicts

Modified:
  python-unrardll/trunk/PKGBUILD(contents, properties)

--+
 PKGBUILD |   12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-19 17:52:41 UTC (rev 238711)
+++ PKGBUILD2017-06-19 18:09:54 UTC (rev 238712)
@@ -1,13 +1,12 @@
-# Maintainer: Eli Schwartz 
+# Maintainer: Jelle van der Waa 
+# Contributor: Eli Schwartz 
 
-# All my PKGBUILDs are managed at https://github.com/eli-schwartz/pkgbuilds
-
 _pkgname=unrardll
 pkgbase='python-unrardll'
 pkgname=('python-unrardll' 'python2-unrardll')
 pkgver=0.1.3
 pkgrel=1
-pkgdesc="Python wrapper for the UnRAR DLL"
+pkgdesc="Python wrapper for UnRAR DLL"
 arch=('i686' 'x86_64')
 url="https://github.com/kovidgoyal/${_pkgname};
 license=('BSD')
@@ -31,7 +30,7 @@
   cd "${srcdir}/${_pkgname}-${pkgver}"
   python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 
-  install -Dm644 LICENSE 
"${pkgdir}/usr/share/licenses/python2-unrardll/LICENSE"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }
 
 package_python2-unrardll() {
@@ -40,6 +39,5 @@
   cd "${srcdir}/${_pkgname}-${pkgver}"
   python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 
-  install -Dm644 LICENSE 
"${pkgdir}/usr/share/licenses/python2-unrardll/LICENSE"
-
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }


Property changes on: python-unrardll/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property