commit: b719200a9855af8417c8bf77c7e3db03d83cd841 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Nov 19 14:39:25 2015 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Nov 19 14:54:14 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b719200a
vcs-snapshot.eclass: Use a cleaner and more precise example eclass/vcs-snapshot.eclass | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass index bdeab1d..d12ff25 100644 --- a/eclass/vcs-snapshot.eclass +++ b/eclass/vcs-snapshot.eclass @@ -25,15 +25,15 @@ # @EXAMPLE: # # @CODE -# EAPI=4 -# AUTOTOOLS_AUTORECONF=1 -# inherit autotools-utils vcs-snapshot +# EAPI=6 +# inherit vcs-snapshot # -# SRC_URI="http://github.com/example/${PN}/tarball/v${PV} -> ${P}.tar.gz" +# SRC_URI="https://github.com/example/${PN}/tarball/v${PV} -> ${P}.tar.gz +# https://github.com/example/${PN}-otherstuff/tarball/v${PV} -> ${P}-otherstuff.tar.gz"" # @CODE # -# and however the tarball was originally named, all files will appear -# in ${WORKDIR}/${P}. +# and however the tarballs were originally packed, all files will appear +# in ${WORKDIR}/${P} and ${WORKDIR}/${P}-otherstuff respectively. case ${EAPI:-0} in 0|1|2|3|4|5|6) ;;
