From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1209376-garchives=archives.gentoo.org@lists.gentoo.org> 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 44ED0138359 for <garchives@archives.gentoo.org>; Thu, 24 Sep 2020 20:20:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B861E0837; Thu, 24 Sep 2020 20:20:31 +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 3DA02E0837 for <gentoo-commits@lists.gentoo.org>; Thu, 24 Sep 2020 20:20:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C7938335DA8 for <gentoo-commits@lists.gentoo.org>; Thu, 24 Sep 2020 20:20:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37205353 for <gentoo-commits@lists.gentoo.org>; Thu, 24 Sep 2020 20:20:28 +0000 (UTC) From: "Conrad Kostecki" <conikost@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, "Conrad Kostecki" <conikost@gentoo.org> Message-ID: <1600978808.912abc766edede6a7114f5d3a9cf0c60dd853eff.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/statifier/statifier-1.7.4.ebuild X-VCS-Directories: dev-util/statifier/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 912abc766edede6a7114f5d3a9cf0c60dd853eff X-VCS-Branch: master Date: Thu, 24 Sep 2020 20:20:28 +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: bd6cc677-388e-499c-a04b-81ea9f1ec1df X-Archives-Hash: f32fffcc58a453e4264c274028622dd8 commit: 912abc766edede6a7114f5d3a9cf0c60dd853eff Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org> AuthorDate: Thu Sep 24 20:20:08 2020 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Thu Sep 24 20:20:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=912abc76 dev-util/statifier: drop old version Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> dev-util/statifier/statifier-1.7.4.ebuild | 58 ------------------------------- 1 file changed, 58 deletions(-) diff --git a/dev-util/statifier/statifier-1.7.4.ebuild b/dev-util/statifier/statifier-1.7.4.ebuild deleted file mode 100644 index 7ade05bbc42..00000000000 --- a/dev-util/statifier/statifier-1.7.4.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MULTILIB_COMPAT=( abi_x86_{32,64} ) - -inherit multilib-build toolchain-funcs - -DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables" -HOMEPAGE="http://statifier.sourceforge.net" -SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz" - -KEYWORDS="amd64 x86" -SLOT="0" -LICENSE="GPL-2" - -RDEPEND=" - app-shells/bash - sys-apps/coreutils - virtual/awk -" - -PATCHES=( - "${FILESDIR}"/${PN}-1.7.4-clang.patch - "${FILESDIR}"/${PN}-1.7.4-fix-build-system.patch - "${FILESDIR}"/${PN}-1.7.4-musl.patch -) - -src_prepare() { - default - - # Don't compile 32-bit on amd64 no-multilib profile - if ! use abi_x86_32; then - sed -i -e 's/ELF32 .*/ELF32 := no/g' configs/config.x86_64 || die - fi -} - -src_configure() { - tc-export CC - - # Fix permissions, as configure is not marked executable - chmod +x configure || die - econf -} - -src_compile() { - # Package complains with MAKEOPTS > -j1 - emake -j1 -} - -src_install() { - # Package complains with MAKEOPTS > -j1 - emake -j1 DESTDIR="${D}" install - - # Install docs - einstalldocs -}