skel.ebuild: Reorder S after SRC_URI
authorMichał Górny <mgorny@gentoo.org>
Wed, 27 Nov 2019 09:25:41 +0000 (10:25 +0100)
committerMichał Górny <mgorny@gentoo.org>
Sat, 7 Dec 2019 14:36:23 +0000 (15:36 +0100)
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>
skel.ebuild

index 9c9e6b366eb9be0aab5c7d1ae296006d86d4bc65..6e855e8fa6cc90c6596a322bf9065b245d90d25b 100644 (file)
@@ -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() {