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

Evangelos Foutras foutrelis at archlinux.org
Thu Nov 12 18:51:38 UTC 2020


    Date: Thursday, November 12, 2020 @ 18:51:36
  Author: foutrelis
Revision: 753224

archrelease: copy trunk to community-staging-x86_64

Added:
  python-bluepy/repos/community-staging-x86_64/
  python-bluepy/repos/community-staging-x86_64/PKGBUILD
    (from rev 753223, python-bluepy/trunk/PKGBUILD)

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

Copied: python-bluepy/repos/community-staging-x86_64/PKGBUILD (from rev 753223, python-bluepy/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-11-12 18:51:36 UTC (rev 753224)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+
+_pyname=bluepy-v
+pkgname=python-bluepy
+pkgver=1.3.0
+pkgrel=4
+pkgdesc='Python module for interfacing with Bluetooth LE devices through Bluez'
+url='https://github.com/IanHarvey/bluepy'
+arch=('x86_64')
+license=('GPL2')
+depends=('python' 'python-setuptools' 'bluez' 'glib2')
+makedepends=('python-sphinx')
+options=('!makeflags')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/IanHarvey/bluepy/archive/v/${pkgver}.tar.gz)
+sha256sums=('878e68e6d0f2823a5ebc5763e97ed887cc599120a5cc0bac577b7d655db6cd3e')
+sha512sums=('817fcc44646008a4aadac39b1e9ef694fd706b4d23e2299c78084e48f804beec2e76af2701572ce76d9cf325de09e0ded539dd1ceb6ed574cb5d589045c17e37')
+
+prepare() {
+  cd ${_pyname}-${pkgver}
+  sed 's|CFLAGS =|CFLAGS +=|g' -i bluepy/Makefile
+  sed 's|CPPFLAGS =|CPPFLAGS +=|g' -i bluepy/Makefile
+  sed 's| $(LDLIBS)| $(LDFLAGS) $(LDLIBS)|g' -i bluepy/Makefile
+}
+
+build() {
+  cd ${_pyname}-${pkgver}
+  python setup.py build
+  make -C bluepy
+  make -C docs man text SPHINXBUILD=sphinx-build
+}
+
+package() {
+  cd ${_pyname}-${pkgver}
+
+  # install
+  python setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build
+  install -Dm 644 README.md docs/_build/text/*.txt -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/man/bluepy.1 "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  install -Dm 755 bluepy/bluepy-helper -t "${pkgdir}"/usr/lib/python*/site-packages/bluepy
+
+  # cleanup
+  rm "${pkgdir}"/usr/lib/python*/site-packages/bluepy/{bluez-src.tgz,Makefile,bluepy-helper.c}
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list