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: Mon, 15 Apr 2019 14:54:21
Message-Id: 1555340051.5422df8102daaeb83b35dcca4792208d9c5b7a4a.polynomial-c@gentoo
1 commit: 5422df8102daaeb83b35dcca4792208d9c5b7a4a
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 15 14:53:30 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 15 14:54:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5422df81
7
8 app-editors/nano: Bump to version 4.1
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 app-editors/nano/Manifest | 1 +
14 app-editors/nano/nano-4.1.ebuild | 81 ++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 82 insertions(+)
16
17 diff --git a/app-editors/nano/Manifest b/app-editors/nano/Manifest
18 index a5fc11c57fc..dd31e249d93 100644
19 --- a/app-editors/nano/Manifest
20 +++ b/app-editors/nano/Manifest
21 @@ -1,3 +1,4 @@
22 DIST nano-2.9.8.tar.gz 2905951 BLAKE2B 95b78c43a052be68956f5b9493c418c23a9db40b56f709b17217bce257333b69e78e8f8bec191b21df8aa408ce2d3c7d68bc82cf2f785df9b31929f4f41b4325 SHA512 dcc7b074b585135e34339648fc725f54964488813d49fac50cf88c11d7cfcb8514907dbc2631ce7664ab0241717e8c42833e3c037070c80c8e7bee68fc280a2d
23 DIST nano-3.2.tar.gz 2944045 BLAKE2B 8d29d574ebf543f82608d4df26f551c0b3c77863b2ac8cfd0d3aea45340954abe6221069c9c72beab256c2c8cc4fcd3de27804404d97a98144c69ad26223de09 SHA512 33b3bbc5b5044b4003347e87926046fb5a0e83edfd6de858085526b7eaa9ea7ee26a598da00060a6b62edbd0366c7cb06b5a9878f6f0149a9501e4ada80b88f3
24 DIST nano-4.0.tar.gz 2997716 BLAKE2B b5b7c172119518dc25ad1b77fda4a011225292b36bfeb042ede3191f7b7d576273c9172c9ab32271b4a648d8720c3745496526f0feb871e02d88ae3865cfacd5 SHA512 7548a3cf37aaa5f7ed9e951c18b3d058e8f587bcfbae0e707668f51ab9932aa467b8191117a7d1a76f090124cfe3e0e93ce4e1cccd8aa0bf7fd0d282caede5c1
25 +DIST nano-4.1.tar.gz 2918354 BLAKE2B 6f5438b2e4bb9a6de405a7519d1767697df1504e67aae37a75743b658b82d9bf13e0b561177415445827f8a63456afd4f689b1d34b6a3eb53c940972fa01f93d SHA512 982b845197aa2942eb8a49b2ac1bfd8cc65ec9b6b7f60190059367b4f9156b4f0bb5e56a123f0659b23c6c9d1d85733123350a8f04c433ccb32d4c8ef1135d12
26
27 diff --git a/app-editors/nano/nano-4.1.ebuild b/app-editors/nano/nano-4.1.ebuild
28 new file mode 100644
29 index 00000000000..c4767d265bd
30 --- /dev/null
31 +++ b/app-editors/nano/nano-4.1.ebuild
32 @@ -0,0 +1,81 @@
33 +# Copyright 1999-2019 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 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~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 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 +
68 +src_prepare() {
69 + default
70 + if [[ ${PV} == "9999" ]] ; then
71 + eautoreconf
72 + fi
73 +}
74 +
75 +src_configure() {
76 + use static && append-ldflags -static
77 + local myconf=(
78 + --bindir="${EPREFIX}"/bin
79 + --htmldir=/trash
80 + $(use_enable !minimal color)
81 + $(use_enable !minimal multibuffer)
82 + $(use_enable !minimal nanorc)
83 + $(use_enable magic libmagic)
84 + $(use_enable spell speller)
85 + $(use_enable justify)
86 + $(use_enable debug)
87 + $(use_enable nls)
88 + $(use_enable unicode utf8)
89 + $(use_enable minimal tiny)
90 + $(usex ncurses --without-slang $(use_with slang))
91 + )
92 + econf "${myconf[@]}"
93 +}
94 +
95 +src_install() {
96 + default
97 + # don't use "${ED}" here or things break (#654534)
98 + rm -r "${D}"/trash || die
99 +
100 + dodoc doc/sample.nanorc
101 + docinto html
102 + dodoc doc/faq.html
103 + insinto /etc
104 + newins doc/sample.nanorc nanorc
105 + if ! use minimal ; then
106 + # Enable colorization by default.
107 + sed -i \
108 + -e '/^# include /s:# *::' \
109 + "${ED}"/etc/nanorc || die
110 + fi
111 +
112 + dosym ../../bin/nano /usr/bin/nano
113 +}