Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/jo/, app-text/jo/files/
Date: Mon, 05 Jun 2017 10:11:00
Message-Id: 1496657454.65ebf49c93687f7752724a067aa0b4658ec1cf94.jer@gentoo
1 commit: 65ebf49c93687f7752724a067aa0b4658ec1cf94
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 5 10:10:35 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 5 10:10:54 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ebf49c
7
8 app-text/jo: Version bump.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 app-text/jo/Manifest | 1 +
13 app-text/jo/files/jo-1.1-version.patch | 9 +++++++++
14 app-text/jo/jo-1.1.ebuild | 22 ++++++++++++++++++++++
15 3 files changed, 32 insertions(+)
16
17 diff --git a/app-text/jo/Manifest b/app-text/jo/Manifest
18 index 419a3b05d56..991c61520ca 100644
19 --- a/app-text/jo/Manifest
20 +++ b/app-text/jo/Manifest
21 @@ -1 +1,2 @@
22 DIST jo-1.0.tar.gz 30165 SHA256 1aafebbff4b1eb81dd9fa6059449d4af5399a2195db1b26d84cca348cb153900 SHA512 129f890ffe8b7d7ddc7c6bc449145afa69c87a63b0c2f5edde01125fb1e038333016d89b7229246495062074327ce5b90ce9e9ddd14517414b30a86423be41a2 WHIRLPOOL 9bd0d3969d11ba5068cbb20e16c1f2af326ca7c9b3686a6f8c89c7878268e4420a7c1ead7b93e37f7f87a2451b688d0e3131b49fe996a65c57147d4f67121c3d
23 +DIST jo-1.1.tar.gz 50395 SHA256 1471e257517ff8123197aa022b2e76c914fbfdbecb5fbb7be9c55a231d8a9630 SHA512 fd220acf53d554cb9e9920510dba2f4a01337b126dca89882e02ba96cdd84bf7a5e935a4c06dddb5200cd808f0609fd697e51a56161dc99b1638e33181494242 WHIRLPOOL 50c87c5fb02337490970747fead3c1a4333b7a8de6ef98ac197bfa809599bde40c48e968d8621199f5aa3fde1977b5382ed40b54fd07b0a7b5df84ffc370d67a
24
25 diff --git a/app-text/jo/files/jo-1.1-version.patch b/app-text/jo/files/jo-1.1-version.patch
26 new file mode 100644
27 index 00000000000..446df4aa921
28 --- /dev/null
29 +++ b/app-text/jo/files/jo-1.1-version.patch
30 @@ -0,0 +1,9 @@
31 +--- a/configure.ac
32 ++++ b/configure.ac
33 +@@ -1,5 +1,5 @@
34 + AC_PREREQ([2.64])
35 +-AC_INIT([jo], [1.0], [jpmens@×××××.com])
36 ++AC_INIT([jo], [1.1], [jpmens@×××××.com])
37 + AC_CONFIG_AUX_DIR([build-aux])
38 + AC_CONFIG_SRCDIR([jo.c])
39 +
40
41 diff --git a/app-text/jo/jo-1.1.ebuild b/app-text/jo/jo-1.1.ebuild
42 new file mode 100644
43 index 00000000000..70476998814
44 --- /dev/null
45 +++ b/app-text/jo/jo-1.1.ebuild
46 @@ -0,0 +1,22 @@
47 +# Copyright 1999-2017 Gentoo Foundation
48 +# Distributed under the terms of the GNU General Public License v2
49 +
50 +EAPI=6
51 +inherit autotools
52 +
53 +DESCRIPTION="JSON output from a shell"
54 +HOMEPAGE="https://github.com/jpmens/jo"
55 +SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
56 +
57 +LICENSE="MIT"
58 +SLOT="0"
59 +KEYWORDS="~amd64 ~x86"
60 +PATCHES=(
61 + "${FILESDIR}"/${PN}-1.1-version.patch
62 +)
63 +
64 +src_prepare() {
65 + default
66 +
67 + eautoreconf
68 +}