[arch-commits] Commit in python-hexdump/repos (2 files)

Evangelos Foutras foutrelis at archlinux.org
Sun Dec 25 17:35:11 UTC 2016


    Date: Sunday, December 25, 2016 @ 17:35:10
  Author: foutrelis
Revision: 202113

archrelease: copy trunk to community-staging-any

Added:
  python-hexdump/repos/community-staging-any/
  python-hexdump/repos/community-staging-any/PKGBUILD
    (from rev 202112, python-hexdump/trunk/PKGBUILD)

----------+
 PKGBUILD |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

Copied: python-hexdump/repos/community-staging-any/PKGBUILD (from rev 202112, python-hexdump/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2016-12-25 17:35:10 UTC (rev 202113)
@@ -0,0 +1,47 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: knucker <www.knucker[at]gmail.com>
+
+pkgbase=python-hexdump
+pkgname=('python-hexdump' 'python2-hexdump')
+_pyname=${pkgbase/python-/}
+_hghash=396fbd1d0c1e
+pkgver=3.3
+pkgrel=2
+pkgdesc='Library and tool to work with hex and binary data'
+url='https://bitbucket.org/techtonik/hexdump'
+arch=('any')
+license=('Public Domain')
+makedepends=('python' 'python2')
+checkdepends=('python-tox')
+source=(${pkgbase}-${pkgver}.tar.bz2::https://bitbucket.org/techtonik/${_pyname}/get/${pkgver}.tar.bz2)
+sha512sums=('b8f9c2c7ef69cf52572434c1edb529b7bd61e66cc62f1fb8ff32bcf5899502607552a9a1c50deed2e02f3b638744d509dedf588fa1176d79d4c9ec198f650e4d')
+
+prepare() {
+  (cd techtonik-${_pyname}-${_hghash}
+    sed -r 's|(py3)[0-9]+|\1|g' -i tox.ini
+    sed -r 's|(py2)[0-9]+|\1|g' -i tox.ini
+  )
+  cp -ra techtonik-${_pyname}-${_hghash}{,-py2}
+  (cd techtonik-${_pyname}-${_hghash}-py2
+    sed -r 's|(/usr/bin/env python)|\12|' -i hexdump.py
+  )
+}
+
+check() {
+  cd techtonik-${_pyname}-${_hghash}
+  tox
+}
+
+package_python-hexdump() {
+  depends=('python')
+  cd techtonik-${_pyname}-${_hghash}
+  python setup.py install -O1 --root="${pkgdir}" --prefix=/usr
+}
+
+package_python2-hexdump() {
+  depends=('python2')
+  cd techtonik-${_pyname}-${_hghash}-py2
+  python2 setup.py install -O1 --root="${pkgdir}" --prefix=/usr
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list