This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #568 from shnups/podman-tui-0.11.0
New ebuild for podman-tui-0.11.0
- Loading branch information
Showing
3 changed files
with
39 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
DIST podman-tui-0.11.0.tar.gz 13317542 BLAKE2B 0492799b7e61eaa75344392d824be6f41bac0b61510587cca936ec2e5f516e2513e709d739e66cd86a658fa916f61a02dbf0802a3761bab2ccb11705c3d514f3 SHA512 1b5ce216829a0f2ef345920ea908a5f721ee704bf3c7efe121e42c413edb84fb247eb32964fcd7928c734df93efd85a3c1fb5a92b0e6f3c1de3b4906fbc77fe2 | ||
EBUILD podman-tui-0.11.0.ebuild 563 BLAKE2B 8b60eaaac0c384ad8a9918a53ebb30ac3e11805de2d7de673c739f349771c8f83659ab8215494467c48f205ce4da1e419ef21854575018e1fbe46a4bfa22e814 SHA512 e944e66f30b5f24e1c04250007293f584edb0ae27d773a58e4b2a6638dd6df76f8aabaad3b0cc3b9ef902ce7ad107437d6eb19030e842c9fe5b71be0afd7ab66 | ||
MISC metadata.xml 721 BLAKE2B dc8fae9ff8514d7aaa6fdbd655a62968137ecd1098f76e1c554f8fee71fde8f0c952566fb0d356ad073161f0c48c734c3de4f263419acda7949e3bd79cd2f163 SHA512 ceed23fc1587ed2975160f1c173ced7fe3ca3d7ad820542931106edebeac0065a28ee19ee90ca04da119b9b1c7039f4c0077afbad5ef371f9150e0b63b9df572 |
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,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<upstream> | ||
<bugs-to>https://github.com/containers/podman-tui/issues</bugs-to> | ||
<changelog>https://github.com/containers/podman-tui/releases</changelog> | ||
<doc>https://github.com/containers/podman-tui/blob/main/docs/README.md/</doc> | ||
</upstream> | ||
<maintainer type="person"> | ||
<name>shnups</name> | ||
<email>romain.meson@gmail.com</email> | ||
</maintainer> | ||
<longdescription lang="en"> podman-tui is a terminal user interface for podman v4 (>=4.0.2). It is | ||
using podman go bindings to communicate with local or remote podman machine (through SSH). </longdescription> | ||
</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,21 @@ | ||
# Copyright 2021-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
inherit go-module | ||
|
||
GIT_COMMIT="33d9be57f954530aa38e231f06caafd037b9a9dd" | ||
|
||
DESCRIPTION="Terminal user interface for Podman v4." | ||
HOMEPAGE="https://github.com/containers/${PN}/" | ||
SRC_URI="https://github.com/containers/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
DOCS=(CODE-OF-CONDUCT.md CONTRIBUTING.md LICENSE OWNERS README.md SECURITY.md) | ||
|
||
src_install() { | ||
dobin bin/${PN} | ||
einstalldocs | ||
} |