diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2015-11-11 15:30:28 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-08 10:20:51 +0000 |
commit | 96eac69636d2c345cdd50b19262f157335d53380 (patch) | |
tree | ab964b68fec126ddca8ce7838f973b81761c543b | |
parent | b0bbea56bee00863e129f8a67b213a6a9bd25ce6 (diff) | |
download | poky-96eac69636d2c345cdd50b19262f157335d53380.tar.gz |
package_regex.inc: deprecate the file
New entries should be added to recipes themselves. Also update the comment to
reflect the new variable names.
(From OE-Core rev: 452b196565c1f19bb736ce4debae576b2f5420aa)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/distro/include/package_regex.inc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/meta/conf/distro/include/package_regex.inc b/meta/conf/distro/include/package_regex.inc index 9bf9681aa1..e681e67afb 100644 --- a/meta/conf/distro/include/package_regex.inc +++ b/meta/conf/distro/include/package_regex.inc | |||
@@ -1,3 +1,5 @@ | |||
1 | # NOTE: THIS FILE IS DEPRECATED. Please add new entries to the recipes themselves. | ||
2 | # | ||
1 | # package_regex.inc - This file contains data that tracks | 3 | # package_regex.inc - This file contains data that tracks |
2 | # upstream project associated with a given recipe. This list is needed | 4 | # upstream project associated with a given recipe. This list is needed |
3 | # for recipes that version information can not be automagically discovered. | 5 | # for recipes that version information can not be automagically discovered. |
@@ -7,13 +9,13 @@ | |||
7 | #" | 9 | #" |
8 | # The format is as a bitbake variable override for each recipe | 10 | # The format is as a bitbake variable override for each recipe |
9 | #" | 11 | #" |
10 | # REGEX_URI_pn-<recipe name> = "recipe_url" | 12 | # UPSTREAM_CHECK_URI_pn-<recipe name> = "recipe_url" |
11 | # - This is the url used by the package checking system to | 13 | # - This is the url used by the package checking system to |
12 | # get the latest version of the package | 14 | # get the latest version of the package |
13 | # REGEX_pn-<recipe name> = "package_regex" | 15 | # UPSTREAM_CHECK_REGEX_pn-<recipe name> = "package_regex" |
14 | # - This is the regex the package checking system uses to | 16 | # - This is the regex the package checking system uses to |
15 | # parse the page found at REGEX_URI_pn-<recipe name> | 17 | # parse the page found at UPSTREAM_CHECK_URI_pn-<recipe name> |
16 | # GITTAGREGEX_pn-<recipe name> = "git_tag_regex" | 18 | # UPSTREAM_CHECK_GITTAGREGEX_pn-<recipe name> = "git_tag_regex" |
17 | # - When source code is fetched from git, git tags are used to | 19 | # - When source code is fetched from git, git tags are used to |
18 | # determine the upstream release version. This regex can be used | 20 | # determine the upstream release version. This regex can be used |
19 | # to filter only relevant tags. | 21 | # to filter only relevant tags. |