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 58E33139694 for ; Sun, 4 Jun 2017 11:35:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF407E0EA4; Sun, 4 Jun 2017 11:35:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A75D5E0EA4 for ; Sun, 4 Jun 2017 11:35:56 +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 83A1A3418D2 for ; Sun, 4 Jun 2017 11:35:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C1087467 for ; Sun, 4 Jun 2017 11:35:54 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1496576106.d0f563666a03b112bc43aa2a7c9a5598318a44ff.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/phantomjs/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/phantomjs/phantomjs-2.0.0.ebuild X-VCS-Directories: www-client/phantomjs/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: d0f563666a03b112bc43aa2a7c9a5598318a44ff X-VCS-Branch: master Date: Sun, 4 Jun 2017 11:35:54 +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-Archives-Salt: debc0517-2df0-4c5a-a391-e75c9c199db5 X-Archives-Hash: e6fa9958923b06add3a67d865991a6c7 commit: d0f563666a03b112bc43aa2a7c9a5598318a44ff Author: Pacho Ramos gentoo org> AuthorDate: Sun Jun 4 11:12:49 2017 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Jun 4 11:35:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0f56366 www-client/phantomjs: Drop old Package-Manager: Portage-2.3.6, Repoman-2.3.2 www-client/phantomjs/phantomjs-2.0.0.ebuild | 82 ----------------------------- 1 file changed, 82 deletions(-) diff --git a/www-client/phantomjs/phantomjs-2.0.0.ebuild b/www-client/phantomjs/phantomjs-2.0.0.ebuild deleted file mode 100644 index 1826cedde17..00000000000 --- a/www-client/phantomjs/phantomjs-2.0.0.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -USE_RUBY="ruby20 ruby21 ruby22" - -inherit eutils toolchain-funcs pax-utils multiprocessing ruby-single - -DESCRIPTION="A headless WebKit scriptable with a JavaScript API" -HOMEPAGE="http://phantomjs.org/" -SRC_URI="https://bitbucket.org/ariya/phantomjs/downloads/${P}-source.zip" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="examples" - -RDEPEND="dev-libs/icu:= - dev-libs/openssl:0 - media-libs/fontconfig - media-libs/freetype - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0 - media-libs/libpng:0= - virtual/jpeg:0" -DEPEND="${RDEPEND} - ${RUBY_DEPS} - net-misc/openssh[-bindist] - app-arch/unzip - virtual/pkgconfig" - -src_prepare() { - epatch "${FILESDIR}/phantomjs-python3-udis86-itab.patch" - epatch "${FILESDIR}/phantomjs-gcc5-compile-fix.patch" - - # Respect CC, CXX, {C,CXX,LD}FLAGS in .qmake.cache - sed -i \ - -e "/^SYSTEM_VARIABLES=/i \ - CC='$(tc-getCC)'\n\ - CXX='$(tc-getCXX)'\n\ - CFLAGS='${CFLAGS}'\n\ - CXXFLAGS='${CXXFLAGS}'\n\ - LDFLAGS='${LDFLAGS}'\n\ - QMakeVar set QMAKE_CFLAGS_RELEASE\n\ - QMakeVar set QMAKE_CFLAGS_DEBUG\n\ - QMakeVar set QMAKE_CXXFLAGS_RELEASE\n\ - QMakeVar set QMAKE_CXXFLAGS_DEBUG\n\ - QMakeVar set QMAKE_LFLAGS_RELEASE\n\ - QMakeVar set QMAKE_LFLAGS_DEBUG\n"\ - src/qt/qtbase/configure \ - || die - - # Respect CC, CXX, LINK and *FLAGS in config.tests - find src/qt/qtbase/config.tests/unix -name '*.test' -type f -exec \ - sed -i -e "/bin\/qmake/ s: \"\$SRCDIR/: \ - 'QMAKE_CC=$(tc-getCC)' 'QMAKE_CXX=$(tc-getCXX)' 'QMAKE_LINK=$(tc-getCXX)' \ - 'QMAKE_CFLAGS+=${CFLAGS}' 'QMAKE_CXXFLAGS+=${CXXFLAGS}' 'QMAKE_LFLAGS+=${LDFLAGS}'&:" \ - {} + || die -} - -src_compile() { - ./build.sh \ - --confirm \ - --jobs $(makeopts_jobs) \ - --qt-config "$($(tc-getPKG_CONFIG) --cflags-only-I freetype2)" \ - || die -} - -src_test() { - ./bin/phantomjs test/run-tests.js || die -} - -src_install() { - pax-mark m bin/phantomjs || die - dobin bin/phantomjs - dodoc ChangeLog README.md - if use examples ; then - docinto examples - dodoc examples/* - fi -}