python-b2: rename to backblaze-b2

- fix pkgname (drop python- prefix)
- remove test directory from site-packages root
- rename binary to backblaze-b2 to avoid conflict with Boost's b2
This commit is contained in:
Alessio Sergi 2018-06-06 18:00:14 +02:00
parent ce6a59df4d
commit 23b1213acb
2 changed files with 30 additions and 20 deletions

View file

@ -0,0 +1,27 @@
# Template file for 'backblaze-b2'
pkgname=backblaze-b2
version=1.1.0
revision=7
noarch=yes
wrksrc="B2_Command_Line_Tool-${version}"
build_style=python2-module
pycompile_module="b2"
hostmakedepends="python-setuptools"
depends="python-setuptools python-logfury python-futures python-Arrow
python-requests python-six"
short_desc="Command Line Interface for Backblaze's B2 storage service"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
license="MIT"
homepage="https://github.com/Backblaze/B2_Command_Line_Tool"
distfiles="${homepage}/archive/v${version}.tar.gz"
checksum=fae0dd48a2b6ab38cb142b91d7907a66144659d599bdfbf3c8995788ed29313b
post_install() {
# Remove test directory polluting site-packages
rm -rf ${DESTDIR}/usr/lib/python*/site-packages/test
# Avoid conflict with Boost's b2 tool
mv ${DESTDIR}/usr/bin/b2 ${DESTDIR}/usr/bin/backblaze-b2
vlicense LICENSE
}

View file

@ -1,28 +1,11 @@
broken="Missing tqdm dependency"
# Template file for 'python-b2'
pkgname=python-b2
version=1.1.0
revision=6
noarch=yes
wrksrc="B2_Command_Line_Tool-${version}"
build_style=python2-module
pycompile_module="b2"
hostmakedepends="python-setuptools"
depends="python-setuptools python-logfury python-futures python-Arrow
python-requests python-six"
short_desc="Command Line Interface for Backblaze's B2 storage service"
build_style=meta
depends="backblaze-b2>=${version}_${revision}"
short_desc="Command Line Interface for Backblaze's B2 storage service (transitional dummy package)"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
license="MIT"
homepage="https://github.com/Backblaze/B2_Command_Line_Tool"
distfiles="${homepage}/archive/v${version}.tar.gz"
checksum=fae0dd48a2b6ab38cb142b91d7907a66144659d599bdfbf3c8995788ed29313b
post_install() {
# Remove test directory polluting site-packages
rm -rf ${DESTDIR}/usr/lib/python*/site-packages/test
# Avoid conflict with Boost's b2 tool
mv ${DESTDIR}/usr/bin/b2 ${DESTDIR}/usr/bin/backblaze-b2
vlicense LICENSE
}