From 973f898e15cf6d1b6715d08da9dc740ee040e0dc Mon Sep 17 00:00:00 2001 From: Aníbal Limón Date: Tue, 11 Aug 2015 11:41:41 -0500 Subject: distrodata: Make self-contained. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Include by default all the files needed to perform checkpkg task. These files are copied from meta-yocto because they refers recipes in oe-core, the only missing file are maintainers.inc because it needs consensus between OE-Core and Yocto project to define a common set of maintainers. [YOCTO #7895] Signed-off-by: Aníbal Limón Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/conf/distro/include/upstream_tracking.inc | 36 ++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 meta/conf/distro/include/upstream_tracking.inc (limited to 'meta/conf/distro/include/upstream_tracking.inc') diff --git a/meta/conf/distro/include/upstream_tracking.inc b/meta/conf/distro/include/upstream_tracking.inc new file mode 100644 index 0000000000..554f872c81 --- /dev/null +++ b/meta/conf/distro/include/upstream_tracking.inc @@ -0,0 +1,36 @@ +# upstream_tracking.inc - This file contains data that tracks the +# upstream project associated with a given recipe. This list is needed +# for recipes that version information can not be automagically discovered. +# As we automate this checking, this file will slowed be reduced. +# +# This data is used by the package reporting system (packages.yoctoproject.org) +# +# The format is as a bitbake variable override for each recipe +# +# RECIPE_UPSTREAM_VERSION_pn- = "" +# RECIPE_UPSTREAM_DATE_pn- = "Mmm dd, YYYY" +# - This is the latest upstream version and date +# RECIPE_NO_UPDATE_REASON_pn- = "" +# - Used to note why a recipe should not be upgraded to a newer versoin +# CHECK_DATE_pn- = "Mmm dd, YYYY" +# - This is the date that upstream was last manually checked over time +# this should be removed as we automate this checking +# +# These entries will slowly be removed as we can automatically determine +# the information in this file. So for existing recipes that we can get +# from the Recipe reporting system, the entries here can be removed. +# + +# SVN support isn't implemented +# Also a new tarball release (or SVN tag) hasn't happened in a long time +RECIPE_UPSTREAM_VERSION_pn-unfs3="0.9.22.r495" +RECIPE_UPSTREAM_DATE_pn-unfs3="Feb 05, 2015" +CHECK_DATE_pn-unfs3 = "Jun 10, 2015" + +# NO UPDATE REASONS +RECIPE_NO_UPDATE_REASON_pn-createrepo = "Versions after 0.9.* use YUM, so we hold at 0.4.11" +RECIPE_NO_UPDATE_REASON_pn-jpeg = "webkit-gtk 1.8.3 doesn't work with jpeg 9" +RECIPE_NO_UPDATE_REASON_pn-liberation-fonts = "2.x depends on fontforge package, which is not yet provided in oe-core" +RECIPE_NO_UPDATE_REASON_pn-pkgconfig = "removes glib-conf, adds circular depends" +RECIPE_NO_UPDATE_REASON_pn-python-pygobject = "Newer versions of python-pygobject depend on gobject-introspection which doesn't cross-compile" +RECIPE_NO_UPDATE_REASON_pn-webkit-gtk = ">= 1.10.2 needs ruby" -- cgit 1.2.3-korg