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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1C192158094 for ; Thu, 21 Jul 2022 08:31:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24107E09B1; Thu, 21 Jul 2022 08:31:42 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EEE41E09B1 for ; Thu, 21 Jul 2022 08:31:41 +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 52B4C33FE2A for ; Thu, 21 Jul 2022 08:31:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E3FD543 for ; Thu, 21 Jul 2022 08:31:38 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1658392282.6dc6fa9feec0f947250eaf9c56aed2f695337eb8.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmpack/libmpack-1.0.5-r2.ebuild X-VCS-Directories: dev-libs/libmpack/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 6dc6fa9feec0f947250eaf9c56aed2f695337eb8 X-VCS-Branch: master Date: Thu, 21 Jul 2022 08:31:38 +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: 2d3a04a6-21e2-4af7-814b-513e587f4ded X-Archives-Hash: 865860f0abbe429784770236523d757b commit: 6dc6fa9feec0f947250eaf9c56aed2f695337eb8 Author: Conrad Kostecki gentoo org> AuthorDate: Thu Jul 21 08:31:22 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Jul 21 08:31:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dc6fa9f dev-libs/libmpack: drop 1.0.5-r2 Signed-off-by: Conrad Kostecki gentoo.org> dev-libs/libmpack/libmpack-1.0.5-r2.ebuild | 58 ------------------------------ 1 file changed, 58 deletions(-) diff --git a/dev-libs/libmpack/libmpack-1.0.5-r2.ebuild b/dev-libs/libmpack/libmpack-1.0.5-r2.ebuild deleted file mode 100644 index 2168ecc4727e..000000000000 --- a/dev-libs/libmpack/libmpack-1.0.5-r2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Simple implementation of msgpack in C" -HOMEPAGE="https://github.com/libmpack/libmpack" -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 ~x64-macos" - -src_prepare() { - default - - # Make compiling verbose - sed -e 's/@$(LIBTOOL)/$(LIBTOOL)/g' -i Makefile || die - - # Respect users CFLAGS - sed -e 's/-ggdb//g' -i Makefile || die - sed -e 's/-O3//g' -i .config/release.mk || die -} - -src_compile() { - local myemakeargs=( - "PREFIX=${EPREFIX}/usr" - "CC=$(tc-getCC)" - "config=release" - "LIBDIR=/usr/$(get_libdir)" - ) - - emake "${myemakeargs[@]}" lib-bin -} - -src_test() { - emake XLDFLAGS="-shared" test -} - -src_install() { - local myemakeargs=( - "PREFIX=${EPREFIX}/usr" - "DESTDIR=${ED}" - "LIBDIR=/usr/$(get_libdir)" - "XLDFLAGS=-shared" - ) - - emake "${myemakeargs[@]}" install - - if [[ ${CHOST} == *-darwin* ]] ; then - local file="libmpack.0.0.0.dylib" - install_name_tool -id "${EPREFIX}/usr/$(get_libdir)/${file}" "${ED}/usr/$(get_libdir)/${file}" || die "Failed to adjust install_name" - fi - - find "${ED}" -name '*.la' -delete || die -}