diff options
author | Oz Tiram <oz.tiram@gmail.com> | 2019-10-05 18:20:47 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-10-09 08:21:24 +0300 |
commit | 1e456119483a0255c124ac83e2b519e04949adcb (patch) | |
tree | 1d3a84395bca3219052ba73fbd1ab8c53273ce16 /dev-libs/libite | |
parent | dev-libs/libuev: bump version to 2.3.0 (diff) | |
download | gentoo-1e456119483a0255c124ac83e2b519e04949adcb.tar.gz gentoo-1e456119483a0255c124ac83e2b519e04949adcb.tar.bz2 gentoo-1e456119483a0255c124ac83e2b519e04949adcb.zip |
dev-libs/libite: bump version to 2.1.0
Closes: https://bugs.gentoo.org/696528
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Oz Tiram <oz.tiram@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13169
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-libs/libite')
-rw-r--r-- | dev-libs/libite/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/libite/libite-2.1.0.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest index cec74c2497bd..1c523fdd2461 100644 --- a/dev-libs/libite/Manifest +++ b/dev-libs/libite/Manifest @@ -1 +1,2 @@ DIST libite-2.0.0.tar.xz 259960 BLAKE2B 4c5393daaf2ca6eb830fc5f11b1d38e9c1e2374c5f5d87bb973c7e54b9f81480d4a270a4551689806620cd5a84671d1055d409d6dd090acb64bf7fc454d1c283 SHA512 18516f19d36d81169116562b4b27d76240715424cdde9b87eae831f35adb17d70fb01e2eae5e7e9ce99e2c88344c2c15d2b7d11f4ea2e9ae0deb25ee5ee4c563 +DIST libite-2.1.0.tar.xz 265712 BLAKE2B c8a0f2a55bc6e0ae2ad774be67501d2d8ec31927cc107b1b38de409ce78334b9a516727722aa57d615b234edf1057967b2375a96dd947637e987d2583e2efc2a SHA512 dd6b48ed6dc646ce2d17e647179173bf5d3b478db38f05c2133119ce81da9778be8bb277db9beb0e28aeff7f81cb3fc361d3737de31623f6661141efa63d64d3 diff --git a/dev-libs/libite/libite-2.1.0.ebuild b/dev-libs/libite/libite-2.1.0.ebuild new file mode 100644 index 000000000000..285bb078460a --- /dev/null +++ b/dev-libs/libite/libite-2.1.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A collection of useful BSD APIs" +HOMEPAGE="https://github.com/troglobit/libite" +SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +src_configure(){ + econf --enable-static=$(usex static-libs) +} + +src_install(){ + default + find "${D}" -name '*.la' -delete || die + rm "${D}/usr/share/doc/${PF}/LICENSE" || die +} |