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 0DFD4138359 for ; Mon, 12 Oct 2020 02:20:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FB2FE095C; Mon, 12 Oct 2020 02:20:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0B5BCE095C for ; Mon, 12 Oct 2020 02:20:20 +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 B66A1340D8A for ; Mon, 12 Oct 2020 02:20:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF6CE391 for ; Mon, 12 Oct 2020 02:20:17 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1602469195.3875b472e5c7ae6459c9f86a743ee9c7ccc7504c.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/selint/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/selint/Manifest app-admin/selint/metadata.xml app-admin/selint/selint-1.1.0.ebuild app-admin/selint/selint-9999.ebuild X-VCS-Directories: app-admin/selint/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 3875b472e5c7ae6459c9f86a743ee9c7ccc7504c X-VCS-Branch: master Date: Mon, 12 Oct 2020 02:20:17 +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: a4c05662-035b-41ca-abfd-948d99a6453b X-Archives-Hash: 430bd57901b92cc8904f83e42f100f8e commit: 3875b472e5c7ae6459c9f86a743ee9c7ccc7504c Author: Jonathan Davies protonmail com> AuthorDate: Fri Sep 18 14:18:50 2020 +0000 Commit: Jason Zaman gentoo org> CommitDate: Mon Oct 12 02:19:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3875b472 app-admin/selint: Added new package with version 1.1.0. Closes: https://github.com/gentoo/gentoo/pull/17588 Signed-off-by: Jonathan Davies protonmail.com> Signed-off-by: Jason Zaman gentoo.org> app-admin/selint/Manifest | 1 + app-admin/selint/metadata.xml | 11 ++++++++++ app-admin/selint/selint-1.1.0.ebuild | 39 ++++++++++++++++++++++++++++++++++++ app-admin/selint/selint-9999.ebuild | 39 ++++++++++++++++++++++++++++++++++++ 4 files changed, 90 insertions(+) diff --git a/app-admin/selint/Manifest b/app-admin/selint/Manifest new file mode 100644 index 00000000000..efeb4bfb72e --- /dev/null +++ b/app-admin/selint/Manifest @@ -0,0 +1 @@ +DIST selint-1.1.0.tar.gz 283926 BLAKE2B 0908f8830ce4b569c54e8c025dd92c39af59172fee0b8061f5b8cdaf61222979a78c3726a5647af9161ce7e4a7ddd5bee64772afecd2024368afa76294b3d317 SHA512 3af358e0f42a285a0360ce2b4db9014ef1e4f0b792623007f88cf510799080975d9e44817e8911bbd32b141704a7fd11e1b4d8f91e124d0fa91c38f71a978c91 diff --git a/app-admin/selint/metadata.xml b/app-admin/selint/metadata.xml new file mode 100644 index 00000000000..80f8686d2a8 --- /dev/null +++ b/app-admin/selint/metadata.xml @@ -0,0 +1,11 @@ + + + + + selinux@gentoo.org + SELinux Team + + + TresysTechnology/selint + + diff --git a/app-admin/selint/selint-1.1.0.ebuild b/app-admin/selint/selint-1.1.0.ebuild new file mode 100644 index 00000000000..f7904071225 --- /dev/null +++ b/app-admin/selint/selint-1.1.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit toolchain-funcs + +DESCRIPTION="Policy Analysis Tools for SELinux" +HOMEPAGE="https://github.com/TresysTechnology/selint/wiki" + +if [[ ${PV} == 9999 ]] ; then + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/TresysTechnology/selint.git" +else + SRC_URI="https://github.com/TresysTechnology/selint/releases/download/v${PV}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/confuse + dev-libs/uthash" + +DEPEND="${RDEPEND} + test? ( dev-libs/check )" + +src_prepare() { + [[ ${PV} == 9999 ]] && eautoreconf + + eapply_user +} + +src_configure() { + econf $(use_with test check) +} diff --git a/app-admin/selint/selint-9999.ebuild b/app-admin/selint/selint-9999.ebuild new file mode 100644 index 00000000000..f7904071225 --- /dev/null +++ b/app-admin/selint/selint-9999.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit toolchain-funcs + +DESCRIPTION="Policy Analysis Tools for SELinux" +HOMEPAGE="https://github.com/TresysTechnology/selint/wiki" + +if [[ ${PV} == 9999 ]] ; then + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/TresysTechnology/selint.git" +else + SRC_URI="https://github.com/TresysTechnology/selint/releases/download/v${PV}/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/confuse + dev-libs/uthash" + +DEPEND="${RDEPEND} + test? ( dev-libs/check )" + +src_prepare() { + [[ ${PV} == 9999 ]] && eautoreconf + + eapply_user +} + +src_configure() { + econf $(use_with test check) +}