From 6f3aef0ce665c08e682cbf4ea2b9d6e188509db5 Mon Sep 17 00:00:00 2001 From: Mathieu Tortuyaux Date: Sun, 19 Apr 2020 19:39:51 +0200 Subject: [PATCH] app-misc/pfetch: add new package a pretty system information tool written in POSIX sh Package-Manager: Portage-2.3.89, Repoman 2.3.20 Signed-off-by: Mathieu Tortuyaux --- app-misc/pfetch/Manifest | 1 + app-misc/pfetch/metadata.xml | 16 ++++++++++++++++ app-misc/pfetch/pfetch-0.6.0.ebuild | 17 +++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 app-misc/pfetch/Manifest create mode 100644 app-misc/pfetch/metadata.xml create mode 100644 app-misc/pfetch/pfetch-0.6.0.ebuild diff --git a/app-misc/pfetch/Manifest b/app-misc/pfetch/Manifest new file mode 100644 index 0000000000..de3d5b94c9 --- /dev/null +++ b/app-misc/pfetch/Manifest @@ -0,0 +1 @@ +DIST pfetch-0.6.0.tar.gz 17431 BLAKE2B 300f6f44f9306df4f438227a6f35bd54f50e477b950a45d63656f7c460cfc30a8b44ebdb3d5fdcf1e808e3b8e8e69e14088ff73a5da4485abf694893f2cc53f3 SHA512 868901bec6ae8999ad40fcb94bdf804969a3dfd724dc554d62f59982daf48d359094764b2e45d4816983d4f46e38de30f0bcb646ecd95bf3263ba128b87a1ddf diff --git a/app-misc/pfetch/metadata.xml b/app-misc/pfetch/metadata.xml new file mode 100644 index 0000000000..9ee4ccda42 --- /dev/null +++ b/app-misc/pfetch/metadata.xml @@ -0,0 +1,16 @@ + + + + + mathieu.tortuyaux@gmail.com + Mathieu Tortuyaux + + +The goal of this project is to implement a simple system information tool in POSIX sh using features built into the language itself (where possible). +The source code is highly documented and I hope it will act as a learning resource for POSIX sh and simple information detection across various different operating systems. + + + https://github.com/dylanaraps/pfetch/issues + + + diff --git a/app-misc/pfetch/pfetch-0.6.0.ebuild b/app-misc/pfetch/pfetch-0.6.0.ebuild new file mode 100644 index 0000000000..fa181e29ca --- /dev/null +++ b/app-misc/pfetch/pfetch-0.6.0.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A pretty system information tool written in POSIX sh" +HOMEPAGE="https://github.com/dylanaraps/pfetch" + +KEYWORDS="~amd64 ~x86" +SRC_URI="https://github.com/dylanaraps/pfetch/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" + +src_install() { + dobin "${PN}" +}