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 D443E15810D for ; Wed, 17 May 2023 01:38:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1575CE086B; Wed, 17 May 2023 01:38:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 EBAF0E0869 for ; Wed, 17 May 2023 01:38:21 +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 07DD93406DD for ; Wed, 17 May 2023 01:38:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63D7EA73 for ; Wed, 17 May 2023 01:38:18 +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: <1684287208.12d7700f467612996febb4d41c66b33c0a5f3dd4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/createrepo_c/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/createrepo_c/createrepo_c-0.20.1.ebuild X-VCS-Directories: app-arch/createrepo_c/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 12d7700f467612996febb4d41c66b33c0a5f3dd4 X-VCS-Branch: master Date: Wed, 17 May 2023 01:38:18 +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: 3e6d8f5b-ad75-499f-9e02-29226a7383f7 X-Archives-Hash: 5098854e2b1a5c123369f8985cafa7f2 commit: 12d7700f467612996febb4d41c66b33c0a5f3dd4 Author: Matt Jolly footclan ninja> AuthorDate: Sun May 14 12:57:07 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 17 01:33:28 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12d7700f app-arch/createrepo_c: drop 0.20.1 Signed-off-by: Matt Jolly footclan.ninja> Signed-off-by: Sam James gentoo.org> app-arch/createrepo_c/createrepo_c-0.20.1.ebuild | 42 ------------------------ 1 file changed, 42 deletions(-) diff --git a/app-arch/createrepo_c/createrepo_c-0.20.1.ebuild b/app-arch/createrepo_c/createrepo_c-0.20.1.ebuild deleted file mode 100644 index 91a1e6965990..000000000000 --- a/app-arch/createrepo_c/createrepo_c-0.20.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="C implementation of createrepo" -HOMEPAGE="https://github.com/rpm-software-management/createrepo_c" -SRC_URI="https://github.com/rpm-software-management/createrepo_c/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -# Notes: Help with enabling the python support would be great - -DEPEND="app-arch/bzip2:= - app-arch/rpm - dev-db/sqlite:3 - dev-libs/glib:2 - dev-libs/libxml2 - dev-libs/openssl:= - net-misc/curl - sys-apps/file - sys-libs/zlib:=" -RDEPEND="${DEPEND} - app-arch/lzma" - -PATCHES=( - "${FILESDIR}"/${PN}-0.20.1-Include-rpm-rpmstring.h-for-rasprintf.patch -) - -src_configure() { - # Other than for python (where tests are failing) we have special no-in-tree dependencies. - local mycmakeargs=( - -DENABLE_DRPM=OFF - -DENABLE_PYTHON=OFF - -DWITH_ZCHUNK=OFF - -DWITH_LIBMODULEMD=OFF - ) - cmake_src_configure -}