From 8fed94a1ea67905599daf674d69ce4f537b0ade2 Mon Sep 17 00:00:00 2001 From: Pacho Ramos Date: Mon, 9 Feb 2015 10:25:20 +0000 Subject: Drop old (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4) --- www-client/phantomjs/ChangeLog | 8 ++- www-client/phantomjs/phantomjs-1.3.0.ebuild | 55 -------------------- www-client/phantomjs/phantomjs-1.4.1.ebuild | 59 --------------------- www-client/phantomjs/phantomjs-1.9.7.ebuild | 79 ----------------------------- 4 files changed, 6 insertions(+), 195 deletions(-) delete mode 100644 www-client/phantomjs/phantomjs-1.3.0.ebuild delete mode 100644 www-client/phantomjs/phantomjs-1.4.1.ebuild delete mode 100644 www-client/phantomjs/phantomjs-1.9.7.ebuild (limited to 'www-client') diff --git a/www-client/phantomjs/ChangeLog b/www-client/phantomjs/ChangeLog index 1e70152c6fc7..6a3267b626a4 100644 --- a/www-client/phantomjs/ChangeLog +++ b/www-client/phantomjs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-client/phantomjs -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/phantomjs/ChangeLog,v 1.15 2014/10/29 08:28:10 graaff Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/phantomjs/ChangeLog,v 1.16 2015/02/09 10:25:20 pacho Exp $ + + 09 Feb 2015; Pacho Ramos -phantomjs-1.3.0.ebuild, + -phantomjs-1.4.1.ebuild, -phantomjs-1.9.7.ebuild: + Drop old *phantomjs-1.9.8 (29 Oct 2014) diff --git a/www-client/phantomjs/phantomjs-1.3.0.ebuild b/www-client/phantomjs/phantomjs-1.3.0.ebuild deleted file mode 100644 index 492ba271e30e..000000000000 --- a/www-client/phantomjs/phantomjs-1.3.0.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/phantomjs/phantomjs-1.3.0.ebuild,v 1.4 2013/03/02 23:40:56 hwoarang Exp $ - -EAPI="2" - -PYTHON_DEPEND="python? 2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils qt4-r2 - -DESCRIPTION="headless WebKit with JavaScript API" -HOMEPAGE="http://www.phantomjs.org/" -SRC_URI="http://phantomjs.googlecode.com/files/${P}-source.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="examples python" - -RDEPEND="dev-qt/qtwebkit:4 - python? ( dev-python/PyQt4 )" -DEPEND="${RDEPEND}" - -# Call all the parent eclasses without having to worry -# about what funcs they actually export. -maybe() { set -- $(declare -F $1); $1; } -multi_eclass() { - maybe qt4-r2_$1 - if use python ; then - [[ -d python ]] && cd python - maybe distutils_$1 - fi -} -pkg_setup() { multi_eclass ${FUNCNAME} ; } -pkg_preinst() { multi_eclass ${FUNCNAME} ; } -pkg_postinst() { multi_eclass ${FUNCNAME} ; } -pkg_prerm() { multi_eclass ${FUNCNAME} ; } -pkg_postrm() { multi_eclass ${FUNCNAME} ; } -src_prepare() { multi_eclass ${FUNCNAME} ; } -src_configure() { multi_eclass ${FUNCNAME} ; } -src_compile() { multi_eclass ${FUNCNAME} ; } - -src_install() { - dobin bin/phantomjs || die - dodoc ChangeLog README.md - - if use examples ; then - docinto examples - dodoc examples/* || die - fi - - multi_eclass ${FUNCNAME} -} diff --git a/www-client/phantomjs/phantomjs-1.4.1.ebuild b/www-client/phantomjs/phantomjs-1.4.1.ebuild deleted file mode 100644 index d0b637865113..000000000000 --- a/www-client/phantomjs/phantomjs-1.4.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/phantomjs/phantomjs-1.4.1.ebuild,v 1.3 2013/03/02 23:40:56 hwoarang Exp $ - -EAPI="2" - -PYTHON_DEPEND="python? 2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils qt4-r2 - -DESCRIPTION="headless WebKit with JavaScript API" -HOMEPAGE="http://www.phantomjs.org/" -SRC_URI="http://phantomjs.googlecode.com/files/${P}-source.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="examples python" - -RDEPEND="dev-qt/qtwebkit:4 - python? ( dev-python/PyQt4 )" -DEPEND="${RDEPEND}" - -# Call all the parent eclasses without having to worry -# about what funcs they actually export. -maybe() { set -- $(declare -F $1); $1; } -multi_eclass() { - maybe qt4-r2_$1 - if use python ; then - [[ -d python ]] && cd python - maybe distutils_$1 - fi -} -pkg_setup() { multi_eclass ${FUNCNAME} ; } -pkg_preinst() { multi_eclass ${FUNCNAME} ; } -pkg_postinst() { multi_eclass ${FUNCNAME} ; } -pkg_prerm() { multi_eclass ${FUNCNAME} ; } -pkg_postrm() { multi_eclass ${FUNCNAME} ; } -src_prepare() { multi_eclass ${FUNCNAME} ; } -src_configure() { multi_eclass ${FUNCNAME} ; } -src_compile() { multi_eclass ${FUNCNAME} ; } - -src_test() { - ./bin/phantomjs test/run-tests.js || die -} - -src_install() { - dobin bin/phantomjs || die - dodoc ChangeLog README.md - - if use examples ; then - docinto examples - dodoc examples/* || die - fi - - multi_eclass ${FUNCNAME} -} diff --git a/www-client/phantomjs/phantomjs-1.9.7.ebuild b/www-client/phantomjs/phantomjs-1.9.7.ebuild deleted file mode 100644 index d5c476bd31c4..000000000000 --- a/www-client/phantomjs/phantomjs-1.9.7.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/phantomjs/phantomjs-1.9.7.ebuild,v 1.3 2014/10/29 08:28:10 graaff Exp $ - -EAPI=5 - -inherit toolchain-funcs pax-utils multiprocessing - -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 - media-libs/fontconfig - media-libs/freetype - media-libs/gstreamer:0.10 - media-libs/gst-plugins-base:0.10" -DEPEND="${RDEPEND} - app-arch/unzip - virtual/pkgconfig" - -src_prepare() { - sed -i \ - -e '/^# CONFIG += text_breaking_with_icu/s:#::' \ - src/qt/src/3rdparty/webkit/Source/JavaScriptCore/JavaScriptCore.pri \ - || die - - # 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/configure \ - || die - - # Respect CC, CXX, LINK and *FLAGS in config.tests - find src/qt/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 -} -- cgit v1.2.3-65-gdbad