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 AEA60138350 for ; Mon, 27 Jan 2020 16:02:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD5D6E0946; Mon, 27 Jan 2020 16:02:22 +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 AF26EE0946 for ; Mon, 27 Jan 2020 16:02:22 +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 2CF6034E49B for ; Mon, 27 Jan 2020 16:02:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92ABF35 for ; Mon, 27 Jan 2020 16:02:17 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1580140936.7d38864a218e66935964fd217fc909b62793bbfc.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/jo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/jo/Manifest app-text/jo/jo-1.3.ebuild X-VCS-Directories: app-text/jo/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 7d38864a218e66935964fd217fc909b62793bbfc X-VCS-Branch: master Date: Mon, 27 Jan 2020 16:02: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: 655ae6f0-4398-4173-b072-c0536645729f X-Archives-Hash: 43128fa6cf226e99f028f11eab0c9d38 commit: 7d38864a218e66935964fd217fc909b62793bbfc Author: Jeroen Roovers gentoo org> AuthorDate: Mon Jan 27 16:01:01 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Jan 27 16:02:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d38864a app-text/jo: Version 1.3 Package-Manager: Portage-2.3.85, Repoman-2.3.20 Signed-off-by: Jeroen Roovers gentoo.org> app-text/jo/Manifest | 1 + app-text/jo/jo-1.3.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/app-text/jo/Manifest b/app-text/jo/Manifest index 62e75c2e6c8..d436b1cedea 100644 --- a/app-text/jo/Manifest +++ b/app-text/jo/Manifest @@ -1 +1,2 @@ DIST jo-1.1.tar.gz 50395 BLAKE2B 753e65e5b483cee357bcfc1fb95d93fae008acc8a1eeee75e6e68da6d0ed8c9636cd489278c466ffbd179ceaec7121b4fe3f64fe2e9bf70b81febbe15144c0f2 SHA512 fd220acf53d554cb9e9920510dba2f4a01337b126dca89882e02ba96cdd84bf7a5e935a4c06dddb5200cd808f0609fd697e51a56161dc99b1638e33181494242 +DIST jo-1.3.tar.gz 143425 BLAKE2B 32efaa84f64b0d3e82173a5121a30e13ce7fed991ec09f26400c90071e5e3cc5cc8af372550f4d9769cc338e852bf50497782c11ffd7d32a52d5769370742fbf SHA512 3c9480257d0ab9d9f19f1aaeb3a5b72e69caff6dcf87118bea8aca74a3b0864c0d17ed52bfc5550783c4636ee3a6acb8578f08316d976cea4f06af7096c12f02 diff --git a/app-text/jo/jo-1.3.ebuild b/app-text/jo/jo-1.3.ebuild new file mode 100644 index 00000000000..77afda2d795 --- /dev/null +++ b/app-text/jo/jo-1.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit bash-completion-r1 + +DESCRIPTION="JSON output from a shell" +HOMEPAGE="https://github.com/jpmens/jo" +SRC_URI="https://github.com/jpmens/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_install() { + default + mv "${ED}/$(get_bashcompdir)"/jo{.bash,} || die +}