Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ed/
Date: Tue, 24 Dec 2019 23:25:47
Message-Id: 1577229898.9716084b642fb4143145b7c1e80c85a94d136e04.polynomial-c@gentoo
1 commit: 9716084b642fb4143145b7c1e80c85a94d136e04
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 24 23:24:58 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 24 23:24:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9716084b
7
8 sys-apps/ed: Bump to version 1.16_rc1
9
10 Package-Manager: Portage-2.3.83, Repoman-2.3.20
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 sys-apps/ed/Manifest | 1 +
14 sys-apps/ed/ed-1.16_rc1.ebuild | 36 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/sys-apps/ed/Manifest b/sys-apps/ed/Manifest
18 index ebb92c309d5..de29d878488 100644
19 --- a/sys-apps/ed/Manifest
20 +++ b/sys-apps/ed/Manifest
21 @@ -1,2 +1,3 @@
22 DIST ed-1.14.2.tar.gz 91773 BLAKE2B c09ae263e08e07ff1b3411bfea2bf39d7c56364c2c66359ea1447176b42dd0df85464eae7326b983dd64f1d344e25214ef9427be52f5fcc9c57473ca1dd02a44 SHA512 e7638a07d6bdcedc2e00686a6677075fd7b8becebfd7650e60794bcb0d317a8611c7acd90420c952cc6c4beaede250eabff304d27585e190985b1f83e5930057
23 DIST ed-1.15.tar.xz 67924 BLAKE2B 89a5614e528f974853d8c23060b77a872ae34675f6898b713543109d3a21d0d42b4d07fea5e86e842a34619617d342058ebb82655088320764295422f700fdc4 SHA512 b723353d4f2a1e719b79cb210750596c723be87c282ab96285524eb707d5ae15c242b2d7b0a282ce2ebd0aaf221cd2be41897e79f8fc17f10e9e318a9be487a0
24 +DIST ed-1.16-rc1.tar.xz 68492 BLAKE2B 8a47c6147203b19954064b07e733719a534f4e5cb8cf5f6b361ca926cb6d55127d70cfa9c176f65eda2988c2b9f9ca2fcf5be27e109f83ccfd38d1927830c76c SHA512 17bc689c1aab357597715e0f2a0c222296e5cd999e04084953ff943e66fa3e7e37dbaffdb706c92daeae625967541cd41b390c4d883f54985ca924691ece78b0
25
26 diff --git a/sys-apps/ed/ed-1.16_rc1.ebuild b/sys-apps/ed/ed-1.16_rc1.ebuild
27 new file mode 100644
28 index 00000000000..a6f72b9487a
29 --- /dev/null
30 +++ b/sys-apps/ed/ed-1.16_rc1.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="7"
36 +
37 +inherit toolchain-funcs
38 +
39 +MY_P="${PN}-${PV/_/-}"
40 +
41 +DESCRIPTION="Your basic line editor"
42 +HOMEPAGE="https://www.gnu.org/software/ed/"
43 +#SRC_URI="mirror://gnu/ed/${P}.tar.lz"
44 +# Using gzip instead -- the filesize diff is small and lzip uncommon #545344
45 +SRC_URI="https://dev.gentoo.org/~polynomial-c/dist/${MY_P}.tar.xz"
46 +
47 +LICENSE="GPL-3"
48 +SLOT="0"
49 +[[ "${PV}" == *_rc* ]] || \
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 +IUSE=""
52 +
53 +DEPEND="sys-apps/texinfo"
54 +RDEPEND=""
55 +
56 +S="${WORKDIR}/${MY_P}"
57 +
58 +src_configure() {
59 + # Upstream configure script is moronic.
60 + ./configure \
61 + CC="$(tc-getCC)" \
62 + CFLAGS="${CFLAGS}" \
63 + LDFLAGS="${LDFLAGS}" \
64 + CPPFLAGS="${CPPFLAGS}" \
65 + --bindir="${EPREFIX}/bin" \
66 + --prefix="${EPREFIX}/usr"
67 +}