summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-11-19 15:39:25 +0100
committerMichał Górny <mgorny@gentoo.org>2015-11-19 15:54:14 +0100
commitb719200a9855af8417c8bf77c7e3db03d83cd841 (patch)
treece782296b7726ed2526c84c3f0a937c5dbbfa05b
parentvcs-snapshot.eclass: Enable EAPI 6 (no changes needed) (diff)
downloadgentoo-b719200a9855af8417c8bf77c7e3db03d83cd841.tar.gz
gentoo-b719200a9855af8417c8bf77c7e3db03d83cd841.tar.bz2
gentoo-b719200a9855af8417c8bf77c7e3db03d83cd841.zip
vcs-snapshot.eclass: Use a cleaner and more precise example
-rw-r--r--eclass/vcs-snapshot.eclass12
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) ;;