summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--eclass/bzr.eclass4
-rw-r--r--eclass/cdrom.eclass6
-rw-r--r--eclass/cvs.eclass2
-rw-r--r--eclass/darcs.eclass4
-rw-r--r--eclass/git-2.eclass4
-rw-r--r--eclass/git-r3.eclass4
-rw-r--r--eclass/golang-vcs.eclass4
-rw-r--r--eclass/mercurial.eclass4
-rw-r--r--eclass/subversion.eclass2
9 files changed, 25 insertions, 9 deletions
diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass
index cc46be794214..10bd6bc7e5ad 100644
--- a/eclass/bzr.eclass
+++ b/eclass/bzr.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
#
# @ECLASS: bzr.eclass
@@ -21,6 +21,8 @@
EBZR="bzr.eclass"
+PROPERTIES+=" live"
+
if [[ ${EBZR_REPO_URI%%:*} = sftp ]]; then
DEPEND=">=dev-vcs/bzr-2.6.0[sftp]"
else
diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass
index 7b0eb9c6c3b5..77b9d6ceb209 100644
--- a/eclass/cdrom.eclass
+++ b/eclass/cdrom.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: cdrom.eclass
@@ -28,9 +28,9 @@ inherit portability
# conditionally based on USE="cdinstall".
if [[ ${CDROM_OPTIONAL} == "yes" ]] ; then
IUSE="cdinstall"
- PROPERTIES="cdinstall? ( interactive )"
+ PROPERTIES+=" cdinstall? ( interactive )"
else
- PROPERTIES="interactive"
+ PROPERTIES+=" interactive"
fi
# @FUNCTION: cdrom_get_cds
diff --git a/eclass/cvs.eclass b/eclass/cvs.eclass
index e667b563fb3d..26706cd74d1f 100644
--- a/eclass/cvs.eclass
+++ b/eclass/cvs.eclass
@@ -173,6 +173,8 @@ _CVS_ECLASS=1
# Set this to get a clean copy when updating (passes the
# -C option to cvs update)
+PROPERTIES+=" live"
+
# add cvs to deps
# ssh is used for ext auth
DEPEND="dev-vcs/cvs"
diff --git a/eclass/darcs.eclass b/eclass/darcs.eclass
index 09b718823670..1c1a051f8c1c 100644
--- a/eclass/darcs.eclass
+++ b/eclass/darcs.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: darcs.eclass
@@ -85,6 +85,8 @@ SRC_URI=""
# --- end ebuild-configurable settings ---
+PROPERTIES+=" live"
+
case ${EAPI:-0} in
[0-6]) # no need to care about 5-HDEPEND and similar
DEPEND="dev-vcs/darcs
diff --git a/eclass/git-2.eclass b/eclass/git-2.eclass
index 5371a612dccf..917163291e63 100644
--- a/eclass/git-2.eclass
+++ b/eclass/git-2.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: git-2.eclass
@@ -20,6 +20,8 @@ esac
# This eclass support all EAPIs.
EXPORT_FUNCTIONS src_unpack
+PROPERTIES+=" live"
+
DEPEND="dev-vcs/git"
# @ECLASS-VARIABLE: EGIT_SOURCEDIR
diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass
index a1ad0d238dc9..b1c7f7f43abc 100644
--- a/eclass/git-r3.eclass
+++ b/eclass/git-r3.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: git-r3.eclass
@@ -25,6 +25,8 @@ EXPORT_FUNCTIONS src_unpack
if [[ ! ${_GIT_R3} ]]; then
+PROPERTIES+=" live"
+
if [[ ! ${_INHERITED_BY_GIT_2} ]]; then
if [[ ${EAPI:-0} != [0123456] ]]; then
BDEPEND=">=dev-vcs/git-1.8.2.1[curl]"
diff --git a/eclass/golang-vcs.eclass b/eclass/golang-vcs.eclass
index 561d1a0c4da1..fb57a1e84ac4 100644
--- a/eclass/golang-vcs.eclass
+++ b/eclass/golang-vcs.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: golang-vcs.eclass
@@ -26,6 +26,8 @@ if [[ -z ${_GOLANG_VCS} ]]; then
_GOLANG_VCS=1
+PROPERTIES+=" live"
+
# @ECLASS-VARIABLE: EGO_PN
# @REQUIRED
# @DESCRIPTION:
diff --git a/eclass/mercurial.eclass b/eclass/mercurial.eclass
index 9a5bd191c231..faf38306db38 100644
--- a/eclass/mercurial.eclass
+++ b/eclass/mercurial.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: mercurial.eclass
@@ -18,6 +18,8 @@ inherit eutils
EXPORT_FUNCTIONS src_unpack
+PROPERTIES+=" live"
+
DEPEND="dev-vcs/mercurial"
# @ECLASS-VARIABLE: EHG_REPO_URI
diff --git a/eclass/subversion.eclass b/eclass/subversion.eclass
index 4dd2b48c6ce6..6d26820bc090 100644
--- a/eclass/subversion.eclass
+++ b/eclass/subversion.eclass
@@ -28,6 +28,8 @@ case ${EAPI:-0} in
;;
esac
+PROPERTIES+=" live"
+
DEPEND="|| (
dev-vcs/subversion[http]
dev-vcs/subversion[webdav-neon]