From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1619858-garchives=archives.gentoo.org@lists.gentoo.org>
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 B4644158041
	for <garchives@archives.gentoo.org>; Fri, 12 Apr 2024 03:03:29 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id DE811E2A0C;
	Fri, 12 Apr 2024 03:03:27 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.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 C5D71E2A0B
	for <gentoo-commits@lists.gentoo.org>; Fri, 12 Apr 2024 03:03:27 +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 E7847343310
	for <gentoo-commits@lists.gentoo.org>; Fri, 12 Apr 2024 03:03:26 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id CD8DE16BF
	for <gentoo-commits@lists.gentoo.org>; Fri, 12 Apr 2024 03:03:23 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org>
Message-ID: <1712890569.b1541a76990ab496271aa939af520fd551474d27.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/xdelta/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-util/xdelta/xdelta-1.1.4-r3.ebuild
X-VCS-Directories: dev-util/xdelta/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: b1541a76990ab496271aa939af520fd551474d27
X-VCS-Branch: master
Date: Fri, 12 Apr 2024 03:03:23 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 1c24c087-a4f4-4a8b-bbaa-cd5724e3fa5d
X-Archives-Hash: 0fdb4c347a06dfaa01f7eb3dad3e8047

commit:     b1541a76990ab496271aa939af520fd551474d27
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 12 02:47:17 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 12 02:56:09 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1541a76

dev-util/xdelta: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-util/xdelta/xdelta-1.1.4-r3.ebuild | 40 ----------------------------------
 1 file changed, 40 deletions(-)

diff --git a/dev-util/xdelta/xdelta-1.1.4-r3.ebuild b/dev-util/xdelta/xdelta-1.1.4-r3.ebuild
deleted file mode 100644
index 3a19c08e0866..000000000000
--- a/dev-util/xdelta/xdelta-1.1.4-r3.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools toolchain-funcs
-
-DESCRIPTION="Computes changes between binary or text files and creates deltas"
-HOMEPAGE="https://xdelta.googlecode.com/"
-SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
-
-RDEPEND=">=dev-libs/glib-2
-	>=sys-libs/zlib-1.1.4:="
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	eapply_user
-	eapply "${FILESDIR}"/${P}-m4.patch
-	eapply "${FILESDIR}"/${P}-glib2.patch
-	eapply "${FILESDIR}"/${P}-pkgconfig.patch
-
-	eautoreconf
-}
-
-src_configure() {
-	tc-export CC
-	econf --disable-static
-}
-
-src_install() {
-	default
-
-	# no static archives
-	find "${ED}" -name '*.la' -delete || die
-}