diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:47:34 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:47:34 -0500 |
| commit | dda948891d3731927b821ce31f9d9a2d03ba20c5 (patch) | |
| tree | 99cd40be4cbb0606260da212cd81b8ab2db9da9b /app-misc/tinyfetch | |
| parent | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (diff) | |
| download | baldeagleos-repo-dda948891d3731927b821ce31f9d9a2d03ba20c5.tar.gz baldeagleos-repo-dda948891d3731927b821ce31f9d9a2d03ba20c5.tar.xz baldeagleos-repo-dda948891d3731927b821ce31f9d9a2d03ba20c5.zip | |
Adding metadata
Diffstat (limited to 'app-misc/tinyfetch')
| -rw-r--r-- | app-misc/tinyfetch/Manifest | 4 | ||||
| -rw-r--r-- | app-misc/tinyfetch/metadata.xml | 17 | ||||
| -rw-r--r-- | app-misc/tinyfetch/tinyfetch-5.2.ebuild | 23 | ||||
| -rw-r--r-- | app-misc/tinyfetch/tinyfetch-6.1.ebuild | 23 | ||||
| -rw-r--r-- | app-misc/tinyfetch/tinyfetch-6.2.ebuild | 23 | ||||
| -rw-r--r-- | app-misc/tinyfetch/tinyfetch-6.8a.ebuild | 23 | ||||
| -rw-r--r-- | app-misc/tinyfetch/tinyfetch-9999.ebuild | 27 |
7 files changed, 140 insertions, 0 deletions
diff --git a/app-misc/tinyfetch/Manifest b/app-misc/tinyfetch/Manifest new file mode 100644 index 000000000000..402ae6cc7dab --- /dev/null +++ b/app-misc/tinyfetch/Manifest @@ -0,0 +1,4 @@ +DIST tinyfetch-5.2.gh.tar.gz 21077 BLAKE2B 73a9107721edd5c559af229af3e9ff1a2c373efe3195e662f1a482631f6f5250eeaf20fba7143ce423244bc135d7699f7cdc77a2d557e11aaf84183fcaa04664 SHA512 5add99be93ad43319022e85cb1a294ea80d36ac4f075f317c1e030209e5759bb6916a11cd343fb7abb570006f32adc520e6ee43eea41ba43e285418b01a311a1 +DIST tinyfetch-6.1.gh.tar.gz 23543 BLAKE2B 3bcb7f31760819b69e62f69dbc141eecabbb895c7c584a19f5079a169415963e14dd5ec790e22831b7fc3202956b1edbf74dfa19612599ea948362b06d3526e6 SHA512 9c67bf8eacc6451a670b4cf83092b1a1da924e0e05b45cb63c4de8e350efca7c033f5c04b6a2602b91d6a9fa3e49cf3725e99487ae992d0eb3fd6a03d9a687d2 +DIST tinyfetch-6.2.gh.tar.gz 23909 BLAKE2B afa94531233cbab054254adb0d1fee6df38e66849e8e87e65dc900d8feed44cc33389651f863da9801dd719523d817ae1d4259fc1f56f42c7d23895b68285686 SHA512 c5e37fa71679757ea1a88f4360ce5f3a5ac6bbea5fa291db3b3b9b33b43e70e70359980d795614cdc5810aca940db4b393cde43b48189a544fc683b166ca7a6d +DIST tinyfetch-6.8a.gh.tar.gz 26791 BLAKE2B f8143c821edbdf63f7b3a03fd93891bd640778e5c02fc92887cff85b0b1db3653e15b296c2066dfa130a6da707bb9abaf66f7c2341ef74b897ed7526f0ef422c SHA512 baafc11e9a5d6887ded9ba5153e2d8acc682238a69bd0ad8f8d340d48ff800a3b7e514b67212311b44fbf9f68b06fe6bb47c4a8d12e4c0bf2700446a02aa6c15 diff --git a/app-misc/tinyfetch/metadata.xml b/app-misc/tinyfetch/metadata.xml new file mode 100644 index 000000000000..e92c680af1aa --- /dev/null +++ b/app-misc/tinyfetch/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>aidenwingard2@gmail.com</email> + <description>Primary maintainer</description> + </maintainer> + <longdescription> + minimal fetch program written in pure C, using only + the C STDLIB and is cross platform, and much more + faster than other fetch programs. + </longdescription> + <use> + <flag name="pci">Enables the use of pciutils to detect GPU names</flag> + </use> + <origin>baldeagleos-repo</origin> +</pkgmetadata> diff --git a/app-misc/tinyfetch/tinyfetch-5.2.ebuild b/app-misc/tinyfetch/tinyfetch-5.2.ebuild new file mode 100644 index 000000000000..28f1d7e6925b --- /dev/null +++ b/app-misc/tinyfetch/tinyfetch-5.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="fetch program written in pure C" +HOMEPAGE="https://github.com/kernaltrap8/tinyfetch" +SRC_URI="https://github.com/kernaltrap8/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64" + +IUSE="+pci" + +RDEPEND=" + pci? ( + sys-apps/pciutils + ) +" +DEPEND="${RDEPEND}" diff --git a/app-misc/tinyfetch/tinyfetch-6.1.ebuild b/app-misc/tinyfetch/tinyfetch-6.1.ebuild new file mode 100644 index 000000000000..28f1d7e6925b --- /dev/null +++ b/app-misc/tinyfetch/tinyfetch-6.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="fetch program written in pure C" +HOMEPAGE="https://github.com/kernaltrap8/tinyfetch" +SRC_URI="https://github.com/kernaltrap8/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64" + +IUSE="+pci" + +RDEPEND=" + pci? ( + sys-apps/pciutils + ) +" +DEPEND="${RDEPEND}" diff --git a/app-misc/tinyfetch/tinyfetch-6.2.ebuild b/app-misc/tinyfetch/tinyfetch-6.2.ebuild new file mode 100644 index 000000000000..28f1d7e6925b --- /dev/null +++ b/app-misc/tinyfetch/tinyfetch-6.2.ebuild @@ -0,0 +1,23 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="fetch program written in pure C" +HOMEPAGE="https://github.com/kernaltrap8/tinyfetch" +SRC_URI="https://github.com/kernaltrap8/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64" + +IUSE="+pci" + +RDEPEND=" + pci? ( + sys-apps/pciutils + ) +" +DEPEND="${RDEPEND}" diff --git a/app-misc/tinyfetch/tinyfetch-6.8a.ebuild b/app-misc/tinyfetch/tinyfetch-6.8a.ebuild new file mode 100644 index 000000000000..28f1d7e6925b --- /dev/null +++ b/app-misc/tinyfetch/tinyfetch-6.8a.ebuild @@ -0,0 +1,23 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="fetch program written in pure C" +HOMEPAGE="https://github.com/kernaltrap8/tinyfetch" +SRC_URI="https://github.com/kernaltrap8/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64" + +IUSE="+pci" + +RDEPEND=" + pci? ( + sys-apps/pciutils + ) +" +DEPEND="${RDEPEND}" diff --git a/app-misc/tinyfetch/tinyfetch-9999.ebuild b/app-misc/tinyfetch/tinyfetch-9999.ebuild new file mode 100644 index 000000000000..ec1992c75c02 --- /dev/null +++ b/app-misc/tinyfetch/tinyfetch-9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="fetch program written in pure C" +HOMEPAGE="https://github.com/kernaltrap8/tinyfetch" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/kernaltrap8/tinyfetch" + S="${WORKDIR}/${PN}-9999" +fi + +LICENSE="GPL-3" +SLOT="0" + +IUSE="+pci" + +RDEPEND=" + pci? ( + sys-apps/pciutils + ) +" +DEPEND="${RDEPEND}" |
