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 8406E158003 for ; Sat, 13 Aug 2022 07:59:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A330EE07DB; Sat, 13 Aug 2022 07:59:20 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 71B5CE07D4 for ; Sat, 13 Aug 2022 07:59:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 788413411D5 for ; Sat, 13 Aug 2022 07:59:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABA18D4 for ; Sat, 13 Aug 2022 07:59:17 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1660377485.4098a9a30345544cdb17c1567f5e4e4ae021276d.matthew@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/tllist-1.1.0.ebuild X-VCS-Directories: dev-libs/tllist/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 4098a9a30345544cdb17c1567f5e4e4ae021276d X-VCS-Branch: master Date: Sat, 13 Aug 2022 07:59:17 +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: 498ab53b-6aab-416b-932d-53708aeb4bab X-Archives-Hash: 41f25f941c006f9bafef4c5465d3927b commit: 4098a9a30345544cdb17c1567f5e4e4ae021276d Author: Arsen Arsenović aarsen me> AuthorDate: Thu Aug 11 15:57:07 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Sat Aug 13 07:58:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4098a9a3 dev-libs/tllist: add 1.1.0 Signed-off-by: Arsen Arsenović aarsen.me> Signed-off-by: Matthew Smith gentoo.org> dev-libs/tllist/Manifest | 1 + dev-libs/tllist/tllist-1.1.0.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-libs/tllist/Manifest b/dev-libs/tllist/Manifest index 3a6159b94668..a4df466869fd 100644 --- a/dev-libs/tllist/Manifest +++ b/dev-libs/tllist/Manifest @@ -1 +1,2 @@ DIST tllist-1.0.5.tar.gz 7022 BLAKE2B c0c6db1682d6ab408c43c434ffc8e58d2cc4076121e8c11e2612678af12faa93661dcb547371bbeca4f78c1b7c99843ae9cbff8ab4e2389ce1c395f0e65e66cd SHA512 e8d55a727de56956c6823297e92ba4656292096ece7d22f3d8834b86811ede9b2fdca580bea55e0beda35322f418140357770592d85c0c07ea09c1642c7ff1e9 +DIST tllist-1.1.0.tar.gz 7639 BLAKE2B 7561be89cab09a33a9835bbd060070761ac740ea27b9b3eecc3681bf799b2b98db81ddc13465704fb5b46f474b74605042449de272ab3cd22827471a98331c5a SHA512 9aade353a3ce4edf5ddc4ef85c1926343d9f88c9c8ee3994f0df89eefeb3b3e0ab168cf0c9a2ca4a858215c2a328462d4b5bf182134b5deb3b3a0e15af4006fe diff --git a/dev-libs/tllist/tllist-1.1.0.ebuild b/dev-libs/tllist/tllist-1.1.0.ebuild new file mode 100644 index 000000000000..5a9ffb46cadd --- /dev/null +++ b/dev-libs/tllist/tllist-1.1.0.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 ~arm64" + +src_install() { + meson_src_install + + rm -r "${ED}/usr/share/doc/${PN}" || die +}