Package Base Details: paho-mqtt

Git Clone URL: https://aur.archlinux.org/paho-mqtt.git (read-only, click to copy)
Submitter: dseg
Maintainer: None
Last Packager: SpotlightKid
Votes: 12
Popularity: 0.000000
First Submitted: 2014-12-09 05:53 (UTC)
Last Updated: 2019-10-30 21:39 (UTC)

Packages (1)

Latest Comments

1 2 Next › Last »

sangy commented on 2019-08-08 19:03 (UTC)

Thanks!

SpotlightKid commented on 2019-08-08 17:08 (UTC)

@sangy: Done.

sangy commented on 2019-08-08 03:46 (UTC)

hi, there's already community/python-paho-mqtt. You should remove the py3 version of this splitpkg and keep it as python2 only if you still want to provide a python2 alternative.

SpotlightKid commented on 2018-04-20 11:13 (UTC)

@svenihoney: indeed. Fixed.

svenihoney commented on 2018-04-20 10:04 (UTC)

python-setuptools is missing as a build dependency

jplatte commented on 2017-10-22 16:22 (UTC)

Can't build this package with only Python 3 installed..

dseg commented on 2016-10-21 06:36 (UTC)

@XenGi Thanks for the patch. Updated.

XenGi commented on 2016-10-15 20:46 (UTC)

Updated PKGBUILD for 1.2 release: # Maintainer: Daichi Shinozaki <dsdseg@gmail.com> # Contributor: Christopher Arndt <aur -at- chrisarndt -dot- de> _pkgname=paho.mqtt.python pkgbase=paho-mqtt pkgname=(python-$pkgbase python2-$pkgbase) pkgver=1.2 pkgrel=1 url="http://www.eclipse.org/paho/clients/python" license=('EPL') arch=('any') source=("https://github.com/eclipse/paho.mqtt.python/archive/v1.2.tar.gz") md5sums=('713dc196d4714baa1c27a72152dabbc3') prepare() { cp -r $_pkgname-${pkgver} py2-$_pkgname-${pkgver} } build() { cd $srcdir/$_pkgname-${pkgver} python setup.py build cd $srcdir/py2-$_pkgname-${pkgver} python2 setup.py build } package_python-paho-mqtt() { pkgdesc="Python client library for MQTT v3.1 and v3.1.1" depends=('python') cd $srcdir/$_pkgname-$pkgver python setup.py install --root="$pkgdir" --optimize=1 } package_python2-paho-mqtt() { pkgdesc="Python 2 client library for MQTT v3.1 and v3.1.1" depends=('python2') cd $srcdir/py2-$_pkgname-$pkgver python2 setup.py install --root="$pkgdir" --optimize=1 }

dseg commented on 2015-10-23 08:26 (UTC)

I've just tried to update the package, which contains the change for merging of the packages (python2-paho-mqtt, python-paho-mqtt) but failed because the python2-paho-mqtt is already exists so could not updated. I've requested the deletion of python2-paho-mqtt, will try later if the request will be accepted.