mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-16 22:22:12 +01:00
This commit updates $license variable in all APKBUILDs to comply with short names specified by SPDX version 3.0 [1] where possible. It was done using find-and-replace method on substrings inside $license variables. Only license names were updated, not "expressions" specifying relation between the licenses (e.g. "X and Y", "X or Y", "X and (Y or Z)") or exceptions (e.g. "X with exceptions"). Many licenses have a version or multiple variants, e.g. MPL-2.0, BSD-2-Clause, BSD-3-Clause. However, $license in many aports do not contain license version or variant. Since there's no way how to infer this information just from abuild, it were left without the variant suffix or version, i.e. non SPDX compliant. GNU licenses (AGPL, GFDL, GPL, LGPL) are especially complicated. They exist in two variants: -only (formerly e.g. GPL-2.0) and -or-later (formerly e.g. GPL-2.0+). We did not systematically noted distinguish between these variants, so GPL-2.0, GPL2, GPLv2 etc. may mean GPL-2.0-only or GPL-2.0-or-later. Thus GNU licenses without "+" (e.g. GPL2+) were left without the variant suffix, i.e. non SPDX compliant. Note: This commit just fixes format of the license names, no verification has been done if the specified license information is actually correct! [1]: https://spdx.org/licenses/
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer:
|
|
pkgname=platformio-core
|
|
pkgver=3.2.1
|
|
pkgrel=0
|
|
pkgdesc="An open source ecosystem for IoT development"
|
|
url="http://platformio.org"
|
|
arch="all"
|
|
license="Apache-2.0"
|
|
depends="python py-bottle py-click5 py-lockfile py-serial
|
|
py-requests py-colorama py-semanticversion"
|
|
makedepends="python-dev py-setuptools"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/platformio/platformio-core/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python setup.py install --prefix=/usr \
|
|
--root="$pkgdir" || return 1
|
|
|
|
mkdir -p "$pkgdir"/usr/share/doc/$pkgname/
|
|
install -m644 CONTRIBUTING.md README.rst HISTORY.rst \
|
|
"$pkgdir"/usr/share/doc/$pkgname/ || return 1
|
|
|
|
}
|
|
|
|
md5sums="dc2a1aedef6a225a42722abe104d315d platformio-core-3.2.1.tar.gz"
|
|
sha256sums="5a85e60afc28b4ee04b43efd90c77f69b6c6ff96829e1b8750aa52143bca6eb2 platformio-core-3.2.1.tar.gz"
|
|
sha512sums="4edac4cfcfe0e51d15db319d5bde95fcbf952d9a3ecb8da34ff7fd00177255658493a5e8fda118c92dce68a039b829e63824813ef77c4ca106d7346bfe3ce348 platformio-core-3.2.1.tar.gz"
|