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: app-editors/nano/
Date: Fri, 07 Feb 2020 21:08:06
Message-Id: 1581109673.71205f39d882f1f1aefc29d2bcb4fe62341c4a81.polynomial-c@gentoo
1 commit: 71205f39d882f1f1aefc29d2bcb4fe62341c4a81
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 7 21:07:53 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 7 21:07:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71205f39
7
8 app-editors/nano: Bump to version 4.8
9
10 Package-Manager: Portage-2.3.87, Repoman-2.3.20
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 app-editors/nano/Manifest | 1 +
14 app-editors/nano/nano-4.8.ebuild | 80 ++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 81 insertions(+)
16
17 diff --git a/app-editors/nano/Manifest b/app-editors/nano/Manifest
18 index 84f410c627e..d5da21e6a0e 100644
19 --- a/app-editors/nano/Manifest
20 +++ b/app-editors/nano/Manifest
21 @@ -1,3 +1,4 @@
22 DIST nano-4.2.tar.gz 2928595 BLAKE2B 42bb0ccbf4961706c6c645eb2310a646a7decd3617117a079ffe9e3718c8054ab823a5aff3e543c06c4c398f83579a679267a9ad6f113ba451b76d67e14b07cc SHA512 a5dd9ce96cd09d12c65108ea6a18b2cf1c2b055929e58d3e84beb0725607b4b5a3f8ae3fda0ab658c853cc4cac70c089fee716e1bb5a700f2506a7a3e1bea1bd
23 DIST nano-4.6.tar.gz 2970798 BLAKE2B d6dfc702d374d1cbcd61080c8e0082b7931dc8c593c97eb705d878d25487a78dc1ebcb8004f742f5ecc3af1b5a31abcf6577e87aba96fb95d16029ff55e7af58 SHA512 76fb43495ca1f88ee8864eee5d023b6cd86bc35fba00151b4c6af53ae06e6b3828379e7d52a16c7df0956e9e04602a86ff8e8a7c1997320507ca041195bf004b
24 DIST nano-4.7.tar.gz 2977920 BLAKE2B 8373ebf3f4e98ba204ed00678ba1e8791c9ffc11226baa98b7dac9ff9389cc465dc6574833ce222570301232a97f87e1b8d505dcce617f6c8bd915f4a662df4d SHA512 2cbe2341bba46f57a692d6deb20003d992da0230fdec3a2dc485d3b03d2ec2a70e66d05299bbc719fca658c8a8060dd64d4b52e68aadfd73980b82445761615f
25 +DIST nano-4.8.tar.gz 2995765 BLAKE2B 80acb19758c4bedfa1fa52ef9ede7125bdd3844df6932912899ba2f5c4471859ac6d044b2c67d43afcfc416d0b6bf0b5d023e79645c5d6207c5ed4a0857305a4 SHA512 3e6f8f2a7ce55df0eb2d96459a22f0a40808b4ffc67eb5a35937437f5c1cb193046b02d123597981066b872ffacf345bf0f4c72f546323324ebb66aa751d11f9
26
27 diff --git a/app-editors/nano/nano-4.8.ebuild b/app-editors/nano/nano-4.8.ebuild
28 new file mode 100644
29 index 00000000000..399fdff323e
30 --- /dev/null
31 +++ b/app-editors/nano/nano-4.8.ebuild
32 @@ -0,0 +1,80 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit flag-o-matic
39 +if [[ ${PV} == "9999" ]] ; then
40 + EGIT_REPO_URI="git://git.sv.gnu.org/nano.git"
41 + inherit git-r3 autotools
42 +else
43 + MY_P="${PN}-${PV/_}"
44 + SRC_URI="https://www.nano-editor.org/dist/v${PV:0:1}/${MY_P}.tar.gz"
45 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
46 +fi
47 +
48 +DESCRIPTION="GNU GPL'd Pico clone with more functionality"
49 +HOMEPAGE="https://www.nano-editor.org/ https://wiki.gentoo.org/wiki/Nano/Basics_Guide"
50 +
51 +LICENSE="GPL-3"
52 +SLOT="0"
53 +IUSE="debug justify +magic minimal ncurses nls slang +spell +split-usr static unicode"
54 +
55 +LIB_DEPEND=">=sys-libs/ncurses-5.9-r1:0=[unicode?]
56 + sys-libs/ncurses:0=[static-libs(+)]
57 + magic? ( sys-apps/file[static-libs(+)] )
58 + nls? ( virtual/libintl )
59 + !ncurses? ( slang? ( sys-libs/slang[static-libs(+)] ) )"
60 +RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
61 +DEPEND="${RDEPEND}
62 + static? ( ${LIB_DEPEND} )"
63 +BDEPEND="
64 + nls? ( sys-devel/gettext )
65 + virtual/pkgconfig
66 +"
67 +src_prepare() {
68 + default
69 + if [[ ${PV} == "9999" ]] ; then
70 + eautoreconf
71 + fi
72 +}
73 +
74 +src_configure() {
75 + use static && append-ldflags -static
76 + local myconf=(
77 + --bindir="${EPREFIX}"/bin
78 + --htmldir=/trash
79 + $(use_enable !minimal color)
80 + $(use_enable !minimal multibuffer)
81 + $(use_enable !minimal nanorc)
82 + $(use_enable magic libmagic)
83 + $(use_enable spell speller)
84 + $(use_enable justify)
85 + $(use_enable debug)
86 + $(use_enable nls)
87 + $(use_enable unicode utf8)
88 + $(use_enable minimal tiny)
89 + $(usex ncurses --without-slang $(use_with slang))
90 + )
91 + econf "${myconf[@]}"
92 +}
93 +
94 +src_install() {
95 + default
96 + # don't use "${ED}" here or things break (#654534)
97 + rm -r "${D}"/trash || die
98 +
99 + dodoc doc/sample.nanorc
100 + docinto html
101 + dodoc doc/faq.html
102 + insinto /etc
103 + newins doc/sample.nanorc nanorc
104 + if ! use minimal ; then
105 + # Enable colorization by default.
106 + sed -i \
107 + -e '/^# include /s:# *::' \
108 + "${ED}"/etc/nanorc || die
109 + fi
110 +
111 + use split-usr && dosym ../../bin/nano /usr/bin/nano
112 +}