diff options
author | 2018-10-27 17:25:16 +0100 | |
---|---|---|
committer | 2018-10-27 17:25:16 +0100 | |
commit | b522df8e08ab2baac14d993c96164845755f7cc6 (patch) | |
tree | 4f8f543f69859ae869e9f2932db096dc828ee1f4 /app-emulation | |
parent | revbump opengrok (diff) | |
download | lmiphay-b522df8e08ab2baac14d993c96164845755f7cc6.tar.gz lmiphay-b522df8e08ab2baac14d993c96164845755f7cc6.tar.bz2 lmiphay-b522df8e08ab2baac14d993c96164845755f7cc6.zip |
add ebuild for pipework
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/pipework/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/pipework/pipework-20170822.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/app-emulation/pipework/Manifest b/app-emulation/pipework/Manifest new file mode 100644 index 0000000..f891e97 --- /dev/null +++ b/app-emulation/pipework/Manifest @@ -0,0 +1 @@ +EBUILD pipework-20170822.ebuild 516 BLAKE2B 022c902800425cc0e09be25ecf804720e89fec6b821e8b57fc79469a64f02088d732ca86716da7b6ba876d7d83c84a1c3de51e608877feac688028b52ddd1d8d SHA512 f3aaebf6f0f85c438ba855c2f8741f9bf757d51faf5b5f43f2a54f73c205ff739dddb824f4de04f041f73bb1b4c1949ec67de516cb7daff80a4f19dc6b0731e2 diff --git a/app-emulation/pipework/pipework-20170822.ebuild b/app-emulation/pipework/pipework-20170822.ebuild new file mode 100644 index 0000000..3152982 --- /dev/null +++ b/app-emulation/pipework/pipework-20170822.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 + +DESCRIPTION="Software-Defined Networking for Linux Containers" +HOMEPAGE="https://github.com/jpetazzo/pipework" +EGIT_REPO_URI="https://github.com/jpetazzo/pipework.git" +EGIT_COMMIT="ae42f1b5fef82b3bc23fe93c95c345e7af65fef3" + +LICENSE="Apache-2/0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" +" +RDEPEND="${DEPEND} + app-shells/bash +" + +src_install() { + dobin pipework + dodoc README.md +} |