From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 73F801581E7 for ; Sun, 21 Apr 2024 20:04:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19760E29E3; Sun, 21 Apr 2024 20:04:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 02615E29E3 for ; Sun, 21 Apr 2024 20:04:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1CCF2343526 for ; Sun, 21 Apr 2024 20:04:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AEEE1513 for ; Sun, 21 Apr 2024 20:04:20 +0000 (UTC) From: "Jimi Huotari" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jimi Huotari" Message-ID: <1713728906.01310206a8c7f6f5576a9c9ccafb870e44aff424.chiitoo@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: lxqt-base/libsysstat/ X-VCS-Repository: proj/qt X-VCS-Files: lxqt-base/libsysstat/Manifest lxqt-base/libsysstat/libsysstat-1.0.0.ebuild X-VCS-Directories: lxqt-base/libsysstat/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: 01310206a8c7f6f5576a9c9ccafb870e44aff424 X-VCS-Branch: master Date: Sun, 21 Apr 2024 20:04:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9753a919-6619-4262-8a1a-c145f987274b X-Archives-Hash: 8cb3478b702da779b7b7b5b5c47bcba9 commit: 01310206a8c7f6f5576a9c9ccafb870e44aff424 Author: Jimi Huotari gentoo org> AuthorDate: Sun Apr 21 17:20:25 2024 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Sun Apr 21 19:48:26 2024 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=01310206 lxqt-base/libsysstat: add 1.0.0 Signed-off-by: Jimi Huotari gentoo.org> lxqt-base/libsysstat/Manifest | 1 + lxqt-base/libsysstat/libsysstat-1.0.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/lxqt-base/libsysstat/Manifest b/lxqt-base/libsysstat/Manifest new file mode 100644 index 00000000..ede6ddad --- /dev/null +++ b/lxqt-base/libsysstat/Manifest @@ -0,0 +1 @@ +DIST libsysstat-1.0.0.tar.xz 17684 BLAKE2B 1ccfe0555d2f8cb6e948c5f0bfa33d55a02aac1060973070b82f3596f3d340185888a2993aaffa66c1f5aeac64f7cfe7c46fadf3265a81d94e94a47d53c6c265 SHA512 f27481d20b2817fc55056aa5db10193586cc9709419870e0411ce896383bf23c2faddb3d73d4db635534245acc4ef980ac4e28143eb6b0a1d84337df74daf7e7 diff --git a/lxqt-base/libsysstat/libsysstat-1.0.0.ebuild b/lxqt-base/libsysstat/libsysstat-1.0.0.ebuild new file mode 100644 index 00000000..d21d1443 --- /dev/null +++ b/lxqt-base/libsysstat/libsysstat-1.0.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Qt GUI for System Statistics" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-2+ LGPL-2.1+" +SLOT="0" + +BDEPEND=">=dev-util/lxqt-build-tools-2.0.0" +DEPEND=">=dev-qt/qtbase-6.6:6" +RDEPEND="${DEPEND}"