From 33d76683e1229949367499e38f9b70100ae5e6b9 Mon Sep 17 00:00:00 2001 From: Okko Date: Wed, 2 Oct 2024 20:50:20 +0300 Subject: [PATCH 1/6] neovim-src --- testing/community/src/neovim.ecmp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 testing/community/src/neovim.ecmp diff --git a/testing/community/src/neovim.ecmp b/testing/community/src/neovim.ecmp new file mode 100644 index 00000000..e42aca30 --- /dev/null +++ b/testing/community/src/neovim.ecmp @@ -0,0 +1,23 @@ + +[info] +name = neovim +version = 0.10.1 +license = Apache-2.0 +type = src +url = https://github.com/$NAME/$NAME/archive/refs/tags/v$VERSION.tar-gz +sha256 = edce96e79903adfcb3c41e9a8238511946325ea9568fde177a70a614501af689 + + +[description] +Vim-fork focused on extensibility and usability. A modal text editor. + +[dependencies] + +[download] +curl -L $URL --output $NAME-$VERSION.tar.gz +tar -xzf $NAME-$VERSION.tar.gz + +[install] +make CMAKE_BUILD_TYPE=Release $MAKE_FLAGS +make CMAKE_INSTALL_PREFIX=$BULID_ROOT install + From 14b10f1027a366a19e72c8020d896a6bff9322f0 Mon Sep 17 00:00:00 2001 From: Okko Date: Wed, 2 Oct 2024 20:55:32 +0300 Subject: [PATCH 2/6] fix typo: neovim-src --- testing/community/src/neovim.ecmp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/community/src/neovim.ecmp b/testing/community/src/neovim.ecmp index e42aca30..a064f23d 100644 --- a/testing/community/src/neovim.ecmp +++ b/testing/community/src/neovim.ecmp @@ -4,7 +4,7 @@ name = neovim version = 0.10.1 license = Apache-2.0 type = src -url = https://github.com/$NAME/$NAME/archive/refs/tags/v$VERSION.tar-gz +url = https://github.com/$NAME/$NAME/archive/refs/tags/v$VERSION.tar.gz sha256 = edce96e79903adfcb3c41e9a8238511946325ea9568fde177a70a614501af689 From 4d0037800903dee801227d27b33f5ab8ade13fb7 Mon Sep 17 00:00:00 2001 From: Okko Date: Wed, 2 Oct 2024 21:16:53 +0300 Subject: [PATCH 3/6] fix typo: neovim-src --- testing/community/src/neovim.ecmp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/community/src/neovim.ecmp b/testing/community/src/neovim.ecmp index a064f23d..e21d18b0 100644 --- a/testing/community/src/neovim.ecmp +++ b/testing/community/src/neovim.ecmp @@ -19,5 +19,5 @@ tar -xzf $NAME-$VERSION.tar.gz [install] make CMAKE_BUILD_TYPE=Release $MAKE_FLAGS -make CMAKE_INSTALL_PREFIX=$BULID_ROOT install +make CMAKE_INSTALL_PREFIX=$BUILD_ROOT install From bb16c6398a67b2c93252b4ef1a82263bdf2a39c6 Mon Sep 17 00:00:00 2001 From: Okko Date: Fri, 4 Oct 2024 19:18:16 +0300 Subject: [PATCH 4/6] update neovim-src --- testing/community/src/neovim.ecmp | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/testing/community/src/neovim.ecmp b/testing/community/src/neovim.ecmp index e21d18b0..2a6b87ff 100644 --- a/testing/community/src/neovim.ecmp +++ b/testing/community/src/neovim.ecmp @@ -3,9 +3,13 @@ name = neovim version = 0.10.1 license = Apache-2.0 +url = neovim.io type = src -url = https://github.com/$NAME/$NAME/archive/refs/tags/v$VERSION.tar.gz -sha256 = edce96e79903adfcb3c41e9a8238511946325ea9568fde177a70a614501af689 + + +[files] +$NAME-$VERSION.tar.gz https://github.com/$NAME/$NAME/archive/refs/tags/v$VERSION.tar.gz 546cb2da9fffbb7e913261344bbf4cf1622721f6c5a67aa77609e976e78b8e89 + [description] @@ -13,11 +17,17 @@ Vim-fork focused on extensibility and usability. A modal text editor. [dependencies] +[optional] +ninja + [download] curl -L $URL --output $NAME-$VERSION.tar.gz tar -xzf $NAME-$VERSION.tar.gz +[exports] +CMAKE_BUILD_TYPE=Release + [install] -make CMAKE_BUILD_TYPE=Release $MAKE_FLAGS +make make CMAKE_INSTALL_PREFIX=$BUILD_ROOT install From 4af91128b510b1ab41da393a005159bd8f75472e Mon Sep 17 00:00:00 2001 From: Okko Date: Fri, 4 Oct 2024 19:27:03 +0300 Subject: [PATCH 5/6] working now: neovim-src --- testing/community/src/neovim.ecmp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/community/src/neovim.ecmp b/testing/community/src/neovim.ecmp index 2a6b87ff..d6e02ffc 100644 --- a/testing/community/src/neovim.ecmp +++ b/testing/community/src/neovim.ecmp @@ -1,14 +1,14 @@ [info] name = neovim -version = 0.10.1 +version = 0.10.2 license = Apache-2.0 url = neovim.io type = src [files] -$NAME-$VERSION.tar.gz https://github.com/$NAME/$NAME/archive/refs/tags/v$VERSION.tar.gz 546cb2da9fffbb7e913261344bbf4cf1622721f6c5a67aa77609e976e78b8e89 +neovim-0.10.2.tar.gz https://github.com/neovim/neovim/archive/refs/tags/v0.10.2.tar.gz 546cb2da9fffbb7e913261344bbf4cf1622721f6c5a67aa77609e976e78b8e89 From e1402b7f8f2886127ce8fb58f1054211d4f2c4a6 Mon Sep 17 00:00:00 2001 From: AleksArt000 Date: Fri, 4 Oct 2024 19:00:30 +0200 Subject: [PATCH 6/6] moved neovim --- {testing/community => extra}/src/neovim.ecmp | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {testing/community => extra}/src/neovim.ecmp (100%) diff --git a/testing/community/src/neovim.ecmp b/extra/src/neovim.ecmp similarity index 100% rename from testing/community/src/neovim.ecmp rename to extra/src/neovim.ecmp