diff options
author | 2017-06-28 17:08:52 -0400 | |
---|---|---|
committer | 2017-07-01 23:41:02 +0200 | |
commit | d4af85f8901bce23079debddc798be05895a30ea (patch) | |
tree | ef1b2741803ed0c49a25c8504b58718c97da9266 /dev-libs/libfmt | |
parent | net-misc/seafile-client: Version bump to 6.0.7 (diff) | |
download | gentoo-d4af85f8901bce23079debddc798be05895a30ea.tar.gz gentoo-d4af85f8901bce23079debddc798be05895a30ea.tar.bz2 gentoo-d4af85f8901bce23079debddc798be05895a30ea.zip |
dev-libs/libfmt: 4.0.0 version bump
Closes: https://github.com/gentoo/gentoo/pull/5006
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-libs/libfmt')
-rw-r--r-- | dev-libs/libfmt/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/libfmt/libfmt-4.0.0.ebuild | 35 | ||||
-rw-r--r-- | dev-libs/libfmt/libfmt-9999.ebuild | 4 |
3 files changed, 38 insertions, 2 deletions
diff --git a/dev-libs/libfmt/Manifest b/dev-libs/libfmt/Manifest index f72a5013ebf6..9f2da5f66837 100644 --- a/dev-libs/libfmt/Manifest +++ b/dev-libs/libfmt/Manifest @@ -1,2 +1,3 @@ DIST libfmt-3.0.1.tar.gz 606603 SHA256 dce62ab75a161dd4353a98364feb166d35e7eea382169d59d9ce842c49c55bad SHA512 daf5dfb2fe63eb611983fa248bd2182c6202cf1c4f0fc236f357040fce8e87ad531cdf59090306bb313ea333d546e516f467b385e05094e696d0ca091310aad6 WHIRLPOOL 775f9dc9228fbd429e4dbad90d536b69542fb583e44dba9eda950267bae82938b2703726481ff02fbab0cb9efe78b46501f4b82e20cfef550313b7653f6cb963 DIST libfmt-3.0.2.tar.gz 608369 SHA256 fa4a062897b2f3712badfdb8583e6d938252e1156cb5705c3af87705dfef3957 SHA512 50f5a25d1a10fd5b265f3811fa11886b9efdae2952f2aefc9f22c87c1a748128369f4d530b320e5e9c67c745cdab4607d1cb08940f4cf968300dee22e1150117 WHIRLPOOL 8aca672c5a7da8b1d427c7729fd8fe8523e32a1df62b8fd1652da3c71779cee7a59ebefce16abb0c4f28c66d1b9777e085903aa6773f237286ac118172625a6e +DIST libfmt-4.0.0.tar.gz 617818 SHA256 35300a0d356529447a79ed5ccf419239d8b34f916e5d4625f046fd37afa3650a SHA512 8b9f7ce4720c3caef6de4a75b8d4b0fd7db4f1638edca98d5ea95f4a5157aef8faefbac68438236691bd373111ca089b4d3864f7352f3fba1fe44392e9644f8b WHIRLPOOL d9d6a949a32de6d0d0871e5f2a7bb022b078af0781933eaa782e688e5e5e56bdce8b3ce6563b5d29556ce2b6397b50a2ad9278eec07241728cc6a46927f6fc66 diff --git a/dev-libs/libfmt/libfmt-4.0.0.ebuild b/dev-libs/libfmt/libfmt-4.0.0.ebuild new file mode 100644 index 000000000000..5b65419d5cc2 --- /dev/null +++ b/dev-libs/libfmt/libfmt-4.0.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-multilib versionator + +DESCRIPTION="Small, safe and fast formatting library" +HOMEPAGE="https://github.com/fmtlib/fmt" + +LICENSE="BSD-2" +IUSE="test" +SLOT="0/$(get_major_version)" + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="git://github.com/fmtlib/fmt.git" + inherit git-r3 +else + SRC_URI="https://github.com/fmtlib/fmt/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/fmt-${PV}" +fi + +DEPEND="" +RDEPEND="" + +multilib_src_configure() { + local mycmakeargs=( + -DFMT_CMAKE_DIR="$(get_libdir)/cmake/fmt" + -DFMT_LIB_DIR="$(get_libdir)" + -DFMT_TEST=$(usex test) + -DBUILD_SHARED_LIBS=ON + ) + cmake-utils_src_configure +} diff --git a/dev-libs/libfmt/libfmt-9999.ebuild b/dev-libs/libfmt/libfmt-9999.ebuild index bbb6860e2b7c..5b65419d5cc2 100644 --- a/dev-libs/libfmt/libfmt-9999.ebuild +++ b/dev-libs/libfmt/libfmt-9999.ebuild @@ -3,14 +3,14 @@ EAPI=6 -inherit cmake-multilib +inherit cmake-multilib versionator DESCRIPTION="Small, safe and fast formatting library" HOMEPAGE="https://github.com/fmtlib/fmt" LICENSE="BSD-2" IUSE="test" -SLOT="0" +SLOT="0/$(get_major_version)" if [[ ${PV} == *9999 ]] ; then EGIT_REPO_URI="git://github.com/fmtlib/fmt.git" |