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 425C615838C for ; Wed, 17 Jan 2024 15:56:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 828DA2BC013; Wed, 17 Jan 2024 15:56:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 6D6842BC013 for ; Wed, 17 Jan 2024 15:56:54 +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 ADB7C34336E for ; Wed, 17 Jan 2024 15:56:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D00CB39 for ; Wed, 17 Jan 2024 15:56:52 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1705507003.ea39d69a350024e71fb4db352b051a5f197259f7.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/sxcs/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/sxcs/Manifest x11-misc/sxcs/metadata.xml x11-misc/sxcs/sxcs-0.7.3.ebuild X-VCS-Directories: x11-misc/sxcs/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: ea39d69a350024e71fb4db352b051a5f197259f7 X-VCS-Branch: master Date: Wed, 17 Jan 2024 15:56:52 +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: 4989dbfe-69fc-4a3a-83bb-6f15a979fcce X-Archives-Hash: 6dd2f274da2bed6506dad28043a9791a commit: ea39d69a350024e71fb4db352b051a5f197259f7 Author: Florian Schmaus gentoo org> AuthorDate: Wed Jan 17 15:52:17 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Jan 17 15:56:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea39d69a x11-misc/sxcs: new package, add 0.7.3 Signed-off-by: Florian Schmaus gentoo.org> x11-misc/sxcs/Manifest | 1 + x11-misc/sxcs/metadata.xml | 15 +++++++++++++++ x11-misc/sxcs/sxcs-0.7.3.ebuild | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/x11-misc/sxcs/Manifest b/x11-misc/sxcs/Manifest new file mode 100644 index 000000000000..6d12abc7b27b --- /dev/null +++ b/x11-misc/sxcs/Manifest @@ -0,0 +1 @@ +DIST sxcs-0.7.3.tar.gz 22204 BLAKE2B 04bb29188c89622dd2bc348dbc334963a807691ce6fda2f6a6eafedc860be5855d614aeab801dd6cba916dae67a5af92d37317420a04345f1aa8d9203cc44510 SHA512 dbd11ecae74e7a50a346efd0d919952cdd138ebcf75a369888c9f889fcc2752923152b07bcec5f7d4f259672e3af11762d88d9a0b7fe37342f9f5880ecd724ec diff --git a/x11-misc/sxcs/metadata.xml b/x11-misc/sxcs/metadata.xml new file mode 100644 index 000000000000..5ed3aa71f526 --- /dev/null +++ b/x11-misc/sxcs/metadata.xml @@ -0,0 +1,15 @@ + + + + + nrk@disroot.org + NRK + + + proxy-maint@gentoo.org + Proxy Maintainers + + + NRK/sxcs + + diff --git a/x11-misc/sxcs/sxcs-0.7.3.ebuild b/x11-misc/sxcs/sxcs-0.7.3.ebuild new file mode 100644 index 000000000000..0ffac067fd37 --- /dev/null +++ b/x11-misc/sxcs/sxcs-0.7.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 2021-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Color picker and magnifier for X11" +HOMEPAGE="https://codeberg.org/NRK/sxcs" + +SRC_URI="https://codeberg.org/NRK/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}" + +KEYWORDS="~amd64" +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXcursor +" +DEPEND="${RDEPEND}" + +src_compile() { + $(tc-getCC) -o sxcs sxcs.c ${CFLAGS} ${LDFLAGS} -l X11 -l Xcursor || die "Compilation failed" +} + +src_install() { + dobin sxcs + doman sxcs.1 + dodoc README.md +}