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

2020-11-11 Thread Evangelos Foutras via arch-commits
Date: Wednesday, November 11, 2020 @ 15:13:29
  Author: foutrelis
Revision: 400395

upgpkg: python-mako 1.1.3-3: Python 3.9 rebuild

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-11 15:13:05 UTC (rev 400394)
+++ PKGBUILD2020-11-11 15:13:29 UTC (rev 400395)
@@ -2,7 +2,7 @@
 
 pkgname=python-mako
 pkgver=1.1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="https://www.makotemplates.org/;


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

2020-11-09 Thread Felix Yan via arch-commits
Date: Monday, November 9, 2020 @ 14:00:26
  Author: felixonmars
Revision: 399723

upgpkg: python-mako 1.1.3-2: Python 3.9 rebuild

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 14:00:17 UTC (rev 399722)
+++ PKGBUILD2020-11-09 14:00:26 UTC (rev 399723)
@@ -2,7 +2,7 @@
 
 pkgname=python-mako
 pkgver=1.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="https://www.makotemplates.org/;


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

2020-05-29 Thread Felix Yan via arch-commits
Date: Saturday, May 30, 2020 @ 03:11:40
  Author: felixonmars
Revision: 387885

upgpkg: python-mako 1.1.3-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-29 22:13:39 UTC (rev 387884)
+++ PKGBUILD2020-05-30 03:11:40 UTC (rev 387885)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-mako
-pkgver=1.1.2
-pkgrel=3
+pkgver=1.1.3
+pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="https://www.makotemplates.org/;
@@ -11,7 +11,7 @@
 checkdepends=('python-pytest' 'python-mock' 'python-babel' 'python-pygments'
   'python-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('73b7a32ceb6e39dc2491734546c83a752bf0c8bc7546bb236801c02a5bccc5b59f2440333a328ff747eee936612dd12279f08d27d76f065fd589081d232692a8'
+sha512sums=('a9b94fa34a61e7794b6e4549fa0bada6ff84dfb0d9edb8d5c7f9b95d12184fa4499f42303cfee720b576a9f7e986a57d91ad3aeb26c9f93154dbc08fb2975952'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2020-05-10 Thread Felix Yan via arch-commits
Date: Sunday, May 10, 2020 @ 09:59:11
  Author: felixonmars
Revision: 383089

upgpkg: python-mako 1.1.2-3: remove python2 sibling

Modified:
  python-mako/trunk/PKGBUILD

--+
 PKGBUILD |   31 +--
 1 file changed, 5 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-10 09:53:04 UTC (rev 383088)
+++ PKGBUILD2020-05-10 09:59:11 UTC (rev 383089)
@@ -1,15 +1,13 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-mako
-pkgname=('python-mako' 'python2-mako')
+pkgname=python-mako
 pkgver=1.1.2
-pkgrel=2
+pkgrel=3
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="https://www.makotemplates.org/;
 license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
- 'python-beaker' 'python2-beaker')
+depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
 checkdepends=('python-pytest' 'python-mock' 'python-babel' 'python-pygments'
   'python-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
@@ -17,16 +15,9 @@
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 
-prepare() {
-  cp -a Mako-$pkgver{,-py2}
-}
-
 build() {
-  cd "$srcdir"/Mako-$pkgver
+  cd Mako-$pkgver
   python setup.py build
-
-  cd "$srcdir"/Mako-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
@@ -34,20 +25,8 @@
   python -m pytest
 }
 
-package_python-mako() {
-  depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
-
+package() {
   cd Mako-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-mako() {
-  depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
-
-  cd Mako-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  mv "$pkgdir"/usr/bin/mako-render{,2}
-}


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

2020-05-10 Thread Felix Yan via arch-commits
Date: Sunday, May 10, 2020 @ 09:52:49
  Author: felixonmars
Revision: 383087

upgpkg: python-mako 1.1.2-2: disable python2 tests

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-10 08:32:31 UTC (rev 383086)
+++ PKGBUILD2020-05-10 09:52:49 UTC (rev 383087)
@@ -3,7 +3,7 @@
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="https://www.makotemplates.org/;
@@ -10,9 +10,8 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
  'python-beaker' 'python2-beaker')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
-  'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
-  'python-dogpile.cache' 'python2-dogpile.cache')
+checkdepends=('python-pytest' 'python-mock' 'python-babel' 'python-pygments'
+  'python-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
 
sha512sums=('73b7a32ceb6e39dc2491734546c83a752bf0c8bc7546bb236801c02a5bccc5b59f2440333a328ff747eee936612dd12279f08d27d76f065fd589081d232692a8'
 'SKIP')
@@ -31,11 +30,8 @@
 }
 
 check() {
-  cd "$srcdir"/Mako-$pkgver
-  python setup.py ptr
-
-  cd "$srcdir"/Mako-$pkgver-py2
-  python2 setup.py ptr
+  cd Mako-$pkgver
+  python -m pytest
 }
 
 package_python-mako() {


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

2020-03-04 Thread Felix Yan via arch-commits
Date: Wednesday, March 4, 2020 @ 10:33:58
  Author: felixonmars
Revision: 376559

upgpkg: python-mako 1.1.2-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-04 10:33:32 UTC (rev 376558)
+++ PKGBUILD2020-03-04 10:33:58 UTC (rev 376559)
@@ -2,7 +2,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.1.1
+pkgver=1.1.2
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('ff707ab3360148fe6e80bea7cd80d043514f08caebc502247c28c63a83e33d1be7513019605fc1adb77c32fc550e9bc16015c512bafde1a6f846aab0775d4ce7'
+sha512sums=('73b7a32ceb6e39dc2491734546c83a752bf0c8bc7546bb236801c02a5bccc5b59f2440333a328ff747eee936612dd12279f08d27d76f065fd589081d232692a8'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2020-01-22 Thread Felix Yan via arch-commits
Date: Wednesday, January 22, 2020 @ 12:53:43
  Author: felixonmars
Revision: 373793

upgpkg: python-mako 1.1.1-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-22 11:22:59 UTC (rev 373792)
+++ PKGBUILD2020-01-22 12:53:43 UTC (rev 373793)
@@ -2,7 +2,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.1.0
+pkgver=1.1.1
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('acb0f53a22ae152c359c38391f508eca706efcc52916a6e87f2702517dd48b5ffd26eef0f2f9172046f1abd0aea1f47328354ff622938886aa00f950a261e8d4'
+sha512sums=('ff707ab3360148fe6e80bea7cd80d043514f08caebc502247c28c63a83e33d1be7513019605fc1adb77c32fc550e9bc16015c512bafde1a6f846aab0775d4ce7'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2019-12-26 Thread Felix Yan via arch-commits
Date: Thursday, December 26, 2019 @ 15:00:26
  Author: felixonmars
Revision: 372310

upgpkg: python-mako 1.1.0-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-12-26 08:41:08 UTC (rev 372309)
+++ PKGBUILD2019-12-26 15:00:26 UTC (rev 372310)
@@ -2,8 +2,8 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.14
-pkgrel=3
+pkgver=1.1.0
+pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="https://www.makotemplates.org/;
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('e9a4840f477d55ad6d3b8724f0326937c04aa9c8c578ec385c70f897419b13ffc234cc673a316de2fa8cd7060fc837cf12f2317658181f8d2eb7dd4ac88f'
+sha512sums=('acb0f53a22ae152c359c38391f508eca706efcc52916a6e87f2702517dd48b5ffd26eef0f2f9172046f1abd0aea1f47328354ff622938886aa00f950a261e8d4'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2019-11-01 Thread Evangelos Foutras via arch-commits
Date: Friday, November 1, 2019 @ 13:28:46
  Author: foutrelis
Revision: 366357

Python 3.8 rebuild

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-01 13:23:51 UTC (rev 366356)
+++ PKGBUILD2019-11-01 13:28:46 UTC (rev 366357)
@@ -3,7 +3,7 @@
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.0.14
-pkgrel=2
+pkgrel=3
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="https://www.makotemplates.org/;


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

2019-10-25 Thread Felix Yan via arch-commits
Date: Friday, October 25, 2019 @ 20:12:12
  Author: felixonmars
Revision: 365714

Python 3.8 rebuild

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-25 20:11:50 UTC (rev 365713)
+++ PKGBUILD2019-10-25 20:12:12 UTC (rev 365714)
@@ -3,7 +3,7 @@
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.0.14
-pkgrel=1
+pkgrel=2
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="https://www.makotemplates.org/;


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

2019-07-24 Thread Felix Yan via arch-commits
Date: Wednesday, July 24, 2019 @ 17:07:06
  Author: felixonmars
Revision: 358545

upgpkg: python-mako 1.0.14-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-24 16:16:57 UTC (rev 358544)
+++ PKGBUILD2019-07-24 17:07:06 UTC (rev 358545)
@@ -2,7 +2,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.13
+pkgver=1.0.14
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('dc28ea717b9a6ad8e9466bb8d66a021a73a2d2047305d4c54cfeacc7f170c683f5b6329fedb83d4ec5262fb4252ea3caf121eb8ea3da6af9d375fcb7e6024846'
+sha512sums=('e9a4840f477d55ad6d3b8724f0326937c04aa9c8c578ec385c70f897419b13ffc234cc673a316de2fa8cd7060fc837cf12f2317658181f8d2eb7dd4ac88f'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2019-07-04 Thread Felix Yan via arch-commits
Date: Thursday, July 4, 2019 @ 14:52:41
  Author: felixonmars
Revision: 357307

upgpkg: python-mako 1.0.13-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-07-04 14:26:10 UTC (rev 357306)
+++ PKGBUILD2019-07-04 14:52:41 UTC (rev 357307)
@@ -2,7 +2,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.12
+pkgver=1.0.13
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('aa295880c07938425e661b8865fed7cf398ac257d6b84bdbef5a2c542bbae79cd27df363e81c10450c9b6c8e038360166480b06e701d5a5affeb7bd03a7f5d83'
+sha512sums=('dc28ea717b9a6ad8e9466bb8d66a021a73a2d2047305d4c54cfeacc7f170c683f5b6329fedb83d4ec5262fb4252ea3caf121eb8ea3da6af9d375fcb7e6024846'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2019-06-06 Thread Felix Yan via arch-commits
Date: Thursday, June 6, 2019 @ 15:56:47
  Author: felixonmars
Revision: 355127

upgpkg: python-mako 1.0.12-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-06 11:06:36 UTC (rev 355126)
+++ PKGBUILD2019-06-06 15:56:47 UTC (rev 355127)
@@ -2,7 +2,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.11
+pkgver=1.0.12
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('dfe79254c1adb3b4d57c9848a6b64228762de65b6d395b21dfb207ddd9a8acd4b80b8242a9946f69c54d7d12b83a09188e66828285d64d09fdcd8d6acf1bacf3'
+sha512sums=('aa295880c07938425e661b8865fed7cf398ac257d6b84bdbef5a2c542bbae79cd27df363e81c10450c9b6c8e038360166480b06e701d5a5affeb7bd03a7f5d83'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2019-05-31 Thread Felix Yan via arch-commits
Date: Saturday, June 1, 2019 @ 00:44:41
  Author: felixonmars
Revision: 354574

upgpkg: python-mako 1.0.11-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-31 17:21:23 UTC (rev 354573)
+++ PKGBUILD2019-06-01 00:44:41 UTC (rev 354574)
@@ -2,7 +2,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.10
+pkgver=1.0.11
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('24f4bcac24598cefe0e30c780730579dd608707d1c938d8e4de5c52bcae283f9bef4c5752b3548df879d9cb6a7a9bac5a5090c55cbdc595769b492205d089b51'
+sha512sums=('dfe79254c1adb3b4d57c9848a6b64228762de65b6d395b21dfb207ddd9a8acd4b80b8242a9946f69c54d7d12b83a09188e66828285d64d09fdcd8d6acf1bacf3'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2019-05-26 Thread Antonio Rojas via arch-commits
Date: Sunday, May 26, 2019 @ 21:05:12
  Author: arojas
Revision: 354343

https

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-26 21:04:44 UTC (rev 354342)
+++ PKGBUILD2019-05-26 21:05:12 UTC (rev 354343)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
-url="http://www.makotemplates.org/;
+url="https://www.makotemplates.org/;
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
  'python-beaker' 'python2-beaker')


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

2019-05-10 Thread Felix Yan via arch-commits
Date: Friday, May 10, 2019 @ 20:09:24
  Author: felixonmars
Revision: 352825

upgpkg: python-mako 1.0.10-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-05-10 15:42:52 UTC (rev 352824)
+++ PKGBUILD2019-05-10 20:09:24 UTC (rev 352825)
@@ -2,7 +2,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.9
+pkgver=1.0.10
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('2b40b96edba9f1ac0c2090e5677742c1f7578d5a55ab1c09aa4198493144e30c25d6179a7bdee2d3fa12410da6c3b1105d2d70af77d4265d679f577a7e711c63'
+sha512sums=('24f4bcac24598cefe0e30c780730579dd608707d1c938d8e4de5c52bcae283f9bef4c5752b3548df879d9cb6a7a9bac5a5090c55cbdc595769b492205d089b51'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2019-04-16 Thread Felix Yan via arch-commits
Date: Tuesday, April 16, 2019 @ 13:39:17
  Author: felixonmars
Revision: 350809

upgpkg: python-mako 1.0.9-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-16 13:39:05 UTC (rev 350808)
+++ PKGBUILD2019-04-16 13:39:17 UTC (rev 350809)
@@ -2,7 +2,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.8
+pkgver=1.0.9
 pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('84da36cf798421528156a93c1b722fe604df5811a9db66244a9085af9ae17ce13d1e8057b3e53aa1af61acf457ce9d13ae240ebade3a7e60ea3cde1f1d9bf264'
+sha512sums=('2b40b96edba9f1ac0c2090e5677742c1f7578d5a55ab1c09aa4198493144e30c25d6179a7bdee2d3fa12410da6c3b1105d2d70af77d4265d679f577a7e711c63'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2019-03-20 Thread Felix Yan via arch-commits
Date: Wednesday, March 20, 2019 @ 17:06:48
  Author: felixonmars
Revision: 348762

upgpkg: python-mako 1.0.8-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-03-20 13:59:48 UTC (rev 348761)
+++ PKGBUILD2019-03-20 17:06:48 UTC (rev 348762)
@@ -2,8 +2,8 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.7
-pkgrel=3
+pkgver=1.0.8
+pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="http://www.makotemplates.org/;
@@ -14,7 +14,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha512sums=('d67af6788bf8603010361ce8b6d0355b0191657c07f3b5845f9d5e91653c3e349a7b35d5b36aa9c7f291973c83911ce94075e1cad78e6935d0ed4ee9c6e2a571'
+sha512sums=('84da36cf798421528156a93c1b722fe604df5811a9db66244a9085af9ae17ce13d1e8057b3e53aa1af61acf457ce9d13ae240ebade3a7e60ea3cde1f1d9bf264'
 'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2018-12-18 Thread Felix Yan via arch-commits
Date: Tuesday, December 18, 2018 @ 17:12:12
  Author: felixonmars
Revision: 342520

upgpkg: python-mako 1.0.7-3

fix permission of license file

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-18 17:11:28 UTC (rev 342519)
+++ PKGBUILD2018-12-18 17:12:12 UTC (rev 342520)
@@ -3,7 +3,7 @@
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.0.7
-pkgrel=2
+pkgrel=3
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="http://www.makotemplates.org/;
@@ -43,7 +43,7 @@
 
   cd Mako-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
-  install -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-mako() {
@@ -51,7 +51,7 @@
 
   cd Mako-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 
   mv "$pkgdir"/usr/bin/mako-render{,2}
 }


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

2018-07-17 Thread Evangelos Foutras via arch-commits
Date: Wednesday, July 18, 2018 @ 01:48:02
  Author: foutrelis
Revision: 328932

Python 3.7 rebuild

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-18 01:44:39 UTC (rev 328931)
+++ PKGBUILD2018-07-18 01:48:02 UTC (rev 328932)
@@ -4,7 +4,7 @@
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.0.7
-pkgrel=1
+pkgrel=2
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="http://www.makotemplates.org/;


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

2017-07-14 Thread Felix Yan
Date: Friday, July 14, 2017 @ 06:04:21
  Author: felixonmars
Revision: 300522

upgpkg: python-mako 1.0.7-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-14 04:29:24 UTC (rev 300521)
+++ PKGBUILD2017-07-14 06:04:21 UTC (rev 300522)
@@ -3,8 +3,8 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.6
-pkgrel=2
+pkgver=1.0.7
+pkgrel=1
 pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="http://www.makotemplates.org/;
@@ -15,8 +15,8 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha1sums=('8cbc52319268525208c88dd3ef62c929069e4b24'
-  'SKIP')
+sha512sums=('d67af6788bf8603010361ce8b6d0355b0191657c07f3b5845f9d5e91653c3e349a7b35d5b36aa9c7f291973c83911ce94075e1cad78e6935d0ed4ee9c6e2a571'
+'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 
 prepare() {


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

2017-04-15 Thread Felix Yan
Date: Sunday, April 16, 2017 @ 04:01:00
  Author: felixonmars
Revision: 292942

Use latest upstream description

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-15 20:46:17 UTC (rev 292941)
+++ PKGBUILD2017-04-16 04:01:00 UTC (rev 292942)
@@ -5,7 +5,7 @@
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.0.6
 pkgrel=2
-pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
+pkgdesc="A super-fast templating language that borrows the best ideas from the 
existing templating languages"
 arch=('any')
 url="http://www.makotemplates.org/;
 license=('MIT')


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

2016-12-24 Thread Bartłomiej Piotrowski
Date: Saturday, December 24, 2016 @ 18:02:17
  Author: bpiotrowski
Revision: 284675

Python 3.6 rebuild

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 17:58:37 UTC (rev 284674)
+++ PKGBUILD2016-12-24 18:02:17 UTC (rev 284675)
@@ -4,7 +4,7 @@
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
 arch=('any')
 url="http://www.makotemplates.org/;


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

2016-11-09 Thread Felix Yan
Date: Thursday, November 10, 2016 @ 07:12:19
  Author: felixonmars
Revision: 280280

upgpkg: python-mako 1.0.6-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-10 02:53:28 UTC (rev 280279)
+++ PKGBUILD2016-11-10 07:12:19 UTC (rev 280280)
@@ -3,7 +3,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.5
+pkgver=1.0.6
 pkgrel=1
 pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
 arch=('any')
@@ -15,7 +15,7 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
-sha1sums=('8eec6877da978ae356e4c5faca5006fe03670621'
+sha1sums=('8cbc52319268525208c88dd3ef62c929069e4b24'
   'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2016-11-03 Thread Felix Yan
Date: Friday, November 4, 2016 @ 02:39:54
  Author: felixonmars
Revision: 279823

upgpkg: python-mako 1.0.5-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-11-04 00:12:58 UTC (rev 279822)
+++ PKGBUILD2016-11-04 02:39:54 UTC (rev 279823)
@@ -3,7 +3,7 @@
 
 pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.4
+pkgver=1.0.5
 pkgrel=1
 pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
 arch=('any')
@@ -14,8 +14,8 @@
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
-source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
-sha1sums=('64f9cadffd5cc264ea91d81df6e24ce660a15836'
+source=("https://pypi.io/packages/source/M/Mako/Mako-$pkgver.tar.gz"{,.asc})
+sha1sums=('8eec6877da978ae356e4c5faca5006fe03670621'
   'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 05:42:11
  Author: fyan
Revision: 261315

upgpkg: python-mako 1.0.4-1

Modified:
  python-mako/trunk/PKGBUILD

--+
 PKGBUILD |   43 ++-
 1 file changed, 22 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 02:27:16 UTC (rev 261314)
+++ PKGBUILD2016-03-11 04:42:11 UTC (rev 261315)
@@ -1,8 +1,9 @@
 # $Id$
 # Maintainer: Felix Yan 
 
+pkgbase=python-mako
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.3
+pkgver=1.0.4
 pkgrel=1
 pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
 arch=('any')
@@ -10,48 +11,48 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
  'python-beaker' 'python2-beaker')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock'
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 
source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
-sha1sums=('d68636bc4b2d4c4030c936d88c4e05a8080b4463'
+sha1sums=('64f9cadffd5cc264ea91d81df6e24ce660a15836'
   'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 
 prepare() {
-cp -a Mako-$pkgver{,-py2}
+  cp -a Mako-$pkgver{,-py2}
 }
 
 build() {
-cd "$srcdir/Mako-$pkgver"
-python setup.py build
+  cd "$srcdir"/Mako-$pkgver
+  python setup.py build
 
-cd "$srcdir/Mako-$pkgver-py2"
-python2 setup.py build
+  cd "$srcdir"/Mako-$pkgver-py2
+  python2 setup.py build
 }
 
 check() {
-cd "$srcdir/Mako-$pkgver"
-python setup.py test
+  cd "$srcdir"/Mako-$pkgver
+  python setup.py ptr
 
-cd "$srcdir/Mako-$pkgver-py2"
-python2 setup.py test
+  cd "$srcdir"/Mako-$pkgver-py2
+  python2 setup.py ptr
 }
 
 package_python-mako() {
-depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
+  depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
 
-cd Mako-$pkgver
-python setup.py install --root="$pkgdir" --optimize=1
-install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  cd Mako-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/COPYING
 }
 
 package_python2-mako() {
-depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
+  depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
 
-cd Mako-$pkgver-py2
-python2 setup.py install --root="$pkgdir" --optimize=1
-install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  cd Mako-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/COPYING
 
-mv "$pkgdir/usr/bin/mako-render"{,2}
+  mv "$pkgdir"/usr/bin/mako-render{,2}
 }


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

2015-10-27 Thread Felix Yan
Date: Wednesday, October 28, 2015 @ 02:55:47
  Author: fyan
Revision: 249825

upgpkg: python-mako 1.0.3-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-10-28 01:53:22 UTC (rev 249824)
+++ PKGBUILD2015-10-28 01:55:47 UTC (rev 249825)
@@ -2,8 +2,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.2
-pkgrel=3
+pkgver=1.0.3
+pkgrel=1
 pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
 arch=('any')
 url="http://www.makotemplates.org/;
@@ -14,27 +14,27 @@
   'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
   'python-dogpile.cache' 'python2-dogpile.cache')
 
source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
-sha1sums=('d53b9161985ca4bdd1aaec8d5f694856e961bdf1'
+sha1sums=('d68636bc4b2d4c4030c936d88c4e05a8080b4463'
   'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 
 prepare() {
-cp -a Mako-$pkgver python2-Mako-$pkgver
+cp -a Mako-$pkgver{,-py2}
 }
 
 build() {
-cd Mako-$pkgver
-python3 setup.py build
+cd "$srcdir/Mako-$pkgver"
+python setup.py build
 
-cd ../python2-Mako-$pkgver
+cd "$srcdir/Mako-$pkgver-py2"
 python2 setup.py build
 }
 
 check() {
-cd Mako-$pkgver
-python3 setup.py test
+cd "$srcdir/Mako-$pkgver"
+python setup.py test
 
-cd ../python2-Mako-$pkgver
+cd "$srcdir/Mako-$pkgver-py2"
 python2 setup.py test
 }
 
@@ -42,16 +42,16 @@
 depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
 
 cd Mako-$pkgver
-python3 setup.py install --root="$pkgdir" --optimize=1
-install -D LICENSE "$pkgdir/usr/share/licenses/python-mako/COPYING"
+python setup.py install --root="$pkgdir" --optimize=1
+install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
 }
 
 package_python2-mako() {
 depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
 
-cd python2-Mako-$pkgver
+cd Mako-$pkgver-py2
 python2 setup.py install --root="$pkgdir" --optimize=1
-install -D LICENSE "$pkgdir/usr/share/licenses/python2-mako/COPYING"
+install -D LICENSE "$pkgdir/usr/share/licenses/$pkgname/COPYING"
 
-mv "$pkgdir/usr/bin/mako-render" "$pkgdir/usr/bin/mako-render2"
+mv "$pkgdir/usr/bin/mako-render"{,2}
 }


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

2015-09-19 Thread Felix Yan
Date: Saturday, September 19, 2015 @ 14:42:13
  Author: fyan
Revision: 246607

upgpkg: python-mako 1.0.2-3

rebuild for python 3.5

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-19 10:56:16 UTC (rev 246606)
+++ PKGBUILD2015-09-19 12:42:13 UTC (rev 246607)
@@ -3,7 +3,7 @@
 
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Hyperfast and lightweight templating for the Python2 platform"
 arch=('any')
 url="http://www.makotemplates.org/;


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

2015-08-27 Thread Felix Yan
Date: Thursday, August 27, 2015 @ 15:34:40
  Author: fyan
Revision: 244888

upgpkg: python-mako 1.0.2-2

- fix dependency on setuptools (for entry points)
- enable cache tests

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-08-27 07:27:34 UTC (rev 244887)
+++ PKGBUILD2015-08-27 13:34:40 UTC (rev 244888)
@@ -3,7 +3,7 @@
 
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
 url=http://www.makotemplates.org/;
@@ -11,7 +11,8 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
  'python-beaker' 'python2-beaker')
 checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock'
-  'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments')
+  'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments'
+  'python-dogpile.cache' 'python2-dogpile.cache')
 
source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
 sha1sums=('d53b9161985ca4bdd1aaec8d5f694856e961bdf1'
   'SKIP')
@@ -38,7 +39,7 @@
 }
 
 package_python-mako() {
-depends=('python-markupsafe' 'python-beaker')
+depends=('python-markupsafe' 'python-beaker' 'python-setuptools')
 
 cd Mako-$pkgver
 python3 setup.py install --root=$pkgdir --optimize=1
@@ -46,7 +47,7 @@
 }
 
 package_python2-mako() {
-depends=('python2-markupsafe' 'python2-beaker')
+depends=('python2-markupsafe' 'python2-beaker' 'python2-setuptools')
 
 cd python2-Mako-$pkgver
 python2 setup.py install --root=$pkgdir --optimize=1


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

2015-08-27 Thread Felix Yan
Date: Thursday, August 27, 2015 @ 09:27:17
  Author: fyan
Revision: 244886

upgpkg: python-mako 1.0.2-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-08-27 07:11:47 UTC (rev 244885)
+++ PKGBUILD2015-08-27 07:27:17 UTC (rev 244886)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.1
+pkgver=1.0.2
 pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
@@ -10,9 +10,10 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
  'python-beaker' 'python2-beaker')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock'
+  'python-babel' 'python2-babel' 'python-pygments' 
'python2-pygments')
 
source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
-sha1sums=('00ef43d5722c5407e5d64047ef4e3218006d741c'
+sha1sums=('d53b9161985ca4bdd1aaec8d5f694856e961bdf1'
   'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 


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

2015-01-22 Thread Felix Yan
Date: Friday, January 23, 2015 @ 04:15:30
  Author: fyan
Revision: 229667

upgpkg: python-mako 1.0.1-1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-23 00:23:04 UTC (rev 229666)
+++ PKGBUILD2015-01-23 03:15:30 UTC (rev 229667)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
@@ -12,12 +12,12 @@
  'python-beaker' 'python2-beaker')
 checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
 
source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
-sha1sums=('580b3a8043833e3c3340d4b661a33f6ccc6a35d5'
+sha1sums=('00ef43d5722c5407e5d64047ef4e3218006d741c'
   'SKIP')
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 
 prepare() {
-cp -r Mako-$pkgver python2-Mako-$pkgver
+cp -a Mako-$pkgver python2-Mako-$pkgver
 }
 
 build() {


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

2014-12-29 Thread Felix Yan
Date: Tuesday, December 30, 2014 @ 03:15:54
  Author: fyan
Revision: 228166

add validpgpkeys integrity check

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-30 02:09:46 UTC (rev 228165)
+++ PKGBUILD2014-12-30 02:15:54 UTC (rev 228166)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
+# Maintainer: Felix Yan felixonm...@archlinux.org
 
 pkgname=('python-mako' 'python2-mako')
 pkgver=1.0.0
@@ -14,6 +14,7 @@
 
source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
 sha1sums=('580b3a8043833e3c3340d4b661a33f6ccc6a35d5'
   'SKIP')
+validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')  # Michael Bayer
 
 prepare() {
 cp -r Mako-$pkgver python2-Mako-$pkgver


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

2014-06-08 Thread Felix Yan
Date: Monday, June 9, 2014 @ 02:33:16
  Author: fyan
Revision: 214397

upgpkg: python-mako 1.0.0-1

- new upstream release
- mako-render is now in the python3 version, and mako-render2 is provided by 
python2-mako instead.

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-09 00:23:27 UTC (rev 214396)
+++ PKGBUILD2014-06-09 00:33:16 UTC (rev 214397)
@@ -1,24 +1,22 @@
 # $Id$
-# Maintainer : 
+# Maintainer: Felix Yan felixonm...@gmail.com
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=0.9.1
-pkgrel=2
+pkgver=1.0.0
+pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-markupsafe' 
'python2-markupsafe'
+ 'python-beaker' 'python2-beaker')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
 
source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
-sha1sums=('aa01bafca5a835eb92a9048be92414fa83da102b'
+sha1sums=('580b3a8043833e3c3340d4b661a33f6ccc6a35d5'
   'SKIP')
 
 prepare() {
 cp -r Mako-$pkgver python2-Mako-$pkgver
-mv Mako-$pkgver/scripts/mako-render 
Mako-$pkgver/scripts/python3-mako-render
-2to3 -nw Mako-$pkgver/scripts/python3-mako-render
-sed -i 's/mako-render/python3-mako-render/' Mako-$pkgver/setup.py
 }
 
 build() {
@@ -51,4 +49,6 @@
 cd python2-Mako-$pkgver
 python2 setup.py install --root=$pkgdir --optimize=1
 install -D LICENSE $pkgdir/usr/share/licenses/python2-mako/COPYING
+
+mv $pkgdir/usr/bin/mako-render $pkgdir/usr/bin/mako-render2
 }



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

2014-03-16 Thread Felix Yan
Date: Monday, March 17, 2014 @ 05:45:51
  Author: fyan
Revision: 208008

upgpkg: python-mako 0.9.1-2

- python 3.4 rebuild

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-17 04:32:47 UTC (rev 208007)
+++ PKGBUILD2014-03-17 04:45:51 UTC (rev 208008)
@@ -3,7 +3,7 @@
 
 pkgname=('python-mako' 'python2-mako')
 pkgver=0.9.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
 url=http://www.makotemplates.org/;



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

2014-01-10 Thread Eric Bélanger
Date: Saturday, January 11, 2014 @ 03:29:26
  Author: eric
Revision: 203459

upgpkg: python-mako 0.9.1-1

Upstream update

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-01-11 02:11:21 UTC (rev 203458)
+++ PKGBUILD2014-01-11 02:29:26 UTC (rev 203459)
@@ -2,7 +2,7 @@
 # Maintainer : 
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=0.9.0
+pkgver=0.9.1
 pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
@@ -10,8 +10,9 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose')
-source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
-md5sums=('e2627ba5c65f83dfe39d9a0892ae517d')
+source=(https://pypi.python.org/packages/source/M/Mako/Mako-$pkgver.tar.gz{,.asc})
+sha1sums=('aa01bafca5a835eb92a9048be92414fa83da102b'
+  'SKIP')
 
 prepare() {
 cp -r Mako-$pkgver python2-Mako-$pkgver



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

2013-09-20 Thread Eric Bélanger
Date: Friday, September 20, 2013 @ 21:21:54
  Author: eric
Revision: 194667

upgpkg: python-mako 0.9.0-1

Upstream update

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-20 19:11:06 UTC (rev 194666)
+++ PKGBUILD2013-09-20 19:21:54 UTC (rev 194667)
@@ -2,8 +2,8 @@
 # Maintainer : 
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=0.8.1
-pkgrel=2
+pkgver=0.9.0
+pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
 url=http://www.makotemplates.org/;
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
-md5sums=('96d962464ce6316004af0cc48495d73e')
+md5sums=('e2627ba5c65f83dfe39d9a0892ae517d')
 
 prepare() {
 cp -r Mako-$pkgver python2-Mako-$pkgver



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

2013-08-17 Thread Ángel Velásquez
Date: Saturday, August 17, 2013 @ 11:55:27
  Author: angvp
Revision: 193146

upgpkg: python-mako 0.8.1-2

Changed dependencies to setuptools instead distribute

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-08-17 08:42:05 UTC (rev 193145)
+++ PKGBUILD2013-08-17 09:55:27 UTC (rev 193146)
@@ -3,12 +3,12 @@
 
 pkgname=('python-mako' 'python2-mako')
 pkgver=0.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('MIT')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
 md5sums=('96d962464ce6316004af0cc48495d73e')



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

2013-06-04 Thread Eric Bélanger
Date: Tuesday, June 4, 2013 @ 20:41:51
  Author: eric
Revision: 187171

upgpkg: python-mako 0.8.1-1

Upstream update

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-06-04 17:39:43 UTC (rev 187170)
+++ PKGBUILD2013-06-04 18:41:51 UTC (rev 187171)
@@ -1,9 +1,8 @@
 # $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Roberto Alsina rals...@kde.org
+# Maintainer : 
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=0.8.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
@@ -12,7 +11,7 @@
 makedepends=('python-distribute' 'python2-distribute')
 checkdepends=('python-nose' 'python2-nose')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
-md5sums=('4ac2c6fdfb076b9387ca5f62d8c9384f')
+md5sums=('96d962464ce6316004af0cc48495d73e')
 
 prepare() {
 cp -r Mako-$pkgver python2-Mako-$pkgver



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

2013-04-23 Thread Eric Bélanger
Date: Tuesday, April 23, 2013 @ 23:33:54
  Author: eric
Revision: 183571

upgpkg: python-mako 0.8.0-1

Upstream update, Add prepare and check function

Modified:
  python-mako/trunk/PKGBUILD

--+
 PKGBUILD |   32 ++--
 1 file changed, 22 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-23 18:54:32 UTC (rev 183570)
+++ PKGBUILD2013-04-23 21:33:54 UTC (rev 183571)
@@ -3,40 +3,52 @@
 # Contributor: Roberto Alsina rals...@kde.org
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=0.7.3
+pkgver=0.8.0
 pkgrel=1
-pkgdesc=Hyperfast and lightweight templating for the Python2 platform.
+pkgdesc=Hyperfast and lightweight templating for the Python2 platform
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('MIT')
 makedepends=('python-distribute' 'python2-distribute')
+checkdepends=('python-nose' 'python2-nose')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
-md5sums=('d41a87c0c1f2943940cb370cf895e2be')
+md5sums=('4ac2c6fdfb076b9387ca5f62d8c9384f')
 
-build() {
+prepare() {
 cp -r Mako-$pkgver python2-Mako-$pkgver
+mv Mako-$pkgver/scripts/mako-render 
Mako-$pkgver/scripts/python3-mako-render
+2to3 -nw Mako-$pkgver/scripts/python3-mako-render
+sed -i 's/mako-render/python3-mako-render/' Mako-$pkgver/setup.py
+}
 
-cd $srcdir/Mako-$pkgver
+build() {
+cd Mako-$pkgver
 python3 setup.py build
 
-cd $srcdir/python2-Mako-$pkgver
+cd ../python2-Mako-$pkgver
 python2 setup.py build
 }
 
+check() {
+cd Mako-$pkgver
+python3 setup.py test
+
+cd ../python2-Mako-$pkgver
+python2 setup.py test
+}
+
 package_python-mako() {
 depends=('python-markupsafe' 'python-beaker')
 
-cd $srcdir/Mako-$pkgver
+cd Mako-$pkgver
 python3 setup.py install --root=$pkgdir --optimize=1
-mv $pkgdir/usr/bin/mako-render $pkgdir/usr/bin/python3-mako-render
-2to3 -nw $pkgdir/usr/bin/python3-mako-render # FS#33023
 install -D LICENSE $pkgdir/usr/share/licenses/python-mako/COPYING
 }
 
 package_python2-mako() {
 depends=('python2-markupsafe' 'python2-beaker')
 
-cd $srcdir/python2-Mako-$pkgver
+cd python2-Mako-$pkgver
 python2 setup.py install --root=$pkgdir --optimize=1
 install -D LICENSE $pkgdir/usr/share/licenses/python2-mako/COPYING
 }



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

2012-12-15 Thread Stéphane Gaudreault
Date: Saturday, December 15, 2012 @ 18:50:32
  Author: stephane
Revision: 173240

upgpkg: python-mako 0.7.3-1

upstream update; fix FS#33023

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-12-15 22:05:18 UTC (rev 173239)
+++ PKGBUILD2012-12-15 23:50:32 UTC (rev 173240)
@@ -3,15 +3,15 @@
 # Contributor: Roberto Alsina rals...@kde.org
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=0.7.2
-pkgrel=2
+pkgver=0.7.3
+pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform.
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('MIT')
 makedepends=('python-distribute' 'python2-distribute')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
-md5sums=('e3c0a677aa4216da9e89ef8fa76cbafb')
+md5sums=('d41a87c0c1f2943940cb370cf895e2be')
 
 build() {
 cp -r Mako-$pkgver python2-Mako-$pkgver
@@ -29,6 +29,7 @@
 cd $srcdir/Mako-$pkgver
 python3 setup.py install --root=$pkgdir --optimize=1
 mv $pkgdir/usr/bin/mako-render $pkgdir/usr/bin/python3-mako-render
+2to3 -nw $pkgdir/usr/bin/python3-mako-render # FS#33023
 install -D LICENSE $pkgdir/usr/share/licenses/python-mako/COPYING
 }
 



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

2012-10-02 Thread Stéphane Gaudreault
Date: Tuesday, October 2, 2012 @ 20:41:48
  Author: stephane
Revision: 167685

upgpkg: python-mako 0.7.2-2

rebuild for python 3.3.0

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-03 00:38:09 UTC (rev 167684)
+++ PKGBUILD2012-10-03 00:41:48 UTC (rev 167685)
@@ -4,7 +4,7 @@
 
 pkgname=('python-mako' 'python2-mako')
 pkgver=0.7.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform.
 arch=('any')
 url=http://www.makotemplates.org/;
@@ -17,7 +17,7 @@
 cp -r Mako-$pkgver python2-Mako-$pkgver
 
 cd $srcdir/Mako-$pkgver
-python setup.py build
+python3 setup.py build
 
 cd $srcdir/python2-Mako-$pkgver
 python2 setup.py build
@@ -27,7 +27,7 @@
 depends=('python-markupsafe' 'python-beaker')
 
 cd $srcdir/Mako-$pkgver
-python setup.py install --root=$pkgdir --optimize=1
+python3 setup.py install --root=$pkgdir --optimize=1
 mv $pkgdir/usr/bin/mako-render $pkgdir/usr/bin/python3-mako-render
 install -D LICENSE $pkgdir/usr/share/licenses/python-mako/COPYING
 }



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

2012-08-13 Thread Eric Bélanger
Date: Monday, August 13, 2012 @ 17:21:29
  Author: eric
Revision: 165229

upgpkg: python-mako 0.7.2-1

Upstream update, Correct license

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-08-13 20:54:28 UTC (rev 165228)
+++ PKGBUILD2012-08-13 21:21:29 UTC (rev 165229)
@@ -3,15 +3,15 @@
 # Contributor: Roberto Alsina rals...@kde.org
 
 pkgname=('python-mako' 'python2-mako')
-pkgver=0.5.0
-pkgrel=2
+pkgver=0.7.2
+pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform.
 arch=('any')
 url=http://www.makotemplates.org/;
-license=('custom')
+license=('MIT')
 makedepends=('python-distribute' 'python2-distribute')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
-md5sums=('532d7aa7ffbfd2873c1461a30431366a')
+md5sums=('e3c0a677aa4216da9e89ef8fa76cbafb')
 
 build() {
 cp -r Mako-$pkgver python2-Mako-$pkgver



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

2011-12-22 Thread Ionut Biru
Date: Thursday, December 22, 2011 @ 12:13:53
  Author: ibiru
Revision: 145452

add python3 support

Modified:
  python-mako/trunk/PKGBUILD

--+
 PKGBUILD |   29 ++---
 1 file changed, 22 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-22 16:54:10 UTC (rev 145451)
+++ PKGBUILD2011-12-22 17:13:53 UTC (rev 145452)
@@ -2,25 +2,40 @@
 # Maintainer : Ionut Biru ib...@archlinux.org
 # Contributor: Roberto Alsina rals...@kde.org
 
-pkgname=python-mako
+pkgname=('python-mako' 'python2-mako')
 pkgver=0.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform.
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('custom')
-depends=('python2' 'python-markupsafe' 'python-beaker')
-makedepends=('python2-distribute')
-source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz)
+makedepends=('python-distribute' 'python2-distribute')
+source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz;)
 md5sums=('532d7aa7ffbfd2873c1461a30431366a')
 
 build() {
+cp -r Mako-$pkgver python2-Mako-$pkgver
+
 cd $srcdir/Mako-$pkgver
+python setup.py build
+
+cd $srcdir/python2-Mako-$pkgver
 python2 setup.py build
 }
 
-build() {
+package_python-mako() {
+depends=('python-markupsafe' 'python-beaker')
+
 cd $srcdir/Mako-$pkgver
-python2 setup.py install --root=$pkgdir --optimize=1
+python setup.py install --root=$pkgdir --optimize=1
+mv $pkgdir/usr/bin/mako-render $pkgdir/usr/bin/python3-mako-render
 install -D LICENSE $pkgdir/usr/share/licenses/python-mako/COPYING
 }
+
+package_python2-mako() {
+depends=('python2-markupsafe' 'python2-beaker')
+
+cd $srcdir/python2-Mako-$pkgver
+python2 setup.py install --root=$pkgdir --optimize=1
+install -D LICENSE $pkgdir/usr/share/licenses/python2-mako/COPYING
+}



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

2011-10-08 Thread Ionut Biru
Date: Saturday, October 8, 2011 @ 08:19:14
  Author: ibiru
Revision: 140182

update to 0.5.0

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-10-08 12:18:04 UTC (rev 140181)
+++ PKGBUILD2011-10-08 12:19:14 UTC (rev 140182)
@@ -3,7 +3,7 @@
 # Contributor: Roberto Alsina rals...@kde.org
 
 pkgname=python-mako
-pkgver=0.4.2
+pkgver=0.5.0
 pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python2 platform.
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('python2' 'python-markupsafe' 'python-beaker')
 makedepends=('python2-distribute')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz)
-md5sums=('2ff0747e611b37d44e6409c4e0a80a08')
+md5sums=('532d7aa7ffbfd2873c1461a30431366a')
 
 build() {
 cd $srcdir/Mako-$pkgver



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

2011-09-23 Thread Ionut Biru
Date: Friday, September 23, 2011 @ 14:54:26
  Author: ibiru
Revision: 138459

update to 0.4.2

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-09-23 18:52:47 UTC (rev 138458)
+++ PKGBUILD2011-09-23 18:54:26 UTC (rev 138459)
@@ -1,17 +1,18 @@
 # $Id$
 # Maintainer : Ionut Biru ib...@archlinux.org
 # Contributor: Roberto Alsina rals...@kde.org
+
 pkgname=python-mako
-pkgver=0.4.1
+pkgver=0.4.2
 pkgrel=1
-pkgdesc=Hyperfast and lightweight templating for the Python platform.
+pkgdesc=Hyperfast and lightweight templating for the Python2 platform.
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('custom')
 depends=('python2' 'python-markupsafe' 'python-beaker')
 makedepends=('python2-distribute')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz)
-md5sums=('c69bceb23c832b74075f438408fea118')
+md5sums=('2ff0747e611b37d44e6409c4e0a80a08')
 
 build() {
 cd $srcdir/Mako-$pkgver



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

2011-04-20 Thread Ionut Biru
Date: Wednesday, April 20, 2011 @ 08:05:04
  Author: ibiru
Revision: 120148

update to 0.4.1

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-20 12:01:11 UTC (rev 120147)
+++ PKGBUILD2011-04-20 12:05:04 UTC (rev 120148)
@@ -2,19 +2,24 @@
 # Maintainer : Ionut Biru ib...@archlinux.org
 # Contributor: Roberto Alsina rals...@kde.org
 pkgname=python-mako
-pkgver=0.3.4
-pkgrel=4
+pkgver=0.4.1
+pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python platform.
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('custom')
-depends=('python2' 'python-markupsafe=0.9.2' 'python-beaker=1.5.4')
-makedepends=('setuptools')
+depends=('python2' 'python-markupsafe' 'python-beaker')
+makedepends=('python2-distribute')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz)
-md5sums=('2ae56ccc6c9b5c4e2e67f42b69475009')
+md5sums=('c69bceb23c832b74075f438408fea118')
 
 build() {
-  cd $srcdir/Mako-$pkgver
-  python2 setup.py install --root=$pkgdir --optimize=1 || return 1
-  install -D LICENSE $pkgdir/usr/share/licenses/python-mako/COPYING || 
return 1
+cd $srcdir/Mako-$pkgver
+python2 setup.py build
 }
+
+build() {
+cd $srcdir/Mako-$pkgver
+python2 setup.py install --root=$pkgdir --optimize=1
+install -D LICENSE $pkgdir/usr/share/licenses/python-mako/COPYING
+}



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

2010-08-18 Thread Ionut Biru
Date: Wednesday, August 18, 2010 @ 11:32:33
  Author: ibiru
Revision: 87883

upgpkg: python-mako 0.3.4-4
python rebuild

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-08-18 15:30:25 UTC (rev 87882)
+++ PKGBUILD2010-08-18 15:32:33 UTC (rev 87883)
@@ -3,18 +3,18 @@
 # Contributor: Roberto Alsina rals...@kde.org
 pkgname=python-mako
 pkgver=0.3.4
-pkgrel=3
+pkgrel=4
 pkgdesc=Hyperfast and lightweight templating for the Python platform.
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('custom')
-depends=('python=2.6' 'python-markupsafe=0.9.2' 'python-beaker=1.5.4')
+depends=('python2' 'python-markupsafe=0.9.2' 'python-beaker=1.5.4')
 makedepends=('setuptools')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz)
 md5sums=('2ae56ccc6c9b5c4e2e67f42b69475009')
 
 build() {
   cd $srcdir/Mako-$pkgver
-  python setup.py install --root=$pkgdir --optimize=1 || return 1
+  python2 setup.py install --root=$pkgdir --optimize=1 || return 1
   install -D LICENSE $pkgdir/usr/share/licenses/python-mako/COPYING || 
return 1
 }



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

2010-08-07 Thread Ionut Biru
Date: Saturday, August 7, 2010 @ 15:13:53
  Author: ibiru
Revision: 86966

upgpkg: python-mako 0.3.4-3
add python-breaker as dependency. fixed FS#20400 and FS#20395

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-08-07 19:13:29 UTC (rev 86965)
+++ PKGBUILD2010-08-07 19:13:53 UTC (rev 86966)
@@ -3,12 +3,12 @@
 # Contributor: Roberto Alsina rals...@kde.org
 pkgname=python-mako
 pkgver=0.3.4
-pkgrel=2
+pkgrel=3
 pkgdesc=Hyperfast and lightweight templating for the Python platform.
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('custom')
-depends=('python=2.6' 'python-markupsafe=0.9.2')
+depends=('python=2.6' 'python-markupsafe=0.9.2' 'python-beaker=1.5.4')
 makedepends=('setuptools')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz)
 md5sums=('2ae56ccc6c9b5c4e2e67f42b69475009')



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

2010-07-23 Thread Ionut Biru
Date: Friday, July 23, 2010 @ 12:31:56
  Author: ibiru
Revision: 85984

upgpkg: python-mako 0.3.4-2 add python-markupsafe as dependency

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-07-23 16:27:17 UTC (rev 85983)
+++ PKGBUILD2010-07-23 16:31:56 UTC (rev 85984)
@@ -3,12 +3,12 @@
 # Contributor: Roberto Alsina rals...@kde.org
 pkgname=python-mako
 pkgver=0.3.4
-pkgrel=1
+pkgrel=2
 pkgdesc=Hyperfast and lightweight templating for the Python platform.
 arch=('any')
 url=http://www.makotemplates.org/;
 license=('custom')
-depends=('python=2.6')
+depends=('python=2.6' 'python-markupsafe=0.9.2')
 makedepends=('setuptools')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz)
 md5sums=('2ae56ccc6c9b5c4e2e67f42b69475009')



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

2010-07-22 Thread Ionut Biru
Date: Thursday, July 22, 2010 @ 15:10:23
  Author: ibiru
Revision: 85952

upgpkg: python-mako 0.3.4-1 uptdate to 0.3.4

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-07-22 19:09:46 UTC (rev 85951)
+++ PKGBUILD2010-07-22 19:10:23 UTC (rev 85952)
@@ -2,7 +2,7 @@
 # Maintainer : Ionut Biru ib...@archlinux.org
 # Contributor: Roberto Alsina rals...@kde.org
 pkgname=python-mako
-pkgver=0.3.3
+pkgver=0.3.4
 pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python platform.
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python=2.6')
 makedepends=('setuptools')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz)
-md5sums=('2e8fbbb7ea6dc4dde47970cdfd08901e')
+md5sums=('2ae56ccc6c9b5c4e2e67f42b69475009')
 
 build() {
   cd $srcdir/Mako-$pkgver



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

2010-05-01 Thread Ionut Biru
Date: Saturday, May 1, 2010 @ 11:37:59
  Author: ibiru
Revision: 79178

upgpkg: python-mako 0.3.2-1
update to 0.3.2

Modified:
  python-mako/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-05-01 15:37:50 UTC (rev 79177)
+++ PKGBUILD2010-05-01 15:37:59 UTC (rev 79178)
@@ -2,7 +2,7 @@
 # Maintainer : Ionut Biru io...@archlinux.ro
 # Contributor: Roberto Alsina rals...@kde.org
 pkgname=python-mako
-pkgver=0.2.5
+pkgver=0.3.2
 pkgrel=1
 pkgdesc=Hyperfast and lightweight templating for the Python platform.
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python=2.6')
 makedepends=('setuptools')
 source=(http://www.makotemplates.org/downloads/Mako-$pkgver.tar.gz)
-md5sums=('d8ca783630dc5e93970a2075532fa643')
+md5sums=('4fc68467ee226111e102510054ae1e51')
 
 build() {
   cd $srcdir/Mako-$pkgver