From: Ross Burton Date: Fri, 21 Sep 2018 09:56:56 +0000 (+0100) Subject: clutter: simplify SRC_URI X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f7fd5de4cfb4a2f3e8c74bc95e215549f227f37c;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. (From OE-Core rev: 6150ec737bad895b9fb62f711449a259887ebd1b) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/classes/clutter.bbclass b/meta/classes/clutter.bbclass index f5cd04f97f7..8550363bdfd 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