summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-11-27 10:25:41 +0100
committerMichał Górny <mgorny@gentoo.org>2019-12-07 15:36:23 +0100
commit0f936ec81f1dc20fa58ba40bc17989ee44810214 (patch)
treec4806382a720c52c5a76d8156cf2deadf02a87c2 /skel.ebuild
parentx11-misc/xtrace: remove inactive proxy-maintainer (diff)
downloadgentoo-0f936ec81f1dc20fa58ba40bc17989ee44810214.tar.gz
gentoo-0f936ec81f1dc20fa58ba40bc17989ee44810214.tar.bz2
gentoo-0f936ec81f1dc20fa58ba40bc17989ee44810214.zip
skel.ebuild: Reorder S after SRC_URI
Update the skel variable order to place S immediately after SRC_URI. This seems to be a growing trend, and is quite reasonable given that S usually matches the archive name, and e.g. if SRC_URI uses MY_P, then S usually uses it as well: SRC_URI="http://example.com/${MY_P}.tar.gz" S=${WORKDIR}/${MY_P} Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'skel.ebuild')
-rw-r--r--skel.ebuild13
1 files changed, 6 insertions, 7 deletions
diff --git a/skel.ebuild b/skel.ebuild
index 9c9e6b366eb9..6e855e8fa6cc 100644
--- a/skel.ebuild
+++ b/skel.ebuild
@@ -32,6 +32,12 @@ HOMEPAGE="https://foo.example.org/"
# Portage.
SRC_URI="ftp://foo.example.org/${P}.tar.gz"
+# Source directory; the dir where the sources can be found (automatically
+# unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P}
+# If you don't need to change it, leave the S= line out of the ebuild
+# to keep it tidy.
+#S="${WORKDIR}/${P}"
+
# License of the package. This must match the name of file(s) in the
# licenses/ directory. For complex license combination see the developer
@@ -99,13 +105,6 @@ IUSE="gnome X"
#BDEPEND="virtual/pkgconfig"
-# Source directory; the dir where the sources can be found (automatically
-# unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P}
-# If you don't need to change it, leave the S= line out of the ebuild
-# to keep it tidy.
-#S="${WORKDIR}/${P}"
-
-
# The following src_configure function is implemented as default by portage, so
# you only need to call it if you need a different behaviour.
#src_configure() {