[gentoo-commits] repo/proj/guru:dev commit in: app-shells/igr/files/, app-shells/igr/

2024-04-25 Thread Vitaly Zdanevich
commit: 84cb4e4f65299cc71776688e49476ce178c175fc
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Thu Apr 25 06:52:27 2024 +
Commit: Vitaly Zdanevich  ya  ru>
CommitDate: Thu Apr 25 06:52:27 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84cb4e4f

app-shells/igr: remove patch - because fixed on upstream

Signed-off-by: Vitaly Zdanevich  ya.ru>

 app-shells/igr/Manifest  |  2 +-
 app-shells/igr/files/vim-open-current-line.patch | 35 
 app-shells/igr/igr-.ebuild   |  9 ++
 3 files changed, 4 insertions(+), 42 deletions(-)

diff --git a/app-shells/igr/Manifest b/app-shells/igr/Manifest
index 649c24dbab..3719555f86 100644
--- a/app-shells/igr/Manifest
+++ b/app-shells/igr/Manifest
@@ -1 +1 @@
-DIST igr 552 BLAKE2B 
a632836b25764e196b5fffa129a0a163e89d75e2ff84479f780d9375774b64b6e3e04bbe34de65aa0d4b12a68ef4acd1c7653423ab6fe828e2ceb48b4146db95
 SHA512 
4e8be976248e4ba625ce9a360ecc99c9572ce2e2c6b7a9035d9171620a5dab21ef64b9b13e904ffe8f2f886c198ed594dd2477058f7727d8749791f6670747e6
+DIST igr 339 BLAKE2B 
a9c091ec4cc3c80648e394d5d03e60bce52980b86cbb7f1c5036cf987dc871b9266a9a40482fffab6dacf69bda336eb8c339e62a5571d52cbac6123805d5a52f
 SHA512 
a779e668defeeab4c81727e985ba980d88c74d8764e74352f78c844e5c21afa3d034115588a48c93836924463141f0db612214ae6d3737a6267fd7dad8611c14

diff --git a/app-shells/igr/files/vim-open-current-line.patch 
b/app-shells/igr/files/vim-open-current-line.patch
deleted file mode 100644
index 6a83ede8cd..00
--- a/app-shells/igr/files/vim-open-current-line.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-This patch change calling of v to $EDITOR, see 
https://github.com/DanielFGray/fzf-scripts/issues/26
-
-And add more context to the search.
-
-Also open a file on the specific line
-
-diff --git a/igr b/igr
-index 73a6e8c..e23082a 100755
 a/igr
-+++ b/igr
-@@ -1,11 +1,11 @@
- #!/usr/bin/env bash
- 
--declare preview='bat --color=always --style=header,numbers -H {2} {1} | grep 
-C3 {q}'
-+declare preview='bat --color=always --style=header,numbers -H {2} {1} | grep 
--context 999 {q}'
- 
- while getopts ':l' x; do
-   case "$x" in
- l) list_files=1
--  preview='bat --color=always --style=header,numbers {1} | grep -C3 {q}'
-+  preview='bat --color=always --style=header,numbers {1} | grep --context 
999 {q}'
-   ;;
-   esac
- done
-@@ -18,5 +18,7 @@ fzf -d: \
- --query="$1" \
- --phony \
- --bind="change:reload:rg -n ${list_files:+-l} --color=always {q}" \
bind='enter:execute:v {1}' \
preview="[[ -n {1} ]] && $preview"
-+--bind='enter:execute:echo "$EDITOR {1}:{2}" && $EDITOR {1}:{2}' \
-+--preview="[[ -n {1} ]] && $preview" \
-+--preview-window="/2"
-+
-+ # echo to save in shell history

diff --git a/app-shells/igr/igr-.ebuild b/app-shells/igr/igr-.ebuild
index 629636be83..596613cfc2 100644
--- a/app-shells/igr/igr-.ebuild
+++ b/app-shells/igr/igr-.ebuild
@@ -7,7 +7,10 @@ DESCRIPTION="Interactive rg (ripgrep) wrapper in fzf: 
Interactive GRep (search)"
 HOMEPAGE="https://github.com/DanielFGray/fzf-scripts;
 SRC_URI="https://raw.githubusercontent.com/DanielFGray/fzf-scripts/master/$PN;
 
+S="$WORKDIR"
+
 LICENSE="GPL-3"
+
 SLOT=0
 
 RDEPEND="
@@ -16,16 +19,10 @@ RDEPEND="
sys-apps/bat
 "
 
-S="$WORKDIR"
-
 src_unpack() {
cp "$DISTDIR/$PN" "$WORKDIR/" || die
 }
 
-PATCHES=(
-   "$FILESDIR/vim-open-current-line.patch"
-)
-
 src_install() {
dobin "${PN}"
 }



[gentoo-commits] repo/proj/guru:dev commit in: app-shells/igr/files/

2024-04-11 Thread Vitaly Zdanevich
commit: 61aa494e654382cc132105c661dfb9f6387a7707
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Thu Apr 11 10:03:18 2024 +
Commit: Vitaly Zdanevich  ya  ru>
CommitDate: Thu Apr 11 10:03:18 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=61aa494e

patch: add documentation

Signed-off-by: Vitaly Zdanevich  ya.ru>

 app-shells/igr/files/vim-open-current-line.patch | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/app-shells/igr/files/vim-open-current-line.patch 
b/app-shells/igr/files/vim-open-current-line.patch
index 1b3b342406..4d5cdae91f 100644
--- a/app-shells/igr/files/vim-open-current-line.patch
+++ b/app-shells/igr/files/vim-open-current-line.patch
@@ -1,3 +1,9 @@
+This patch change calling of v to $EDITOR, see 
https://github.com/DanielFGray/fzf-scripts/issues/26
+
+And add more context to the search.
+
+Also open a file on the specific line
+
 diff --git a/igr b/igr
 index 73a6e8c..e23082a 100755
 --- a/igr



[gentoo-commits] repo/proj/guru:dev commit in: app-shells/igr/files/

2024-04-11 Thread Vitaly Zdanevich
commit: 6b976b3e8daff69839ecf1fdc0f0323a0abbe40d
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Thu Apr 11 09:54:26 2024 +
Commit: Vitaly Zdanevich  ya  ru>
CommitDate: Thu Apr 11 09:54:26 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6b976b3e

app-shells/igr: vim -> $EDITOR

Signed-off-by: Vitaly Zdanevich  ya.ru>

 app-shells/igr/files/vim-open-current-line.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/igr/files/vim-open-current-line.patch 
b/app-shells/igr/files/vim-open-current-line.patch
index bd18f4a0d5..1b3b342406 100644
--- a/app-shells/igr/files/vim-open-current-line.patch
+++ b/app-shells/igr/files/vim-open-current-line.patch
@@ -22,7 +22,7 @@ index 73a6e8c..e23082a 100755
  --bind="change:reload:rg -n ${list_files:+-l} --color=always {q}" \
 ---bind='enter:execute:v {1}' \
 ---preview="[[ -n {1} ]] && $preview"
-+--bind='enter:execute:echo "vim {1}:{2}" && vim {1}:{2}' \
++--bind='enter:execute:echo "$EDITOR {1}:{2}" && $EDITOR {1}:{2}' \
 +--preview="[[ -n {1} ]] && $preview"
 +
 + # echo to save in shell history