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

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Monday, November 9, 2020 @ 15:50:30
  Author: foutrelis
Revision: 747185

upgpkg: capstone 4.0.2-2: Python 3.9 rebuild

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-09 15:50:28 UTC (rev 747184)
+++ PKGBUILD2020-11-09 15:50:30 UTC (rev 747185)
@@ -4,7 +4,7 @@
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone')
 pkgver=4.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight multi-platform, multi-architecture disassembly framework'
 url='https://www.capstone-engine.org/index.html'
 arch=('x86_64')


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

2020-05-08 Thread Levente Polyak via arch-commits
Date: Friday, May 8, 2020 @ 20:43:46
  Author: anthraxx
Revision: 625778

upgpkg: capstone 4.0.2-1

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-08 20:23:23 UTC (rev 625777)
+++ PKGBUILD2020-05-08 20:43:46 UTC (rev 625778)
@@ -3,8 +3,8 @@
 
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone')
-pkgver=4.0.1
-pkgrel=3
+pkgver=4.0.2
+pkgrel=1
 pkgdesc='Lightweight multi-platform, multi-architecture disassembly framework'
 url='https://www.capstone-engine.org/index.html'
 arch=('x86_64')
@@ -11,15 +11,21 @@
 license=('BSD')
 makedepends=('glibc' 'python' 'python-setuptools')
 options=('staticlibs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aquynh/capstone/archive/${pkgver}.tar.gz)
-sha256sums=('79bbea8dbe466bd7d051e037db5961fdb34f67c9fac5c3471dd105cfb1e05dc7')
-sha512sums=('43c52024065b41b45eff9423341db3f3d5163fa7aa01b360faa30437786740c8f2c34c36faa04dced5308e09d8bd78df3bad0ab9c06f98612169edb176f83c36')
+source=(https://github.com/aquynh/capstone/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('7f93534517307b737422a8825b66b2a1f3e1cca2049465d60ab12595940154aaf843ba40ed348fce58de58b990c19a0caef289060eb72898cb008a88c470970e')
+b2sums=('435729a8fef2dce6495635352101b3befe563c8404efdbb0dccabecbe2bded332221665bacdbcd9043dda72b652b6f29c0e1a548cefb8c64d5b6b9dc174ed3d9')
 
 build() {
   cd ${pkgbase}-${pkgver}
-  make
+  CFLAGS+=" ${CPPFLAGS}"
+  make V=1
 }
 
+check() {
+  cd ${pkgbase}-${pkgver}
+  make check
+}
+
 package_capstone() {
   depends=('glibc')
   provides=('libcapstone.so')


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

2019-11-08 Thread Antonio Rojas via arch-commits
Date: Saturday, November 9, 2019 @ 00:40:59
  Author: arojas
Revision: 524763

Drop python2

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-09 00:38:56 UTC (rev 524762)
+++ PKGBUILD2019-11-09 00:40:59 UTC (rev 524763)
@@ -2,7 +2,7 @@
 # Contributor: M0Rf30
 
 pkgbase=capstone
-pkgname=('capstone' 'python-capstone' 'python2-capstone')
+pkgname=('capstone' 'python-capstone')
 pkgver=4.0.1
 pkgrel=3
 pkgdesc='Lightweight multi-platform, multi-architecture disassembly framework'
@@ -9,7 +9,7 @@
 url='https://www.capstone-engine.org/index.html'
 arch=('x86_64')
 license=('BSD')
-makedepends=('glibc' 'python' 'python-setuptools' 'python2' 
'python2-setuptools')
+makedepends=('glibc' 'python' 'python-setuptools')
 options=('staticlibs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aquynh/capstone/archive/${pkgver}.tar.gz)
 sha256sums=('79bbea8dbe466bd7d051e037db5961fdb34f67c9fac5c3471dd105cfb1e05dc7')
@@ -36,11 +36,4 @@
   install -Dm 644 ../../LICENSE.TXT -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
 }
 
-package_python2-capstone() {
-  depends=('capstone' 'python2')
-  cd ${pkgbase}-${pkgver}/bindings/python
-  python2 setup.py install -O1 --root="${pkgdir}" --prefix=/usr
-  install -Dm 644 ../../LICENSE.TXT -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
 # vim: ts=2 sw=2 et:


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

2019-10-31 Thread Felix Yan via arch-commits
Date: Thursday, October 31, 2019 @ 16:43:12
  Author: felixonmars
Revision: 521138

Python 3.8 rebuild

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-31 16:42:33 UTC (rev 521137)
+++ PKGBUILD2019-10-31 16:43:12 UTC (rev 521138)
@@ -4,7 +4,7 @@
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
 pkgver=4.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Lightweight multi-platform, multi-architecture disassembly framework'
 url='https://www.capstone-engine.org/index.html'
 arch=('x86_64')


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

2019-10-25 Thread Evangelos Foutras via arch-commits
Date: Friday, October 25, 2019 @ 15:53:05
  Author: foutrelis
Revision: 519249

Python 3.8 rebuild

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-25 15:52:58 UTC (rev 519248)
+++ PKGBUILD2019-10-25 15:53:05 UTC (rev 519249)
@@ -4,7 +4,7 @@
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
 pkgver=4.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight multi-platform, multi-architecture disassembly framework'
 url='https://www.capstone-engine.org/index.html'
 arch=('x86_64')


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

2019-01-22 Thread Levente Polyak via arch-commits
Date: Tuesday, January 22, 2019 @ 23:38:13
  Author: anthraxx
Revision: 427057

upgpkg: capstone 4.0.1-1

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-01-22 23:02:54 UTC (rev 427056)
+++ PKGBUILD2019-01-22 23:38:13 UTC (rev 427057)
@@ -3,7 +3,7 @@
 
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
-pkgver=3.0.5
+pkgver=4.0.1
 pkgrel=1
 pkgdesc='Lightweight multi-platform, multi-architecture disassembly framework'
 url='https://www.capstone-engine.org/index.html'
@@ -12,8 +12,8 @@
 makedepends=('glibc' 'python' 'python-setuptools' 'python2' 
'python2-setuptools')
 options=('staticlibs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aquynh/capstone/archive/${pkgver}.tar.gz)
-sha256sums=('913dd695e7c5a2b972a6f427cb31f2e93677ec1c38f39dda37d18a91c70b6df1')
-sha512sums=('4d953dd34866046afd4c8896c307f8fdd514ea1331720cb643a6b7095666dbecf6a16264c15c9883a6ed5e06d1332c1e52c5a23bd9dc3cc6493592bc9636bd33')
+sha256sums=('79bbea8dbe466bd7d051e037db5961fdb34f67c9fac5c3471dd105cfb1e05dc7')
+sha512sums=('43c52024065b41b45eff9423341db3f3d5163fa7aa01b360faa30437786740c8f2c34c36faa04dced5308e09d8bd78df3bad0ab9c06f98612169edb176f83c36')
 
 build() {
   cd ${pkgbase}-${pkgver}


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

2018-08-16 Thread Levente Polyak via arch-commits
Date: Thursday, August 16, 2018 @ 21:57:48
  Author: anthraxx
Revision: 372023

upgpkg: capstone 3.0.5-1

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-08-16 21:53:17 UTC (rev 372022)
+++ PKGBUILD2018-08-16 21:57:48 UTC (rev 372023)
@@ -3,16 +3,17 @@
 
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
-pkgver=3.0.4
-pkgrel=6
-pkgdesc='A lightweight multi-platform, multi-architecture disassembly 
framework'
-url='http://www.capstone-engine.org/index.html'
+pkgver=3.0.5
+pkgrel=1
+pkgdesc='Lightweight multi-platform, multi-architecture disassembly framework'
+url='https://www.capstone-engine.org/index.html'
 arch=('x86_64')
 license=('BSD')
-makedepends=('glibc' 'python' 'python2')
+makedepends=('glibc' 'python' 'python-setuptools' 'python2' 
'python2-setuptools')
 options=('staticlibs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aquynh/capstone/archive/${pkgver}.tar.gz)
-sha512sums=('a5c29e7c559b5391d6a4ec9a7f766699ea6d321aa2f1fc57fdcec893107fa3ef2f5f6323629971c1129f1ca087df4f3ad03d0a8234d2eae368c8ccfec04dbf4d')
+sha256sums=('913dd695e7c5a2b972a6f427cb31f2e93677ec1c38f39dda37d18a91c70b6df1')
+sha512sums=('4d953dd34866046afd4c8896c307f8fdd514ea1331720cb643a6b7095666dbecf6a16264c15c9883a6ed5e06d1332c1e52c5a23bd9dc3cc6493592bc9636bd33')
 
 build() {
   cd ${pkgbase}-${pkgver}
@@ -21,9 +22,11 @@
 
 package_capstone() {
   depends=('glibc')
+  provides=('libcapstone.so')
   cd ${pkgbase}-${pkgver}
   make DESTDIR="${pkgdir}" install
-  install -Dm 644 LICENSE.TXT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 docs/README -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE.TXT -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
 
 package_python-capstone() {
@@ -30,7 +33,7 @@
   depends=('capstone' 'python')
   cd ${pkgbase}-${pkgver}/bindings/python
   python setup.py install -O1 --root="${pkgdir}" --prefix=/usr
-  install -Dm 644 ../../LICENSE.TXT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 ../../LICENSE.TXT -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
 }
 
 package_python2-capstone() {
@@ -37,7 +40,7 @@
   depends=('capstone' 'python2')
   cd ${pkgbase}-${pkgver}/bindings/python
   python2 setup.py install -O1 --root="${pkgdir}" --prefix=/usr
-  install -Dm 644 ../../LICENSE.TXT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 ../../LICENSE.TXT -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
 }
 
 # vim: ts=2 sw=2 et:


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

2018-06-30 Thread Felix Yan via arch-commits
Date: Saturday, June 30, 2018 @ 16:55:23
  Author: felixonmars
Revision: 348589

Python 3.7 rebuild

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-30 16:54:35 UTC (rev 348588)
+++ PKGBUILD2018-06-30 16:55:23 UTC (rev 348589)
@@ -4,7 +4,7 @@
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
 pkgver=3.0.4
-pkgrel=5
+pkgrel=6
 pkgdesc='A lightweight multi-platform, multi-architecture disassembly 
framework'
 url='http://www.capstone-engine.org/index.html'
 arch=('x86_64')


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

2017-07-11 Thread Bartłomiej Piotrowski
Date: Tuesday, July 11, 2017 @ 06:41:07
  Author: bpiotrowski
Revision: 243942

3.0.4-5: PIE static libraries rebuild

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-07-11 06:41:01 UTC (rev 243941)
+++ PKGBUILD2017-07-11 06:41:07 UTC (rev 243942)
@@ -4,7 +4,7 @@
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
 pkgver=3.0.4
-pkgrel=4
+pkgrel=5
 pkgdesc='A lightweight multi-platform, multi-architecture disassembly 
framework'
 url='http://www.capstone-engine.org/index.html'
 arch=('i686' 'x86_64')


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

2016-12-24 Thread Felix Yan
Date: Saturday, December 24, 2016 @ 11:00:59
  Author: felixonmars
Revision: 201368

Python 3.6 rebuild

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-12-24 11:00:42 UTC (rev 201367)
+++ PKGBUILD2016-12-24 11:00:59 UTC (rev 201368)
@@ -4,7 +4,7 @@
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
 pkgver=3.0.4
-pkgrel=3
+pkgrel=4
 pkgdesc='A lightweight multi-platform, multi-architecture disassembly 
framework'
 url='http://www.capstone-engine.org/index.html'
 arch=('i686' 'x86_64')


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

2016-05-31 Thread Levente Polyak
Date: Wednesday, June 1, 2016 @ 01:42:19
  Author: anthraxx
Revision: 177569

upgpkg: capstone 3.0.4-3

adding static lib

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-31 21:17:59 UTC (rev 177568)
+++ PKGBUILD2016-05-31 23:42:19 UTC (rev 177569)
@@ -4,13 +4,14 @@
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
 pkgver=3.0.4
-pkgrel=2
+pkgrel=3
 pkgdesc='A lightweight multi-platform, multi-architecture disassembly 
framework'
 url='http://www.capstone-engine.org/index.html'
 arch=('i686' 'x86_64')
 license=('BSD')
 makedepends=('glibc' 'python' 'python2')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aquynh/${pkgbase}/archive/${pkgver}.tar.gz)
+options=('staticlibs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aquynh/capstone/archive/${pkgver}.tar.gz)
 
sha512sums=('a5c29e7c559b5391d6a4ec9a7f766699ea6d321aa2f1fc57fdcec893107fa3ef2f5f6323629971c1129f1ca087df4f3ad03d0a8234d2eae368c8ccfec04dbf4d')
 
 build() {


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

2015-09-19 Thread Evangelos Foutras
Date: Saturday, September 19, 2015 @ 18:43:33
  Author: foutrelis
Revision: 140983

Python 3.5 rebuild

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-19 16:43:19 UTC (rev 140982)
+++ PKGBUILD2015-09-19 16:43:33 UTC (rev 140983)
@@ -4,7 +4,7 @@
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
 pkgver=3.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc='A lightweight multi-platform, multi-architecture disassembly 
framework'
 url='http://www.capstone-engine.org/index.html'
 arch=('i686' 'x86_64')


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

2015-07-15 Thread Levente Polyak
Date: Thursday, July 16, 2015 @ 01:17:46
  Author: anthraxx
Revision: 136970

upgpkg: capstone 3.0.4-1

upgpkg capstone 3.0.4-1

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-15 22:59:12 UTC (rev 136969)
+++ PKGBUILD2015-07-15 23:17:46 UTC (rev 136970)
@@ -3,8 +3,8 @@
 
 pkgbase=capstone
 pkgname=('capstone' 'python-capstone' 'python2-capstone')
-pkgver=3.0.3
-pkgrel=2
+pkgver=3.0.4
+pkgrel=1
 pkgdesc='A lightweight multi-platform, multi-architecture disassembly 
framework'
 url='http://www.capstone-engine.org/index.html'
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('BSD')
 makedepends=('glibc' 'python' 'python2')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aquynh/${pkgbase}/archive/${pkgver}.tar.gz)
-sha512sums=('5847d89efe2d139d1dacff73547bfe682def6c23310da89dc8b84686e2a718dd361da242417a895bb0fc425401b9baf15348f1994da052a05c2f64a238659c54')
+sha512sums=('a5c29e7c559b5391d6a4ec9a7f766699ea6d321aa2f1fc57fdcec893107fa3ef2f5f6323629971c1129f1ca087df4f3ad03d0a8234d2eae368c8ccfec04dbf4d')
 
 build() {
   cd ${pkgbase}-${pkgver}


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

2015-06-05 Thread Levente Polyak
Date: Friday, June 5, 2015 @ 17:53:14
  Author: anthraxx
Revision: 134842

capstone: remove unneeded LIBDIR to install target

Modified:
  capstone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-05 13:58:19 UTC (rev 134841)
+++ PKGBUILD2015-06-05 15:53:14 UTC (rev 134842)
@@ -1,4 +1,4 @@
-# Maintainer: Levente Polyak levente[at]leventepolyak[dot]net
+# Maintainer: Levente Polyak anthraxx[at]archlinux[dot]org
 # Contributor: M0Rf30
 
 pkgbase=capstone
@@ -21,7 +21,7 @@
 package_capstone() {
   depends=('glibc')
   cd ${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} LIBDIR=${pkgdir}/usr/lib install
+  make DESTDIR=${pkgdir} install
   install -Dm 644 LICENSE.TXT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }