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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 919DB13835A for ; Tue, 2 Feb 2021 23:51:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95403E0956; Tue, 2 Feb 2021 23:51:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 723A1E0948 for ; Tue, 2 Feb 2021 23:51:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 092B13418ED for ; Tue, 2 Feb 2021 23:51:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89E5F4BB for ; Tue, 2 Feb 2021 23:51:40 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1612309829.e5801a042ce8bf7fd610442c62025b3fe36613ed.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/uthash/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/uthash/Manifest dev-libs/uthash/uthash-2.1.0.ebuild X-VCS-Directories: dev-libs/uthash/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e5801a042ce8bf7fd610442c62025b3fe36613ed X-VCS-Branch: master Date: Tue, 2 Feb 2021 23:51:40 +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: 099cb1e2-c15f-4ecb-bb02-d3e68643effd X-Archives-Hash: 61c135c44f56b44b2f15829c49dabf5b commit: e5801a042ce8bf7fd610442c62025b3fe36613ed Author: Sam James gentoo org> AuthorDate: Tue Feb 2 23:50:29 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Feb 2 23:50:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5801a04 dev-libs/uthash: cleanup old Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-libs/uthash/Manifest | 1 - dev-libs/uthash/uthash-2.1.0.ebuild | 30 ------------------------------ 2 files changed, 31 deletions(-) diff --git a/dev-libs/uthash/Manifest b/dev-libs/uthash/Manifest index 30e57e1d106..497c75a7ce4 100644 --- a/dev-libs/uthash/Manifest +++ b/dev-libs/uthash/Manifest @@ -1,2 +1 @@ -DIST uthash-2.1.0.tar.gz 191782 BLAKE2B 322661aca33e8df27ec3166cd16549b11f49a6f9eb12f11c78f44b75baf5d9f208825028fb3b89a380277de5784bf2d4c41a6cd2ff070b1d3cd667ec074a85d2 SHA512 c8005113a48ec7636715ecec0286a5d9086971a7267947aba9e0ad031b6113a4f38a1fb512d33d6fefb5891635fdd31169ce4d6ab04b938bda612ebbccb3eda0 DIST uthash-2.2.0.tar.gz 191356 BLAKE2B ca07634c30f49fa21af5fed9ed254351d038ca9f831b2c3f3fb545ee451833aaec9e1666572635e2fd31d6b791fb88800e7d870aba2cda0cfbeddcba20d969a9 SHA512 441ee907adc39c9b7e9c1f478966b7e8ddebb94cb6d5db9d2db409aee9a5e237033ee8cef3fed1c719fea01c7cfb5991554ac89f5a1e59241bd5c6eb4854cebe diff --git a/dev-libs/uthash/uthash-2.1.0.ebuild b/dev-libs/uthash/uthash-2.1.0.ebuild deleted file mode 100644 index c991385c4c3..00000000000 --- a/dev-libs/uthash/uthash-2.1.0.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="An easy-to-use hash implementation for C programmers" -HOMEPAGE="https://troydhanson.github.io/uthash/index.html" -SRC_URI="https://github.com/troydhanson/uthash/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-1" -SLOT="0" -KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND="test? ( dev-lang/perl )" - -PATCHES=( "${FILESDIR}"/${P}-cflags.patch ) - -src_test() { - cd tests || die - emake CC="$(tc-getCC)" -} - -src_install() { - doheader src/*.h - dodoc doc/*.txt -}