diff options
author | 2015-07-03 21:45:06 +0000 | |
---|---|---|
committer | 2015-07-03 21:45:06 +0000 | |
commit | 0774a68211db9abada193f92025761b9d8cc464f (patch) | |
tree | 7eafdf0498fe2d31bc2195b155df014f71bd94d9 /eclass | |
parent | version bumps, removed some old ebuilds (diff) | |
download | gentoo-2-0774a68211db9abada193f92025761b9d8cc464f.tar.gz gentoo-2-0774a68211db9abada193f92025761b9d8cc464f.tar.bz2 gentoo-2-0774a68211db9abada193f92025761b9d8cc464f.zip |
golang-build.eclass: drop the slot dependency; it was pointed out to me
that they do not force rebuilds in DEPEND
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 d3b409ff3b57..9eca413d416d 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.1696 2015/07/01 11:28:23 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1697 2015/07/03 21:45:06 williamh Exp $ + + 03 Jul 2015; William Hubbs <williamh@gentoo.org> golang-build.eclass: + drop the slot dependency; it was pointed out to me that they do not trigger + rebuilds in DEPEND 01 Jul 2015; Manuel Rüger <mrueg@gentoo.org> kde4-base.eclass: Sync with overlay. Add SRC_URIs for newer KDE SC, KDE Workspace releases and diff --git a/eclass/golang-build.eclass b/eclass/golang-build.eclass index 1ca83ab11897..5fea09ed789d 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.2 2015/06/24 17:04:53 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/golang-build.eclass,v 1.3 2015/07/03 21:45:06 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 |