Date: Thursday, April 6, 2023 @ 02:23:51
Author: felixonmars
Revision: 1438082
archrelease: copy trunk to community-staging-any
Added:
python-pysmi/repos/community-staging-any/
python-pysmi/repos/community-staging-any/PKGBUILD
(from rev 1438081, python-pysmi/trunk/PKGBUILD)
----------+
PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
Copied: python-pysmi/repos/community-staging-any/PKGBUILD (from rev 1438081,
python-pysmi/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-06 02:23:51 UTC (rev 1438082)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Muflone http://www.muflone.com/contacts/english/
+
+pkgname=python-pysmi
+_pyname="${pkgname/*-/}"
+pkgver=0.3.4
+pkgrel=9
+pkgdesc='SNMP/SMI MIB parsing and conversion library designed to turn ASN.1
MIBs into various formats'
+url='http://snmplabs.com/pysmi/'
+arch=('any')
+license=('BSD')
+depends=('python' 'python-ply')
+makedepends=('python-sphinx')
+checkdepends=('python-pytest' 'python-pysnmp')
+source=(${_pyname}-${pkgver}.tar.gz::https://github.com/etingof/pysmi/archive/v${pkgver}.tar.gz)
+sha512sums=('e6be1f0117f069cb9d67bb0dbc1cd8fa37b40865094ee33a60f794f6721cef14a72326fffd2fc43f22d6a959daf2d42147270421f86a57bde46081b5839880bf')
+
+build() {
+ cd ${_pyname}-${pkgver}
+ python setup.py build
+ make -C docs text man
+}
+
+check() {
+ cd ${_pyname}-${pkgver}
+ py.test
+}
+
+package() {
+ cd ${_pyname}-${pkgver}
+ python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
--skip-build
+
+ install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+ cp -r docs/build/text "${pkgdir}/usr/share/doc/${pkgname}"
+ cp -r examples -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+ install -Dm 644 docs/build/man/${_pyname}.1
"${pkgdir}/usr/share/man/man1/${_pyname}.1"
+ install -Dm 644 docs/build/man/${_pyname}.1
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+ install -Dm 644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}"
+
+ mv "${pkgdir}/usr/bin/mibdump"{.py,}
+ mv "${pkgdir}/usr/bin/mibcopy"{.py,}
+}
+
+# vim: ts=2 sw=2 et: