[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-08-27 Thread Eli Schwartz
commit: 38a417073c2b8476baf5b139afc86f082e92547f
Author: Eli Schwartz  gentoo  org>
AuthorDate: Wed Aug 28 03:29:56 2024 +
Commit: Eli Schwartz  gentoo  org>
CommitDate: Wed Aug 28 04:33:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38a41707

app-editors/vim: sync more details with gvim ebuild

Mainly align the cscope handling, which doesn't appear to have any
reason to run in a conditional other than an aversion to doing it during
a USE=minimal build.

Also align the use of econf "${myconf[@]}" to avoid backslash escapes
and handle adding options via conditional logic away from the econf call
itself.

Signed-off-by: Eli Schwartz  gentoo.org>

 app-editors/vim/vim-.ebuild | 33 -
 1 file changed, 16 insertions(+), 17 deletions(-)

diff --git a/app-editors/vim/vim-.ebuild b/app-editors/vim/vim-.ebuild
index 32a908dc0b81..6c3b91054c81 100644
--- a/app-editors/vim/vim-.ebuild
+++ b/app-editors/vim/vim-.ebuild
@@ -158,6 +158,13 @@ src_prepare() {
's# auto/config\.mk:#:#' src/Makefile || die "Makefile sed 
failed"
rm src/auto/configure || die "rm failed"
 
+   # --with-features=huge forces on cscope even if we --disable it. We need
+   # to sed this out to avoid screwiness. (1 Sep 2004 ciaranm)
+   if ! use cscope; then
+   sed -i -e \
+   '/# define FEAT_CSCOPE/d' src/feature.h || die 
"couldn't disable cscope"
+   fi
+
# bug 908961
if use elibc_musl ; then
sed -i -e '/ja.sjis/d' src/po/Make_all.mak || die
@@ -186,16 +193,19 @@ src_configure() {
fi
done
 
-   local myconf=()
+   local myconf=(
+   --with-modified-by="Gentoo-${PVR} (RIP Bram)"
+   --enable-gui=no
+   --disable-darwin
+   )
+
if use minimal; then
-   myconf=(
+   myconf+=(
--with-features=tiny
--disable-nls
--disable-canberra
--disable-acl
-   --enable-gui=no
--without-x
-   --disable-darwin
--disable-luainterp
--disable-perlinterp
--disable-pythoninterp
@@ -208,7 +218,7 @@ src_configure() {
else
use debug && append-flags "-DDEBUG"
 
-   myconf=(
+   myconf+=(
--with-features=huge
$(use_enable sound canberra)
$(use_enable acl)
@@ -226,13 +236,6 @@ src_configure() {
$(use_enable terminal)
)
 
-   # --with-features=huge forces on cscope even if we --disable 
it. We need
-   # to sed this out to avoid screwiness. (1 Sep 2004 ciaranm)
-   if ! use cscope; then
-   sed -i -e \
-   '/# define FEAT_CSCOPE/d' src/feature.h || die 
"sed failed"
-   fi
-
if use lua; then
# -DLUA_COMPAT_OPENLIB=1 is required to enable the
# deprecated (in 5.1) luaL_openlib API (#874690)
@@ -248,8 +251,6 @@ src_configure() {
# don't test USE=X here ... see bug #19115
# but need to provide a way to link against X ... see bug #20093
myconf+=(
-   --enable-gui=no
-   --disable-darwin
$(use_with X x)
)
fi
@@ -268,9 +269,7 @@ src_configure() {
   vim_cv_toupper_broken=no
fi
 
-   econf \
-   --with-modified-by="Gentoo-${PVR} (RIP Bram)" \
-   "${myconf[@]}"
+   econf "${myconf[@]}"
 }
 
 src_compile() {



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-08-21 Thread Eli Schwartz
commit: 374c53ac8519cd064bbfb83d158b07ac2e238cbc
Author: Eli Schwartz  gmail  com>
AuthorDate: Sun Feb 11 19:38:24 2024 +
Commit: Eli Schwartz  gentoo  org>
CommitDate: Wed Aug 21 19:07:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=374c53ac

app-editors/vim: sync trivial details with gvim ebuild

A lot of the logic between these packages is identical. And some of it
should be -- but because of things like variance between order of
pkg_postinst, whether or not to include "#" before a bug reference, or
capitalization in comments, the diff is larger than it has to be.

Larger diffs == harder to compare which changes are relevant. Make these
differences disappear by using consistent style between both.

It fixes style warts such as unsorted dependencies or IUSE as a bonus.

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Eli Schwartz  gentoo.org>

 app-editors/vim/vim-.ebuild | 40 ++--
 1 file changed, 22 insertions(+), 18 deletions(-)

diff --git a/app-editors/vim/vim-.ebuild b/app-editors/vim/vim-.ebuild
index 91f87fbcb9a3..32a908dc0b81 100644
--- a/app-editors/vim/vim-.ebuild
+++ b/app-editors/vim/vim-.ebuild
@@ -13,9 +13,9 @@ PYTHON_COMPAT=( python3_{10..12} )
 PYTHON_REQ_USE="threads(+)"
 USE_RUBY="ruby31 ruby32"
 
-inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
+inherit bash-completion-r1 flag-o-matic lua-single desktop python-single-r1 
ruby-single toolchain-funcs vim-doc xdg-utils
 
-if [[ ${PV} == * ]] ; then
+if [[ ${PV} == * ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/vim/vim.git";
 else
@@ -29,7 +29,7 @@ HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
 
 LICENSE="vim"
 SLOT="0"
-IUSE="X acl crypt cscope debug gpm lua minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager"
+IUSE="acl crypt cscope debug gpm lua minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager X"
 REQUIRED_USE="
lua? ( ${LUA_REQUIRED_USE} )
python? ( ${PYTHON_REQUIRED_USE} )
@@ -37,18 +37,18 @@ REQUIRED_USE="
 "
 
 RDEPEND="
+   ~app-editors/vim-core-${PV}
>=app-eselect/eselect-vi-1.1
>=sys-libs/ncurses-5.2-r2:0=
-   nls? ( virtual/libintl )
acl? ( kernel_linux? ( sys-apps/acl ) )
crypt? ( dev-libs/libsodium:= )
cscope? ( dev-util/cscope )
gpm? ( >=sys-libs/gpm-1.19.3 )
-   lua? ( ${LUA_DEPS}
+   lua? (
+   ${LUA_DEPS}
$(lua_gen_impl_dep 'deprecated' lua5-1)
)
-   ~app-editors/vim-core-${PV}
-   vim-pager? ( app-editors/vim-core[-minimal] )
+   nls? ( virtual/libintl )
perl? ( dev-lang/perl:= )
python? ( ${PYTHON_DEPS} )
racket? ( dev-scheme/racket )
@@ -56,6 +56,7 @@ RDEPEND="
selinux? ( sys-libs/libselinux )
sound? ( media-libs/libcanberra )
tcl? ( dev-lang/tcl:0= )
+   vim-pager? ( app-editors/vim-core[-minimal] )
X? ( x11-libs/libXt )
 "
 DEPEND="${RDEPEND}
@@ -76,7 +77,7 @@ if [[ ${PV} != * ]]; then
)
 fi
 
-# platform-specific checks (bug #898452):
+# platform-specific checks (bug #898450 #898452):
 # - acl() -- Solaris
 # - statacl() -- AIX
 QA_CONFIG_IMPL_DECL_SKIP=(
@@ -153,7 +154,8 @@ src_prepare() {
# (2) Rebuild auto/configure
# (3) Notice auto/configure is newer than auto/config.mk
# (4) Run ./configure (with wrong args) to remake auto/config.mk
-   sed -i 's# auto/config\.mk:#:#' src/Makefile || die "Makefile sed 
failed"
+   sed -i -e \
+   's# auto/config\.mk:#:#' src/Makefile || die "Makefile sed 
failed"
rm src/auto/configure || die "rm failed"
 
# bug 908961
@@ -177,8 +179,9 @@ src_configure() {
 
# This should fix a sandbox violation (see bug #24447). The hvc
# things are for ppc64, see bug #86433.
+   local file
for file in /dev/pty/s* /dev/console /dev/hvc/* /dev/hvc*; do
-   if [[ -e "${file}" ]]; then
+   if [[ -e ${file} ]]; then
addwrite ${file}
fi
done
@@ -316,6 +319,7 @@ src_test() {
# Hangs.
export 
TEST_SKIP_PAT='\(Test_expand_star_star\|Test_exrc\|Test_job_tty_in_out\|Test_spelldump_bang\|Test_fuzzy_completion_env\|Test_term_mouse_multiple_clicks_to_select_mode\|Test_spelldump\)'
 
+   # Don't do additional GUI tests.
emake -j1 -C src/testdir nongui
 }
 
@@ -355,23 +359,23 @@ src_install() {
 }
 
 pkg_postinst() {
-   # Update documentation tags (from vim-doc.eclass)
+   # update documentation tags (from vim-doc.eclass)
update_vim_helptags
 
-   # Call eselect vi update
-   eselect_vi_update
-
# update desktop file mime cache
xdg_desktop_database_update
+
+   # call eselect vi update
+   eselect_v

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-06-25 Thread Joonas Niilola
commit: ad4a216ee1ead70472a7720057bafcd8d08f7d1a
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jun 26 05:45:05 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 26 05:45:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad4a216e

app-editors/vim-core: Stabilize 9.1.0366-r1 ppc64, #933697

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim-core/vim-core-9.1.0366-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild 
b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
index a8d4583566fa..29e3e794fbb1 100644
--- a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
+++ b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-06-25 Thread Joonas Niilola
commit: ebc281fb9997c5a6412838848761a0d7055560e2
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jun 26 05:44:39 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 26 05:45:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebc281fb

app-editors/vim-core: Stabilize 9.1.0366-r1 ppc, #933697

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim-core/vim-core-9.1.0366-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild 
b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
index 5e2838b7e83b..a8d4583566fa 100644
--- a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
+++ b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-06-25 Thread Joonas Niilola
commit: 43f0ca6f9d60e1c91aa2d3a71d3a9c0263ea4273
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jun 26 05:44:44 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 26 05:45:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43f0ca6f

app-editors/vim: Stabilize 9.1.0366 ppc, #933697

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim/vim-9.1.0366.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.1.0366.ebuild 
b/app-editors/vim/vim-9.1.0366.ebuild
index 0671b61266ac..895e2ff39970 100644
--- a/app-editors/vim/vim-9.1.0366.ebuild
+++ b/app-editors/vim/vim-9.1.0366.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-06-25 Thread Joonas Niilola
commit: da21fdae219a07d5683fbb83b01382db75284f4c
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jun 26 05:45:05 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 26 05:45:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da21fdae

app-editors/vim: Stabilize 9.1.0366 ppc64, #933697

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim/vim-9.1.0366.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.1.0366.ebuild 
b/app-editors/vim/vim-9.1.0366.ebuild
index 895e2ff39970..140639a5afe9 100644
--- a/app-editors/vim/vim-9.1.0366.ebuild
+++ b/app-editors/vim/vim-9.1.0366.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-06-07 Thread Arthur Zamarin
commit: ae586d2b4daefb9750eb5f1504df36d199e38657
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jun  7 08:42:58 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jun  7 08:42:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae586d2b

app-editors/vim-core: Stabilize 9.1.0366-r1 arm, #933697

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.1.0366-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild 
b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
index 9a2fdf3293aa..5e2838b7e83b 100644
--- a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
+++ b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-06-07 Thread Arthur Zamarin
commit: 839f3b1c09198dd7af744b725da95b7277b0060b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jun  7 08:42:58 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jun  7 08:42:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=839f3b1c

app-editors/vim: Stabilize 9.1.0366 arm, #933697

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.1.0366.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.1.0366.ebuild 
b/app-editors/vim/vim-9.1.0366.ebuild
index b17790997d55..0671b61266ac 100644
--- a/app-editors/vim/vim-9.1.0366.ebuild
+++ b/app-editors/vim/vim-9.1.0366.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-06-06 Thread Arthur Zamarin
commit: 13291fa247b22833c140a9785bf4a56fd9a0e793
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jun  7 06:55:29 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jun  7 06:55:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13291fa2

app-editors/vim-core: Stabilize 9.1.0366-r1 sparc, #933697

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.1.0366-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild 
b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
index f92d631c179a..9a2fdf3293aa 100644
--- a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
+++ b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-06-06 Thread Arthur Zamarin
commit: 049da02cc27b127ae4ba054d98f4f7b2a50c7a8b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jun  7 06:55:29 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jun  7 06:55:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=049da02c

app-editors/vim: Stabilize 9.1.0366 sparc, #933697

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.1.0366.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.1.0366.ebuild 
b/app-editors/vim/vim-9.1.0366.ebuild
index 044d4ff18a97..b17790997d55 100644
--- a/app-editors/vim/vim-9.1.0366.ebuild
+++ b/app-editors/vim/vim-9.1.0366.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-06-06 Thread Arthur Zamarin
commit: 9cb2402ff2b6ddf26d0b9a9315c7cf14e9254143
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jun  6 19:44:06 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jun  7 05:14:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cb2402f

app-editors/vim: add 9.1.0470

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/Manifest|   1 +
 app-editors/vim/vim-9.1.0470.ebuild | 377 
 2 files changed, 378 insertions(+)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index 403a34d860fa..67344428f5b6 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -1,3 +1,4 @@
 DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
 DIST vim-9.0.2167.tar.gz 17405049 BLAKE2B 
496c8f9672bc4ecce743a145bc2b671bf09034b2875e728406b318c8b12e2d8d4ee3423ce94f8749679f07d36f229954f7ef0b12ce7bc4d71ccf6637ce2d6029
 SHA512 
6a9a785b1915dc167210b0da4d5e4401c71ee49b3554c8a22566378658ddcc3493562897ea39035852399cc5ffb55a73355ab13390c27a4d00ffd76bcd10ddf0
 DIST vim-9.1.0366.tar.gz 17861209 BLAKE2B 
8771f5ef6a966c1b5992a437dd6cf1de9525458f61a4cd8fa53737a7bde29a4da101668639a301288a266ee8b3911857d1ba5b4e88870b60473eb1eaa608d7a5
 SHA512 
11be2a6e349c7b6d26fc1943c35ea18c662baa4f30ae76936eefb30e0b4d988bfcaedf7ecd2c3903f64e23c75957f55b9bb4073e0f38c7eb10ef0ee0dc652ddb
+DIST vim-9.1.0470.tar.gz 17919981 BLAKE2B 
90ebffc6e7b6162f8a047976659e044b75aaa946799b901e9f8c88f04a787543cde56545c8c6e5394fa2bc957d2e46810c5ca3f1315fc20a398a57bbdbc90f4c
 SHA512 
41b71e9e5385237b30aa256f064c9d5c914b29a97c0ec562f1995ac5d476fcf840c3f0e9a52e599f6084777db147e83fcbf0ec6b985bb94c126264d4cbafb964

diff --git a/app-editors/vim/vim-9.1.0470.ebuild 
b/app-editors/vim/vim-9.1.0470.ebuild
new file mode 100644
index ..91f87fbcb9a3
--- /dev/null
+++ b/app-editors/vim/vim-9.1.0470.ebuild
@@ -0,0 +1,377 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim-core and app-editors/gvim
+
+VIM_VERSION="9.1"
+VIM_PATCHES_VERSION="9.0.2092"
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_REQ_USE="threads(+)"
+USE_RUBY="ruby31 ruby32"
+
+inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   
https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+
+DESCRIPTION="Vim, an improved vi-style text editor"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="X acl crypt cscope debug gpm lua minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager"
+REQUIRED_USE="
+   lua? ( ${LUA_REQUIRED_USE} )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   vim-pager? ( !minimal )
+"
+
+RDEPEND="
+   >=app-eselect/eselect-vi-1.1
+   >=sys-libs/ncurses-5.2-r2:0=
+   nls? ( virtual/libintl )
+   acl? ( kernel_linux? ( sys-apps/acl ) )
+   crypt? ( dev-libs/libsodium:= )
+   cscope? ( dev-util/cscope )
+   gpm? ( >=sys-libs/gpm-1.19.3 )
+   lua? ( ${LUA_DEPS}
+   $(lua_gen_impl_dep 'deprecated' lua5-1)
+   )
+   ~app-editors/vim-core-${PV}
+   vim-pager? ( app-editors/vim-core[-minimal] )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS} )
+   racket? ( dev-scheme/racket )
+   ruby? ( ${RUBY_DEPS} )
+   selinux? ( sys-libs/libselinux )
+   sound? ( media-libs/libcanberra )
+   tcl? ( dev-lang/tcl:0= )
+   X? ( x11-libs/libXt )
+"
+DEPEND="${RDEPEND}
+   X? ( x11-base/xorg-proto )
+"
+# configure runs the Lua interpreter
+BDEPEND="
+   dev-build/autoconf
+   lua? ( ${LUA_DEPS} )
+   nls? ( sys-devel/gettext )
+"
+PDEPEND="!minimal? ( app-vim/gentoo-syntax )"
+
+if [[ ${PV} != * ]]; then
+   # Gentoo patches to fix runtime issues, cross-compile errors, etc
+   PATCHES=(
+   "${WORKDIR}/vim-${VIM_PATCHES_VERSION}-patches"
+   )
+fi
+
+# platform-specific checks (bug #898452):
+# - acl() -- Solaris
+# - statacl() -- AIX
+QA_CONFIG_IMPL_DECL_SKIP=(
+   'acl'
+   'statacl'
+)
+
+pkg_setup() {
+   # people with

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-06-06 Thread Arthur Zamarin
commit: 854766f62ff9e2413b2db2e4b5ab3258ca32e97e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jun  6 19:43:47 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jun  7 05:14:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=854766f6

app-editors/vim-core: add 9.1.0470

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/Manifest |   1 +
 app-editors/vim-core/vim-core-9.1.0470.ebuild | 236 ++
 2 files changed, 237 insertions(+)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index 403a34d860fa..67344428f5b6 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -1,3 +1,4 @@
 DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
 DIST vim-9.0.2167.tar.gz 17405049 BLAKE2B 
496c8f9672bc4ecce743a145bc2b671bf09034b2875e728406b318c8b12e2d8d4ee3423ce94f8749679f07d36f229954f7ef0b12ce7bc4d71ccf6637ce2d6029
 SHA512 
6a9a785b1915dc167210b0da4d5e4401c71ee49b3554c8a22566378658ddcc3493562897ea39035852399cc5ffb55a73355ab13390c27a4d00ffd76bcd10ddf0
 DIST vim-9.1.0366.tar.gz 17861209 BLAKE2B 
8771f5ef6a966c1b5992a437dd6cf1de9525458f61a4cd8fa53737a7bde29a4da101668639a301288a266ee8b3911857d1ba5b4e88870b60473eb1eaa608d7a5
 SHA512 
11be2a6e349c7b6d26fc1943c35ea18c662baa4f30ae76936eefb30e0b4d988bfcaedf7ecd2c3903f64e23c75957f55b9bb4073e0f38c7eb10ef0ee0dc652ddb
+DIST vim-9.1.0470.tar.gz 17919981 BLAKE2B 
90ebffc6e7b6162f8a047976659e044b75aaa946799b901e9f8c88f04a787543cde56545c8c6e5394fa2bc957d2e46810c5ca3f1315fc20a398a57bbdbc90f4c
 SHA512 
41b71e9e5385237b30aa256f064c9d5c914b29a97c0ec562f1995ac5d476fcf840c3f0e9a52e599f6084777db147e83fcbf0ec6b985bb94c126264d4cbafb964

diff --git a/app-editors/vim-core/vim-core-9.1.0470.ebuild 
b/app-editors/vim-core/vim-core-9.1.0470.ebuild
new file mode 100644
index ..759cb04d314d
--- /dev/null
+++ b/app-editors/vim-core/vim-core-9.1.0470.ebuild
@@ -0,0 +1,236 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim and app-editors/gvim
+
+VIM_VERSION="9.1"
+VIM_PATCHES_VERSION="9.0.2092"
+inherit bash-completion-r1 desktop flag-o-matic prefix toolchain-funcs vim-doc 
xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+   EGIT_CHECKOUT_DIR=${WORKDIR}/vim-${PV}
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz
+   
https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+S="${WORKDIR}/vim-${PV}"
+
+DESCRIPTION="vim and gvim shared files"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="nls acl minimal"
+
+# ncurses is only needed by ./configure, so no subslot operator required
+DEPEND=">=sys-libs/ncurses-5.2-r2:0"
+BDEPEND="dev-build/autoconf"
+
+if [[ ${PV} != * ]]; then
+   # Gentoo patches to fix runtime issues, cross-compile errors, etc
+   PATCHES=(
+   "${WORKDIR}/vim-${VIM_PATCHES_VERSION}-patches"
+   )
+fi
+
+# platform-specific checks (bug #898406):
+# - acl() -- Solaris
+# - statacl() -- AIX
+QA_CONFIG_IMPL_DECL_SKIP=(
+   'acl'
+   'statacl'
+)
+
+pkg_setup() {
+   # people with broken alphabets run into trouble. bug #82186.
+   unset LANG LC_ALL
+   export LC_COLLATE="C"
+}
+
+src_prepare() {
+   default
+
+   # Fixup a script to use awk instead of nawk
+   sed -i \
+   -e '1s|.*|#!'"${EPREFIX}"'/usr/bin/awk -f|' \
+   "${S}"/runtime/tools/mve.awk || die "sed failed"
+
+   # See bug #77841. We remove this file after the tarball extraction.
+   rm -v "${S}"/runtime/tools/vimspell.sh || die "rm failed"
+
+   # Read vimrc and gvimrc from /etc/vim
+   echo '#define SYS_VIMRC_FILE "'${EPREFIX}'/etc/vim/vimrc"' >> 
"${S}"/src/feature.h || die
+   echo '#define SYS_GVIMRC_FILE "'${EPREFIX}'/etc/vim/gvimrc"' >> 
"${S}"/src/feature.h || die
+
+   # Use exuberant ctags which installs as /usr/bin/exuberant-ctags.
+   # Hopefully this pattern won't break for a while at least.
+   # This fixes bug #29398 (27 Sep 2003 agriffis)
+   sed -i 's/\> "$c" || die "echo failed"
+   done
+
+   # Try to avoid sandbox problems. Bug #114475.
+   if [[ -d "${S}"/src/po ]]; then
+   sed -i -e \
+

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-06-06 Thread Arthur Zamarin
commit: 1e1ad95eb1b1bff5d9331cf1ab5def7b4f232e80
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jun  6 17:28:04 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jun  6 17:28:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e1ad95e

app-editors/vim-core: Stabilize 9.1.0366-r1 x86, #933697

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.1.0366-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild 
b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
index 51be25d8281b..f92d631c179a 100644
--- a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
+++ b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-06-06 Thread Arthur Zamarin
commit: 0a87067f4e64900ff8fc3a7fdbddbc5cc3bec86e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jun  6 17:28:03 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jun  6 17:28:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a87067f

app-editors/vim: Stabilize 9.1.0366 x86, #933697

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.1.0366.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.1.0366.ebuild 
b/app-editors/vim/vim-9.1.0366.ebuild
index f8062759ad79..044d4ff18a97 100644
--- a/app-editors/vim/vim-9.1.0366.ebuild
+++ b/app-editors/vim/vim-9.1.0366.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-06-06 Thread Arthur Zamarin
commit: 5da277a5607676193886555a0b3ef6c927e414a1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jun  6 17:09:31 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jun  6 17:09:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5da277a5

app-editors/vim-core: Stabilize 9.1.0366-r1 amd64, #933697

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.1.0366-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild 
b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
index 759cb04d314d..51be25d8281b 100644
--- a/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
+++ b/app-editors/vim-core/vim-core-9.1.0366-r1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-06-06 Thread Arthur Zamarin
commit: 6a7c1761dcd8d00fcf56ad6f712b7e01c9e72066
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jun  6 17:09:30 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jun  6 17:09:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a7c1761

app-editors/vim: Stabilize 9.1.0366 amd64, #933697

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.1.0366.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.1.0366.ebuild 
b/app-editors/vim/vim-9.1.0366.ebuild
index 91f87fbcb9a3..f8062759ad79 100644
--- a/app-editors/vim/vim-9.1.0366.ebuild
+++ b/app-editors/vim/vim-9.1.0366.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-06-05 Thread Sam James
commit: 1a5cbe58d410df23cddd79e45ab001f7f83a2b14
Author: Eli Schwartz  gmail  com>
AuthorDate: Tue Jun  4 22:08:44 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jun  6 00:44:39 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a5cbe58

app-editors/vim: sync live

Fixes false positive for PythonCompatUpdate.

Closes: https://bugs.gentoo.org/929302
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-editors/vim/vim-.ebuild | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/app-editors/vim/vim-.ebuild b/app-editors/vim/vim-.ebuild
index 850c5dab10c6..91f87fbcb9a3 100644
--- a/app-editors/vim/vim-.ebuild
+++ b/app-editors/vim/vim-.ebuild
@@ -5,13 +5,13 @@ EAPI=8
 
 # Please bump with app-editors/vim-core and app-editors/gvim
 
-VIM_VERSION="9.0"
-VIM_PATCHES_VERSION="9.0.1000"
+VIM_VERSION="9.1"
+VIM_PATCHES_VERSION="9.0.2092"
 
 LUA_COMPAT=( lua5-{1..4} luajit )
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 PYTHON_REQ_USE="threads(+)"
-USE_RUBY="ruby27 ruby30 ruby31"
+USE_RUBY="ruby31 ruby32"
 
 inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
 
@@ -20,8 +20,8 @@ if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/vim/vim.git";
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
-   
https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+   
https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"
@@ -72,7 +72,7 @@ PDEPEND="!minimal? ( app-vim/gentoo-syntax )"
 if [[ ${PV} != * ]]; then
# Gentoo patches to fix runtime issues, cross-compile errors, etc
PATCHES=(
-   "${WORKDIR}/vim-patches-vim-${VIM_PATCHES_VERSION}-patches"
+   "${WORKDIR}/vim-${VIM_PATCHES_VERSION}-patches"
)
 fi
 
@@ -266,7 +266,7 @@ src_configure() {
fi
 
econf \
-   --with-modified-by=Gentoo-${PVR} \
+   --with-modified-by="Gentoo-${PVR} (RIP Bram)" \
"${myconf[@]}"
 }
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-05-19 Thread Mike Gilbert
commit: 7d931595357d73f5b42bbe3be122b802dab9e2a6
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun May 19 15:34:02 2024 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun May 19 15:34:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d931595

app-editors/vim-core: drop versions

Signed-off-by: Mike Gilbert  gentoo.org>

 app-editors/vim-core/Manifest|   6 -
 app-editors/vim-core/vim-core-9.0.1503-r1.ebuild | 231 ---
 app-editors/vim-core/vim-core-9.0.1503.ebuild| 231 ---
 app-editors/vim-core/vim-core-9.0.1627-r1.ebuild | 231 ---
 app-editors/vim-core/vim-core-9.0.1627.ebuild| 231 ---
 app-editors/vim-core/vim-core-9.0.1678-r1.ebuild | 231 ---
 app-editors/vim-core/vim-core-9.0.1678.ebuild| 231 ---
 app-editors/vim-core/vim-core-9.0.1777-r1.ebuild | 231 ---
 app-editors/vim-core/vim-core-9.0.1777.ebuild| 231 ---
 app-editors/vim-core/vim-core-9.0.2092-r1.ebuild | 231 ---
 app-editors/vim-core/vim-core-9.0.2092.ebuild| 231 ---
 11 files changed, 2316 deletions(-)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index 71f002ea046c..403a34d860fa 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -1,9 +1,3 @@
-DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
-DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
-DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
-DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fba8dce25354a7ded40ff8536388e7b7120c1f2fad790c8dc7134d74649697b6e95777e79dcf1e208ead81b229d6
 SHA512 
702781b6a9cf540d22aa0bc1e25a4fb785ff2b22e9c6a59643e87fd6f7b3e5444adbee1816bfaa0b45b9655bb56dc2d13904230840a0ecea56f5453034d81a2e
 DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
-DIST vim-9.0.2092.tar.gz 17359377 BLAKE2B 
eeb50de7e4876ce0e2a1e8b241ea2c7c472898495ef5517fa115e01f29ef8922fb7ef970f2c1a3ffe65a8274e2c59bd5a939f397048c6b486683c29c01484d1e
 SHA512 
1c3e78ee1bb507858e0d30a8a1e646c16dd6d8d666ea587e91d1c90e490aef46387d6dfadc01e80f9aa807f7b109e4072efa8d8115fcd2a81dd62cabc30a8001
 DIST vim-9.0.2167.tar.gz 17405049 BLAKE2B 
496c8f9672bc4ecce743a145bc2b671bf09034b2875e728406b318c8b12e2d8d4ee3423ce94f8749679f07d36f229954f7ef0b12ce7bc4d71ccf6637ce2d6029
 SHA512 
6a9a785b1915dc167210b0da4d5e4401c71ee49b3554c8a22566378658ddcc3493562897ea39035852399cc5ffb55a73355ab13390c27a4d00ffd76bcd10ddf0
 DIST vim-9.1.0366.tar.gz 17861209 BLAKE2B 
8771f5ef6a966c1b5992a437dd6cf1de9525458f61a4cd8fa53737a7bde29a4da101668639a301288a266ee8b3911857d1ba5b4e88870b60473eb1eaa608d7a5
 SHA512 
11be2a6e349c7b6d26fc1943c35ea18c662baa4f30ae76936eefb30e0b4d988bfcaedf7ecd2c3903f64e23c75957f55b9bb4073e0f38c7eb10ef0ee0dc652ddb
-DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim-core/vim-core-9.0.1503-r1.ebuild 
b/app-editors/vim-core/vim-core-9.0.1503-r1.ebuild
deleted file mode 100644
index bd8cbec4adfb..
--- a/app-editors/vim-core/vim-core-9.0.1503-r1.ebuild
+++ /dev/null
@@ -1,231 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Please bump with app-editors/vim and app-editors/gvim
-
-VIM_VERSION="9.0"
-VIM_PATCHES_VERSION="9.0.1000"
-inherit bash-completion-r1 desktop flag-o-matic prefix toolchain-funcs vim-doc 
xdg-utils
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/vim/vim.git";
-   EGIT_CHEC

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-05-19 Thread Mike Gilbert
commit: cc39fa49f18050f37e4cc4b6c122c05e44bd135d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun May 19 15:32:10 2024 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun May 19 15:32:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc39fa49

app-editors/vim: drop versions

Signed-off-by: Mike Gilbert  gentoo.org>

 app-editors/vim/Manifest|   6 -
 app-editors/vim/vim-9.0.1503.ebuild | 371 
 app-editors/vim/vim-9.0.1627.ebuild | 370 ---
 app-editors/vim/vim-9.0.1678.ebuild | 370 ---
 app-editors/vim/vim-9.0.1777.ebuild | 370 ---
 app-editors/vim/vim-9.0.2092.ebuild | 370 ---
 6 files changed, 1857 deletions(-)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index 71f002ea046c..403a34d860fa 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -1,9 +1,3 @@
-DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
-DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
-DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
-DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fba8dce25354a7ded40ff8536388e7b7120c1f2fad790c8dc7134d74649697b6e95777e79dcf1e208ead81b229d6
 SHA512 
702781b6a9cf540d22aa0bc1e25a4fb785ff2b22e9c6a59643e87fd6f7b3e5444adbee1816bfaa0b45b9655bb56dc2d13904230840a0ecea56f5453034d81a2e
 DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
-DIST vim-9.0.2092.tar.gz 17359377 BLAKE2B 
eeb50de7e4876ce0e2a1e8b241ea2c7c472898495ef5517fa115e01f29ef8922fb7ef970f2c1a3ffe65a8274e2c59bd5a939f397048c6b486683c29c01484d1e
 SHA512 
1c3e78ee1bb507858e0d30a8a1e646c16dd6d8d666ea587e91d1c90e490aef46387d6dfadc01e80f9aa807f7b109e4072efa8d8115fcd2a81dd62cabc30a8001
 DIST vim-9.0.2167.tar.gz 17405049 BLAKE2B 
496c8f9672bc4ecce743a145bc2b671bf09034b2875e728406b318c8b12e2d8d4ee3423ce94f8749679f07d36f229954f7ef0b12ce7bc4d71ccf6637ce2d6029
 SHA512 
6a9a785b1915dc167210b0da4d5e4401c71ee49b3554c8a22566378658ddcc3493562897ea39035852399cc5ffb55a73355ab13390c27a4d00ffd76bcd10ddf0
 DIST vim-9.1.0366.tar.gz 17861209 BLAKE2B 
8771f5ef6a966c1b5992a437dd6cf1de9525458f61a4cd8fa53737a7bde29a4da101668639a301288a266ee8b3911857d1ba5b4e88870b60473eb1eaa608d7a5
 SHA512 
11be2a6e349c7b6d26fc1943c35ea18c662baa4f30ae76936eefb30e0b4d988bfcaedf7ecd2c3903f64e23c75957f55b9bb4073e0f38c7eb10ef0ee0dc652ddb
-DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim/vim-9.0.1503.ebuild 
b/app-editors/vim/vim-9.0.1503.ebuild
deleted file mode 100644
index b589d64dbde0..
--- a/app-editors/vim/vim-9.0.1503.ebuild
+++ /dev/null
@@ -1,371 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Please bump with app-editors/vim-core and app-editors/gvim
-
-VIM_VERSION="9.0"
-VIM_PATCHES_VERSION="9.0.1000"
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-PYTHON_COMPAT=( python3_{10..11} )
-PYTHON_REQ_USE="threads(+)"
-USE_RUBY="ruby27 ruby30 ruby31"
-
-inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/vim/vim.git";
-else
-   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
-   
https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc x86

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/, app-editors/vim-core/files/

2024-05-19 Thread Mike Gilbert
commit: 6fe17e177a8b6146cb6307dd1325b6a474e7991b
Author: Waldo Lemmer  gmail  com>
AuthorDate: Wed May  8 19:21:22 2024 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun May 19 15:28:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe17e17

app-editors/vim-core: remove textwidth autocommands

vimrc registered an autocommand that set textwidth=78 for all *.txt
buffers. This has sparked a few discussions, including this [1] forum
post and bug 559800.

Overriding the upstream default of textwidth=0 is not a good idea. This
commit removes the relevant autocommand and revbumps all versions of the
package.

[1]: https://forums.gentoo.org/viewtopic-p-8450986.html

Closes: https://bugs.gentoo.org/559800
Signed-off-by: Waldo Lemmer  gmail.com>
Signed-off-by: Mike Gilbert  gentoo.org>

 app-editors/vim-core/files/vimrc-r7| 210 +
 ...ore-.ebuild => vim-core-9.0.1503-r1.ebuild} |   9 +-
 ...ore-.ebuild => vim-core-9.0.1627-r1.ebuild} |   9 +-
 ...ore-.ebuild => vim-core-9.0.1678-r1.ebuild} |  11 +-
 ...ore-.ebuild => vim-core-9.0.1777-r1.ebuild} |  11 +-
 ...ore-.ebuild => vim-core-9.0.2092-r1.ebuild} |  17 +-
 ...ore-.ebuild => vim-core-9.0.2167-r1.ebuild} |  12 +-
 ...ore-.ebuild => vim-core-9.1.0366-r1.ebuild} |  14 +-
 app-editors/vim-core/vim-core-.ebuild  |   2 +-
 9 files changed, 240 insertions(+), 55 deletions(-)

diff --git a/app-editors/vim-core/files/vimrc-r7 
b/app-editors/vim-core/files/vimrc-r7
new file mode 100644
index ..39a30d6f2955
--- /dev/null
+++ b/app-editors/vim-core/files/vimrc-r7
@@ -0,0 +1,210 @@
+scriptencoding utf-8
+" ^^ Please leave the above line at the start of the file.
+
+" Default configuration file for Vim
+
+" Written by Aron Griffis 
+" Modified by Ryan Phillips 
+" Modified some more by Ciaran McCreesh 
+" Added Redhat's vimrc info by Seemant Kulleen 
+
+" You can override any of these settings on a global basis via the
+" "/etc/vim/vimrc.local" file, and on a per-user basis via "~/.vimrc". You may
+" need to create these.
+
+" {{{ General settings
+" The following are some sensible defaults for Vim for most users.
+" We attempt to change as little as possible from Vim's defaults,
+" deviating only where it makes sense
+set nocompatible" Use Vim defaults (much better!)
+set bs=2" Allow backspacing over everything in insert mode
+set ai  " Always set auto-indenting on
+set history=50  " keep 50 lines of command history
+set ruler   " Show the cursor position all the time
+
+set viminfo='20,\"500   " Keep a .viminfo file.
+
+" Don't use Ex mode, use Q for formatting
+map Q gq
+
+" When doing tab completion, give the following files lower priority. You may
+" wish to set 'wildignore' to completely ignore files, and 'wildmenu' to enable
+" enhanced tab completion. These can be done in the user vimrc file.
+set suffixes+=.info,.aux,.log,.dvi,.bbl,.out,.o,.lo
+
+" When displaying line numbers, don't use an annoyingly wide number column. 
This
+" doesn't enable line numbers -- :set number will do that. The value given is a
+" minimum width to use for the number column, not a fixed size.
+if v:version >= 700
+  set numberwidth=3
+endif
+" }}}
+
+" {{{ Modeline settings
+" We don't allow modelines by default. See bug #14088 and bug #73715.
+" If you're not concerned about these, you can enable them on a per-user
+" basis by adding "set modeline" to your ~/.vimrc file.
+set nomodeline
+" }}}
+
+" {{{ Locale settings
+" Try to come up with some nice sane GUI fonts. Also try to set a sensible
+" value for fileencodings based upon locale. These can all be overridden in
+" the user vimrc file.
+if v:lang =~? "^ko"
+  set fileencodings=euc-kr
+  set guifontset=-*-*-medium-r-normal--16-*-*-*-*-*-*-*
+elseif v:lang =~? "^ja_JP"
+  set fileencodings=euc-jp
+  set guifontset=-misc-fixed-medium-r-normal--14-*-*-*-*-*-*-*
+elseif v:lang =~? "^zh_TW"
+  set fileencodings=big5
+  set 
guifontset=-sony-fixed-medium-r-normal--16-150-75-75-c-80-iso8859-1,-taipei-fixed-medium-r-normal--16-150-75-75-c-160-big5-0
+elseif v:lang =~? "^zh_CN"
+  set fileencodings=gb2312
+  set guifontset=*-r-*
+endif
+
+" If we have a BOM, always honour that rather than trying to guess.
+if &fileencodings !~? "ucs-bom"
+  set fileencodings^=ucs-bom
+endif
+
+" Always check for UTF-8 when trying to determine encodings.
+if &fileencodings !~? "utf-8"
+  " If we have to add this, the default encoding is not Unicode.
+  " We use this fact later to revert to the default encoding in plaintext/empty
+  " files.
+  let g:added_fenc_utf8 = 1
+  set fileencodings+=utf-8
+endif
+
+" Make sure we have a sane fallback for encoding detection
+if &fileencodings !~? "default"
+  set fileencodings+=default
+endif
+" }}}
+
+" {{{ Syntax highlighting settings
+" Switch syntax highlighting on, when the terminal has colors
+" Also switch on highlightin

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-04-26 Thread Sam James
commit: 2f383270799969dc7221d91595589a421ef3490e
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Tue Apr 16 02:41:00 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr 26 21:00:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f383270

app-editors/vim: add 9.1.0366

Now with XDG dir support!

Signed-off-by: Oskari Pirhonen  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-editors/vim/Manifest|   1 +
 app-editors/vim/vim-9.1.0366.ebuild | 377 
 2 files changed, 378 insertions(+)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index c7237f377374..71f002ea046c 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -5,4 +5,5 @@ DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fb
 DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
 DIST vim-9.0.2092.tar.gz 17359377 BLAKE2B 
eeb50de7e4876ce0e2a1e8b241ea2c7c472898495ef5517fa115e01f29ef8922fb7ef970f2c1a3ffe65a8274e2c59bd5a939f397048c6b486683c29c01484d1e
 SHA512 
1c3e78ee1bb507858e0d30a8a1e646c16dd6d8d666ea587e91d1c90e490aef46387d6dfadc01e80f9aa807f7b109e4072efa8d8115fcd2a81dd62cabc30a8001
 DIST vim-9.0.2167.tar.gz 17405049 BLAKE2B 
496c8f9672bc4ecce743a145bc2b671bf09034b2875e728406b318c8b12e2d8d4ee3423ce94f8749679f07d36f229954f7ef0b12ce7bc4d71ccf6637ce2d6029
 SHA512 
6a9a785b1915dc167210b0da4d5e4401c71ee49b3554c8a22566378658ddcc3493562897ea39035852399cc5ffb55a73355ab13390c27a4d00ffd76bcd10ddf0
+DIST vim-9.1.0366.tar.gz 17861209 BLAKE2B 
8771f5ef6a966c1b5992a437dd6cf1de9525458f61a4cd8fa53737a7bde29a4da101668639a301288a266ee8b3911857d1ba5b4e88870b60473eb1eaa608d7a5
 SHA512 
11be2a6e349c7b6d26fc1943c35ea18c662baa4f30ae76936eefb30e0b4d988bfcaedf7ecd2c3903f64e23c75957f55b9bb4073e0f38c7eb10ef0ee0dc652ddb
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim/vim-9.1.0366.ebuild 
b/app-editors/vim/vim-9.1.0366.ebuild
new file mode 100644
index ..91f87fbcb9a3
--- /dev/null
+++ b/app-editors/vim/vim-9.1.0366.ebuild
@@ -0,0 +1,377 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim-core and app-editors/gvim
+
+VIM_VERSION="9.1"
+VIM_PATCHES_VERSION="9.0.2092"
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_REQ_USE="threads(+)"
+USE_RUBY="ruby31 ruby32"
+
+inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   
https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+
+DESCRIPTION="Vim, an improved vi-style text editor"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="X acl crypt cscope debug gpm lua minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager"
+REQUIRED_USE="
+   lua? ( ${LUA_REQUIRED_USE} )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   vim-pager? ( !minimal )
+"
+
+RDEPEND="
+   >=app-eselect/eselect-vi-1.1
+   >=sys-libs/ncurses-5.2-r2:0=
+   nls? ( virtual/libintl )
+   acl? ( kernel_linux? ( sys-apps/acl ) )
+   crypt? ( dev-libs/libsodium:= )
+   cscope? ( dev-util/cscope )
+   gpm? ( >=sys-libs/gpm-1.19.3 )
+   lua? ( ${LUA_DEPS}
+   $(lua_gen_impl_dep 'deprecated' lua5-1)
+   )
+   ~app-editors/vim-core-${PV}
+   vim-pager? ( app-editors/vim-core[-minimal] )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS} )
+   racket? ( dev-scheme/racket )
+   ruby? ( ${RUBY_DEPS} )
+   selinux? ( sys-libs/libselinux )
+   sound? ( media-libs/libcanberra )
+   tcl? ( dev-lang/tcl:0= )
+   X? ( x11-libs/libXt )
+"
+DEPEND="${RDEPEND}
+   X? ( x11-base/xorg-proto )
+"
+# configure runs the Lua interpreter
+BDEPEND="
+   dev-build/autoconf
+   lua? ( ${LUA_DEPS} )
+   nls?

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-04-26 Thread Sam James
commit: 1991ca00b7c10895fb0ec2d38c039f49922430c1
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Tue Apr 16 02:39:07 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr 26 21:00:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1991ca00

app-editors/vim-core: add 9.1.0366

Now with XDG dir support!

Signed-off-by: Oskari Pirhonen  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-editors/vim-core/Manifest |   1 +
 app-editors/vim-core/vim-core-9.1.0366.ebuild | 236 ++
 2 files changed, 237 insertions(+)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index c7237f377374..71f002ea046c 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -5,4 +5,5 @@ DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fb
 DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
 DIST vim-9.0.2092.tar.gz 17359377 BLAKE2B 
eeb50de7e4876ce0e2a1e8b241ea2c7c472898495ef5517fa115e01f29ef8922fb7ef970f2c1a3ffe65a8274e2c59bd5a939f397048c6b486683c29c01484d1e
 SHA512 
1c3e78ee1bb507858e0d30a8a1e646c16dd6d8d666ea587e91d1c90e490aef46387d6dfadc01e80f9aa807f7b109e4072efa8d8115fcd2a81dd62cabc30a8001
 DIST vim-9.0.2167.tar.gz 17405049 BLAKE2B 
496c8f9672bc4ecce743a145bc2b671bf09034b2875e728406b318c8b12e2d8d4ee3423ce94f8749679f07d36f229954f7ef0b12ce7bc4d71ccf6637ce2d6029
 SHA512 
6a9a785b1915dc167210b0da4d5e4401c71ee49b3554c8a22566378658ddcc3493562897ea39035852399cc5ffb55a73355ab13390c27a4d00ffd76bcd10ddf0
+DIST vim-9.1.0366.tar.gz 17861209 BLAKE2B 
8771f5ef6a966c1b5992a437dd6cf1de9525458f61a4cd8fa53737a7bde29a4da101668639a301288a266ee8b3911857d1ba5b4e88870b60473eb1eaa608d7a5
 SHA512 
11be2a6e349c7b6d26fc1943c35ea18c662baa4f30ae76936eefb30e0b4d988bfcaedf7ecd2c3903f64e23c75957f55b9bb4073e0f38c7eb10ef0ee0dc652ddb
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim-core/vim-core-9.1.0366.ebuild 
b/app-editors/vim-core/vim-core-9.1.0366.ebuild
new file mode 100644
index ..8df57d51b46b
--- /dev/null
+++ b/app-editors/vim-core/vim-core-9.1.0366.ebuild
@@ -0,0 +1,236 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim and app-editors/gvim
+
+VIM_VERSION="9.1"
+VIM_PATCHES_VERSION="9.0.2092"
+inherit bash-completion-r1 desktop flag-o-matic prefix toolchain-funcs vim-doc 
xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+   EGIT_CHECKOUT_DIR=${WORKDIR}/vim-${PV}
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz
+   
https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+S="${WORKDIR}/vim-${PV}"
+
+DESCRIPTION="vim and gvim shared files"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="nls acl minimal"
+
+# ncurses is only needed by ./configure, so no subslot operator required
+DEPEND=">=sys-libs/ncurses-5.2-r2:0"
+BDEPEND="dev-build/autoconf"
+
+if [[ ${PV} != * ]]; then
+   # Gentoo patches to fix runtime issues, cross-compile errors, etc
+   PATCHES=(
+   "${WORKDIR}/vim-${VIM_PATCHES_VERSION}-patches"
+   )
+fi
+
+# platform-specific checks (bug #898406):
+# - acl() -- Solaris
+# - statacl() -- AIX
+QA_CONFIG_IMPL_DECL_SKIP=(
+   'acl'
+   'statacl'
+)
+
+pkg_setup() {
+   # people with broken alphabets run into trouble. bug #82186.
+   unset LANG LC_ALL
+   export LC_COLLATE="C"
+}
+
+src_prepare() {
+   default
+
+   # Fixup a script to use awk instead of nawk
+   sed -i \
+   -e '1s|.*|#!'"${EPREFIX}"'/usr/bin/awk -f|' \
+   "${S}"/runtime/tools/mve.awk || die "sed failed"
+
+   # See bug #77841. We remove this file after the tarball extraction.
+   rm -v "${S}"/runtime/tools/vimspell.sh || die "rm failed"
+
+   # Read vimrc and gvimrc from /etc/vim
+   echo '#define SYS_VIMRC_FILE "'${EPREFIX}'/etc/vim/vimrc"' >> 
"${S}"/src/feature.h || die
+   echo '

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-02-17 Thread John Helmert III
commit: bb0d016870e14d92e7e2bc5dbeda9c8f98660a28
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Sat Feb 17 01:41:27 2024 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sat Feb 17 21:43:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb0d0168

app-editors/vim-core: drop 9.0.1403

Was waiting on resolution for bug 908961.

Bug: https://bugs.gentoo.org/905373
Signed-off-by: Oskari Pirhonen  gmail.com>
Signed-off-by: John Helmert III  gentoo.org>

 app-editors/vim-core/Manifest |   1 -
 app-editors/vim-core/vim-core-9.0.1403.ebuild | 231 --
 2 files changed, 232 deletions(-)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index 889eacfa1aed..c7237f377374 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -1,4 +1,3 @@
-DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afbf0efbb40dd9ce9e2393f0ada35e0a44d7f0c3f789d26ae1427604a281f689e87885fbb1557dce12a69898ec46d
 SHA512 
bd83feba38a4aa9b3cf910a0b5a2c153abc4c6eaf9abf0ebee389879ff9ddee51c6f9dba5151aab5df3f73594cf8921d0a0e34121c50e65366cdcdd6482fd00f
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
 DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8

diff --git a/app-editors/vim-core/vim-core-9.0.1403.ebuild 
b/app-editors/vim-core/vim-core-9.0.1403.ebuild
deleted file mode 100644
index 346c974e588c..
--- a/app-editors/vim-core/vim-core-9.0.1403.ebuild
+++ /dev/null
@@ -1,231 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Please bump with app-editors/vim and app-editors/gvim
-
-VIM_VERSION="9.0"
-VIM_PATCHES_VERSION="9.0.1000"
-inherit bash-completion-r1 desktop flag-o-matic prefix toolchain-funcs vim-doc 
xdg-utils
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/vim/vim.git";
-   EGIT_CHECKOUT_DIR=${WORKDIR}/vim-${PV}
-else
-   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz
-   
https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
-fi
-S="${WORKDIR}/vim-${PV}"
-
-DESCRIPTION="vim and gvim shared files"
-HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
-
-LICENSE="vim"
-SLOT="0"
-IUSE="nls acl minimal"
-
-# ncurses is only needed by ./configure, so no subslot operator required
-DEPEND=">=sys-libs/ncurses-5.2-r2:0"
-BDEPEND="dev-build/autoconf"
-
-if [[ ${PV} != * ]]; then
-   # Gentoo patches to fix runtime issues, cross-compile errors, etc
-   PATCHES=(
-   "${WORKDIR}/vim-patches-vim-${VIM_PATCHES_VERSION}-patches"
-   )
-fi
-
-# platform-specific checks (bug #898406):
-# - acl() -- Solaris
-# - statacl() -- AIX
-QA_CONFIG_IMPL_DECL_SKIP=(
-   'acl'
-   'statacl'
-)
-
-pkg_setup() {
-   # people with broken alphabets run into trouble. bug #82186.
-   unset LANG LC_ALL
-   export LC_COLLATE="C"
-}
-
-src_prepare() {
-   default
-
-   # Fixup a script to use awk instead of nawk
-   sed -i \
-   -e '1s|.*|#!'"${EPREFIX}"'/usr/bin/awk -f|' \
-   "${S}"/runtime/tools/mve.awk || die "sed failed"
-
-   # See bug #77841. We remove this file after the tarball extraction.
-   rm -v "${S}"/runtime/tools/vimspell.sh || die "rm failed"
-
-   # Read vimrc and gvimrc from /etc/vim
-   echo '#define SYS_VIMRC_FILE "'${EPREFIX}'/etc/vim/vimrc"' >> 
"${S}"/src/feature.h || die
-   echo '#define SYS_GVIMRC_FILE "'${EPREFIX}'/etc/vim/gvimrc"' >> 
"${S}"/src/feature.h || die
-
-   # Use exuberant ctags which installs as /usr/bin/exuberant-ctags.
-   # Hopefully this pattern won't break for a while at least.
-   # This fixes bug #29398 (27 Sep 2003 agriffis)
-   sed -i 's/\> "$c" || die "echo failed"
-   done
-
-   # Try to avoid sandbox

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-02-17 Thread John Helmert III
commit: 937427296cfdeecd2c3cbaa569050be01987301c
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Sat Feb 17 01:42:32 2024 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sat Feb 17 21:43:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93742729

app-editors/vim: drop 9.0.1403

Was waiting on resolution for bug 908961.

Bug: https://bugs.gentoo.org/905373
Signed-off-by: Oskari Pirhonen  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35381
Signed-off-by: John Helmert III  gentoo.org>

 app-editors/vim/Manifest|   1 -
 app-editors/vim/vim-9.0.1403.ebuild | 371 
 2 files changed, 372 deletions(-)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index 889eacfa1aed..c7237f377374 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -1,4 +1,3 @@
-DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afbf0efbb40dd9ce9e2393f0ada35e0a44d7f0c3f789d26ae1427604a281f689e87885fbb1557dce12a69898ec46d
 SHA512 
bd83feba38a4aa9b3cf910a0b5a2c153abc4c6eaf9abf0ebee389879ff9ddee51c6f9dba5151aab5df3f73594cf8921d0a0e34121c50e65366cdcdd6482fd00f
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
 DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8

diff --git a/app-editors/vim/vim-9.0.1403.ebuild 
b/app-editors/vim/vim-9.0.1403.ebuild
deleted file mode 100644
index b742f953fcfa..
--- a/app-editors/vim/vim-9.0.1403.ebuild
+++ /dev/null
@@ -1,371 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Please bump with app-editors/vim-core and app-editors/gvim
-
-VIM_VERSION="9.0"
-VIM_PATCHES_VERSION="9.0.1000"
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-PYTHON_COMPAT=( python3_{10..11} )
-PYTHON_REQ_USE="threads(+)"
-USE_RUBY="ruby27 ruby30 ruby31"
-
-inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
-
-if [[ ${PV} == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/vim/vim.git";
-else
-   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
-   
https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
-fi
-
-DESCRIPTION="Vim, an improved vi-style text editor"
-HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
-
-LICENSE="vim"
-SLOT="0"
-IUSE="X acl crypt cscope debug gpm lua minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager"
-REQUIRED_USE="
-   lua? ( ${LUA_REQUIRED_USE} )
-   python? ( ${PYTHON_REQUIRED_USE} )
-   vim-pager? ( !minimal )
-"
-
-RDEPEND="
-   >=app-eselect/eselect-vi-1.1
-   >=sys-libs/ncurses-5.2-r2:0=
-   nls? ( virtual/libintl )
-   acl? ( kernel_linux? ( sys-apps/acl ) )
-   crypt? ( dev-libs/libsodium:= )
-   cscope? ( dev-util/cscope )
-   gpm? ( >=sys-libs/gpm-1.19.3 )
-   lua? ( ${LUA_DEPS}
-   $(lua_gen_impl_dep 'deprecated' lua5-1)
-   )
-   ~app-editors/vim-core-${PV}
-   !> "${S}"/src/feature.h || die "echo failed"
-   echo '#define SYS_GVIMRC_FILE "'${EPREFIX}'/etc/vim/gvimrc"' \
-   >> "${S}"/src/feature.h || die "echo failed"
-
-   # Use exuberant ctags which installs as /usr/bin/exuberant-ctags.
-   # Hopefully this pattern won't break for a while at least.
-   # This fixes bug #29398 (27 Sep 2003 agriffis)
-   sed -i -e \
-   's/\> "$c" || die "echo failed"
-   done
-
-   # conditionally make the manpager.sh script
-   if use vim-pager; then
-   cat > "${S}"/runtime/macros/manpager.sh <<-_EOF_ || die "cat 
EOF failed"
-   #!/bin/sh
-   sed -e 's/\x1B\[[[:digit:]]\+m//g' | col -b | \\
-   vim \\
-   -c 'l

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-02-15 Thread Joonas Niilola
commit: 365140942b1444ec22f4d324404c47b05af6
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Fri Feb 16 05:11:50 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Feb 16 07:51:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36514094

app-editors/vim: add missing xorg-proto dep

Add a dependency on x11-base/xorg-proto when building with USE=X.

Closes: https://bugs.gentoo.org/924670
Signed-off-by: Oskari Pirhonen  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35369
Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim/vim-9.0.2167.ebuild | 4 +++-
 app-editors/vim/vim-.ebuild | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
index ffcb28dbec32..d55e2ca5e177 100644
--- a/app-editors/vim/vim-9.0.2167.ebuild
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -58,7 +58,9 @@ RDEPEND="
tcl? ( dev-lang/tcl:0= )
X? ( x11-libs/libXt )
 "
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   X? ( x11-base/xorg-proto )
+"
 # configure runs the Lua interpreter
 BDEPEND="
dev-build/autoconf

diff --git a/app-editors/vim/vim-.ebuild b/app-editors/vim/vim-.ebuild
index d3ce80bac470..850c5dab10c6 100644
--- a/app-editors/vim/vim-.ebuild
+++ b/app-editors/vim/vim-.ebuild
@@ -58,7 +58,9 @@ RDEPEND="
tcl? ( dev-lang/tcl:0= )
X? ( x11-libs/libXt )
 "
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+   X? ( x11-base/xorg-proto )
+"
 # configure runs the Lua interpreter
 BDEPEND="
dev-build/autoconf



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-01-29 Thread Ionen Wolkens
commit: 6d98c6514b9e43f5e30396c6ab56403b3789b798
Author: Matoro Mahri  matoro  tk>
AuthorDate: Mon Jan 29 17:56:04 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jan 30 03:53:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d98c651

app-editors/vim-core: Stabilize 9.0.2167 sparc, #922132

Signed-off-by: Matoro Mahri  matoro.tk>
Signed-off-by: Ionen Wolkens  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2167.ebuild 
b/app-editors/vim-core/vim-core-9.0.2167.ebuild
index 0dbfc1ee5e2c..1b744c39e4b9 100644
--- a/app-editors/vim-core/vim-core-9.0.2167.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2167.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-01-29 Thread Ionen Wolkens
commit: 6db8739e680266db53f1dde8c5b202ceec19cd3e
Author: Matoro Mahri  matoro  tk>
AuthorDate: Mon Jan 29 17:56:05 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Jan 30 03:53:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6db8739e

app-editors/vim: Stabilize 9.0.2167 sparc, #922132

Signed-off-by: Matoro Mahri  matoro.tk>
Signed-off-by: Ionen Wolkens  gentoo.org>

 app-editors/vim/vim-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
index 5200a25c4ded..5f0605118a68 100644
--- a/app-editors/vim/vim-9.0.2167.ebuild
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/, app-editors/vim/, app-editors/gvim/

2024-01-18 Thread Fabian Groffen
commit: 83d72770bcd85405144b4a6ad2b427abc11fe62c
Author: Fabian Groffen  gentoo  org>
AuthorDate: Fri Jan 19 07:33:03 2024 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Fri Jan 19 07:34:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83d72770

app-editors/{vim-core,vim,gvim}: disable CP932 for musl builds

Closes: https://bugs.gentoo.org/908961
Signed-off-by: Fabian Groffen  gentoo.org>

 app-editors/gvim/gvim-9.0.2167.ebuild | 5 +
 app-editors/gvim/gvim-.ebuild | 5 +
 app-editors/vim-core/vim-core-9.0.2167.ebuild | 5 +
 app-editors/vim-core/vim-core-.ebuild | 5 +
 app-editors/vim/vim-9.0.2167.ebuild   | 5 +
 app-editors/vim/vim-.ebuild   | 5 +
 6 files changed, 30 insertions(+)

diff --git a/app-editors/gvim/gvim-9.0.2167.ebuild 
b/app-editors/gvim/gvim-9.0.2167.ebuild
index f347bfc28ae4..547c5a78bdce 100644
--- a/app-editors/gvim/gvim-9.0.2167.ebuild
+++ b/app-editors/gvim/gvim-9.0.2167.ebuild
@@ -165,6 +165,11 @@ src_prepare() {
sed -i -e \
'/# define FEAT_CSCOPE/d' src/feature.h || die 
"couldn't disable cscope"
fi
+
+   # bug 908961
+   if use elibc_musl ; then
+   sed -i -e '/ja.sjis/d' src/po/Make_all.mak || die
+   fi
 }
 
 src_configure() {

diff --git a/app-editors/gvim/gvim-.ebuild 
b/app-editors/gvim/gvim-.ebuild
index 575b259aa039..9f2b67d6fdc0 100644
--- a/app-editors/gvim/gvim-.ebuild
+++ b/app-editors/gvim/gvim-.ebuild
@@ -164,6 +164,11 @@ src_prepare() {
sed -i -e \
'/# define FEAT_CSCOPE/d' src/feature.h || die 
"couldn't disable cscope"
fi
+
+   # bug 908961
+   if use elibc_musl ; then
+   sed -i -e '/ja.sjis/d' src/po/Make_all.mak || die
+   fi
 }
 
 src_configure() {

diff --git a/app-editors/vim-core/vim-core-9.0.2167.ebuild 
b/app-editors/vim-core/vim-core-9.0.2167.ebuild
index edd3e7679185..cca287f37b6e 100644
--- a/app-editors/vim-core/vim-core-9.0.2167.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2167.ebuild
@@ -108,6 +108,11 @@ src_prepare() {
 
# Remove src/auto/configure file.
rm -v src/auto/configure || die "rm configure failed"
+
+   # bug 908961
+   if use elibc_musl ; then
+   sed -i -e '/ja.sjis/d' src/po/Make_all.mak || die
+   fi
 }
 
 src_configure() {

diff --git a/app-editors/vim-core/vim-core-.ebuild 
b/app-editors/vim-core/vim-core-.ebuild
index 90c03717c01c..acfd3ab4aab3 100644
--- a/app-editors/vim-core/vim-core-.ebuild
+++ b/app-editors/vim-core/vim-core-.ebuild
@@ -108,6 +108,11 @@ src_prepare() {
 
# Remove src/auto/configure file.
rm -v src/auto/configure || die "rm configure failed"
+
+   # bug 908961
+   if use elibc_musl ; then
+   sed -i -e '/ja.sjis/d' src/po/Make_all.mak || die
+   fi
 }
 
 src_configure() {

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
index 2b51783e44cb..89f0524b4be8 100644
--- a/app-editors/vim/vim-9.0.2167.ebuild
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -153,6 +153,11 @@ src_prepare() {
# (4) Run ./configure (with wrong args) to remake auto/config.mk
sed -i 's# auto/config\.mk:#:#' src/Makefile || die "Makefile sed 
failed"
rm src/auto/configure || die "rm failed"
+
+   # bug 908961
+   if use elibc_musl ; then
+   sed -i -e '/ja.sjis/d' src/po/Make_all.mak || die
+   fi
 }
 
 src_configure() {

diff --git a/app-editors/vim/vim-.ebuild b/app-editors/vim/vim-.ebuild
index 0a89c95fd2c9..d3ce80bac470 100644
--- a/app-editors/vim/vim-.ebuild
+++ b/app-editors/vim/vim-.ebuild
@@ -153,6 +153,11 @@ src_prepare() {
# (4) Run ./configure (with wrong args) to remake auto/config.mk
sed -i 's# auto/config\.mk:#:#' src/Makefile || die "Makefile sed 
failed"
rm src/auto/configure || die "rm failed"
+
+   # bug 908961
+   if use elibc_musl ; then
+   sed -i -e '/ja.sjis/d' src/po/Make_all.mak || die
+   fi
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-01-15 Thread Arthur Zamarin
commit: d31d66cd644659057befc682f665002fc6e8c2d4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 15 08:33:16 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 15 08:33:16 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d31d66cd

app-editors/vim-core: Stabilize 9.0.2167 x86, #922132

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2167.ebuild 
b/app-editors/vim-core/vim-core-9.0.2167.ebuild
index 614b4a41c976..a6b478757f1f 100644
--- a/app-editors/vim-core/vim-core-9.0.2167.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2167.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-01-15 Thread Arthur Zamarin
commit: 109ef576a4c8e277bd22718f60e7a1246a23e4b9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 15 08:33:20 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 15 08:33:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109ef576

app-editors/vim-core: Stabilize 9.0.2167 arm, #922132

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2167.ebuild 
b/app-editors/vim-core/vim-core-9.0.2167.ebuild
index a6b478757f1f..5469667950b2 100644
--- a/app-editors/vim-core/vim-core-9.0.2167.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2167.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-01-15 Thread Arthur Zamarin
commit: 73e4a815004962e1695ffca0287b1e66720de00f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 15 08:33:24 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 15 08:33:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73e4a815

app-editors/vim-core: Stabilize 9.0.2167 arm64, #922132

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2167.ebuild 
b/app-editors/vim-core/vim-core-9.0.2167.ebuild
index 5469667950b2..e07e3993b0b2 100644
--- a/app-editors/vim-core/vim-core-9.0.2167.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2167.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-01-15 Thread Arthur Zamarin
commit: 18ed5f146e20fbfc3fc5a0364536dee8bdb3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 15 08:33:25 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 15 08:33:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18ed5f14

app-editors/vim: Stabilize 9.0.2167 arm64, #922132

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
index 8243482ef8dd..1f26d77f238c 100644
--- a/app-editors/vim/vim-9.0.2167.ebuild
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-01-15 Thread Arthur Zamarin
commit: 74c58691713a46d26638b866304e062e8066ff52
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 15 08:33:21 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 15 08:33:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74c58691

app-editors/vim: Stabilize 9.0.2167 arm, #922132

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
index 89286118a583..8243482ef8dd 100644
--- a/app-editors/vim/vim-9.0.2167.ebuild
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-01-15 Thread Arthur Zamarin
commit: 57ed0c26e3a5256923e1b37c67a3cfcd86eaa65e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 15 08:33:13 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 15 08:33:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57ed0c26

app-editors/vim: Stabilize 9.0.2167 amd64, #922132

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2167.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
index 854c1a5ce766..78a8f0cbd9bd 100644
--- a/app-editors/vim/vim-9.0.2167.ebuild
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2024-01-15 Thread Arthur Zamarin
commit: 66792b1b5492e839463d5284b35eea38b030fb2d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 15 08:33:12 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 15 08:33:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66792b1b

app-editors/vim-core: Stabilize 9.0.2167 amd64, #922132

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2167.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2167.ebuild 
b/app-editors/vim-core/vim-core-9.0.2167.ebuild
index 7650dbd89186..614b4a41c976 100644
--- a/app-editors/vim-core/vim-core-9.0.2167.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2167.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2024-01-15 Thread Arthur Zamarin
commit: 7ba77b960f6513d6bea3d0b01c5883cf9785c9d2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Jan 15 08:33:16 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Jan 15 08:33:16 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ba77b96

app-editors/vim: Stabilize 9.0.2167 x86, #922132

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
index 78a8f0cbd9bd..89286118a583 100644
--- a/app-editors/vim/vim-9.0.2167.ebuild
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-29 Thread Arthur Zamarin
commit: 0342be16191520e5a6fb1b2f5049ad037a363f61
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:25:09 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:25:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0342be16

app-editors/vim-core: Stabilize 9.0.2092 ppc64, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2092.ebuild 
b/app-editors/vim-core/vim-core-9.0.2092.ebuild
index 96a37c2d2d62..8bd8c930b094 100644
--- a/app-editors/vim-core/vim-core-9.0.2092.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2092.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-29 Thread Arthur Zamarin
commit: 7342a56cc60a99cd2b09f5d65deb633a1d2a4626
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:25:13 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:25:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7342a56c

app-editors/vim: Stabilize 9.0.2092 sparc, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2092.ebuild 
b/app-editors/vim/vim-9.0.2092.ebuild
index 9473eaaa8ea9..0cffc596a894 100644
--- a/app-editors/vim/vim-9.0.2092.ebuild
+++ b/app-editors/vim/vim-9.0.2092.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-29 Thread Arthur Zamarin
commit: b85eb55820c55056b7bda31963a73833417a779c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:25:09 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:25:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b85eb558

app-editors/vim: Stabilize 9.0.2092 ppc64, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2092.ebuild 
b/app-editors/vim/vim-9.0.2092.ebuild
index 3ee6e2d2c293..9473eaaa8ea9 100644
--- a/app-editors/vim/vim-9.0.2092.ebuild
+++ b/app-editors/vim/vim-9.0.2092.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-29 Thread Arthur Zamarin
commit: 53d09cbf01518dc97781c94c8cd8181e4b184071
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:25:13 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:25:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d09cbf

app-editors/vim-core: Stabilize 9.0.2092 sparc, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2092.ebuild 
b/app-editors/vim-core/vim-core-9.0.2092.ebuild
index 8bd8c930b094..58f3ce350b71 100644
--- a/app-editors/vim-core/vim-core-9.0.2092.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2092.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-29 Thread Arthur Zamarin
commit: 7f227d63f0e8182abde494797b41f84a84bb9599
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:25:05 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:25:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f227d63

app-editors/vim-core: Stabilize 9.0.2092 ppc, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2092.ebuild 
b/app-editors/vim-core/vim-core-9.0.2092.ebuild
index 18bc05325d98..96a37c2d2d62 100644
--- a/app-editors/vim-core/vim-core-9.0.2092.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2092.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-29 Thread Arthur Zamarin
commit: 0ec2159afcd6d48badb074a1490507b94420075d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:25:05 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:25:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ec2159a

app-editors/vim: Stabilize 9.0.2092 ppc, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2092.ebuild 
b/app-editors/vim/vim-9.0.2092.ebuild
index d09b8c5a8d83..3ee6e2d2c293 100644
--- a/app-editors/vim/vim-9.0.2092.ebuild
+++ b/app-editors/vim/vim-9.0.2092.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-29 Thread Arthur Zamarin
commit: 94b1758f22ef569727da54ae6414541f6c3c78d9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:25:01 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:25:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b1758f

app-editors/vim-core: Stabilize 9.0.2092 arm64, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2092.ebuild 
b/app-editors/vim-core/vim-core-9.0.2092.ebuild
index cd56413bac92..18bc05325d98 100644
--- a/app-editors/vim-core/vim-core-9.0.2092.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2092.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-29 Thread Arthur Zamarin
commit: c6dfdc000cf5f91d10894978405bb0b82ebce4b9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:25:01 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:25:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6dfdc00

app-editors/vim: Stabilize 9.0.2092 arm64, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2092.ebuild 
b/app-editors/vim/vim-9.0.2092.ebuild
index d4be2b9845a8..d09b8c5a8d83 100644
--- a/app-editors/vim/vim-9.0.2092.ebuild
+++ b/app-editors/vim/vim-9.0.2092.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-29 Thread Arthur Zamarin
commit: d85133af88a53ecd4673a25f0ad79f73a1e398e7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:24:57 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:24:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d85133af

app-editors/vim: Stabilize 9.0.2092 arm, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2092.ebuild 
b/app-editors/vim/vim-9.0.2092.ebuild
index dbcc0f1e2cb9..d4be2b9845a8 100644
--- a/app-editors/vim/vim-9.0.2092.ebuild
+++ b/app-editors/vim/vim-9.0.2092.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-29 Thread Arthur Zamarin
commit: 3e4dce22a53df354314592c81938b4d3a4f0181a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:24:57 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:24:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e4dce22

app-editors/vim-core: Stabilize 9.0.2092 arm, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2092.ebuild 
b/app-editors/vim-core/vim-core-9.0.2092.ebuild
index 51a8dbfa541d..cd56413bac92 100644
--- a/app-editors/vim-core/vim-core-9.0.2092.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2092.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-29 Thread Arthur Zamarin
commit: 98f0d70904dd47d9f44b6630a13e7884a84ab2ee
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:24:25 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:24:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f0d709

app-editors/vim: Stabilize 9.0.2092 hppa, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2092.ebuild 
b/app-editors/vim/vim-9.0.2092.ebuild
index 052e8217fe22..dbcc0f1e2cb9 100644
--- a/app-editors/vim/vim-9.0.2092.ebuild
+++ b/app-editors/vim/vim-9.0.2092.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-29 Thread Arthur Zamarin
commit: 1fb962cbc908fc051da383c06e2eea61e090953d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:24:18 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:24:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fb962cb

app-editors/vim-core: Stabilize 9.0.2092 x86, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2092.ebuild 
b/app-editors/vim-core/vim-core-9.0.2092.ebuild
index f698cdccf062..359563a479bf 100644
--- a/app-editors/vim-core/vim-core-9.0.2092.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2092.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-29 Thread Arthur Zamarin
commit: fa98ac34ad942f262cf00b12fc536c59b0991064
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:24:24 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:24:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa98ac34

app-editors/vim-core: Stabilize 9.0.2092 hppa, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2092.ebuild 
b/app-editors/vim-core/vim-core-9.0.2092.ebuild
index 359563a479bf..51a8dbfa541d 100644
--- a/app-editors/vim-core/vim-core-9.0.2092.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2092.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-29 Thread Arthur Zamarin
commit: 325062f21d266db1bc5be4bb4a04ea1d76eec7f1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:24:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:24:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=325062f2

app-editors/vim: Stabilize 9.0.2092 amd64, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2092.ebuild 
b/app-editors/vim/vim-9.0.2092.ebuild
index 9a75568cdf87..38db8e487cc0 100644
--- a/app-editors/vim/vim-9.0.2092.ebuild
+++ b/app-editors/vim/vim-9.0.2092.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-29 Thread Arthur Zamarin
commit: 68f808701b8f89d304000751a0586531be75c305
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:24:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:24:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68f80870

app-editors/vim-core: Stabilize 9.0.2092 amd64, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.2092.ebuild 
b/app-editors/vim-core/vim-core-9.0.2092.ebuild
index 7650dbd89186..f698cdccf062 100644
--- a/app-editors/vim-core/vim-core-9.0.2092.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.2092.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-29 Thread Arthur Zamarin
commit: de36ebc104a3ffc746802c72fc9e0eda35ee371e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 29 09:24:18 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 29 09:24:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de36ebc1

app-editors/vim: Stabilize 9.0.2092 x86, #920588

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2092.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2092.ebuild 
b/app-editors/vim/vim-9.0.2092.ebuild
index 38db8e487cc0..052e8217fe22 100644
--- a/app-editors/vim/vim-9.0.2092.ebuild
+++ b/app-editors/vim/vim-9.0.2092.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-17 Thread Hans de Graaff
commit: f8f3a37f7302d062bc60f0121234d87e03c5af8b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Dec 17 10:39:12 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Dec 17 10:48:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8f3a37f

app-editors/vim: enable ruby32

Signed-off-by: Hans de Graaff  gentoo.org>

 app-editors/vim/vim-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
index fa9f884f8193..854c1a5ce766 100644
--- a/app-editors/vim/vim-9.0.2167.ebuild
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -11,7 +11,7 @@ VIM_PATCHES_VERSION="9.0.2092"
 LUA_COMPAT=( lua5-{1..4} luajit )
 PYTHON_COMPAT=( python3_{10..12} )
 PYTHON_REQ_USE="threads(+)"
-USE_RUBY="ruby27 ruby30 ruby31"
+USE_RUBY="ruby31 ruby32"
 
 inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-15 Thread Arthur Zamarin
commit: 64dbd0433bbbf1a5cd2b83a0e33c637de1882383
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 15 16:49:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 15 16:49:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64dbd043

app-editors/vim: add 9.0.2167

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/Manifest|   1 +
 app-editors/vim/vim-9.0.2167.ebuild | 370 
 2 files changed, 371 insertions(+)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index dee7d76f9aa2..889eacfa1aed 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -5,4 +5,5 @@ DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d
 DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fba8dce25354a7ded40ff8536388e7b7120c1f2fad790c8dc7134d74649697b6e95777e79dcf1e208ead81b229d6
 SHA512 
702781b6a9cf540d22aa0bc1e25a4fb785ff2b22e9c6a59643e87fd6f7b3e5444adbee1816bfaa0b45b9655bb56dc2d13904230840a0ecea56f5453034d81a2e
 DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
 DIST vim-9.0.2092.tar.gz 17359377 BLAKE2B 
eeb50de7e4876ce0e2a1e8b241ea2c7c472898495ef5517fa115e01f29ef8922fb7ef970f2c1a3ffe65a8274e2c59bd5a939f397048c6b486683c29c01484d1e
 SHA512 
1c3e78ee1bb507858e0d30a8a1e646c16dd6d8d666ea587e91d1c90e490aef46387d6dfadc01e80f9aa807f7b109e4072efa8d8115fcd2a81dd62cabc30a8001
+DIST vim-9.0.2167.tar.gz 17405049 BLAKE2B 
496c8f9672bc4ecce743a145bc2b671bf09034b2875e728406b318c8b12e2d8d4ee3423ce94f8749679f07d36f229954f7ef0b12ce7bc4d71ccf6637ce2d6029
 SHA512 
6a9a785b1915dc167210b0da4d5e4401c71ee49b3554c8a22566378658ddcc3493562897ea39035852399cc5ffb55a73355ab13390c27a4d00ffd76bcd10ddf0
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
new file mode 100644
index ..4cccea4c396a
--- /dev/null
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -0,0 +1,370 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim-core and app-editors/gvim
+
+VIM_VERSION="9.0"
+VIM_PATCHES_VERSION="9.0.2092"
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_REQ_USE="threads(+)"
+USE_RUBY="ruby27 ruby30 ruby31"
+
+inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   
https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+
+DESCRIPTION="Vim, an improved vi-style text editor"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="X acl crypt cscope debug gpm lua minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager"
+REQUIRED_USE="
+   lua? ( ${LUA_REQUIRED_USE} )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   vim-pager? ( !minimal )
+"
+
+RDEPEND="
+   >=app-eselect/eselect-vi-1.1
+   >=sys-libs/ncurses-5.2-r2:0=
+   nls? ( virtual/libintl )
+   acl? ( kernel_linux? ( sys-apps/acl ) )
+   crypt? ( dev-libs/libsodium:= )
+   cscope? ( dev-util/cscope )
+   gpm? ( >=sys-libs/gpm-1.19.3 )
+   lua? ( ${LUA_DEPS}
+   $(lua_gen_impl_dep 'deprecated' lua5-1)
+   )
+   ~app-editors/vim-core-${PV}
+   vim-pager? ( app-editors/vim-core[-minimal] )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS} )
+   racket? ( dev-scheme/racket )
+   ruby? ( ${RUBY_DEPS} )
+   selinux? ( sys-libs/libselinux )
+   sound? ( media-libs/libcanberra )
+   tcl? ( dev-lang/tcl:0= )
+   X? ( x11-libs/libXt )
+"
+DEPEND="${RDEPEND}"
+# configure runs the Lua interpreter
+BDEPEND="
+   sys-devel/autoconf
+   lua? ( ${LUA_DEPS} )
+   nls? ( sys-devel/gettext )
+"
+PDEPEND="!minimal? ( app-vim/gentoo-syntax )"
+
+if [[ ${PV} !=

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-15 Thread Arthur Zamarin
commit: ba398c70854ed38202342c1061a7d5a6f772f645
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 15 16:50:17 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 15 16:50:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba398c70

app-editors/vim: enable py3.12

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.2167.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.2167.ebuild 
b/app-editors/vim/vim-9.0.2167.ebuild
index 4cccea4c396a..fa9f884f8193 100644
--- a/app-editors/vim/vim-9.0.2167.ebuild
+++ b/app-editors/vim/vim-9.0.2167.ebuild
@@ -9,7 +9,7 @@ VIM_VERSION="9.0"
 VIM_PATCHES_VERSION="9.0.2092"
 
 LUA_COMPAT=( lua5-{1..4} luajit )
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 PYTHON_REQ_USE="threads(+)"
 USE_RUBY="ruby27 ruby30 ruby31"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-15 Thread Arthur Zamarin
commit: 341d3522bd6fc7fe43ae2fbee0534ae8e4f85f2f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec 15 16:49:01 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec 15 16:49:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=341d3522

app-editors/vim-core: add 9.0.2167

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/Manifest |   1 +
 app-editors/vim-core/vim-core-9.0.2167.ebuild | 231 ++
 2 files changed, 232 insertions(+)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index dee7d76f9aa2..889eacfa1aed 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -5,4 +5,5 @@ DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d
 DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fba8dce25354a7ded40ff8536388e7b7120c1f2fad790c8dc7134d74649697b6e95777e79dcf1e208ead81b229d6
 SHA512 
702781b6a9cf540d22aa0bc1e25a4fb785ff2b22e9c6a59643e87fd6f7b3e5444adbee1816bfaa0b45b9655bb56dc2d13904230840a0ecea56f5453034d81a2e
 DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
 DIST vim-9.0.2092.tar.gz 17359377 BLAKE2B 
eeb50de7e4876ce0e2a1e8b241ea2c7c472898495ef5517fa115e01f29ef8922fb7ef970f2c1a3ffe65a8274e2c59bd5a939f397048c6b486683c29c01484d1e
 SHA512 
1c3e78ee1bb507858e0d30a8a1e646c16dd6d8d666ea587e91d1c90e490aef46387d6dfadc01e80f9aa807f7b109e4072efa8d8115fcd2a81dd62cabc30a8001
+DIST vim-9.0.2167.tar.gz 17405049 BLAKE2B 
496c8f9672bc4ecce743a145bc2b671bf09034b2875e728406b318c8b12e2d8d4ee3423ce94f8749679f07d36f229954f7ef0b12ce7bc4d71ccf6637ce2d6029
 SHA512 
6a9a785b1915dc167210b0da4d5e4401c71ee49b3554c8a22566378658ddcc3493562897ea39035852399cc5ffb55a73355ab13390c27a4d00ffd76bcd10ddf0
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim-core/vim-core-9.0.2167.ebuild 
b/app-editors/vim-core/vim-core-9.0.2167.ebuild
new file mode 100644
index ..7650dbd89186
--- /dev/null
+++ b/app-editors/vim-core/vim-core-9.0.2167.ebuild
@@ -0,0 +1,231 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim and app-editors/gvim
+
+VIM_VERSION="9.0"
+VIM_PATCHES_VERSION="9.0.2092"
+inherit bash-completion-r1 desktop flag-o-matic prefix toolchain-funcs vim-doc 
xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+   EGIT_CHECKOUT_DIR=${WORKDIR}/vim-${PV}
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz
+   
https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+S="${WORKDIR}/vim-${PV}"
+
+DESCRIPTION="vim and gvim shared files"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="nls acl minimal"
+
+# ncurses is only needed by ./configure, so no subslot operator required
+DEPEND=">=sys-libs/ncurses-5.2-r2:0"
+BDEPEND="sys-devel/autoconf"
+
+if [[ ${PV} != * ]]; then
+   # Gentoo patches to fix runtime issues, cross-compile errors, etc
+   PATCHES=(
+   "${WORKDIR}/vim-${VIM_PATCHES_VERSION}-patches"
+   )
+fi
+
+# platform-specific checks (bug #898406):
+# - acl() -- Solaris
+# - statacl() -- AIX
+QA_CONFIG_IMPL_DECL_SKIP=(
+   'acl'
+   'statacl'
+)
+
+pkg_setup() {
+   # people with broken alphabets run into trouble. bug #82186.
+   unset LANG LC_ALL
+   export LC_COLLATE="C"
+}
+
+src_prepare() {
+   default
+
+   # Fixup a script to use awk instead of nawk
+   sed -i \
+   -e '1s|.*|#!'"${EPREFIX}"'/usr/bin/awk -f|' \
+   "${S}"/runtime/tools/mve.awk || die "sed failed"
+
+   # See bug #77841. We remove this file after the tarball extraction.
+   rm -v "${S}"/runtime/tools/vimspell.sh || die "rm failed"
+
+   # Read vimrc and gvimrc from /etc/vim
+   echo '#define SYS_VIMRC_FILE "'${EPREFIX}'/etc/vim/vimrc"' >> 
"${S}"/src/feature.h || die
+   echo '#define SYS_GVIMRC_FILE "'${EPREFIX}'/etc/vim/gvimrc"' >> 
"

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-10 Thread Arthur Zamarin
commit: 29d86db6d5aab693a4695c7bfc3255fea5323a38
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Dec 10 11:45:37 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Dec 10 11:45:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29d86db6

app-editors/vim: Stabilize 9.0.1777 arm, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1777.ebuild 
b/app-editors/vim/vim-9.0.1777.ebuild
index 2d3270605772..d142c1c4c3a1 100644
--- a/app-editors/vim/vim-9.0.1777.ebuild
+++ b/app-editors/vim/vim-9.0.1777.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-10 Thread Arthur Zamarin
commit: 93859bb05f95b1ebed7632d7da5622129ca27e4f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Dec 10 11:45:32 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Dec 10 11:45:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93859bb0

app-editors/vim: Stabilize 9.0.1777 ppc64, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1777.ebuild 
b/app-editors/vim/vim-9.0.1777.ebuild
index cd6d185c5431..2d3270605772 100644
--- a/app-editors/vim/vim-9.0.1777.ebuild
+++ b/app-editors/vim/vim-9.0.1777.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-10 Thread Arthur Zamarin
commit: 73a3d6cbf9ac64b628e43cd1ec1b758570bd4802
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Dec 10 11:45:36 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Dec 10 11:45:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73a3d6cb

app-editors/vim-core: Stabilize 9.0.1777 arm, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1777.ebuild 
b/app-editors/vim-core/vim-core-9.0.1777.ebuild
index 810cce1295cd..35098d2a99e0 100644
--- a/app-editors/vim-core/vim-core-9.0.1777.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1777.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-10 Thread Arthur Zamarin
commit: b1d1e764965ebc2d5066dbf4c2a1a3e2aae66d09
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Dec 10 11:45:31 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Dec 10 11:45:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d1e764

app-editors/vim-core: Stabilize 9.0.1777 ppc64, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1777.ebuild 
b/app-editors/vim-core/vim-core-9.0.1777.ebuild
index 08611599a142..810cce1295cd 100644
--- a/app-editors/vim-core/vim-core-9.0.1777.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1777.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-08 Thread Arthur Zamarin
commit: 40e27aff320d1abe91c12c6b286c9819175159da
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 20:55:39 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 20:55:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e27aff

app-editors/vim: Stabilize 9.0.1777 x86, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1777.ebuild 
b/app-editors/vim/vim-9.0.1777.ebuild
index 32d6a2324b43..78c5e58824ef 100644
--- a/app-editors/vim/vim-9.0.1777.ebuild
+++ b/app-editors/vim/vim-9.0.1777.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-08 Thread Arthur Zamarin
commit: 16e633544fc6a667e10dba1d1d79f6d11690e05d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 20:55:49 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 20:55:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16e63354

app-editors/vim-core: Stabilize 9.0.1777 ppc, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1777.ebuild 
b/app-editors/vim-core/vim-core-9.0.1777.ebuild
index f28bf23d063f..08611599a142 100644
--- a/app-editors/vim-core/vim-core-9.0.1777.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1777.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-08 Thread Arthur Zamarin
commit: 62ddfcd28aa209828f54c3d48a0605b6cbbce52e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 20:55:50 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 20:55:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62ddfcd2

app-editors/vim: Stabilize 9.0.1777 ppc, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1777.ebuild 
b/app-editors/vim/vim-9.0.1777.ebuild
index 78c5e58824ef..cd6d185c5431 100644
--- a/app-editors/vim/vim-9.0.1777.ebuild
+++ b/app-editors/vim/vim-9.0.1777.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-08 Thread Arthur Zamarin
commit: 324139e398ca04c0752ce47b79dbb0e9e2730864
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 20:55:21 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 20:55:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=324139e3

app-editors/vim-core: Stabilize 9.0.1777 hppa, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1777.ebuild 
b/app-editors/vim-core/vim-core-9.0.1777.ebuild
index 84700b825815..d16dbe470774 100644
--- a/app-editors/vim-core/vim-core-9.0.1777.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1777.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-08 Thread Arthur Zamarin
commit: da9b2203a29976889093e5d02019d889f73ff4de
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 20:55:39 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 20:55:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da9b2203

app-editors/vim-core: Stabilize 9.0.1777 x86, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1777.ebuild 
b/app-editors/vim-core/vim-core-9.0.1777.ebuild
index 76186ca42693..f28bf23d063f 100644
--- a/app-editors/vim-core/vim-core-9.0.1777.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1777.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-08 Thread Arthur Zamarin
commit: 58483ab55c7743d64233983049200722923387cf
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 20:55:33 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 20:55:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58483ab5

app-editors/vim-core: Stabilize 9.0.1777 sparc, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1777.ebuild 
b/app-editors/vim-core/vim-core-9.0.1777.ebuild
index d16dbe470774..76186ca42693 100644
--- a/app-editors/vim-core/vim-core-9.0.1777.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1777.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-08 Thread Arthur Zamarin
commit: 13db4186c02c217770d95c67008cd4c7136dd562
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 20:55:33 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 20:55:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13db4186

app-editors/vim: Stabilize 9.0.1777 sparc, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1777.ebuild 
b/app-editors/vim/vim-9.0.1777.ebuild
index b70f90e73afd..32d6a2324b43 100644
--- a/app-editors/vim/vim-9.0.1777.ebuild
+++ b/app-editors/vim/vim-9.0.1777.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-08 Thread Arthur Zamarin
commit: 6b3faf05f98e8b4581a704cc7b0fe83a463d6bba
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 20:55:22 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 20:55:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3faf05

app-editors/vim: Stabilize 9.0.1777 hppa, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1777.ebuild 
b/app-editors/vim/vim-9.0.1777.ebuild
index 0a9be7a81c2a..b70f90e73afd 100644
--- a/app-editors/vim/vim-9.0.1777.ebuild
+++ b/app-editors/vim/vim-9.0.1777.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-08 Thread Arthur Zamarin
commit: 223887acfc36784cddc83a49f51229a6792abf47
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 19:29:24 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 19:29:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=223887ac

app-editors/vim: Stabilize 9.0.1777 amd64, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1777.ebuild 
b/app-editors/vim/vim-9.0.1777.ebuild
index ef8e763869db..0a9be7a81c2a 100644
--- a/app-editors/vim/vim-9.0.1777.ebuild
+++ b/app-editors/vim/vim-9.0.1777.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-08 Thread Arthur Zamarin
commit: e632d984887901a3e5c4b0599eaa9bd81340eb5a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 19:29:13 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 19:29:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e632d984

app-editors/vim: Stabilize 9.0.1777 arm64, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1777.ebuild 
b/app-editors/vim/vim-9.0.1777.ebuild
index fb932d372b68..ef8e763869db 100644
--- a/app-editors/vim/vim-9.0.1777.ebuild
+++ b/app-editors/vim/vim-9.0.1777.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-08 Thread Arthur Zamarin
commit: 03223ea6912a3c5a38aa27054ea2c669449c710a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 19:29:23 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 19:29:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03223ea6

app-editors/vim-core: Stabilize 9.0.1777 amd64, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1777.ebuild 
b/app-editors/vim-core/vim-core-9.0.1777.ebuild
index 4b2aaf65d0ce..84700b825815 100644
--- a/app-editors/vim-core/vim-core-9.0.1777.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1777.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-08 Thread Arthur Zamarin
commit: d4c881426c8d138368b0294fddd8d5e8b1e59128
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 19:29:12 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 19:29:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4c88142

app-editors/vim-core: Stabilize 9.0.1777 arm64, #919477

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1777.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1777.ebuild 
b/app-editors/vim-core/vim-core-9.0.1777.ebuild
index 5fb29ea38fd3..4b2aaf65d0ce 100644
--- a/app-editors/vim-core/vim-core-9.0.1777.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1777.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-02 Thread Arthur Zamarin
commit: 959f9b9b22824ce597022db60ad3a4dbb42ac300
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:52:59 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:52:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=959f9b9b

app-editors/vim: Stabilize 9.0.1627 sparc, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1627.ebuild 
b/app-editors/vim/vim-9.0.1627.ebuild
index 30ebb60d69b3..6daab958469b 100644
--- a/app-editors/vim/vim-9.0.1627.ebuild
+++ b/app-editors/vim/vim-9.0.1627.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-02 Thread Arthur Zamarin
commit: b4267c6d922d4f88672b405e05be691681bf2c21
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:52:59 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:52:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4267c6d

app-editors/vim-core: Stabilize 9.0.1627 sparc, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1627.ebuild 
b/app-editors/vim-core/vim-core-9.0.1627.ebuild
index 77dbd11bcc00..9829a00697c4 100644
--- a/app-editors/vim-core/vim-core-9.0.1627.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1627.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-02 Thread Arthur Zamarin
commit: 12cb339d5380a694a9986467579f24853597106f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:52:56 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:52:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12cb339d

app-editors/vim-core: Stabilize 9.0.1627 hppa, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1627.ebuild 
b/app-editors/vim-core/vim-core-9.0.1627.ebuild
index e626fc2cfb3c..77dbd11bcc00 100644
--- a/app-editors/vim-core/vim-core-9.0.1627.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1627.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-02 Thread Arthur Zamarin
commit: 4aa07927bc6ca3d4dea39ed1ac68856cd0450c3e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:52:56 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:52:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aa07927

app-editors/vim: Stabilize 9.0.1627 hppa, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1627.ebuild 
b/app-editors/vim/vim-9.0.1627.ebuild
index 95be40bb7393..30ebb60d69b3 100644
--- a/app-editors/vim/vim-9.0.1627.ebuild
+++ b/app-editors/vim/vim-9.0.1627.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-02 Thread Arthur Zamarin
commit: 5a4087d958953e6e0e6d72fb66c8196a6ec1192a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:51:55 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:51:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a4087d9

app-editors/vim-core: Stabilize 9.0.1627 ppc, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1627.ebuild 
b/app-editors/vim-core/vim-core-9.0.1627.ebuild
index 7fe9628c3223..a77108502e05 100644
--- a/app-editors/vim-core/vim-core-9.0.1627.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1627.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-02 Thread Arthur Zamarin
commit: 387179439bad6da6f5a9164e627529c4f293a40f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:51:52 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:51:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38717943

app-editors/vim-core: Stabilize 9.0.1627 arm64, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1627.ebuild 
b/app-editors/vim-core/vim-core-9.0.1627.ebuild
index b105fc8aa6ff..7fe9628c3223 100644
--- a/app-editors/vim-core/vim-core-9.0.1627.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1627.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-02 Thread Arthur Zamarin
commit: a7d4190a520b5a84805c112d72ee9b8de67383a4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:51:52 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:51:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7d4190a

app-editors/vim: Stabilize 9.0.1627 arm64, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1627.ebuild 
b/app-editors/vim/vim-9.0.1627.ebuild
index e0bc0f5e84d1..51c463075e98 100644
--- a/app-editors/vim/vim-9.0.1627.ebuild
+++ b/app-editors/vim/vim-9.0.1627.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-02 Thread Arthur Zamarin
commit: 2ba3e5a47376f87f1bf577a6cce8a94691b60dfe
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:52:00 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:52:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ba3e5a4

app-editors/vim: Stabilize 9.0.1627 ppc64, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1627.ebuild 
b/app-editors/vim/vim-9.0.1627.ebuild
index a3f2fe10e1e2..95be40bb7393 100644
--- a/app-editors/vim/vim-9.0.1627.ebuild
+++ b/app-editors/vim/vim-9.0.1627.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-02 Thread Arthur Zamarin
commit: 4414de88f8ba70180351ae1c6415f10f856ac95a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:51:59 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:51:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4414de88

app-editors/vim-core: Stabilize 9.0.1627 ppc64, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1627.ebuild 
b/app-editors/vim-core/vim-core-9.0.1627.ebuild
index a77108502e05..e626fc2cfb3c 100644
--- a/app-editors/vim-core/vim-core-9.0.1627.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1627.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-02 Thread Arthur Zamarin
commit: 963dadd7dcec0c2a25850c6005e84cb8f4bfc6ea
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:51:56 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:51:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=963dadd7

app-editors/vim: Stabilize 9.0.1627 ppc, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1627.ebuild 
b/app-editors/vim/vim-9.0.1627.ebuild
index 51c463075e98..a3f2fe10e1e2 100644
--- a/app-editors/vim/vim-9.0.1627.ebuild
+++ b/app-editors/vim/vim-9.0.1627.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-12-02 Thread Arthur Zamarin
commit: bedc9168580e3198e48202a3cfde82dec783ff39
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:51:48 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:51:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bedc9168

app-editors/vim-core: Stabilize 9.0.1627 arm, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1627.ebuild 
b/app-editors/vim-core/vim-core-9.0.1627.ebuild
index bba6c09172c7..b105fc8aa6ff 100644
--- a/app-editors/vim-core/vim-core-9.0.1627.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1627.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-12-02 Thread Arthur Zamarin
commit: fc161c809d2bf0a54b8f63db4c23ec81a31f86db
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Dec  2 14:51:48 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Dec  2 14:51:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc161c80

app-editors/vim: Stabilize 9.0.1627 arm, #913535

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/vim/vim-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1627.ebuild 
b/app-editors/vim/vim-9.0.1627.ebuild
index 3b44395729b4..e0bc0f5e84d1 100644
--- a/app-editors/vim/vim-9.0.1627.ebuild
+++ b/app-editors/vim/vim-9.0.1627.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-11-22 Thread Sam James
commit: 1738f215d210c3076e73ae2ee2e1c8dfc9914103
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Mon Nov  6 05:31:30 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 22 17:28:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1738f215

app-editors/vim: add 9.0.2092

Also bump the Gentoo patches to remove a patch that was obsoleted by
upstream.

Signed-off-by: Oskari Pirhonen  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-editors/vim/Manifest|   2 +
 app-editors/vim/vim-9.0.2092.ebuild | 370 
 2 files changed, 372 insertions(+)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index 1ef215baf862..dee7d76f9aa2 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -3,4 +3,6 @@ DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
 DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
 DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fba8dce25354a7ded40ff8536388e7b7120c1f2fad790c8dc7134d74649697b6e95777e79dcf1e208ead81b229d6
 SHA512 
702781b6a9cf540d22aa0bc1e25a4fb785ff2b22e9c6a59643e87fd6f7b3e5444adbee1816bfaa0b45b9655bb56dc2d13904230840a0ecea56f5453034d81a2e
+DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
+DIST vim-9.0.2092.tar.gz 17359377 BLAKE2B 
eeb50de7e4876ce0e2a1e8b241ea2c7c472898495ef5517fa115e01f29ef8922fb7ef970f2c1a3ffe65a8274e2c59bd5a939f397048c6b486683c29c01484d1e
 SHA512 
1c3e78ee1bb507858e0d30a8a1e646c16dd6d8d666ea587e91d1c90e490aef46387d6dfadc01e80f9aa807f7b109e4072efa8d8115fcd2a81dd62cabc30a8001
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim/vim-9.0.2092.ebuild 
b/app-editors/vim/vim-9.0.2092.ebuild
new file mode 100644
index ..9a75568cdf87
--- /dev/null
+++ b/app-editors/vim/vim-9.0.2092.ebuild
@@ -0,0 +1,370 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim-core and app-editors/gvim
+
+VIM_VERSION="9.0"
+VIM_PATCHES_VERSION="9.0.2092"
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE="threads(+)"
+USE_RUBY="ruby27 ruby30 ruby31"
+
+inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   
https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+
+DESCRIPTION="Vim, an improved vi-style text editor"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="X acl crypt cscope debug gpm lua minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager"
+REQUIRED_USE="
+   lua? ( ${LUA_REQUIRED_USE} )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   vim-pager? ( !minimal )
+"
+
+RDEPEND="
+   >=app-eselect/eselect-vi-1.1
+   >=sys-libs/ncurses-5.2-r2:0=
+   nls? ( virtual/libintl )
+   acl? ( kernel_linux? ( sys-apps/acl ) )
+   crypt? ( dev-libs/libsodium:= )
+   cscope? ( dev-util/cscope )
+   gpm? ( >=sys-libs/gpm-1.19.3 )
+   lua? ( ${LUA_DEPS}
+   $(lua_gen_impl_dep 'deprecated' lua5-1)
+   )
+   ~app-editors/vim-core-${PV}
+   vim-pager? ( app-editors/vim-core[-minimal] )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS} )
+   racket? ( dev-s

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-11-22 Thread Sam James
commit: 67e3098dacad21fd4cf7263a9caa945514c2267c
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Mon Nov  6 05:33:02 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 22 17:28:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e3098d

app-editors/vim-core: add 9.0.2092

Also bump the Gentoo patches to remove a patch that was obsoleted by
upstream.

Signed-off-by: Oskari Pirhonen  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/33703
Signed-off-by: Sam James  gentoo.org>

 app-editors/vim-core/Manifest |   2 +
 app-editors/vim-core/vim-core-9.0.2092.ebuild | 231 ++
 2 files changed, 233 insertions(+)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index 1ef215baf862..dee7d76f9aa2 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -3,4 +3,6 @@ DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
 DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
 DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fba8dce25354a7ded40ff8536388e7b7120c1f2fad790c8dc7134d74649697b6e95777e79dcf1e208ead81b229d6
 SHA512 
702781b6a9cf540d22aa0bc1e25a4fb785ff2b22e9c6a59643e87fd6f7b3e5444adbee1816bfaa0b45b9655bb56dc2d13904230840a0ecea56f5453034d81a2e
+DIST vim-9.0.2092-patches.tar.xz 2640 BLAKE2B 
3a4b2bc57712de3b92b0e8d9b2d428e4d576665a183927051eddd53d019a5ca413c74dc10aff09917ee3120bd2e2ba441219d7238994f0d5ba14fc9c31180199
 SHA512 
ec27e4056460948ff86bc48a21de239a84b53757a8283144ec121654096796d970ad832234d6591a132bcd38bc12dc507cc7795a11cd383d20f08b4d9bcb051f
+DIST vim-9.0.2092.tar.gz 17359377 BLAKE2B 
eeb50de7e4876ce0e2a1e8b241ea2c7c472898495ef5517fa115e01f29ef8922fb7ef970f2c1a3ffe65a8274e2c59bd5a939f397048c6b486683c29c01484d1e
 SHA512 
1c3e78ee1bb507858e0d30a8a1e646c16dd6d8d666ea587e91d1c90e490aef46387d6dfadc01e80f9aa807f7b109e4072efa8d8115fcd2a81dd62cabc30a8001
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim-core/vim-core-9.0.2092.ebuild 
b/app-editors/vim-core/vim-core-9.0.2092.ebuild
new file mode 100644
index ..7650dbd89186
--- /dev/null
+++ b/app-editors/vim-core/vim-core-9.0.2092.ebuild
@@ -0,0 +1,231 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim and app-editors/gvim
+
+VIM_VERSION="9.0"
+VIM_PATCHES_VERSION="9.0.2092"
+inherit bash-completion-r1 desktop flag-o-matic prefix toolchain-funcs vim-doc 
xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+   EGIT_CHECKOUT_DIR=${WORKDIR}/vim-${PV}
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz
+   
https://git.sr.ht/~xxc3nsoredxx/vim-patches/refs/download/vim-${VIM_PATCHES_VERSION}-patches/vim-${VIM_PATCHES_VERSION}-patches.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+S="${WORKDIR}/vim-${PV}"
+
+DESCRIPTION="vim and gvim shared files"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="nls acl minimal"
+
+# ncurses is only needed by ./configure, so no subslot operator required
+DEPEND=">=sys-libs/ncurses-5.2-r2:0"
+BDEPEND="sys-devel/autoconf"
+
+if [[ ${PV} != * ]]; then
+   # Gentoo patches to fix runtime issues, cross-compile errors, etc
+   PATCHES=(
+   "${WORKDIR}/vim-${VIM_PATCHES_VERSION}-patches"
+   )
+fi
+
+# platform-specific checks (bug #898406):
+# - acl() -- Solaris
+# - statacl() -- AIX
+QA_CONFIG_IMPL_DECL_SKIP=(
+   'acl'
+   'statacl'
+)
+
+pkg_setup() {
+   # people with broken alphabets run into trouble. bug #82186.
+   unset LANG LC_ALL
+   export LC_COLLATE="C"
+}
+
+src_prepare() {
+   default
+
+   # Fixup a script to use awk instead of nawk
+   sed -i \
+   

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-09-03 Thread Joonas Niilola
commit: c3bd997ed95220cb76570e9a95b163041305286f
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Sep  3 06:28:05 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Sep  3 11:00:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3bd997e

app-editors/vim: Stabilize 9.0.1627 x86, #913535

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim/vim-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1627.ebuild 
b/app-editors/vim/vim-9.0.1627.ebuild
index c140d18fd330..3b44395729b4 100644
--- a/app-editors/vim/vim-9.0.1627.ebuild
+++ b/app-editors/vim/vim-9.0.1627.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-09-03 Thread Joonas Niilola
commit: 620bc6b8805dbb6740868a3103159e5922ec20bd
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Sep  3 06:27:35 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Sep  3 11:00:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=620bc6b8

app-editors/vim: Stabilize 9.0.1627 amd64, #913535

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim/vim-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1627.ebuild 
b/app-editors/vim/vim-9.0.1627.ebuild
index 8aad69d55dd3..c140d18fd330 100644
--- a/app-editors/vim/vim-9.0.1627.ebuild
+++ b/app-editors/vim/vim-9.0.1627.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-09-03 Thread Joonas Niilola
commit: 70c06b80d97370523aa7486537d086ca31b6f791
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Sep  3 06:27:34 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Sep  3 11:00:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70c06b80

app-editors/vim-core: Stabilize 9.0.1627 amd64, #913535

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1627.ebuild 
b/app-editors/vim-core/vim-core-9.0.1627.ebuild
index e077dcbef75b..1f51c331d814 100644
--- a/app-editors/vim-core/vim-core-9.0.1627.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1627.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-09-03 Thread Joonas Niilola
commit: 35b1b620f61b5d1a1efbc8889d35781590561c18
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Sep  3 06:28:05 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Sep  3 11:00:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35b1b620

app-editors/vim-core: Stabilize 9.0.1627 x86, #913535

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1627.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1627.ebuild 
b/app-editors/vim-core/vim-core-9.0.1627.ebuild
index 1f51c331d814..bba6c09172c7 100644
--- a/app-editors/vim-core/vim-core-9.0.1627.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1627.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-08-22 Thread Mike Gilbert
commit: c719d131d0f9f17ab211e18e5b94c41e165e6976
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Aug 23 02:19:17 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Aug 23 02:19:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c719d131

app-editors/vim: add 9.0.1777, drop 9.0.1776

Bug: https://bugs.gentoo.org/912841
Signed-off-by: Mike Gilbert  gentoo.org>

 app-editors/vim/Manifest | 2 +-
 app-editors/vim/{vim-9.0.1776.ebuild => vim-9.0.1777.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index 6537825d7878..1ef215baf862 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -2,5 +2,5 @@ DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afb
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
 DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
-DIST vim-9.0.1776.tar.gz 17178804 BLAKE2B 
aad0b490a30ed601c992138b26bffedc58812096017e002919d578a0d70f0b758a8af44589d41ddd196903d8f655cb333823ce2d4f3af8ce944709e869c5d236
 SHA512 
47dc15e7ac176fd9a9bba1253d5feb8c79aaa82963f4e71982c1d1718c74c2a459c94c217658b6b0808fdaded876037112c8400aa48f101200603a9b3a44802a
+DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fba8dce25354a7ded40ff8536388e7b7120c1f2fad790c8dc7134d74649697b6e95777e79dcf1e208ead81b229d6
 SHA512 
702781b6a9cf540d22aa0bc1e25a4fb785ff2b22e9c6a59643e87fd6f7b3e5444adbee1816bfaa0b45b9655bb56dc2d13904230840a0ecea56f5453034d81a2e
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim/vim-9.0.1776.ebuild 
b/app-editors/vim/vim-9.0.1777.ebuild
similarity index 100%
rename from app-editors/vim/vim-9.0.1776.ebuild
rename to app-editors/vim/vim-9.0.1777.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-08-22 Thread Mike Gilbert
commit: b549cd2516912bce02b77b0a625ea1e386a26d2b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Aug 23 02:18:56 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Aug 23 02:18:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b549cd25

app-editors/vim-core: add 9.0.1777, drop 9.0.1776

Bug: https://bugs.gentoo.org/912841
Signed-off-by: Mike Gilbert  gentoo.org>

 app-editors/vim-core/Manifest   | 2 +-
 .../vim-core/{vim-core-9.0.1776.ebuild => vim-core-9.0.1777.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index 6537825d7878..1ef215baf862 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -2,5 +2,5 @@ DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afb
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
 DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
-DIST vim-9.0.1776.tar.gz 17178804 BLAKE2B 
aad0b490a30ed601c992138b26bffedc58812096017e002919d578a0d70f0b758a8af44589d41ddd196903d8f655cb333823ce2d4f3af8ce944709e869c5d236
 SHA512 
47dc15e7ac176fd9a9bba1253d5feb8c79aaa82963f4e71982c1d1718c74c2a459c94c217658b6b0808fdaded876037112c8400aa48f101200603a9b3a44802a
+DIST vim-9.0.1777.tar.gz 17177555 BLAKE2B 
ad6d785f4c6b112199bd2f34e0b7f6070615fba8dce25354a7ded40ff8536388e7b7120c1f2fad790c8dc7134d74649697b6e95777e79dcf1e208ead81b229d6
 SHA512 
702781b6a9cf540d22aa0bc1e25a4fb785ff2b22e9c6a59643e87fd6f7b3e5444adbee1816bfaa0b45b9655bb56dc2d13904230840a0ecea56f5453034d81a2e
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim-core/vim-core-9.0.1776.ebuild 
b/app-editors/vim-core/vim-core-9.0.1777.ebuild
similarity index 100%
rename from app-editors/vim-core/vim-core-9.0.1776.ebuild
rename to app-editors/vim-core/vim-core-9.0.1777.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-08-21 Thread Mike Gilbert
commit: 2a5b4ab7104dc50f87289207b5bd9431b53eb86b
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Sun Aug 20 20:07:08 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Aug 21 16:21:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a5b4ab7

app-editors/vim: add 9.0.1776

Freedom edition. Or something.

Bug: https://bugs.gentoo.org/889430
Signed-off-by: Oskari Pirhonen  gmail.com>
Signed-off-by: Mike Gilbert  gentoo.org>

 app-editors/vim/Manifest|   1 +
 app-editors/vim/vim-9.0.1776.ebuild | 370 
 2 files changed, 371 insertions(+)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index f40c5726186f..6537825d7878 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -2,4 +2,5 @@ DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afb
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
 DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
+DIST vim-9.0.1776.tar.gz 17178804 BLAKE2B 
aad0b490a30ed601c992138b26bffedc58812096017e002919d578a0d70f0b758a8af44589d41ddd196903d8f655cb333823ce2d4f3af8ce944709e869c5d236
 SHA512 
47dc15e7ac176fd9a9bba1253d5feb8c79aaa82963f4e71982c1d1718c74c2a459c94c217658b6b0808fdaded876037112c8400aa48f101200603a9b3a44802a
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim/vim-9.0.1776.ebuild 
b/app-editors/vim/vim-9.0.1776.ebuild
new file mode 100644
index ..fb932d372b68
--- /dev/null
+++ b/app-editors/vim/vim-9.0.1776.ebuild
@@ -0,0 +1,370 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim-core and app-editors/gvim
+
+VIM_VERSION="9.0"
+VIM_PATCHES_VERSION="9.0.1000"
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE="threads(+)"
+USE_RUBY="ruby27 ruby30 ruby31"
+
+inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   
https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+
+DESCRIPTION="Vim, an improved vi-style text editor"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="X acl crypt cscope debug gpm lua minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager"
+REQUIRED_USE="
+   lua? ( ${LUA_REQUIRED_USE} )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   vim-pager? ( !minimal )
+"
+
+RDEPEND="
+   >=app-eselect/eselect-vi-1.1
+   >=sys-libs/ncurses-5.2-r2:0=
+   nls? ( virtual/libintl )
+   acl? ( kernel_linux? ( sys-apps/acl ) )
+   crypt? ( dev-libs/libsodium:= )
+   cscope? ( dev-util/cscope )
+   gpm? ( >=sys-libs/gpm-1.19.3 )
+   lua? ( ${LUA_DEPS}
+   $(lua_gen_impl_dep 'deprecated' lua5-1)
+   )
+   ~app-editors/vim-core-${PV}
+   vim-pager? ( app-editors/vim-core[-minimal] )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS} )
+   racket? ( dev-scheme/racket )
+   ruby? ( ${RUBY_DEPS} )
+   selinux? ( sys-libs/libselinux )
+   sound? ( media-libs/libcanberra )
+   tcl? ( dev-lang/tcl:0= )
+   X? ( x11-libs/libXt )
+"
+DEPEND="${RDEPEND}"
+# configure runs the Lua interpreter
+BDEPEND="
+   sys-devel/autoconf
+   lua? ( ${LUA_DEPS} )
+   nls? ( sys-devel

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-08-21 Thread Mike Gilbert
commit: 373963c1fcc83205f9a90571c5a6daaa0aedb833
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Sun Aug 20 20:09:13 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Aug 21 16:21:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=373963c1

app-editors/vim-core: add 9.0.1776

Freedom edition. Or something.

Bug: https://bugs.gentoo.org/889430
Signed-off-by: Oskari Pirhonen  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32400
Signed-off-by: Mike Gilbert  gentoo.org>

 app-editors/vim-core/Manifest |   1 +
 app-editors/vim-core/vim-core-9.0.1776.ebuild | 231 ++
 2 files changed, 232 insertions(+)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index f40c5726186f..6537825d7878 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -2,4 +2,5 @@ DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afb
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
 DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
+DIST vim-9.0.1776.tar.gz 17178804 BLAKE2B 
aad0b490a30ed601c992138b26bffedc58812096017e002919d578a0d70f0b758a8af44589d41ddd196903d8f655cb333823ce2d4f3af8ce944709e869c5d236
 SHA512 
47dc15e7ac176fd9a9bba1253d5feb8c79aaa82963f4e71982c1d1718c74c2a459c94c217658b6b0808fdaded876037112c8400aa48f101200603a9b3a44802a
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim-core/vim-core-9.0.1776.ebuild 
b/app-editors/vim-core/vim-core-9.0.1776.ebuild
new file mode 100644
index ..5fb29ea38fd3
--- /dev/null
+++ b/app-editors/vim-core/vim-core-9.0.1776.ebuild
@@ -0,0 +1,231 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim and app-editors/gvim
+
+VIM_VERSION="9.0"
+VIM_PATCHES_VERSION="9.0.1000"
+inherit bash-completion-r1 desktop flag-o-matic prefix toolchain-funcs vim-doc 
xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+   EGIT_CHECKOUT_DIR=${WORKDIR}/vim-${PV}
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz
+   
https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+S="${WORKDIR}/vim-${PV}"
+
+DESCRIPTION="vim and gvim shared files"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="nls acl minimal"
+
+# ncurses is only needed by ./configure, so no subslot operator required
+DEPEND=">=sys-libs/ncurses-5.2-r2:0"
+BDEPEND="sys-devel/autoconf"
+
+if [[ ${PV} != * ]]; then
+   # Gentoo patches to fix runtime issues, cross-compile errors, etc
+   PATCHES=(
+   "${WORKDIR}/vim-patches-vim-${VIM_PATCHES_VERSION}-patches"
+   )
+fi
+
+# platform-specific checks (bug #898406):
+# - acl() -- Solaris
+# - statacl() -- AIX
+QA_CONFIG_IMPL_DECL_SKIP=(
+   'acl'
+   'statacl'
+)
+
+pkg_setup() {
+   # people with broken alphabets run into trouble. bug #82186.
+   unset LANG LC_ALL
+   export LC_COLLATE="C"
+}
+
+src_prepare() {
+   default
+
+   # Fixup a script to use awk instead of nawk
+   sed -i \
+   -e '1s|.*|#!'"${EPREFIX}"'/usr/bin/awk -f|' \
+   "${S}"/runtime/tools/mve.awk || die "sed failed"
+
+   # See bug #77841. We remove this file after the tarball extraction.
+   rm -v "${S}"/runtime/tools/vimspell.sh || die "rm failed"
+
+   # Read vimrc and gvimrc from /etc/vim
+   echo '#define SYS_VIMR

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-08-07 Thread Sam James
commit: 36dc2b97608e67d18b631adf7e5deeb3f5dee1dd
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Tue Aug  8 03:21:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug  8 03:51:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36dc2b97

app-editors/vim-core: add 9.0.1678, drop 9.0.1677

Bram's final patch...

Bug: https://bugs.gentoo.org/906109
Signed-off-by: Oskari Pirhonen  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32216
Signed-off-by: Sam James  gentoo.org>

 app-editors/vim-core/Manifest   | 2 +-
 .../vim-core/{vim-core-9.0.1677.ebuild => vim-core-9.0.1678.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index d3f05280fb97..f40c5726186f 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -1,5 +1,5 @@
 DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afbf0efbb40dd9ce9e2393f0ada35e0a44d7f0c3f789d26ae1427604a281f689e87885fbb1557dce12a69898ec46d
 SHA512 
bd83feba38a4aa9b3cf910a0b5a2c153abc4c6eaf9abf0ebee389879ff9ddee51c6f9dba5151aab5df3f73594cf8921d0a0e34121c50e65366cdcdd6482fd00f
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
-DIST vim-9.0.1677.tar.gz 17069398 BLAKE2B 
c4eb4e6f8bc7367c24191a8b2a6ea992d11a9bcef27659b60e2844bfa06490fe770937d2548187a45d0fbc8d1f0be2374457a0cdba9792137e02bdd1b9cd5dfb
 SHA512 
8c50d8a6f081673023aa0dd607810fb652d25a46c955d0fa744faf557517a465160cf01b39d5ee6d2c93dd172635500ff7315e54565f7f628ee8f0f8dab8c291
+DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim-core/vim-core-9.0.1677.ebuild 
b/app-editors/vim-core/vim-core-9.0.1678.ebuild
similarity index 100%
rename from app-editors/vim-core/vim-core-9.0.1677.ebuild
rename to app-editors/vim-core/vim-core-9.0.1678.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-08-07 Thread Sam James
commit: 9ccd792d6ae66ad95f8f3a91d14b2990ad5b81ec
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Tue Aug  8 03:20:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug  8 03:51:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ccd792d

app-editors/vim: add 9.0.1678, drop 9.0.1677

Bram's final patch...

Bug: https://bugs.gentoo.org/906109
Signed-off-by: Oskari Pirhonen  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-editors/vim/Manifest | 2 +-
 app-editors/vim/{vim-9.0.1677.ebuild => vim-9.0.1678.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index d3f05280fb97..f40c5726186f 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -1,5 +1,5 @@
 DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afbf0efbb40dd9ce9e2393f0ada35e0a44d7f0c3f789d26ae1427604a281f689e87885fbb1557dce12a69898ec46d
 SHA512 
bd83feba38a4aa9b3cf910a0b5a2c153abc4c6eaf9abf0ebee389879ff9ddee51c6f9dba5151aab5df3f73594cf8921d0a0e34121c50e65366cdcdd6482fd00f
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
-DIST vim-9.0.1677.tar.gz 17069398 BLAKE2B 
c4eb4e6f8bc7367c24191a8b2a6ea992d11a9bcef27659b60e2844bfa06490fe770937d2548187a45d0fbc8d1f0be2374457a0cdba9792137e02bdd1b9cd5dfb
 SHA512 
8c50d8a6f081673023aa0dd607810fb652d25a46c955d0fa744faf557517a465160cf01b39d5ee6d2c93dd172635500ff7315e54565f7f628ee8f0f8dab8c291
+DIST vim-9.0.1678.tar.gz 17069551 BLAKE2B 
e83cea77513eb0d8b3ed02bd508333fb97357d2d7a91a90c5a9376b03b444a0b65b6ce04b14e191e33445132845af71193ab140ea615bb03a2c24a904b726cb4
 SHA512 
c5ffb7ca56ff4eee70f06599dd84db2eb28ddadac229d4f7faf01174805923636a4ce61486bdf5a47910c929613dc9b9290dfc9288006222b4bc4ac891548bb8
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim/vim-9.0.1677.ebuild 
b/app-editors/vim/vim-9.0.1678.ebuild
similarity index 100%
rename from app-editors/vim/vim-9.0.1677.ebuild
rename to app-editors/vim/vim-9.0.1678.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-08-06 Thread Sam James
commit: 86deb4b86045532504c8ae85a9e5d67d8d6629df
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Sun Aug  6 03:09:52 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  7 05:35:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86deb4b8

app-editors/vim-core: add 9.0.1677

RIP Bram Moolenaar ;(

Bug: https://bugs.gentoo.org/906109
Signed-off-by: Oskari Pirhonen  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/32190
Signed-off-by: Sam James  gentoo.org>

 app-editors/vim-core/Manifest |   1 +
 app-editors/vim-core/vim-core-9.0.1677.ebuild | 231 ++
 2 files changed, 232 insertions(+)

diff --git a/app-editors/vim-core/Manifest b/app-editors/vim-core/Manifest
index 8f828a8a8724..d3f05280fb97 100644
--- a/app-editors/vim-core/Manifest
+++ b/app-editors/vim-core/Manifest
@@ -1,4 +1,5 @@
 DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afbf0efbb40dd9ce9e2393f0ada35e0a44d7f0c3f789d26ae1427604a281f689e87885fbb1557dce12a69898ec46d
 SHA512 
bd83feba38a4aa9b3cf910a0b5a2c153abc4c6eaf9abf0ebee389879ff9ddee51c6f9dba5151aab5df3f73594cf8921d0a0e34121c50e65366cdcdd6482fd00f
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
+DIST vim-9.0.1677.tar.gz 17069398 BLAKE2B 
c4eb4e6f8bc7367c24191a8b2a6ea992d11a9bcef27659b60e2844bfa06490fe770937d2548187a45d0fbc8d1f0be2374457a0cdba9792137e02bdd1b9cd5dfb
 SHA512 
8c50d8a6f081673023aa0dd607810fb652d25a46c955d0fa744faf557517a465160cf01b39d5ee6d2c93dd172635500ff7315e54565f7f628ee8f0f8dab8c291
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim-core/vim-core-9.0.1677.ebuild 
b/app-editors/vim-core/vim-core-9.0.1677.ebuild
new file mode 100644
index ..5fb29ea38fd3
--- /dev/null
+++ b/app-editors/vim-core/vim-core-9.0.1677.ebuild
@@ -0,0 +1,231 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim and app-editors/gvim
+
+VIM_VERSION="9.0"
+VIM_PATCHES_VERSION="9.0.1000"
+inherit bash-completion-r1 desktop flag-o-matic prefix toolchain-funcs vim-doc 
xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+   EGIT_CHECKOUT_DIR=${WORKDIR}/vim-${PV}
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz
+   
https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+S="${WORKDIR}/vim-${PV}"
+
+DESCRIPTION="vim and gvim shared files"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="nls acl minimal"
+
+# ncurses is only needed by ./configure, so no subslot operator required
+DEPEND=">=sys-libs/ncurses-5.2-r2:0"
+BDEPEND="sys-devel/autoconf"
+
+if [[ ${PV} != * ]]; then
+   # Gentoo patches to fix runtime issues, cross-compile errors, etc
+   PATCHES=(
+   "${WORKDIR}/vim-patches-vim-${VIM_PATCHES_VERSION}-patches"
+   )
+fi
+
+# platform-specific checks (bug #898406):
+# - acl() -- Solaris
+# - statacl() -- AIX
+QA_CONFIG_IMPL_DECL_SKIP=(
+   'acl'
+   'statacl'
+)
+
+pkg_setup() {
+   # people with broken alphabets run into trouble. bug #82186.
+   unset LANG LC_ALL
+   export LC_COLLATE="C"
+}
+
+src_prepare() {
+   default
+
+   # Fixup a script to use awk instead of nawk
+   sed -i \
+   -e '1s|.*|#!'"${EPREFIX}"'/usr/bin/awk -f|' \
+   "${S}"/runtime/tools/mve.awk || die "sed failed"
+
+   # See bug #77841. We remove this file after the tarball extraction.
+   rm -v "${S}"/runtime/tools/vimspell.sh || die "rm failed"
+
+   # Read vimrc and gvimrc from /etc/vim
+   echo '#define SYS_VIMRC_FILE "'${EPREFIX}'/etc/vim/vimrc"' >> 
"${S}"/src/feature.h || die
+   echo '#define SYS_GV

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-08-06 Thread Sam James
commit: a91de01ec6ffd94dfd502291fe21c7bb76812c38
Author: Oskari Pirhonen  gmail  com>
AuthorDate: Sun Aug  6 03:08:41 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  7 05:35:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a91de01e

app-editors/vim: add 9.0.1677

RIP Bram Moolenaar ;(

Bug: https://bugs.gentoo.org/906109
Signed-off-by: Oskari Pirhonen  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-editors/vim/Manifest|   1 +
 app-editors/vim/vim-9.0.1677.ebuild | 370 
 2 files changed, 371 insertions(+)

diff --git a/app-editors/vim/Manifest b/app-editors/vim/Manifest
index 8f828a8a8724..d3f05280fb97 100644
--- a/app-editors/vim/Manifest
+++ b/app-editors/vim/Manifest
@@ -1,4 +1,5 @@
 DIST vim-9.0.1403.tar.gz 16976705 BLAKE2B 
9664d52de488086308fcbcda0b0a1167161afbf0efbb40dd9ce9e2393f0ada35e0a44d7f0c3f789d26ae1427604a281f689e87885fbb1557dce12a69898ec46d
 SHA512 
bd83feba38a4aa9b3cf910a0b5a2c153abc4c6eaf9abf0ebee389879ff9ddee51c6f9dba5151aab5df3f73594cf8921d0a0e34121c50e65366cdcdd6482fd00f
 DIST vim-9.0.1503.tar.gz 17010118 BLAKE2B 
4f74d52a3fcf7875031378f86fc3411c64c92e4b82bee371148b19042478d3f974793477c3fc2d9ddff9233fa1ec3c864962880840867544e92464f1a0876f51
 SHA512 
2f3242ec0f79cf6affc2f7fdaf689c35d8597706ac1689dbbdc01352676199605bb37f22bd901f1e8d59f312237d3fce4bee8b979b28a744ea9e40558621980e
 DIST vim-9.0.1627.tar.gz 17048824 BLAKE2B 
3fa583cf676c2388641b1240ed4b90c2e42cd9f50ea44a943cce86bba4bf278adf54837bb5c4530471fd57cfcd08cd39be78b17a5e907435a02dc5874ff7f571
 SHA512 
d2fb863e03d4ad773fcba8917f3cd1e373f661aa8b8a20bd3e416a73788997d31c6dd106a1bf59d72475bb577bbe6d52eb079fff9c7152d96bb6e5c9aa6e2f3b
+DIST vim-9.0.1677.tar.gz 17069398 BLAKE2B 
c4eb4e6f8bc7367c24191a8b2a6ea992d11a9bcef27659b60e2844bfa06490fe770937d2548187a45d0fbc8d1f0be2374457a0cdba9792137e02bdd1b9cd5dfb
 SHA512 
8c50d8a6f081673023aa0dd607810fb652d25a46c955d0fa744faf557517a465160cf01b39d5ee6d2c93dd172635500ff7315e54565f7f628ee8f0f8dab8c291
 DIST vim-patches-vim-9.0.1000-patches.tar.bz2 3245 BLAKE2B 
3bf3d0e314cc3f96d5d9675de196a62c4c8a72645d56ef94b80768571c99cba5cc556442e3bd2dfa8818460fd851fe7bd1ae15999af7225fb271b81c43105843
 SHA512 
2883441a2001bf7ce89a7f0862f780b71cc0164c8fcb8dbdf7040e1bcbcf408d138d3d77f308aa54c762e9975fa5ec89cfceeabbf721344dfc938870a363667a

diff --git a/app-editors/vim/vim-9.0.1677.ebuild 
b/app-editors/vim/vim-9.0.1677.ebuild
new file mode 100644
index ..fb932d372b68
--- /dev/null
+++ b/app-editors/vim/vim-9.0.1677.ebuild
@@ -0,0 +1,370 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump with app-editors/vim-core and app-editors/gvim
+
+VIM_VERSION="9.0"
+VIM_PATCHES_VERSION="9.0.1000"
+
+LUA_COMPAT=( lua5-{1..4} luajit )
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE="threads(+)"
+USE_RUBY="ruby27 ruby30 ruby31"
+
+inherit vim-doc flag-o-matic bash-completion-r1 lua-single python-single-r1 
ruby-single toolchain-funcs desktop xdg-utils
+
+if [[ ${PV} == * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vim/vim.git";
+else
+   SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   
https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+fi
+
+DESCRIPTION="Vim, an improved vi-style text editor"
+HOMEPAGE="https://www.vim.org https://github.com/vim/vim";
+
+LICENSE="vim"
+SLOT="0"
+IUSE="X acl crypt cscope debug gpm lua minimal nls perl python racket ruby 
selinux sound tcl terminal vim-pager"
+REQUIRED_USE="
+   lua? ( ${LUA_REQUIRED_USE} )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   vim-pager? ( !minimal )
+"
+
+RDEPEND="
+   >=app-eselect/eselect-vi-1.1
+   >=sys-libs/ncurses-5.2-r2:0=
+   nls? ( virtual/libintl )
+   acl? ( kernel_linux? ( sys-apps/acl ) )
+   crypt? ( dev-libs/libsodium:= )
+   cscope? ( dev-util/cscope )
+   gpm? ( >=sys-libs/gpm-1.19.3 )
+   lua? ( ${LUA_DEPS}
+   $(lua_gen_impl_dep 'deprecated' lua5-1)
+   )
+   ~app-editors/vim-core-${PV}
+   vim-pager? ( app-editors/vim-core[-minimal] )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS} )
+   racket? ( dev-scheme/racket )
+   ruby? ( ${RUBY_DEPS} )
+   selinux? ( sys-libs/libselinux )
+   sound? ( media-libs/libcanberra )
+   tcl? ( dev-lang/tcl:0= )
+   X? ( x11-libs/libXt )
+"
+DEPEND="${RDEPEND}"
+# configure runs the Lua interpreter
+BDEPEND="
+   sys-devel/autoconf
+   lua? ( ${LUA_DEPS} )
+   nls? ( sys-devel/gettext )
+"
+PDEPEND="!minimal? ( app-vim/gentoo-syntax )"
+
+if [[ ${PV} != * ]]; then
+  

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/

2023-07-15 Thread Joonas Niilola
commit: 0b04cbc4da9a1e0a78d4e04ac97a91a075fa3221
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Jul 16 06:56:43 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Jul 16 06:56:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b04cbc4

app-editors/vim-core: Stabilize 9.0.1503 x86, #908424

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim-core/vim-core-9.0.1503.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim-core/vim-core-9.0.1503.ebuild 
b/app-editors/vim-core/vim-core-9.0.1503.ebuild
index 19382fdfed24..db2ce95e2a6d 100644
--- a/app-editors/vim-core/vim-core-9.0.1503.ebuild
+++ b/app-editors/vim-core/vim-core-9.0.1503.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> 
vim-${PV}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 S="${WORKDIR}/vim-${PV}"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/

2023-07-15 Thread Joonas Niilola
commit: 1755b0351302c27f3b6c21c7adb72ec0c49107bf
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Jul 16 06:56:43 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Jul 16 06:56:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1755b035

app-editors/vim: Stabilize 9.0.1503 x86, #908424

Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/vim/vim-9.0.1503.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/vim/vim-9.0.1503.ebuild 
b/app-editors/vim/vim-9.0.1503.ebuild
index f096e21232fc..191a1abcf952 100644
--- a/app-editors/vim/vim-9.0.1503.ebuild
+++ b/app-editors/vim/vim-9.0.1503.ebuild
@@ -21,7 +21,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/vim/vim/archive/v${PV}.tar.gz -> ${P}.tar.gz

https://gitweb.gentoo.org/proj/vim-patches.git/snapshot/vim-patches-vim-${VIM_PATCHES_VERSION}-patches.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 fi
 
 DESCRIPTION="Vim, an improved vi-style text editor"



  1   2   3   4   5   6   7   >