* [meta-oe][PATCH] hwdata: Upgrade to 0.322
@ 2019-04-22 7:22 mingli.yu
2019-04-23 6:11 ` Adrian Bunk
0 siblings, 1 reply; 5+ messages in thread
From: mingli.yu @ 2019-04-22 7:22 UTC (permalink / raw)
To: openembedded-devel, raj.khem
From: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
meta-oe/recipes-support/hwdata/hwdata_git.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta-oe/recipes-support/hwdata/hwdata_git.bb b/meta-oe/recipes-support/hwdata/hwdata_git.bb
index 8e8dbf5c8..f04e5c8d4 100644
--- a/meta-oe/recipes-support/hwdata/hwdata_git.bb
+++ b/meta-oe/recipes-support/hwdata/hwdata_git.bb
@@ -5,8 +5,8 @@ SECTION = "System/Base"
LICENSE = "GPL-2.0+"
LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57"
-PV = "0.316+git${SRCPV}"
-SRCREV = "803819aef862ded2ce0737cd3cf642c633b68c35"
+PV = "0.322+git${SRCPV}"
+SRCREV = "a65d28807d8f2446faa4734c758d1607f0a56ded"
SRC_URI = "git://github.com/vcrhonek/${BPN}.git"
S = "${WORKDIR}/git"
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH] hwdata: Upgrade to 0.322
2019-04-22 7:22 [meta-oe][PATCH] hwdata: Upgrade to 0.322 mingli.yu
@ 2019-04-23 6:11 ` Adrian Bunk
2019-04-23 6:36 ` Yu, Mingli
0 siblings, 1 reply; 5+ messages in thread
From: Adrian Bunk @ 2019-04-23 6:11 UTC (permalink / raw)
To: mingli.yu; +Cc: openembedded-devel
On Mon, Apr 22, 2019 at 12:22:18AM -0700, mingli.yu@windriver.com wrote:
> From: Mingli Yu <mingli.yu@windriver.com>
>
> Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
> ---
> meta-oe/recipes-support/hwdata/hwdata_git.bb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-oe/recipes-support/hwdata/hwdata_git.bb b/meta-oe/recipes-support/hwdata/hwdata_git.bb
> index 8e8dbf5c8..f04e5c8d4 100644
> --- a/meta-oe/recipes-support/hwdata/hwdata_git.bb
> +++ b/meta-oe/recipes-support/hwdata/hwdata_git.bb
> @@ -5,8 +5,8 @@ SECTION = "System/Base"
> LICENSE = "GPL-2.0+"
> LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57"
>
> -PV = "0.316+git${SRCPV}"
> -SRCREV = "803819aef862ded2ce0737cd3cf642c633b68c35"
> +PV = "0.322+git${SRCPV}"
> +SRCREV = "a65d28807d8f2446faa4734c758d1607f0a56ded"
> SRC_URI = "git://github.com/vcrhonek/${BPN}.git"
>...
PV shouldn't contain +git when SRCREV is exactly the release.
That's already present in the old version, but should be fixed.
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH] hwdata: Upgrade to 0.322
2019-04-23 6:11 ` Adrian Bunk
@ 2019-04-23 6:36 ` Yu, Mingli
2019-04-23 6:46 ` Adrian Bunk
0 siblings, 1 reply; 5+ messages in thread
From: Yu, Mingli @ 2019-04-23 6:36 UTC (permalink / raw)
To: Adrian Bunk; +Cc: openembedded-devel
On 2019年04月23日 14:11, Adrian Bunk wrote:
> On Mon, Apr 22, 2019 at 12:22:18AM -0700, mingli.yu@windriver.com wrote:
>> From: Mingli Yu <mingli.yu@windriver.com>
>>
>> Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
>> ---
>> meta-oe/recipes-support/hwdata/hwdata_git.bb | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta-oe/recipes-support/hwdata/hwdata_git.bb b/meta-oe/recipes-support/hwdata/hwdata_git.bb
>> index 8e8dbf5c8..f04e5c8d4 100644
>> --- a/meta-oe/recipes-support/hwdata/hwdata_git.bb
>> +++ b/meta-oe/recipes-support/hwdata/hwdata_git.bb
>> @@ -5,8 +5,8 @@ SECTION = "System/Base"
>> LICENSE = "GPL-2.0+"
>> LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57"
>>
>> -PV = "0.316+git${SRCPV}"
>> -SRCREV = "803819aef862ded2ce0737cd3cf642c633b68c35"
>> +PV = "0.322+git${SRCPV}"
>> +SRCREV = "a65d28807d8f2446faa4734c758d1607f0a56ded"
>> SRC_URI = "git://github.com/vcrhonek/${BPN}.git"
>> ...
>
> PV shouldn't contain +git when SRCREV is exactly the release.
> That's already present in the old version, but should be fixed.
Thanks Adrian's comments!
BTW I don't quite understand what do you mean, so could you help to show
the right behavior to specify the PV?
Thanks,
>
> cu
> Adrian
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH] hwdata: Upgrade to 0.322
2019-04-23 6:36 ` Yu, Mingli
@ 2019-04-23 6:46 ` Adrian Bunk
2019-04-23 7:00 ` [meta-oe][PATCH v2] " mingli.yu
0 siblings, 1 reply; 5+ messages in thread
From: Adrian Bunk @ 2019-04-23 6:46 UTC (permalink / raw)
To: Yu, Mingli; +Cc: openembedded-devel
On Tue, Apr 23, 2019 at 02:36:48PM +0800, Yu, Mingli wrote:
>
>
> On 2019年04月23日 14:11, Adrian Bunk wrote:
> > On Mon, Apr 22, 2019 at 12:22:18AM -0700, mingli.yu@windriver.com wrote:
> > > From: Mingli Yu <mingli.yu@windriver.com>
> > >
> > > Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
> > > ---
> > > meta-oe/recipes-support/hwdata/hwdata_git.bb | 4 ++--
> > > 1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/meta-oe/recipes-support/hwdata/hwdata_git.bb b/meta-oe/recipes-support/hwdata/hwdata_git.bb
> > > index 8e8dbf5c8..f04e5c8d4 100644
> > > --- a/meta-oe/recipes-support/hwdata/hwdata_git.bb
> > > +++ b/meta-oe/recipes-support/hwdata/hwdata_git.bb
> > > @@ -5,8 +5,8 @@ SECTION = "System/Base"
> > > LICENSE = "GPL-2.0+"
> > > LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57"
> > >
> > > -PV = "0.316+git${SRCPV}"
> > > -SRCREV = "803819aef862ded2ce0737cd3cf642c633b68c35"
> > > +PV = "0.322+git${SRCPV}"
> > > +SRCREV = "a65d28807d8f2446faa4734c758d1607f0a56ded"
> > > SRC_URI = "git://github.com/vcrhonek/${BPN}.git"
> > > ...
> >
> > PV shouldn't contain +git when SRCREV is exactly the release.
> > That's already present in the old version, but should be fixed.
>
> Thanks Adrian's comments!
>
> BTW I don't quite understand what do you mean, so could you help to show the
> right behavior to specify the PV?
PV = "0.322"
> Thanks,
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 5+ messages in thread
* [meta-oe][PATCH v2] hwdata: Upgrade to 0.322
2019-04-23 6:46 ` Adrian Bunk
@ 2019-04-23 7:00 ` mingli.yu
0 siblings, 0 replies; 5+ messages in thread
From: mingli.yu @ 2019-04-23 7:00 UTC (permalink / raw)
To: bunk, raj.khem, openembedded-devel
From: Mingli Yu <mingli.yu@windriver.com>
Correct the PV to reflect the real release version.
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
meta-oe/recipes-support/hwdata/hwdata_git.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta-oe/recipes-support/hwdata/hwdata_git.bb b/meta-oe/recipes-support/hwdata/hwdata_git.bb
index 8e8dbf5c8..58a060706 100644
--- a/meta-oe/recipes-support/hwdata/hwdata_git.bb
+++ b/meta-oe/recipes-support/hwdata/hwdata_git.bb
@@ -5,8 +5,8 @@ SECTION = "System/Base"
LICENSE = "GPL-2.0+"
LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57"
-PV = "0.316+git${SRCPV}"
-SRCREV = "803819aef862ded2ce0737cd3cf642c633b68c35"
+PV = "0.322"
+SRCREV = "a65d28807d8f2446faa4734c758d1607f0a56ded"
SRC_URI = "git://github.com/vcrhonek/${BPN}.git"
S = "${WORKDIR}/git"
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-04-23 7:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-22 7:22 [meta-oe][PATCH] hwdata: Upgrade to 0.322 mingli.yu
2019-04-23 6:11 ` Adrian Bunk
2019-04-23 6:36 ` Yu, Mingli
2019-04-23 6:46 ` Adrian Bunk
2019-04-23 7:00 ` [meta-oe][PATCH v2] " mingli.yu
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.