summaryrefslogtreecommitdiff
path: root/app-misc/pfetch
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:47:34 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:47:34 -0500
commitdda948891d3731927b821ce31f9d9a2d03ba20c5 (patch)
tree99cd40be4cbb0606260da212cd81b8ab2db9da9b /app-misc/pfetch
parenta3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (diff)
downloadbaldeagleos-repo-dda948891d3731927b821ce31f9d9a2d03ba20c5.tar.gz
baldeagleos-repo-dda948891d3731927b821ce31f9d9a2d03ba20c5.tar.xz
baldeagleos-repo-dda948891d3731927b821ce31f9d9a2d03ba20c5.zip
Adding metadata
Diffstat (limited to 'app-misc/pfetch')
-rw-r--r--app-misc/pfetch/Manifest2
-rw-r--r--app-misc/pfetch/metadata.xml25
-rw-r--r--app-misc/pfetch/pfetch-1.10.0.ebuild28
-rw-r--r--app-misc/pfetch/pfetch-1.9.4.ebuild28
-rw-r--r--app-misc/pfetch/pfetch-9999.ebuild28
5 files changed, 111 insertions, 0 deletions
diff --git a/app-misc/pfetch/Manifest b/app-misc/pfetch/Manifest
new file mode 100644
index 000000000000..e9d652f1f77e
--- /dev/null
+++ b/app-misc/pfetch/Manifest
@@ -0,0 +1,2 @@
+DIST pfetch-1.10.0.tar.gz 26466 BLAKE2B cfe14f462e89d8676419d98c360fad36223af5bcc8da89a5fb61eb4304b7f06287d5d332f038da6ae5539bd50c0d2f8ac2ff0dad14e9cc933957138dd6595027 SHA512 77e79b0d9f732b38cfa4585daa815374267a85c942d5f66b9fbee8f5129997aaa6681543cd06b3ebd8ad0dc86a882aaefc5b050a43463bbc9aa919539ef629cc
+DIST pfetch-1.9.4.tar.gz 26272 BLAKE2B aa23bf67a9205e3879ab62df0c2e7aed28f3d37e2c807796434ddc2ac9e3f114d717ddfde3f13d119f18e18ea7007a677debcefb380ab4ccc98cbd63161d72a4 SHA512 6eedfa9ae19c0c3a2b20396d996432fa2c3dba5cb5f0e63af27189d4228c582cd7caef73d8342841f699c891927b1569e6c33fc7b0891616e8a759e23a33ba4f
diff --git a/app-misc/pfetch/metadata.xml b/app-misc/pfetch/metadata.xml
new file mode 100644
index 000000000000..4bb6a30550dc
--- /dev/null
+++ b/app-misc/pfetch/metadata.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>mathieu.tortuyaux@gmail.com</email>
+ <name>Mathieu Tortuyaux</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>dev@dyama.net</email>
+ <name>Daichi Yamamoto</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>ghostyn678+git@gmail.com</email>
+ <name>dsaf</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).
+ </longdescription>
+ <upstream>
+ <bugs-to>https://github.com/Un1q32/pfetch/issues</bugs-to>
+ </upstream>
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/app-misc/pfetch/pfetch-1.10.0.ebuild b/app-misc/pfetch/pfetch-1.10.0.ebuild
new file mode 100644
index 000000000000..f41c22a31877
--- /dev/null
+++ b/app-misc/pfetch/pfetch-1.10.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A pretty system information tool written in POSIX sh"
+HOMEPAGE="https://github.com/Un1q32/pfetch"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/Un1q32/pfetch.git"
+else
+ SRC_URI="https://github.com/Un1q32/pfetch/archive/${PV}/${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="strip test"
+
+src_compile() {
+ :
+}
+
+src_install() {
+ emake PREFIX=/usr DESTDIR="${D}" install
+ einstalldocs
+}
diff --git a/app-misc/pfetch/pfetch-1.9.4.ebuild b/app-misc/pfetch/pfetch-1.9.4.ebuild
new file mode 100644
index 000000000000..f41c22a31877
--- /dev/null
+++ b/app-misc/pfetch/pfetch-1.9.4.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A pretty system information tool written in POSIX sh"
+HOMEPAGE="https://github.com/Un1q32/pfetch"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/Un1q32/pfetch.git"
+else
+ SRC_URI="https://github.com/Un1q32/pfetch/archive/${PV}/${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="strip test"
+
+src_compile() {
+ :
+}
+
+src_install() {
+ emake PREFIX=/usr DESTDIR="${D}" install
+ einstalldocs
+}
diff --git a/app-misc/pfetch/pfetch-9999.ebuild b/app-misc/pfetch/pfetch-9999.ebuild
new file mode 100644
index 000000000000..f41c22a31877
--- /dev/null
+++ b/app-misc/pfetch/pfetch-9999.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A pretty system information tool written in POSIX sh"
+HOMEPAGE="https://github.com/Un1q32/pfetch"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/Un1q32/pfetch.git"
+else
+ SRC_URI="https://github.com/Un1q32/pfetch/archive/${PV}/${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="strip test"
+
+src_compile() {
+ :
+}
+
+src_install() {
+ emake PREFIX=/usr DESTDIR="${D}" install
+ einstalldocs
+}