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 DCA9F1586A6 for ; Tue, 17 Aug 2021 15:23:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BBDDE07C5; Tue, 17 Aug 2021 15:23:20 +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 EE252E07C5 for ; Tue, 17 Aug 2021 15:23:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7A12733BEED for ; Tue, 17 Aug 2021 15:23:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DDA7B7B2 for ; Tue, 17 Aug 2021 15:23:16 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1629213753.26e3a8b26b24c55b44674bab5af10ef3da0411d0.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/iwdevtools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/iwdevtools/Manifest app-portage/iwdevtools/iwdevtools-0.1.0.ebuild X-VCS-Directories: app-portage/iwdevtools/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 26e3a8b26b24c55b44674bab5af10ef3da0411d0 X-VCS-Branch: master Date: Tue, 17 Aug 2021 15:23:16 +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: 5b39c1da-1602-4961-bb47-2ff118b462d4 X-Archives-Hash: 0cb07bd4f2066d23a84ae7be37e0c7ca commit: 26e3a8b26b24c55b44674bab5af10ef3da0411d0 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Aug 17 15:20:53 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Aug 17 15:22:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26e3a8b2 app-portage/iwdevtools: add 0.1.0 Signed-off-by: Ionen Wolkens gentoo.org> app-portage/iwdevtools/Manifest | 1 + app-portage/iwdevtools/iwdevtools-0.1.0.ebuild | 36 ++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/app-portage/iwdevtools/Manifest b/app-portage/iwdevtools/Manifest new file mode 100644 index 00000000000..c30ffe85895 --- /dev/null +++ b/app-portage/iwdevtools/Manifest @@ -0,0 +1 @@ +DIST iwdevtools-0.1.0.tar.gz 16082 BLAKE2B 941ed5436be9579c1a1e96a032e8122f67f74b5449713be474dda443fa983759c61a8a19f846fc0e6d04e8ef757efbacc4a058fe1c27c0ec91029587bb0ac6a0 SHA512 7a26e59d8707fab80a0a234c294f100f75f411fce2e0f12bc1c5b4c134aaaa9c878d405e77a0cf88119681841a9bf4b98662bb729fda50bb7ca5bcea025a2fca diff --git a/app-portage/iwdevtools/iwdevtools-0.1.0.ebuild b/app-portage/iwdevtools/iwdevtools-0.1.0.ebuild new file mode 100644 index 00000000000..8886d713912 --- /dev/null +++ b/app-portage/iwdevtools/iwdevtools-0.1.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Small tools to aid with Gentoo development, primarily intended for QA" +HOMEPAGE="https://github.com/ionenwks/iwdevtools" +SRC_URI="https://github.com/ionenwks/iwdevtools/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + app-portage/portage-utils + sys-apps/diffutils + sys-apps/file + sys-apps/portage + sys-apps/util-linux" + +src_configure() { + meson_src_configure -Ddocdir=${PF} +} + +pkg_postinst() { + if [[ ! ${REPLACING_VERSIONS} ]]; then + elog "To (optionally) integrate with portage, inspect the .bashrc files installed" + elog "at ${EROOT}/usr/share/${PN}. If not already using a bashrc, you can use" + elog "the example bashrc directly by creating a symlink:" + elog + elog " ln -s ../../../usr/share/${PN}/bashrc ${EROOT}/etc/portage/bashrc" + elog + fi +}