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

2020-11-19 Thread Felix Yan via arch-commits
Date: Thursday, November 19, 2020 @ 22:35:01
  Author: felixonmars
Revision: 757827

upgpkg: python-hglib 2.6.2-3: Python 3.9 rebuild

Modified:
  python-hglib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-19 22:31:17 UTC (rev 757826)
+++ PKGBUILD2020-11-19 22:35:01 UTC (rev 757827)
@@ -4,7 +4,7 @@
 
 pkgname=python-hglib
 pkgver=2.6.2
-pkgrel=2
+pkgrel=3
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
 license=('MIT')


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

2020-11-19 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, November 19, 2020 @ 22:31:08
  Author: jlichtblau
Revision: 757825

upgpkg: python-hglib 2.6.2-2: Python 3.9 rebuild

Modified:
  python-hglib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-19 22:29:30 UTC (rev 757824)
+++ PKGBUILD2020-11-19 22:31:08 UTC (rev 757825)
@@ -4,7 +4,7 @@
 
 pkgname=python-hglib
 pkgver=2.6.2
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
 license=('MIT')


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

2020-11-19 Thread Jaroslav Lichtblau via arch-commits
Date: Thursday, November 19, 2020 @ 22:29:20
  Author: jlichtblau
Revision: 757823

upgpkg: python-hglib 2.6.2-1 - new upstream release

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |   19 ---
 1 file changed, 4 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-19 22:07:15 UTC (rev 757822)
+++ PKGBUILD2020-11-19 22:29:20 UTC (rev 757823)
@@ -3,8 +3,8 @@
 # Contributor: Jelle van der Waa 
 
 pkgname=python-hglib
-pkgver=2.6.1
-pkgrel=3
+pkgver=2.6.2
+pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
 license=('MIT')
@@ -11,20 +11,9 @@
 pkgdesc="A library with a fast, convenient interface to Mercurial. It uses 
Mercurial's command server for communication with hg."
 depends=('python' 'mercurial')
 checkdepends=('python-nose')
-source=(https://files.pythonhosted.org/packages/source/${pkgname:0:1}/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc}
-
hglib-fix-obsolete-markers.patch::https://www.mercurial-scm.org/repo/python-hglib/raw-rev/12e6aaef0f6e)
-validpgpkeys=('2BCCE14F5C6725AA2EA8AEB7B9C9DC824AA5BDD5') # Augie Fackler 
 v2.5
-# v2.4 validpgpkeys=('FAD61395F642FC2B33C84B9A205781AC682A2D72') # Matthew 
Mackall 
-sha256sums=('7c1fa0cb4d332dd6ec8409b04787ceba4623e97fb378656f7cab0b996c6ca3b2'
-'SKIP'
-'ea0d32a061746ebe621e070ddb4653bbb4f755503ed63489c100870e82b7f553')
+source=(https://files.pythonhosted.org/packages/fb/11/1cfa47d5e2aa45f6a803fcdf4484f8255383221ccb2f521d9010afca0d8d/$pkgname-$pkgver.tar.gz)
+sha256sums=('b18bd1ed53c90ee57d5714d66ad6bb72b64e930d4aeca9830892c08bb28da608')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # pass tests with recent mercurial versions
-  patch -p1 -i ../hglib-fix-obsolete-markers.patch
-}
-
 check() {
   cd ${pkgname}-${pkgver}
   python test.py


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

2020-08-28 Thread Frederik Schwan via arch-commits
Date: Friday, August 28, 2020 @ 12:57:30
  Author: freswa
Revision: 690808

fix unquoted variables

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-28 12:57:04 UTC (rev 690807)
+++ PKGBUILD2020-08-28 12:57:30 UTC (rev 690808)
@@ -20,18 +20,18 @@
 'ea0d32a061746ebe621e070ddb4653bbb4f755503ed63489c100870e82b7f553')
 
 prepare() {
-  cd "${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   # pass tests with recent mercurial versions
   patch -p1 -i ../hglib-fix-obsolete-markers.patch
 }
 
 check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   python test.py
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  python setup.py install --root=${pkgdir} --optimize=1
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }


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

2019-11-09 Thread Antonio Rojas via arch-commits
Date: Saturday, November 9, 2019 @ 22:08:25
  Author: arojas
Revision: 524908

Drop python2

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |   34 +-
 1 file changed, 9 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-09 22:03:38 UTC (rev 524907)
+++ PKGBUILD2019-11-09 22:08:25 UTC (rev 524908)
@@ -2,16 +2,16 @@
 # Contributor: Erik Johnson 
 # Contributor: Jelle van der Waa 
 
-pkgbase=python-hglib
-pkgname=('python2-hglib' 'python-hglib')
+pkgname=python-hglib
 pkgver=2.6.1
 pkgrel=3
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
 license=('MIT')
-makedepends=('python2' 'mercurial' 'python')
-checkdepends=('python-nose' 'python2-nose')
-source=(https://files.pythonhosted.org/packages/source/${pkgbase:0:1}/${pkgbase}/${pkgbase}-${pkgver}.tar.gz{,.asc}
+pkgdesc="A library with a fast, convenient interface to Mercurial. It uses 
Mercurial's command server for communication with hg."
+depends=('python' 'mercurial')
+checkdepends=('python-nose')
+source=(https://files.pythonhosted.org/packages/source/${pkgname:0:1}/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc}
 
hglib-fix-obsolete-markers.patch::https://www.mercurial-scm.org/repo/python-hglib/raw-rev/12e6aaef0f6e)
 validpgpkeys=('2BCCE14F5C6725AA2EA8AEB7B9C9DC824AA5BDD5') # Augie Fackler 
 v2.5
 # v2.4 validpgpkeys=('FAD61395F642FC2B33C84B9A205781AC682A2D72') # Matthew 
Mackall 
@@ -20,34 +20,18 @@
 'ea0d32a061746ebe621e070ddb4653bbb4f755503ed63489c100870e82b7f553')
 
 prepare() {
-  cd "${pkgbase}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
   # pass tests with recent mercurial versions
   patch -p1 -i ../hglib-fix-obsolete-markers.patch
-
-  cd ../
-  cp -rf "${pkgbase}-${pkgver}" "${pkgbase}-${pkgver}-2"
 }
 
 check() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
+  cd "${srcdir}/${pkgname}-${pkgver}"
   python test.py
-
-  cd "${srcdir}/${pkgbase}-${pkgver}-2"
-  python2 test.py
 }
 
-package_python2-hglib() {
-  pkgdesc="A library with a fast, convenient interface to Mercurial. It uses 
Mercurial's command server for communication with hg."
-  depends=('python2' 'mercurial')
-  cd "${srcdir}/${pkgbase}-${pkgver}-2"
-  python2 setup.py install --root=${pkgdir} --optimize=1
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_python-hglib() {
-  pkgdesc="A library with a fast, convenient interface to Mercurial. It uses 
Mercurial's command server for communication with hg."
-  depends=('python' 'mercurial')
-  cd "${srcdir}/${pkgbase}-${pkgver}"
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
   python setup.py install --root=${pkgdir} --optimize=1
   install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }


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

2019-11-06 Thread Eli Schwartz via arch-commits
Date: Wednesday, November 6, 2019 @ 14:07:49
  Author: eschwartz
Revision: 524358

upgpkg: python-hglib 2.6.1-3: python3.8 rebuild

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-06 13:53:12 UTC (rev 524357)
+++ PKGBUILD2019-11-06 14:07:49 UTC (rev 524358)
@@ -5,19 +5,26 @@
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
 pkgver=2.6.1
-pkgrel=2
+pkgrel=3
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
 license=('MIT')
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
-source=(https://pypi.python.org/packages/f9/39/4d8fa780f71347c3e25c6192f87e13a0265f44b9b8d0a36de550bf39e172/${pkgbase}-${pkgver}.tar.gz{,.asc})
+source=(https://files.pythonhosted.org/packages/source/${pkgbase:0:1}/${pkgbase}/${pkgbase}-${pkgver}.tar.gz{,.asc}
+
hglib-fix-obsolete-markers.patch::https://www.mercurial-scm.org/repo/python-hglib/raw-rev/12e6aaef0f6e)
 validpgpkeys=('2BCCE14F5C6725AA2EA8AEB7B9C9DC824AA5BDD5') # Augie Fackler 
 v2.5
 # v2.4 validpgpkeys=('FAD61395F642FC2B33C84B9A205781AC682A2D72') # Matthew 
Mackall 
 sha256sums=('7c1fa0cb4d332dd6ec8409b04787ceba4623e97fb378656f7cab0b996c6ca3b2'
-'SKIP')
+'SKIP'
+'ea0d32a061746ebe621e070ddb4653bbb4f755503ed63489c100870e82b7f553')
 
 prepare() {
+  cd "${pkgbase}-${pkgver}"
+  # pass tests with recent mercurial versions
+  patch -p1 -i ../hglib-fix-obsolete-markers.patch
+
+  cd ../
   cp -rf "${pkgbase}-${pkgver}" "${pkgbase}-${pkgver}-2"
 }
 


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

2018-06-30 Thread Evangelos Foutras via arch-commits
Date: Saturday, June 30, 2018 @ 17:51:00
  Author: foutrelis
Revision: 348720

Python 3.7 rebuild

Modified:
  python-hglib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-30 17:50:48 UTC (rev 348719)
+++ PKGBUILD2018-06-30 17:51:00 UTC (rev 348720)
@@ -6,7 +6,7 @@
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
 pkgver=2.6.1
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
 license=('MIT')


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

2018-05-01 Thread Jaroslav Lichtblau via arch-commits
Date: Tuesday, May 1, 2018 @ 20:21:26
  Author: jlichtblau
Revision: 318607

upgpkg: python-hglib 2.6.1-1 - new upstream release

Modified:
  python-hglib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-05-01 20:15:41 UTC (rev 318606)
+++ PKGBUILD2018-05-01 20:21:26 UTC (rev 318607)
@@ -5,7 +5,7 @@
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
-pkgver=2.5
+pkgver=2.6.1
 pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
@@ -12,10 +12,10 @@
 license=('MIT')
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
-source=(https://pypi.python.org/packages/5a/c8/b8c95d3ee5d57c7961d918c16a09ebb8b3122a87e373bbda9f1f35769ff3/${pkgbase}-${pkgver}.tar.gz{,.asc})
+source=(https://pypi.python.org/packages/f9/39/4d8fa780f71347c3e25c6192f87e13a0265f44b9b8d0a36de550bf39e172/${pkgbase}-${pkgver}.tar.gz{,.asc})
 validpgpkeys=('2BCCE14F5C6725AA2EA8AEB7B9C9DC824AA5BDD5') # Augie Fackler 
 v2.5
 # v2.4 validpgpkeys=('FAD61395F642FC2B33C84B9A205781AC682A2D72') # Matthew 
Mackall 
-sha256sums=('fee180bb6796e5d2d25158b2d3c9f048648e427dd28b23a58d369adb14dd67cb'
+sha256sums=('7c1fa0cb4d332dd6ec8409b04787ceba4623e97fb378656f7cab0b996c6ca3b2'
 'SKIP')
 
 prepare() {


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

2018-02-04 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, February 4, 2018 @ 12:18:37
  Author: jlichtblau
Revision: 288984

upgpkg: python-hglib 2.5-1 - new upstream release

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-04 12:17:33 UTC (rev 288983)
+++ PKGBUILD2018-02-04 12:18:37 UTC (rev 288984)
@@ -5,7 +5,7 @@
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
-pkgver=2.4
+pkgver=2.5
 pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
@@ -12,9 +12,10 @@
 license=('MIT')
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
-source=(https://pypi.python.org/packages/3a/6c/52c4ba6050b80e266d87783ccd4d39b76a0d2459965abf1c7bde54dd9a72/${pkgbase}-${pkgver}.tar.gz{,.asc})
-validpgpkeys=('FAD61395F642FC2B33C84B9A205781AC682A2D72') # Matthew Mackall 

-sha256sums=('693d6ed92a6566e78802c7a03c256cda33d08c63ad3f00fcfa11379b184b9462'
+source=(https://pypi.python.org/packages/5a/c8/b8c95d3ee5d57c7961d918c16a09ebb8b3122a87e373bbda9f1f35769ff3/${pkgbase}-${pkgver}.tar.gz{,.asc})
+validpgpkeys=('2BCCE14F5C6725AA2EA8AEB7B9C9DC824AA5BDD5') # Augie Fackler 
 v2.5
+# v2.4 validpgpkeys=('FAD61395F642FC2B33C84B9A205781AC682A2D72') # Matthew 
Mackall 
+sha256sums=('fee180bb6796e5d2d25158b2d3c9f048648e427dd28b23a58d369adb14dd67cb'
 'SKIP')
 
 prepare() {


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

2017-04-04 Thread Jaroslav Lichtblau
Date: Tuesday, April 4, 2017 @ 17:54:19
  Author: jlichtblau
Revision: 220496

upgpkg: python-hglib 2.4-1 - new upstream release

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-04 17:48:10 UTC (rev 220495)
+++ PKGBUILD2017-04-04 17:54:19 UTC (rev 220496)
@@ -5,7 +5,7 @@
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
-pkgver=2.3
+pkgver=2.4
 pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
@@ -12,9 +12,9 @@
 license=('MIT')
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
-source=(https://pypi.python.org/packages/80/9c/1618281fc1ef0df4436b1435de6276452fefb46b111b3b00d3e20fcf5e17/${pkgbase}-${pkgver}.tar.gz{,.asc})
+source=(https://pypi.python.org/packages/3a/6c/52c4ba6050b80e266d87783ccd4d39b76a0d2459965abf1c7bde54dd9a72/${pkgbase}-${pkgver}.tar.gz{,.asc})
 validpgpkeys=('FAD61395F642FC2B33C84B9A205781AC682A2D72') # Matthew Mackall 

-sha256sums=('3d2e2eb2ecf73789635363784fdc6f0c0935256fe0263dfd6ed005a055c418df'
+sha256sums=('693d6ed92a6566e78802c7a03c256cda33d08c63ad3f00fcfa11379b184b9462'
 'SKIP')
 
 prepare() {
@@ -34,6 +34,7 @@
   depends=('python2' 'mercurial')
   cd "${srcdir}/${pkgbase}-${pkgver}-2"
   python2 setup.py install --root=${pkgdir} --optimize=1
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }
 
 package_python-hglib() {
@@ -41,4 +42,5 @@
   depends=('python' 'mercurial')
   cd "${srcdir}/${pkgbase}-${pkgver}"
   python setup.py install --root=${pkgdir} --optimize=1
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }


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

2017-01-05 Thread Jaroslav Lichtblau
Date: Thursday, January 5, 2017 @ 20:06:32
  Author: jlichtblau
Revision: 204931

upgpkg: python-hglib 2.3-1 - new upstream release

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-05 20:02:29 UTC (rev 204930)
+++ PKGBUILD2017-01-05 20:06:32 UTC (rev 204931)
@@ -5,16 +5,16 @@
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
-pkgver=2.2
-pkgrel=2
+pkgver=2.3
+pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
 license=('MIT')
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
-source=(https://pypi.python.org/packages/78/4d/62747caf1368ef440dc5ed162e1b21ef3a276b60cf2109640a5a22ea560b/${pkgbase}-${pkgver}.tar.gz{,.asc})
+source=(https://pypi.python.org/packages/80/9c/1618281fc1ef0df4436b1435de6276452fefb46b111b3b00d3e20fcf5e17/${pkgbase}-${pkgver}.tar.gz{,.asc})
 validpgpkeys=('FAD61395F642FC2B33C84B9A205781AC682A2D72') # Matthew Mackall 

-sha256sums=('ce678914d6a6b69b340cec8e2f92da7272ea015ef5973cde74d2c5010b8a9015'
+sha256sums=('3d2e2eb2ecf73789635363784fdc6f0c0935256fe0263dfd6ed005a055c418df'
 'SKIP')
 
 prepare() {


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

2016-12-25 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 18:27:41
  Author: bpiotrowski
Revision: 202252

Python 3.6 rebuild

Modified:
  python-hglib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 18:27:08 UTC (rev 202251)
+++ PKGBUILD2016-12-25 18:27:41 UTC (rev 202252)
@@ -6,7 +6,7 @@
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
 pkgver=2.2
-pkgrel=1
+pkgrel=2
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
 license=('MIT')


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

2016-07-19 Thread Jaroslav Lichtblau
Date: Tuesday, July 19, 2016 @ 20:26:16
  Author: jlichtblau
Revision: 183315

upgpkg: python-hglib 2.2-1 - new upstream release

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-07-19 20:06:32 UTC (rev 183314)
+++ PKGBUILD2016-07-19 20:26:16 UTC (rev 183315)
@@ -5,7 +5,7 @@
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
-pkgver=2.1
+pkgver=2.2
 pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
@@ -12,8 +12,10 @@
 license=('MIT')
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
-source=("https://pypi.python.org/packages/source/p/python-hglib/${pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('aef394edeeea89803f9764a441423da3efffefaae9cf0eca6ee38cdb4ac00d73')
+source=(https://pypi.python.org/packages/78/4d/62747caf1368ef440dc5ed162e1b21ef3a276b60cf2109640a5a22ea560b/${pkgbase}-${pkgver}.tar.gz{,.asc})
+validpgpkeys=('FAD61395F642FC2B33C84B9A205781AC682A2D72') # Matthew Mackall 

+sha256sums=('ce678914d6a6b69b340cec8e2f92da7272ea015ef5973cde74d2c5010b8a9015'
+'SKIP')
 
 prepare() {
   cp -rf "${pkgbase}-${pkgver}" "${pkgbase}-${pkgver}-2"


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

2016-06-06 Thread Jaroslav Lichtblau
Date: Monday, June 6, 2016 @ 20:58:54
  Author: jlichtblau
Revision: 178043

upgpkg: python-hglib 2.1-1 - new upstream release

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-06 18:32:59 UTC (rev 178042)
+++ PKGBUILD2016-06-06 18:58:54 UTC (rev 178043)
@@ -5,7 +5,7 @@
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
-pkgver=2.0
+pkgver=2.1
 pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
@@ -13,7 +13,7 @@
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
 
source=("https://pypi.python.org/packages/source/p/python-hglib/${pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('86d1bcfbe1198f39a25ce9f6f171bea04679d148a460bb0cbd8c3b447cb9e145')
+sha256sums=('aef394edeeea89803f9764a441423da3efffefaae9cf0eca6ee38cdb4ac00d73')
 
 prepare() {
   cp -rf "${pkgbase}-${pkgver}" "${pkgbase}-${pkgver}-2"


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

2016-02-04 Thread Jaroslav Lichtblau
Date: Thursday, February 4, 2016 @ 16:45:08
  Author: jlichtblau
Revision: 160322

upgpkg: python-hglib 2.0-1 - new upstream release

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-04 13:49:29 UTC (rev 160321)
+++ PKGBUILD2016-02-04 15:45:08 UTC (rev 160322)
@@ -5,7 +5,7 @@
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
-pkgver=1.9
+pkgver=2.0
 pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
@@ -13,7 +13,7 @@
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
 
source=("https://pypi.python.org/packages/source/p/python-hglib/${pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('f4302892b2b8287cf326586c7280b9eadfc3d0c7cd3feba957429a8d9b1a60ce')
+sha256sums=('86d1bcfbe1198f39a25ce9f6f171bea04679d148a460bb0cbd8c3b447cb9e145')
 
 prepare() {
   cp -rf "${pkgbase}-${pkgver}" "${pkgbase}-${pkgver}-2"


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

2016-01-03 Thread Jaroslav Lichtblau
Date: Sunday, January 3, 2016 @ 22:28:19
  Author: jlichtblau
Revision: 155239

upgpkg: python-hglib 1.9-1 - new upstream release

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |   28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-03 20:32:01 UTC (rev 155238)
+++ PKGBUILD2016-01-03 21:28:19 UTC (rev 155239)
@@ -1,9 +1,11 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
 # Contributor: Erik Johnson 
-# Maintainer: Jelle van der Waa 
+# Contributor: Jelle van der Waa 
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
-pkgver=1.8
+pkgver=1.9
 pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
@@ -11,14 +13,22 @@
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
 
source=("https://pypi.python.org/packages/source/p/python-hglib/${pkgbase}-${pkgver}.tar.gz;)
-md5sums=('eee52cbb9ab5f9a3ea1b7075818c65a3')
+sha256sums=('f4302892b2b8287cf326586c7280b9eadfc3d0c7cd3feba957429a8d9b1a60ce')
 
 prepare() {
   cp -rf "${pkgbase}-${pkgver}" "${pkgbase}-${pkgver}-2"
 }
 
+check() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  python test.py
+
+  cd "${srcdir}/${pkgbase}-${pkgver}-2"
+  python2 test.py
+}
+
 package_python2-hglib() {
-  pkgdesc="python2-hglib is a library with a fast, convenient interface to 
Mercurial. It uses Mercurial's command server for communication with hg."
+  pkgdesc="A library with a fast, convenient interface to Mercurial. It uses 
Mercurial's command server for communication with hg."
   depends=('python2' 'mercurial')
   cd "${srcdir}/${pkgbase}-${pkgver}-2"
   python2 setup.py install --root=${pkgdir} --optimize=1
@@ -25,16 +35,8 @@
 }
 
 package_python-hglib() {
-  pkgdesc="python-hglib is a library with a fast, convenient interface to 
Mercurial. It uses Mercurial's command server for communication with hg."
+  pkgdesc="A library with a fast, convenient interface to Mercurial. It uses 
Mercurial's command server for communication with hg."
   depends=('python' 'mercurial')
   cd "${srcdir}/${pkgbase}-${pkgver}"
   python setup.py install --root=${pkgdir} --optimize=1
 }
-
-check() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  python test.py
-
-  cd "${srcdir}/${pkgbase}-${pkgver}-2"
-  python2 test.py
-}


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

2015-09-19 Thread Jaroslav Lichtblau
Date: Saturday, September 19, 2015 @ 21:36:44
  Author: jlichtblau
Revision: 141093

upgpkg: python-hglib 1.8-1 - new upstream release
+ python 3.5 rebuild

Modified:
  python-hglib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-19 19:23:57 UTC (rev 141092)
+++ PKGBUILD2015-09-19 19:36:44 UTC (rev 141093)
@@ -3,8 +3,8 @@
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
-pkgver=1.6
-pkgrel=2
+pkgver=1.8
+pkgrel=1
 arch=('any')
 url="https://pypi.python.org/pypi/python-hglib;
 license=('MIT')
@@ -11,7 +11,7 @@
 makedepends=('python2' 'mercurial' 'python')
 checkdepends=('python-nose' 'python2-nose')
 
source=("https://pypi.python.org/packages/source/p/python-hglib/${pkgbase}-${pkgver}.tar.gz;)
-md5sums=('846fde01feb8891651a4d8dc2f3dd513')
+md5sums=('eee52cbb9ab5f9a3ea1b7075818c65a3')
 
 prepare() {
   cp -rf "${pkgbase}-${pkgver}" "${pkgbase}-${pkgver}-2"


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

2015-07-12 Thread Jelle van der Waa
Date: Sunday, July 12, 2015 @ 20:53:44
  Author: jelle
Revision: 136736

Update to 1.6 and package python2 and python bindings

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-12 18:48:58 UTC (rev 136735)
+++ PKGBUILD2015-07-12 18:53:44 UTC (rev 136736)
@@ -8,8 +8,9 @@
 url=https://pypi.python.org/pypi/python-hglib;
 license=('MIT')
 makedepends=('python2' 'mercurial' 'python')
+checkdepends=('python-nose' 'python2-nose')
 
source=(https://pypi.python.org/packages/source/p/python-hglib/${pkgbase}-${pkgver}.tar.gz;)
-md5sums=('47bddc41ade625ff977d811a4ea57724')
+md5sums=('846fde01feb8891651a4d8dc2f3dd513')
 
 prepare() {
   cp -rf ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-2
@@ -28,3 +29,11 @@
   cd ${srcdir}/${pkgbase}-${pkgver}
   python setup.py install --root=${pkgdir}
 }
+
+check() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  python test.py
+
+  cd ${srcdir}/${pkgbase}-${pkgver}-2
+  python2 test.py
+}


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

2015-07-12 Thread Jelle van der Waa
Date: Sunday, July 12, 2015 @ 20:55:42
  Author: jelle
Revision: 136738

Add optimize=1

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-12 18:53:52 UTC (rev 136737)
+++ PKGBUILD2015-07-12 18:55:42 UTC (rev 136738)
@@ -20,7 +20,7 @@
   pkgdesc=python-hglib is a library with a fast, convenient interface to 
Mercurial. It uses Mercurial's command server for communication with hg.
   depends=('python' 'mercurial')
   cd ${srcdir}/${pkgbase}-${pkgver}-2
-  python2 setup.py install --root=${pkgdir}
+  python2 setup.py install --root=${pkgdir} --optimize=1
 }
 
 package_python2-hglib() {
@@ -27,7 +27,7 @@
   pkgdesc=python2-hglib is a library with a fast, convenient interface to 
Mercurial. It uses Mercurial's command server for communication with hg.
   depends=('python2' 'mercurial')
   cd ${srcdir}/${pkgbase}-${pkgver}
-  python setup.py install --root=${pkgdir}
+  python setup.py install --root=${pkgdir} --optimize=1
 }
 
 check() {


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

2015-07-12 Thread Jelle van der Waa
Date: Sunday, July 12, 2015 @ 21:00:07
  Author: jelle
Revision: 136739

Fix mess up of python2/python hglib :-)

Modified:
  python-hglib/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-12 18:55:42 UTC (rev 136738)
+++ PKGBUILD2015-07-12 19:00:07 UTC (rev 136739)
@@ -1,9 +1,10 @@
 # Contributor: Erik Johnson palehose at gmail dot com
+# Maintainer: Jelle van der Waa je...@archlinux.org
 
 pkgbase=python-hglib
 pkgname=('python2-hglib' 'python-hglib')
 pkgver=1.6
-pkgrel=1
+pkgrel=2
 arch=('any')
 url=https://pypi.python.org/pypi/python-hglib;
 license=('MIT')
@@ -16,16 +17,16 @@
   cp -rf ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-2
 }
 
-package_python-hglib() {
-  pkgdesc=python-hglib is a library with a fast, convenient interface to 
Mercurial. It uses Mercurial's command server for communication with hg.
-  depends=('python' 'mercurial')
+package_python2-hglib() {
+  pkgdesc=python2-hglib is a library with a fast, convenient interface to 
Mercurial. It uses Mercurial's command server for communication with hg.
+  depends=('python2' 'mercurial')
   cd ${srcdir}/${pkgbase}-${pkgver}-2
   python2 setup.py install --root=${pkgdir} --optimize=1
 }
 
-package_python2-hglib() {
-  pkgdesc=python2-hglib is a library with a fast, convenient interface to 
Mercurial. It uses Mercurial's command server for communication with hg.
-  depends=('python2' 'mercurial')
+package_python-hglib() {
+  pkgdesc=python-hglib is a library with a fast, convenient interface to 
Mercurial. It uses Mercurial's command server for communication with hg.
+  depends=('python' 'mercurial')
   cd ${srcdir}/${pkgbase}-${pkgver}
   python setup.py install --root=${pkgdir} --optimize=1
 }