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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 39577138334 for ; Mon, 4 Mar 2019 20:49:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 077ECE08D4; Mon, 4 Mar 2019 20:49:07 +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 D26DBE08C8 for ; Mon, 4 Mar 2019 20:49:06 +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 6F74C335D1F for ; Mon, 4 Mar 2019 20:49:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EE9055B for ; Mon, 4 Mar 2019 20:49:03 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1551732529.1fb8aecf58eca5aa0d9ee7dc623d71f95190a23e.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/physfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/physfs/physfs-3.0.1.ebuild X-VCS-Directories: dev-games/physfs/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 1fb8aecf58eca5aa0d9ee7dc623d71f95190a23e X-VCS-Branch: master Date: Mon, 4 Mar 2019 20:49:03 +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: a672e76d-9471-4188-9cc5-dfa4e8db86b4 X-Archives-Hash: 81a06d0d6c1dd1be43e942460167f87a commit: 1fb8aecf58eca5aa0d9ee7dc623d71f95190a23e Author: Stefan Strogin gmail com> AuthorDate: Sun Mar 3 15:51:02 2019 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Mar 4 20:48:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fb8aecf dev-games/physfs: drop old Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Stefan Strogin gmail.com> Signed-off-by: James Le Cuirot gentoo.org> dev-games/physfs/physfs-3.0.1.ebuild | 46 ------------------------------------ 1 file changed, 46 deletions(-) diff --git a/dev-games/physfs/physfs-3.0.1.ebuild b/dev-games/physfs/physfs-3.0.1.ebuild deleted file mode 100644 index 4b0afd2bd59..00000000000 --- a/dev-games/physfs/physfs-3.0.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit cmake-multilib - -DESCRIPTION="Abstraction layer for filesystem and archive access" -HOMEPAGE="http://icculus.org/physfs/" -SRC_URI="http://icculus.org/physfs/downloads/${P}.tar.bz2" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86 ~x86-fbsd" -IUSE="grp hog mvl qpak static-libs wad +zip" - -RDEPEND="" -DEPEND="" - -DOCS=( docs/CHANGELOG.txt docs/CREDITS.txt docs/TODO.txt ) - -src_prepare() { - cmake-utils_src_prepare - - sed -i -e 's:-Werror::' CMakeLists.txt || die - # make sure these libs aren't used - rm -rf lzma zlib* -} - -src_configure() { - local mycmakeargs=( - -DPHYSFS_ARCHIVE_7Z=OFF - -DPHYSFS_BUILD_SHARED=ON - -DPHYSFS_BUILD_TEST=OFF - -DPHYSFS_BUILD_WX_TEST=OFF - -DPHYSFS_INTERNAL_ZLIB=OFF - -DPHYSFS_BUILD_STATIC="$(usex static-libs)" - -DPHYSFS_ARCHIVE_GRP="$(usex grp)" - -DPHYSFS_ARCHIVE_HOG="$(usex hog)" - -DPHYSFS_ARCHIVE_MVL="$(usex mvl)" - -DPHYSFS_ARCHIVE_WAD="$(usex wad)" - -DPHYSFS_ARCHIVE_QPAK="$(usex qpak)" - -DPHYSFS_ARCHIVE_ZIP="$(usex zip)" - ) - - cmake-multilib_src_configure -}