public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, media-gfx/yafaray/
@ 2018-03-15 16:34 Andreas Sturmlechner
  0 siblings, 0 replies; only message in thread
From: Andreas Sturmlechner @ 2018-03-15 16:34 UTC (permalink / raw
  To: gentoo-commits

commit:     752d52974e30d62e71ccff1066c0fcc966e4356f
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 15 15:23:50 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Mar 15 16:33:32 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=752d5297

profiles: Remove last-rited media-gfx/yafaray

Ancient bugs, no one to fix.

Closes: https://bugs.gentoo.org/321169
Closes: https://bugs.gentoo.org/595684

 media-gfx/yafaray/Manifest             |  2 -
 media-gfx/yafaray/metadata.xml         | 15 ------
 media-gfx/yafaray/yafaray-0.1.1.ebuild | 84 ----------------------------------
 profiles/package.mask                  | 10 ----
 4 files changed, 111 deletions(-)

diff --git a/media-gfx/yafaray/Manifest b/media-gfx/yafaray/Manifest
deleted file mode 100644
index 1c433f0ad9e..00000000000
--- a/media-gfx/yafaray/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST YafaRay-blender.0.1.1.zip 37965 BLAKE2B 7a17460b9b4e4abfd17c4e692e5686d02cdefd8fd5c941088c2af91659970ac88b183ef677a89b4be90eb9f1515283e9f41bb1c1f92b249a1131b51f2f63eb78 SHA512 0c424ec43fdd172a4e4729983807cff57ec9db335d5a4b48721c9790dbda2306e5d156a7b150b8565fe7ecebb840beb77bf6b29d8a836a8faef97c0ba5077b86
-DIST YafaRay.0.1.1.zip 542063 BLAKE2B 94827b83e27427a1e05377a3be3698c18f7a2ba3a6d25b662c6be432cedc683454b056bb33d490ba039a95977bbc024002c66c5389e25e191b395c9f67494934 SHA512 ba4deb56c20a67fe408b1797c518e12cccdb8f3d12fbfc6734bec40dc4d9d2ebfd2551762ed9064ed562d04d212b2154a9cd0011962fac28381b0d2ab2433ba0

diff --git a/media-gfx/yafaray/metadata.xml b/media-gfx/yafaray/metadata.xml
deleted file mode 100644
index f9d6744b6b5..00000000000
--- a/media-gfx/yafaray/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-	<email>graphics@gentoo.org</email>
-	<name>Gentoo Graphics Project</name>
-</maintainer>
-<longdescription lang="en">
-YafaRay is a raytracing open source render engine. Raytracing is a rendering technique for generating realistic images by tracing the path of light through a 3D scene.
-An render engine consists of a "faceless" computer program that interacts with a host 3D application to provide very specific raytracing capabilties "on demand". Blender 3D is the host application of YafaRay.
-</longdescription>
-<use>
-	<flag name="blender">install <pkg>media-gfx/blender</pkg> scripts</flag>
-</use>
-</pkgmetadata>

diff --git a/media-gfx/yafaray/yafaray-0.1.1.ebuild b/media-gfx/yafaray/yafaray-0.1.1.ebuild
deleted file mode 100644
index a3f95827e71..00000000000
--- a/media-gfx/yafaray/yafaray-0.1.1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-MY_PN="YafaRay"
-
-inherit multilib
-
-DESCRIPTION="YafaRay is a raytracing open source render engine"
-HOMEPAGE="http://www.yafaray.org/"
-SRC_URI="http://static.yafaray.org/sources/${MY_PN}.${PV}.zip
-	blender? (
-	http://static.yafaray.org/sources/${MY_PN}-blender.${PV}.zip
-	)"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+blender debug qt4"
-
-RDEPEND="
-	dev-libs/libxml2
-	media-libs/freetype
-	media-libs/libpng
-	media-libs/openexr
-	sys-libs/zlib
-	virtual/jpeg
-	blender? ( >=media-gfx/blender-2.49 )
-	qt4? ( dev-qt/qtcore:4
-		dev-qt/qtgui:4 )"
-DEPEND="${RDEPEND}
-	app-arch/unzip
-	dev-lang/swig
-	>=dev-util/scons-1.0"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
-	sed -i \
-		-e 's:-Wall::g' \
-		-e 's:-O3 -ffast-math::g' \
-		"${S}"/config/linux2-config.py || die "sed failed"
-	sed -i \
-	    -e "s:env.subst('\$YF_PLUGINPATH'):\"/usr/$(get_libdir)/yafaray\":"\
-		"${S}"/tools/writeconfig.py || die "sed failed"
-	# add correct paths for qt-libs
-	echo 'gui_env.Append(CPPPATH = ["/usr/include/qt4"])' >> "${S}"/src/gui/SConscript
-	echo "gui_env.Append(LIBPATH = [\"/usr/$(get_libdir)/qt4\"])" >> "${S}"/src/gui/SConscript
-}
-
-user_config() {
-	echo $@ >> "${S}"/user-config.py
-}
-
-src_configure() {
-	user_config "CCFLAGS=\"${CXXFLAGS}\""
-	user_config "PREFIX=\"${D}/usr\""
-	user_config "BASE_LPATH=\"/usr/$(get_libdir)/\""
-	user_config "YF_LIBOUT=\"\${PREFIX}/$(get_libdir)/\""
-	user_config "YF_PLUGINPATH=\"\${PREFIX}/$(get_libdir)/yafaray/\""
-	if use qt4; then
-		user_config "WITH_YF_QT='true'"
-		user_config "YF_QTDIR='/usr'"
-	fi
-	use debug && user_config "YF_DEBUG='true'"
-}
-
-src_compile() {
-	scons ${MAKEOPTS} || die "scons failed"
-	scons swig || die "scons swig failed"
-}
-
-src_install() {
-	scons install || die "scons install failed"
-	scons swig_install || die "scons swig_install failed"
-
-	if use blender; then
-		cd ../yafaray-blender
-		insinto /usr/share/blender/scripts
-		doins yafaray_ui.py
-		insinto /usr/share/yafaray/blender
-		doins yaf_*.py
-	fi
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index e0627588978..24c6e56894f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -458,16 +458,6 @@ net-misc/cocaine-core
 # Depends on dead Qt4, upstream porting inquiry pending. Bug #631788
 games-kids/crayon-physics
 
-# Jonas Stein <jstein@gentoo.org> (29 Nov 2017)
-# The old yafaray-0.1.1 depends on qt4 and has bugs we can not fix.
-# (bug #321169) and (bug #595684)
-# Users of yafaray may be interested in >=yafaray-3.3.0 (bug #639046)
-# and its fork TheBounty (#639158) which require completely new ebuilds.
-#
-# The old and for now the last version in the tree is
-# masked for removal on 2018-02-30
-=media-gfx/yafaray-0.1.1
-
 # Michał Górny <mgorny@gentoo.org> (25 Nov 2017)
 # Testing branch GTK+3 release. Changes API, breaks xfce-base/xfdesktop.
 # Masked until the latter sees a new release.


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-03-15 16:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-15 16:34 [gentoo-commits] repo/gentoo:master commit in: profiles/, media-gfx/yafaray/ Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox