* [PATCH 1/2] bitbake.conf: Add Github mirror
@ 2015-08-17 2:50 Armin Kuster
2015-08-17 2:50 ` [PATCH 2/2] lz4: update to 131 Armin Kuster
2015-08-17 3:29 ` [PATCH 1/2] bitbake.conf: Add Github mirror Robert Yang
0 siblings, 2 replies; 4+ messages in thread
From: Armin Kuster @ 2015-08-17 2:50 UTC (permalink / raw)
To: openembedded-core; +Cc: Armin Kuster
From: Armin Kuster <akuster@mvista.com>
This adds Github mirror variable.
Signed-off-by: Armin Kuster <akuster@mvista.com>
---
meta/conf/bitbake.conf | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 21f1698..56e7ca7 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -571,6 +571,7 @@ DEBIAN_MIRROR = "ftp://ftp.debian.org/debian/pool"
GENTOO_MIRROR = "http://distfiles.gentoo.org/distfiles"
GNOME_GIT = "git://git.gnome.org"
GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources"
+GITHUB_MIRROR = "git://github.com"
GNU_MIRROR = "http://ftp.gnu.org/gnu"
GPE_MIRROR = "http://gpe.linuxtogo.org/download/source"
KERNELORG_MIRROR = "http://kernel.org/pub"
--
2.3.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] lz4: update to 131
2015-08-17 2:50 [PATCH 1/2] bitbake.conf: Add Github mirror Armin Kuster
@ 2015-08-17 2:50 ` Armin Kuster
2015-08-17 3:29 ` [PATCH 1/2] bitbake.conf: Add Github mirror Robert Yang
1 sibling, 0 replies; 4+ messages in thread
From: Armin Kuster @ 2015-08-17 2:50 UTC (permalink / raw)
To: openembedded-core
Clean up SRC_URI and convert to use github mirror variable.
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
meta/recipes-support/lz4/lz4.bb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-support/lz4/lz4.bb b/meta/recipes-support/lz4/lz4.bb
index 0b0c632..39edeab 100644
--- a/meta/recipes-support/lz4/lz4.bb
+++ b/meta/recipes-support/lz4/lz4.bb
@@ -4,11 +4,11 @@ DESCRIPTION = "LZ4 is a very fast lossless compression algorithm, providing comp
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://lib/LICENSE;md5=0b0d063f37a4477b54af2459477dcafd"
-SRCREV = "5780864c0ce08622238a267c46fb489d7066cad4"
+SRCREV = "d86dc916771c126afb797637dda9f6421c0cb998"
-PV = "128+git${SRCPV}"
+PV = "131+git${SRCPV}"
-SRC_URI = "git://github.com/Cyan4973/lz4.git;protocol=http"
+SRC_URI = "${GITHUB_MIRROR}/Cyan4973/lz4.git"
S = "${WORKDIR}/git"
--
2.3.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 1/2] bitbake.conf: Add Github mirror
2015-08-17 2:50 [PATCH 1/2] bitbake.conf: Add Github mirror Armin Kuster
2015-08-17 2:50 ` [PATCH 2/2] lz4: update to 131 Armin Kuster
@ 2015-08-17 3:29 ` Robert Yang
2015-08-17 11:47 ` akuster808
1 sibling, 1 reply; 4+ messages in thread
From: Robert Yang @ 2015-08-17 3:29 UTC (permalink / raw)
To: Armin Kuster, openembedded-core; +Cc: Armin Kuster
Hi Armin,
Please see this thread:
http://lists.openembedded.org/pipermail/openembedded-core/2015-July/108217.html
// Robert
On 08/17/2015 10:50 AM, Armin Kuster wrote:
> From: Armin Kuster <akuster@mvista.com>
>
> This adds Github mirror variable.
>
> Signed-off-by: Armin Kuster <akuster@mvista.com>
> ---
> meta/conf/bitbake.conf | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
> index 21f1698..56e7ca7 100644
> --- a/meta/conf/bitbake.conf
> +++ b/meta/conf/bitbake.conf
> @@ -571,6 +571,7 @@ DEBIAN_MIRROR = "ftp://ftp.debian.org/debian/pool"
> GENTOO_MIRROR = "http://distfiles.gentoo.org/distfiles"
> GNOME_GIT = "git://git.gnome.org"
> GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources"
> +GITHUB_MIRROR = "git://github.com"
> GNU_MIRROR = "http://ftp.gnu.org/gnu"
> GPE_MIRROR = "http://gpe.linuxtogo.org/download/source"
> KERNELORG_MIRROR = "http://kernel.org/pub"
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] bitbake.conf: Add Github mirror
2015-08-17 3:29 ` [PATCH 1/2] bitbake.conf: Add Github mirror Robert Yang
@ 2015-08-17 11:47 ` akuster808
0 siblings, 0 replies; 4+ messages in thread
From: akuster808 @ 2015-08-17 11:47 UTC (permalink / raw)
To: Robert Yang, Armin Kuster, openembedded-core
Robert,
On 08/16/2015 08:29 PM, Robert Yang wrote:
>
> Hi Armin,
>
> Please see this thread:
>
> http://lists.openembedded.org/pipermail/openembedded-core/2015-July/108217.html
>
Thanks for the info.
Please drop this patch.
- armin
>
> // Robert
>
> On 08/17/2015 10:50 AM, Armin Kuster wrote:
>> From: Armin Kuster <akuster@mvista.com>
>>
>> This adds Github mirror variable.
>>
>> Signed-off-by: Armin Kuster <akuster@mvista.com>
>> ---
>> meta/conf/bitbake.conf | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
>> index 21f1698..56e7ca7 100644
>> --- a/meta/conf/bitbake.conf
>> +++ b/meta/conf/bitbake.conf
>> @@ -571,6 +571,7 @@ DEBIAN_MIRROR = "ftp://ftp.debian.org/debian/pool"
>> GENTOO_MIRROR = "http://distfiles.gentoo.org/distfiles"
>> GNOME_GIT = "git://git.gnome.org"
>> GNOME_MIRROR = "http://ftp.gnome.org/pub/GNOME/sources"
>> +GITHUB_MIRROR = "git://github.com"
>> GNU_MIRROR = "http://ftp.gnu.org/gnu"
>> GPE_MIRROR = "http://gpe.linuxtogo.org/download/source"
>> KERNELORG_MIRROR = "http://kernel.org/pub"
>>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-08-17 11:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-17 2:50 [PATCH 1/2] bitbake.conf: Add Github mirror Armin Kuster
2015-08-17 2:50 ` [PATCH 2/2] lz4: update to 131 Armin Kuster
2015-08-17 3:29 ` [PATCH 1/2] bitbake.conf: Add Github mirror Robert Yang
2015-08-17 11:47 ` akuster808
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox