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 36123138351 for ; Sat, 25 Apr 2020 07:49:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 712EAE082B; Sat, 25 Apr 2020 07:48:59 +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 5868FE082B for ; Sat, 25 Apr 2020 07:48:59 +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 F1F4734F07D for ; Sat, 25 Apr 2020 07:48:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 996051F0 for ; Sat, 25 Apr 2020 07:48:55 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1587800932.56593aaf93aee4637b1109f5f467032f94931d0d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/pram/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/pram/Manifest app-portage/pram/pram-9.ebuild X-VCS-Directories: app-portage/pram/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 56593aaf93aee4637b1109f5f467032f94931d0d X-VCS-Branch: master Date: Sat, 25 Apr 2020 07:48:55 +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: 28034481-a5ce-44d5-b2ee-398d50e0a356 X-Archives-Hash: c9c246a054e3a5bfe020de47c2628b02 commit: 56593aaf93aee4637b1109f5f467032f94931d0d Author: Michał Górny gentoo org> AuthorDate: Sat Apr 25 07:48:13 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Apr 25 07:48:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56593aaf app-portage/pram: Bump to v9 Signed-off-by: Michał Górny gentoo.org> app-portage/pram/Manifest | 1 + app-portage/pram/pram-9.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/app-portage/pram/Manifest b/app-portage/pram/Manifest index 396fdf052ad..b6f775a7714 100644 --- a/app-portage/pram/Manifest +++ b/app-portage/pram/Manifest @@ -1 +1,2 @@ DIST pram-8.tar.gz 7918 BLAKE2B cc5bea629e49b229622a77c585a62710234e00ae245b68cbcfbae5be538b82752e8b2e8da5ae82f571dd4d7368ecaacd1233affe975fd9e20177122808dc39cc SHA512 bbd9e7ce3207550f1651d63a045474d90c4aaf20ab0c541b2a78e6af6351f9c7bd278b649ee57ed1b3b85cbc4f38f1b98a008e791bf9d19e4ea718892544bd46 +DIST pram-9.tar.gz 8206 BLAKE2B cf490edd53d307e5d9c715d0ca68e38d04ebd5a1dc75f89232605ac5cc9cbc9567b3895b1e2445a14c5acf119f054dc2b982ea7b9949177519a70062e648272b SHA512 a9e718ca0cdc93a67f442f2db5dd6a854357aa493ad7836e5d75ede68c3fad06d2343f1ee34f00bb66203d41575c7773999772f9251a9a2d6fc74702ce875c4d diff --git a/app-portage/pram/pram-9.ebuild b/app-portage/pram/pram-9.ebuild new file mode 100644 index 00000000000..651fd108513 --- /dev/null +++ b/app-portage/pram/pram-9.ebuild @@ -0,0 +1,27 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="Tool to ease merging Pull Requests and git patches" +HOMEPAGE="https://github.com/mgorny/pram" +SRC_URI="https://github.com/mgorny/pram/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-vcs/git + net-misc/wget[ssl] + virtual/editor + !dev-perl/Gentoo-App-Pram" +DEPEND=" + test? ( + ${RDEPEND} + app-crypt/gnupg + sys-apps/diffutils + )"