Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/neovim/
Date: Thu, 26 Sep 2019 17:34:39
Message-Id: 1569519258.6dd94f84c0fa2fe338bbeaf9d4ff20ba69a948b9.mgorny@gentoo
1 commit: 6dd94f84c0fa2fe338bbeaf9d4ff20ba69a948b9
2 Author: Bernardo Meurer <bernardo <AT> standard <DOT> ai>
3 AuthorDate: Fri Sep 20 19:45:46 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 26 17:34:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dd94f84
7
8 app-editors/neovim: bump 0.4.2
9
10 Closes: https://bugs.gentoo.org/694574
11 Closes: https://bugs.gentoo.org/691864
12 Package-Manager: Portage-2.3.76, Repoman-2.3.17
13 Signed-off-by: Bernardo Meurer <bernardo <AT> standard.ai>
14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
15
16 app-editors/neovim/Manifest | 1 +
17 .../{neovim-9999.ebuild => neovim-0.4.2.ebuild} | 42 +++++++++++-----------
18 app-editors/neovim/neovim-9999.ebuild | 42 +++++++++++-----------
19 3 files changed, 45 insertions(+), 40 deletions(-)
20
21 diff --git a/app-editors/neovim/Manifest b/app-editors/neovim/Manifest
22 index 075e54e5d8c..6f355fb6642 100644
23 --- a/app-editors/neovim/Manifest
24 +++ b/app-editors/neovim/Manifest
25 @@ -1 +1,2 @@
26 DIST neovim-0.3.8.tar.gz 9233661 BLAKE2B 252a64d2ac5ca1f8e1695d3f0f694ac333d9d9179dc4c428a279534e455de4b8d2c0dc6e638f775bb28a940fc1254bad426f7cee1bffaa2dbf84deefe49d41dc SHA512 431d3df859b430570e3f927328b862945a15b1ac041108599670d32af6cccac9361a143fc6af27847529629a43a5e0a0afd98b1c826d4ee1e7570de3cf14f9c7
27 +DIST neovim-0.4.2.tar.gz 9552134 BLAKE2B 4004a2e2788344ab96c97f145acc4f75680961ad004fcaa017731557899bbed24c6003b799c1496067a3ca75d8a4c2e63344b9646e8dab0ed00c9fa329d90ab2 SHA512 cc0de18ee7ca5105a0dd9f5f06b4d58335618b22c4dc3d584a024683785ff9d541c7f5131742b8a818ac9acb2218da92f9b8a881d56c4b963237918e589fac22
28
29 diff --git a/app-editors/neovim/neovim-9999.ebuild b/app-editors/neovim/neovim-0.4.2.ebuild
30 similarity index 79%
31 copy from app-editors/neovim/neovim-9999.ebuild
32 copy to app-editors/neovim/neovim-0.4.2.ebuild
33 index ca75f7a61c9..7726bfae3ed 100644
34 --- a/app-editors/neovim/neovim-9999.ebuild
35 +++ b/app-editors/neovim/neovim-0.4.2.ebuild
36 @@ -20,46 +20,48 @@ LICENSE="Apache-2.0 vim"
37 SLOT="0"
38 IUSE="+clipboard +luajit +nvimpager python remote ruby +tui"
39
40 -CDEPEND=">=dev-libs/libuv-1.2.0:0=
41 - >=dev-libs/msgpack-1.0.0:0=
42 +BDEPEND="
43 + dev-util/gperf
44 + virtual/libiconv
45 + virtual/libintl
46 + virtual/pkgconfig
47 +"
48 +
49 +DEPEND="
50 + dev-libs/libuv:0=
51 + >=dev-libs/libvterm-0.1
52 + dev-libs/msgpack:0=
53 + dev-lua/lpeg[luajit=]
54 + dev-lua/luv[luajit=]
55 + dev-lua/mpack[luajit=]
56 + net-libs/libnsl
57 luajit? ( dev-lang/luajit:2 )
58 !luajit? (
59 dev-lang/lua:=
60 dev-lua/LuaBitOp
61 )
62 tui? (
63 - >=dev-libs/libtermkey-0.21.1
64 + dev-libs/libtermkey
65 >=dev-libs/unibilium-2.0.0:0=
66 )
67 - dev-libs/libvterm
68 - dev-lua/lpeg[luajit=]
69 - dev-lua/mpack[luajit=]
70 - net-libs/libnsl"
71 -
72 -DEPEND="
73 - ${CDEPEND}
74 - dev-util/gperf
75 - virtual/libintl
76 - virtual/libiconv
77 - app-eselect/eselect-vi"
78 +"
79
80 RDEPEND="
81 - ${CDEPEND}
82 + ${DEPEND}
83 + app-eselect/eselect-vi
84 python? ( dev-python/neovim-python-client )
85 ruby? ( dev-ruby/neovim-ruby-client )
86 remote? ( dev-python/neovim-remote )
87 - clipboard? ( || ( x11-misc/xsel x11-misc/xclip ) )"
88 + clipboard? ( || ( x11-misc/xsel x11-misc/xclip ) )
89 +"
90
91 CMAKE_BUILD_TYPE=Release
92
93 src_prepare() {
94 # use our system vim dir
95 - sed -e '/^# define SYS_VIMRC_FILE/s|$VIM|'"${EPREFIX}"'/etc/vim|' \
96 + sed -e "/^# define SYS_VIMRC_FILE/s|\$VIM|${EPREFIX}/etc/vim|" \
97 -i src/nvim/globals.h || die
98
99 - # add eclass to bash filetypes
100 - sed -e 's|*.ebuild|*.ebuild,*.eclass|' -i runtime/filetype.vim || die
101 -
102 cmake-utils_src_prepare
103 }
104
105
106 diff --git a/app-editors/neovim/neovim-9999.ebuild b/app-editors/neovim/neovim-9999.ebuild
107 index ca75f7a61c9..7726bfae3ed 100644
108 --- a/app-editors/neovim/neovim-9999.ebuild
109 +++ b/app-editors/neovim/neovim-9999.ebuild
110 @@ -20,46 +20,48 @@ LICENSE="Apache-2.0 vim"
111 SLOT="0"
112 IUSE="+clipboard +luajit +nvimpager python remote ruby +tui"
113
114 -CDEPEND=">=dev-libs/libuv-1.2.0:0=
115 - >=dev-libs/msgpack-1.0.0:0=
116 +BDEPEND="
117 + dev-util/gperf
118 + virtual/libiconv
119 + virtual/libintl
120 + virtual/pkgconfig
121 +"
122 +
123 +DEPEND="
124 + dev-libs/libuv:0=
125 + >=dev-libs/libvterm-0.1
126 + dev-libs/msgpack:0=
127 + dev-lua/lpeg[luajit=]
128 + dev-lua/luv[luajit=]
129 + dev-lua/mpack[luajit=]
130 + net-libs/libnsl
131 luajit? ( dev-lang/luajit:2 )
132 !luajit? (
133 dev-lang/lua:=
134 dev-lua/LuaBitOp
135 )
136 tui? (
137 - >=dev-libs/libtermkey-0.21.1
138 + dev-libs/libtermkey
139 >=dev-libs/unibilium-2.0.0:0=
140 )
141 - dev-libs/libvterm
142 - dev-lua/lpeg[luajit=]
143 - dev-lua/mpack[luajit=]
144 - net-libs/libnsl"
145 -
146 -DEPEND="
147 - ${CDEPEND}
148 - dev-util/gperf
149 - virtual/libintl
150 - virtual/libiconv
151 - app-eselect/eselect-vi"
152 +"
153
154 RDEPEND="
155 - ${CDEPEND}
156 + ${DEPEND}
157 + app-eselect/eselect-vi
158 python? ( dev-python/neovim-python-client )
159 ruby? ( dev-ruby/neovim-ruby-client )
160 remote? ( dev-python/neovim-remote )
161 - clipboard? ( || ( x11-misc/xsel x11-misc/xclip ) )"
162 + clipboard? ( || ( x11-misc/xsel x11-misc/xclip ) )
163 +"
164
165 CMAKE_BUILD_TYPE=Release
166
167 src_prepare() {
168 # use our system vim dir
169 - sed -e '/^# define SYS_VIMRC_FILE/s|$VIM|'"${EPREFIX}"'/etc/vim|' \
170 + sed -e "/^# define SYS_VIMRC_FILE/s|\$VIM|${EPREFIX}/etc/vim|" \
171 -i src/nvim/globals.h || die
172
173 - # add eclass to bash filetypes
174 - sed -e 's|*.ebuild|*.ebuild,*.eclass|' -i runtime/filetype.vim || die
175 -
176 cmake-utils_src_prepare
177 }