* [PR PATCH] ruby-tmuxinator: fix naming of completion file
@ 2024-07-22 19:09 dataCobra
2024-07-22 19:12 ` [PR PATCH] [Updated] " dataCobra
` (8 more replies)
0 siblings, 9 replies; 10+ messages in thread
From: dataCobra @ 2024-07-22 19:09 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 616 bytes --]
There is a new pull request by dataCobra against master on the void-packages repository
https://github.com/dataCobra/void-packages tmuxinator
https://github.com/void-linux/void-packages/pull/51389
ruby-tmuxinator: fix naming of completion file
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- x86_64-musl
- i686
A patch file from https://github.com/void-linux/void-packages/pull/51389.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tmuxinator-51389.patch --]
[-- Type: text/x-diff, Size: 1062 bytes --]
From 4c85c7c990ddfaad7fd0340cd4ab847d373049f0 Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Mon, 22 Jul 2024 20:53:49 +0200
Subject: [PATCH] ruby-tmuxinator: fix naming of completion file
---
srcpkgs/ruby-tmuxinator/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/ruby-tmuxinator/template b/srcpkgs/ruby-tmuxinator/template
index b1b42cc851d8a6..77db0c0d659048 100644
--- a/srcpkgs/ruby-tmuxinator/template
+++ b/srcpkgs/ruby-tmuxinator/template
@@ -1,7 +1,7 @@
# Template file for 'ruby-tmuxinator'
pkgname=ruby-tmuxinator
version=3.3.0
-revision=1
+revision=2
build_style=gemspec
depends="ruby-erubi>=1.7 ruby-thor>=1.3.0 ruby-xdg>=4.3.0 tmux"
short_desc="Create and manage complex tmux sessions easily"
@@ -15,6 +15,6 @@ checksum=e15cf0d7fc8fc88b89adbeeebacd8061620c759da060b1bccf93bf8541679061
post_install() {
vlicense LICENSE
for sh in bash fish zsh; do
- vcompletion "completion/tmuxinator.${sh}" ${sh}
+ vcompletion "completion/tmuxinator.${sh}" ${sh} tmuxinator
done
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PR PATCH] [Updated] ruby-tmuxinator: fix naming of completion file
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
@ 2024-07-22 19:12 ` dataCobra
2024-07-22 19:13 ` dataCobra
` (7 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: dataCobra @ 2024-07-22 19:12 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 621 bytes --]
There is an updated pull request by dataCobra against master on the void-packages repository
https://github.com/dataCobra/void-packages tmuxinator
https://github.com/void-linux/void-packages/pull/51389
ruby-tmuxinator: fix naming of completion file
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- x86_64-musl
- i686
A patch file from https://github.com/void-linux/void-packages/pull/51389.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tmuxinator-51389.patch --]
[-- Type: text/x-diff, Size: 1092 bytes --]
From 221d235edc9b7d5ccc5fef5053a417a6bb3d7b77 Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Mon, 22 Jul 2024 21:12:28 +0200
Subject: [PATCH] ruby-tmuxinator: fix naming of completion file
---
srcpkgs/ruby-tmuxinator/template | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/srcpkgs/ruby-tmuxinator/template b/srcpkgs/ruby-tmuxinator/template
index b1b42cc851d8a6..5b919b8d24b381 100644
--- a/srcpkgs/ruby-tmuxinator/template
+++ b/srcpkgs/ruby-tmuxinator/template
@@ -1,7 +1,7 @@
# Template file for 'ruby-tmuxinator'
pkgname=ruby-tmuxinator
version=3.3.0
-revision=1
+revision=2
build_style=gemspec
depends="ruby-erubi>=1.7 ruby-thor>=1.3.0 ruby-xdg>=4.3.0 tmux"
short_desc="Create and manage complex tmux sessions easily"
@@ -14,7 +14,7 @@ checksum=e15cf0d7fc8fc88b89adbeeebacd8061620c759da060b1bccf93bf8541679061
post_install() {
vlicense LICENSE
- for sh in bash fish zsh; do
- vcompletion "completion/tmuxinator.${sh}" ${sh}
+ for sh in bash fish; do
+ vcompletion "completion/tmuxinator.${sh}" ${sh} tmuxinator
done
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ruby-tmuxinator: fix naming of completion file
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
2024-07-22 19:12 ` [PR PATCH] [Updated] " dataCobra
@ 2024-07-22 19:13 ` dataCobra
2024-07-22 21:07 ` tranzystorekk
` (6 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: dataCobra @ 2024-07-22 19:13 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 233 bytes --]
New comment by dataCobra on void-packages repository
https://github.com/void-linux/void-packages/pull/51389#issuecomment-2243641931
Comment:
Removed zsh completion from the completion creation process to resolve the file conflict.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ruby-tmuxinator: fix naming of completion file
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
2024-07-22 19:12 ` [PR PATCH] [Updated] " dataCobra
2024-07-22 19:13 ` dataCobra
@ 2024-07-22 21:07 ` tranzystorekk
2024-07-23 15:28 ` [PR PATCH] [Updated] " dataCobra
` (5 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: tranzystorekk @ 2024-07-22 21:07 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 250 bytes --]
New comment by tranzystorekk on void-packages repository
https://github.com/void-linux/void-packages/pull/51389#issuecomment-2243816779
Comment:
Seems backwards to remove completion from the actual package of origin instead of `zsh-completions`...
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PR PATCH] [Updated] ruby-tmuxinator: fix naming of completion file
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
` (2 preceding siblings ...)
2024-07-22 21:07 ` tranzystorekk
@ 2024-07-23 15:28 ` dataCobra
2024-07-23 15:41 ` dataCobra
` (4 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: dataCobra @ 2024-07-23 15:28 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 621 bytes --]
There is an updated pull request by dataCobra against master on the void-packages repository
https://github.com/dataCobra/void-packages tmuxinator
https://github.com/void-linux/void-packages/pull/51389
ruby-tmuxinator: fix naming of completion file
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- x86_64-musl
- i686
A patch file from https://github.com/void-linux/void-packages/pull/51389.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tmuxinator-51389.patch --]
[-- Type: text/x-diff, Size: 2004 bytes --]
From dea0f5e3a8219c86a2d88a286582669cf8abc3b8 Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Tue, 23 Jul 2024 17:26:20 +0200
Subject: [PATCH 1/2] ruby-tmuxinator: fix naming of completion file
---
srcpkgs/ruby-tmuxinator/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/ruby-tmuxinator/template b/srcpkgs/ruby-tmuxinator/template
index b1b42cc851d8a6..77db0c0d659048 100644
--- a/srcpkgs/ruby-tmuxinator/template
+++ b/srcpkgs/ruby-tmuxinator/template
@@ -1,7 +1,7 @@
# Template file for 'ruby-tmuxinator'
pkgname=ruby-tmuxinator
version=3.3.0
-revision=1
+revision=2
build_style=gemspec
depends="ruby-erubi>=1.7 ruby-thor>=1.3.0 ruby-xdg>=4.3.0 tmux"
short_desc="Create and manage complex tmux sessions easily"
@@ -15,6 +15,6 @@ checksum=e15cf0d7fc8fc88b89adbeeebacd8061620c759da060b1bccf93bf8541679061
post_install() {
vlicense LICENSE
for sh in bash fish zsh; do
- vcompletion "completion/tmuxinator.${sh}" ${sh}
+ vcompletion "completion/tmuxinator.${sh}" ${sh} tmuxinator
done
}
From 855cc219318f71bf433198b5c396ef899b4cd93b Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Tue, 23 Jul 2024 17:28:44 +0200
Subject: [PATCH 2/2] zsh-completions: remove tmuxinator
---
srcpkgs/zsh-completions/template | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/srcpkgs/zsh-completions/template b/srcpkgs/zsh-completions/template
index fdb752ccf4c100..9f5ae417194606 100644
--- a/srcpkgs/zsh-completions/template
+++ b/srcpkgs/zsh-completions/template
@@ -1,7 +1,7 @@
# Template file for 'zsh-completions'
pkgname=zsh-completions
version=0.35.0
-revision=1
+revision=2
depends="zsh"
short_desc="Additional completions for Zsh"
maintainer="Alexander Gehrke <void@qwertyuiop.de>"
@@ -17,5 +17,6 @@ post_patch() {
do_install() {
vmkdir usr/share/zsh/site-functions/
vcopy src/_* usr/share/zsh/site-functions/
+ rm /usr/share/zsh/site-functions/tmuxinator
vlicense LICENSE
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PR PATCH] [Updated] ruby-tmuxinator: fix naming of completion file
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
` (3 preceding siblings ...)
2024-07-23 15:28 ` [PR PATCH] [Updated] " dataCobra
@ 2024-07-23 15:41 ` dataCobra
2024-07-23 15:46 ` dataCobra
` (3 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: dataCobra @ 2024-07-23 15:41 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 621 bytes --]
There is an updated pull request by dataCobra against master on the void-packages repository
https://github.com/dataCobra/void-packages tmuxinator
https://github.com/void-linux/void-packages/pull/51389
ruby-tmuxinator: fix naming of completion file
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- x86_64-musl
- i686
A patch file from https://github.com/void-linux/void-packages/pull/51389.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tmuxinator-51389.patch --]
[-- Type: text/x-diff, Size: 2004 bytes --]
From dea0f5e3a8219c86a2d88a286582669cf8abc3b8 Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Tue, 23 Jul 2024 17:26:20 +0200
Subject: [PATCH 1/2] ruby-tmuxinator: fix naming of completion file
---
srcpkgs/ruby-tmuxinator/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/ruby-tmuxinator/template b/srcpkgs/ruby-tmuxinator/template
index b1b42cc851d8a6..77db0c0d659048 100644
--- a/srcpkgs/ruby-tmuxinator/template
+++ b/srcpkgs/ruby-tmuxinator/template
@@ -1,7 +1,7 @@
# Template file for 'ruby-tmuxinator'
pkgname=ruby-tmuxinator
version=3.3.0
-revision=1
+revision=2
build_style=gemspec
depends="ruby-erubi>=1.7 ruby-thor>=1.3.0 ruby-xdg>=4.3.0 tmux"
short_desc="Create and manage complex tmux sessions easily"
@@ -15,6 +15,6 @@ checksum=e15cf0d7fc8fc88b89adbeeebacd8061620c759da060b1bccf93bf8541679061
post_install() {
vlicense LICENSE
for sh in bash fish zsh; do
- vcompletion "completion/tmuxinator.${sh}" ${sh}
+ vcompletion "completion/tmuxinator.${sh}" ${sh} tmuxinator
done
}
From b7dddd0e1c9cb698b9a95f6bdd5027656d57bef4 Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Tue, 23 Jul 2024 17:41:06 +0200
Subject: [PATCH 2/2] zsh-completions: remove tmuxinator
---
srcpkgs/zsh-completions/template | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/srcpkgs/zsh-completions/template b/srcpkgs/zsh-completions/template
index fdb752ccf4c100..23ac267c7a6d69 100644
--- a/srcpkgs/zsh-completions/template
+++ b/srcpkgs/zsh-completions/template
@@ -1,7 +1,7 @@
# Template file for 'zsh-completions'
pkgname=zsh-completions
version=0.35.0
-revision=1
+revision=2
depends="zsh"
short_desc="Additional completions for Zsh"
maintainer="Alexander Gehrke <void@qwertyuiop.de>"
@@ -17,5 +17,6 @@ post_patch() {
do_install() {
vmkdir usr/share/zsh/site-functions/
vcopy src/_* usr/share/zsh/site-functions/
+ rm usr/share/zsh/site-functions/_tmuxinator
vlicense LICENSE
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PR PATCH] [Updated] ruby-tmuxinator: fix naming of completion file
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
` (4 preceding siblings ...)
2024-07-23 15:41 ` dataCobra
@ 2024-07-23 15:46 ` dataCobra
2024-07-23 15:48 ` dataCobra
` (2 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: dataCobra @ 2024-07-23 15:46 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 621 bytes --]
There is an updated pull request by dataCobra against master on the void-packages repository
https://github.com/dataCobra/void-packages tmuxinator
https://github.com/void-linux/void-packages/pull/51389
ruby-tmuxinator: fix naming of completion file
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- x86_64-musl
- i686
A patch file from https://github.com/void-linux/void-packages/pull/51389.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tmuxinator-51389.patch --]
[-- Type: text/x-diff, Size: 1980 bytes --]
From dea0f5e3a8219c86a2d88a286582669cf8abc3b8 Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Tue, 23 Jul 2024 17:26:20 +0200
Subject: [PATCH 1/2] ruby-tmuxinator: fix naming of completion file
---
srcpkgs/ruby-tmuxinator/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/ruby-tmuxinator/template b/srcpkgs/ruby-tmuxinator/template
index b1b42cc851d8a6..77db0c0d659048 100644
--- a/srcpkgs/ruby-tmuxinator/template
+++ b/srcpkgs/ruby-tmuxinator/template
@@ -1,7 +1,7 @@
# Template file for 'ruby-tmuxinator'
pkgname=ruby-tmuxinator
version=3.3.0
-revision=1
+revision=2
build_style=gemspec
depends="ruby-erubi>=1.7 ruby-thor>=1.3.0 ruby-xdg>=4.3.0 tmux"
short_desc="Create and manage complex tmux sessions easily"
@@ -15,6 +15,6 @@ checksum=e15cf0d7fc8fc88b89adbeeebacd8061620c759da060b1bccf93bf8541679061
post_install() {
vlicense LICENSE
for sh in bash fish zsh; do
- vcompletion "completion/tmuxinator.${sh}" ${sh}
+ vcompletion "completion/tmuxinator.${sh}" ${sh} tmuxinator
done
}
From 5d30c344993285d553a7fce09eea64ec9ef0d804 Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Tue, 23 Jul 2024 17:46:13 +0200
Subject: [PATCH 2/2] zsh-completions: remove tmuxinator
---
srcpkgs/zsh-completions/template | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/srcpkgs/zsh-completions/template b/srcpkgs/zsh-completions/template
index fdb752ccf4c100..992e45ea6d37f5 100644
--- a/srcpkgs/zsh-completions/template
+++ b/srcpkgs/zsh-completions/template
@@ -1,7 +1,7 @@
# Template file for 'zsh-completions'
pkgname=zsh-completions
version=0.35.0
-revision=1
+revision=2
depends="zsh"
short_desc="Additional completions for Zsh"
maintainer="Alexander Gehrke <void@qwertyuiop.de>"
@@ -12,6 +12,7 @@ checksum=811bb4213622720872e08d6e0857f1dd7bc12ff7aa2099a170b76301a53f4fbe
post_patch() {
rm -f src/_composer
+ rm -f src/_tmuxinator
}
do_install() {
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ruby-tmuxinator: fix naming of completion file
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
` (5 preceding siblings ...)
2024-07-23 15:46 ` dataCobra
@ 2024-07-23 15:48 ` dataCobra
2024-07-24 5:12 ` [PR PATCH] [Updated] " dataCobra
2024-07-26 9:38 ` [PR PATCH] [Merged]: " tranzystorekk
8 siblings, 0 replies; 10+ messages in thread
From: dataCobra @ 2024-07-23 15:48 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 250 bytes --]
New comment by dataCobra on void-packages repository
https://github.com/void-linux/void-packages/pull/51389#issuecomment-2245613234
Comment:
Added zsh completion back from tmuxinator and updated zsh-completions to remove tmuxinator from the files.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PR PATCH] [Updated] ruby-tmuxinator: fix naming of completion file
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
` (6 preceding siblings ...)
2024-07-23 15:48 ` dataCobra
@ 2024-07-24 5:12 ` dataCobra
2024-07-26 9:38 ` [PR PATCH] [Merged]: " tranzystorekk
8 siblings, 0 replies; 10+ messages in thread
From: dataCobra @ 2024-07-24 5:12 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 621 bytes --]
There is an updated pull request by dataCobra against master on the void-packages repository
https://github.com/dataCobra/void-packages tmuxinator
https://github.com/void-linux/void-packages/pull/51389
ruby-tmuxinator: fix naming of completion file
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- x86_64-musl
- i686
A patch file from https://github.com/void-linux/void-packages/pull/51389.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tmuxinator-51389.patch --]
[-- Type: text/x-diff, Size: 1980 bytes --]
From dea0f5e3a8219c86a2d88a286582669cf8abc3b8 Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Tue, 23 Jul 2024 17:26:20 +0200
Subject: [PATCH 1/2] ruby-tmuxinator: fix naming of completion file
---
srcpkgs/ruby-tmuxinator/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/ruby-tmuxinator/template b/srcpkgs/ruby-tmuxinator/template
index b1b42cc851d8a6..77db0c0d659048 100644
--- a/srcpkgs/ruby-tmuxinator/template
+++ b/srcpkgs/ruby-tmuxinator/template
@@ -1,7 +1,7 @@
# Template file for 'ruby-tmuxinator'
pkgname=ruby-tmuxinator
version=3.3.0
-revision=1
+revision=2
build_style=gemspec
depends="ruby-erubi>=1.7 ruby-thor>=1.3.0 ruby-xdg>=4.3.0 tmux"
short_desc="Create and manage complex tmux sessions easily"
@@ -15,6 +15,6 @@ checksum=e15cf0d7fc8fc88b89adbeeebacd8061620c759da060b1bccf93bf8541679061
post_install() {
vlicense LICENSE
for sh in bash fish zsh; do
- vcompletion "completion/tmuxinator.${sh}" ${sh}
+ vcompletion "completion/tmuxinator.${sh}" ${sh} tmuxinator
done
}
From 281f81b12fbd3048ad4dbe5cf4ccf47d55f03022 Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Wed, 24 Jul 2024 07:12:33 +0200
Subject: [PATCH 2/2] zsh-completions: remove tmuxinator
---
srcpkgs/zsh-completions/template | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/srcpkgs/zsh-completions/template b/srcpkgs/zsh-completions/template
index fdb752ccf4c100..992e45ea6d37f5 100644
--- a/srcpkgs/zsh-completions/template
+++ b/srcpkgs/zsh-completions/template
@@ -1,7 +1,7 @@
# Template file for 'zsh-completions'
pkgname=zsh-completions
version=0.35.0
-revision=1
+revision=2
depends="zsh"
short_desc="Additional completions for Zsh"
maintainer="Alexander Gehrke <void@qwertyuiop.de>"
@@ -12,6 +12,7 @@ checksum=811bb4213622720872e08d6e0857f1dd7bc12ff7aa2099a170b76301a53f4fbe
post_patch() {
rm -f src/_composer
+ rm -f src/_tmuxinator
}
do_install() {
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PR PATCH] [Merged]: ruby-tmuxinator: fix naming of completion file
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
` (7 preceding siblings ...)
2024-07-24 5:12 ` [PR PATCH] [Updated] " dataCobra
@ 2024-07-26 9:38 ` tranzystorekk
8 siblings, 0 replies; 10+ messages in thread
From: tranzystorekk @ 2024-07-26 9:38 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 458 bytes --]
There's a merged pull request on the void-packages repository
ruby-tmuxinator: fix naming of completion file
https://github.com/void-linux/void-packages/pull/51389
Description:
#### Testing the changes
- I tested the changes in this PR: **YES**
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- x86_64-musl
- i686
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-07-26 9:38 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-22 19:09 [PR PATCH] ruby-tmuxinator: fix naming of completion file dataCobra
2024-07-22 19:12 ` [PR PATCH] [Updated] " dataCobra
2024-07-22 19:13 ` dataCobra
2024-07-22 21:07 ` tranzystorekk
2024-07-23 15:28 ` [PR PATCH] [Updated] " dataCobra
2024-07-23 15:41 ` dataCobra
2024-07-23 15:46 ` dataCobra
2024-07-23 15:48 ` dataCobra
2024-07-24 5:12 ` [PR PATCH] [Updated] " dataCobra
2024-07-26 9:38 ` [PR PATCH] [Merged]: " tranzystorekk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).