mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
r-*: add "GPL (>=2)" to known licenses
This commit is contained in:
parent
5b53ade216
commit
e270c87e55
5 changed files with 5 additions and 10 deletions
|
@ -9,7 +9,7 @@ pkgrel=1
|
||||||
pkgdesc="Linear Models for Microarray Data"
|
pkgdesc="Linear Models for Microarray Data"
|
||||||
arch=(x86_64)
|
arch=(x86_64)
|
||||||
url="https://bioconductor.org/packages/$_pkgname"
|
url="https://bioconductor.org/packages/$_pkgname"
|
||||||
license=(GPL)
|
license=('GPL-2.0-or-later')
|
||||||
depends=(
|
depends=(
|
||||||
r-statmod
|
r-statmod
|
||||||
)
|
)
|
||||||
|
|
|
@ -7,10 +7,7 @@ sys.path.append(os.path.normpath(f'{__file__}/../../../lilac-extensions'))
|
||||||
from lilac_r_utils import r_pre_build
|
from lilac_r_utils import r_pre_build
|
||||||
|
|
||||||
def pre_build():
|
def pre_build():
|
||||||
r_pre_build(
|
r_pre_build(_G)
|
||||||
_G,
|
|
||||||
expect_license = "GPL (>=2)",
|
|
||||||
)
|
|
||||||
|
|
||||||
def post_build():
|
def post_build():
|
||||||
git_pkgbuild_commit()
|
git_pkgbuild_commit()
|
||||||
|
|
|
@ -9,7 +9,7 @@ pkgrel=1
|
||||||
pkgdesc="Spatial analysis of in situ cytometry data"
|
pkgdesc="Spatial analysis of in situ cytometry data"
|
||||||
arch=(any)
|
arch=(any)
|
||||||
url="https://bioconductor.org/packages/$_pkgname"
|
url="https://bioconductor.org/packages/$_pkgname"
|
||||||
license=(GPL)
|
license=('GPL-2.0-or-later')
|
||||||
depends=(
|
depends=(
|
||||||
r-biocgenerics
|
r-biocgenerics
|
||||||
r-biocparallel
|
r-biocparallel
|
||||||
|
|
|
@ -7,10 +7,7 @@ sys.path.append(os.path.normpath(f'{__file__}/../../../lilac-extensions'))
|
||||||
from lilac_r_utils import r_pre_build
|
from lilac_r_utils import r_pre_build
|
||||||
|
|
||||||
def pre_build():
|
def pre_build():
|
||||||
r_pre_build(
|
r_pre_build(_G)
|
||||||
_G,
|
|
||||||
expect_license = "GPL (>=2)",
|
|
||||||
)
|
|
||||||
|
|
||||||
def post_build():
|
def post_build():
|
||||||
git_pkgbuild_commit()
|
git_pkgbuild_commit()
|
||||||
|
|
|
@ -204,6 +204,7 @@ license_map = {
|
||||||
"GPL (>= 2.0)": "GPL",
|
"GPL (>= 2.0)": "GPL",
|
||||||
"GPL (>= 3)": "GPL3",
|
"GPL (>= 3)": "GPL3",
|
||||||
"GPL (>= 3.0)": "GPL3",
|
"GPL (>= 3.0)": "GPL3",
|
||||||
|
"GPL (>=2)": "GPL-2.0-or-later",
|
||||||
"GPL-2": "GPL2",
|
"GPL-2": "GPL2",
|
||||||
"GPL-2 | GPL-3": "GPL",
|
"GPL-2 | GPL-3": "GPL",
|
||||||
"GPL-3": "GPL3",
|
"GPL-3": "GPL3",
|
||||||
|
|
Loading…
Add table
Reference in a new issue