public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: ChangeLog adobe-flash-10.1.53.64.ebuild
@ 2010-06-11 19:33 Jim Ramsay (lack)
  0 siblings, 0 replies; 7+ messages in thread
From: Jim Ramsay (lack) @ 2010-06-11 19:33 UTC (permalink / raw
  To: gentoo-commits

lack        10/06/11 19:33:58

  Modified:             ChangeLog
  Added:                adobe-flash-10.1.53.64.ebuild
  Log:
  Adobe-flash 10.1.53.64 is released, and fixes security exploit CVE-2010-1297 (Bug #322855)
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.24                 www-plugins/adobe-flash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	3 May 2010 15:09:00 -0000	1.23
+++ ChangeLog	11 Jun 2010 19:33:58 -0000	1.24
@@ -1,6 +1,14 @@
 # ChangeLog for www-plugins/adobe-flash
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.23 2010/05/03 15:09:00 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.24 2010/06/11 19:33:58 lack Exp $
+
+*adobe-flash-10.1.53.64 (11 Jun 2010)
+
+  11 Jun 2010; Jim Ramsay <lack@gentoo.org> +adobe-flash-10.1.53.64.ebuild:
+  Adobe-flash 10.1.53.64 is released, and fixes security exploit
+  CVE-2010-1297 (Bug #322855). Unfortunately there is no native 64bit
+  version, so amd64 users are going back to a 32bit plugin plus
+  nspluginwrapper.
 
   03 May 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.0.45.2.ebuild:
   Removing libflashsupport block (Bug #300294)



1.1                  www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.1&content-type=text/plain

Index: adobe-flash-10.1.53.64.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.1 2010/06/11 19:33:58 lack Exp $

EAPI=1
inherit nsplugins rpm multilib toolchain-funcs

MY_32B_URI="http://fpdownload.macromedia.com/get/flashplayer/current/flash-plugin-${PV}-release.i386.rpm"

DESCRIPTION="Adobe Flash Player"
SRC_URI="${MY_32B_URI}"
HOMEPAGE="http://www.adobe.com/"
IUSE="multilib"
SLOT="0"

KEYWORDS="-* ~amd64 ~x86"
LICENSE="AdobeFlash-10"
RESTRICT="strip mirror"

S="${WORKDIR}"

NATIVE_DEPS="x11-libs/gtk+:2
	media-libs/fontconfig
	dev-libs/nss
	net-misc/curl
	>=sys-libs/glibc-2.4"

EMUL_DEPS=">=app-emulation/emul-linux-x86-baselibs-20100220
	app-emulation/emul-linux-x86-gtklibs
	app-emulation/emul-linux-x86-soundlibs
	app-emulation/emul-linux-x86-xlibs"

RDEPEND="x86? ( $NATIVE_DEPS )
	amd64? ( $EMUL_DEPS
		www-plugins/nspluginwrapper )
	|| ( media-fonts/liberation-fonts media-fonts/corefonts )"

# Ignore QA warnings in these binary closed-source libraries, since we can't fix
# them:
QA_EXECSTACK="opt/netscape/plugins32/libflashplayer.so
	opt/netscape/plugins/libflashplayer.so"

QA_DT_HASH="opt/netscape/plugins32/libflashplayer.so
	opt/netscape/plugins/libflashplayer.so"

pkg_setup() {
	if use x86; then
		export native_install=1
	elif use amd64; then
		# As of 10.1, no more native 64b version *grumble grumble*
		unset native_install
		unset need_lahf_wrapper
		export amd64_32bit=1
	fi
}

src_compile() {
	if [[ $need_lahf_wrapper ]]; then
		# This experimental wrapper, from Maks Verver via bug #268336 should
		# emulate the missing lahf instruction affected platforms.
		$(tc-getCC) -fPIC -shared -nostdlib -lc -oflashplugin-lahf-fix.so \
			"${FILESDIR}/flashplugin-lahf-fix.c" \
			|| die "Compile of flashplugin-lahf-fix.so failed"
	fi
}

src_install() {
	if [[ $native_install ]]; then
		# 32b RPM has things hidden in funny places
		use x86 && pushd "${S}/usr/lib/flash-plugin"

		exeinto /opt/netscape/plugins
		doexe libflashplayer.so
		inst_plugin /opt/netscape/plugins/libflashplayer.so

		use x86 && popd

		# 64b tarball has no readme file.
		use x86 && dodoc "${S}/usr/share/doc/flash-plugin-${PV}/readme.txt"
	fi

	if [[ $need_lahf_wrapper ]]; then
		# This experimental wrapper, from Maks Verver via bug #268336 should
		# emulate the missing lahf instruction affected platforms.
		exeinto /opt/netscape/plugins
		doexe flashplugin-lahf-fix.so
		inst_plugin /opt/netscape/plugins/flashplugin-lahf-fix.so
	fi

	if [[ $amd64_32bit ]]; then
		oldabi="${ABI}"
		ABI="x86"

		# 32b plugin
		pushd "${S}/usr/lib/flash-plugin"
			exeinto /opt/netscape/plugins32/
			doexe libflashplayer.so
			inst_plugin /opt/netscape/plugins32/libflashplayer.so
			dodoc "${S}/usr/share/doc/flash-plugin-${PV}/readme.txt"
		popd

		ABI="${oldabi}"
	fi

	# The magic config file!
	insinto "/etc/adobe"
	doins "${FILESDIR}/mms.cfg"
}

pkg_postinst() {
	if use amd64; then
		elog "Adobe has released 10.1 in only a 32-bit version so far and"
		elog "upgrading is required to close a major security exploit[1]."
		elog "You will be going back to a 32-bit plugin with nswrapper until"
		elog "Adobe decides otherwise."
		elog "  [1] http://bugs.gentoo.org/322855"
		elog
		if has_version 'www-plugins/nspluginwrapper'; then
			if [[ $native_install ]]; then
				# TODO: Perhaps parse the output of 'nspluginwrapper -l'
				#       However, the 64b flash plugin makes 'nspluginwrapper -l' segfault.
				local FLASH_WRAPPER="${ROOT}/usr/lib64/nsbrowser/plugins/npwrapper.libflashplayer.so"
				if [[ -f ${FLASH_WRAPPER} ]]; then
					einfo "Removing duplicate 32-bit plugin wrapper: Native 64-bit plugin installed"
					nspluginwrapper -r "${FLASH_WRAPPER}"
				fi
				if [[ $need_lahf_wrapper ]]; then
					ewarn "Your processor does not support the 'lahf' instruction which is used"
					ewarn "by Adobe's 64-bit flash binary.  We have installed a wrapper which"
					ewarn "should allow this plugin to run.  If you encounter problems, please"
					ewarn "adjust your USE flags to install only the 32-bit version and reinstall:"
					ewarn "  ${CATEGORY}/$PN[+32bit -64bit]"
				fi
			else
				oldabi="${ABI}"
				ABI="x86"
				local FLASH_SOURCE="${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR}/libflashplayer.so"

				einfo "nspluginwrapper detected: Installing plugin wrapper"
				nspluginwrapper -i "${FLASH_SOURCE}"

				ABI="${oldabi}"
			fi
		elif [[ ! $native_install ]]; then
			einfo "To use the 32-bit flash player in a native 64-bit firefox,"
			einfo "you must install www-plugins/nspluginwrapper"
		fi
	fi

	ewarn "Flash player is closed-source, with a long history of security"
	ewarn "issues.  Please consider only running flash applets you know to"
	ewarn "be safe.  The 'flashblock' extension may help for mozilla users:"
	ewarn "  https://addons.mozilla.org/en-US/firefox/addon/433"
}






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: ChangeLog adobe-flash-10.1.53.64.ebuild
@ 2010-06-13 14:21 Jim Ramsay (lack)
  0 siblings, 0 replies; 7+ messages in thread
From: Jim Ramsay (lack) @ 2010-06-13 14:21 UTC (permalink / raw
  To: gentoo-commits

lack        10/06/13 14:21:48

  Modified:             ChangeLog adobe-flash-10.1.53.64.ebuild
  Log:
  Updating dependencies to >=app-emulation/emul-linux-x86-baselibs-20100409 (Bug #323709)
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.26                 www-plugins/adobe-flash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	11 Jun 2010 20:13:31 -0000	1.25
+++ ChangeLog	13 Jun 2010 14:21:48 -0000	1.26
@@ -1,6 +1,10 @@
 # ChangeLog for www-plugins/adobe-flash
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.25 2010/06/11 20:13:31 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.26 2010/06/13 14:21:48 lack Exp $
+
+  13 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.1.53.64.ebuild:
+  Updating dependencies to >=app-emulation/emul-linux-x86-baselibs-20100409
+  (Bug #323709)
 
   11 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.0.45.2.ebuild,
   adobe-flash-10.0.45.2-r1.ebuild, adobe-flash-10.1.53.64.ebuild:



1.3                  www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?r1=1.2&r2=1.3

Index: adobe-flash-10.1.53.64.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- adobe-flash-10.1.53.64.ebuild	11 Jun 2010 20:13:31 -0000	1.2
+++ adobe-flash-10.1.53.64.ebuild	13 Jun 2010 14:21:48 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.2 2010/06/11 20:13:31 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.3 2010/06/13 14:21:48 lack Exp $
 
 EAPI=1
 inherit nsplugins rpm multilib toolchain-funcs
@@ -25,7 +25,7 @@
 	net-misc/curl
 	>=sys-libs/glibc-2.4"
 
-EMUL_DEPS=">=app-emulation/emul-linux-x86-baselibs-20100220
+EMUL_DEPS=">=app-emulation/emul-linux-x86-baselibs-20100409
 	app-emulation/emul-linux-x86-gtklibs
 	app-emulation/emul-linux-x86-soundlibs
 	app-emulation/emul-linux-x86-xlibs"






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: ChangeLog adobe-flash-10.1.53.64.ebuild
@ 2010-06-16 12:05 Jim Ramsay (lack)
  0 siblings, 0 replies; 7+ messages in thread
From: Jim Ramsay (lack) @ 2010-06-16 12:05 UTC (permalink / raw
  To: gentoo-commits

lack        10/06/16 12:05:53

  Modified:             ChangeLog adobe-flash-10.1.53.64.ebuild
  Log:
  New license for version 10.1 (Bug #323837)
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.27                 www-plugins/adobe-flash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	13 Jun 2010 14:21:48 -0000	1.26
+++ ChangeLog	16 Jun 2010 12:05:53 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for www-plugins/adobe-flash
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.26 2010/06/13 14:21:48 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.27 2010/06/16 12:05:53 lack Exp $
+
+  16 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.1.53.64.ebuild:
+  New license for version 10.1 (Bug #323837)
 
   13 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.1.53.64.ebuild:
   Updating dependencies to >=app-emulation/emul-linux-x86-baselibs-20100409



1.4                  www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?r1=1.3&r2=1.4

Index: adobe-flash-10.1.53.64.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- adobe-flash-10.1.53.64.ebuild	13 Jun 2010 14:21:48 -0000	1.3
+++ adobe-flash-10.1.53.64.ebuild	16 Jun 2010 12:05:53 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.3 2010/06/13 14:21:48 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.4 2010/06/16 12:05:53 lack Exp $
 
 EAPI=1
 inherit nsplugins rpm multilib toolchain-funcs
@@ -14,7 +14,7 @@
 SLOT="0"
 
 KEYWORDS="-* ~x86"
-LICENSE="AdobeFlash-10"
+LICENSE="AdobeFlash-10.1"
 RESTRICT="strip mirror"
 
 S="${WORKDIR}"






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: ChangeLog adobe-flash-10.1.53.64.ebuild
@ 2010-06-18 18:16 Jim Ramsay (lack)
  0 siblings, 0 replies; 7+ messages in thread
From: Jim Ramsay (lack) @ 2010-06-18 18:16 UTC (permalink / raw
  To: gentoo-commits

lack        10/06/18 18:16:09

  Modified:             ChangeLog adobe-flash-10.1.53.64.ebuild
  Log:
  Reintroduce ~amd64 for 10.1, but do not automatically invoke nspluginwrapper (Bug #324356)
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.29                 www-plugins/adobe-flash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	17 Jun 2010 13:42:44 -0000	1.28
+++ ChangeLog	18 Jun 2010 18:16:08 -0000	1.29
@@ -1,6 +1,10 @@
 # ChangeLog for www-plugins/adobe-flash
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.28 2010/06/17 13:42:44 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.29 2010/06/18 18:16:08 lack Exp $
+
+  18 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.1.53.64.ebuild:
+  Reintroduce ~amd64 for 10.1, but do not automatically invoke
+  nspluginwrapper (Bug #324356)
 
 *adobe-flash-9.0.277.0 (17 Jun 2010)
 



1.5                  www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?r1=1.4&r2=1.5

Index: adobe-flash-10.1.53.64.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- adobe-flash-10.1.53.64.ebuild	16 Jun 2010 12:05:53 -0000	1.4
+++ adobe-flash-10.1.53.64.ebuild	18 Jun 2010 18:16:08 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.4 2010/06/16 12:05:53 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.5 2010/06/18 18:16:08 lack Exp $
 
 EAPI=1
 inherit nsplugins rpm multilib toolchain-funcs
@@ -13,7 +13,7 @@
 IUSE="multilib"
 SLOT="0"
 
-KEYWORDS="-* ~x86"
+KEYWORDS="-* ~amd64 ~x86"
 LICENSE="AdobeFlash-10.1"
 RESTRICT="strip mirror"
 
@@ -31,8 +31,7 @@
 	app-emulation/emul-linux-x86-xlibs"
 
 RDEPEND="x86? ( $NATIVE_DEPS )
-	amd64? ( $EMUL_DEPS
-		www-plugins/nspluginwrapper )
+	amd64? ( $EMUL_DEPS )
 	|| ( media-fonts/liberation-fonts media-fonts/corefonts )"
 
 # Ignore QA warnings in these binary closed-source libraries, since we can't fix
@@ -109,42 +108,49 @@
 
 pkg_postinst() {
 	if use amd64; then
-		elog "Adobe has released 10.1 in only a 32-bit version so far and"
-		elog "upgrading is required to close a major security exploit[1]."
-		elog "You will be going back to a 32-bit plugin with nswrapper until"
-		elog "Adobe decides otherwise."
-		elog "  [1] http://bugs.gentoo.org/322855"
+		elog "Adobe has released 10.1 in only a 32-bit version and upgrading"
+		elog "is required to close a major security exploit:"
+		elog "  http://bugs.gentoo.org/322855"
 		elog
-		if has_version 'www-plugins/nspluginwrapper'; then
-			if [[ $native_install ]]; then
-				# TODO: Perhaps parse the output of 'nspluginwrapper -l'
-				#       However, the 64b flash plugin makes 'nspluginwrapper -l' segfault.
-				local FLASH_WRAPPER="${ROOT}/usr/lib64/nsbrowser/plugins/npwrapper.libflashplayer.so"
-				if [[ -f ${FLASH_WRAPPER} ]]; then
-					einfo "Removing duplicate 32-bit plugin wrapper: Native 64-bit plugin installed"
-					nspluginwrapper -r "${FLASH_WRAPPER}"
-				fi
-				if [[ $need_lahf_wrapper ]]; then
-					ewarn "Your processor does not support the 'lahf' instruction which is used"
-					ewarn "by Adobe's 64-bit flash binary.  We have installed a wrapper which"
-					ewarn "should allow this plugin to run.  If you encounter problems, please"
-					ewarn "adjust your USE flags to install only the 32-bit version and reinstall:"
-					ewarn "  ${CATEGORY}/$PN[+32bit -64bit]"
-				fi
-			else
-				oldabi="${ABI}"
-				ABI="x86"
-				local FLASH_SOURCE="${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR}/libflashplayer.so"
-
-				einfo "nspluginwrapper detected: Installing plugin wrapper"
-				nspluginwrapper -i "${FLASH_SOURCE}"
-
-				ABI="${oldabi}"
-			fi
-		elif [[ ! $native_install ]]; then
-			einfo "To use the 32-bit flash player in a native 64-bit firefox,"
-			einfo "you must install www-plugins/nspluginwrapper"
-		fi
+		elog "Furthermore, there are stability problems when running 10.1 in a"
+		elog "64-bit browser with nspluginwrapper.  The current recommended"
+		elog "configuration is to use a 32-bit browser such as"
+		elog "www-client/firefox-bin:"
+		elog "  http://bugs.gentoo.org/324356"
+		elog
+		# Temporarily skip automatic nspluginwrapper stuff, since it is fraught
+		# with peril (Bug #324365):
+		#
+		#if has_version 'www-plugins/nspluginwrapper'; then
+		#	if [[ $native_install ]]; then
+		#		# TODO: Perhaps parse the output of 'nspluginwrapper -l'
+		#		#       However, the 64b flash plugin makes 'nspluginwrapper -l' segfault.
+		#		local FLASH_WRAPPER="${ROOT}/usr/lib64/nsbrowser/plugins/npwrapper.libflashplayer.so"
+		#		if [[ -f ${FLASH_WRAPPER} ]]; then
+		#			einfo "Removing duplicate 32-bit plugin wrapper: Native 64-bit plugin installed"
+		#			nspluginwrapper -r "${FLASH_WRAPPER}"
+		#		fi
+		#		if [[ $need_lahf_wrapper ]]; then
+		#			ewarn "Your processor does not support the 'lahf' instruction which is used"
+		#			ewarn "by Adobe's 64-bit flash binary.  We have installed a wrapper which"
+		#			ewarn "should allow this plugin to run.  If you encounter problems, please"
+		#			ewarn "adjust your USE flags to install only the 32-bit version and reinstall:"
+		#			ewarn "  ${CATEGORY}/$PN[+32bit -64bit]"
+		#		fi
+		#	else
+		#		oldabi="${ABI}"
+		#		ABI="x86"
+		#		local FLASH_SOURCE="${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR}/libflashplayer.so"
+		#
+		#		einfo "nspluginwrapper detected: Installing plugin wrapper"
+		#		nspluginwrapper -i "${FLASH_SOURCE}"
+		#
+		#		ABI="${oldabi}"
+		#	fi
+		#elif [[ ! $native_install ]]; then
+		#	einfo "To use the 32-bit flash player in a native 64-bit firefox,"
+		#	einfo "you must install www-plugins/nspluginwrapper"
+		#fi
 	fi
 
 	ewarn "Flash player is closed-source, with a long history of security"






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: ChangeLog adobe-flash-10.1.53.64.ebuild
@ 2010-06-19 10:05 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 7+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-06-19 10:05 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/06/19 10:05:47

  Modified:             ChangeLog adobe-flash-10.1.53.64.ebuild
  Log:
  x86 stable wrt security bug #322855
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.30                 www-plugins/adobe-flash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	18 Jun 2010 18:16:08 -0000	1.29
+++ ChangeLog	19 Jun 2010 10:05:47 -0000	1.30
@@ -1,6 +1,10 @@
 # ChangeLog for www-plugins/adobe-flash
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.29 2010/06/18 18:16:08 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.30 2010/06/19 10:05:47 phajdan.jr Exp $
+
+  19 Jun 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  adobe-flash-10.1.53.64.ebuild:
+  x86 stable wrt security bug #322855
 
   18 Jun 2010; Jim Ramsay <lack@gentoo.org> adobe-flash-10.1.53.64.ebuild:
   Reintroduce ~amd64 for 10.1, but do not automatically invoke



1.6                  www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?r1=1.5&r2=1.6

Index: adobe-flash-10.1.53.64.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- adobe-flash-10.1.53.64.ebuild	18 Jun 2010 18:16:08 -0000	1.5
+++ adobe-flash-10.1.53.64.ebuild	19 Jun 2010 10:05:47 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.5 2010/06/18 18:16:08 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.6 2010/06/19 10:05:47 phajdan.jr Exp $
 
 EAPI=1
 inherit nsplugins rpm multilib toolchain-funcs
@@ -13,7 +13,7 @@
 IUSE="multilib"
 SLOT="0"
 
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* ~amd64 x86"
 LICENSE="AdobeFlash-10.1"
 RESTRICT="strip mirror"
 






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: ChangeLog adobe-flash-10.1.53.64.ebuild
@ 2010-06-20 15:11 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-06-20 15:11 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/06/20 15:11:20

  Modified:             ChangeLog adobe-flash-10.1.53.64.ebuild
  Log:
  Stable on amd64 wrt bug #322855
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.31                 www-plugins/adobe-flash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	19 Jun 2010 10:05:47 -0000	1.30
+++ ChangeLog	20 Jun 2010 15:11:20 -0000	1.31
@@ -1,6 +1,10 @@
 # ChangeLog for www-plugins/adobe-flash
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.30 2010/06/19 10:05:47 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.31 2010/06/20 15:11:20 hwoarang Exp $
+
+  20 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
+  adobe-flash-10.1.53.64.ebuild:
+  Stable on amd64 wrt bug #322855
 
   19 Jun 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   adobe-flash-10.1.53.64.ebuild:



1.7                  www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?r1=1.6&r2=1.7

Index: adobe-flash-10.1.53.64.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- adobe-flash-10.1.53.64.ebuild	19 Jun 2010 10:05:47 -0000	1.6
+++ adobe-flash-10.1.53.64.ebuild	20 Jun 2010 15:11:20 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.6 2010/06/19 10:05:47 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.7 2010/06/20 15:11:20 hwoarang Exp $
 
 EAPI=1
 inherit nsplugins rpm multilib toolchain-funcs
@@ -13,7 +13,7 @@
 IUSE="multilib"
 SLOT="0"
 
-KEYWORDS="-* ~amd64 x86"
+KEYWORDS="-* amd64 x86"
 LICENSE="AdobeFlash-10.1"
 RESTRICT="strip mirror"
 






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: ChangeLog adobe-flash-10.1.53.64.ebuild
@ 2010-07-11 10:46 Fabio Erculiani (lxnay)
  0 siblings, 0 replies; 7+ messages in thread
From: Fabio Erculiani (lxnay) @ 2010-07-11 10:46 UTC (permalink / raw
  To: gentoo-commits

lxnay       10/07/11 10:46:49

  Modified:             ChangeLog adobe-flash-10.1.53.64.ebuild
  Log:
  fix EMUL_DEPS, just list direct dependencies
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.35                 www-plugins/adobe-flash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	28 Jun 2010 19:35:40 -0000	1.34
+++ ChangeLog	11 Jul 2010 10:46:49 -0000	1.35
@@ -1,6 +1,10 @@
 # ChangeLog for www-plugins/adobe-flash
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.34 2010/06/28 19:35:40 lack Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.35 2010/07/11 10:46:49 lxnay Exp $
+
+  11 Jul 2010; Fabio Erculiani <lxnay@gentoo.org>
+  adobe-flash-10.1.53.64.ebuild:
+  fix EMUL_DEPS, just list direct dependencies
 
   28 Jun 2010; Jim Ramsay <lack@gentoo.org> files/mms.cfg:
   Fix typo in /etc/adobe/mms.cfg file header



1.10                 www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild?r1=1.9&r2=1.10

Index: adobe-flash-10.1.53.64.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- adobe-flash-10.1.53.64.ebuild	21 Jun 2010 17:46:24 -0000	1.9
+++ adobe-flash-10.1.53.64.ebuild	11 Jul 2010 10:46:49 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.9 2010/06/21 17:46:24 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-10.1.53.64.ebuild,v 1.10 2010/07/11 10:46:49 lxnay Exp $
 
 EAPI=1
 inherit nsplugins rpm multilib toolchain-funcs
@@ -25,10 +25,8 @@
 	net-misc/curl
 	>=sys-libs/glibc-2.4"
 
-EMUL_DEPS=">=app-emulation/emul-linux-x86-baselibs-20100409
-	app-emulation/emul-linux-x86-gtklibs
-	app-emulation/emul-linux-x86-soundlibs
-	app-emulation/emul-linux-x86-xlibs"
+EMUL_DEPS=">=app-emulation/emul-linux-x86-gtklibs-20100409-r1
+	app-emulation/emul-linux-x86-soundlibs"
 
 RDEPEND="x86? ( $NATIVE_DEPS )
 	amd64? ( $EMUL_DEPS )






^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-07-11 10:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-19 10:05 [gentoo-commits] gentoo-x86 commit in www-plugins/adobe-flash: ChangeLog adobe-flash-10.1.53.64.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2010-07-11 10:46 Fabio Erculiani (lxnay)
2010-06-20 15:11 Markos Chandras (hwoarang)
2010-06-18 18:16 Jim Ramsay (lack)
2010-06-16 12:05 Jim Ramsay (lack)
2010-06-13 14:21 Jim Ramsay (lack)
2010-06-11 19:33 Jim Ramsay (lack)

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