summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2021-11-11 00:18:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-11-11 17:09:17 +0000
commit021b76a856bafc7e09c0e6fec0e8a88353cbe7bd (patch)
tree522303500171a8142e9093b7d0349f574ced7d0a
parenta3ba0a54fecfdad06fc9ab4e5923c21563776aa2 (diff)
downloadpoky-021b76a856bafc7e09c0e6fec0e8a88353cbe7bd.tar.gz
own-mirrors.bbclass: Clean up the additions to PREMIRRORS
* Since commit ce0579dc in bitbake (fetch2: Revert the regexp removal for the type field and instead anchor regexp) the type regexp has been automatically anchored at the end. * Since commit 044fb04d in bitbake (fetch2: Allow whitespace only mirror entries) there is no need to separate the entries in PREMIRRORS with "\n". (From OE-Core rev: 1edc5e689d54b788c35ece14e0dbd76ec545f3ee) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/own-mirrors.bbclass24
1 files changed, 12 insertions, 12 deletions
diff --git a/meta/classes/own-mirrors.bbclass b/meta/classes/own-mirrors.bbclass
index e244de592d..ef972740ce 100644
--- a/meta/classes/own-mirrors.bbclass
+++ b/meta/classes/own-mirrors.bbclass
@@ -1,14 +1,14 @@
1PREMIRRORS:prepend = " \ 1PREMIRRORS:prepend = " \
2cvs://.*/.* ${SOURCE_MIRROR_URL} \n \ 2cvs://.*/.* ${SOURCE_MIRROR_URL} \
3svn://.*/.* ${SOURCE_MIRROR_URL} \n \ 3svn://.*/.* ${SOURCE_MIRROR_URL} \
4git://.*/.* ${SOURCE_MIRROR_URL} \n \ 4git://.*/.* ${SOURCE_MIRROR_URL} \
5gitsm://.*/.* ${SOURCE_MIRROR_URL} \n \ 5gitsm://.*/.* ${SOURCE_MIRROR_URL} \
6hg://.*/.* ${SOURCE_MIRROR_URL} \n \ 6hg://.*/.* ${SOURCE_MIRROR_URL} \
7bzr://.*/.* ${SOURCE_MIRROR_URL} \n \ 7bzr://.*/.* ${SOURCE_MIRROR_URL} \
8p4://.*/.* ${SOURCE_MIRROR_URL} \n \ 8p4://.*/.* ${SOURCE_MIRROR_URL} \
9osc://.*/.* ${SOURCE_MIRROR_URL} \n \ 9osc://.*/.* ${SOURCE_MIRROR_URL} \
10https?$://.*/.* ${SOURCE_MIRROR_URL} \n \ 10https?://.*/.* ${SOURCE_MIRROR_URL} \
11ftp://.*/.* ${SOURCE_MIRROR_URL} \n \ 11ftp://.*/.* ${SOURCE_MIRROR_URL} \
12npm://.*/?.* ${SOURCE_MIRROR_URL} \n \ 12npm://.*/?.* ${SOURCE_MIRROR_URL} \
13s3://.*/.* ${SOURCE_MIRROR_URL} \n \ 13s3://.*/.* ${SOURCE_MIRROR_URL} \
14" 14"