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 6B87E158087 for ; Sat, 5 Feb 2022 23:39:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB8A52BC029; Sat, 5 Feb 2022 23:39:28 +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 CC9F82BC020 for ; Sat, 5 Feb 2022 23:39:28 +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 E5B4F342EF3 for ; Sat, 5 Feb 2022 23:39:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E170B2D2 for ; Sat, 5 Feb 2022 23:39:24 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1644104281.3ed2cd24c1b01ca39fcbedd9903fe4fb6dcf9f3e.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/tllist/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/tllist/Manifest dev-libs/tllist/metadata.xml dev-libs/tllist/tllist-1.0.5.ebuild X-VCS-Directories: dev-libs/tllist/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 3ed2cd24c1b01ca39fcbedd9903fe4fb6dcf9f3e X-VCS-Branch: master Date: Sat, 5 Feb 2022 23:39:24 +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: cd3096de-60b8-4e5b-aa23-bd5cc651aad4 X-Archives-Hash: ee982a2bad5965bfd3461772a6f23182 commit: 3ed2cd24c1b01ca39fcbedd9903fe4fb6dcf9f3e Author: Arsen Arsenović aarsen me> AuthorDate: Thu Feb 3 13:53:45 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sat Feb 5 23:38:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ed2cd24 dev-libs/tllist: new package reverse dependency of gui-apps/foot, added shortly after this package adopted from GURU Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Arsen Arsenović aarsen.me> Signed-off-by: Ionen Wolkens gentoo.org> dev-libs/tllist/Manifest | 1 + dev-libs/tllist/metadata.xml | 12 ++++++++++++ dev-libs/tllist/tllist-1.0.5.ebuild | 21 +++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/dev-libs/tllist/Manifest b/dev-libs/tllist/Manifest new file mode 100644 index 000000000000..3a6159b94668 --- /dev/null +++ b/dev-libs/tllist/Manifest @@ -0,0 +1 @@ +DIST tllist-1.0.5.tar.gz 7022 BLAKE2B c0c6db1682d6ab408c43c434ffc8e58d2cc4076121e8c11e2612678af12faa93661dcb547371bbeca4f78c1b7c99843ae9cbff8ab4e2389ce1c395f0e65e66cd SHA512 e8d55a727de56956c6823297e92ba4656292096ece7d22f3d8834b86811ede9b2fdca580bea55e0beda35322f418140357770592d85c0c07ea09c1642c7ff1e9 diff --git a/dev-libs/tllist/metadata.xml b/dev-libs/tllist/metadata.xml new file mode 100644 index 000000000000..a3805e31ed69 --- /dev/null +++ b/dev-libs/tllist/metadata.xml @@ -0,0 +1,12 @@ + + + + + arsen@aarsen.me + Arsen Arsenović + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/dev-libs/tllist/tllist-1.0.5.ebuild b/dev-libs/tllist/tllist-1.0.5.ebuild new file mode 100644 index 000000000000..80a5f2723959 --- /dev/null +++ b/dev-libs/tllist/tllist-1.0.5.ebuild @@ -0,0 +1,21 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Header-only implementation of a typed linked list in C" +HOMEPAGE="https://codeberg.org/dnkl/tllist" +SRC_URI="https://codeberg.org/dnkl/tllist/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +src_install() { + meson_src_install + + rm -r "${ED}/usr/share/doc/${PN}" || die +}