-
-
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-power-zoom): 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-power-zoom-20241221.tar.gz 6201 BLAKE2B c3f0c924bf6844fe5b6bcd94a491dfd9913c91362fd16af4720ee424c004a07d7fccba187656743b66e9219f8e473a978937a372c742f4e25076b494ee22a9d8 SHA512 36786cc4f812691678a0382277b7b1ef2452bc9027ae2b5fb9bfc3e18deee2b8da8f0933914615b0009444dc414d7b18ede662377ec3335924f8dc55a700ea2e |
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>[email protected]</email> | ||
<name>Vladimir Pavljuchenkov</name> | ||
</maintainer> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Proxy Maintainers</name> | ||
</maintainer> | ||
<longdescription lang="en"> | ||
This package provides a tmux plugin to zoom pane to separate window, | ||
and un-zoom back into the original location. | ||
</longdescription> | ||
<upstream> | ||
<remote-id type="github">jaclu/tmux-power-zoom</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="3a1de2280e9b7ffcb8efd009fc87fd34ecbb14ac" | ||
|
||
DESCRIPTION="Zoom pane to separate window, and unzoom it back" | ||
HOMEPAGE="https://github.com/jaclu/tmux-power-zoom" | ||
SRC_URI="https://github.com/jaclu/${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-power-zoom | ||
doins -r scripts power-zoom.tmux | ||
fperms +x /usr/share/tmux-plugins/tmux-power-zoom/scripts/power_zoom.sh \ | ||
/usr/share/tmux-plugins/tmux-power-zoom/power-zoom.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/jaclu/${PN}.git" | ||
|
||
inherit git-r3 | ||
|
||
DESCRIPTION="Zoom pane to separate window, and unzoom it back" | ||
HOMEPAGE="https://github.com/jaclu/tmux-power-zoom" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
|
||
RDEPEND="app-misc/tmux" | ||
|
||
src_install() { | ||
einstalldocs | ||
insinto /usr/share/tmux-plugins/tmux-power-zoom | ||
doins -r scripts power-zoom.tmux | ||
fperms +x /usr/share/tmux-plugins/tmux-power-zoom/scripts/power_zoom.sh \ | ||
/usr/share/tmux-plugins/tmux-power-zoom/power-zoom.tmux | ||
} |