diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-11-19 15:39:25 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-11-19 15:54:14 +0100 |
commit | b719200a9855af8417c8bf77c7e3db03d83cd841 (patch) | |
tree | ce782296b7726ed2526c84c3f0a937c5dbbfa05b /eclass/vcs-snapshot.eclass | |
parent | vcs-snapshot.eclass: Enable EAPI 6 (no changes needed) (diff) | |
download | gentoo-b719200a9855af8417c8bf77c7e3db03d83cd841.tar.gz gentoo-b719200a9855af8417c8bf77c7e3db03d83cd841.tar.bz2 gentoo-b719200a9855af8417c8bf77c7e3db03d83cd841.zip |
vcs-snapshot.eclass: Use a cleaner and more precise example
Diffstat (limited to 'eclass/vcs-snapshot.eclass')
-rw-r--r-- | eclass/vcs-snapshot.eclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/eclass/vcs-snapshot.eclass b/eclass/vcs-snapshot.eclass index bdeab1d67c4c..d12ff2577b72 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) ;; |