diff options
author | Mo Zhou <cdluminate@gmail.com> | 2019-07-11 02:37:54 +0000 |
---|---|---|
committer | Benda Xu <heroxbd@gentoo.org> | 2019-07-11 19:40:15 +0800 |
commit | 57f990e740958ef8183f61cfcc6483678a80796c (patch) | |
tree | 623056b46f9a904a1d324378deff013975d87890 /sci-libs/blis | |
parent | dev-python/jupyter_client: Version bump to 5.2.4 (diff) | |
download | gentoo-57f990e740958ef8183f61cfcc6483678a80796c.tar.gz gentoo-57f990e740958ef8183f61cfcc6483678a80796c.tar.bz2 gentoo-57f990e740958ef8183f61cfcc6483678a80796c.zip |
sci-libs/blis: fix unmatched keywords and maintainer type.
Closes: https://github.com/gentoo/gentoo/pull/12420
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mo Zhou <cdluminate@gmail.com>
Signed-off-by: Benda Xu <heroxbd@gentoo.org>
Diffstat (limited to 'sci-libs/blis')
-rw-r--r-- | sci-libs/blis/blis-0.5.2.ebuild | 6 | ||||
-rw-r--r-- | sci-libs/blis/blis-0.6.0.ebuild | 10 | ||||
-rw-r--r-- | sci-libs/blis/metadata.xml | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/sci-libs/blis/blis-0.5.2.ebuild b/sci-libs/blis/blis-0.5.2.ebuild index 939d0b608d65..785210e5b5a9 100644 --- a/sci-libs/blis/blis-0.5.2.ebuild +++ b/sci-libs/blis/blis-0.5.2.ebuild @@ -15,7 +15,7 @@ IUSE="openmp pthread serial static-libs eselect-ldso doc 64bit-index" REQUIRED_USE="?? ( openmp pthread serial ) ?? ( eselect-ldso 64bit-index )" RDEPEND="eselect-ldso? ( !app-eselect/eselect-cblas - >=app-eselect/eselect-blas-0.2 )" + >=app-eselect/eselect-blas-0.2 )" DEPEND="${RDEPEND} dev-lang/python @@ -91,8 +91,8 @@ pkg_postinst() { # check blas eselect blas add ${libdir} "${EROOT}"/usr/${libdir}/blas/${me} ${me} - local current_blas=$(eselect blas show ${libdir}) - if [[ ${current_blas} == blis || -z ${current_blas} ]]; then + local current_blas=$(eselect blas show ${libdir} | cut -d' ' -f2) + if [[ ${current_blas} == "${me}" || -z ${current_blas} ]]; then eselect blas set ${libdir} ${me} elog "Current eselect: BLAS/CBLAS ($libdir) -> [${current_blas}]." else diff --git a/sci-libs/blis/blis-0.6.0.ebuild b/sci-libs/blis/blis-0.6.0.ebuild index fd8ccbe5c4ca..ccb44fdd6824 100644 --- a/sci-libs/blis/blis-0.6.0.ebuild +++ b/sci-libs/blis/blis-0.6.0.ebuild @@ -15,7 +15,7 @@ IUSE="openmp pthread serial static-libs eselect-ldso doc 64bit-index" REQUIRED_USE="?? ( openmp pthread serial ) ?? ( eselect-ldso 64bit-index )" RDEPEND="eselect-ldso? ( !app-eselect/eselect-cblas - >=app-eselect/eselect-blas-0.2 )" + >=app-eselect/eselect-blas-0.2 )" DEPEND="${RDEPEND} dev-lang/python @@ -62,8 +62,8 @@ src_configure () { src_compile() { DEB_LIBBLAS=libblas.so.3 DEB_LIBCBLAS=libcblas.so.3 \ - LDS_BLAS="${FILESDIR}"/blas.lds LDS_CBLAS="${FILESDIR}"/cblas.lds \ - default + LDS_BLAS="${FILESDIR}"/blas.lds LDS_CBLAS="${FILESDIR}"/cblas.lds \ + default } src_test () { @@ -90,8 +90,8 @@ pkg_postinst() { # check blas eselect blas add ${libdir} "${EROOT}"/usr/${libdir}/blas/${me} ${me} - local current_blas=$(eselect blas show ${libdir}) - if [[ ${current_blas} == blis || -z ${current_blas} ]]; then + local current_blas=$(eselect blas show ${libdir} | cut -d' ' -f2) + if [[ ${current_blas} == "${me}" || -z ${current_blas} ]]; then eselect blas set ${libdir} ${me} elog "Current eselect: BLAS/CBLAS ($libdir) -> [${current_blas}]." else diff --git a/sci-libs/blis/metadata.xml b/sci-libs/blis/metadata.xml index a27c6853409d..21ba26e3bdd6 100644 --- a/sci-libs/blis/metadata.xml +++ b/sci-libs/blis/metadata.xml @@ -5,7 +5,7 @@ <bugs-to>https://github.com/flame/blis/issues/</bugs-to> <doc>https://github.com/flame/blis</doc> </upstream> - <maintainer type="project"> + <maintainer type="person"> <name>Mo Zhou</name> <email>lumin@debian.org</email> </maintainer> |