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 55375138350 for ; Tue, 18 Feb 2020 20:13:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D3C7E08DD; Tue, 18 Feb 2020 20:13:25 +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 840BEE08DD for ; Tue, 18 Feb 2020 20:13:25 +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 16F4634ED43 for ; Tue, 18 Feb 2020 20:13:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F1C7138 for ; Tue, 18 Feb 2020 20:13:20 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1582056795.837875d6faa9dbcdd45aadd3b8a52748afee8821.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libvarlink/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libvarlink/Manifest dev-libs/libvarlink/libvarlink-18.ebuild X-VCS-Directories: dev-libs/libvarlink/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 837875d6faa9dbcdd45aadd3b8a52748afee8821 X-VCS-Branch: master Date: Tue, 18 Feb 2020 20:13:20 +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: 3b0940a3-eb2f-40c8-8dfc-1d21b677d096 X-Archives-Hash: bac2fbc41c36dc4680ef6cd84217f409 commit: 837875d6faa9dbcdd45aadd3b8a52748afee8821 Author: Zac Medico gentoo org> AuthorDate: Tue Feb 18 20:11:57 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Feb 18 20:13:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=837875d6 dev-libs/libvarlink: Bump to version 18 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Zac Medico gentoo.org> dev-libs/libvarlink/Manifest | 1 + dev-libs/libvarlink/libvarlink-18.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-libs/libvarlink/Manifest b/dev-libs/libvarlink/Manifest index 8b15cd6b1c5..d0e3ff59dff 100644 --- a/dev-libs/libvarlink/Manifest +++ b/dev-libs/libvarlink/Manifest @@ -1 +1,2 @@ DIST libvarlink-16.tar.gz 56886 BLAKE2B 6c65199ced429eac733d1114cfad59c4514d299bd3bba0d4a9907498655545fd9edb9999428f39df936cd1e6710bacc08c04f05710e80f0ceb974b43809b9c22 SHA512 8152fc4fab4e9e829c2bc1585e479c23b0329c59da0be8712ff64dbbe01cde9630f228ac7edc06e9faa39dfd3d38007032ec6ed561e2363d4d33f65856f1a271 +DIST libvarlink-18.tar.gz 57708 BLAKE2B 035a3cad38d2429fa7a1bde049d6c5772ef10ef65040179839459d8672ef7fc619ff2a250ad48b108a9068c1f927226ad4ec08fa355b6c6f30a8ab8830422e9e SHA512 a0f2cfe6a3ce3e7c08b24436d4210691d6334ec903cb3d590627595ee3bda79bf4e22e7c72c7ea8ebe817e4e2b045f86d2603ae56b3fd7d429fd281fd7e5e2e8 diff --git a/dev-libs/libvarlink/libvarlink-18.ebuild b/dev-libs/libvarlink/libvarlink-18.ebuild new file mode 100644 index 00000000000..43b326cc7cc --- /dev/null +++ b/dev-libs/libvarlink/libvarlink-18.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="C implementation of the Varlink protocol and command line tool" +HOMEPAGE="https://github.com/varlink/libvarlink" +SRC_URI="https://github.com/varlink/libvarlink/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="Apache-2.0" +SLOT="0" + +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" +RDEPEND="" +DEPEND="${RDEPEND}" +BDEPEND=" + >=dev-util/meson-0.47.0 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + -Dtests="$(usex test true false)" + ) + meson_src_configure +}