diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-03-19 08:52:49 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-03-19 08:52:49 +0000 |
commit | 786e559061273599496ace6784341a7cb0a942fd (patch) | |
tree | 45eb4d3b4ec24a978af7604597d1fd16480f355e /eclass | |
parent | Add ~mips keyword, needed by newer app-text/texi2html wrt #408399 (diff) | |
download | historical-786e559061273599496ace6784341a7cb0a942fd.tar.gz historical-786e559061273599496ace6784341a7cb0a942fd.tar.bz2 historical-786e559061273599496ace6784341a7cb0a942fd.zip |
Fix old eclass name in die-message.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/vcs-snapshot.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index c494ba55f4ea..bcd956e3b31c 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.172 2012/03/19 08:38:45 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.173 2012/03/19 08:52:49 mgorny Exp $ + + 19 Mar 2012; Michał Górny <mgorny@gentoo.org> vcs-snapshot.eclass: + Fix old eclass name in die-message. 19 Mar 2012; Michał Górny <mgorny@gentoo.org> +vcs-snapshot.eclass: Introduce vcs-snapshot eclass to simplify working with github, bitbucket diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass index 2bc459bea408..674836033b5f 100644 --- a/eclass/vcs-snapshot.eclass +++ b/eclass/vcs-snapshot.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vcs-snapshot.eclass,v 1.1 2012/03/19 08:38:45 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vcs-snapshot.eclass,v 1.2 2012/03/19 08:52:49 mgorny Exp $ # @ECLASS: vcs-snapshot.eclass # @MAINTAINER: @@ -31,7 +31,7 @@ case ${EAPI:-0} in 0|1) die "EAPI ${EAPI} unsupported.";; # default(), SRC_URI arrows 2|3|4) ;; - *) die "github-snapshot.eclass API in EAPI ${EAPI} not yet established." + *) die "vcs-snapshot.eclass API in EAPI ${EAPI} not yet established." esac EXPORT_FUNCTIONS src_unpack |