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 2C390138334 for ; Sat, 20 Apr 2019 23:27:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D705E0ABE; Sat, 20 Apr 2019 23:20:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 E6AF1E0ABA for ; Sat, 20 Apr 2019 23:20:33 +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 4514E3419E5 for ; Fri, 19 Apr 2019 04:55:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 965FA57F for ; Fri, 19 Apr 2019 04:55:18 +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: <1555649712.c2030b73396fdcfcf523ba4e164f3635cb45e6d5.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-4.ebuild X-VCS-Directories: app-portage/pram/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c2030b73396fdcfcf523ba4e164f3635cb45e6d5 X-VCS-Branch: master Date: Fri, 19 Apr 2019 04:55:18 +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: fb15c14a-2852-45a8-945c-f9fea9bbd654 X-Archives-Hash: b4667d7b7240d1b7969db4afa7300599 commit: c2030b73396fdcfcf523ba4e164f3635cb45e6d5 Author: Michał Górny gentoo org> AuthorDate: Fri Apr 19 04:52:33 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Apr 19 04:55:12 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2030b73 app-portage/pram: Bump to v4 Signed-off-by: Michał Górny gentoo.org> app-portage/pram/Manifest | 1 + app-portage/pram/pram-4.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/app-portage/pram/Manifest b/app-portage/pram/Manifest index e562597a082..0bfe13f1360 100644 --- a/app-portage/pram/Manifest +++ b/app-portage/pram/Manifest @@ -1 +1,2 @@ DIST pram-3.tar.gz 4334 BLAKE2B f06f9cfe938f83702baaa8f8bee06937e8790e533e14ab419251934d0f4300ee75d5377a4f4e0e47a774bd3c25ef31236d7e451b929cfbfe8343d226a311ca2d SHA512 526149523b748b57095ecb3eb23f6808ab57ee1d8dc60e27067931d269ce3465ad8a0e54e8edaa3a1f74fd0a8dd135fe4a92779382ba6e367112016bc254fc98 +DIST pram-4.tar.gz 4406 BLAKE2B c01a8d322f7449398ed0264c9ed4108ac9fc697ef68e5dfc035fb20a53f5c5f9a42e9155937a4b6b6722816779c71dbe4558e7e60e8c19dcf961667996380802 SHA512 00a1f4e0cc07c5b61026e42350212cc55a66b6597082ee677bc905f9bfd0f5692a830c62f15a66a5ba42942449f40b92544f740344ad1d064bebc667c6f730e1 diff --git a/app-portage/pram/pram-4.ebuild b/app-portage/pram/pram-4.ebuild new file mode 100644 index 00000000000..d5151395d54 --- /dev/null +++ b/app-portage/pram/pram-4.ebuild @@ -0,0 +1,24 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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 ~x86" +IUSE="" + +RDEPEND="dev-vcs/git + net-misc/wget[ssl] + virtual/editor + !dev-perl/Gentoo-App-Pram" + +src_install() { + dobin pram + doman pram.1 + einstalldocs +}