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 189E5158086 for ; Tue, 2 Nov 2021 11:00:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59CD0E0864; Tue, 2 Nov 2021 11:00:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 8C2D4E0864 for ; Tue, 2 Nov 2021 11:00: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 25310342C05 for ; Tue, 2 Nov 2021 11:00:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3870D0 for ; Tue, 2 Nov 2021 11:00:15 +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: <1635850807.00387d4650c5d413e61d8432b1792a28e8448d2e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmowgli/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmowgli/libmowgli-2.1.3-r2.ebuild X-VCS-Directories: dev-libs/libmowgli/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 00387d4650c5d413e61d8432b1792a28e8448d2e X-VCS-Branch: master Date: Tue, 2 Nov 2021 11:00:15 +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: 1414e90d-ac9c-4be4-8591-9f4d2b74cbfc X-Archives-Hash: dffbee28221d7aa67ac60958a71b7e10 commit: 00387d4650c5d413e61d8432b1792a28e8448d2e Author: Wade Cline hotmail com> AuthorDate: Mon Nov 1 03:00:26 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 2 11:00:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00387d46 dev-libs/libmowgli: Drop 2.1.3-r2 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Wade Cline hotmail.com> Closes: https://github.com/gentoo/gentoo/pull/22777 Signed-off-by: Sam James gentoo.org> dev-libs/libmowgli/libmowgli-2.1.3-r2.ebuild | 42 ---------------------------- 1 file changed, 42 deletions(-) diff --git a/dev-libs/libmowgli/libmowgli-2.1.3-r2.ebuild b/dev-libs/libmowgli/libmowgli-2.1.3-r2.ebuild deleted file mode 100644 index e7b02c8ea2b..00000000000 --- a/dev-libs/libmowgli/libmowgli-2.1.3-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Useful set of performance and usability-oriented extensions to C" -HOMEPAGE="https://github.com/atheme/libmowgli-2" -SRC_URI="https://github.com/atheme/libmowgli-2/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="2" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="ssl" - -RDEPEND="ssl? ( - dev-libs/openssl:0= - ) - !~dev-libs/libmowgli-2.1.0" # Bug 629644 -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS README doc/BOOST doc/design-concepts.txt ) -PATCHES=( - "${FILESDIR}"/${P}-cacheline-Ensure-sysconf-var-is-defined-before-use.patch - "${FILESDIR}"/${P}-use-host-tools-for-ar-and-ranlib.patch -) - -S="${WORKDIR}/${PN}-2-${PV}" - -src_prepare() { - default - - # $(MAKE) invocation will handle passing down flags. - sed -i -e 's/${MFLAGS}//' buildsys.mk.in || die - - AT_M4DIR="m4" eautoreconf -} - -src_configure() { - econf $(use_with ssl openssl) -}