From: "Viorel Munteanu" <ceamac@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/fastfetch/ Date: Thu, 23 Feb 2023 09:24:52 +0000 (UTC) [thread overview] Message-ID: <1677047271.0cdfb252363dd46752c0fd2091b77f2f2b7bc28a.ceamac@gentoo> (raw) commit: 0cdfb252363dd46752c0fd2091b77f2f2b7bc28a Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> AuthorDate: Wed Feb 22 06:27:51 2023 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Wed Feb 22 06:27:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0cdfb252 app-misc/fastfetch: add 1.10.1 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> app-misc/fastfetch/Manifest | 1 + app-misc/fastfetch/fastfetch-1.10.1.ebuild | 102 +++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest index 4a4c3458a..7b030d2a8 100644 --- a/app-misc/fastfetch/Manifest +++ b/app-misc/fastfetch/Manifest @@ -1,2 +1,3 @@ +DIST fastfetch-1.10.1.tar.gz 526593 BLAKE2B f64832bc8f1937eae352e47e9448ad5be7aa30c7c583590d591840cb718d3aa4bdabe3ce49ef5401a930a144dd64ba5d37503ba13aad8b37b8d4c6088494671b SHA512 83fbddaf87095d35ee19c3527a65fe942a08e16ebc6838331336c2d06683e8385d6c2f0ff3080c2a529590614e18a8cc2ef74fa0fc7065a86f7a7b65716fc026 DIST fastfetch-1.8.2.tar.gz 495971 BLAKE2B e490323b2a18c2cc6a17569955fde820584a4b1e547ad18162b1cbb6f72c61cf8e891c4d1ed56c89f78ac0bc3d5769603e1dfc61c32bad07985c0df27cdf5e10 SHA512 cad6e1f69fd9192e63a55478ee6abe1f0a72c1d4af645d2b8fc1e56fc90eda80f62b5da7a87744ba1a668e5f0b785aac0e49be90867d3b61c674cf455cf984c0 DIST fastfetch-1.9.1.tar.gz 510560 BLAKE2B 086f743a0e9ec09a3222d9c9951e26449dde90d00fb297d96611393bf23ab6eb8df255e9519b35904d73faa726ea83f673c5ea977a9f2b7f0689de898b0683ba SHA512 9b449aa3b5072d2f7b7857d7a11e315dbb7d4148e2761487e6682980e53bb3acf3ccd14b57bf9d788288a931f8aa940b699f07b1a09673fee53d70f63b081f83 diff --git a/app-misc/fastfetch/fastfetch-1.10.1.ebuild b/app-misc/fastfetch/fastfetch-1.10.1.ebuild new file mode 100644 index 000000000..c60289caf --- /dev/null +++ b/app-misc/fastfetch/fastfetch-1.10.1.ebuild @@ -0,0 +1,102 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic + +DESCRIPTION="Fast system information tool" +HOMEPAGE="https://github.com/LinusDierheimer/fastfetch" +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git" + [[ ${PV} == *0.1.9999 ]] && EGIT_BRANCH=master + [[ ${PV} == *0.2.9999 ]] && EGIT_BRANCH=dev + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" +else + SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="X chafa dbus gnome imagemagick networkmanager opencl opengl osmesa pci pulseaudio sqlite vulkan wayland xcb xfce xrandr" + +# note - qa-vdb will always report errors because fastfetch loads the libs dynamically +RDEPEND=" + sys-libs/zlib + X? ( x11-libs/libX11 ) + chafa? ( media-gfx/chafa ) + dbus? ( sys-apps/dbus ) + gnome? ( + dev-libs/glib + gnome-base/dconf + ) + imagemagick? ( media-gfx/imagemagick:= ) + networkmanager? ( net-misc/networkmanager ) + opencl? ( virtual/opencl ) + opengl? ( media-libs/libglvnd[X] ) + osmesa? ( media-libs/mesa[osmesa] ) + pci? ( sys-apps/pciutils ) + pulseaudio? ( media-libs/libpulse ) + sqlite? ( dev-db/sqlite:3 ) + vulkan? ( media-libs/vulkan-loader ) + wayland? ( dev-libs/wayland ) + xcb? ( x11-libs/libxcb ) + xfce? ( xfce-base/xfconf ) + xrandr? ( x11-libs/libXrandr ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +REQUIRED_USE=" + xrandr? ( X ) + chafa? ( imagemagick ) +" + +src_configure() { + local fastfetch_enable_imagemagick7=no + local fastfetch_enable_imagemagick6=no + if use imagemagick; then + fastfetch_enable_imagemagick7=$(has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no) + fastfetch_enable_imagemagick6=$(has_version '<media-gfx/imagemagick-7.0.0' && echo yes || echo no) + fi + + local mycmakeargs=( + -DENABLE_LIBCJSON=no + -DENABLE_RPM=no + -DENABLE_ZLIB=yes + + -DENABLE_CHAFA=$(usex chafa) + -DENABLE_DBUS=$(usex dbus) + -DENABLE_DCONF=$(usex gnome) + -DENABLE_EGL=$(usex opengl) + -DENABLE_GIO=$(usex gnome) + -DENABLE_GLX=$(usex opengl) + -DENABLE_IMAGEMAGICK6=${fastfetch_enable_imagemagick6} + -DENABLE_IMAGEMAGICK7=${fastfetch_enable_imagemagick7} + -DENABLE_LIBNM=$(usex networkmanager) + -DENABLE_LIBPCI=$(usex pci) + -DENABLE_OPENCL=$(usex opencl) + -DENABLE_OSMESA=$(usex osmesa) + -DENABLE_PULSE=$(usex pulseaudio) + -DENABLE_SQLITE3=$(usex sqlite) + -DENABLE_VULKAN=$(usex vulkan) + -DENABLE_WAYLAND=$(usex wayland) + -DENABLE_X11=$(usex X) + -DENABLE_XCB=$(usex xcb) + -DENABLE_XCB_RANDR=$(usex xcb) + -DENABLE_XFCONF=$(usex xfce) + -DENABLE_XRANDR=$(usex xrandr) + ) + + append-cppflags -DNDEBUG + + cmake_src_configure +} + +src_install() { + cmake_src_install + + rm -r "${ED}"/usr/share/licenses || die +}
WARNING: multiple messages have this Message-ID (diff)
From: "Viorel Munteanu" <ceamac@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/ Date: Wed, 22 Feb 2023 06:30:05 +0000 (UTC) [thread overview] Message-ID: <1677047271.0cdfb252363dd46752c0fd2091b77f2f2b7bc28a.ceamac@gentoo> (raw) Message-ID: <20230222063005.h5Vp1njREtF-ilxUusJ9H82ZCyWl_X4eIlng_WJy9EM@z> (raw) commit: 0cdfb252363dd46752c0fd2091b77f2f2b7bc28a Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> AuthorDate: Wed Feb 22 06:27:51 2023 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Wed Feb 22 06:27:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0cdfb252 app-misc/fastfetch: add 1.10.1 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> app-misc/fastfetch/Manifest | 1 + app-misc/fastfetch/fastfetch-1.10.1.ebuild | 102 +++++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) diff --git a/app-misc/fastfetch/Manifest b/app-misc/fastfetch/Manifest index 4a4c3458a..7b030d2a8 100644 --- a/app-misc/fastfetch/Manifest +++ b/app-misc/fastfetch/Manifest @@ -1,2 +1,3 @@ +DIST fastfetch-1.10.1.tar.gz 526593 BLAKE2B f64832bc8f1937eae352e47e9448ad5be7aa30c7c583590d591840cb718d3aa4bdabe3ce49ef5401a930a144dd64ba5d37503ba13aad8b37b8d4c6088494671b SHA512 83fbddaf87095d35ee19c3527a65fe942a08e16ebc6838331336c2d06683e8385d6c2f0ff3080c2a529590614e18a8cc2ef74fa0fc7065a86f7a7b65716fc026 DIST fastfetch-1.8.2.tar.gz 495971 BLAKE2B e490323b2a18c2cc6a17569955fde820584a4b1e547ad18162b1cbb6f72c61cf8e891c4d1ed56c89f78ac0bc3d5769603e1dfc61c32bad07985c0df27cdf5e10 SHA512 cad6e1f69fd9192e63a55478ee6abe1f0a72c1d4af645d2b8fc1e56fc90eda80f62b5da7a87744ba1a668e5f0b785aac0e49be90867d3b61c674cf455cf984c0 DIST fastfetch-1.9.1.tar.gz 510560 BLAKE2B 086f743a0e9ec09a3222d9c9951e26449dde90d00fb297d96611393bf23ab6eb8df255e9519b35904d73faa726ea83f673c5ea977a9f2b7f0689de898b0683ba SHA512 9b449aa3b5072d2f7b7857d7a11e315dbb7d4148e2761487e6682980e53bb3acf3ccd14b57bf9d788288a931f8aa940b699f07b1a09673fee53d70f63b081f83 diff --git a/app-misc/fastfetch/fastfetch-1.10.1.ebuild b/app-misc/fastfetch/fastfetch-1.10.1.ebuild new file mode 100644 index 000000000..c60289caf --- /dev/null +++ b/app-misc/fastfetch/fastfetch-1.10.1.ebuild @@ -0,0 +1,102 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake flag-o-matic + +DESCRIPTION="Fast system information tool" +HOMEPAGE="https://github.com/LinusDierheimer/fastfetch" +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git" + [[ ${PV} == *0.1.9999 ]] && EGIT_BRANCH=master + [[ ${PV} == *0.2.9999 ]] && EGIT_BRANCH=dev + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" +else + SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="X chafa dbus gnome imagemagick networkmanager opencl opengl osmesa pci pulseaudio sqlite vulkan wayland xcb xfce xrandr" + +# note - qa-vdb will always report errors because fastfetch loads the libs dynamically +RDEPEND=" + sys-libs/zlib + X? ( x11-libs/libX11 ) + chafa? ( media-gfx/chafa ) + dbus? ( sys-apps/dbus ) + gnome? ( + dev-libs/glib + gnome-base/dconf + ) + imagemagick? ( media-gfx/imagemagick:= ) + networkmanager? ( net-misc/networkmanager ) + opencl? ( virtual/opencl ) + opengl? ( media-libs/libglvnd[X] ) + osmesa? ( media-libs/mesa[osmesa] ) + pci? ( sys-apps/pciutils ) + pulseaudio? ( media-libs/libpulse ) + sqlite? ( dev-db/sqlite:3 ) + vulkan? ( media-libs/vulkan-loader ) + wayland? ( dev-libs/wayland ) + xcb? ( x11-libs/libxcb ) + xfce? ( xfce-base/xfconf ) + xrandr? ( x11-libs/libXrandr ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +REQUIRED_USE=" + xrandr? ( X ) + chafa? ( imagemagick ) +" + +src_configure() { + local fastfetch_enable_imagemagick7=no + local fastfetch_enable_imagemagick6=no + if use imagemagick; then + fastfetch_enable_imagemagick7=$(has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no) + fastfetch_enable_imagemagick6=$(has_version '<media-gfx/imagemagick-7.0.0' && echo yes || echo no) + fi + + local mycmakeargs=( + -DENABLE_LIBCJSON=no + -DENABLE_RPM=no + -DENABLE_ZLIB=yes + + -DENABLE_CHAFA=$(usex chafa) + -DENABLE_DBUS=$(usex dbus) + -DENABLE_DCONF=$(usex gnome) + -DENABLE_EGL=$(usex opengl) + -DENABLE_GIO=$(usex gnome) + -DENABLE_GLX=$(usex opengl) + -DENABLE_IMAGEMAGICK6=${fastfetch_enable_imagemagick6} + -DENABLE_IMAGEMAGICK7=${fastfetch_enable_imagemagick7} + -DENABLE_LIBNM=$(usex networkmanager) + -DENABLE_LIBPCI=$(usex pci) + -DENABLE_OPENCL=$(usex opencl) + -DENABLE_OSMESA=$(usex osmesa) + -DENABLE_PULSE=$(usex pulseaudio) + -DENABLE_SQLITE3=$(usex sqlite) + -DENABLE_VULKAN=$(usex vulkan) + -DENABLE_WAYLAND=$(usex wayland) + -DENABLE_X11=$(usex X) + -DENABLE_XCB=$(usex xcb) + -DENABLE_XCB_RANDR=$(usex xcb) + -DENABLE_XFCONF=$(usex xfce) + -DENABLE_XRANDR=$(usex xrandr) + ) + + append-cppflags -DNDEBUG + + cmake_src_configure +} + +src_install() { + cmake_src_install + + rm -r "${ED}"/usr/share/licenses || die +}
next reply other threads:[~2023-02-23 9:25 UTC|newest] Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-02-23 9:24 Viorel Munteanu [this message] 2023-02-22 6:30 ` [gentoo-commits] repo/proj/guru:dev commit in: app-misc/fastfetch/ Viorel Munteanu -- strict thread matches above, loose matches on Subject: below -- 2023-05-27 17:22 [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2023-03-25 7:40 Viorel Munteanu 2023-02-27 18:04 Viorel Munteanu 2023-02-27 18:04 Viorel Munteanu 2023-02-22 9:35 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2023-02-23 9:24 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2023-02-22 6:30 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2023-02-23 9:24 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2023-02-22 6:30 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2023-02-23 9:24 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2023-01-24 9:42 Viorel Munteanu 2023-01-24 9:42 Viorel Munteanu 2023-01-22 7:14 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2023-01-22 8:21 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2023-01-22 7:14 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2023-01-22 8:21 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2022-12-31 12:20 Viorel Munteanu 2022-12-31 12:20 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2022-12-31 12:20 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2022-12-30 20:42 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2022-12-30 20:42 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2022-12-30 20:36 Viorel Munteanu 2022-12-30 20:35 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2022-12-30 20:36 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2022-12-30 9:41 Viorel Munteanu 2022-12-30 9:41 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2022-12-30 9:41 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2022-12-29 15:28 Viorel Munteanu 2022-12-29 15:27 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu 2022-12-29 15:28 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu 2022-12-29 11:33 Florian Schmaus 2022-10-11 19:30 Andrew Ammerlaan 2022-10-11 19:30 Andrew Ammerlaan 2022-10-11 19:30 Andrew Ammerlaan 2022-09-17 11:49 Ronny Gutbrod 2022-09-17 11:49 Ronny Gutbrod 2022-09-08 1:46 Ronny Gutbrod 2022-09-06 1:06 Ronny Gutbrod 2022-08-24 15:52 Ronny Gutbrod 2022-08-24 15:52 Ronny Gutbrod 2022-08-24 15:52 Ronny Gutbrod 2022-08-24 15:52 Ronny Gutbrod 2022-08-12 22:13 Haelwenn Monnier 2022-08-12 22:13 Haelwenn Monnier 2022-08-12 22:13 Haelwenn Monnier 2022-07-05 7:14 Florian Schmaus 2022-07-05 7:14 Florian Schmaus 2022-06-28 15:38 Arthur Zamarin 2022-06-28 15:38 Arthur Zamarin 2022-06-22 17:39 Andrew Ammerlaan 2022-06-22 17:39 Andrew Ammerlaan 2022-06-09 9:23 Florian Schmaus 2022-06-09 9:23 Florian Schmaus 2022-05-28 10:10 Andrew Ammerlaan 2022-05-28 10:10 Andrew Ammerlaan 2022-04-23 17:49 Haelwenn Monnier 2022-04-23 17:49 Haelwenn Monnier 2022-04-23 17:49 Haelwenn Monnier 2022-04-23 17:49 Haelwenn Monnier 2022-04-23 17:49 Haelwenn Monnier 2022-03-25 11:24 Ronny Gutbrod 2022-03-25 11:24 Ronny Gutbrod 2022-03-18 6:35 Arthur Zamarin 2022-03-18 6:35 Arthur Zamarin 2022-03-10 9:45 Ronny Gutbrod 2022-03-10 9:45 Ronny Gutbrod 2022-02-23 0:33 Ronny Gutbrod 2022-02-23 0:33 Ronny Gutbrod 2022-02-13 20:24 Arthur Zamarin 2022-02-13 20:24 Arthur Zamarin 2022-02-01 10:38 Florian Schmaus 2022-02-01 10:38 Florian Schmaus 2022-01-23 8:17 Florian Schmaus 2022-01-21 9:14 Florian Schmaus
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1677047271.0cdfb252363dd46752c0fd2091b77f2f2b7bc28a.ceamac@gentoo \ --to=ceamac@gentoo.org \ --cc=gentoo-commits@lists.gentoo.org \ --cc=gentoo-dev@lists.gentoo.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox