-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(app-misc/tmux-filter): new ebuild
- Loading branch information
Showing
5 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST tmux-filter-20231207.tar.gz 1938 BLAKE2B 69e7e44673363b3d79249a3dcaffdf4d65c89356e95bb522f3e89839e60a4e58a0fbd15d66ba744fa3115f0fc4edb32ad19b9f4b23c91d8912da12c95a0e5acd SHA512 c5c47894844a15d64ac0c86fc37f300da84a7e4a7400d6c273074d8a096e2adec4b99c33babadd87ce2c34586c68a504a867770c5fe375aa824415255952a02d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>spiderx@spiderx.dp.ua</email> | ||
<name>Vladimir Pavljuchenkov</name> | ||
</maintainer> | ||
<maintainer type="project"> | ||
<email>proxy-maint@gentoo.org</email> | ||
<name>Proxy Maintainers</name> | ||
</maintainer> | ||
<longdescription lang="en"> | ||
This package provides a tmux plugin, that adds an option to filter | ||
current buffer by some text/pattern. | ||
</longdescription> | ||
<upstream> | ||
<remote-id type="github">MaximilianGaedig/tmux-filter</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright 1999-2025 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
COMMIT="11acbea4adffaff575d772d16d7dcb3c3ad3c89d" | ||
|
||
DESCRIPTION="Filter logs by some text or pattern" | ||
HOMEPAGE="https://github.com/MaximilianGaedig/tmux-filter" | ||
SRC_URI="https://github.com/MaximilianGaedig/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" | ||
S="${WORKDIR}/${PN}-${COMMIT}" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
RDEPEND="app-misc/tmux" | ||
|
||
src_install() { | ||
einstalldocs | ||
insinto /usr/share/tmux-plugins/tmux-filter | ||
doins -r scripts filter.tmux | ||
fperms +x /usr/share/tmux-plugins/tmux-filter/scripts/live-filter.bash \ | ||
/usr/share/tmux-plugins/tmux-filter/filter.tmux | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright 1999-2025 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
EGIT_REPO_URI="https://github.com/MaximilianGaedig/${PN}.git" | ||
|
||
inherit git-r3 | ||
|
||
DESCRIPTION="Filter logs by some text or pattern" | ||
HOMEPAGE="https://github.com/MaximilianGaedig/tmux-filter" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
|
||
RDEPEND="app-misc/tmux" | ||
|
||
src_install() { | ||
einstalldocs | ||
insinto /usr/share/tmux-plugins/tmux-filter | ||
doins -r scripts filter.tmux | ||
fperms +x /usr/share/tmux-plugins/tmux-filter/scripts/live-filter.bash \ | ||
/usr/share/tmux-plugins/tmux-filter/filter.tmux | ||
} |