All of lore.kernel.org
 help / color / mirror / Atom feed
* New recipe for openmoko QA test scripts
@ 2009-03-02 19:44 Angus Ainslie
  2009-03-03  4:47 ` Denys Dmytriyenko
  2009-03-03  7:19 ` Koen Kooi
  0 siblings, 2 replies; 4+ messages in thread
From: Angus Ainslie @ 2009-03-02 19:44 UTC (permalink / raw)
  To: Lista Openembedded

Please review for any policy violations.

Thanks
Angus

--- openembedded/packages/openmoko-projects/openmoko-qa-scripts.bb.oring        1969-12-31 17:00:00.000000000 -0700
+++ openembedded/packages/openmoko-projects/openmoko-qa-scripts.bb      2009-03-02 12:38:55.000000000 -0700
@@ -0,0 +1,19 @@
+DESCRIPTION = "Openmoko QA test scripts"
+SECTION = "utils"
+LICENSE = "GPL"
+PV = "gitr${SRCREV}"
+
+SRC_URI = "git://git.openmoko.org/git/testing_scripts;protocol=git"
+S = "${WORKDIR}/git"
+
+RDEPENDS = "\
+  bluez4 \
+  opkg \
+  xrandr \
+  task-boot \
+"
+
+do_install() {
+          install -d ${D}/usr/bin
+          install ${S}/bin/* ${D}/usr/bin/
+}





^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: New recipe for openmoko QA test scripts
  2009-03-02 19:44 New recipe for openmoko QA test scripts Angus Ainslie
@ 2009-03-03  4:47 ` Denys Dmytriyenko
  2009-03-03  7:19 ` Koen Kooi
  1 sibling, 0 replies; 4+ messages in thread
From: Denys Dmytriyenko @ 2009-03-03  4:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Lista Openembedded

On Mon, Mar 02, 2009 at 12:44:03PM -0700, Angus Ainslie wrote:
> Please review for any policy violations.
> 
> Thanks
> Angus
> 
> --- openembedded/packages/openmoko-projects/openmoko-qa-scripts.bb.oring        1969-12-31 17:00:00.000000000 -0700
> +++ openembedded/packages/openmoko-projects/openmoko-qa-scripts.bb      2009-03-02 12:38:55.000000000 -0700
> @@ -0,0 +1,19 @@
> +DESCRIPTION = "Openmoko QA test scripts"
> +SECTION = "utils"
> +LICENSE = "GPL"
> +PV = "gitr${SRCREV}"

I don't believe this is correct. If you don't have a version number besides 
git revision, use:

PV = "0.0+gitr${SRCREV}"

There are many such recipes in OE.

> +SRC_URI = "git://git.openmoko.org/git/testing_scripts;protocol=git"
> +S = "${WORKDIR}/git"
> +
> +RDEPENDS = "\
> +  bluez4 \
> +  opkg \
> +  xrandr \
> +  task-boot \

Looks like a strange set of dependencies, but to be honest, I haven't looked 
into the actual testing_scripts...

> +"
> +
> +do_install() {
> +          install -d ${D}/usr/bin
> +          install ${S}/bin/* ${D}/usr/bin/
> +}

-- 
Denys



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: New recipe for openmoko QA test scripts
  2009-03-02 19:44 New recipe for openmoko QA test scripts Angus Ainslie
  2009-03-03  4:47 ` Denys Dmytriyenko
@ 2009-03-03  7:19 ` Koen Kooi
  2009-03-05 15:26   ` Otavio Salvador
  1 sibling, 1 reply; 4+ messages in thread
From: Koen Kooi @ 2009-03-03  7:19 UTC (permalink / raw)
  To: openembedded-devel

On 02-03-09 20:44, Angus Ainslie wrote:
> Please review for any policy violations.
>
> Thanks
> Angus
>
> --- openembedded/packages/openmoko-projects/openmoko-qa-scripts.bb.oring        1969-12-31 17:00:00.000000000 -0700
> +++ openembedded/packages/openmoko-projects/openmoko-qa-scripts.bb      2009-03-02 12:38:55.000000000 -0700
> @@ -0,0 +1,19 @@
> +DESCRIPTION = "Openmoko QA test scripts"
> +SECTION = "utils"
> +LICENSE = "GPL"
> +PV = "gitr${SRCREV}"

NACK, as pointed out numerous times before: git revisions don't sort, so 
the above breaks upgrade paths.




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: New recipe for openmoko QA test scripts
  2009-03-03  7:19 ` Koen Kooi
@ 2009-03-05 15:26   ` Otavio Salvador
  0 siblings, 0 replies; 4+ messages in thread
From: Otavio Salvador @ 2009-03-05 15:26 UTC (permalink / raw)
  To: openembedded-devel; +Cc: openembedded-devel

Koen Kooi <k.kooi@student.utwente.nl> writes:

> On 02-03-09 20:44, Angus Ainslie wrote:
>> Please review for any policy violations.
>>
>> Thanks
>> Angus
>>
>> --- openembedded/packages/openmoko-projects/openmoko-qa-scripts.bb.oring        1969-12-31 17:00:00.000000000 -0700
>> +++ openembedded/packages/openmoko-projects/openmoko-qa-scripts.bb      2009-03-02 12:38:55.000000000 -0700
>> @@ -0,0 +1,19 @@
>> +DESCRIPTION = "Openmoko QA test scripts"
>> +SECTION = "utils"
>> +LICENSE = "GPL"
>> +PV = "gitr${SRCREV}"
>
> NACK, as pointed out numerous times before: git revisions don't sort,
> so the above breaks upgrade paths.

Our proposal to use git describe solves this :-)

-- 
Otavio Salvador                  O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854         http://projetos.ossystems.com.br



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-03-05 15:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-02 19:44 New recipe for openmoko QA test scripts Angus Ainslie
2009-03-03  4:47 ` Denys Dmytriyenko
2009-03-03  7:19 ` Koen Kooi
2009-03-05 15:26   ` Otavio Salvador

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.