From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 46C3F138350 for ; Mon, 6 Apr 2020 13:56:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72251E0E52; Mon, 6 Apr 2020 13:56:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5702AE0E52 for ; Mon, 6 Apr 2020 13:56:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35A1734F01E for ; Mon, 6 Apr 2020 13:56:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D19AF1AE for ; Mon, 6 Apr 2020 13:56:01 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1586181356.d8b1a871deade17d824d5ce808d795125bb545cd.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libfmt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libfmt/Manifest dev-libs/libfmt/libfmt-6.2.0.ebuild X-VCS-Directories: dev-libs/libfmt/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: d8b1a871deade17d824d5ce808d795125bb545cd X-VCS-Branch: master Date: Mon, 6 Apr 2020 13:56:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7049b771-194d-4cc3-a5e0-f9147381499b X-Archives-Hash: 9a40f705a070b6616de32bd5131a22f4 commit: d8b1a871deade17d824d5ce808d795125bb545cd Author: Craig Andrews gentoo org> AuthorDate: Mon Apr 6 13:50:41 2020 +0000 Commit: Craig Andrews gentoo org> CommitDate: Mon Apr 6 13:55:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8b1a871 dev-libs/libfmt: 6.2.0 version bump Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Craig Andrews gentoo.org> dev-libs/libfmt/Manifest | 1 + dev-libs/libfmt/libfmt-6.2.0.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/dev-libs/libfmt/Manifest b/dev-libs/libfmt/Manifest index f3d23b1a402..151bd564f69 100644 --- a/dev-libs/libfmt/Manifest +++ b/dev-libs/libfmt/Manifest @@ -1 +1,2 @@ DIST libfmt-6.1.2.tar.gz 723160 BLAKE2B 36e7451a8732c62dcbf47e6d287ea582827b6196a468b8648803ea1bc9a37a5f681d87488f748d749183d97783ac7fb47a3f2aeed64fc6a684f9ee85b67ae28d SHA512 8770bf4bd2bb6d938e75e0cf1e665c41930dbd9d2a6825274a5a43cd1d85b9c9ca621bb040ed099429f0e16bddbc3399361c453eb1bf3fc01376e6ad9dd875b7 +DIST libfmt-6.2.0.tar.gz 733403 BLAKE2B c7ff69a56b90ec8df7d1af5c9934592449f2052046192aa498a6440d2aab76f10c17fa2833a41475b777dca2e3a1ae671021530bf0ef8be12443541f0f5212b3 SHA512 0003543f437bae416600a2b982eb133f65588bd36d7506fa7d883ae3133fcaf7ad825904af9b588ea22e5d91e56560aaf4243a6afa11ff6d8aace2e4bb1b0cee diff --git a/dev-libs/libfmt/libfmt-6.2.0.ebuild b/dev-libs/libfmt/libfmt-6.2.0.ebuild new file mode 100644 index 00000000000..78c2d74959b --- /dev/null +++ b/dev-libs/libfmt/libfmt-6.2.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CMAKE_ECLASS=cmake +inherit cmake-multilib + +DESCRIPTION="Small, safe and fast formatting library" +HOMEPAGE="https://github.com/fmtlib/fmt" + +LICENSE="MIT" +IUSE="test" +SLOT="0/$(ver_cut 1)" + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://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 ~ppc ~ppc64 ~x86" + S="${WORKDIR}/fmt-${PV}" +fi + +DEPEND="" +RDEPEND="" +RESTRICT="!test? ( test )" + +multilib_src_configure() { + local mycmakeargs=( + -DFMT_CMAKE_DIR="$(get_libdir)/cmake/fmt" + -DFMT_LIB_DIR="$(get_libdir)" + -DFMT_TEST=$(usex test) + ) + cmake_src_configure +}