diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-30 19:04:30 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-30 21:05:50 +0100 |
commit | 63f5e7d295659a855709901ce22a3e5f40fce455 (patch) | |
tree | ebd2abfa5f6629423b3b5902ce88ffdeb329b0f0 | |
parent | 5bca7d4880028b18028b0b5dbcd20c32f145d67e (diff) |
[various]: unify names of licenses according to SPDX
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/
1530 files changed, 1533 insertions, 1533 deletions
diff --git a/community/6tunnel/APKBUILD b/community/6tunnel/APKBUILD index a46f2a0437a..e2e399ec9b1 100644 --- a/community/6tunnel/APKBUILD +++ b/community/6tunnel/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="TCP proxy for non-IPv6 applications" url="http://toxygen.net/6tunnel" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="automake autoconf" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/wojtekka/$pkgname/archive/$pkgver.tar.gz diff --git a/community/R/APKBUILD b/community/R/APKBUILD index c345e7a5b6c..b574714ca39 100644 --- a/community/R/APKBUILD +++ b/community/R/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Language and environment for statistical computing" url="https://www.r-project.org" arch="all !s390x" -license="GPL-2 GPL-3 LGPL-2.1" +license="GPL-2.0 GPL-3 LGPL-2.1" depends="$pkgname-mathlib" depends_dev="gcc gfortran icu-dev libjpeg-turbo libpng-dev make openblas-dev pcre-dev>=8.10 readline-dev xz-dev zlib-dev bzip2-dev curl-dev>=7.28 diff --git a/community/abiword/APKBUILD b/community/abiword/APKBUILD index 1651e290d2b..aa3708d44e2 100644 --- a/community/abiword/APKBUILD +++ b/community/abiword/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A fully-featured word processor" url="http://www.abisource.com" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" makedepends="gtk+3.0-dev libgsf-dev enchant-dev fribidi-dev wv-dev popt-dev libjpeg-turbo-dev librsvg-dev bzip2-dev goffice-dev pcre-dev libxslt-dev" diff --git a/community/abook/APKBUILD b/community/abook/APKBUILD index 1f26e4a39f5..a1a4a221da1 100644 --- a/community/abook/APKBUILD +++ b/community/abook/APKBUILD @@ -6,7 +6,7 @@ _ver=${pkgver/_pre/pre} pkgrel=3 pkgdesc="Text-based addressbook designed for use with Mutt" url="http://abook.sourceforge.net" -license="GPL2" +license="GPL-2.0" arch="all" makedepends="ncurses-dev readline-dev automake autoconf gettext-dev" subpackages="$pkgname-doc $pkgname-lang" diff --git a/community/acccheck/APKBUILD b/community/acccheck/APKBUILD index 45f4a101306..8a3d90307ff 100644 --- a/community/acccheck/APKBUILD +++ b/community/acccheck/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A password dictionary attack tool" url="https://labs.portcullis.co.uk/tools/acccheck/" arch="noarch" -license="GPLv2" +license="GPL-2.0" depends="perl" depends_dev="" makedepends="$depends_dev" diff --git a/community/acf-vlc-daemon/APKBUILD b/community/acf-vlc-daemon/APKBUILD index ccb0ecd7575..0eca325cc2c 100644 --- a/community/acf-vlc-daemon/APKBUILD +++ b/community/acf-vlc-daemon/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A web-based system administration interface for vlc" url="https://git.alpinelinux.org/cgit/acf/acf-vlc-daemon" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="acf-core vlc-daemon" depends_dev="" makedepends="$depends_dev" diff --git a/community/afl/APKBUILD b/community/afl/APKBUILD index e1219b4d0a2..9f8481e64ee 100644 --- a/community/afl/APKBUILD +++ b/community/afl/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="American fuzzy lop - a fuzzer relying on genetic algorithms instead brute force" url="http://lcamtuf.coredump.cx/afl/" arch="all" -license="ASL 2.0" +license="Apache-2.0" depends="clang llvm" makedepends="clang-dev llvm-dev" subpackages="$pkgname-doc" diff --git a/community/afpfs-ng/APKBUILD b/community/afpfs-ng/APKBUILD index 926cefaafad..5ec07877176 100644 --- a/community/afpfs-ng/APKBUILD +++ b/community/afpfs-ng/APKBUILD @@ -6,7 +6,7 @@ pkgrel=8 pkgdesc="A client for the Apple Filing Protocol (AFP)" url="http://alexthepuffin.googlepages.com/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="libgcrypt-dev libedit-dev ncurses-dev" makedepends="$depends_dev autoconf automake libtool linux-headers" diff --git a/community/aha/APKBUILD b/community/aha/APKBUILD index 7128b38bd9d..30e3efc1243 100644 --- a/community/aha/APKBUILD +++ b/community/aha/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="ANSI color to HTML converter" url="http://anonscm.debian.org/gitweb/?p=collab-maint/aha.git;a=summary" arch="all" -license="MPL 1.1" +license="MPL-1.1" depends="" depends_dev="" makedepends="" diff --git a/community/aircrack-ng/APKBUILD b/community/aircrack-ng/APKBUILD index a406e5df21b..74fad0ef0e5 100644 --- a/community/aircrack-ng/APKBUILD +++ b/community/aircrack-ng/APKBUILD @@ -7,7 +7,7 @@ pkgrel=5 pkgdesc="Key cracker for the 802.11 WEP and WPA-PSK protocols" url="http://www.aircrack-ng.org" arch="all" -license="GPL2" +license="GPL-2.0" depends="ethtool wireless-tools iw sqlite grep pciutils" makedepends="coreutils libressl-dev sqlite-dev libnl-dev linux-headers pcre-dev bsd-compat-headers zlib-dev" diff --git a/community/albatross-themes/APKBUILD b/community/albatross-themes/APKBUILD index 6492e0741d7..d597e2ce139 100644 --- a/community/albatross-themes/APKBUILD +++ b/community/albatross-themes/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="A clean minimalistic theme for Xfce, GTK 2 and 3" url="http://shimmerproject.org/project/albatross/" arch="noarch" -license="GPLv2 or CC-BY-SA" +license="GPL-2.0 or CC-BY-SA" makedepends="$depends_dev" subpackages="$pkgname-gtk2 $pkgname-gtk3 $pkgname-metacity $pkgname-xfwm4" source="albatross-$pkgver.tar.gz::https://github.com/shimmerproject/Albatross/archive/v$pkgver.tar.gz" diff --git a/community/alien/APKBUILD b/community/alien/APKBUILD index ed69c7c7255..ea827136ef7 100644 --- a/community/alien/APKBUILD +++ b/community/alien/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Alien is a program that converts between the rpm, dpkg, stampede slp, and slackware tgz file formats" url="http://joeyh.name/code/alien" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="perl" depends_dev="" makedepends="$depends_dev" diff --git a/community/anytun/APKBUILD b/community/anytun/APKBUILD index 11aabe0e7f4..b7c7b95040b 100644 --- a/community/anytun/APKBUILD +++ b/community/anytun/APKBUILD @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="Secure anycast tunneling protocol implementation for flexible and fault-tolerant VPNs" url="http://www.anytun.org" arch="all" -license="GPL3" +license="GPL-3.0" depends="" depends_dev="libressl-dev boost-dev linux-headers" makedepends="$depends_dev" diff --git a/community/apache-ant/APKBUILD b/community/apache-ant/APKBUILD index a7b82ab542c..658baeec3be 100644 --- a/community/apache-ant/APKBUILD +++ b/community/apache-ant/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A java-based build tool." url="http://ant.apache.org/" arch="noarch" -license="ASL-2.0" +license="Apache-2.0" depends="openjdk8-jre-base" makedepends="" source="http://archive.apache.org/dist/ant/binaries/$pkgname-$pkgver-bin.tar.bz2" diff --git a/community/arandr/APKBUILD b/community/arandr/APKBUILD index d816ab1b97d..7396643d69f 100644 --- a/community/arandr/APKBUILD +++ b/community/arandr/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="ARandR provides a simple visual front end for XRandR" url="http://christian.amsuess.com/tools/arandr/" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="py-gtk xrandr" makedepends="py2-docutils gettext" subpackages="$pkgname-doc $pkgname-lang" diff --git a/community/archivemount/APKBUILD b/community/archivemount/APKBUILD index 5dca042d875..8c8e006c7dc 100644 --- a/community/archivemount/APKBUILD +++ b/community/archivemount/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="FUSE based filesystem for mounting compressed archives" url="http://www.cybernoia.de/software/archivemount/" arch="all" -license="LGPLv2+" +license="LGPL-2.0-or-later" depends="" depends_dev="" makedepends="$depends_dev fuse-dev libarchive-dev" diff --git a/community/arping/APKBUILD b/community/arping/APKBUILD index d464c7cab76..c29136ec396 100644 --- a/community/arping/APKBUILD +++ b/community/arping/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="An ARP ping utility" url="http://www.habets.pp.se/synscan/programs.php?prog=arping" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" depends="!iputils" makedepends="libnet-dev libpcap-dev" checkdepends="subunit-dev check-dev" diff --git a/community/asciinema/APKBUILD b/community/asciinema/APKBUILD index e6d56a15917..dc5189e6014 100644 --- a/community/asciinema/APKBUILD +++ b/community/asciinema/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A Command line recorder for asciinema.org service" url="https://github.com/asciinema/asciinema/" arch="all" -license="GPLv3" +license="GPL-3.0" depends="ncurses" makedepends="python3-dev" source="$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz" diff --git a/community/asio/APKBUILD b/community/asio/APKBUILD index bf5e8f22c65..9f8116678c5 100644 --- a/community/asio/APKBUILD +++ b/community/asio/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A cross-platform C++ library for network programming" url="https://think-async.com" arch="all" -license="Boost" +license="BSL-1.0" depends="" depends_dev="boost-dev libressl-dev" makedepends="$depends_dev" diff --git a/community/aspcud/APKBUILD b/community/aspcud/APKBUILD index fd5381a14dc..c623272dbc6 100644 --- a/community/aspcud/APKBUILD +++ b/community/aspcud/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Package dependency solver" url="http://potassco.sourceforge.net/" arch="all" -license="LGPL3" +license="LGPL-3.0" depends="boost gringo clasp" makedepends="boost-dev cmake re2c" install="" diff --git a/community/asterisk-chan-dongle/APKBUILD b/community/asterisk-chan-dongle/APKBUILD index 77d83372168..79607cbdcaf 100644 --- a/community/asterisk-chan-dongle/APKBUILD +++ b/community/asterisk-chan-dongle/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="GSM modem dongle channel driver" url="https://github.com/oleg-krv/asterisk-chan-dongle/" arch="all" -license="GPL2" +license="GPL-2.0" depends="asterisk" depends_dev="" makedepends="$depends_dev asterisk-dev automake autoconf" diff --git a/community/atheme-iris/APKBUILD b/community/atheme-iris/APKBUILD index 7e08da9c8bb..83439f5fbdf 100644 --- a/community/atheme-iris/APKBUILD +++ b/community/atheme-iris/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="AJAX IRC client. It is a drop-in replacement for qwebirc." url="http://www.atheme.net/iris.html" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="py-twisted py-simplejson py-openssl py-zope-interface" depends_dev="" makedepends="$depends_dev python2-dev" diff --git a/community/atril/APKBUILD b/community/atril/APKBUILD index c612eb0e26f..6dbb54512d5 100644 --- a/community/atril/APKBUILD +++ b/community/atril/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A document viewer for MATE" url="https://github.com/mate-desktop/atril" arch="all" -license="GPLv2" +license="GPL-2.0" depends="mate-icon-theme abiword-plugin-epub" # make check is broken: https://github.com/mate-desktop/atril/issues/167 options="!check" diff --git a/community/attica/APKBUILD b/community/attica/APKBUILD index de61c454758..91366a21390 100644 --- a/community/attica/APKBUILD +++ b/community/attica/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Freedesktop OCS binding for Qt" url="http://www.kde.org/" arch="all" -license="LGPL2+" +license="LGPL-2.0-or-later" makedepends="qt-dev cmake automoc4" subpackages="$pkgname-dev" source="http://download.kde.org/stable/attica/attica-$pkgver.tar.bz2" diff --git a/community/audacity/APKBUILD b/community/audacity/APKBUILD index 301417b5dd6..23aa2168d53 100644 --- a/community/audacity/APKBUILD +++ b/community/audacity/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Multitrack audio editor" url="http://audacity.sourceforge.net" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="$depends_dev alsa-lib-dev bash diff --git a/community/autoconf2.13/APKBUILD b/community/autoconf2.13/APKBUILD index 727d25eef64..443b409c014 100644 --- a/community/autoconf2.13/APKBUILD +++ b/community/autoconf2.13/APKBUILD @@ -4,7 +4,7 @@ pkgver=2.13 pkgrel=0 pkgdesc="A GNU tool for automatically configuring source code" arch="noarch" -license="GPL2" +license="GPL-2.0" url="https://www.gnu.org/software/autoconf" depends="m4 perl" source="ftp://ftp.gnu.org/pub/gnu/autoconf/autoconf-${pkgver}.tar.gz diff --git a/community/awake/APKBUILD b/community/awake/APKBUILD index cf610955f34..faae05630d2 100644 --- a/community/awake/APKBUILD +++ b/community/awake/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A python command and library to 'wake on lan' a remote host" url="https://github.com/cyraxjoe/awake" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="py3-awake" makedepends="python3-dev" subpackages="py3-$pkgname:py3 $pkgname-doc" diff --git a/community/awesome/APKBUILD b/community/awesome/APKBUILD index 62b7be11fc8..e4ae6dbc608 100644 --- a/community/awesome/APKBUILD +++ b/community/awesome/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="lua-configurable window manager framework" url="http://awesome.naquadah.org/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" depends="imagemagick lua5.1-lgi cairo-gobject pango" makedepends="lua lua5.1 lua5.1-dev libxcb-dev pango-dev cairo-dev cmake gperf glib-dev imlib2-dev libxdg-basedir-dev libev-dev startup-notification-dev diff --git a/community/babl/APKBUILD b/community/babl/APKBUILD index 994728270cc..3b7efc42b13 100644 --- a/community/babl/APKBUILD +++ b/community/babl/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Dynamic, any to any, pixel format conversion library" url="http://gegl.org/babl/" arch="all" -license="LGPL3+" +license="LGPL-3.0-or-later" subpackages="$pkgname-dev" source="http://ftp.gimp.org/pub/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2" diff --git a/community/bannergrab/APKBUILD b/community/bannergrab/APKBUILD index cc23355c7de..ab2102c4701 100644 --- a/community/bannergrab/APKBUILD +++ b/community/bannergrab/APKBUILD @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="A banner grabbing tool" url="https://sourceforge.net/projects/bannergrab" arch="all" -license="GPL3+" +license="GPL-3.0-or-later" makedepends="libressl-dev" subpackages="$pkgname-doc" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tgz" diff --git a/community/bareos-webui/APKBUILD b/community/bareos-webui/APKBUILD index 60a73fd8eff..cc7aa2173fa 100644 --- a/community/bareos-webui/APKBUILD +++ b/community/bareos-webui/APKBUILD @@ -9,7 +9,7 @@ pkgdesc="Bareos Web User Interface" url="http://www.bareos.org/en/bareos-webui.html" arch="noarch" options="!check" -license=" AGPL-3.0" +license="AGPL-3.0" depends="$_php-bz2 $_php-ctype $_php-curl $_php-dom $_php-fileinfo $_php-gettext $_php-gd $_php-iconv $_php-intl $_php-json $_php-mbstring $_php-openssl $_php-session $_php-simplexml $_php-xml $_php-xmlreader $_php-xmlwriter $_php-zip diff --git a/community/bareos/APKBUILD b/community/bareos/APKBUILD index 3ea1eb760a4..4fbb886c3af 100644 --- a/community/bareos/APKBUILD +++ b/community/bareos/APKBUILD @@ -8,7 +8,7 @@ pkgdesc="Bareos - Backup Archiving REcovery Open Sourced" url="http://www.bareos.org" arch="all" options="!check" -license="AGPL3" +license="AGPL-3.0" depends="perl" makedepends="file libtool libintl libpcap-dev lzo-dev \ sqlite-dev postgresql-dev gnutls-dev mariadb-dev acl-dev \ diff --git a/community/biber/APKBUILD b/community/biber/APKBUILD index e1659015d12..beb84b2d001 100644 --- a/community/biber/APKBUILD +++ b/community/biber/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Backend processor for BibLaTeX" url="https://github.com/plk/biber" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="perl perl-module-build perl-config-autoconf perl-extutils-libbuilder perl-test-differences perl-file-which perl-class-accessor perl-data-compare perl-data-dump perl-data-uniqid diff --git a/community/binaryen/APKBUILD b/community/binaryen/APKBUILD index a229eb8084b..2e18346afe9 100644 --- a/community/binaryen/APKBUILD +++ b/community/binaryen/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Compiler infrastructure and toolchain library for WebAssembly, in C++" url="https://github.com/WebAssembly/binaryen" arch="all !s390x" -license="ASL-2.0" +license="Apache-2.0" makedepends="cmake" checkdepends="nodejs python2" subpackages="$pkgname-dev" diff --git a/community/binutils-avr/APKBUILD b/community/binutils-avr/APKBUILD index c2dc2f9bf52..d337b388dca 100644 --- a/community/binutils-avr/APKBUILD +++ b/community/binutils-avr/APKBUILD @@ -7,7 +7,7 @@ pkgdesc="Tools necessary to build programs for AVR targets" url="https://www.gnu.org/software/binutils/" makedepends="gettext libtool autoconf automake" arch="all" -license="GPL2 GPL3+ LGPL2 BSD" +license="GPL-2.0 GPL-3.0-or-later LGPL-2.0 BSD" subpackages="$pkgname-doc" source="http://ftp.gnu.org/gnu/binutils/binutils-$pkgver.tar.bz2 binutils-ld-fix-static-linking.patch diff --git a/community/bogofilter/APKBUILD b/community/bogofilter/APKBUILD index 99fb2ad51bb..bef2c37ea04 100644 --- a/community/bogofilter/APKBUILD +++ b/community/bogofilter/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A Bayesian mail filter that classifies mail by statistical analysis of the message's header and content." url="http://bogofilter.sourceforge.net/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="" makedepends="sqlite-dev" diff --git a/community/btrbk/APKBUILD b/community/btrbk/APKBUILD index 2953367ee6d..696cc4bfedb 100644 --- a/community/btrbk/APKBUILD +++ b/community/btrbk/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Backup tool for btrfs subvolumes with atomic snapshots & incremental transfers" url="http://digint.ch/btrbk/" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="perl perl-date-calc btrfs-progs" makedepends="asciidoc" options="!check" diff --git a/community/bubblewrap/APKBUILD b/community/bubblewrap/APKBUILD index d33b1303e09..e2ecf4978d1 100644 --- a/community/bubblewrap/APKBUILD +++ b/community/bubblewrap/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Unprivileged sandboxing tool" url="https://github.com/projectatomic/bubblewrap" arch="all" -license="LGPL2+" +license="LGPL-2.0-or-later" options="!check suid" makedepends="autoconf automake libcap-dev docbook-xsl" subpackages="$pkgname-doc $pkgname-bash-completion:bashcomp:noarch" diff --git a/community/buildbot/APKBUILD b/community/buildbot/APKBUILD index 9d9698b66a8..207c6a945ce 100644 --- a/community/buildbot/APKBUILD +++ b/community/buildbot/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Continuous integration testing framework" url="http://buildbot.net/" arch="noarch" -license="GPLv2" +license="GPL-2.0" depends="python2 py-twisted py-simplejson py2-sqlalchemy py2-pysqlite py-jinja2 py2-sqlalchemy-migrate py-dateutil py-setuptools" diff --git a/community/bvi/APKBUILD b/community/bvi/APKBUILD index 7d73fadd902..8aada1e9583 100644 --- a/community/bvi/APKBUILD +++ b/community/bvi/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Display-oriented editor for binary files based on vi" url="http://bvi.sourceforge.net" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="ncurses-dev" install="" diff --git a/community/bzr/APKBUILD b/community/bzr/APKBUILD index e518081b164..7c4bc8484ea 100644 --- a/community/bzr/APKBUILD +++ b/community/bzr/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A scalable distributed SCM tool" url="http://bazaar.canonical.com/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" depends="python2" makedepends="python2-dev" subpackages="$pkgname-doc" diff --git a/community/cabal/APKBUILD b/community/cabal/APKBUILD index 76ff24b7c4c..cf825d6f931 100644 --- a/community/cabal/APKBUILD +++ b/community/cabal/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="The Haskell Cabal" url="http://haskell.org" arch="armhf x86_64" -license="BSD3" +license="BSD-3-Clause" depends="gmp zlib" makedepends="ghc gmp-dev libffi-dev zlib-dev binutils-gold chrpath" subpackages="$pkgname-doc" diff --git a/community/cacti/APKBUILD b/community/cacti/APKBUILD index 8b32671c61c..197a03d450c 100644 --- a/community/cacti/APKBUILD +++ b/community/cacti/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The complete rrdtool-based graphing solution" url="http://www.cacti.net" arch="noarch" -license="GPL2+" +license="GPL-2.0-or-later" options="!check" pkgusers=$pkgname pkggroups="www-data" diff --git a/community/caddy/APKBUILD b/community/caddy/APKBUILD index 1d020410f7b..0d235aab504 100644 --- a/community/caddy/APKBUILD +++ b/community/caddy/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Fast, cross-platform HTTP/2 web server with automatic HTTPS" url="https://caddyserver.com/" arch="all !s390x" -license="ASL 2.0" +license="Apache-2.0" depends="ca-certificates" makedepends="go libcap bash" install="$pkgname.pre-install" diff --git a/community/caja-extensions/APKBUILD b/community/caja-extensions/APKBUILD index 008b37fac3f..1ba7c77b984 100644 --- a/community/caja-extensions/APKBUILD +++ b/community/caja-extensions/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Set of extensions for Caja file manager" url="https://github.com/mate-desktop/caja-extensions" arch="all" -license="GPL2" +license="GPL-2.0" depends="caja" makedepends="glib-dev gtk+3.0-dev caja-dev dconf-dev mate-desktop-dev" diff --git a/community/caja/APKBUILD b/community/caja/APKBUILD index 4a6b652fda7..2acec9693ba 100644 --- a/community/caja/APKBUILD +++ b/community/caja/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The file manager for the MATE desktop" url="https://github.com/mate-desktop/caja" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common mate-desktop" options="!check" makedepends="$depends_dev intltool libtool dconf-dev gtk+3.0-dev libunique3-dev diff --git a/community/camlp4/APKBUILD b/community/camlp4/APKBUILD index a4fbd37f74e..beac9f559a8 100644 --- a/community/camlp4/APKBUILD +++ b/community/camlp4/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Caml preprocessor and pretty-printer" url="https://github.com/ocaml/camlp4/releases" arch="all !x86 !armhf !s390x" #ocaml not avail on excluded platforms -license="LGPL2" +license="LGPL-2.0" depends="ocaml" makedepends="ocamlbuild" options="!makeflags !emptydirs staticlibs" diff --git a/community/capitaine-cursors/APKBUILD b/community/capitaine-cursors/APKBUILD index 653a8478158..1b7ed9b557b 100644 --- a/community/capitaine-cursors/APKBUILD +++ b/community/capitaine-cursors/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="An x-cursor theme inspired by macOS and based on KDE Breeze" url="https://github.com/keeferrourke/capitaine-cursors" arch="noarch" -license="GPL3" +license="GPL-3.0" source="https://github.com/keeferrourke/capitaine-cursors/archive/r$pkgver.tar.gz" options="!check" builddir="$srcdir"/$pkgname-r$pkgver diff --git a/community/captagent/APKBUILD b/community/captagent/APKBUILD index 321559becb1..fb98e3a0bdd 100644 --- a/community/captagent/APKBUILD +++ b/community/captagent/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="HEP Capture Agent for HOMER" url="https://github.com/sipcapture/captagent" arch="all" -license="GPL3" +license="GPL-3.0" makedepends="autoconf automake bison expat-dev flex flex-dev json-c-dev libpcap-dev libtool libuv-dev linux-headers" source="$pkgname-$pkgver.tar.gz::https://github.com/sipcapture/captagent/archive/$pkgver.tar.gz diff --git a/community/cargo/APKBUILD b/community/cargo/APKBUILD index 0ca60973511..4aa01f057e1 100644 --- a/community/cargo/APKBUILD +++ b/community/cargo/APKBUILD @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="The Rust package manager" url="https://crates.io" arch="x86_64" # limited by rust pkg -license="MIT ASL-2.0" +license="MIT Apache-2.0" depends="rust" makedepends="cmake curl-dev libgit2-dev libssh2-dev libressl-dev python2 zlib-dev" subpackages="$pkgname-doc diff --git a/community/cassandra-cpp-driver/APKBUILD b/community/cassandra-cpp-driver/APKBUILD index 6ab55679a90..4e623661482 100644 --- a/community/cassandra-cpp-driver/APKBUILD +++ b/community/cassandra-cpp-driver/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Cassandra CPP Driver" url="http://datastax.github.io/cpp-driver/" arch="x86_64 x86 ppc64le" -license="ASL 2.0" +license="Apache-2.0" depends= makedepends="cmake make libressl-dev libuv-dev" subpackages="$pkgname-dev" diff --git a/community/ccid/APKBUILD b/community/ccid/APKBUILD index c5c82141037..d550493047d 100644 --- a/community/ccid/APKBUILD +++ b/community/ccid/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="USB CCID/ICCD SmartCard reader driver" url="https://pcsclite.alioth.debian.org/ccid.html" arch="all" -license="LGPL2.1+" +license="LGPL-2.1-or-later" depends="pcsc-lite" makedepends="perl libusb-dev pcsc-lite-dev" install="" diff --git a/community/cfengine/APKBUILD b/community/cfengine/APKBUILD index 2572eed4785..b525c289302 100644 --- a/community/cfengine/APKBUILD +++ b/community/cfengine/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A systems administration tool for networks" url="http://www.cfengine.com/" arch="all" -license="GPLv3" +license="GPL-3.0" makedepends="$depends_dev lmdb-dev libressl-dev bison flex-dev acl-dev pcre-dev linux-headers" subpackages="$pkgname-doc $pkgname-masterfiles::noarch" diff --git a/community/chntpw/APKBUILD b/community/chntpw/APKBUILD index e878a787f6e..86f00e4e07f 100644 --- a/community/chntpw/APKBUILD +++ b/community/chntpw/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Change passwords in Windows SAM files" url="http://pogostick.net/~pnh/ntpasswd/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="libressl-dev" source="http://pogostick.net/~pnh/ntpasswd/$pkgname-source-$pkgver.zip stdint.patch" diff --git a/community/clasp/APKBUILD b/community/clasp/APKBUILD index 7a5b8392230..018b0842ae2 100644 --- a/community/clasp/APKBUILD +++ b/community/clasp/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Answer set solver for (extended) normal logic programs" url="https://potassco.org/" arch="all" -license="LGPL3" +license="LGPL-3.0" depends="" makedepends="bash" install="" diff --git a/community/claws-mail/APKBUILD b/community/claws-mail/APKBUILD index 23a334df4b2..68b7483b012 100644 --- a/community/claws-mail/APKBUILD +++ b/community/claws-mail/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A GTK+ based e-mail client." url="http://www.claws-mail.org" arch="all" -license="GPL3" +license="GPL-3.0" subpackages="$pkgname-dbg $pkgname-dev $pkgname-doc $pkgname-lang $pkgname-plugins-acpi-notifier:_acpi $pkgname-plugins-address-keeper:_address_keeper diff --git a/community/cloc/APKBUILD b/community/cloc/APKBUILD index 2242d8fd8a4..f76eb571252 100644 --- a/community/cloc/APKBUILD +++ b/community/cloc/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Count lines of code" url="https://github.com/AlDanial/cloc" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="perl perl-algorithm-diff perl-regexp-common" makedepends="" subpackages="$pkgname-doc" diff --git a/community/clsync/APKBUILD b/community/clsync/APKBUILD index f5f1ae57fe4..e06d4e0fc98 100644 --- a/community/clsync/APKBUILD +++ b/community/clsync/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="File live sync daemon based on inotify" url="https://github.com/xaionaro/clsync" arch="x86 x86_64" -license="GPLv3+" +license="GPL-3.0-or-later" depends="" depends_dev="glib-dev fts-dev libcap-dev libexecinfo-dev linux-headers musl-dev" makedepends="$depends_dev autoconf automake file libtool" diff --git a/community/cmus/APKBUILD b/community/cmus/APKBUILD index 7f2cad93ce4..2c1a7e96fa5 100644 --- a/community/cmus/APKBUILD +++ b/community/cmus/APKBUILD @@ -8,7 +8,7 @@ _ver=${pkgver/_rc/-rc} pkgdesc="A very feature-rich ncurses-based music player" url="http://cmus.sourceforge.net/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" depends="" depends_dev="" makedepends="alsa-lib-dev faad2-dev flac-dev libmad-dev opusfile-dev diff --git a/community/connman/APKBUILD b/community/connman/APKBUILD index e84228dfd21..3b7a296437b 100644 --- a/community/connman/APKBUILD +++ b/community/connman/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A daemon for managing internet connections" url="http://connman.net/" arch="all" -license="GPLv2" +license="GPL-2.0" depends="wpa_supplicant" makedepends="autoconf automake libtool glib-dev iptables-dev readline-dev dbus-dev diff --git a/community/copy-router-config/APKBUILD b/community/copy-router-config/APKBUILD index 9ab306f3ae8..bdf0a20e9af 100644 --- a/community/copy-router-config/APKBUILD +++ b/community/copy-router-config/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="copy-router-config and merge-router-config to copy and merge Cisco Routers Configuration" url="https://www.offensive-security.com/" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="perl perl-cisco-copyconfig" makedepends="" source="http://ftp.tku.edu.tw/kali/pool/main/c/$pkgname/${pkgname}_${pkgver}.orig.tar.gz" diff --git a/community/corebird/APKBUILD b/community/corebird/APKBUILD index ad0fc9a3724..347d5472322 100644 --- a/community/corebird/APKBUILD +++ b/community/corebird/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Corebird is a modern, easy and fun Twitter client" url="https://corebird.baedert.org/" arch="all" -license="GPL3" +license="GPL-3.0" makedepends="gtk+3.0-dev rest-dev json-glib-dev sqlite-dev libsoup-dev libgee-dev vala tiff automake autoconf libtool intltool glib-dev libxml2-utils file" options="libtool !check" diff --git a/community/cppcheck/APKBUILD b/community/cppcheck/APKBUILD index 0f7a5f00bf5..f84078eda7e 100644 --- a/community/cppcheck/APKBUILD +++ b/community/cppcheck/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A static analysis tool for C/C++ code" url="http://cppcheck.sourceforge.net" arch="all" -license="GPL3" +license="GPL-3.0" depends="" makedepends="docbook-xsl pcre-dev qt5-qttools-dev" subpackages="$pkgname-doc $pkgname-htmlreport::noarch $pkgname-gui" diff --git a/community/dash/APKBUILD b/community/dash/APKBUILD index 3e855de6994..f9352be2966 100644 --- a/community/dash/APKBUILD +++ b/community/dash/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Small and fast POSIX-compliant shell" url="http://gondor.apana.org.au/~herbert/dash/" arch="all" -license="GPLv2+" +license="GPL-2.0-or-later" # needs 'nl' utility from coreutils makedepends="coreutils" install="$pkgname.post-install $pkgname.post-upgrade $pkgname.pre-deinstall" diff --git a/community/davfs2/APKBUILD b/community/davfs2/APKBUILD index 357a2fa8d4c..faa498121fd 100644 --- a/community/davfs2/APKBUILD +++ b/community/davfs2/APKBUILD @@ -8,7 +8,7 @@ url="http://savannah.nongnu.org/projects/davfs2" options="suid" pkggroups="davfs2" arch="all" -license="GPL3" +license="GPL-3.0" depends="" depends_dev="libxml2-dev neon-dev zlib-dev linux-headers" makedepends="$depends_dev autoconf automake libtool" diff --git a/community/dcadec/APKBUILD b/community/dcadec/APKBUILD index 47a359de715..37bcc6edccf 100644 --- a/community/dcadec/APKBUILD +++ b/community/dcadec/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="DTS Coherent Acoustics decoder with support for HD extensions" url="https://github.com/foo86/dcadec" arch="all" -license="LGPLv2.1" +license="LGPL-2.1" depends="" depends_dev="" makedepends="$depends_dev" diff --git a/community/ddrescue/APKBUILD b/community/ddrescue/APKBUILD index f8e39d696f7..7320baa23b2 100644 --- a/community/ddrescue/APKBUILD +++ b/community/ddrescue/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Data recovery tool for block devices with errors" url="https://www.gnu.org/s/ddrescue/ddrescue.html" arch="all !aarch64" -license="GPL3+" +license="GPL-3.0-or-later" subpackages="$pkgname-doc" source="http://ftp.heanet.ie/mirrors/gnu/$pkgname/$pkgname-$pkgver.tar.lz" builddir="$srcdir/$pkgname-$pkgver" diff --git a/community/dia/APKBUILD b/community/dia/APKBUILD index d8c82f35828..2b0fff5b2e2 100644 --- a/community/dia/APKBUILD +++ b/community/dia/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="a GTK+ based diagram creation program" url="http://live.gnome.org/Dia" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="gtk+2.0-dev libxml2-dev" subpackages="$pkgname-doc $pkgname-lang" source="https://download.gnome.org/sources/dia/${pkgver%.*}/dia-$pkgver.tar.xz diff --git a/community/diff-pdf/APKBUILD b/community/diff-pdf/APKBUILD index 4cb28f10b81..430676e963c 100644 --- a/community/diff-pdf/APKBUILD +++ b/community/diff-pdf/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="A simple tool for visually comparing two PDF files" url="https://vslavik.github.io/diff-pdf/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="autoconf automake cairo-dev poppler-dev wxgtk-dev" source="$pkgname-$_gitrev.tar.gz::https://github.com/vslavik/$pkgname/archive/$_gitrev.tar.gz" builddir="$srcdir/$pkgname-$_gitrev" diff --git a/community/dnsrecon/APKBUILD b/community/dnsrecon/APKBUILD index 8726a2baf69..28064df3e6f 100644 --- a/community/dnsrecon/APKBUILD +++ b/community/dnsrecon/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="DNS Enumeration Script" url="https://github.com/darkoperator/dnsrecon" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="python2 py2-dnspython py2-netaddr" install="" subpackages="" diff --git a/community/docker-py/APKBUILD b/community/docker-py/APKBUILD index e2bce61adda..254a790c7d9 100644 --- a/community/docker-py/APKBUILD +++ b/community/docker-py/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="An API client for docker written in Python" url="https://github.com/dotcloud/docker-py" arch="noarch" -license="APACHE" +license="Apache" depends="python2 py2-requests py2-six py2-websocket-client dockerpy-creds" makedepends="python2-dev py2-pip py-setuptools py2-six flake8 py-mock" source="$pkgname-$pkgver.tar.gz::https://github.com/docker/$pkgname/archive/$pkgver.tar.gz" diff --git a/community/docker-registry/APKBUILD b/community/docker-registry/APKBUILD index 7c9490b44a0..71ef739d85c 100644 --- a/community/docker-registry/APKBUILD +++ b/community/docker-registry/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="An implementation of the Docker Registry HTTP API V2 for use with docker 1.6+" url="https://github.com/docker/distribution" arch="x86 x86_64 ppc64le" -license="ASL-2.0" +license="Apache-2.0" makedepends="git go" install="$pkgname.pre-install" pkgusers="docker-registry" diff --git a/community/docker/APKBUILD b/community/docker/APKBUILD index 2c7f90f45af..fdbed11084c 100644 --- a/community/docker/APKBUILD +++ b/community/docker/APKBUILD @@ -7,7 +7,7 @@ _gitcommit=v$_ver pkgdesc="Pack, ship and run any application as a lightweight container" url="http://www.docker.io/" arch="all !s390x" -license="ASL 2.0" +license="Apache-2.0" depends="ca-certificates iptables" makedepends="go btrfs-progs-dev bash linux-headers coreutils libseccomp-dev cmake lvm2-dev libtool" options="!check" diff --git a/community/dockerpy-creds/APKBUILD b/community/dockerpy-creds/APKBUILD index 57f30d97271..1bf6067ff30 100644 --- a/community/dockerpy-creds/APKBUILD +++ b/community/dockerpy-creds/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Python bindings for the docker credentials store API" url="https://github.com/shin-/dockerpy-creds" arch="noarch" -license="APACHE" +license="Apache" depends="python2 py2-six" makedepends="python2-dev py-setuptools" source="$pkgname-$pkgver.tar.gz::https://github.com/shin-/dockerpy-creds/archive/$pkgver.tar.gz" diff --git a/community/duo_unix/APKBUILD b/community/duo_unix/APKBUILD index 5efc216cf55..8ea50ffb48f 100644 --- a/community/duo_unix/APKBUILD +++ b/community/duo_unix/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="duosecurity.com two-factor authentication" url="https://duo.com/support/documentation/duounix" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="libressl-dev zlib-dev" makedepends="$depends_dev" diff --git a/community/dynamips/APKBUILD b/community/dynamips/APKBUILD index fd83a83f649..2573d2d5ff5 100644 --- a/community/dynamips/APKBUILD +++ b/community/dynamips/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Cisco router emulator" url="https://github.com/GNS3/dynamips" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="cmake libpcap-dev libelf-dev linux-headers paxmark libnsl-dev" subpackages="$pkgname-doc" source="${pkgname}-${pkgver}.tar.gz::https://github.com/GNS3/${pkgname}/archive/v${pkgver}.tar.gz diff --git a/community/easy-rsa/APKBUILD b/community/easy-rsa/APKBUILD index 1b59914803e..dac27b43bbd 100644 --- a/community/easy-rsa/APKBUILD +++ b/community/easy-rsa/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Simple shell based CA utility" url="https://github.com/OpenVPN/easy-rsa" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="openssl" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/OpenVPN/easy-rsa/archive/v$pkgver.tar.gz" diff --git a/community/elasticsearch/APKBUILD b/community/elasticsearch/APKBUILD index cee64164b17..1dccab8e550 100644 --- a/community/elasticsearch/APKBUILD +++ b/community/elasticsearch/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Open Source, Distributed, RESTful Search Engine" url="https://www.elastic.co/products/elasticsearch" arch="x86 x86_64" -license="ASL-2.0" +license="Apache-2.0" depends="java-jna-native>=4.1 openjdk8-jre bash" makedepends="" install="$pkgname.pre-install" diff --git a/community/elixir/APKBUILD b/community/elixir/APKBUILD index 08193a861de..a78d9f58182 100644 --- a/community/elixir/APKBUILD +++ b/community/elixir/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Elixir is a dynamic, functional language designed for building scalable and maintainable applications" url="http://elixir-lang.org" arch="noarch" -license="ASL 2.0" +license="Apache-2.0" options="!check" depends="erlang erlang-inets erlang-ssl erlang-public-key erlang-asn1 erlang-sasl erlang-erl-interface erlang-dev" diff --git a/community/emacs/APKBUILD b/community/emacs/APKBUILD index 24d386a9776..05b76da9b88 100644 --- a/community/emacs/APKBUILD +++ b/community/emacs/APKBUILD @@ -8,7 +8,7 @@ pkgdesc="The extensible, customizable, self-documenting real-time display editor arch="all !aarch64" depends="emacs-nox" url="https://www.gnu.org/software/emacs/emacs.html" -license="GPL3" +license="GPL-3.0" makedepends="autoconf automake linux-headers paxmark gawk librsvg-dev giflib-dev libxpm-dev gtk+2.0-dev gconf-dev alsa-lib-dev glib-dev fontconfig-dev libpng-dev diff --git a/community/engrampa/APKBUILD b/community/engrampa/APKBUILD index 583b4355eb3..af39c0817e4 100644 --- a/community/engrampa/APKBUILD +++ b/community/engrampa/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="An archive manager for the MATE" url="http://mate-desktop.org/" arch="all" -license="GPLv2" +license="GPL-2.0" depends="libxml2-utils" makedepends="glib-dev gtk+3.0-dev caja-dev itstool libsm-dev" subpackages="$pkgname-doc $pkgname-lang" diff --git a/community/eom/APKBUILD b/community/eom/APKBUILD index 175e0d26ffe..80467153493 100644 --- a/community/eom/APKBUILD +++ b/community/eom/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A simple graphics viewer for the MATE" url="https://github.com/mate-desktop/eom" arch="all" -license="GPLv2" +license="GPL-2.0" depends="mate-icon-theme libxml2-utils" makedepends="glib-dev gtk+3.0-dev itstool mate-desktop-dev libexif-dev lcms2-dev dconf-dev dbus-dev librsvg-dev diff --git a/community/erlang/APKBUILD b/community/erlang/APKBUILD index 4cfab43ed61..1ddc5700c7f 100644 --- a/community/erlang/APKBUILD +++ b/community/erlang/APKBUILD @@ -8,7 +8,7 @@ _srcver=$pkgver pkgrel=2 pkgdesc="General-purpose programming language and runtime environment" url="http://www.erlang.org/" -license="ASL 2.0" +license="Apache-2.0" arch="all" depends="$pkgname-kernel $pkgname-stdlib $pkgname-compiler" makedepends="perl-dev zlib-dev ncurses-dev libressl-dev openjdk8 unixodbc-dev diff --git a/community/etckeeper/APKBUILD b/community/etckeeper/APKBUILD index 9e482594180..a8e43b6d747 100644 --- a/community/etckeeper/APKBUILD +++ b/community/etckeeper/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Store /etc in git." url="http://etckeeper.branchable.com" arch="noarch" -license="GPL2" +license="GPL-2.0" checkdepends="bats fakeroot" depends="findutils git" subpackages="$pkgname-doc" diff --git a/community/evtest/APKBUILD b/community/evtest/APKBUILD index 520210e9a3b..0a98dc6cfb0 100644 --- a/community/evtest/APKBUILD +++ b/community/evtest/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="monitor input layer events" url="https://cgit.freedesktop.org/evtest/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="linux-headers" install="" diff --git a/community/exim/APKBUILD b/community/exim/APKBUILD index 7470a69fb70..2972152a1f0 100644 --- a/community/exim/APKBUILD +++ b/community/exim/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="A Message Transfer Agent" url="http://www.exim.org/" arch="all" -license="GPL2" +license="GPL-2.0" options="!check suid" depends="ca-certificates" pkgusers="$pkgname" diff --git a/community/ezstream/APKBUILD b/community/ezstream/APKBUILD index 1288b4c2f77..d102f2a90e0 100644 --- a/community/ezstream/APKBUILD +++ b/community/ezstream/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Ezstream is a command line source client for Icecast media streaming servers." url="http://www.icecast.org/ezstream.php" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="" makedepends="$depends_dev libshout-dev libxml2-dev libvorbis-dev" diff --git a/community/fann/APKBUILD b/community/fann/APKBUILD index 7ef5fb6ed6a..82727c0dd47 100644 --- a/community/fann/APKBUILD +++ b/community/fann/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Fast Artificial Neural Network Library" url="http://leenissen.dk/fann/" arch="all" -license="LGPL2+" +license="LGPL-2.0-or-later" makedepends="cmake" subpackages="$pkgname-dev $pkgname-fixed:_lib $pkgname-float:_lib $pkgname-double:_lib" source="$pkgname-$pkgver.tar.gz::https://github.com/lib$pkgname/$pkgname/archive/$pkgver.tar.gz" diff --git a/community/fbida/APKBUILD b/community/fbida/APKBUILD index 3e16f295524..15f6aa705c2 100644 --- a/community/fbida/APKBUILD +++ b/community/fbida/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Few applications to display and elementary edit images" url="http://www.kraxel.org/blog/linux/$pkgname/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="" makedepends="freetype-dev fontconfig-dev libdrm-dev libexif-dev diff --git a/community/ffmpegthumbnailer/APKBUILD b/community/ffmpegthumbnailer/APKBUILD index 339f9f736c6..5563bcee0b5 100644 --- a/community/ffmpegthumbnailer/APKBUILD +++ b/community/ffmpegthumbnailer/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Lightweight video thumbnailer that can be used by file managers" url="https://github.com/dirkvdb/ffmpegthumbnailer" arch="all" -license="GPLv2" +license="GPL-2.0" makedepends="ffmpeg-dev libpng-dev libjpeg-turbo-dev cmake" subpackages="$pkgname-dev $pkgname-doc" source="$pkgname-$pkgver.tar.bz2::https://github.com/dirkvdb/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.bz2" diff --git a/community/firejail/APKBUILD b/community/firejail/APKBUILD index 7b4bec0f8da..cdc1d5e1330 100644 --- a/community/firejail/APKBUILD +++ b/community/firejail/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Linux namespaces and seccomp-bpf sandbox" url="https://firejail.wordpress.com/" arch="all" -license="GPL2" +license="GPL-2.0" depends="bash" makedepends="linux-headers" checkdepends="expect" diff --git a/community/firetools/APKBUILD b/community/firetools/APKBUILD index 2f68354cae9..b2daefef3cc 100644 --- a/community/firetools/APKBUILD +++ b/community/firetools/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Firejail sandbox launcher integrated with the system tray" url="https://l3net.wordpress.com/projects/firejail/#firetools" arch="all" -license="GPL2" +license="GPL-2.0" depends="firejail xterm qt5-qtsvg mesa-dri-swrast" makedepends="qt5-qtbase-dev qt5-qtsvg-dev" options="!check" diff --git a/community/fuse-exfat/APKBUILD b/community/fuse-exfat/APKBUILD index 353b5e94d49..237112e1a91 100644 --- a/community/fuse-exfat/APKBUILD +++ b/community/fuse-exfat/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Free exFAT file system implementation" url="https://github.com/relan/exfat" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" provides="$_pkgreal" depends="fuse" makedepends="autoconf automake fuse-dev" diff --git a/community/fvwm/APKBUILD b/community/fvwm/APKBUILD index 3e9e77823f5..e1cb3a03b07 100644 --- a/community/fvwm/APKBUILD +++ b/community/fvwm/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="FVWM is a powerful desktop window manager for the X Window system" url="http://fvwm.org" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="" makedepends="perl libxslt libxcursor-dev libx11-dev freetype-dev fontconfig-dev diff --git a/community/gammu/APKBUILD b/community/gammu/APKBUILD index 3ff943e5faa..d7a03febe64 100644 --- a/community/gammu/APKBUILD +++ b/community/gammu/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Gammu provides an abstraction layer for cell phones access" url="https://wammu.eu/" arch="all" -license="GPLv2+" +license="GPL-2.0-or-later" depends="dialog bluez" makedepends="unixodbc-dev libdbi-dev postgresql-dev bluez-dev mysql-dev libusb-dev curl-dev cmake doxygen linux-headers" diff --git a/community/gdnsd/APKBUILD b/community/gdnsd/APKBUILD index 951772df15d..5d42536bd45 100644 --- a/community/gdnsd/APKBUILD +++ b/community/gdnsd/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Geographic Authoritative DNS server" url="https://github.com/blblack/gdnsd/" arch="all" -license="GPL3" +license="GPL-3.0" depends="" depends_dev="" options="!checkroot" diff --git a/community/geany-plugins/APKBUILD b/community/geany-plugins/APKBUILD index 9e009f841b9..350f645bf5c 100644 --- a/community/geany-plugins/APKBUILD +++ b/community/geany-plugins/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Plugins for Geany" url="https://plugins.geany.org/" arch="all" -license="GPLv3+" +license="GPL-3.0-or-later" depends="" makedepends="lua-dev geany-dev enchant-dev intltool gtkspell-dev libxml2-dev bash vte-dev vala libsoup-dev gpgme-dev python2-dev py-gtk-dev" diff --git a/community/gegl/APKBUILD b/community/gegl/APKBUILD index e3852295d89..0b6df284255 100644 --- a/community/gegl/APKBUILD +++ b/community/gegl/APKBUILD @@ -5,7 +5,7 @@ pkgrel=5 pkgdesc="Graph based image processing framework" url="http://www.gegl.org/" arch="all" -license="GPL3 LGPL3" +license="GPL-3.0 LGPL-3.0" makedepends="babl-dev libpng-dev libjpeg-turbo-dev gtk+-dev librsvg-dev lua5.1-dev jasper-dev exiv2-dev" subpackages="$pkgname-dev $pkgname-lang" diff --git a/community/geocode-glib/APKBUILD b/community/geocode-glib/APKBUILD index 8fd0cfa77e9..615b3461651 100644 --- a/community/geocode-glib/APKBUILD +++ b/community/geocode-glib/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Geocoding helper library" url="https://www.gnome.org/" arch="all" -license="LGPLv2+" +license="LGPL-2.0-or-later" depends="" depends_dev="" makedepends="$depends_dev glib-dev gobject-introspection-dev intltool diff --git a/community/geth/APKBUILD b/community/geth/APKBUILD index 76b50c65802..2c7bf6602c8 100644 --- a/community/geth/APKBUILD +++ b/community/geth/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Official Go implementation of the Ethereum protocol" url="https://geth.ethereum.org/" arch="all" -license="LGPLv3" +license="LGPL-3.0" makedepends="go linux-headers" checkdepends="fuse" options="!check" diff --git a/community/ghc/APKBUILD b/community/ghc/APKBUILD index 9b922eb4aeb..f1c52931570 100644 --- a/community/ghc/APKBUILD +++ b/community/ghc/APKBUILD @@ -8,7 +8,7 @@ arch="x86_64 armhf" # Note ghc's license is basically BSD-3. If you'd like to know more visit: # * https://www.haskell.org/ghc/license # * https://ghc.haskell.org/trac/ghc/wiki/Licensing -license="custom:BSD-3" +license="BSD-3-Clause" # Note that ghc is sensitive to the version of llvm used, # hence the llvm3.7 package. # diff --git a/community/gifsicle/APKBUILD b/community/gifsicle/APKBUILD index 7dc4d6bce9b..610019356b8 100644 --- a/community/gifsicle/APKBUILD +++ b/community/gifsicle/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Command-line tool for making, editing, and getting information about GIF animations" url="http://www.lcdf.org/gifsicle/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="libx11-dev libice-dev libsm-dev" subpackages="$pkgname-doc" source="http://www.lcdf.org/gifsicle/gifsicle-$pkgver.tar.gz" diff --git a/community/gimp/APKBUILD b/community/gimp/APKBUILD index 1e212aec703..9fe1e2d356e 100644 --- a/community/gimp/APKBUILD +++ b/community/gimp/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="GNU Image Manipulation Program" url="https://www.gimp.org/" arch="all" -license="GPLv3+" +license="GPL-3.0-or-later" depends="dbus" makedepends="gtk+-dev libxpm-dev libxmu-dev librsvg-dev dbus-glib-dev libexif-dev desktop-file-utils intltool gegl-dev tiff-dev diff --git a/community/glances/APKBUILD b/community/glances/APKBUILD index b83323a207e..ae5a1d7ab9f 100644 --- a/community/glances/APKBUILD +++ b/community/glances/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="A CLI curses based monitoring tool" url="http://nicolargo.github.com/glances/" arch="noarch" -license="LGPL3+" +license="LGPL-3.0-or-later" depends="py2-psutil py2-bottle py2-snmp py2-batinfo docker-py py-setuptools" makedepends="python2-dev py-setuptools" subpackages="$pkgname-doc" diff --git a/community/gnomad2/APKBUILD b/community/gnomad2/APKBUILD index f95e5c68bbd..436f9bce862 100644 --- a/community/gnomad2/APKBUILD +++ b/community/gnomad2/APKBUILD @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="A GNOME 2.0 client for the Creative Jukeboxes and Dell DJs" url="http://gnomad2.sourceforge.net" arch="all" -license="GPLv2+" +license="GPL-2.0-or-later" makedepends="gtk+2.0-dev libnjb-dev libmtp-dev libid3tag-dev taglib-dev libgudev-dev" subpackages="$pkgname-lang $pkgname-doc" diff --git a/community/gnome-colors/APKBUILD b/community/gnome-colors/APKBUILD index 97231a484ee..da380374492 100644 --- a/community/gnome-colors/APKBUILD +++ b/community/gnome-colors/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="gnome-colors icon themes meta package (all themes)" url="https://code.google.com/p/gnome-colors/" arch="noarch" -license="GPLv2" +license="GPL-2.0" subpackages="$pkgname-common gnome-brave-icon-theme:brave gnome-dust-icon-theme:dust diff --git a/community/gnome-themes-standard/APKBUILD b/community/gnome-themes-standard/APKBUILD index 78a35086984..d9601698dc2 100644 --- a/community/gnome-themes-standard/APKBUILD +++ b/community/gnome-themes-standard/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Default themes for the GNOME desktop" url="http://www.gnome.org" arch="all" -license="GPL2" +license="GPL-2.0" depends="adwaita-gtk2-theme" depends_dev="gtk+3.0-dev librsvg-dev" makedepends="$depends_dev intltool" diff --git a/community/gns3-converter/APKBUILD b/community/gns3-converter/APKBUILD index 7f6833760b6..bb041877a86 100644 --- a/community/gns3-converter/APKBUILD +++ b/community/gns3-converter/APKBUILD @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="GNS3 topology converter." url="https://github.com/dlintott/gns3-converter" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="py3-cx_freeze py3-six py3-configobj python3" makedepends="python3-dev" source="$pkgname-$pkgver.tar.gz::https://github.com/GNS3/$pkgname/archive/v$pkgver.tar.gz" diff --git a/community/gns3-gui/APKBUILD b/community/gns3-gui/APKBUILD index 906ad75e037..92ac68615f5 100644 --- a/community/gns3-gui/APKBUILD +++ b/community/gns3-gui/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="GNS3 network simulator. Graphical user interface package." url="https://github.com/GNS3/gns3-gui" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="python3 py3-paramiko gns3-converter py3-psutil py3-jsonschema py3-raven py3-qt5 qt5-qtsvg" makedepends="python3-dev py-setuptools" diff --git a/community/gns3-server/APKBUILD b/community/gns3-server/APKBUILD index 96b14981519..6fe588e93bd 100644 --- a/community/gns3-server/APKBUILD +++ b/community/gns3-server/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="GNS3 network simulator. Server package." url="https://github.com/GNS3/gns3-server" arch="all" -license="GPL3" +license="GPL-3.0" depends="busybox dynamips python3 py3-psutil py3-jinja2 py3-aiohttp py3-aiohttp-cors py3-pytest py3-netifaces py3-ws4py py3-zipstream py3-raven py3-jsonschema py3-yarl py3-multidict py3-prompt_toolkit" diff --git a/community/google-authenticator/APKBUILD b/community/google-authenticator/APKBUILD index e10bcf17e37..5c06471d8ce 100644 --- a/community/google-authenticator/APKBUILD +++ b/community/google-authenticator/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Google Authenticator PAM module" url="https://github.com/google/google-authenticator" arch="all" -license="ASL-2.0" +license="Apache-2.0" makedepends="autoconf automake libtool linux-pam-dev m4 libressl-dev" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/google/google-authenticator/archive/$pkgver.tar.gz" diff --git a/community/gource/APKBUILD b/community/gource/APKBUILD index 77f36fc1016..d0b46479b27 100644 --- a/community/gource/APKBUILD +++ b/community/gource/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Software version control visualization" url="http://gource.io/" arch="all" -license="GPL3" +license="GPL-3.0" makedepends="ftgl-dev sdl2-dev sdl2_image-dev pcre-dev glew-dev libpng-dev libjpeg-turbo-dev glu-dev boost-dev glm-dev" subpackages="$pkgname-doc" diff --git a/community/gringo/APKBUILD b/community/gringo/APKBUILD index 77983dca13d..81d53f11dd0 100644 --- a/community/gringo/APKBUILD +++ b/community/gringo/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Grounder to translate user-provided logic programs" url="https://potassco.org/" arch="all" -license="LGPL3" +license="LGPL-3.0" depends="" makedepends="re2c scons bison python2" install="" diff --git a/community/gsettings-desktop-schemas/APKBUILD b/community/gsettings-desktop-schemas/APKBUILD index 53058a8dbf9..675e81e50ab 100644 --- a/community/gsettings-desktop-schemas/APKBUILD +++ b/community/gsettings-desktop-schemas/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="A collection of GSettings schemas" url="http://bugzilla.gnome.org/enter_bug.cgi?product=gsettings-desktop-schemas" arch="noarch" -license="LGPLv2+" +license="LGPL-2.0-or-later" makedepends="glib-dev intltool gobject-introspection-dev" subpackages="$pkgname-dev" source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz" diff --git a/community/gsoap/APKBUILD b/community/gsoap/APKBUILD index f925c815bca..b18a022e02d 100644 --- a/community/gsoap/APKBUILD +++ b/community/gsoap/APKBUILD @@ -5,7 +5,7 @@ pkgver=2.8.55 pkgrel=0 arch="all" pkgdesc='A cross-platform C and C++ SDK for SOAP/XML Web services' -license="GPL-2 gSOAP" +license="GPL-2.0 gSOAP" url="http://gsoap2.sourceforge.net" makedepends="autoconf automake bison flex zlib-dev libressl-dev libtool" subpackages="$pkgname-dev" diff --git a/community/guvcview/APKBUILD b/community/guvcview/APKBUILD index a99a560b5f5..dad992486bb 100644 --- a/community/guvcview/APKBUILD +++ b/community/guvcview/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Webcam viewer" url="http://guvcview.sourceforge.net/" arch="all" -license="GPLv3" +license="GPL-3.0" depends= depends_dev= makedepends="gtk+3.0-dev eudev-dev sdl-dev portaudio-dev ffmpeg-dev gsl-dev diff --git a/community/hivex/APKBUILD b/community/hivex/APKBUILD index b7f3ef52cd6..2bc3b98d335 100644 --- a/community/hivex/APKBUILD +++ b/community/hivex/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="System for extracting the contents of Windows Registry." url="http://libguestfs.org" arch="all" -license="LGPL2.1" +license="LGPL-2.1" makedepends="python2-dev libxml2-dev readline-dev perl-dev" checkdepends="bash" subpackages="$pkgname-dev $pkgname-doc" diff --git a/community/homer-ui/APKBUILD b/community/homer-ui/APKBUILD index f60b7c76533..32e03e2f12a 100644 --- a/community/homer-ui/APKBUILD +++ b/community/homer-ui/APKBUILD @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="HOMER User-Interface" url="https://github.com/sipcapture/homer-ui" arch="noarch" -license="AGPL3" +license="AGPL-3.0" depends="homer-api" depends_dev= makedepends="$depends_dev" diff --git a/community/httpry/APKBUILD b/community/httpry/APKBUILD index 5baf23d0acc..01d32cc96f5 100644 --- a/community/httpry/APKBUILD +++ b/community/httpry/APKBUILD @@ -7,7 +7,7 @@ pkgdesc="A packet sniffer designed for HTTP traffic" # Sources at https://github.com/jbittel/httpry/ url="http://dumpsterventures.com/jason/httpry/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="libpcap-dev" subpackages="$pkgname-doc" source="http://dumpsterventures.com/jason/httpry/$pkgname-$pkgver.tar.gz" diff --git a/community/hugo/APKBUILD b/community/hugo/APKBUILD index 49e7fa19c3e..9c5b9e42276 100644 --- a/community/hugo/APKBUILD +++ b/community/hugo/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A Fast and Flexible Static Site Generator built with love in GoLang" url="http://gohugo.io/" arch="all" -license="Apache 2.0" +license="Apache-2.0" depends="" makedepends="go govendor" install="" diff --git a/community/hydrogen/APKBUILD b/community/hydrogen/APKBUILD index e7c9ccda6ac..d47716a40ac 100644 --- a/community/hydrogen/APKBUILD +++ b/community/hydrogen/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Advanced drum machine for GNU/Linux" url="http://www.hydrogen-music.org/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" depends="" makedepends="qt-dev alsa-lib-dev flac-dev libsndfile-dev cmake portaudio-dev libarchive-dev jack-dev" diff --git a/community/hyphen/APKBUILD b/community/hyphen/APKBUILD index 6025435fd9b..6cc35afeea5 100644 --- a/community/hyphen/APKBUILD +++ b/community/hyphen/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Library for high quality hyphenation and justification" url="http://hunspell.sourceforge.net/" arch="all" -license="GPL2+ LGPL2+ MPL 1.1" +license="GPL-2.0-or-later LGPL-2.0-or-later MPL-1.1" subpackages="$pkgname-dev $pkgname-en" depends_dev="perl" makedepends="$depends_dev" diff --git a/community/ices/APKBUILD b/community/ices/APKBUILD index 09299c6391f..26c94b1db0a 100644 --- a/community/ices/APKBUILD +++ b/community/ices/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Source client for broadcasting in MP3 format to an icecast2 server" url="http://icecast.org/ices.php" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" depends="" makedepends="libogg-dev libxml2-dev libvorbis-dev libshout-dev alsa-lib-dev lame-dev perl-dev python2-dev libxml2-dev linux-headers" diff --git a/community/icingaweb2-module-director/APKBUILD b/community/icingaweb2-module-director/APKBUILD index 873154e63d1..41b0583dfd7 100644 --- a/community/icingaweb2-module-director/APKBUILD +++ b/community/icingaweb2-module-director/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Configuration frontend for Icinga 2, integrated automation" url="http://www.icinga.org" arch="noarch !armhf" -license="GPL2" +license="GPL-2.0" _php=php7 depends="icingaweb2 ${_php}-curl" options="!check" diff --git a/community/incron/APKBUILD b/community/incron/APKBUILD index 2c12cecf672..2133eedc1e0 100644 --- a/community/incron/APKBUILD +++ b/community/incron/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Inotify cron system" url="http://inotify.aiken.cz" arch="all" -license="GPLv2" +license="GPL-2.0" makedepends="argp-standalone" subpackages="$pkgname-doc" options="suid" diff --git a/community/inetutils-syslogd/APKBUILD b/community/inetutils-syslogd/APKBUILD index a53ed9449e8..3b3c29158b8 100644 --- a/community/inetutils-syslogd/APKBUILD +++ b/community/inetutils-syslogd/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="A small syslogd for logging to multiple files" url="https://www.gnu.org/software/inetutils/" arch="all" -license="GPL3" +license="GPL-3.0" depends_dev="readline-dev ncurses-dev" makedepends="$depends_dev" install="$pkgname.post-install $pkgname.post-deinstall" diff --git a/community/innoextract/APKBUILD b/community/innoextract/APKBUILD index c020bbc7d85..707222a12c1 100644 --- a/community/innoextract/APKBUILD +++ b/community/innoextract/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A tool to extract installers created by Inno Setup" url="http://constexpr.org/innoextract/" arch="all" -license="ZLIB" +license="zlib" depends="" depends_dev="cmake boost-dev xz-dev" makedepends="$depends_dev" diff --git a/community/inotify-tools-inc/APKBUILD b/community/inotify-tools-inc/APKBUILD index caec1b35dd1..d49588744cb 100644 --- a/community/inotify-tools-inc/APKBUILD +++ b/community/inotify-tools-inc/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="inotify-tools patched to add --include regex" url="https://github.com/rvoicilas/inotify-tools" arch="all" -license="GPL2" +license="GPL-2.0" depends="!inotify-tools" subpackages="$pkgname-dev $pkgname-doc" source="https://github.com/downloads/rvoicilas/$_realname/$_realname-$pkgver.tar.gz diff --git a/community/ioping/APKBUILD b/community/ioping/APKBUILD index f7c7f4d2119..4922a43ee03 100644 --- a/community/ioping/APKBUILD +++ b/community/ioping/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A simple disk i/o latency measurement tool" url="https://github.com/koct9i/ioping" arch="all" -license="GPL3+" +license="GPL-3.0-or-later" depends="" depends_dev="" makedepends="$depends_dev linux-headers" diff --git a/community/iotop/APKBUILD b/community/iotop/APKBUILD index 34bcf7eeb45..5acbc732a8d 100644 --- a/community/iotop/APKBUILD +++ b/community/iotop/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="I/O monitoring tool" url="http://guichaz.free.fr/iotop/" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="python2" depends_dev="" makedepends="python2-dev py-setuptools" diff --git a/community/iouyap/APKBUILD b/community/iouyap/APKBUILD index d2828f57169..d3e43a5c634 100644 --- a/community/iouyap/APKBUILD +++ b/community/iouyap/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Bridge IOU to UDP, TAP and Ethernet." url="https://github.com/GNS3/iouyap" arch="all" -license="GPL3" +license="GPL-3.0" makedepends="$depends_dev linux-headers bison flex bsd-compat-headers" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/GNS3/$pkgname/archive/v$pkgver.tar.gz diff --git a/community/irrlicht/APKBUILD b/community/irrlicht/APKBUILD index e7bc39e9be6..4cd27eb97eb 100644 --- a/community/irrlicht/APKBUILD +++ b/community/irrlicht/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="High performance realtime 3D engine written in C++" url="http://irrlicht.sourceforge.net" arch="all" -license="ZLIB" +license="zlib" depends="" makedepends="mesa-dev libjpeg-turbo-dev bzip2 libpng-dev zlib-dev bzip2-dev" subpackages="$pkgname-dev $pkgname-doc" diff --git a/community/irssi-xmpp/APKBUILD b/community/irssi-xmpp/APKBUILD index 4dee6c792cc..174ebb0ae11 100644 --- a/community/irssi-xmpp/APKBUILD +++ b/community/irssi-xmpp/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="An irssi plugin to connect to the Jabber network" url="https://cybione.org/~irssi-xmpp/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="irssi-dev loudmouth-dev" subpackages="$pkgname-doc" options="!check" diff --git a/community/isync/APKBUILD b/community/isync/APKBUILD index d80556bfd8a..69e859a4394 100644 --- a/community/isync/APKBUILD +++ b/community/isync/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="IMAP and MailDir mailbox synchronizer" url="http://isync.sourceforge.net" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="$depends_dev libressl-dev cyrus-sasl-dev zlib-dev db-dev perl-dev" subpackages="$pkgname-doc" diff --git a/community/java-jansi-native/APKBUILD b/community/java-jansi-native/APKBUILD index d2c8cca97c1..9e8b318faa5 100644 --- a/community/java-jansi-native/APKBUILD +++ b/community/java-jansi-native/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Native JNI libraries used by the Jansi project." url="https://github.com/fusesource/jansi-native" arch="all" -license="ASL-2.0" +license="Apache-2.0" depends="openjdk8-jre-base" makedepends="autoconf automake libtool maven openjdk8" source="https://github.com/fusesource/$_pkgname/archive/$_pkgname-$pkgver.tar.gz" diff --git a/community/java-jffi/APKBUILD b/community/java-jffi/APKBUILD index 3ecf36e0a1f..0ea2a3277a7 100644 --- a/community/java-jffi/APKBUILD +++ b/community/java-jffi/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="Java Foreign Function Interface" url="https://github.com/jnr/jffi" arch="all" -license="ASL-2.0" +license="Apache-2.0" depends="openjdk8-jre-base" makedepends="apache-ant file openjdk8" subpackages="$pkgname-native" diff --git a/community/java-jna/APKBUILD b/community/java-jna/APKBUILD index b91bf8e5988..a4cef43167d 100644 --- a/community/java-jna/APKBUILD +++ b/community/java-jna/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="JNA provides Java programs easy access to native shared libraries." url="https://github.com/java-native-access/jna" arch="all" -license="ASL-2.0 LGPL-2.1" +license="Apache-2.0 LGPL-2.1" depends="openjdk8-jre-base" makedepends="apache-ant autoconf automake libffi-dev>=3.2 libtool openjdk8" subpackages="$pkgname-native" diff --git a/community/java-lz4/APKBUILD b/community/java-lz4/APKBUILD index f11484808ec..c813ddaefc6 100644 --- a/community/java-lz4/APKBUILD +++ b/community/java-lz4/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="LZ4 compression for Java" url="https://github.com/jpountz/lz4-java" arch="all" -license="ASL-2.0" +license="Apache-2.0" depends="openjdk8-jre-base" makedepends="apache-ant openjdk8" subpackages="$pkgname-native" diff --git a/community/java-postgresql-jdbc/APKBUILD b/community/java-postgresql-jdbc/APKBUILD index b148d30903b..07977a139dc 100644 --- a/community/java-postgresql-jdbc/APKBUILD +++ b/community/java-postgresql-jdbc/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Java JDBC 4.2 (JRE 8+) driver for PostgreSQL database" url="https://jdbc.postgresql.org" arch="noarch" -license="BSD-3" +license="BSD-3-Clause" depends="" makedepends="openjdk8 maven" source="$pkgname-$pkgver.tar.gz::https://github.com/pgjdbc/pgjdbc/archive/REL$pkgver.tar.gz" diff --git a/community/java-snappy/APKBUILD b/community/java-snappy/APKBUILD index 9af31496b94..55b2d3d5b29 100644 --- a/community/java-snappy/APKBUILD +++ b/community/java-snappy/APKBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Snappy compressor/decompressor for Java" url="https://github.com/xerial/snappy-java" arch="all" -license="ASL-2.0" +license="Apache-2.0" depends="openjdk8-jre-base" makedepends="bash openjdk8 perl snappy-dev>=$_libver" subpackages="$pkgname-native" diff --git a/community/jetty-runner/APKBUILD b/community/jetty-runner/APKBUILD index 13b6b0d272c..7fccd290924 100644 --- a/community/jetty-runner/APKBUILD +++ b/community/jetty-runner/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Fast and easy way to run Java web application from the command line." url="https://www.eclipse.org/jetty" arch="noarch" -license="ASL-2.0" +license="Apache-2.0" depends="openjdk8-jre-base" makedepends="" source="https://repo.maven.apache.org/maven2/org/eclipse/jetty/$pkgname/$_pkgver/$pkgname-$_pkgver.jar diff --git a/community/john/APKBUILD b/community/john/APKBUILD index 4e6e9694580..3a82d185c13 100644 --- a/community/john/APKBUILD +++ b/community/john/APKBUILD @@ -8,7 +8,7 @@ pkgrel=8 pkgdesc="John the Ripper password cracker" url="http://www.openwall.com/john" arch="x86_64 armhf ppc64le" -license="GPL2" +license="GPL-2.0" depends="nss" options="!strip" makedepends="libpcap-dev libressl-dev gmp-dev yasm-dev zlib-dev" diff --git a/community/jpegoptim/APKBUILD b/community/jpegoptim/APKBUILD index 9b668002a95..0b6fcfc3acf 100644 --- a/community/jpegoptim/APKBUILD +++ b/community/jpegoptim/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Utility to optimize jpeg files" url="https://github.com/tjko/jpegoptim" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="libjpeg-turbo-dev" options="!check" diff --git a/community/jreen/APKBUILD b/community/jreen/APKBUILD index d124f231071..b75465566ed 100644 --- a/community/jreen/APKBUILD +++ b/community/jreen/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Free and Opensource Jabber library, written in C++ using cross-platform framework Qt." url="http://qutim.org/jreen" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="qt-dev speex-dev libgsasl-dev" makedepends="$depends_dev cmake" diff --git a/community/jruby/APKBUILD b/community/jruby/APKBUILD index ac284ce839a..3e22b7fe4ae 100644 --- a/community/jruby/APKBUILD +++ b/community/jruby/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="An implementation of Ruby on the JVM" url="http://jruby.org" arch="noarch" -license="EPL GPL-2 LGPL-2.1 custom" +license="EPL GPL-2.0 LGPL-2.1 custom" # libc6-compat: https://github.com/jnr/jnr-posix/issues/73 depends="$pkgname-libs java-jffi-native>=1.2 libc6-compat>=1.1.12-r5 openjdk8-jre-base" makedepends="openjdk8 zip" diff --git a/community/junit/APKBUILD b/community/junit/APKBUILD index 8a8bdb946f5..71c39342c23 100644 --- a/community/junit/APKBUILD +++ b/community/junit/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A programmer-oriented testing framework for Java" url="http://junit.org/" arch="noarch" -license="Eclipse 1.0" +license="EPL-1.0" depends="" source="http://search.maven.org/remotecontent?filepath=$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.jar" diff --git a/community/kbuild/APKBUILD b/community/kbuild/APKBUILD index b353ae46fef..7825d6faa59 100644 --- a/community/kbuild/APKBUILD +++ b/community/kbuild/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A makefile framework for writing simple makefiles for complex tasks" url="http://svn.netlabs.org/kbuild/wiki" arch="x86 x86_64" -license="GPL3" +license="GPL-3.0" depends="" depends_dev="" makedepends="autoconf automake flex bison" diff --git a/community/keepassx/APKBUILD b/community/keepassx/APKBUILD index 9d71ceea9e1..8a9b3735f8a 100644 --- a/community/keepassx/APKBUILD +++ b/community/keepassx/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A password manager" url="http://www.keepassx.org" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="cmake qt-dev libxtst-dev libgcrypt-dev" source="http://www.keepassx.org/releases/${pkgver}/${pkgname}-${pkgver}.tar.gz musl-fixes.patch diff --git a/community/keybinder3/APKBUILD b/community/keybinder3/APKBUILD index af902383a7b..75b613a06a0 100644 --- a/community/keybinder3/APKBUILD +++ b/community/keybinder3/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Library for registering global key bindings, for gtk-based applications. GTK3 version" url="https://github.com/engla/keybinder" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="gtk+3.0-dev python2-dev py-gobject gobject-introspection-dev automake autoconf libtool gnome-common gtk-doc" diff --git a/community/kiwiirc/APKBUILD b/community/kiwiirc/APKBUILD index 3b76ff5aadc..f5fef4532d8 100644 --- a/community/kiwiirc/APKBUILD +++ b/community/kiwiirc/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="A hand-crafted webirc client" url="https://www.kiwiirc.com/" arch="noarch" -license="AGPL3" +license="AGPL-3.0" depends="nodejs>=0.10.0" makedepends="nodejs nodejs-npm" install="$pkgname.pre-install" diff --git a/community/knot/APKBUILD b/community/knot/APKBUILD index 978856da911..58f51054559 100644 --- a/community/knot/APKBUILD +++ b/community/knot/APKBUILD @@ -9,7 +9,7 @@ pkgrel=0 pkgdesc="An high-performance authoritative-only DNS server" url="https://www.knot-dns.cz" arch="all" -license="GPL3" +license="GPL-3.0" depends="" makedepends="gnutls-dev libedit-dev libcap-ng-dev libidn-dev lmdb-dev libressl-dev userspace-rcu-dev zlib-dev diff --git a/community/lasem/APKBUILD b/community/lasem/APKBUILD index bf987086845..c5c36cae227 100644 --- a/community/lasem/APKBUILD +++ b/community/lasem/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="A library for rendering SVG and Mathml, implementing a DOM like API" url="https://wiki.gnome.org/Projects/Lasem" arch="all" -license="LGPL2 GPL2" +license="LGPL-2.0 GPL-2.0" makedepends="intltool gdk-pixbuf-dev gobject-introspection-dev libxml2-dev pango-dev" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang $pkgname-render" diff --git a/community/lastpass-cli/APKBUILD b/community/lastpass-cli/APKBUILD index f736b912cce..d043add160e 100644 --- a/community/lastpass-cli/APKBUILD +++ b/community/lastpass-cli/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="LastPass command line interface tool" url="https://lastpass.com/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="libressl-dev curl-dev libxml2-dev asciidoc cmake bash" subpackages="$pkgname-doc $pkgname-bash-completion:bashcomp:noarch" source="$pkgname-$pkgver.tar.gz::https://github.com/${pkgname/-*/}/$pkgname/archive/v${pkgver}.tar.gz diff --git a/community/leafpad/APKBUILD b/community/leafpad/APKBUILD index 53dbf2356f4..c18069d50c3 100644 --- a/community/leafpad/APKBUILD +++ b/community/leafpad/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A simple GTK+ text editor" url="http://tarot.freeshell.org/leafpad" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="gtk+2.0-dev" makedepends="$depends_dev" diff --git a/community/lensfun/APKBUILD b/community/lensfun/APKBUILD index 3d8ef415d4b..067c701fe90 100644 --- a/community/lensfun/APKBUILD +++ b/community/lensfun/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Image manipulation library to rectify lens defects" url="http://lensfun.sourceforge.net/" arch="all" -license="LGPL3" +license="LGPL-3.0" makedepends="py-docutils cmake doxygen libpng glib-dev" subpackages="$pkgname-dev" source="http://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz" diff --git a/community/letsencrypt-nosudo/APKBUILD b/community/letsencrypt-nosudo/APKBUILD index 42d6bffe877..40b85886288 100644 --- a/community/letsencrypt-nosudo/APKBUILD +++ b/community/letsencrypt-nosudo/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Free HTTPS certificates without having to trust the letsencrypt cli with sudo/root" url="https://github.com/diafygi/letsencrypt-nosudo" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="python2" depends_dev="" makedepends="$depends_dev" diff --git a/community/libabw/APKBUILD b/community/libabw/APKBUILD index 51c09d7f14a..f3d525b0020 100644 --- a/community/libabw/APKBUILD +++ b/community/libabw/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Import filter and tools for AbiWord documents" url="https://wiki.documentfoundation.org/DLP/Libraries/libabw" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="librevenge-dev libxml2-dev zlib-dev boost-dev" makedepends="$depends_dev doxygen gperf perl" diff --git a/community/libcdr/APKBUILD b/community/libcdr/APKBUILD index a8c1dd9e5ec..8ea9ec8e182 100644 --- a/community/libcdr/APKBUILD +++ b/community/libcdr/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Import filter and tools for Corel DRAW files" url="https://wiki.documentfoundation.org/DLP/Libraries/libcdr" arch="all" -license="MPL2" +license="MPL-2.0" depends_dev="boost-dev" makedepends="$depends_dev doxygen icu-dev lcms2-dev zlib-dev librevenge-dev" subpackages="$pkgname-dev $pkgname-doc $pkgname-tools" diff --git a/community/libcmis/APKBUILD b/community/libcmis/APKBUILD index 90485bfd7c7..1a365466762 100644 --- a/community/libcmis/APKBUILD +++ b/community/libcmis/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="CMIS protocol client library" url="https://sourceforge.net/projects/libcmis/" arch="all" -license="MPL1.1+ GPLv2+ LGPLv2+" +license="MPL-1.1 GPL-2.0-or-later LGPL-2.0-or-later" depends="" depends_dev="curl-dev libxml2-dev cppunit-dev boost-dev" makedepends="$depends_dev autoconf automake libtool" diff --git a/community/libcoap/APKBUILD b/community/libcoap/APKBUILD index 65f17759ea9..8a356b5d8c1 100644 --- a/community/libcoap/APKBUILD +++ b/community/libcoap/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A CoAP (RFC 7252) implementation" url="https://github.com/obgm/libcoap" arch="all" -license="BSD GPL2+" +license="BSD GPL-2.0-or-later" depends="" depends_dev="" makedepends="automake autoconf libtool asciidoc" diff --git a/community/libcoro/APKBUILD b/community/libcoro/APKBUILD index 1370449f6a6..ffe8042fb1b 100644 --- a/community/libcoro/APKBUILD +++ b/community/libcoro/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Coroutines (cooperative multitasking) in a portable fashion implemented in C" url="http://software.schmorp.de/pkg/libcoro.html" arch="all" -license="BSD-2" +license="BSD-2-Clause" makedepends="cvs gzip musl-dev" subpackages="$pkgname-dev" source="http://dev.alpinelinux.org/archive/$pkgname/$pkgname-$pkgver.tar.gz diff --git a/community/libcouchbase/APKBUILD b/community/libcouchbase/APKBUILD index 1484602d9ef..d30a87a1d25 100644 --- a/community/libcouchbase/APKBUILD +++ b/community/libcouchbase/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="C client library for Couchbase" url="https://developer.couchbase.com/community" arch="all" -license="ASL 2.0" +license="Apache-2.0" depends= depends_dev="musl-dev libressl-dev snappy-dev" makedepends="$depends_dev cmake perl libtool libev-dev libevent-dev libuv-dev" diff --git a/community/libdbi-drivers/APKBUILD b/community/libdbi-drivers/APKBUILD index 90678c76ca4..81b8e6ec658 100644 --- a/community/libdbi-drivers/APKBUILD +++ b/community/libdbi-drivers/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Provides the database-specific drivers for the libdbi framework" url="http://libdbi-drivers.sourceforge.net/" arch="all" -license="LGPL2+" +license="LGPL-2.0-or-later" depends="" depends_dev="" makedepends="libdbi-dev freetds-dev mysql-dev postgresql-dev sqlite-dev diff --git a/community/libe-book/APKBUILD b/community/libe-book/APKBUILD index eebf0a1a162..fa541de01e4 100644 --- a/community/libe-book/APKBUILD +++ b/community/libe-book/APKBUILD @@ -6,7 +6,7 @@ pkgrel=6 pkgdesc="Import filter and tools for various ebook formats" url="https://sourceforge.net/projects/libebook/" arch="all" -license="MPL2" +license="MPL-2.0" depends_dev="boost-dev icu-dev librevenge-dev libxml2-dev zlib-dev" makedepends="$depends_dev doxygen gperf" subpackages="$pkgname-dev $pkgname-doc $pkgname-tools" diff --git a/community/libetonyek/APKBUILD b/community/libetonyek/APKBUILD index a1b2aab849b..11afd63c9c3 100644 --- a/community/libetonyek/APKBUILD +++ b/community/libetonyek/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Import filter and tools for Apple Keynote presentations" url="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="glm-dev boost-dev librevenge-dev libxml2-dev zlib-dev liblangtag-dev" makedepends="$depends_dev gperf doxygen mdds1.0-dev" diff --git a/community/libewf/APKBUILD b/community/libewf/APKBUILD index 9b5a3e3c86d..5064dc3445f 100644 --- a/community/libewf/APKBUILD +++ b/community/libewf/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Library to support the Expert Witness Compression Format" url="http://libewf.sourceforge.net" arch="all" -license="LGPL2+" +license="LGPL-2.0-or-later" depends="" depends_dev="zlib-dev bzip2-dev libressl-dev util-linux-dev" makedepends="$depends_dev" diff --git a/community/libexttextcat/APKBUILD b/community/libexttextcat/APKBUILD index 330add4609c..ed7babe01f0 100644 --- a/community/libexttextcat/APKBUILD +++ b/community/libexttextcat/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="An N-Gram-Based Text Categorization library" url="http://www.freedesktop.org/wiki/Software/libexttextcat/" arch="all" -license="MPL2" +license="MPL-2.0" checkdepends="bash" subpackages="$pkgname-dev" source="http://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz" diff --git a/community/libfreehand/APKBUILD b/community/libfreehand/APKBUILD index f7c97e8ab50..9842331767c 100644 --- a/community/libfreehand/APKBUILD +++ b/community/libfreehand/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Import filter and tools for Adobe FreeHand documents" url="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="libxml2-dev lcms2-dev icu-dev" makedepends="$depends_dev gperf perl doxygen librevenge-dev zlib-dev" diff --git a/community/libftdi1/APKBUILD b/community/libftdi1/APKBUILD index 7cdbd0628c9..5754d617921 100644 --- a/community/libftdi1/APKBUILD +++ b/community/libftdi1/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A library to talk to FTDI chips" url="https://www.intra2net.com/en/developer/libftdi/download.php" arch="all" -license="LGPL2, GPL2" +license="LGPL-2.0 GPL-2.0" makedepends="cmake doxygen swig libusb-dev" subpackages="$pkgname-dev $pkgname-doc" install="$pkgname.pre-install $pkgname.post-upgrade" diff --git a/community/libhdhomerun/APKBUILD b/community/libhdhomerun/APKBUILD index 04ce69823b7..c683f7259f1 100644 --- a/community/libhdhomerun/APKBUILD +++ b/community/libhdhomerun/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Library for Silicon Dust HD HomeRun" url="http://www.silicondust.com/support/downloads/linux/" arch="all" -license="LGPL2+" +license="LGPL-2.0-or-later" depends="$pkgname-libs" depends_dev="$pkgname-libs" install="" diff --git a/community/libindicator/APKBUILD b/community/libindicator/APKBUILD index 4ec404ffcfc..4e86c9b228f 100644 --- a/community/libindicator/APKBUILD +++ b/community/libindicator/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Set of symbols and convenience functions for Ayatana indicators (GTK+ 3 library)" url="https://launchpad.net/libindicator" arch="all" -license="GPL3" +license="GPL-3.0" makedepends="gtk+3.0-dev" subpackages="$pkgname-dev" source="https://launchpad.net/$pkgname/${pkgver%.*}/${pkgver}/+download/$pkgname-$pkgver.tar.gz" diff --git a/community/libixion/APKBUILD b/community/libixion/APKBUILD index eb05c2cbafd..00e0e936a23 100644 --- a/community/libixion/APKBUILD +++ b/community/libixion/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="a general purpose formula parser & interpreter" url="https://gitlab.com/ixion/ixion" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="" makedepends="$depends_dev boost-dev mdds-dev" diff --git a/community/liblangtag/APKBUILD b/community/liblangtag/APKBUILD index 48e8cd3ca59..65d1a9c4304 100644 --- a/community/liblangtag/APKBUILD +++ b/community/liblangtag/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Interface library to access/deal with tags for identifying languages" url="http://tagoh.bitbucket.org/liblangtag/index.html" arch="all" -license="LGPL3" +license="LGPL-3.0" depends="" depends_dev="glib-dev" makedepends="$depends_dev gobject-introspection libtool libxml2-dev" diff --git a/community/libmatekbd/APKBUILD b/community/libmatekbd/APKBUILD index 840e0d0fe4b..34cba86632b 100644 --- a/community/libmatekbd/APKBUILD +++ b/community/libmatekbd/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="MATE keyboard library" url="https://github.com/mate-desktop/libmatekbd" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common freetype" makedepends="libxklavier-dev libtool intltool gtk+3.0-dev" subpackages="$pkgname-dev $pkgname-lang" diff --git a/community/libmateweather/APKBUILD b/community/libmateweather/APKBUILD index f4712c21ad7..83c312447f1 100644 --- a/community/libmateweather/APKBUILD +++ b/community/libmateweather/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A library to access weather information from online services for numerous locations" url="https://github.com/mate-desktop/libmateweather" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common" makedepends="libsoup-dev libtool intltool gtk+3.0-dev libxml2-utils tzdata" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" diff --git a/community/libmbim/APKBUILD b/community/libmbim/APKBUILD index 1a182d90005..6b5bfe61e6e 100644 --- a/community/libmbim/APKBUILD +++ b/community/libmbim/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="MBIM modem protocol helper library" url="http://www.freedesktop.org/wiki/Software/libmbim" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="$depends_dev gtk-doc python2 glib-dev py-gobject libgudev-dev" subpackages="$pkgname-dev $pkgname-doc" source="https://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz" diff --git a/community/libmpdclient/APKBUILD b/community/libmpdclient/APKBUILD index bb64963b1f7..7d466e43cf3 100644 --- a/community/libmpdclient/APKBUILD +++ b/community/libmpdclient/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="An asynchronous API library for interfacing MPD in the C, C++ & Objective C languages" url="https://www.musicpd.org/libs/libmpdclient" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="meson" subpackages="$pkgname-dev $pkgname-doc" diff --git a/community/libmspub/APKBUILD b/community/libmspub/APKBUILD index 660abfda9a8..2386d70acf7 100644 --- a/community/libmspub/APKBUILD +++ b/community/libmspub/APKBUILD @@ -6,7 +6,7 @@ pkgrel=5 pkgdesc="Import filter and tools for MS Publisher files" url="https://wiki.documentfoundation.org/DLP/Libraries/libmspub" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="boost-dev librevenge-dev zlib-dev icu-dev libwpd-dev libwpg-dev" makedepends="$depends_dev doxygen" diff --git a/community/libmwaw/APKBUILD b/community/libmwaw/APKBUILD index b10df3ad0cc..7c9f9ca453f 100644 --- a/community/libmwaw/APKBUILD +++ b/community/libmwaw/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Import filter and tools for old Mac documents" url="https://sourceforge.net/projects/libmwaw/" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="boost-dev attr-dev zlib-dev" makedepends="$depends_dev librevenge-dev doxygen" diff --git a/community/libndp/APKBUILD b/community/libndp/APKBUILD index 33390cfa7ec..52e9d4372e3 100644 --- a/community/libndp/APKBUILD +++ b/community/libndp/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Library for IPv6 Neighbor Discovery Protocol" url="http://libndp.org" arch="all" -license="GPL2.1" +license="GPL-2.1" makedepends="autoconf automake libtool" subpackages="$pkgname-dev $pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/jpirko/libndp/archive/v$pkgver.tar.gz diff --git a/community/libnsl/APKBUILD b/community/libnsl/APKBUILD index 167934883c6..9e4c52952f7 100644 --- a/community/libnsl/APKBUILD +++ b/community/libnsl/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Public client interface for NIS(YP) and NIS+ in a IPv6 ready version" url="https://github.com/thkukuk/libnsl" arch="all" -license="LGPL2+" +license="LGPL-2.0-or-later" makedepends="autoconf automake libtool libc-dev gettext-dev libtirpc-dev file" subpackages="$pkgname-dev" source="https://github.com/thkukuk/$pkgname/archive/$pkgname-$pkgver.tar.gz diff --git a/community/libodfgen/APKBUILD b/community/libodfgen/APKBUILD index 5b8de864834..f0c8787fd1a 100644 --- a/community/libodfgen/APKBUILD +++ b/community/libodfgen/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Import filter and tools for Open Document Format" url="https://sourceforge.net/projects/libwpd/" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="boost-dev librevenge-dev" makedepends="$depends_dev pkgconfig doxygen" diff --git a/community/liborcus/APKBUILD b/community/liborcus/APKBUILD index b1cf9f43f7d..e4b29202c65 100644 --- a/community/liborcus/APKBUILD +++ b/community/liborcus/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Library for processing spreadsheet documents" url="https://gitlab.com/orcus/orcus" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="" makedepends="$depends_dev boost-dev mdds-dev libixion-dev zlib-dev" diff --git a/community/libosinfo/APKBUILD b/community/libosinfo/APKBUILD index 287f97b8a25..2fe2e03af1c 100644 --- a/community/libosinfo/APKBUILD +++ b/community/libosinfo/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="A library for managing OS information for virtualization" url="http://libosinfo.org/" arch="all" -license="LGPLv2+" +license="LGPL-2.0-or-later" depends="hwdata osinfo-db" makedepends="glib-dev libsoup-dev libxml2-dev libxslt-dev vala intltool gobject-introspection-dev check-dev perl-dev" diff --git a/community/libpagemaker/APKBUILD b/community/libpagemaker/APKBUILD index 0d89638f5e0..b3f20707042 100644 --- a/community/libpagemaker/APKBUILD +++ b/community/libpagemaker/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Import filter and tools for PageMaker" url="https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="boost-dev librevenge-dev" makedepends="$depends_dev doxygen" diff --git a/community/libplist/APKBUILD b/community/libplist/APKBUILD index 2833adde267..73c424f2a45 100644 --- a/community/libplist/APKBUILD +++ b/community/libplist/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="A library to handle Apple Property List format whereas it's binary or XML" url="http://libimobiledevice.org/" arch="all" -license="GPL2 LGPL2.1" +license="GPL-2.0 LGPL-2.1" depends="" depends_dev="libxml2-dev glib-dev" makedepends="swig python2-dev $depends_dev cython-dev python2 cython" diff --git a/community/libqmi/APKBUILD b/community/libqmi/APKBUILD index 68a4073b2de..309c018957a 100644 --- a/community/libqmi/APKBUILD +++ b/community/libqmi/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="QMI modem protocol helper library" url="http://www.freedesktop.org/wiki/Software/libqmi" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="gtk-doc python2 glib-dev libgudev-dev linux-headers" options="!check" #FIXME subpackages="$pkgname-dev $pkgname-doc" diff --git a/community/libreoffice/APKBUILD b/community/libreoffice/APKBUILD index 8be8e8eb12b..0d89c585589 100644 --- a/community/libreoffice/APKBUILD +++ b/community/libreoffice/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="LibreOffice - Meta package for the full office suite" url="http://www.libreoffice.org/" arch="all" -license="MPL2" +license="MPL-2.0" depends_dev="cups-dev libjpeg-turbo-dev boost-dev clucene-dev libe-book-dev icu-dev icu libetonyek-dev libwpd-dev libwpg-dev libmspub-dev libmwaw-dev libpagemaker-dev libvisio-dev libcmis-dev lcms2-dev cppunit-dev freetype-dev libabw-dev libwps-dev diff --git a/community/libreswan/APKBUILD b/community/libreswan/APKBUILD index 5f134090d2d..1795776f659 100644 --- a/community/libreswan/APKBUILD +++ b/community/libreswan/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="IPsec implementation for Linux" url="https://libreswan.org" arch="all" -license="GPLv2" +license="GPL-2.0" depends="nss-tools iproute2" provides="openswan" makedepends="bison flex coreutils bash xmlto diff --git a/community/libspectre/APKBUILD b/community/libspectre/APKBUILD index c2f073de96c..b8f5c9124a3 100644 --- a/community/libspectre/APKBUILD +++ b/community/libspectre/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A small library for rendering Postscript documents" url="http://www.freedesktop.org/wiki/Software/libspectre" arch="all" -license="GPL2" +license="GPL-2.0" # file, cairo-dev for tests only makedepends="ghostscript-dev doxygen graphviz cairo-dev file" subpackages="$pkgname-dev $pkgname-doc" diff --git a/community/libstaroffice/APKBUILD b/community/libstaroffice/APKBUILD index 974d46ba51b..cda0f8fac03 100644 --- a/community/libstaroffice/APKBUILD +++ b/community/libstaroffice/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Import filter for StarOffice documents" url="https://github.com/fosnola/libstaroffice" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="zlib-dev boost-dev" makedepends="$depends_dev librevenge-dev doxygen" diff --git a/community/libteam/APKBUILD b/community/libteam/APKBUILD index 0ec30f3a3e2..d172f642fcf 100644 --- a/community/libteam/APKBUILD +++ b/community/libteam/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Library for controlling team network device" url="http://libteam.org" arch="all" -license="LGPL2.1" +license="LGPL-2.1" makedepends="autoconf automake libtool libnl3-dev libdaemon-dev jansson-dev dbus-dev linux-headers bsd-compat-headers doxygen swig python2-dev python3-dev" diff --git a/community/libvirt-glib/APKBUILD b/community/libvirt-glib/APKBUILD index 4262f469e02..db96fc7308f 100644 --- a/community/libvirt-glib/APKBUILD +++ b/community/libvirt-glib/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="libvirt glib integration for events" url="http://libvirt.org/" arch="all" -license="LGPLv2+" +license="LGPL-2.0-or-later" depends="" makedepends="gobject-introspection-dev libvirt-dev libxml2-dev vala sed intltool" diff --git a/community/libvisio/APKBUILD b/community/libvisio/APKBUILD index 795e8c37c11..70ee04884ad 100644 --- a/community/libvisio/APKBUILD +++ b/community/libvisio/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Import filter and tools for MS Visio Diagrams" url="https://wiki.documentfoundation.org/DLP/Libraries/libvisio" arch="all" -license="MPL2.0" +license="MPL-2.0" depends_dev="boost-dev librevenge-dev icu-dev libwpd-dev libwpg-dev libxml2-dev zlib-dev" makedepends="$depends_dev doxygen gperf perl" subpackages="$pkgname-dev $pkgname-doc $pkgname-tools" diff --git a/community/libwpd/APKBUILD b/community/libwpd/APKBUILD index be6c4d9e506..9bc45cc4dad 100644 --- a/community/libwpd/APKBUILD +++ b/community/libwpd/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Import filter and tools for WordPerfect Documents" url="https://sourceforge.net/p/libwpd/" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="librevenge-dev" makedepends="$depends_dev doxygen" diff --git a/community/libwpg/APKBUILD b/community/libwpg/APKBUILD index bd97d382dc1..3ac19d5b591 100644 --- a/community/libwpg/APKBUILD +++ b/community/libwpg/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Import filter and tools for WordPerfect Graphics" url="https://sourceforge.net/projects/libwpg/" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="librevenge-dev libwpd-dev" makedepends="$depends_dev doxygen" diff --git a/community/libwps/APKBUILD b/community/libwps/APKBUILD index e0a81629748..a337d2c908a 100644 --- a/community/libwps/APKBUILD +++ b/community/libwps/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Import filter and tools for Microsoft Works files" url="https://sourceforge.net/projects/libwps/" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="librevenge-dev" makedepends="$depends_dev doxygen" diff --git a/community/libzmf/APKBUILD b/community/libzmf/APKBUILD index e97e982d448..33f6b10d808 100644 --- a/community/libzmf/APKBUILD +++ b/community/libzmf/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Import filter and tools for Zoner Callisto/Draw documents" url="https://wiki.documentfoundation.org/DLP/Libraries/libzmf" arch="all" -license="MPL2" +license="MPL-2.0" depends="" depends_dev="boost-dev icu-dev libpng-dev zlib-dev" makedepends="$depends_dev librevenge-dev doxygen" diff --git a/community/lshw/APKBUILD b/community/lshw/APKBUILD index 08345be68bf..6ae2b7b29df 100644 --- a/community/lshw/APKBUILD +++ b/community/lshw/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Hardware Lister" url="https://ezix.org/project/wiki/HardwareLiSter" arch="all" -license="GPL3+" +license="GPL-3.0-or-later" makedepends="sqlite-dev linux-headers" subpackages="$pkgname-doc $pkgname-lang" source="http://ezix.org/software/files/lshw-B.$pkgver.tar.gz diff --git a/community/lua-cqueues-pushy/APKBUILD b/community/lua-cqueues-pushy/APKBUILD index 1043f6bf6a2..5a7b9869a8b 100644 --- a/community/lua-cqueues-pushy/APKBUILD +++ b/community/lua-cqueues-pushy/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Framework for logic control (based on cqueues)" url="https://github.com/rameplayerorg/lua-cqueues-pushy" arch="all" -license="GPLv2" +license="GPL-2.0" install="" depends="" makedepends="linux-headers" diff --git a/community/lua-dromozoa-utf8/APKBUILD b/community/lua-dromozoa-utf8/APKBUILD index 346bb9faafd..1f0931b2e1d 100644 --- a/community/lua-dromozoa-utf8/APKBUILD +++ b/community/lua-dromozoa-utf8/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Lua 5.3 compatible pure-Lua UTF-8 implementation" url="https://github.com/dromozoa/dromozoa-utf8/" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="" checkdepends="" source="$pkgname-$pkgver.tar.gz::https://github.com/dromozoa/$_pkgname/archive/v$pkgver.tar.gz" diff --git a/community/lua-resty-http/APKBUILD b/community/lua-resty-http/APKBUILD index 6a43cb2da67..fb1cd898025 100644 --- a/community/lua-resty-http/APKBUILD +++ b/community/lua-resty-http/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Lua HTTP client cosocket driver for OpenResty / ngx_lua" url="https://github.com/pintsized/lua-resty-http" arch="noarch" -license="BSD2" +license="BSD-2-Clause" subpackages="" source="$pkgname-$pkgver.tar.gz::https://github.com/pintsized/lua-resty-http/archive/v$pkgver.tar.gz" builddir="$srcdir/$pkgname-$pkgver" diff --git a/community/lua-sleep/APKBUILD b/community/lua-sleep/APKBUILD index f83d8bfb05d..9a871914cd5 100644 --- a/community/lua-sleep/APKBUILD +++ b/community/lua-sleep/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Sleep functions for Lua" url=http://projects.plentyfact.org/projects/lua-sleep arch=all -license=public-domain +license="Public-Domain" depends= makedepends=lua-dev source="http://dev.alpinelinux.org/archive/lua-sleep/lua-sleep_$pkgver.tar.gz" diff --git a/community/lxcfs/APKBUILD b/community/lxcfs/APKBUILD index f269f1dd2f0..b7987b1c324 100644 --- a/community/lxcfs/APKBUILD +++ b/community/lxcfs/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="FUSE filesystem for LXC" url="https://linuxcontainers.org/lxcfs" arch="all" -license="Apache 2.0" +license="Apache-2.0" depends="cgmanager shadow-uidmap uidmapshift" makedepends="fuse-dev linux-pam-dev linux-headers help2man" subpackages="$pkgname-pam $pkgname-doc" diff --git a/community/macchanger/APKBUILD b/community/macchanger/APKBUILD index efe19246f0c..ea06b123909 100644 --- a/community/macchanger/APKBUILD +++ b/community/macchanger/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="An utility for viewing/manipulating the MAC address of network interfaces" url="https://github.com/alobbs/macchanger" arch="all" -license="GPLv3+" +license="GPL-3.0-or-later" makedepends="linux-headers" subpackages="$pkgname-doc" source="https://github.com/alobbs/macchanger/releases/download/$pkgver/$pkgname-$pkgver.tar.gz diff --git a/community/makepasswd/APKBUILD b/community/makepasswd/APKBUILD index 3935f156341..1f3bf7ee9d7 100644 --- a/community/makepasswd/APKBUILD +++ b/community/makepasswd/APKBUILD @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="Generates (pseudo-)random passwords of a desired length" url="http://people.defora.org/~khorben/projects/makepasswd/" arch="all" -license="GPL3" +license="GPL-3.0" depends="" makedepends="libxslt docbook-xsl libressl-dev" install="" diff --git a/community/marco/APKBUILD b/community/marco/APKBUILD index cbd9c421d43..77c0a5a50ee 100644 --- a/community/marco/APKBUILD +++ b/community/marco/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="MATE window manager" url="https://github.com/mate-desktop/marco" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common yelp-tools libxml2-utils" makedepends="libtool itstool zenity intltool glib-dev gtk+3.0-dev libxcomposite-dev libcanberra-dev" diff --git a/community/mate-applets/APKBUILD b/community/mate-applets/APKBUILD index 48803d8d076..262ae099a3e 100644 --- a/community/mate-applets/APKBUILD +++ b/community/mate-applets/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Applets for use with the MATE panel" url="https://github.com/mate-desktop/mate-applets" arch="all" -license="GPLv2" +license="GPL-2.0" depends="mate-icon-theme" makedepends="intltool gtk+3.0-dev mate-panel-dev libwnck3-dev mate-desktop-dev dconf-dev itstool linux-headers libxml2-dev diff --git a/community/mate-backgrounds/APKBUILD b/community/mate-backgrounds/APKBUILD index 83ca5963e23..438bf01aad5 100644 --- a/community/mate-backgrounds/APKBUILD +++ b/community/mate-backgrounds/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Background images and data for MATE" url="https://github.com/mate-desktop/mate-backgrounds" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="mate-common" makedepends="intltool" subpackages="$pkgname-lang" diff --git a/community/mate-calc/APKBUILD b/community/mate-calc/APKBUILD index eda353c97d0..2463111f4f4 100644 --- a/community/mate-calc/APKBUILD +++ b/community/mate-calc/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Calculator for MATE" url="https://github.com/mate-desktop/mate-calc" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common" makedepends="itstool libtool intltool gtk+3.0-dev libxml2-utils libxml2-dev" diff --git a/community/mate-common/APKBUILD b/community/mate-common/APKBUILD index 7e4a9cd4e1d..b974257292f 100644 --- a/community/mate-common/APKBUILD +++ b/community/mate-common/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Common scripts and macros" url="http://mate-desktop.org/" arch="noarch" -license="GPLv3+" +license="GPL-3.0-or-later" subpackages="$pkgname-doc" source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz" builddir="$srcdir/$pkgname-$pkgver" diff --git a/community/mate-control-center/APKBUILD b/community/mate-control-center/APKBUILD index f5ba3b37e56..7b02004033d 100644 --- a/community/mate-control-center/APKBUILD +++ b/community/mate-control-center/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="MATE's main interface for configuration of various aspects of your desktop" url="https://github.com/mate-desktop/mate-control-center" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common mate-menus mate-desktop mate-icon-theme desktop-file-utils" makedepends="dbus-glib-dev libtool intltool itstool gtk+3.0-dev dconf-dev mate-menus-dev libunique-dev marco-dev mate-settings-daemon-dev diff --git a/community/mate-desktop/APKBUILD b/community/mate-desktop/APKBUILD index 5f415f76027..4621c78ab14 100644 --- a/community/mate-desktop/APKBUILD +++ b/community/mate-desktop/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The MATE Desktop Environment" url="http://wiki.mate-desktop.org/mate-desktop" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common yelp-tools" depends_dev="startup-notification" makedepends="$depends_dev itstool intltool dconf-dev gtk+3.0-dev diff --git a/community/mate-icon-theme-faenza/APKBUILD b/community/mate-icon-theme-faenza/APKBUILD index 7fba479c75d..3eea52f621a 100644 --- a/community/mate-icon-theme-faenza/APKBUILD +++ b/community/mate-icon-theme-faenza/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Faenza desktop icons customized for MATE" url="https://github.com/mate-desktop/mate-icon-theme" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="mate-common" makedepends="icon-naming-utils intltool autoconf automake coreutils" source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz" diff --git a/community/mate-icon-theme/APKBUILD b/community/mate-icon-theme/APKBUILD index badd4d8778d..2b1f3610f74 100644 --- a/community/mate-icon-theme/APKBUILD +++ b/community/mate-icon-theme/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="MATE desktop icons" url="https://github.com/mate-desktop/mate-icon-theme" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="mate-common" makedepends="icon-naming-utils intltool" subpackages="$pkgname-lang" diff --git a/community/mate-indicator-applet/APKBUILD b/community/mate-indicator-applet/APKBUILD index 210eeb6b589..d220a1ad3ec 100644 --- a/community/mate-indicator-applet/APKBUILD +++ b/community/mate-indicator-applet/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A small applet to display information from various applications consistently in the panel" url="https://github.com/mate-desktop/mate-indicator-applet" arch="all" -license="GPL3 LGPL2.1" +license="GPL-3.0 LGPL-2.1" makedepends="autoconf automake libtool mate-common glib-dev gtk+3.0-dev mate-panel-dev intltool libindicator-dev" subpackages="$pkgname-lang" diff --git a/community/mate-media/APKBUILD b/community/mate-media/APKBUILD index 3c30387ed75..47a6b3dedef 100644 --- a/community/mate-media/APKBUILD +++ b/community/mate-media/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="media tools for MATE" url="https://github.com/mate-desktop/mate-media" arch="all" -license="GPLv2" +license="GPL-2.0" makedepends="intltool gobject-introspection-dev gtk+3.0-dev libcanberra-dev libunique-dev libmatemixer-dev mate-desktop-dev dconf-dev libxml2-dev startup-notification-dev" diff --git a/community/mate-menus/APKBUILD b/community/mate-menus/APKBUILD index 64a5a214243..933452445e6 100644 --- a/community/mate-menus/APKBUILD +++ b/community/mate-menus/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="The libmate-menu library, the layout configuration files for the MATE menu, as well as a simple menu editor" url="https://github.com/mate-desktop/mate-menus" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common" makedepends="libtool intltool glib-dev" subpackages="$pkgname-dev $pkgname-lang" diff --git a/community/mate-notification-daemon/APKBUILD b/community/mate-notification-daemon/APKBUILD index d15a53473e6..6bd6b4456e4 100644 --- a/community/mate-notification-daemon/APKBUILD +++ b/community/mate-notification-daemon/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Small, passive popup dialogs that notify the user of particular events" url="https://github.com/mate-desktop/mate-notification-daemon" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common" makedepends="libwnck3-dev libnotify-dev libtool intltool dbus-glib-dev libcanberra-dev gtk+3.0-dev" diff --git a/community/mate-panel/APKBUILD b/community/mate-panel/APKBUILD index 97d02cc5be4..66099dacf8b 100644 --- a/community/mate-panel/APKBUILD +++ b/community/mate-panel/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The MATE panel is the area on your desktop from which you can run applications" url="https://github.com/mate-desktop/mate-panel" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common mate-desktop" makedepends="librsvg-dev libmateweather-dev libtool intltool itstool mate-menus-dev dconf-dev libice-dev libsm-dev libcanberra-dev dbus-glib-dev diff --git a/community/mate-polkit/APKBUILD b/community/mate-polkit/APKBUILD index 7232bd29066..f01806e9b7e 100644 --- a/community/mate-polkit/APKBUILD +++ b/community/mate-polkit/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="MATE Authentication Agent for PolicyKit" url="https://github.com/mate-desktop/mate-polkit" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common" makedepends="polkit-dev libtool intltool gtk+3.0-dev gobject-introspection-dev" diff --git a/community/mate-power-manager/APKBUILD b/community/mate-power-manager/APKBUILD index eb4e54dfd04..d4b56aa28dc 100644 --- a/community/mate-power-manager/APKBUILD +++ b/community/mate-power-manager/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A Power Manager for MATE" url="https://github.com/mate-desktop/mate-power-manager" arch="all" -license="GPLv2" +license="GPL-2.0" makedepends="$depends_dev intltool gettext-dev itstool glib-dev libcanberra-dev dbus-glib-dev mate-desktop-dev dconf-dev libnotify-dev libunique-dev upower-dev libgnome-keyring-dev mate-panel-dev libcanberra-dev harfbuzz-dev" diff --git a/community/mate-screensaver/APKBUILD b/community/mate-screensaver/APKBUILD index 1c159699751..7041df9ca65 100644 --- a/community/mate-screensaver/APKBUILD +++ b/community/mate-screensaver/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A screen saver and locker for MATE" url="https://github.com/mate-desktop/mate-screensaver" arch="all" -license="GPLv2" +license="GPL-2.0" makedepends="intltool glib-dev libxscrnsaver-dev gtk+3.0-dev mate-desktop-dev dbus-glib-dev mate-menus-dev dconf-dev" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" diff --git a/community/mate-sensors-applet/APKBUILD b/community/mate-sensors-applet/APKBUILD index a758835ab25..d07d34d0483 100644 --- a/community/mate-sensors-applet/APKBUILD +++ b/community/mate-sensors-applet/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="An applet for the MATE Panel to display readings from hardware sensors" url="https://github.com/mate-desktop/mate-sensors-applet" arch="all" -license="GPLv2" +license="GPL-2.0" depends="perl-xml-parser" makedepends="intltool glib-dev gtk+3.0-dev mate-panel-dev libxslt-dev itstool libxml2-utils mdocml-dev" diff --git a/community/mate-session-manager/APKBUILD b/community/mate-session-manager/APKBUILD index 17d92e5687d..5a6582a7aa3 100644 --- a/community/mate-session-manager/APKBUILD +++ b/community/mate-session-manager/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The MATE session manager" url="https://github.com/mate-desktop/mate-session-manager" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common mate-desktop" makedepends="intltool libtool dconf-dev dbus-glib-dev gtk+3.0-dev libsm-dev mate-desktop-dev" diff --git a/community/mate-settings-daemon/APKBUILD b/community/mate-settings-daemon/APKBUILD index 3c7396038eb..78d271ae9e1 100644 --- a/community/mate-settings-daemon/APKBUILD +++ b/community/mate-settings-daemon/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="MATE Settings daemon" url="https://github.com/mate-desktop/mate-settings-daemon" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common mate-desktop" makedepends="libtool intltool libmatekbd-dev freeglut-dev glib-dev gtk+3.0-dev dbus-glib-dev dconf-dev libxklavier-dev libsm-dev diff --git a/community/mate-system-monitor/APKBUILD b/community/mate-system-monitor/APKBUILD index 2585e24e768..72c58a01edd 100644 --- a/community/mate-system-monitor/APKBUILD +++ b/community/mate-system-monitor/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="A system monitor for MATE" url="https://github.com/mate-desktop/mate-system-monitor" arch="all" -license="GPLv2" +license="GPL-2.0" depends="mate-icon-theme" makedepends="gtk+3.0-dev libwnck3-dev gtkmm3-dev libgtop-dev librsvg-dev glibmm-dev itstool linux-headers libxml2-utils" diff --git a/community/mate-terminal/APKBUILD b/community/mate-terminal/APKBUILD index 087d122c05e..596b7edd617 100644 --- a/community/mate-terminal/APKBUILD +++ b/community/mate-terminal/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="MATE terminal emulator" url="https://github.com/mate-desktop/mate-terminal" arch="all" -license="GPL2" +license="GPL-2.0" depends="mate-common yelp-tools mate-desktop" makedepends="libtool intltool dconf-dev libsm-dev itstool vte3-dev mate-desktop-dev libxml2-utils gtk+3.0-dev" diff --git a/community/mate-themes/APKBUILD b/community/mate-themes/APKBUILD index d6af8b8007b..7ba13fe66b9 100644 --- a/community/mate-themes/APKBUILD +++ b/community/mate-themes/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="MATE themes" url="https://github.com/mate-desktop/mate-themes" arch="noarch" -license="LGPL2" +license="LGPL-2.0" depends="mate-common" makedepends="intltool gdk-pixbuf-dev gtk+2.0-dev icon-naming-utils gtk+3.0-dev" subpackages="$pkgname-lang" diff --git a/community/mate-utils/APKBUILD b/community/mate-utils/APKBUILD index b1115d95f34..223e2e25af0 100644 --- a/community/mate-utils/APKBUILD +++ b/community/mate-utils/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Utilities for the MATE Desktop" url="https://github.com/mate-desktop/mate-utils" arch="all" -license="GPLv2" +license="GPL-2.0" makedepends="intltool glib-dev gtk+3.0-dev mate-panel-dev libgtop-dev libcanberra-dev itstool libsm-dev libxml2-utils" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" diff --git a/community/maven/APKBUILD b/community/maven/APKBUILD index 57c7935df71..79ad567b9b9 100644 --- a/community/maven/APKBUILD +++ b/community/maven/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="A Java project management and project comprehension tool." url="http://maven.apache.org" arch="noarch" -license="ASL-2.0" +license="Apache-2.0" depends="openjdk8-jre" source="http://mirror.hosting90.cz/apache/$pkgname/$_pkgname/$pkgver/binaries/apache-$pkgname-$pkgver-bin.tar.gz" builddir="$srcdir/apache-$pkgname-$pkgver" diff --git a/community/mbedtls/APKBUILD b/community/mbedtls/APKBUILD index 2f20ae92453..42270fc2018 100644 --- a/community/mbedtls/APKBUILD +++ b/community/mbedtls/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Light-weight cryptographic and SSL/TLS library" url="https://tls.mbed.org/" arch="all" -license="GPL2+ ASL 2.0" +license="GPL-2.0-or-later Apache-2.0" makedepends="cmake perl" subpackages="$pkgname-static $pkgname-dev $pkgname-utils" source="$pkgname-$pkgver.tar.gz::https://github.com/ARMmbed/$pkgname/archive/$pkgname-$pkgver.tar.gz diff --git a/community/midori/APKBUILD b/community/midori/APKBUILD index 63aa3706779..27180f110ad 100644 --- a/community/midori/APKBUILD +++ b/community/midori/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A lightweight web browser based on Gtk WebKit" url="http://www.midori-browser.org" arch="x86 x86_64" -license="LGPL2+" +license="LGPL-2.0-or-later" depends= makedepends="cmake librsvg-dev paxmark python2 vala gtk+3.0-dev gcr-dev libunique-dev webkit2gtk-dev" subpackages="$pkgname-lang" diff --git a/community/minetest/APKBUILD b/community/minetest/APKBUILD index 2125b372c03..bae9227a03d 100644 --- a/community/minetest/APKBUILD +++ b/community/minetest/APKBUILD @@ -8,7 +8,7 @@ url="http://minetest.net/" # luajit is not available for disabled arches arch="all !s390x" install="$pkgname-server.pre-install" -license="LGPL2.1 CCBY-SA3.0" +license="LGPL-2.1 CC-BY-SA-3.0" depends="$pkgname-common" pkgusers="minetest" pkggroups="minetest" diff --git a/community/modemmanager/APKBUILD b/community/modemmanager/APKBUILD index b4b724c8f39..67feef20356 100644 --- a/community/modemmanager/APKBUILD +++ b/community/modemmanager/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="ModemManager library" url="http://www.freedesktop.org/wiki/Software/ModemManager" arch="all" -license="GPL2, LGPL2.1" +license="GPL-2.0 LGPL-2.1" depends_dev="libmm-glib" makedepends="$depends_dev gobject-introspection-dev gtk-doc intltool vala libgudev-dev polkit-dev libmbim-dev libqmi-dev linux-headers" diff --git a/community/mongodb-tools/APKBUILD b/community/mongodb-tools/APKBUILD index 3d173a044fb..4f264aff301 100644 --- a/community/mongodb-tools/APKBUILD +++ b/community/mongodb-tools/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The MongoDB tools provide import, export, and diagnostic capabilities." url="https://github.com/mongodb/mongo-tools" arch="all !s390x !aarch64" -license="apache" +license="Apache" makedepends="$depends_dev go cyrus-sasl-dev libressl-dev libpcap-dev" options="!check" source="$pkgname-$pkgver.tar.gz::https://github.com/mongodb/mongo-tools/archive/r$pkgver.tar.gz diff --git a/community/monitoring-plugins/APKBUILD b/community/monitoring-plugins/APKBUILD index 8913003c638..a05ca1a8b5d 100644 --- a/community/monitoring-plugins/APKBUILD +++ b/community/monitoring-plugins/APKBUILD @@ -6,7 +6,7 @@ pkgrel=6 pkgdesc="Plugins for Icinga, Naemon, Nagios, Shinken, Sensu and other monitoring applications" url="http://www.monitoring-plugins.org" arch="all" -license="GPL3" +license="GPL-3.0" options="suid" depends="iputils" makedepends="linux-headers libdbi-dev libressl-dev diff --git a/community/monkey/APKBUILD b/community/monkey/APKBUILD index 9c775281fd6..4599053246b 100644 --- a/community/monkey/APKBUILD +++ b/community/monkey/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Monkey is a lightweight and powerful web server" url="http://monkey-project.com/" arch="all" -license="ASL 2.0" +license="Apache-2.0" makedepends="cmake jemalloc-dev bash mbedtls-dev findutils" subpackages="$pkgname-doc $pkgname-dev" source="http://monkey-project.com/releases/1.6/$pkgname-$pkgver.tar.gz" diff --git a/community/mozo/APKBUILD b/community/mozo/APKBUILD index e3d454f5dc4..298b2d9c55f 100644 --- a/community/mozo/APKBUILD +++ b/community/mozo/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A menu editor for MATE" url="https://github.com/mate-desktop/mozo" arch="noarch" -license="GPLv2" +license="GPL-2.0" makedepends="intltool mate-menus-dev glib-dev py-gobject3-dev" subpackages="$pkgname-doc $pkgname-lang" source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz" diff --git a/community/mpc/APKBUILD b/community/mpc/APKBUILD index cc81a8fc9e8..6cd425f0425 100644 --- a/community/mpc/APKBUILD +++ b/community/mpc/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Minimalist command line interface to MPD" url="https://www.musicpd.org/clients/mpc/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="libmpdclient-dev" subpackages="$pkgname-bash-completion:bashcomp:noarch $pkgname-doc" source="http://www.musicpd.org/download/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz" diff --git a/community/mpd/APKBUILD b/community/mpd/APKBUILD index ce45ff01269..642ded3ac5e 100644 --- a/community/mpd/APKBUILD +++ b/community/mpd/APKBUILD @@ -14,7 +14,7 @@ url="https://musicpd.org" pkgusers="mpd" pkggroups="mpd audio" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="lame-dev glib-dev curl-dev libao-dev libmad-dev flac-dev libogg-dev faad2-dev libid3tag-dev libvorbis-dev alsa-lib-dev diff --git a/community/mpv/APKBUILD b/community/mpv/APKBUILD index 81f8f8e9908..765b09cf3e4 100644 --- a/community/mpv/APKBUILD +++ b/community/mpv/APKBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc="Video player based on MPlayer/mplayer2" url="https://mpv.io/" arch="all" -license="GPL2+ LGPL2+" +license="GPL-2.0-or-later LGPL-2.0-or-later" depends="" makedepends="libxxf86dga-dev libxv-dev libmad-dev lame-dev libao-dev libtheora-dev xvidcore-dev zlib-dev sdl-dev freetype-dev diff --git a/community/msgpack-c/APKBUILD b/community/msgpack-c/APKBUILD index 5a5fa4d8748..3ec30c8abb7 100644 --- a/community/msgpack-c/APKBUILD +++ b/community/msgpack-c/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="An efficient object serialization library" url="https://msgpack.org" arch="all" -license="Boost" +license="BSL-1.0" depends="" makedepends="cmake" subpackages="$pkgname-dev" diff --git a/community/mtex2mml/APKBUILD b/community/mtex2mml/APKBUILD index c2fe141182a..0d0dad17557 100644 --- a/community/mtex2mml/APKBUILD +++ b/community/mtex2mml/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A Bison grammar to convert TeX math into MathML" url="https://github.com/gjtorikian/mtex2MML" arch="all" -license="GPL2 MPL2 LGPL2.1" +license="GPL-2.0 MPL-2.0 LGPL-2.1" makedepends="cmake bison flex-dev python3" subpackages="$pkgname-dev $pkgname-libs $pkgname-fixtures::noarch" source="$pkgname-$pkgver.tar.gz::https://github.com/gjtorikian/$pkgname/archive/v$pkgver.tar.gz diff --git a/community/multitail/APKBUILD b/community/multitail/APKBUILD index b82f962ebb9..f7b5a99d38e 100644 --- a/community/multitail/APKBUILD +++ b/community/multitail/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="MultiTail lets you view one or multiple files like the original tail program" arch="all" url="http://www.vanheusden.com/multitail" -license="GPL2" +license="GPL-2.0" depends_dev="" depends="ncurses coreutils" makedepends="ncurses-dev" diff --git a/community/mumudvb/APKBUILD b/community/mumudvb/APKBUILD index f58c60cd9b7..fd649301eb3 100644 --- a/community/mumudvb/APKBUILD +++ b/community/mumudvb/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A DVB IPTV streaming software" url="http://mumudvb.braice.net/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="automake autoconf libtool linux-headers m4 libdvbcsa-dev asciidoc gettext-dev" install="$pkgname.pre-install" diff --git a/community/mutagen/APKBUILD b/community/mutagen/APKBUILD index e6251f2e534..a44fe4a41e4 100644 --- a/community/mutagen/APKBUILD +++ b/community/mutagen/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="An audio metadata tag reader and writer implemented in pure python" url="https://github.com/quodlibet/mutagen" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="python2 py-mutagen" makedepends="python2-dev" checkdepends="py2-pytest py-setuptools py2-hypothesis" diff --git a/community/mysecureshell/APKBUILD b/community/mysecureshell/APKBUILD index 2c8b62d9047..19a346fcdce 100644 --- a/community/mysecureshell/APKBUILD +++ b/community/mysecureshell/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A solution which has been made to bring more features to sftp/scp protocol given by OpenSSH." url="https://github.com/mysecureshell/mysecureshell" arch="all" -license="GNU" +license="GPL" depends="openssh" makedepends="musl-dev" install="$pkgname.post-install $pkgname.post-deinstall" diff --git a/community/mythes/APKBUILD b/community/mythes/APKBUILD index 6dc45d2a492..6de9d3428c6 100644 --- a/community/mythes/APKBUILD +++ b/community/mythes/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A simple thesaurus" url="http://hunspell.sourceforge.net/" arch="all" -license="GPL2+ LGPL2+ MPL 1.1" +license="GPL-2.0-or-later LGPL-2.0-or-later MPL-1.1" subpackages="$pkgname-dev" depends_dev="perl hunspell-dev" makedepends="$depends_dev" diff --git a/community/nbd/APKBUILD b/community/nbd/APKBUILD index d30012b9e9e..99cc715fe2e 100644 --- a/community/nbd/APKBUILD +++ b/community/nbd/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Tools for network block devices" url="http://nbd.sourceforge.net" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="glib-dev linux-headers zlib-dev" subpackages="$pkgname-doc $pkgname-client" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz" diff --git a/community/ncmpc/APKBUILD b/community/ncmpc/APKBUILD index 88c80e2b3a3..cd56554d209 100644 --- a/community/ncmpc/APKBUILD +++ b/community/ncmpc/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Fully featured MPD client using ncurses" url="https://www.musicpd.org/clients/ncmpc/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="ncurses-dev glib-dev libmpdclient-dev meson" subpackages="$pkgname-doc $pkgname-lang $pkgname-dbg" source="http://www.musicpd.org/download/$pkgname/0/$pkgname-$pkgver.tar.xz" diff --git a/community/nedit/APKBUILD b/community/nedit/APKBUILD index e5bdf28afbe..5923a75ab88 100644 --- a/community/nedit/APKBUILD +++ b/community/nedit/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The Nirvana Editor, a multi-purpose X11 editor that's easy to use" url="https://sourceforge.net/projects/nedit/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" # perl for docs, bison and flex are used but may be optional makedepends="$depends_dev motif-dev bison flex perl" subpackages="$pkgname-doc" diff --git a/community/neovim/APKBUILD b/community/neovim/APKBUILD index 7cceb5fea33..13c98d761cb 100644 --- a/community/neovim/APKBUILD +++ b/community/neovim/APKBUILD @@ -16,7 +16,7 @@ pkgrel=0 pkgdesc="Vim-fork focused on extensibility and agility" url="https://neovim.io" arch="all !s390x" # needs luajit -license="ASL-2.0 custom" +license="Apache-2.0 custom" depends="" makedepends="cmake gettext-dev gperf libtermkey-dev libuv-dev libvterm-dev lua5.1-lpeg lua5.1-mpack luajit-dev msgpack-c-dev unibilium-dev" diff --git a/community/netatalk/APKBUILD b/community/netatalk/APKBUILD index 86258bf48be..0a7a6ba9102 100644 --- a/community/netatalk/APKBUILD +++ b/community/netatalk/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Netatalk is a freely-available Open Source AFP fileserver" url="http://netatalk.sourceforge.net/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="acl-dev attr-dev db-dev libevent-dev libgcrypt-dev tdb-dev file" subpackages="$pkgname-doc $pkgname-dev" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz diff --git a/community/nextcloud-client/APKBUILD b/community/nextcloud-client/APKBUILD index 0399b53081a..32e157fabed 100644 --- a/community/nextcloud-client/APKBUILD +++ b/community/nextcloud-client/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Nextcloud Desktop Client" url="https://github.com/nextcloud/client_theming" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="$depends_dev cmake qt5-qttools-dev qt5-qtwebkit-dev qt5-qtkeychain-dev" subpackages="$pkgname-dev" diff --git a/community/notmuch/APKBUILD b/community/notmuch/APKBUILD index d516ec2d133..52a445258a2 100644 --- a/community/notmuch/APKBUILD +++ b/community/notmuch/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="E-Mail index, search and tagging" url="https://notmuchmail.org/" arch="all" -license="GPL3" +license="GPL-3.0" makedepends="gzip xapian-core-dev gmime-dev talloc-dev py-sphinx py-requests python2-dev python3-dev bash-completion" checkdepends="sed coreutils diffutils bash tar mdocml grep" diff --git a/community/numix-themes/APKBUILD b/community/numix-themes/APKBUILD index 9a807a3fc3e..e91a512898b 100644 --- a/community/numix-themes/APKBUILD +++ b/community/numix-themes/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A modern flat theme with a combination of light and dark elements, GTK 2 and 3" url="http://shimmerproject.org/project/Numix/" arch="noarch" -license="GPLv3" +license="GPL-3.0" subpackages="$pkgname-gtk2 $pkgname-gtk3 $pkgname-metacity $pkgname-xfwm4 $pkgname-xfce4-notifyd:_notify $pkgname-openbox:_openbox" source="numix-$pkgver.tar.gz::https://github.com/numixproject/$_pkgname/archive/$pkgver.tar.gz" diff --git a/community/nuttcp/APKBUILD b/community/nuttcp/APKBUILD index 742f646ccdc..4a47a39936d 100644 --- a/community/nuttcp/APKBUILD +++ b/community/nuttcp/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A network performance measurement tool" url="http://www.nuttcp.net" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="linux-headers" source="http://nuttcp.net/nuttcp/nuttcp-$pkgver/nuttcp-$pkgver.c" builddir="$srcdir" diff --git a/community/nx-libs/APKBUILD b/community/nx-libs/APKBUILD index 029cf7af805..98c0c100bcb 100644 --- a/community/nx-libs/APKBUILD +++ b/community/nx-libs/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="NoMachine libraries (redistributed by x2go)" url="http://x2go.org" arch="all" -license="GPLv2+" +license="GPL-2.0-or-later" depends="font-cursor-misc font-misc-misc" makedepends="libx11-dev zlib-dev libjpeg-turbo-dev libpng-dev libfontenc-dev linux-headers diff --git a/community/nxapi/APKBUILD b/community/nxapi/APKBUILD index 9b8bc4bebe3..50038103feb 100644 --- a/community/nxapi/APKBUILD +++ b/community/nxapi/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="nginx/naxsi log parser, whitelist and report generator." url="http://www.nginx.org | https://github.com/nbs-system/naxsi" arch="noarch" -license="GPL v2" +license="GPL-2.0" depends="python2" depends_dev="" makedepends="python2-dev" diff --git a/community/obnam/APKBUILD b/community/obnam/APKBUILD index 8965b1f8fe4..33ae7c2669c 100644 --- a/community/obnam/APKBUILD +++ b/community/obnam/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A backup program that supports encryption and deduplication" url="http://obnam.org/" arch="all" -license="GPL3+" +license="GPL-3.0-or-later" depends="python2 py-larch py-paramiko py-fuse py-enum34 py-six py-asn1-modules py-packaging" depends_dev="" makedepends="python2-dev py-setuptools" diff --git a/community/ocaml/APKBUILD b/community/ocaml/APKBUILD index f7feb14473d..62f26c7d5b5 100644 --- a/community/ocaml/APKBUILD +++ b/community/ocaml/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Main implementation of the Caml programming language" url="http://ocaml.org/" arch="all !x86 !armhf !s390x" -license="LGPLv2" +license="LGPL-2.0" makedepends="ncurses-dev zlib-dev gdbm-dev" depends="ncurses-dev" options="textrels" diff --git a/community/ocamlbuild/APKBUILD b/community/ocamlbuild/APKBUILD index e114335c82e..434f160be3d 100644 --- a/community/ocamlbuild/APKBUILD +++ b/community/ocamlbuild/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Generic build tool with built-in rules for building OCaml library and programs." url="https://github.com/ocaml/ocamlbuild" arch="all !x86 !armhf !s390x" #ocaml not avail on excluded platforms -license="LGPL2" +license="LGPL-2.0" depends="" makedepends="ocaml" options="" diff --git a/community/offlineimap/APKBUILD b/community/offlineimap/APKBUILD index 7123209d008..e9ca404e7e5 100644 --- a/community/offlineimap/APKBUILD +++ b/community/offlineimap/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Synchronizes emails between two repositories" url="http://www.offlineimap.org" arch="noarch" -license="GPL2+" +license="GPL-2.0-or-later" depends="python2 py2-six" makedepends="python2-dev asciidoc" install="" diff --git a/community/opam/APKBUILD b/community/opam/APKBUILD index 32dfaed6b0f..a8a30e50653 100644 --- a/community/opam/APKBUILD +++ b/community/opam/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="OCaml Package Manager" url="https://opam.ocaml.org" arch="all !x86 !armhf !s390x" # ocaml not avail on excluded platforms -license="LGPL3" +license="LGPL-3.0" depends="ocaml camlp4 curl tar unzip rsync aspcud" makedepends="$depends_dev" install="" diff --git a/community/opencpn/APKBUILD b/community/opencpn/APKBUILD index 30ff3df0c8d..1dd2834c326 100644 --- a/community/opencpn/APKBUILD +++ b/community/opencpn/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="OpenCPN is a cross platform electronic navigation system" url="http://opencpn.org" arch="x86 x86_64" -license="GPL2" +license="GPL-2.0" depends="" makedepends="wxgtk-dev libexecinfo-dev linux-headers curl-dev cmake gpsd portaudio-dev tinyxml-dev" install="" diff --git a/community/openjdk7/APKBUILD b/community/openjdk7/APKBUILD index 4f72787a9a2..2b86618041c 100644 --- a/community/openjdk7/APKBUILD +++ b/community/openjdk7/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="OpenJDK 7 via IcedTea" url="http://icedtea.classpath.org/" arch="all" -license="GPL2 with Classpath" +license="GPL-2.0 with Classpath" depends="$pkgname-jre java-cacerts" options="sover-namecheck" makedepends="bash findutils tar zip file paxmark gawk util-linux libxslt diff --git a/community/openlibm/APKBUILD b/community/openlibm/APKBUILD index 96b82f6795a..929ba245cb5 100644 --- a/community/openlibm/APKBUILD +++ b/community/openlibm/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="High quality system independent, portable, open source libm implementation" url="http://www.openlibm.org" arch="all !s390x" -license="MIT BSD public-domain" +license="MIT BSD Public-Domain" depends="" makedepends="" subpackages="$pkgname-dev" diff --git a/community/openspecfun/APKBUILD b/community/openspecfun/APKBUILD index 6f32502b5e4..67d21ef2868 100644 --- a/community/openspecfun/APKBUILD +++ b/community/openspecfun/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A collection of special mathematical functions." url="https://github.com/JuliaLang/openspecfun" arch="all !s390x" -license="MIT public-domain" +license="MIT Public-Domain" depends="" makedepends="openlibm-dev gfortran" subpackages="$pkgname-dev" diff --git a/community/optipng/APKBUILD b/community/optipng/APKBUILD index ed17fe8c58d..fcc36ad87ae 100644 --- a/community/optipng/APKBUILD +++ b/community/optipng/APKBUILD @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Compresses PNG files to a smaller size, without losing any information." url="http://optipng.sourceforge.net/" arch="all" -license="ZLIB" +license="zlib" makedepends="libpng-dev" subpackages="$pkgname-doc" source="http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz" diff --git a/community/osinfo-db-tools/APKBUILD b/community/osinfo-db-tools/APKBUILD index 5b9a7b1f97c..3af4a9c65ea 100644 --- a/community/osinfo-db-tools/APKBUILD +++ b/community/osinfo-db-tools/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Tools for managing the osinfo database" url="http://libosinfo.org/" arch="all" -license="GPLv2+" +license="GPL-2.0-or-later" depends="" depends_dev="" makedepends="$depends_dev intltool glib-dev libxml2-dev libarchive-dev diff --git a/community/osinfo-db/APKBUILD b/community/osinfo-db/APKBUILD index ddd485ddfed..bf3eef09e3b 100644 --- a/community/osinfo-db/APKBUILD +++ b/community/osinfo-db/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="osinfo database files" url="http://libosinfo.org/" arch="noarch" -license="LGPLv2+" +license="LGPL-2.0-or-later" depends="" makedepends="osinfo-db-tools" install="" diff --git a/community/ospd-ancor/APKBUILD b/community/ospd-ancor/APKBUILD index da2c80aaa5d..37a859dc222 100644 --- a/community/ospd-ancor/APKBUILD +++ b/community/ospd-ancor/APKBUILD @@ -7,7 +7,7 @@ _pkgid=2005 pkgdesc="OSP server implementation to allow OpenVAS to get scan results from an Ancor server" url="http://openvas.org/" arch="noarch" -license="GPLV2+" +license="GPL-2.0-or-later" depends="python3 py3-requests ospd" makedepends="python3-dev" source="http://wald.intevation.org/frs/download.php/$_pkgid/$pkgname-$pkgver.tar.gz" diff --git a/community/ospd-ovaldi/APKBUILD b/community/ospd-ovaldi/APKBUILD index f483f7bc021..71f4b9bb1c6 100644 --- a/community/ospd-ovaldi/APKBUILD +++ b/community/ospd-ovaldi/APKBUILD @@ -7,7 +7,7 @@ _pkgid=2003 pkgdesc="OSP server implementation to allow OpenVAS to remotely control ovaldi scanners" url="http://openvas.org/" arch="noarch" -license="GPLV2+" +license="GPL-2.0-or-later" depends="python3 ospd" makedepends="python3-dev py3-paramiko" source="http://wald.intevation.org/frs/download.php/$_pkgid/$pkgname-$pkgver.tar.gz" diff --git a/community/ospd-ssh-keyscan/APKBUILD b/community/ospd-ssh-keyscan/APKBUILD index 8037d27f957..5e6ea089fca 100644 --- a/community/ospd-ssh-keyscan/APKBUILD +++ b/community/ospd-ssh-keyscan/APKBUILD @@ -7,7 +7,7 @@ _pkgid=2213 pkgdesc="OSP server implementation to allow OpenVAS to scan ssh keys" url="http://openvas.org/" arch="noarch" -license="GPLV2+" +license="GPL-2.0-or-later" depends="python3 ospd" makedepends="python3-dev py3-paramiko" source="http://wald.intevation.org/frs/download.php/$_pkgid/$pkgname-$pkgver.tar.gz" diff --git a/community/ospd-w3af/APKBUILD b/community/ospd-w3af/APKBUILD index 5043735103c..60db84b74fb 100644 --- a/community/ospd-w3af/APKBUILD +++ b/community/ospd-w3af/APKBUILD @@ -7,7 +7,7 @@ _pkgid=2004 pkgdesc="OSP server implementation to allow OpenVAS to remotely control a w3af scanner" url="http://openvas.org/" arch="noarch" -license="GPLV2+" +license="GPL-2.0-or-later" depends="python3 ospd" makedepends="python3-dev py3-paramiko" source="http://wald.intevation.org/frs/download.php/$_pkgid/$pkgname-$pkgver.tar.gz" diff --git a/community/patchelf/APKBUILD b/community/patchelf/APKBUILD index cd9814b47e5..9b79187d018 100644 --- a/community/patchelf/APKBUILD +++ b/community/patchelf/APKBUILD @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="Small utility to modify the dynamic linker and RPATH of ELF executables" url="https://nixos.org/patchelf.html" arch="all !aarch64" -license="GPL3" +license="GPL-3.0" depends="" makedepends="autoconf automake libtool" install="" diff --git a/community/pdsh/APKBUILD b/community/pdsh/APKBUILD index 6e1068de8e3..8f89dcdb4ba 100644 --- a/community/pdsh/APKBUILD +++ b/community/pdsh/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A high performance, parallel remote shell utility" url="https://github.com/chaos/pdsh" arch="all" -license="GPL-2" +license="GPL-2.0" depends="perl" makedepends="autoconf automake libtool readline-dev ncurses-dev" subpackages="$pkgname-doc $pkgname-rcmd-ssh:_rcmd_ssh" diff --git a/community/perl-class-load-xs/APKBUILD b/community/perl-class-load-xs/APKBUILD index 003ba323001..1c0a6365dc7 100644 --- a/community/perl-class-load-xs/APKBUILD +++ b/community/perl-class-load-xs/APKBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="XS implementation of parts of Class::Load" url="http://search.cpan.org/dist/Class-Load-XS/" arch="all" -license="Artistic-2" +license="Artistic-2.0" cpandepends="perl-class-load" cpanmakedepends="perl-test-requires perl-test-fatal perl-module-implementation perl-test-needs" depends="$cpandepends" diff --git a/community/perl-datetime-format-builder/APKBUILD b/community/perl-datetime-format-builder/APKBUILD index 4978793c789..389198ef0d9 100644 --- a/community/perl-datetime-format-builder/APKBUILD +++ b/community/perl-datetime-format-builder/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="Create DateTime parser classes and objects." url="http://search.cpan.org/dist/DateTime-Format-Builder/" arch="noarch" -license="Artistic-2" +license="Artistic-2.0" cpandepends="perl-datetime-format-strptime perl-datetime perl-class-factory-util perl-params-validate" cpanmakedepends=" " depends="$cpandepends" diff --git a/community/perl-datetime-format-strptime/APKBUILD b/community/perl-datetime-format-strptime/APKBUILD index 441234194ab..8152ff30b83 100644 --- a/community/perl-datetime-format-strptime/APKBUILD +++ b/community/perl-datetime-format-strptime/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="Parse and format strp and strf time patterns" url="http://search.cpan.org/dist/DateTime-Format-Strptime/" arch="noarch" -license="Artistic-2" +license="Artistic-2.0" cpandepends="perl-params-validate perl-datetime perl-try-tiny perl-package-deprecationmanager perl-datetime-timezone perl-datetime-locale" diff --git a/community/perl-io-prompt-tiny/APKBUILD b/community/perl-io-prompt-tiny/APKBUILD index 273aae7c5da..5836f7966fa 100644 --- a/community/perl-io-prompt-tiny/APKBUILD +++ b/community/perl-io-prompt-tiny/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="Prompt for user input with a default option" url="http://search.cpan.org/dist/IO-Prompt-Tiny/" arch="noarch" -license="apache_2_0" +license="Apache-2.0" cpandepends="" cpanmakedepends="" cpancheckdepends="perl-capture-tiny" diff --git a/community/perl-iptables-chainmgr/APKBUILD b/community/perl-iptables-chainmgr/APKBUILD index 6ab2fdc3b04..9d0f3a063c6 100644 --- a/community/perl-iptables-chainmgr/APKBUILD +++ b/community/perl-iptables-chainmgr/APKBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Perl extension for manipulating iptables and ip6tables policies" url="http://search.cpan.org/dist/IPTables-ChainMgr/" arch="noarch" -license="artistic_1" +license="Artistic-1.0" cpandepends="perl-netaddr-ip perl-iptables-parse" cpanmakedepends="" depends="$cpandepends" diff --git a/community/perl-iptables-parse/APKBUILD b/community/perl-iptables-parse/APKBUILD index 81d1ef74b28..6600454fb2b 100644 --- a/community/perl-iptables-parse/APKBUILD +++ b/community/perl-iptables-parse/APKBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Perl extension for parsing iptables and ip6tables firewall rulesets" url="http://search.cpan.org/dist/IPTables-Parse/" arch="noarch" -license="artistic_1" +license="Artistic-1.0" cpandepends="" cpanmakedepends="" depends="$cpandepends" diff --git a/community/perl-list-moreutils-xs/APKBUILD b/community/perl-list-moreutils-xs/APKBUILD index 34231165fed..02c6e3611cd 100644 --- a/community/perl-list-moreutils-xs/APKBUILD +++ b/community/perl-list-moreutils-xs/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="Provide the stuff missing in List::Util in XS" url="http://search.cpan.org/dist/List-MoreUtils-XS/" arch="all" -license="apache_2_0" +license="Apache-2.0" cpandepends="" cpanmakedepends="" cpancheckdepends="" diff --git a/community/perl-module-implementation/APKBUILD b/community/perl-module-implementation/APKBUILD index bc697ccde2f..21ea82a255c 100644 --- a/community/perl-module-implementation/APKBUILD +++ b/community/perl-module-implementation/APKBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Loads one of several alternate underlying implementations for a module" url="http://search.cpan.org/dist/Module-Implementation/" arch="noarch" -license="Artistic-2" +license="Artistic-2.0" cpandepends="perl-module-runtime perl-try-tiny perl-test-taint" cpanmakedepends="perl-test-fatal perl-test-requires " depends="$cpandepends" diff --git a/community/perl-mojolicious/APKBUILD b/community/perl-mojolicious/APKBUILD index db67082d806..6e306922ee0 100644 --- a/community/perl-mojolicious/APKBUILD +++ b/community/perl-mojolicious/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="Real-time web framework" url="http://search.cpan.org/dist/Mojolicious/" arch="noarch" -license="Artistic-2" +license="Artistic-2.0" cpandepends="" cpanmakedepends=" " depends="$cpandepends" diff --git a/community/perl-net-dns-sec/APKBUILD b/community/perl-net-dns-sec/APKBUILD index e3f3cc39853..30683b59826 100644 --- a/community/perl-net-dns-sec/APKBUILD +++ b/community/perl-net-dns-sec/APKBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="DNSSEC extensions to Net::DNS" url="http://search.cpan.org/dist/Net-DNS-SEC/" arch="noarch" -license="mit" +license="MIT" cpandepends="perl-crypt-openssl-dsa perl-net-dns perl-crypt-openssl-rsa perl-crypt-openssl-random perl-digest-bubblebabble perl-mime-base32 perl-crypt-openssl-bignum" diff --git a/community/perl-test-postgresql/APKBUILD b/community/perl-test-postgresql/APKBUILD index c304088ba58..f2aba4be93d 100644 --- a/community/perl-test-postgresql/APKBUILD +++ b/community/perl-test-postgresql/APKBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="PostgreSQL runner for tests" url="http://search.cpan.org/dist/Test-PostgreSQL/" arch="noarch" -license="Artistic-2" +license="Artistic-2.0" cpandepends="perl-class-accessor-lite" cpanmakedepends="perl-test-sharedfork perl-dbd-pg perl-dbi perl-test-pod perl-moo perl-type-tiny perl-function-parameters diff --git a/community/perl-text-quoted/APKBUILD b/community/perl-text-quoted/APKBUILD index 2ab9daf4c5f..e35f47633c4 100644 --- a/community/perl-text-quoted/APKBUILD +++ b/community/perl-text-quoted/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Text::Quoted perl module" url="http://search.cpan.org/dist/Text-Quoted/" arch="noarch" -license="GPLv2 or Artistic" +license="GPL-2.0 or Artistic" depends="perl perl-text-autoformat" makedepends="perl-dev perl-module-install" subpackages="$pkgname-doc" diff --git a/community/perl-try-tiny/APKBUILD b/community/perl-try-tiny/APKBUILD index 023a3e7f6f6..c29bd722987 100644 --- a/community/perl-try-tiny/APKBUILD +++ b/community/perl-try-tiny/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="minimal try/catch with proper preservation of $@" url="http://search.cpan.org/dist/Try-Tiny/" arch="noarch" -license="mit" +license="MIT" cpandepends="perl-capture-tiny perl-pod-coverage" cpanmakedepends="grep perl-sub-name" depends="$cpandepends" diff --git a/community/pflogsumm/APKBUILD b/community/pflogsumm/APKBUILD index 2e2bd7d01be..a80e8302b06 100644 --- a/community/pflogsumm/APKBUILD +++ b/community/pflogsumm/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Pflogsumm is a log analyzer for Postfix logs" url="http://jimsun.linxnet.com/postfix_contrib.html" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="perl perl-date-calc sysklogd" makedepends="" subpackages="$pkgname-doc" diff --git a/community/php5-suhosin/APKBUILD b/community/php5-suhosin/APKBUILD index ec69865c621..3239804dbbe 100644 --- a/community/php5-suhosin/APKBUILD +++ b/community/php5-suhosin/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="SUHOSIN - ìˆ˜í˜¸ì‹ - The PHP security extension." url="https://www.suhosin.org" arch="all" -license="PHP 3" +license="PHP-3.0" depends="" makedepends="${_php}-dev autoconf linux-headers" source="https://download.suhosin.org/suhosin-$pkgver.tar.gz diff --git a/community/php5/APKBUILD b/community/php5/APKBUILD index d0b07c57c66..bc6536321be 100644 --- a/community/php5/APKBUILD +++ b/community/php5/APKBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="The PHP language runtime engine" url="http://www.php.net/" arch="all" -license="PHP-3" +license="PHP-3.0" depends="$pkgname-cli" depends_dev="$pkgname-cli pcre-dev" install="$pkgname.post-upgrade" diff --git a/community/php7/APKBUILD b/community/php7/APKBUILD index 084cfe172e0..a784bb01160 100644 --- a/community/php7/APKBUILD +++ b/community/php7/APKBUILD @@ -34,7 +34,7 @@ _default_php="yes" pkgdesc="The PHP$_suffix language runtime engine" url="http://www.php.net/" arch="all" -license="PHP-3 BSD LGPL2 MIT Zend" +license="PHP-3.0 BSD LGPL-2.0 MIT Zend" depends="$pkgname-common" depends_dev="$pkgname=$pkgver-r$pkgrel autoconf pcre-dev" # Most dependencies between extensions is auto-discovered (see _extension()). diff --git a/community/phpldapadmin/APKBUILD b/community/phpldapadmin/APKBUILD index 87e6bb4ef66..b6f17a26c49 100644 --- a/community/phpldapadmin/APKBUILD +++ b/community/phpldapadmin/APKBUILD @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="Web front-end for managing OpenLDAP" url="http://phpldapadmin.sourceforge.net" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="${_php} ${_php}-ldap ${_php}-gettext ${_php}-xml" depends_dev= makedepends="$depends_dev" diff --git a/community/phpmyadmin/APKBUILD b/community/phpmyadmin/APKBUILD index 22fb3433728..ed70a35a51a 100644 --- a/community/phpmyadmin/APKBUILD +++ b/community/phpmyadmin/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="A Web-based PHP tool for administering MySQL" url="https://www.phpmyadmin.net/" arch="noarch" -license="GPL2 MIT BSD" +license="GPL-2.0 MIT BSD" depends="${_php} ${_php}-mysqli ${_php}-zip ${_php}-zlib ${_php}-bz2 ${_php}-ctype ${_php}-gd ${_php}-mcrypt ${_php}-json" depends_dev= diff --git a/community/picocom/APKBUILD b/community/picocom/APKBUILD index 9d04cca36fc..374d3615f00 100644 --- a/community/picocom/APKBUILD +++ b/community/picocom/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Minimal dumb-terminal emulation program" url="https://github.com/npat-efault/picocom" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="" install="" diff --git a/community/pluma/APKBUILD b/community/pluma/APKBUILD index 47cccb1817c..70757b2dbe0 100644 --- a/community/pluma/APKBUILD +++ b/community/pluma/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A small and lightweight UTF-8 text editor for the MATE" url="https://github.com/mate-desktop/pluma" arch="all" -license="GPLv2" +license="GPL-2.0" # check fails as tracked in https://github.com/mate-desktop/pluma/issues/33 options="!check" makedepends="intltool enchant-dev iso-codes-dev gtk+3.0-dev diff --git a/community/portablexdr/APKBUILD b/community/portablexdr/APKBUILD index e011685125b..3d0c46eca7d 100644 --- a/community/portablexdr/APKBUILD +++ b/community/portablexdr/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="external data representation (XDR) library" url="http://people.redhat.com/~rjones/portablexdr/" arch="all" -license="GPLv2+" +license="GPL-2.0-or-later" depends="" depends_dev="" makedepends="$depends_dev libtool" diff --git a/community/postsrsd/APKBUILD b/community/postsrsd/APKBUILD index 1eb19cfc392..f6ea52c7de5 100644 --- a/community/postsrsd/APKBUILD +++ b/community/postsrsd/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Postfix Sender Rewriting Scheme daemon" url="https://github.com/roehling/postsrsd" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="cmake help2man" pkgusers="postsrsd" diff --git a/community/py-argh/APKBUILD b/community/py-argh/APKBUILD index 13aaa1580ee..90a42df6977 100644 --- a/community/py-argh/APKBUILD +++ b/community/py-argh/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A Python argparse wrapper" url="https://github.com/neithere/argh/" arch="noarch" -license="LGPL3+" +license="LGPL-3.0-or-later" depends="python2" depends_dev="" makedepends="python2-dev py-setuptools" diff --git a/community/py-batinfo/APKBUILD b/community/py-batinfo/APKBUILD index 6f9caabf45c..224bd0dd1ca 100644 --- a/community/py-batinfo/APKBUILD +++ b/community/py-batinfo/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A simple Python lib to retreive battery information" url="https://github.com/nicolargo/batinfo" arch="noarch" -license="LGPL3+" +license="LGPL-3.0-or-later" depends="" makedepends="python2-dev py-setuptools python3-dev" subpackages="py3-${pkgname#py-}:_py3 py2-${pkgname#py-}:_py2" diff --git a/community/py-dicttoxml/APKBUILD b/community/py-dicttoxml/APKBUILD index d26a5aa1763..3a85cced69e 100644 --- a/community/py-dicttoxml/APKBUILD +++ b/community/py-dicttoxml/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Converts a Python dictionary or other native data type into a valid XML string" url="https://github.com/quandyfactory/dicttoxml" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="" makedepends="python2-dev python3-dev" install="" diff --git a/community/py-django-compressor/APKBUILD b/community/py-django-compressor/APKBUILD index 0f58eec2a0e..8721501ea83 100644 --- a/community/py-django-compressor/APKBUILD +++ b/community/py-django-compressor/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="JavaScript and CSS compressor for Django" url=https://github.com/django-compressor/django-compressor arch=noarch -license="MIT and ASL 2.0 and BSD" +license="MIT and Apache-2.0 and BSD" depends="py-django py-django-appconf" makedepends=py-setuptools source="https://files.pythonhosted.org/packages/source/d/django_compressor/django_compressor-$pkgver.tar.gz" diff --git a/community/py-ethtool/APKBUILD b/community/py-ethtool/APKBUILD index d7cf8f4538d..c923defa5af 100644 --- a/community/py-ethtool/APKBUILD +++ b/community/py-ethtool/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Python library for the ethtool kernel interface" url="http://www.ohloh.net/p/python-ethtool" arch="all" -license="GPL2" +license="GPL-2.0" depends= depends_dev="libnl-dev pkgconfig python2-dev" makedepends="linux-headers $depends_dev" diff --git a/community/py-evtx/APKBUILD b/community/py-evtx/APKBUILD index 4080a6cb94d..06801da70bc 100644 --- a/community/py-evtx/APKBUILD +++ b/community/py-evtx/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Pure Python parser for recent Windows Event Log files (.evtx)" url="http://www.williballenthin.com/evtx/index.html" arch="noarch" -license="APACHE2" +license="Apache-2.0" depends="" makedepends="python2-dev py-setuptools python3-dev" install="" diff --git a/community/py-geoip/APKBUILD b/community/py-geoip/APKBUILD index 97d92954bc4..e2735081833 100644 --- a/community/py-geoip/APKBUILD +++ b/community/py-geoip/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A Pure Python GeoIP API" url="https://github.com/appliedsec/pygeoip" arch="noarch" -license="LGPL3+" +license="LGPL-3.0-or-later" makedepends="python2-dev python3-dev py-setuptools" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" diff --git a/community/py-gpiozero/APKBUILD b/community/py-gpiozero/APKBUILD index 15a37b5f2c7..5d9103ae63b 100644 --- a/community/py-gpiozero/APKBUILD +++ b/community/py-gpiozero/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A simple interface to everyday GPIO components used with Raspberry Pi" url="http://gpiozero.readthedocs.org" arch="armhf" -license="BSD-3" +license="BSD-3-Clause" depends="python2" depends_dev="" makedepends="python2-dev py-setuptools" diff --git a/community/py-gtkglext/APKBUILD b/community/py-gtkglext/APKBUILD index 098ce3ce639..a24fdf17f8b 100644 --- a/community/py-gtkglext/APKBUILD +++ b/community/py-gtkglext/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="GtkGLExt is an OpenGL extension to GTK+. Python bindings" url="https://projects.gnome.org/gtkglext/download.html#pygtkglext" arch="all" -license="LGPL2.1" +license="LGPL-2.1" depends="" depends_dev="" makedepends="$depends_dev python2-dev py-setuptools diff --git a/community/py-impacket/APKBUILD b/community/py-impacket/APKBUILD index ac7331e38e7..59a3b6a9362 100644 --- a/community/py-impacket/APKBUILD +++ b/community/py-impacket/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A collection of Python classes providing access to network packets" url="http://code.google.com/p/impacket/" arch="noarch" -license="ASL 2.0" +license="Apache-2.0" depends="" makedepends="python2-dev py-setuptools" install="" diff --git a/community/py-ipaddr/APKBUILD b/community/py-ipaddr/APKBUILD index 3f2f7651017..4526de27ee2 100644 --- a/community/py-ipaddr/APKBUILD +++ b/community/py-ipaddr/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Python IP address manipulation library" url="http://code.google.com/p/ipaddr-py" arch="noarch" -license="ASL 2.0 PSF" +license="Apache-2.0 PSF" depends="python2" depends_dev= makedepends="$depends_dev" diff --git a/community/py-jsonrpclib/APKBUILD b/community/py-jsonrpclib/APKBUILD index ef3321aa403..34f4495c7bd 100644 --- a/community/py-jsonrpclib/APKBUILD +++ b/community/py-jsonrpclib/APKBUILD @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="A Python JSON-RPC over HTTP that mirrors xmlrpclib syntax" url="https://github.com/joshmarshall/jsonrpclib" arch="noarch" -license="ASL 2.0" +license="Apache-2.0" depends="" makedepends="python2-dev py-setuptools python3-dev" subpackages="py3-${pkgname#py-}:_py3 py2-${pkgname#py-}:_py2" diff --git a/community/py-ldap3/APKBUILD b/community/py-ldap3/APKBUILD index b5be3bc4daa..34318636f9e 100644 --- a/community/py-ldap3/APKBUILD +++ b/community/py-ldap3/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A strictly RFC 4510 conforming LDAP V3 pure Python client" url="https://github.com/cannatag/ldap3" arch="noarch" -license="LGPL3" +license="LGPL-3.0" depends="py-asn1" makedepends="python2-dev python3-dev py-setuptools" subpackages="py2-$_pkgname:_subpackage py3-$_pkgname:_subpackage" diff --git a/community/py-libcloud/APKBUILD b/community/py-libcloud/APKBUILD index 43d9c96fc58..cd157fa8c2d 100644 --- a/community/py-libcloud/APKBUILD +++ b/community/py-libcloud/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Python library for interacting with many of the popular cloud service providers using a unified API." url="http://libcloud.apache.org/" arch="noarch" -license="APACHE2" +license="Apache-2.0" makedepends="py-setuptools python2-dev python3-dev" subpackages="py3-${pkgname/py-/}:_py3 py2-${pkgname/py-/}:_py2" source="$pkgname-$pkgver.tar.gz::https://github.com/apache/${pkgname/py-/}/archive/v$pkgver.tar.gz" diff --git a/community/py-logilab-common/APKBUILD b/community/py-logilab-common/APKBUILD index 2272c923df3..e055ea265fe 100644 --- a/community/py-logilab-common/APKBUILD +++ b/community/py-logilab-common/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A collection of Python packages and modules used by Logilab projects" url="https://www.logilab.org/project/logilab-common" arch="noarch" -license="LGPL2+" +license="LGPL-2.0-or-later" makedepends="python2-dev python3-dev py-setuptools" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" diff --git a/community/py-msgpack/APKBUILD b/community/py-msgpack/APKBUILD index b954637ce84..54a8a31431e 100644 --- a/community/py-msgpack/APKBUILD +++ b/community/py-msgpack/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="A Python module for MessagePack serialization/deserialization" url="https://pypi.python.org/pypi/msgpack-python/" arch="all" -license="ASL 2.0" +license="Apache-2.0" depends="" makedepends="python2-dev python3-dev py-setuptools" subpackages="py3-${pkgname/py-/}:_py3 py2-${pkgname/py-/}:_py2" diff --git a/community/py-packaging/APKBUILD b/community/py-packaging/APKBUILD index edeaadbe6f1..c70ed4c8acd 100644 --- a/community/py-packaging/APKBUILD +++ b/community/py-packaging/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Core utilities for Python packages" url="https://pypi.python.org/pypi/packaging" arch="noarch" -license="ASL-2.0 BSD" +license="Apache-2.0 BSD" depends="py-parsing py-six" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" makedepends="python3-dev python2-dev py-setuptools" diff --git a/community/py-pygit2/APKBUILD b/community/py-pygit2/APKBUILD index fd4b0dae822..d59a8b5c82b 100644 --- a/community/py-pygit2/APKBUILD +++ b/community/py-pygit2/APKBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Python bindings for libgit2" url="https://github.com/libgit2/pygit2" arch="all" -license="GPLv2" +license="GPL-2.0" _pydepends="py-cffi py-six" makedepends="$_pydepends python2-dev python3-dev py-setuptools libgit2-dev libssh2-dev libressl-dev" diff --git a/community/py-rencode/APKBUILD b/community/py-rencode/APKBUILD index c3c2bbaa8a2..09d5dfbeedc 100644 --- a/community/py-rencode/APKBUILD +++ b/community/py-rencode/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="The rencode module is similar to bencode from the BitTorrent project." url="https://pypi.python.org/pypi/rencode" arch="all" -license="GPL3" +license="GPL-3.0" depends="python2 cython" depends_dev="" makedepends="$depends_dev py-setuptools cython-dev python2-dev" diff --git a/community/py-rtslib/APKBUILD b/community/py-rtslib/APKBUILD index 512d63ab377..e6ecfc7b9fd 100644 --- a/community/py-rtslib/APKBUILD +++ b/community/py-rtslib/APKBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="Python library that provides an object API to RisingTide Systems generic SCSI Target" url="https://github.com/open-iscsi/rtslib-fb" arch="noarch" -license="AGPLv3" +license="AGPL-3.0" depends="python2" makedepends="$depends_dev py-setuptools py-configobj py-ethtool py-ipaddr" source="https://github.com/open-iscsi/rtslib-fb/archive/v${_ver}.tar.gz" diff --git a/community/py-sensehat/APKBUILD b/community/py-sensehat/APKBUILD index f4871c9f1bd..86f9d2f84a1 100644 --- a/community/py-sensehat/APKBUILD +++ b/community/py-sensehat/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Python module to control the Raspberry Pi Sense HAT" url="https://www.raspberrypi.org/products/sense-hat/" arch="armhf" -license="BSD-3" +license="BSD-3-Clause" depends="python2" depends_dev="" makedepends="python2-dev py-setuptools" diff --git a/community/py-slowaes/APKBUILD b/community/py-slowaes/APKBUILD index 5479dfa326a..97d296ebc19 100644 --- a/community/py-slowaes/APKBUILD +++ b/community/py-slowaes/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Implementation of AES in Python" url="http://code.google.com/p/slowaes/" arch="noarch" -license="APACHE2.0" +license="Apache-2.0" depends="" makedepends="python2-dev py-setuptools" install="" diff --git a/community/py-udev/APKBUILD b/community/py-udev/APKBUILD index aa3bbdb91b1..e069114cd9c 100644 --- a/community/py-udev/APKBUILD +++ b/community/py-udev/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Python bindings to libudev" url="http://pyudev.readthedocs.org" arch="noarch" -license="LGPLv2.1" +license="LGPL-2.1" depends="eudev py-six" makedepends="python2-dev python3-dev py-setuptools" install="" diff --git a/community/py-watchdog/APKBUILD b/community/py-watchdog/APKBUILD index 1debd73985c..59d40188744 100644 --- a/community/py-watchdog/APKBUILD +++ b/community/py-watchdog/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Python API and shell utilities to monitor file system events." url="https://github.com/gorakhargosh/watchdog" arch="noarch" -license="Apache 2.0" +license="Apache-2.0" depends="py-pathtools py-yaml py-argh" depends_dev="" makedepends="$depends_dev py-setuptools python2-dev" diff --git a/community/py-zipstream/APKBUILD b/community/py-zipstream/APKBUILD index 5ae883a827b..a9adbe6b7cf 100644 --- a/community/py-zipstream/APKBUILD +++ b/community/py-zipstream/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Like Python's ZipFile module, except it works as a generator that provides the file in many small chunks." url="https://github.com/allanlei/python-zipstream" arch="noarch" -license="GPL3" +license="GPL-3.0" makedepends="python2-dev python3-dev py-setuptools" subpackages="py3-${pkgname/py-/}:_py3 py2-${pkgname/py-/}:_py2" source="$pkgname-$pkgver.tar.gz::https://github.com/allanlei/$_pkgname/archive/v$pkgver.tar.gz" diff --git a/community/py-zmq/APKBUILD b/community/py-zmq/APKBUILD index 998e3ee55c2..0b0ccea1172 100644 --- a/community/py-zmq/APKBUILD +++ b/community/py-zmq/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Python bindings for ZeroMQ" url="https://pypi.python.org/pypi/pyzmq" arch="all" -license="LGPL3+ BSD" +license="LGPL-3.0-or-later BSD" depends="" makedepends="python2-dev python3-dev py-setuptools zeromq-dev" install="" diff --git a/community/py-zope-component/APKBUILD b/community/py-zope-component/APKBUILD index 186f149a26d..3129b41bdbe 100644 --- a/community/py-zope-component/APKBUILD +++ b/community/py-zope-component/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Zope Component Architecture" url="https://pypi.python.org/pypi/zope.component" arch="noarch" -license="ZPL2+" +license="ZPL-2.1" depends="python2" depends_dev="" makedepends="python2-dev py-setuptools" diff --git a/community/py3-aiohttp-cors/APKBUILD b/community/py3-aiohttp-cors/APKBUILD index c47d80b1b7a..b4919df740b 100644 --- a/community/py3-aiohttp-cors/APKBUILD +++ b/community/py3-aiohttp-cors/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="CORS support for aiohttp" url="https://github.com/aio-libs/aiohttp-cors" arch="noarch" -license="ASL 2.0" +license="Apache-2.0" depends="py3-aiohttp" makedepends="python3-dev" source="$_pkgname-$pkgver.tar.gz::https://github.com/aio-libs/aiohttp-cors/archive/v$pkgver.tar.gz" diff --git a/community/py3-aiohttp/APKBUILD b/community/py3-aiohttp/APKBUILD index 536a575acf6..8915a3408ff 100644 --- a/community/py3-aiohttp/APKBUILD +++ b/community/py3-aiohttp/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="HTTP client/server for asyncio" url="https://pypi.python.org/pypi/aiohttp" arch="all" -license="ASL 2.0" +license="Apache-2.0" depends="python3 py3-async-timeout py3-chardet py3-multidict py3-yarl" makedepends="python3-dev" subpackages="$pkgname-dev" diff --git a/community/py3-aiohttp1-cors/APKBUILD b/community/py3-aiohttp1-cors/APKBUILD index dcd26aca1aa..6cb5af58c48 100644 --- a/community/py3-aiohttp1-cors/APKBUILD +++ b/community/py3-aiohttp1-cors/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="CORS support for aiohttp - 1.x version" url="https://github.com/aio-libs/aiohttp-cors" arch="noarch" -license="ASL 2.0" +license="Apache-2.0" depends="py3-aiohttp1 !py3-aiohttp-cors" makedepends="python3-dev" source="$_pkgname-$pkgver.tar.gz::https://github.com/aio-libs/aiohttp-cors/archive/v$pkgver.tar.gz" diff --git a/community/py3-aiohttp1/APKBUILD b/community/py3-aiohttp1/APKBUILD index 36bea1d4192..7c193716611 100644 --- a/community/py3-aiohttp1/APKBUILD +++ b/community/py3-aiohttp1/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="HTTP client/server for asyncio - 1.x version" url="https://pypi.python.org/pypi/aiohttp" arch="all" -license="ASL 2.0" +license="Apache-2.0" depends="python3 py3-async-timeout py3-chardet py3-multidict py3-yarl !py3-aiohttp" makedepends="python3-dev" source="$pkgname-$pkgver.tar.gz::https://github.com/aio-libs/aiohttp/archive/$pkgver.tar.gz diff --git a/community/py3-async-timeout/APKBUILD b/community/py3-async-timeout/APKBUILD index a6ccded3db3..d38c7dc60cc 100644 --- a/community/py3-async-timeout/APKBUILD +++ b/community/py3-async-timeout/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Timeout context manager for asyncio programs" url="https://pypi.python.org/pypi/async_timeout" arch="noarch" -license="ASL 2.0" +license="Apache-2.0" depends="python3" makedepends="python3-dev" source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" diff --git a/community/py3-multidict/APKBUILD b/community/py3-multidict/APKBUILD index e058723bf7e..4faa48cb441 100644 --- a/community/py3-multidict/APKBUILD +++ b/community/py3-multidict/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A multidict implementation" url="https://github.com/aio-libs/multidict/" arch="all" -license="ASL 2.0" +license="Apache-2.0" depends="python3" makedepends="python3-dev py-setuptools" subpackages="$pkgname-dev" diff --git a/community/py3-qt5/APKBUILD b/community/py3-qt5/APKBUILD index b43567d8404..494cdf70d64 100644 --- a/community/py3-qt5/APKBUILD +++ b/community/py3-qt5/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A set of Python 3 bindings for the Qt toolkit" url="http://riverbankcomputing.co.uk/software/pyqt/intro" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" depends="py3-sip" makedepends="python3-dev py-dbus-dev py3-sip-dev qt5-qtbase-dev libx11-dev qt5-qtsvg-dev qt5-websockets-dev" diff --git a/community/py3-yarl/APKBUILD b/community/py3-yarl/APKBUILD index b8a497b9742..cbf89e6902d 100644 --- a/community/py3-yarl/APKBUILD +++ b/community/py3-yarl/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="An URL library" url="http://yarl.readthedocs.io/" arch="all" -license="ASL 2.0" +license="Apache-2.0" depends="py3-multidict py3-pytest" makedepends="python3-dev" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" diff --git a/community/qt5-qtbase/APKBUILD b/community/qt5-qtbase/APKBUILD index d77ed81a61a..9dd8ba274ae 100644 --- a/community/qt5-qtbase/APKBUILD +++ b/community/qt5-qtbase/APKBUILD @@ -11,7 +11,7 @@ pkgrel=0 pkgdesc="Qt5 - QtBase components" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" _sub="$pkgname-sqlite $pkgname-odbc $pkgname-postgresql $pkgname-mysql $pkgname-tds $pkgname-x11" depends_dev="mesa-dev libice-dev libsm-dev libx11-dev libxext-dev diff --git a/community/qt5-qtdeclarative/APKBUILD b/community/qt5-qtdeclarative/APKBUILD index bb49ff09102..4761cdbb5a2 100644 --- a/community/qt5-qtdeclarative/APKBUILD +++ b/community/qt5-qtdeclarative/APKBUILD @@ -11,7 +11,7 @@ pkgrel=0 pkgdesc="Qt5 - QtDeclarative component" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" makedepends="qt5-qtbase-dev" subpackages="$pkgname-dev" diff --git a/community/qt5-qtgraphicaleffects/APKBUILD b/community/qt5-qtgraphicaleffects/APKBUILD index ad5569eab2c..20679e27206 100644 --- a/community/qt5-qtgraphicaleffects/APKBUILD +++ b/community/qt5-qtgraphicaleffects/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="Qt5 - QtGraphicalEffects component" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" makedepends="qt5-qtbase-dev qt5-qtdeclarative-dev" case $pkgver in diff --git a/community/qt5-qtimageformats/APKBUILD b/community/qt5-qtimageformats/APKBUILD index bcf63a5a652..988a896bfd5 100644 --- a/community/qt5-qtimageformats/APKBUILD +++ b/community/qt5-qtimageformats/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="Qt5 - QtImageFormats component" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" makedepends="qt5-qtbase-dev libmng-dev tiff-dev jasper-dev libwebp-dev" case $pkgver in diff --git a/community/qt5-qtmultimedia/APKBUILD b/community/qt5-qtmultimedia/APKBUILD index 6f2a74460f0..8592f57954c 100644 --- a/community/qt5-qtmultimedia/APKBUILD +++ b/community/qt5-qtmultimedia/APKBUILD @@ -11,7 +11,7 @@ pkgrel=0 pkgdesc="Qt5 - Multimedia support" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" makedepends="qt5-qtbase-dev qt5-qtdeclarative-dev alsa-lib-dev libxv-dev gstreamer0.10-dev gst-plugins-base0.10-dev" subpackages="$pkgname-dev" diff --git a/community/qt5-qtquickcontrols/APKBUILD b/community/qt5-qtquickcontrols/APKBUILD index e1e02c8db50..d85b3fbc0a0 100644 --- a/community/qt5-qtquickcontrols/APKBUILD +++ b/community/qt5-qtquickcontrols/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="Qt5 - module with set of QtQuick controls" url="http://qt-project.org/" arch="all" -license="BSD and (LGPLv2 with exceptions or GPLv3 with exceptions) and GFDL" +license="BSD and (LGPL-2.0 with exceptions or GPL-3.0 with exceptions) and GFDL" makedepends="qt5-qtbase-dev qt5-qtdeclarative-dev" case $pkgver in diff --git a/community/qt5-qtscript/APKBUILD b/community/qt5-qtscript/APKBUILD index 51203042121..4499077ebb6 100644 --- a/community/qt5-qtscript/APKBUILD +++ b/community/qt5-qtscript/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="Qt5 - QtScript component" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" makedepends="qt5-qtbase-dev" subpackages="$pkgname-dev" diff --git a/community/qt5-qtserialport/APKBUILD b/community/qt5-qtserialport/APKBUILD index 73018ea9006..de4b06ff9d4 100644 --- a/community/qt5-qtserialport/APKBUILD +++ b/community/qt5-qtserialport/APKBUILD @@ -12,7 +12,7 @@ pkgrel=0 pkgdesc="Qt5 - QtSerialPort module" url="http://wiki.qt.io/QtSerialPort" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" makedepends="qt5-qtbase-dev eudev-dev" subpackages="$pkgname-dev" diff --git a/community/qt5-qtsvg/APKBUILD b/community/qt5-qtsvg/APKBUILD index 4247fba80ec..6c6147e692f 100644 --- a/community/qt5-qtsvg/APKBUILD +++ b/community/qt5-qtsvg/APKBUILD @@ -11,7 +11,7 @@ pkgrel=0 pkgdesc="Qt5 - Support for rendering and displaying SVG" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" makedepends="qt5-qtbase-dev zlib-dev" subpackages="$pkgname-dev" diff --git a/community/qt5-qttools/APKBUILD b/community/qt5-qttools/APKBUILD index cf5433699c6..e449795ba23 100644 --- a/community/qt5-qttools/APKBUILD +++ b/community/qt5-qttools/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="Qt5 - QtTool components" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" makedepends="qt5-qtbase-dev" subpackages="$pkgname-dev qt5-assistant:_assistant qt5-qdbusviewer:_dbusviewer" diff --git a/community/qt5-qttranslations/APKBUILD b/community/qt5-qttranslations/APKBUILD index 2ad852e266b..791ce0c0e0f 100644 --- a/community/qt5-qttranslations/APKBUILD +++ b/community/qt5-qttranslations/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="Qt5 - QtTranslations module" url="http://qt-project.org/" arch="noarch" -license="LGPLv2 with exceptions or GPLv3 with exceptions and GFDL" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions and GFDL" makedepends="qt5-qttools-dev" case $pkgver in diff --git a/community/qt5-qtwebkit/APKBUILD b/community/qt5-qtwebkit/APKBUILD index 765e09053e9..6c6324f8cfb 100644 --- a/community/qt5-qtwebkit/APKBUILD +++ b/community/qt5-qtwebkit/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Qt5 - QtWebKit components" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" depends="" depends_dev="qt5-qtdeclarative-dev gstreamer-dev gst-plugins-base-dev libxslt-dev mesa-dev icu-dev libxext-dev glib-dev libxcomposite-dev diff --git a/community/qt5-qtxmlpatterns/APKBUILD b/community/qt5-qtxmlpatterns/APKBUILD index 74952a34cc5..5d2b96f870f 100644 --- a/community/qt5-qtxmlpatterns/APKBUILD +++ b/community/qt5-qtxmlpatterns/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="Qt5 - QtXmlPatterns component" url="http://qt-project.org/" arch="all" -license="LGPLv2 with exceptions or GPLv3 with exceptions" +license="LGPL-2.0 with exceptions or GPL-3.0 with exceptions" makedepends="qt5-qtbase-dev" subpackages="$pkgname-dev" diff --git a/community/qt5-websockets/APKBUILD b/community/qt5-websockets/APKBUILD index 91588433cde..3e470a55da5 100644 --- a/community/qt5-websockets/APKBUILD +++ b/community/qt5-websockets/APKBUILD @@ -12,7 +12,7 @@ pkgrel=0 pkgdesc="Provides WebSocket communication compliant with RFC 6455" url="http://qt-project.org/" arch="all" -license="GPL3" +license="GPL-3.0" makedepends="qt5-qtbase-dev" subpackages="$pkgname-dev" diff --git a/community/qt5-x11extras/APKBUILD b/community/qt5-x11extras/APKBUILD index ab0b6aa1203..9b930125ad1 100644 --- a/community/qt5-x11extras/APKBUILD +++ b/community/qt5-x11extras/APKBUILD @@ -12,7 +12,7 @@ pkgrel=0 pkgdesc="Provides platform-specific APIs for X11" url="http://qt-project.org/" arch="all" -license="GPL3" +license="GPL-3.0" makedepends="qt5-qtbase-dev" subpackages="$pkgname-dev" diff --git a/community/racktables/APKBUILD b/community/racktables/APKBUILD index b39541308ee..63d06e0e9eb 100644 --- a/community/racktables/APKBUILD +++ b/community/racktables/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Server room asset management" url="http://racktables.org" arch="noarch" -license="GPL2" +license="GPL-2.0" _php=php5 depends="$_php ${_php}-bcmath ${_php}-gd ${_php}-mysql ${_php}-pdo_mysql ${_php}-json" diff --git a/community/rawtherapee/APKBUILD b/community/rawtherapee/APKBUILD index 9fac4937bd3..88ac4b59f44 100644 --- a/community/rawtherapee/APKBUILD +++ b/community/rawtherapee/APKBUILD @@ -7,7 +7,7 @@ _gtkver=2 pkgdesc="RawTherapee is image processing software simular to Lightroom or Aperture" url="http://rawtherapee.com" arch="x86 x86_64 ppc64le" -license="GPL3" +license="GPL-3.0" makedepends="bzip2-dev exiv2-dev expat-dev fftw-dev glib-dev gtk+2.0-dev \ gtk-engines-dev gtkmm-dev lcms2-dev libcanberra-dev \ libpng-dev libsigc++-dev tiff-dev zlib-dev cmake mercurial \ diff --git a/community/rdfind/APKBUILD b/community/rdfind/APKBUILD index f6b0e6c8536..cb2024352d7 100644 --- a/community/rdfind/APKBUILD +++ b/community/rdfind/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Redundant data find - a program that finds duplicate files" url="http://rdfind.pauldreik.se" arch="all" -license="GPL2 " +license="GPL-2.0 " makedepends="nettle-dev" subpackages="$pkgname-doc" source="https://rdfind.pauldreik.se/$pkgname-$pkgver.tar.gz" diff --git a/community/recon-ng/APKBUILD b/community/recon-ng/APKBUILD index 95f08f8868d..5b867ebc123 100644 --- a/community/recon-ng/APKBUILD +++ b/community/recon-ng/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Full-featured Web Reconnaissance framework written in Python" url="https://bitbucket.org/LaNMaSteR53/recon-ng" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="python2 py-dicttoxml py-dnspython py-jsonrpclib py-lxml py-mechanize py-slowaes py-xlsxwriter py-olefile py-pypdf2" depends_dev="" diff --git a/community/redshift/APKBUILD b/community/redshift/APKBUILD index c8fbdf089cb..65dde4f57c9 100644 --- a/community/redshift/APKBUILD +++ b/community/redshift/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Adjusts the color temperature of your screen according to your surroundings" url="http://jonls.dk/redshift/" arch="all" -license="GPL3" +license="GPL-3.0" depends="" depends_dev="" makedepends="libxcb-dev libxxf86vm-dev libdrm-dev intltool" diff --git a/community/remind/APKBUILD b/community/remind/APKBUILD index 969985b3e26..c9f45927a1f 100644 --- a/community/remind/APKBUILD +++ b/community/remind/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Sophisticated calendar and alarm program" url="https://www.roaringpenguin.com/products/remind" arch="all" -license="GPL2" +license="GPL-2.0" options="!check" subpackages="$pkgname-doc tkremind::noarch" source="https://www.roaringpenguin.com/files/download/$pkgname-$_pkgver.tar.gz" diff --git a/community/repmgr/APKBUILD b/community/repmgr/APKBUILD index 703486254d9..3a5e139a101 100644 --- a/community/repmgr/APKBUILD +++ b/community/repmgr/APKBUILD @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="Replication Manager for PostgreSQL" url="http://www.repmgr.org/" arch="all" -license="GPL-3" +license="GPL-3.0" depends="postgresql-client" makedepends="postgresql-dev" pkgusers="postgres" diff --git a/community/retawq/APKBUILD b/community/retawq/APKBUILD index 200c4424abe..3d91fcb3a68 100644 --- a/community/retawq/APKBUILD +++ b/community/retawq/APKBUILD @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="retawq is an interactive, multi-threaded network client for text terminals" url="http://retawq.sourceforge.net/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="" makedepends="$depends_dev ncurses-dev libressl-dev" diff --git a/community/rethinkdb/APKBUILD b/community/rethinkdb/APKBUILD index b175afcc6fe..4c5ec3a9aa5 100644 --- a/community/rethinkdb/APKBUILD +++ b/community/rethinkdb/APKBUILD @@ -6,7 +6,7 @@ pkgrel=5 pkgdesc="Distributed powerful and scalable NoSQL database" url="http://www.rethinkdb.com" arch="x86_64 ppc64le s390x" -license="ASL 2.0" +license="Apache-2.0" options="!check" # needs coffeescript makedepends="bash python2 linux-headers bsd-compat-headers m4 paxmark protobuf-dev icu-dev libressl-dev curl-dev boost-dev libexecinfo-dev diff --git a/community/rng-tools/APKBUILD b/community/rng-tools/APKBUILD index 42f9153266c..3a4c75a18d8 100644 --- a/community/rng-tools/APKBUILD +++ b/community/rng-tools/APKBUILD @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="a random number generator daemon" url="https://sourceforge.net/projects/gkernel/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="" makedepends="argp-standalone linux-headers" diff --git a/community/roundcubemail/APKBUILD b/community/roundcubemail/APKBUILD index 1e3e064e896..ce9ce96f5f9 100644 --- a/community/roundcubemail/APKBUILD +++ b/community/roundcubemail/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A PHP web-based mail client" url="http://www.roundcube.net" arch="noarch" -license="GPL3+" +license="GPL-3.0-or-later" install="$pkgname.post-upgrade" depends="${_php} ${_php}-imap ${_php}-xml ${_php}-json ${_php}-dom ${_php}-exif ${_php}-pear-net_idna2 ${_php}-pear-mail_mime diff --git a/community/rover/APKBUILD b/community/rover/APKBUILD index 5f47c8c2983..4c1ad1c57b0 100644 --- a/community/rover/APKBUILD +++ b/community/rover/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Rover is a small file browser that aims to be simple, fast and portable" url="http://lecram.github.io/p/rover/" arch="all" -license="Public Domain" +license="Public-Domain" makedepends="ncurses-dev ncurses5-widec-libs" subpackages="$pkgname-doc" source="${pkgname}-${pkgver}.tar.gz::https://github.com/lecram/rover/archive/v${pkgver}.tar.gz" diff --git a/community/rpm/APKBUILD b/community/rpm/APKBUILD index 376208a6b2c..ced97ddaa3b 100644 --- a/community/rpm/APKBUILD +++ b/community/rpm/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The RPM package manager" url="http://www.rpm.org/" arch="all" -license="GPL2 LGPL2+" +license="GPL-2.0 LGPL-2.0-or-later" depends_dev="nspr-dev nss-dev db-dev lua-dev zlib-dev bzip2-dev xz-dev libelf-dev file-dev popt-dev libcap-dev acl-dev libarchive-dev binutils-dev" diff --git a/community/rsound/APKBUILD b/community/rsound/APKBUILD index 38caffdab6d..1d4b7086b6d 100644 --- a/community/rsound/APKBUILD +++ b/community/rsound/APKBUILD @@ -7,7 +7,7 @@ pkgrel=4 pkgdesc="A multi-platform, simple PCM audio server and client" url="https://github.com/Themaister/RSound" arch="all" -license="GPLv3" +license="GPL-3.0" depends="" depends_dev="alsa-lib-dev libsamplerate-dev portaudio-dev libao-dev jack-dev" makedepends="$depends_dev" diff --git a/community/rt4/APKBUILD b/community/rt4/APKBUILD index d7111adf63e..b464dfa4cb1 100644 --- a/community/rt4/APKBUILD +++ b/community/rt4/APKBUILD @@ -9,7 +9,7 @@ pkgusers="rt4" pkggroups="rt4" url="https://bestpractical.squarespace.com/request-tracker" arch="noarch" -license="GPLv2+" +license="GPL-2.0-or-later" depends="perl perl-term-readkey perl-cache-simple-timedexpiry diff --git a/community/rust/APKBUILD b/community/rust/APKBUILD index 0cab13579e7..6c4f8717f5b 100644 --- a/community/rust/APKBUILD +++ b/community/rust/APKBUILD @@ -10,7 +10,7 @@ pkgrel=0 pkgdesc="The Rust Programming Language (compiler)" url="http://www.rust-lang.org" arch="x86_64" -license="ASL-2.0 BSD ISC MIT" +license="Apache-2.0 BSD ISC MIT" # gcc is needed at runtime just for linking. Someday rustc might invoke # the linker directly, and then we'll only need binutils. diff --git a/community/safekeep/APKBUILD b/community/safekeep/APKBUILD index 9fa85b5b8a3..daa629d61cf 100644 --- a/community/safekeep/APKBUILD +++ b/community/safekeep/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="SafeKeep backup system" url="https://github.com/dimipaun/safekeep" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="openssh-client python2 rdiff-backup util-linux" makedepends="asciidoc libxml2-utils xmlto" install="$pkgname-server.post-install" diff --git a/community/salt/APKBUILD b/community/salt/APKBUILD index 0a835586219..4600282083b 100644 --- a/community/salt/APKBUILD +++ b/community/salt/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="A parallel remote execution system" url="https://github.com/saltstack/salt" arch="noarch" -license="ASL-2.0" +license="Apache-2.0" depends="py2-tornado py2-yaml py2-jinja2 py2-markupsafe py2-msgpack py2-crypto py2-zmq py2-six py2-requests py2-futures py2-pygit2 py2-dateutil procps" makedepends="python2-dev py2-libcloud" diff --git a/community/scapy/APKBUILD b/community/scapy/APKBUILD index 5959adf626b..1eb9b46c12c 100644 --- a/community/scapy/APKBUILD +++ b/community/scapy/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Powerful interactive packet manipulation" url="http://www.secdev.org/projects/scapy/" arch="noarch" -license="GPL3+" +license="GPL-3.0-or-later" depends="python2" makedepends="python2-dev" install="$pkgname.post-install" diff --git a/community/setconf/APKBUILD b/community/setconf/APKBUILD index b8907920fc2..86299b51cbe 100644 --- a/community/setconf/APKBUILD +++ b/community/setconf/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Utility for easily changing settings in configuration files" url="http://setconf.roboticoverlords.org/" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="python3" subpackages="$pkgname-doc" source="http://setconf.roboticoverlords.org/$pkgname-$pkgver.tar.xz" diff --git a/community/shotwell/APKBUILD b/community/shotwell/APKBUILD index 8267441ca61..dce3a65050a 100644 --- a/community/shotwell/APKBUILD +++ b/community/shotwell/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="A digital photo organizer designed for the GNOME desktop environment" url="https://wiki.gnome.org/Apps/Shotwell" arch="x86 x86_64 ppc64le" -license="LGPL2.1" +license="LGPL-2.1" install="shotwell.post-upgrade shotwell.post-install shotwell.pre-deinstall" subpackages="$pkgname-lang $pkgname-doc" makedepends="intltool vala libgee-dev libunique3-dev webkit2gtk-dev libexif-dev diff --git a/community/sigar/APKBUILD b/community/sigar/APKBUILD index 207d793b8b5..2fd6d57f867 100644 --- a/community/sigar/APKBUILD +++ b/community/sigar/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="System Information Gatherer And Reporter" url="http://sigar.hyperic.com/" arch="x86_64 x86 ppc64le" -license="ASL 2.0" +license="Apache-2.0" depends="" depends_dev="" makedepends="$depends_dev libtirpc-dev perl apache-ant openjdk8" diff --git a/community/soundtouch/APKBUILD b/community/soundtouch/APKBUILD index b581fd57af4..ebc83aa8017 100644 --- a/community/soundtouch/APKBUILD +++ b/community/soundtouch/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Audio Processing library for changing Tempo, Pitch and Playback Rates" url="http://www.surina.net/soundtouch/" arch="all" -license="LGPLv2+" +license="LGPL-2.0-or-later" depends="" depends_dev="" makedepends="$depends_dev autoconf automake libtool" diff --git a/community/spacefm/APKBUILD b/community/spacefm/APKBUILD index 8318313565a..7aff63dbb00 100644 --- a/community/spacefm/APKBUILD +++ b/community/spacefm/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Multi-panel tabbed file manager (GTK2 version)" arch=all url="http://ignorantguru.github.com/spacefm/" -license="GPL3" +license="GPL-3.0" depends="bash" makedepends="intltool gettext-dev gtk+2.0-dev gtk+3.0-dev eudev-dev ffmpegthumbnailer-dev linux-headers" subpackages="$pkgname-lang $pkgname-doc $pkgname-gtk3 $pkgname-gtk3-lang:lang3:noarch $pkgname-gtk3-doc:doc3:noarch" diff --git a/community/sphinx/APKBUILD b/community/sphinx/APKBUILD index b09022d0c88..b50732aab5f 100644 --- a/community/sphinx/APKBUILD +++ b/community/sphinx/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Free open-source SQL full-text search engine" url="http://www.sphinxsearch.com" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="" makedepends="$depends_dev postgresql-dev mariadb-dev unixodbc-dev expat-dev diff --git a/community/sslstrip/APKBUILD b/community/sslstrip/APKBUILD index 9ebe0a59265..cbfafc1c94d 100644 --- a/community/sslstrip/APKBUILD +++ b/community/sslstrip/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Python tool to hijack HTTPS connections during a MITM attack" url="http://www.thoughtcrime.org/software/sslstrip/" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="py2-openssl py-twisted py2-six py-enum34 py2-cffi py2-service_identity py2-cryptography" makedepends="python2-dev" diff --git a/community/stow/APKBUILD b/community/stow/APKBUILD index 289a1c78e35..58fb84cb7f3 100644 --- a/community/stow/APKBUILD +++ b/community/stow/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Manage installation of multiple softwares in the same directory tree" url="https://www.gnu.org/software/stow/" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="perl" makedepends="perl-test-output" subpackages="$pkgname-doc" diff --git a/community/stunnel/APKBUILD b/community/stunnel/APKBUILD index 5420501ccf2..e04752630d1 100644 --- a/community/stunnel/APKBUILD +++ b/community/stunnel/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="SSL encryption wrapper between network client and server." url="http://www.stunnel.org/" arch="all" -license="GPL2+ with OpenSSL exception" +license="GPL-2.0-or-later with OpenSSL exception" makedepends="libressl-dev" subpackages="$pkgname-doc" install="$pkgname.pre-install" diff --git a/community/suricata/APKBUILD b/community/suricata/APKBUILD index 75bf57b0611..382b7b2ee5c 100644 --- a/community/suricata/APKBUILD +++ b/community/suricata/APKBUILD @@ -7,7 +7,7 @@ pkgdesc="High performance Network IDS, IPS and Network Security Monitoring engin url="https://suricata-ids.org/" # luajit is not available for disabled arches arch="all !s390x" -license="GPL-2" +license="GPL-2.0" makedepends="automake autoconf libtool libhtp-dev>=0.5.25 libcap-ng-dev file-dev luajit-dev geoip-dev pcre-dev yaml-dev libpcap-dev hiredis-dev libnet-dev libnetfilter_queue-dev libnfnetlink-dev jansson-dev python2 diff --git a/community/sxiv/APKBUILD b/community/sxiv/APKBUILD index 1d1756a735d..eaf059700ce 100644 --- a/community/sxiv/APKBUILD +++ b/community/sxiv/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Simple X Image Viewer" url="https://github.com/muennich/sxiv" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="imlib2-dev giflib-dev libexif-dev libxft-dev" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz" diff --git a/community/syncthing/APKBUILD b/community/syncthing/APKBUILD index 7f98dcda0fd..625bbf82fcd 100644 --- a/community/syncthing/APKBUILD +++ b/community/syncthing/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="Open Source Continuous File Synchronization" url="https://syncthing.net/" arch="all !armhf" -license="MPLv2" +license="MPL-2.0" pkgusers="$pkgname" pkggroups="$pkgname" makedepends="go" diff --git a/community/syncthing13/APKBUILD b/community/syncthing13/APKBUILD index fb32c5dd160..3e7c7a10800 100644 --- a/community/syncthing13/APKBUILD +++ b/community/syncthing13/APKBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc="Open Source Continuous File Synchronization" url="https://syncthing.net/" arch="all" -license="MPLv2" +license="MPL-2.0" pkgusers="$_realname" pkggroups="$_realname" makedepends="go" diff --git a/community/syslog-summary/APKBUILD b/community/syslog-summary/APKBUILD index 46057cfae6d..e36bd645ce2 100644 --- a/community/syslog-summary/APKBUILD +++ b/community/syslog-summary/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Summarize the contents of a syslog log file / useful with logcheck" url="https://github.com/dpaleino/syslog-summary" arch="noarch" -license="GPL3" +license="GPL-3.0" depends="py2-magic" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/dpaleino/$pkgname/archive/$pkgver.tar.gz diff --git a/community/targetcli/APKBUILD b/community/targetcli/APKBUILD index f0882b88a5e..f1ef89b378e 100644 --- a/community/targetcli/APKBUILD +++ b/community/targetcli/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="An administration shell for storage targets" url="https://github.com/open-iscsi/targetcli-fb" arch="noarch" -license="AGPLv3" +license="AGPL-3.0" depends="python2 py-configobj py-configshell py-ethtool py-ipaddr py-parsing py-rtslib py-simpleparse py-six py-udev py-dbus dbus py-urwid" makedepends="$depends_dev py-setuptools" diff --git a/community/terminator/APKBUILD b/community/terminator/APKBUILD index 9cbed9e2641..708e3db14e9 100644 --- a/community/terminator/APKBUILD +++ b/community/terminator/APKBUILD @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="Terminal emulator that supports tabs and grids" url="https://gnometerminator.blogspot.fr/p/introduction.html" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="python2 py-gtk xdg-utils vte3 dbus-glib gettext intltool keybinder3 gconf gsettings-desktop-schemas py2-gobject3 py2-cairo py-dbus py-psutil" makedepends="python2-dev" diff --git a/community/terraform/APKBUILD b/community/terraform/APKBUILD index b143c2ffa59..ecb185c0b05 100644 --- a/community/terraform/APKBUILD +++ b/community/terraform/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="Building, changing, and combining infrastructure safely and efficiently" url="https://www.terraform.io/" arch="all !armhf" -license="MPL 2.0" +license="MPL-2.0" makedepends="go" source="${pkgname}-${pkgver}.tar.gz::https://github.com/hashicorp/terraform/archive/v$pkgver.tar.gz" builddir="$srcdir/src/github.com/hashicorp/$pkgname" diff --git a/community/tg/APKBUILD b/community/tg/APKBUILD index 4589655b9d9..4a3c6fb4fc1 100644 --- a/community/tg/APKBUILD +++ b/community/tg/APKBUILD @@ -8,7 +8,7 @@ tlparserver=0_git20151118 pkgdesc="Command line Telegram client" url="https://github.com/vysheng/tg" arch="all !s390x" -license="GPL3" +license="GPL-3.0" depends="" depends_dev="readline-dev libressl-dev libconfig-dev libevent-dev jansson-dev lua5.2-dev" makedepends="$depends_dev zlib-dev grep" diff --git a/community/tinc-pre/APKBUILD b/community/tinc-pre/APKBUILD index 858531fa1f0..9a2585a74e1 100644 --- a/community/tinc-pre/APKBUILD +++ b/community/tinc-pre/APKBUILD @@ -8,7 +8,7 @@ pkgdesc="Virtual Private Network (VPN) daemon (pre-release)" url="http://tinc-vpn.org/" # tests hangs on s390x and fails in lxc on ppc64le arch="all !s390x !ppc64le" -license="GPLv2" +license="GPL-2.0" depends="" makedepends="linux-headers ncurses-dev readline-dev zlib-dev lzo-dev libressl-dev texinfo diff --git a/community/tint2/APKBUILD b/community/tint2/APKBUILD index 4b83c582ab8..b5624d89350 100644 --- a/community/tint2/APKBUILD +++ b/community/tint2/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="tint2 is a simple unintrusive panel/taskbar" url="https://gitlab.com/o9000/tint2" arch="all" -license="GPL2" +license="GPL-2.0" options="!check" depends="imlib2 glib pango cairo libxcomposite libxdamage libxinerama libxrandr gtk+" diff --git a/community/tinyssh/APKBUILD b/community/tinyssh/APKBUILD index 12432672de1..3d3fe045b0e 100644 --- a/community/tinyssh/APKBUILD +++ b/community/tinyssh/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Small SSH server using NaCl / TweetNaCl (no dependency on OpenSSL)" url="https://tinyssh.org/" arch="all" -license="CC0 1.0" +license="CC0-1.0" makedepends="libsodium-dev" options="!check" subpackages="$pkgname-doc" diff --git a/community/tomahawk/APKBUILD b/community/tomahawk/APKBUILD index 027390ff5d6..40259347060 100644 --- a/community/tomahawk/APKBUILD +++ b/community/tomahawk/APKBUILD @@ -6,7 +6,7 @@ pkgrel=8 pkgdesc="A Music Player App written in C++/Qt" url="http://tomahawk-player.org/" arch="all" -license="GPL3" +license="GPL-3.0" options="!check" #upstream does not provide check depends="phonon-backend-gstreamer qt-sqlite" makedepends="cmake sparsehash websocket++ automoc4 diff --git a/community/tomcat-native/APKBUILD b/community/tomcat-native/APKBUILD index 5824ca700bb..7f14711824b 100644 --- a/community/tomcat-native/APKBUILD +++ b/community/tomcat-native/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Native resources optional component for Apache Tomcat" url="http://tomcat.apache.org/native-doc/" arch="all" -license="ASL-2.0" +license="Apache-2.0" depends="openjdk8-jre-base" makedepends="apr-dev chrpath openjdk8 openssl-dev" subpackages="$pkgname-dev" diff --git a/community/torsocks/APKBUILD b/community/torsocks/APKBUILD index 941a61a0a4a..16222bd3069 100644 --- a/community/torsocks/APKBUILD +++ b/community/torsocks/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Wrapper to safely torify applications" url="https://gitweb.torproject.org/torsocks.git" arch="all" -license="GPLv2" +license="GPL-2.0" depends="tor" makedepends="$depends_dev autoconf automake libtool" subpackages="$pkgname-doc" diff --git a/community/tpm/APKBUILD b/community/tpm/APKBUILD index 4f02e9a9e7e..c3bdb4d0f9e 100644 --- a/community/tpm/APKBUILD +++ b/community/tpm/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A tiny password manager" url="https://github.com/nmeum/$pkgname" arch="noarch" -license="GPL3+" +license="GPL-3.0-or-later" depends="gnupg" makedepends="perl" install="" diff --git a/community/tvheadend/APKBUILD b/community/tvheadend/APKBUILD index e57cf467e58..d04c36e56a1 100644 --- a/community/tvheadend/APKBUILD +++ b/community/tvheadend/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="TV Streaming server for linux" url="http://tvheadend.org/" arch="all" -license="GPL3" +license="GPL-3.0" depends="" depends_dev="" makedepends="$depends_dev findutils bash git python2 linux-headers diff --git a/community/ubridge/APKBUILD b/community/ubridge/APKBUILD index c2c69ccd641..5a878d63a7d 100644 --- a/community/ubridge/APKBUILD +++ b/community/ubridge/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Bridge for UDP tunnels, Ethernet, TAP and VMnet interfaces." url="https://github.com/GNS3/ubridge" arch="all" -license="GPL3" +license="GPL-3.0" makedepends="libpcap-dev linux-headers" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/GNS3/$pkgname/archive/v$pkgver.tar.gz diff --git a/community/ucl/APKBUILD b/community/ucl/APKBUILD index b9e73b9ae0a..cb7374889a6 100644 --- a/community/ucl/APKBUILD +++ b/community/ucl/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="Portable lossless data compression library written in ANSI C" url="http://www.oberhumer.com/opensource/ucl/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="file" subpackages="$pkgname-dev" source="http://www.oberhumer.com/opensource/$pkgname/download/$pkgname-$pkgver.tar.gz diff --git a/community/ucspi-tcp6/APKBUILD b/community/ucspi-tcp6/APKBUILD index 817ba15fa3e..6faa5e21d20 100644 --- a/community/ucspi-tcp6/APKBUILD +++ b/community/ucspi-tcp6/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="IPv6 enabled ucspi-tcp superserver" url="http://www.fehcom.de/ipnet/ucspi-tcp6.html" arch="all" -license="public-domain" +license="Public-Domain" depends="" depends_dev="" makedepends="$depends_dev" diff --git a/community/udevil/APKBUILD b/community/udevil/APKBUILD index 159b0d7a3e7..6bf1fd45722 100644 --- a/community/udevil/APKBUILD +++ b/community/udevil/APKBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc="Mount / unmount removable devices without a password (udisks alternative)" url="http://ignorantguru.github.io/udevil" arch="all" -license="GPL3+" +license="GPL-3.0-or-later" makedepends="$depends_dev glib-dev eudev-dev intltool" install="$pkgname.pre-install" subpackages="$pkgname-lang $pkgname-doc" diff --git a/community/uhttpmock/APKBUILD b/community/uhttpmock/APKBUILD index 2137ab73589..84c306dc08a 100644 --- a/community/uhttpmock/APKBUILD +++ b/community/uhttpmock/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="HTTP web service mocking library" url="http://gitorious.org/uhttpmock/" arch="all" -license="LGPLv2" +license="LGPL-2.0" depends="" makedepends="glib-dev libsoup-dev" install="" diff --git a/community/uncrustify/APKBUILD b/community/uncrustify/APKBUILD index f221a6221b4..c64f8cc8f2a 100644 --- a/community/uncrustify/APKBUILD +++ b/community/uncrustify/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="A source code beautifier" url="https://github.com/uncrustify/uncrustify" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="cmake python2" subpackages="$pkgname-doc" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" diff --git a/community/unibilium/APKBUILD b/community/unibilium/APKBUILD index 69304e01736..06dbaefe5c4 100644 --- a/community/unibilium/APKBUILD +++ b/community/unibilium/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A terminfo parsing library" url="https://github.com/mauke/unibilium/" arch="all" -license="LGPL3" +license="LGPL-3.0" depends_dev="libtool" makedepends="$depends_dev" checkdepends="perl-dev" diff --git a/community/upx/APKBUILD b/community/upx/APKBUILD index 72f44244019..c112e2e514b 100644 --- a/community/upx/APKBUILD +++ b/community/upx/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The Ultimate Packer for eXecutables" url="https://upx.github.io" arch="all" -license="GPL2 public-domain" +license="GPL-2.0 Public-Domain" # perl-dev is used to generate man pages makedepends="bash perl-dev ucl-dev zlib-dev" subpackages="$pkgname-doc" diff --git a/community/vino/APKBUILD b/community/vino/APKBUILD index f24916610e7..69403cbab3c 100644 --- a/community/vino/APKBUILD +++ b/community/vino/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="The GNOME desktop sharing server" url="https://wiki.gnome.org/Projects/Vino" arch="all" -license="GPLv2" +license="GPL-2.0" makedepends="$depends_dev libsoup-dev glib-dev gtk+3.0-dev libnotify-dev libsm-dev bsd-compat-headers" subpackages="$pkgname-lang" diff --git a/community/virt-manager/APKBUILD b/community/virt-manager/APKBUILD index 80f6b8a1f53..00132c34803 100644 --- a/community/virt-manager/APKBUILD +++ b/community/virt-manager/APKBUILD @@ -5,7 +5,7 @@ pkgrel=2 pkgdesc="GUI for managing virtual machines" url="http://virt-manager.org/" arch="noarch" -license="GPL2+" +license="GPL-2.0-or-later" _py=py2 depends="python2 gtk+3.0 vte3 $_py-libxml2 $pkgname-common spice-gtk gtk-vnc>=0.5.2-r2 libosinfo diff --git a/community/virtualbricks/APKBUILD b/community/virtualbricks/APKBUILD index 90119e42d52..19b35b02c26 100644 --- a/community/virtualbricks/APKBUILD +++ b/community/virtualbricks/APKBUILD @@ -6,7 +6,7 @@ pkgrel=3 pkgdesc="A GTK frontend for VDE and QEMU/KVM" url="https://launchpad.net/virtualbrick" arch="noarch" -license="GPL v2" +license="GPL-2.0" depends="python2 py-zope-interface py-twisted py-gtk py-imaging py-pygraphviz" depends_dev="" makedepends="python2-dev gettext" diff --git a/community/vlc/APKBUILD b/community/vlc/APKBUILD index 1c71bbc2eb9..11612c8815d 100644 --- a/community/vlc/APKBUILD +++ b/community/vlc/APKBUILD @@ -12,7 +12,7 @@ pkgusers="vlc" pkggroups="vlc" url="https://www.videolan.org/vlc/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" options="!checkroot" subpackages="$pkgname-dev $pkgname-doc diff --git a/community/volatility/APKBUILD b/community/volatility/APKBUILD index d5dfa90b965..a1263b0f0fa 100644 --- a/community/volatility/APKBUILD +++ b/community/volatility/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Volatile memory forensics toolkit" url="http://volatilityfoundation.org/" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="py-crypto" makedepends="py-setuptools" source="https://github.com/volatilityfoundation/$pkgname/archive/$pkgver.zip" diff --git a/community/volumeicon/APKBUILD b/community/volumeicon/APKBUILD index 15163466d2e..089b5362d8f 100644 --- a/community/volumeicon/APKBUILD +++ b/community/volumeicon/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Volume Icon is a lightweight volume control that sits in your systray" url="http://softwarebakery.com/maato/volumeicon.html" arch="all" -license="GPL3" +license="GPL-3.0" depends="" depends_dev="" makedepends="gtk+3.0-dev intltool alsa-lib-dev libnotify-dev" diff --git a/community/vorbis-tools/APKBUILD b/community/vorbis-tools/APKBUILD index 9cd07c5bbca..8a4d4b9ed4d 100644 --- a/community/vorbis-tools/APKBUILD +++ b/community/vorbis-tools/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Extra tools for Ogg-Vorbis" url="https://www.xiph.org/vorbis/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" makedepends="curl-dev flac-dev libvorbis-dev libao-dev speex-dev" install="" diff --git a/community/vte3/APKBUILD b/community/vte3/APKBUILD index 6e80b30c243..a9f56938344 100644 --- a/community/vte3/APKBUILD +++ b/community/vte3/APKBUILD @@ -5,7 +5,7 @@ pkgrel=0 pkgdesc="Virtual Terminal Emulator library" url="https://developer.gnome.org/vte/" arch="all" -license="LGPL2+" +license="LGPL-2.0-or-later" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" makedepends="pango-dev gtk+3.0-dev intltool python2-dev ncurses-dev gobject-introspection-dev vala gnutls-dev diff --git a/community/wavemon/APKBUILD b/community/wavemon/APKBUILD index 2217063772d..0fc58b6ab57 100644 --- a/community/wavemon/APKBUILD +++ b/community/wavemon/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Ncurses-based monitoring application for wireless network devices" url="https://github.com/uoaerg/wavemon" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" makedepends="ncurses-dev libcap-dev libnl3-dev autoconf automake" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/uoaerg/$pkgname/archive/v$pkgver.tar.gz" diff --git a/community/wbar/APKBUILD b/community/wbar/APKBUILD index aae76821e30..811add82897 100644 --- a/community/wbar/APKBUILD +++ b/community/wbar/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A simple and customizable quick-launch desktop dock" url="https://code.google.com/p/wbar/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="" makedepends="libglade-dev intltool imlib2-dev" diff --git a/community/webkit2gtk/APKBUILD b/community/webkit2gtk/APKBUILD index 31302c8a984..23dc2709d24 100644 --- a/community/webkit2gtk/APKBUILD +++ b/community/webkit2gtk/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="portable web rendering engine WebKit for GTK+" url="https://webkitgtk.org/" arch="x86 x86_64 ppc64le aarch64 armhf" -license="LGPL2+ BSD" +license="LGPL-2.0-or-later BSD" makedepends="$depends_dev bison cmake diff --git a/community/whois/APKBUILD b/community/whois/APKBUILD index ff890fa1de6..8e7c5b79dd7 100644 --- a/community/whois/APKBUILD +++ b/community/whois/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Intelligent WHOIS client by Marco d'Itri" url="http://www.linux.it/~md/software/" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="perl libidn-dev gettext-dev" options="!check" subpackages="$pkgname-doc mkpasswd:_mkpasswd mkpasswd-doc" diff --git a/community/wine/APKBUILD b/community/wine/APKBUILD index 5fae70cec6b..47a3f2ec14a 100644 --- a/community/wine/APKBUILD +++ b/community/wine/APKBUILD @@ -9,7 +9,7 @@ pkgrel=0 pkgdesc="A compatibility layer for running Windows programs" url="http://www.winehq.com" arch="x86 x86_64" -license="LGPL2+" +license="LGPL-2.0-or-later" # As of 2.0.3 most of the tests fails options="!check" subpackages="$pkgname-libs $pkgname-dev $pkgname-doc" diff --git a/community/wiredtiger/APKBUILD b/community/wiredtiger/APKBUILD index 58bd25b018b..122700ffb33 100644 --- a/community/wiredtiger/APKBUILD +++ b/community/wiredtiger/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="High performance, scalable, production quality, NoSQL, Open Source extensible platform for data management" url="http://www.wiredtiger.com" arch="x86_64" -license="(GPLv2 or GPLv3) and MIT and BSD" +license="(GPL-2.0 or GPL-3.0) and MIT and BSD" depends="" depends_dev="autoconf automake libtool linux-headers" makedepends="$depends_dev lz4-dev zlib-dev snappy-dev libexecinfo-dev" diff --git a/community/wireshark/APKBUILD b/community/wireshark/APKBUILD index e336d6106a6..7eb7ea97907 100644 --- a/community/wireshark/APKBUILD +++ b/community/wireshark/APKBUILD @@ -8,7 +8,7 @@ pkgrel=0 pkgdesc="A network protocol analyzer - GTK version" url="http://www.wireshark.org" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" depends="" makedepends="bison flex perl-dev glib glib-dev libpcap-dev libcap-dev gtk+3.0-dev c-ares-dev pcre-dev gnutls-dev libgcrypt-dev libressl-dev diff --git a/community/wiringpi/APKBUILD b/community/wiringpi/APKBUILD index e0187a478c2..cede2e76678 100644 --- a/community/wiringpi/APKBUILD +++ b/community/wiringpi/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="command line interface for Raspberry Pi gpio" url="http://wiringpi.com/the-gpio-utility/" arch="armhf" -license="LGPLv3" +license="LGPL-3.0" depends="" makedepends="linux-headers" install="" diff --git a/community/wrk/APKBUILD b/community/wrk/APKBUILD index 99482645703..6a757992771 100644 --- a/community/wrk/APKBUILD +++ b/community/wrk/APKBUILD @@ -8,7 +8,7 @@ pkgdesc="wrk is a modern HTTP benchmarking tool" url="https://github.com/wg/wrk" # requires -march=i586 to build on x86 arch="x86_64" -license="ASL 2.0" +license="Apache-2.0" depends="" depends_dev="" options="!check" # upstream does not provide tests diff --git a/community/x2goserver/APKBUILD b/community/x2goserver/APKBUILD index 25875a31185..649adc62be4 100644 --- a/community/x2goserver/APKBUILD +++ b/community/x2goserver/APKBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc=" X2Go enables you to access a graphical desktop of a computer over a low bandwidth (or high bandwidth) connection." url="http://x2go.org" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" options="suid" depends="perl perl-config-simple perl-dbi perl-file-readbackwards perl-capture-tiny perl-dbd-sqlite bash iproute2 makepasswd diff --git a/community/xapian-bindings/APKBUILD b/community/xapian-bindings/APKBUILD index cf6c8d5d626..f2409cf74ad 100644 --- a/community/xapian-bindings/APKBUILD +++ b/community/xapian-bindings/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Binding libraries for xapian" url="http://www.xapian.org" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" # Disabled check for now since ruby smoketest fails options="!check" _py_makedepends="python-dev diff --git a/community/xapian-core/APKBUILD b/community/xapian-core/APKBUILD index d7cd9ff5f20..066ff722d87 100644 --- a/community/xapian-core/APKBUILD +++ b/community/xapian-core/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Open source search engine library" url="http://www.xapian.org/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" depends="" depends_dev="zlib-dev util-linux-dev" makedepends="$depends_dev libtool" diff --git a/community/xapian-omega/APKBUILD b/community/xapian-omega/APKBUILD index a6eb1fa0579..a023fe7c00e 100644 --- a/community/xapian-omega/APKBUILD +++ b/community/xapian-omega/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Indexers and CGI search frontend for Xapian" url="http://www.xapian.org/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" makedepends="$depends_dev xapian-core-dev perl-dev pcre-dev zlib-dev file-dev" subpackages="$pkgname-doc" source="http://oligarchy.co.uk/xapian/${pkgver}/$pkgname-$pkgver.tar.xz" diff --git a/community/xbindkeys/APKBUILD b/community/xbindkeys/APKBUILD index 6f00dd7c676..394685aa4d9 100644 --- a/community/xbindkeys/APKBUILD +++ b/community/xbindkeys/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Program for launching shell commands via keyboard shortcuts in X" url="http://www.nongnu.org/xbindkeys/xbindkeys.html" arch="all" -license="GPL2" +license="GPL-2.0" makedepends="libx11-dev" subpackages="$pkgname-doc" source="http://www.nongnu.org/$pkgname/$pkgname-$pkgver.tar.gz" diff --git a/community/xkcdpass/APKBUILD b/community/xkcdpass/APKBUILD index 1920c2f6e3e..2fec8a4844d 100644 --- a/community/xkcdpass/APKBUILD +++ b/community/xkcdpass/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Generate secure multiword passwords/passphrases" url="https://github.com/redacted/XKCD-password-generator" arch="noarch" -license="BSD-3" +license="BSD-3-Clause" depends="py3-xkcdpass" makedepends="python3-dev" subpackages="py3-$pkgname:py3" diff --git a/community/xmltv/APKBUILD b/community/xmltv/APKBUILD index f83d1b569cb..fcc71035694 100644 --- a/community/xmltv/APKBUILD +++ b/community/xmltv/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Set of utilities to download tv listings and format them in xml" url="http://xmltv.org/wiki" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="perl-libwww perl-xml-parser perl-xml-twig perl-date-manip perl-xml-writer perl-timedate perl-unicode-string perl-term-readkey perl-file-slurp perl-xml-libxml perl-lingua-en-numbers-ordinate perl-lingua-preferred perl-compress-raw-zlib perl-io-gzip diff --git a/community/xpdf/APKBUILD b/community/xpdf/APKBUILD index 6681a1155cd..876e1c3ba58 100644 --- a/community/xpdf/APKBUILD +++ b/community/xpdf/APKBUILD @@ -6,7 +6,7 @@ pkgrel=4 pkgdesc="The classic X11 PDF viewer" url="http://www.xpdfreader.com" arch="all" -license="GPL2/GPL3" +license="GPL-2.0 GPL-3.0" depends="ghostscript-fonts" makedepends="motif-dev freetype-dev libpng-dev" subpackages="$pkgname-doc" diff --git a/community/xpra/APKBUILD b/community/xpra/APKBUILD index 98bccda0536..b0d89abb87a 100644 --- a/community/xpra/APKBUILD +++ b/community/xpra/APKBUILD @@ -7,7 +7,7 @@ pkgdesc="Xpra is 'screen for X' & allows you to run X programs, usually on a rem url="http://xpra.org" # !armhf: fails to build arch="all !s390x !armhf" -license="GPLv2+" +license="GPL-2.0-or-later" depends="py-gobject py-gtk py-imaging xf86-video-dummy xvfb setxkbmap xorg-server py2-numpy py2-pillow py-gtkglext py2-lz4 py-rencode py-opencl py2-xxhash py2-cryptography" diff --git a/community/xxhash/APKBUILD b/community/xxhash/APKBUILD index 9225892acb1..a25c6d72565 100644 --- a/community/xxhash/APKBUILD +++ b/community/xxhash/APKBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="Extremely fast non-cryptographic hash algorithm" url="http://www.xxhash.com" arch="all" -license="BSD/GPL" +license="BSD GPL" depends="" makedepends="python2-dev python3-dev py-setuptools" subpackages="$pkgname-dev $pkgname-doc py2-$pkgname:_py2 py3-$pkgname:_py3" diff --git a/community/yad/APKBUILD b/community/yad/APKBUILD index 383be904b52..4d9a1b65e12 100644 --- a/community/yad/APKBUILD +++ b/community/yad/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A fork of zenity - display graphical dialogs from shell scripts or command line" url="https://sourceforge.net/projects/yad-dialog" arch="all" -license="GPL3" +license="GPL-3.0" depends="hicolor-icon-theme" makedepends="gtk+2.0-dev intltool" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" diff --git a/community/yadifa/APKBUILD b/community/yadifa/APKBUILD index e6d6ee04389..28a866eaf8f 100644 --- a/community/yadifa/APKBUILD +++ b/community/yadifa/APKBUILD @@ -7,7 +7,7 @@ pkgrel=0 pkgdesc="Lightweight authoritative Name Server with DNSSEC capabilities" url="http://www.yadifa.eu" arch="all" -license="BSD-3" +license="BSD-3-Clause" makedepends="libressl-dev" install="$pkgname.post-install" options="!libtool" diff --git a/community/yarn/APKBUILD b/community/yarn/APKBUILD index 2d04cad815d..3b04bd26d44 100644 --- a/community/yarn/APKBUILD +++ b/community/yarn/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Fast, reliable, and secure dependency management for Node.js" url="https://yarnpkg.com/" arch="noarch" -license="BSD-2" +license="BSD-2-Clause" depends="nodejs" source="https://yarnpkg.com/downloads/$pkgver/$pkgname-v$pkgver.tar.gz apk-install-method.patch" diff --git a/community/yelp-tools/APKBUILD b/community/yelp-tools/APKBUILD index c70437f54a1..78b9c624b07 100644 --- a/community/yelp-tools/APKBUILD +++ b/community/yelp-tools/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="Small programs that help you create, edit, manage, and publish your Mallard or DocBook documentation" url="https://wiki.gnome.org/Apps/Yelp/Tools" arch="noarch" -license="GPL/LGPL" +license="GPL LGPL" makedepends="gawk yelp-xsl itstool libxml2-utils libxslt" source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz" builddir="$srcdir/$pkgname-$pkgver" diff --git a/community/yelp-xsl/APKBUILD b/community/yelp-xsl/APKBUILD index 88e3efff061..bab2e6e176a 100644 --- a/community/yelp-xsl/APKBUILD +++ b/community/yelp-xsl/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A collection of programs and data files to help you build, maintain and distribute documentation." url="https://wiki.gnome.org/Apps/Yelp" arch="noarch" -license="GPL/LGPL/MIT" +license="GPL LGPL MIT" makedepends="intltool libxslt itstool" source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz" builddir="$srcdir/$pkgname-$pkgver" diff --git a/community/ympd/APKBUILD b/community/ympd/APKBUILD index 2dca462fd7f..35fdbbf19a6 100644 --- a/community/ympd/APKBUILD +++ b/community/ympd/APKBUILD @@ -6,7 +6,7 @@ pkgrel=5 pkgdesc="A standalone MPD Web GUI" url="https://www.ympd.org/" arch="all" -license="GPL2" +license="GPL-2.0" depends="" depends_dev="" makedepends="$depends_dev cmake libmpdclient-dev libressl-dev" diff --git a/community/zenity/APKBUILD b/community/zenity/APKBUILD index e001f33f266..7c8ccc38182 100644 --- a/community/zenity/APKBUILD +++ b/community/zenity/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="A GTK+-based xdialog replacement" url="https://www.gnome.org/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" makedepends="gtk+3.0-dev intltool libxml2-utils libnotify-dev itstool" subpackages="$pkgname-lang $pkgname-doc" case $pkgver in diff --git a/community/zoneminder/APKBUILD b/community/zoneminder/APKBUILD index f317c82f8dc..20cddcdbeea 100644 --- a/community/zoneminder/APKBUILD +++ b/community/zoneminder/APKBUILD @@ -8,7 +8,7 @@ _crud=c3976f1478c681b0bbc132ec3a3e82c3984eeed5 pkgdesc="Video camera surveillance system" url="https://www.zoneminder.com/" arch="x86_64" -license="GPL2+" +license="GPL-2.0-or-later" _php=php5 depends="ffmpeg perl perl-archive-zip perl-date-manip perl-dbd-mysql perl-dbi perl-device-serialport perl-libwww diff --git a/community/zram-init/APKBUILD b/community/zram-init/APKBUILD index 5e291e5d330..39b216f64b4 100644 --- a/community/zram-init/APKBUILD +++ b/community/zram-init/APKBUILD @@ -6,7 +6,7 @@ pkgrel=0 pkgdesc="wrapper script for the zram kernel module" arch="noarch" url="https://github.com/vaeth/zram-init" -license="GPL2" +license="GPL-2.0" depends="e2fsprogs-extra" subpackages="$pkgname-zsh-completion:zshcomp" source="$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz" diff --git a/community/zsnes/APKBUILD b/community/zsnes/APKBUILD index a4749fbf9b6..3cd8b4aa1c0 100644 --- a/community/zsnes/APKBUILD +++ b/community/zsnes/APKBUILD @@ -5,7 +5,7 @@ pkgrel=10 pkgdesc="Super Nintendo emulator" url="http://www.zsnes.com/" arch="x86" -license="GPL2" +license="GPL-2.0" makedepends="sdl-dev libpng-dev ncurses-dev mesa-dev automake autoconf nasm" subpackages="$pkgname-doc" source="http://downloads.sourceforge.net/sourceforge/$pkgname/${pkgname}151src.tar.bz2 diff --git a/community/zziplib/APKBUILD b/community/zziplib/APKBUILD index d406a43f925..ed4ca35977d 100644 --- a/community/zziplib/APKBUILD +++ b/community/zziplib/APKBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="Lightweight library to easily extract data from zip files" url="http://zziplib.sourceforge.net" arch="all" -license="LGPL2+ MPL-1.1" +license="LGPL-2.0-or-later MPL-1.1" makedepends="zlib-dev python2 xmlto" checkdepends="zip" subpackages="$pkgname-dev $pkgname-doc $pkgname-utils" diff --git a/main/a2ps/APKBUILD b/main/a2ps/APKBUILD index bb73f6c340d..d8960c8e6e1 100644 --- a/main/a2ps/APKBUILD +++ b/main/a2ps/APKBUILD @@ -5,7 +5,7 @@ pkgrel=7 pkgdesc="a2ps is an Any to PostScript filter" url="https://www.gnu.org/software/a2ps/" arch="all" -license="GPL3" +license="GPL-3.0" depends="ghostscript imagemagick perl" makedepends="gperf autoconf automake libtool" install= diff --git a/main/a52dec/APKBUILD b/main/a52dec/APKBUILD index 61aae61a056..3da22a3c93b 100644 --- a/main/a52dec/APKBUILD +++ b/main/a52dec/APKBUILD @@ -5,7 +5,7 @@ pkgrel=6 pkgdesc="A free library for decoding ATSC A/52 streams." url="http://liba52.sourceforge.net/" arch="all" -license="GPL2+" +license="GPL-2.0-or-later" subpackages="$pkgname-dev $pkgname-doc" makedepends="autoconf automake libtool linux-headers" source="http://liba52.sourceforge.net/files/$pkgname-$pkgver.tar.gz diff --git a/main/abcde/APKBUILD b/main/abcde/APKBUILD index 5a713a977f5..cfecd253c66 100644 --- a/main/abcde/APKBUILD +++ b/main/abcde/APKBUILD @@ -5,7 +5,7 @@ pkgrel=1 pkgdesc="A command line CD encoder that reads your CD, downloads the track information from a CDDB provider, and rips your CD" url="http://abcde.einval.com/" arch="noarch" -license="GPL2" +license="GPL-2.0" depends="bash cd-discid py-eyed3" depends_dev="" makedepends="$depends_dev" diff --git a/main/abi-compliance-checker/APKBUILD b/main/abi-compliance-checker/APKBUILD index 5ea3182a68b..64b6a75ad27 100644 --- a/main/abi-compliance-checker/APKBUILD +++ b/ |