commit: 6f3aef0ce665c08e682cbf4ea2b9d6e188509db5 Author: Mathieu Tortuyaux <mathieu.tortuyaux <AT> gmail <DOT> com> AuthorDate: Sun Apr 19 17:39:51 2020 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net> CommitDate: Sun Apr 19 17:39:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6f3aef0c
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 <mathieu.tortuyaux <AT> gmail.com> 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(+) diff --git a/app-misc/pfetch/Manifest b/app-misc/pfetch/Manifest new file mode 100644 index 0000000..de3d5b9 --- /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 0000000..9ee4ccd --- /dev/null +++ b/app-misc/pfetch/metadata.xml @@ -0,0 +1,16 @@ +<?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>Mathieu Tortuyaux</name> + </maintainer> + <longdescription lang="en"> +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. + </longdescription> + <upstream> + <bugs-to>https://github.com/dylanaraps/pfetch/issues</bugs-to> + </upstream> +</pkgmetadata> + 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 0000000..fa181e2 --- /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}" +}
