diff options
author | William Hubbs <williamh@gentoo.org> | 2015-07-06 16:48:21 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2015-07-06 16:48:21 +0000 |
commit | 6962391cfbf8d51a05c075fecf72439c844ae853 (patch) | |
tree | 4b5e7098f26f479134c6b7589ed5e57a6a9c349f /eclass | |
parent | Add backport from upstream for CVE-2015-3210 #551240 by Thomas D. Add backpo... (diff) | |
download | gentoo-2-6962391cfbf8d51a05c075fecf72439c844ae853.tar.gz gentoo-2-6962391cfbf8d51a05c075fecf72439c844ae853.tar.bz2 gentoo-2-6962391cfbf8d51a05c075fecf72439c844ae853.zip |
Add back the subslot operator in the dependency on Go. We need this so that we have the Go version the package was built with recorded.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/golang-build.eclass | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 52288e930b16..ce63ea71a085 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1701 2015/07/06 15:48:51 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1702 2015/07/06 16:48:21 williamh Exp $ + + 06 Jul 2015; William Hubbs <williamh@gentoo.org> golang-build.eclass: + Add back the subslot operator in the dependency on Go. We need this so that + we have the Go version the package was built with recorded. 06 Jul 2015; Michael Palimaka <kensington@gentoo.org> kde5.eclass: Add missing USE dependency default wrt bug #554056. diff --git a/eclass/golang-build.eclass b/eclass/golang-build.eclass index 5fea09ed789d..f828f7995b07 100644 --- a/eclass/golang-build.eclass +++ b/eclass/golang-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/golang-build.eclass,v 1.3 2015/07/03 21:45:06 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/golang-build.eclass,v 1.4 2015/07/06 16:48:21 williamh Exp $ # @ECLASS: golang-build.eclass # @MAINTAINER: @@ -24,7 +24,7 @@ if [[ -z ${_GOLANG_BUILD} ]]; then _GOLANG_BUILD=1 -DEPEND=">=dev-lang/go-1.4.2" +DEPEND=">=dev-lang/go-1.4.2:=" STRIP_MASK="*.a" # @ECLASS-VARIABLE: EGO_PN |