diff options
author | Ross Burton <ross.burton@intel.com> | 2018-09-21 10:56:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-21 08:15:19 -0700 |
commit | 6150ec737bad895b9fb62f711449a259887ebd1b (patch) | |
tree | 47633960ef5b0aab3f933f2882ba100118eb6e17 | |
parent | 77c353cc9bdfbf1b6453b2579b72726db05eb69c (diff) | |
download | openembedded-core-6150ec737bad895b9fb62f711449a259887ebd1b.tar.gz openembedded-core-6150ec737bad895b9fb62f711449a259887ebd1b.tar.bz2 openembedded-core-6150ec737bad895b9fb62f711449a259887ebd1b.zip |
clutter: simplify SRC_URI
The Clutter class's ability to switch between tarballs and git isn't really
useful, so remove it. If it comes back, it should use the devupstream class.
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/classes/clutter.bbclass | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/meta/classes/clutter.bbclass b/meta/classes/clutter.bbclass index f5cd04f97f..8550363bdf 100644 --- a/meta/classes/clutter.bbclass +++ b/meta/classes/clutter.bbclass @@ -1,4 +1,3 @@ - def get_minor_dir(v): import re m = re.match("^([0-9]+)\.([0-9]+)", v) @@ -12,11 +11,7 @@ def get_real_name(n): VERMINOR = "${@get_minor_dir("${PV}")}" REALNAME = "${@get_real_name("${BPN}")}" -CLUTTER_SRC_FTP = "${GNOME_MIRROR}/${REALNAME}/${VERMINOR}/${REALNAME}-${PV}.tar.xz;name=archive" - -CLUTTER_SRC_GIT = "git://gitlab.gnome.org/GNOME/${REALNAME};protocol=https" - -SRC_URI = "${CLUTTER_SRC_FTP}" +SRC_URI = "${GNOME_MIRROR}/${REALNAME}/${VERMINOR}/${REALNAME}-${PV}.tar.xz;name=archive" S = "${WORKDIR}/${REALNAME}-${PV}" inherit autotools pkgconfig gtk-doc gettext |