* [meta-oe][PATCH] uim: Fix SRC_URI
@ 2018-08-16 5:12 Takuro Ashie
2018-08-16 5:51 ` Khem Raj
0 siblings, 1 reply; 4+ messages in thread
From: Takuro Ashie @ 2018-08-16 5:12 UTC (permalink / raw)
To: openembedded-devel
The place of uim archives has been moved to
https://github.com/uim/uim/releases
Signed-off-by: Takuro Ashie <ashie@clear-code.com>
---
meta-oe/recipes-support/uim/uim_1.8.6.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-oe/recipes-support/uim/uim_1.8.6.bb b/meta-oe/recipes-support/uim/uim_1.8.6.bb
index af28895ee..1c58d40b1 100644
--- a/meta-oe/recipes-support/uim/uim_1.8.6.bb
+++ b/meta-oe/recipes-support/uim/uim_1.8.6.bb
@@ -4,7 +4,7 @@ LICENSE = "BSD-3-Clause & LGPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=32463fd29aa303fb2360faeeae17256b"
SECTION = "inputmethods"
-SRC_URI = "http://uim.googlecode.com/files/uim-${PV}.tar.bz2"
+SRC_URI = "https://github.com/uim/uim/releases/download/uim-${PV}/uim-${PV}.tar.bz2"
SRC_URI_append_class-target = " file://uim-module-manager.patch \
file://0001-fix-bug-for-cross-compile.patch \
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-oe][PATCH] uim: Fix SRC_URI
2018-08-16 5:12 [meta-oe][PATCH] uim: Fix SRC_URI Takuro Ashie
@ 2018-08-16 5:51 ` Khem Raj
2018-08-16 6:05 ` Anuj Mittal
0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2018-08-16 5:51 UTC (permalink / raw)
To: ashie; +Cc: openembeded-devel
On Wed, Aug 15, 2018 at 10:21 PM Takuro Ashie <ashie@clear-code.com> wrote:
>
> The place of uim archives has been moved to
> https://github.com/uim/uim/releases
>
> Signed-off-by: Takuro Ashie <ashie@clear-code.com>
> ---
> meta-oe/recipes-support/uim/uim_1.8.6.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-oe/recipes-support/uim/uim_1.8.6.bb b/meta-oe/recipes-support/uim/uim_1.8.6.bb
> index af28895ee..1c58d40b1 100644
> --- a/meta-oe/recipes-support/uim/uim_1.8.6.bb
> +++ b/meta-oe/recipes-support/uim/uim_1.8.6.bb
> @@ -4,7 +4,7 @@ LICENSE = "BSD-3-Clause & LGPLv2+"
> LIC_FILES_CHKSUM = "file://COPYING;md5=32463fd29aa303fb2360faeeae17256b"
> SECTION = "inputmethods"
>
> -SRC_URI = "http://uim.googlecode.com/files/uim-${PV}.tar.bz2"
> +SRC_URI = "https://github.com/uim/uim/releases/download/uim-${PV}/uim-${PV}.tar.bz2"
>
can you convert this into a git fetch along with pointing the SRC_URI
to github, tarballs are not consistent
and can be regenerated on the fly
> SRC_URI_append_class-target = " file://uim-module-manager.patch \
> file://0001-fix-bug-for-cross-compile.patch \
> --
> 2.17.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-oe][PATCH] uim: Fix SRC_URI
2018-08-16 5:51 ` Khem Raj
@ 2018-08-16 6:05 ` Anuj Mittal
2018-08-16 6:25 ` Takuro Ashie
0 siblings, 1 reply; 4+ messages in thread
From: Anuj Mittal @ 2018-08-16 6:05 UTC (permalink / raw)
To: Khem Raj, ashie; +Cc: openembeded-devel
On 08/16/2018 01:51 PM, Khem Raj wrote:
> On Wed, Aug 15, 2018 at 10:21 PM Takuro Ashie <ashie@clear-code.com> wrote:
>>
>> The place of uim archives has been moved to
>> https://github.com/uim/uim/releases
>>
>> Signed-off-by: Takuro Ashie <ashie@clear-code.com>
>> ---
>> meta-oe/recipes-support/uim/uim_1.8.6.bb | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta-oe/recipes-support/uim/uim_1.8.6.bb b/meta-oe/recipes-support/uim/uim_1.8.6.bb
>> index af28895ee..1c58d40b1 100644
>> --- a/meta-oe/recipes-support/uim/uim_1.8.6.bb
>> +++ b/meta-oe/recipes-support/uim/uim_1.8.6.bb
>> @@ -4,7 +4,7 @@ LICENSE = "BSD-3-Clause & LGPLv2+"
>> LIC_FILES_CHKSUM = "file://COPYING;md5=32463fd29aa303fb2360faeeae17256b"
>> SECTION = "inputmethods"
>>
>> -SRC_URI = "http://uim.googlecode.com/files/uim-${PV}.tar.bz2"
>> +SRC_URI = "https://github.com/uim/uim/releases/download/uim-${PV}/uim-${PV}.tar.bz2"
>>
>
> can you convert this into a git fetch along with pointing the SRC_URI
> to github, tarballs are not consistent
> and can be regenerated on the fly
But this one is a release tarball and not the archive one ... shouldn't
those be okay?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-oe][PATCH] uim: Fix SRC_URI
2018-08-16 6:05 ` Anuj Mittal
@ 2018-08-16 6:25 ` Takuro Ashie
0 siblings, 0 replies; 4+ messages in thread
From: Takuro Ashie @ 2018-08-16 6:25 UTC (permalink / raw)
To: Anuj Mittal, Khem Raj; +Cc: openembeded-devel
On 2018年08月16日 15:05, Anuj Mittal wrote:
> But this one is a release tarball and not the archive one ... shouldn't
> those be okay?
Yes, It's not git archive, the tar ball is created manually by the
maintainer.
(generated configure script is included, git archive doesn't include it
though).
Just the download URL is changed.
So the md5sum & sha256sum aren't changed.
Regards,
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-08-16 6:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-16 5:12 [meta-oe][PATCH] uim: Fix SRC_URI Takuro Ashie
2018-08-16 5:51 ` Khem Raj
2018-08-16 6:05 ` Anuj Mittal
2018-08-16 6:25 ` Takuro Ashie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.