* [meta-oe][PATCH] task-x11*: Rename to packagegroup to match oe-core.
@ 2012-09-05 9:22 Martin Ertsaas
2012-09-05 9:25 ` Martin Jansa
0 siblings, 1 reply; 3+ messages in thread
From: Martin Ertsaas @ 2012-09-05 9:22 UTC (permalink / raw)
To: openembedded-devel
---
.../packagegroups/packagegroup-x11-server_1.0.bb | 23 +++++++++++++++
.../packagegroups/packagegroup-x11_1.0.bb | 30 ++++++++++++++++++++
meta-oe/recipes-core/tasks/task-x11-server_1.0.bb | 23 ---------------
meta-oe/recipes-core/tasks/task-x11_1.0.bb | 30 --------------------
4 files changed, 53 insertions(+), 53 deletions(-)
create mode 100644 meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb
create mode 100644 meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb
delete mode 100644 meta-oe/recipes-core/tasks/task-x11-server_1.0.bb
delete mode 100644 meta-oe/recipes-core/tasks/task-x11_1.0.bb
diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb b/meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb
new file mode 100644
index 0000000..7e43d55
--- /dev/null
+++ b/meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb
@@ -0,0 +1,23 @@
+DESCRIPTION = "Task for an image with Xserver"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
+PR = "r9"
+
+inherit task
+
+# for backwards compatibility
+RPROVIDES_${PN} += "task-xserver"
+
+XSERVER ?= "xserver-xorg \
+ xf86-input-evdev \
+ xf86-input-mouse \
+ xf86-video-fbdev \
+ xf86-input-keyboard \
+"
+
+
+RDEPENDS_${PN} = " \
+ ${XSERVER} \
+"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb b/meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb
new file mode 100644
index 0000000..326e09f
--- /dev/null
+++ b/meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb
@@ -0,0 +1,30 @@
+DESCRIPTION = "The X Window System -- install this task to get a client/server based display multiplexer."
+SECTION = "x11/server"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+PR = "r11"
+
+inherit task allarch
+
+PACKAGES += "${PN}-utils"
+
+RRECOMMENDS_${PN} = "\
+ ${PN}-server \
+ ${PN}-utils \
+"
+
+# xserver-common, x11-common
+VIRTUAL-RUNTIME_xserver_common ?= "xserver-common"
+
+# elsa or xserver-nodm-init(-systemd)
+VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init"
+
+RDEPENDS_${PN}-utils = "\
+ ${VIRTUAL-RUNTIME_xserver_common} \
+ ${VIRTUAL-RUNTIME_graphical_init_manager} \
+ xauth \
+ xhost \
+ xset \
+ xrandr \
+"
+
diff --git a/meta-oe/recipes-core/tasks/task-x11-server_1.0.bb b/meta-oe/recipes-core/tasks/task-x11-server_1.0.bb
deleted file mode 100644
index 7e43d55..0000000
--- a/meta-oe/recipes-core/tasks/task-x11-server_1.0.bb
+++ /dev/null
@@ -1,23 +0,0 @@
-DESCRIPTION = "Task for an image with Xserver"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
-PR = "r9"
-
-inherit task
-
-# for backwards compatibility
-RPROVIDES_${PN} += "task-xserver"
-
-XSERVER ?= "xserver-xorg \
- xf86-input-evdev \
- xf86-input-mouse \
- xf86-video-fbdev \
- xf86-input-keyboard \
-"
-
-
-RDEPENDS_${PN} = " \
- ${XSERVER} \
-"
-
-PACKAGE_ARCH = "${MACHINE_ARCH}"
diff --git a/meta-oe/recipes-core/tasks/task-x11_1.0.bb b/meta-oe/recipes-core/tasks/task-x11_1.0.bb
deleted file mode 100644
index 326e09f..0000000
--- a/meta-oe/recipes-core/tasks/task-x11_1.0.bb
+++ /dev/null
@@ -1,30 +0,0 @@
-DESCRIPTION = "The X Window System -- install this task to get a client/server based display multiplexer."
-SECTION = "x11/server"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-PR = "r11"
-
-inherit task allarch
-
-PACKAGES += "${PN}-utils"
-
-RRECOMMENDS_${PN} = "\
- ${PN}-server \
- ${PN}-utils \
-"
-
-# xserver-common, x11-common
-VIRTUAL-RUNTIME_xserver_common ?= "xserver-common"
-
-# elsa or xserver-nodm-init(-systemd)
-VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init"
-
-RDEPENDS_${PN}-utils = "\
- ${VIRTUAL-RUNTIME_xserver_common} \
- ${VIRTUAL-RUNTIME_graphical_init_manager} \
- xauth \
- xhost \
- xset \
- xrandr \
-"
-
--
1.7.8.6
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-oe][PATCH] task-x11*: Rename to packagegroup to match oe-core.
2012-09-05 9:22 [meta-oe][PATCH] task-x11*: Rename to packagegroup to match oe-core Martin Ertsaas
@ 2012-09-05 9:25 ` Martin Jansa
2012-09-05 9:30 ` Martin Ertsås
0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2012-09-05 9:25 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 5211 bytes --]
On Wed, Sep 05, 2012 at 11:22:32AM +0200, Martin Ertsaas wrote:
> ---
> .../packagegroups/packagegroup-x11-server_1.0.bb | 23 +++++++++++++++
> .../packagegroups/packagegroup-x11_1.0.bb | 30 ++++++++++++++++++++
> meta-oe/recipes-core/tasks/task-x11-server_1.0.bb | 23 ---------------
> meta-oe/recipes-core/tasks/task-x11_1.0.bb | 30 --------------------
> 4 files changed, 53 insertions(+), 53 deletions(-)
> create mode 100644 meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb
> create mode 100644 meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb
> delete mode 100644 meta-oe/recipes-core/tasks/task-x11-server_1.0.bb
> delete mode 100644 meta-oe/recipes-core/tasks/task-x11_1.0.bb
NACK
see my previous patches (and cover of last pull request).
http://git.openembedded.org/meta-openembedded-contrib/log/?h=jansa/packagegroup
after
http://patchwork.openembedded.org/patch/35839/
http://patchwork.openembedded.org/patch/35841/
are applied in oe-core
Cheers,
>
> diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb b/meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb
> new file mode 100644
> index 0000000..7e43d55
> --- /dev/null
> +++ b/meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb
> @@ -0,0 +1,23 @@
> +DESCRIPTION = "Task for an image with Xserver"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
> +PR = "r9"
> +
> +inherit task
> +
> +# for backwards compatibility
> +RPROVIDES_${PN} += "task-xserver"
> +
> +XSERVER ?= "xserver-xorg \
> + xf86-input-evdev \
> + xf86-input-mouse \
> + xf86-video-fbdev \
> + xf86-input-keyboard \
> +"
> +
> +
> +RDEPENDS_${PN} = " \
> + ${XSERVER} \
> +"
> +
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb b/meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb
> new file mode 100644
> index 0000000..326e09f
> --- /dev/null
> +++ b/meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb
> @@ -0,0 +1,30 @@
> +DESCRIPTION = "The X Window System -- install this task to get a client/server based display multiplexer."
> +SECTION = "x11/server"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
> +PR = "r11"
> +
> +inherit task allarch
> +
> +PACKAGES += "${PN}-utils"
> +
> +RRECOMMENDS_${PN} = "\
> + ${PN}-server \
> + ${PN}-utils \
> +"
> +
> +# xserver-common, x11-common
> +VIRTUAL-RUNTIME_xserver_common ?= "xserver-common"
> +
> +# elsa or xserver-nodm-init(-systemd)
> +VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init"
> +
> +RDEPENDS_${PN}-utils = "\
> + ${VIRTUAL-RUNTIME_xserver_common} \
> + ${VIRTUAL-RUNTIME_graphical_init_manager} \
> + xauth \
> + xhost \
> + xset \
> + xrandr \
> +"
> +
> diff --git a/meta-oe/recipes-core/tasks/task-x11-server_1.0.bb b/meta-oe/recipes-core/tasks/task-x11-server_1.0.bb
> deleted file mode 100644
> index 7e43d55..0000000
> --- a/meta-oe/recipes-core/tasks/task-x11-server_1.0.bb
> +++ /dev/null
> @@ -1,23 +0,0 @@
> -DESCRIPTION = "Task for an image with Xserver"
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
> -PR = "r9"
> -
> -inherit task
> -
> -# for backwards compatibility
> -RPROVIDES_${PN} += "task-xserver"
> -
> -XSERVER ?= "xserver-xorg \
> - xf86-input-evdev \
> - xf86-input-mouse \
> - xf86-video-fbdev \
> - xf86-input-keyboard \
> -"
> -
> -
> -RDEPENDS_${PN} = " \
> - ${XSERVER} \
> -"
> -
> -PACKAGE_ARCH = "${MACHINE_ARCH}"
> diff --git a/meta-oe/recipes-core/tasks/task-x11_1.0.bb b/meta-oe/recipes-core/tasks/task-x11_1.0.bb
> deleted file mode 100644
> index 326e09f..0000000
> --- a/meta-oe/recipes-core/tasks/task-x11_1.0.bb
> +++ /dev/null
> @@ -1,30 +0,0 @@
> -DESCRIPTION = "The X Window System -- install this task to get a client/server based display multiplexer."
> -SECTION = "x11/server"
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
> -PR = "r11"
> -
> -inherit task allarch
> -
> -PACKAGES += "${PN}-utils"
> -
> -RRECOMMENDS_${PN} = "\
> - ${PN}-server \
> - ${PN}-utils \
> -"
> -
> -# xserver-common, x11-common
> -VIRTUAL-RUNTIME_xserver_common ?= "xserver-common"
> -
> -# elsa or xserver-nodm-init(-systemd)
> -VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init"
> -
> -RDEPENDS_${PN}-utils = "\
> - ${VIRTUAL-RUNTIME_xserver_common} \
> - ${VIRTUAL-RUNTIME_graphical_init_manager} \
> - xauth \
> - xhost \
> - xset \
> - xrandr \
> -"
> -
> --
> 1.7.8.6
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-oe][PATCH] task-x11*: Rename to packagegroup to match oe-core.
2012-09-05 9:25 ` Martin Jansa
@ 2012-09-05 9:30 ` Martin Ertsås
0 siblings, 0 replies; 3+ messages in thread
From: Martin Ertsås @ 2012-09-05 9:30 UTC (permalink / raw)
To: openembedded-devel
Ok. Nice. Did not see your patches there.
- Martin
On 09/05/12 11:25, Martin Jansa wrote:
> On Wed, Sep 05, 2012 at 11:22:32AM +0200, Martin Ertsaas wrote:
>> ---
>> .../packagegroups/packagegroup-x11-server_1.0.bb | 23 +++++++++++++++
>> .../packagegroups/packagegroup-x11_1.0.bb | 30 ++++++++++++++++++++
>> meta-oe/recipes-core/tasks/task-x11-server_1.0.bb | 23 ---------------
>> meta-oe/recipes-core/tasks/task-x11_1.0.bb | 30 --------------------
>> 4 files changed, 53 insertions(+), 53 deletions(-)
>> create mode 100644 meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb
>> create mode 100644 meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb
>> delete mode 100644 meta-oe/recipes-core/tasks/task-x11-server_1.0.bb
>> delete mode 100644 meta-oe/recipes-core/tasks/task-x11_1.0.bb
> NACK
>
> see my previous patches (and cover of last pull request).
>
> http://git.openembedded.org/meta-openembedded-contrib/log/?h=jansa/packagegroup
>
> after
> http://patchwork.openembedded.org/patch/35839/
> http://patchwork.openembedded.org/patch/35841/
> are applied in oe-core
>
> Cheers,
>
>> diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb b/meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb
>> new file mode 100644
>> index 0000000..7e43d55
>> --- /dev/null
>> +++ b/meta-oe/recipes-core/packagegroups/packagegroup-x11-server_1.0.bb
>> @@ -0,0 +1,23 @@
>> +DESCRIPTION = "Task for an image with Xserver"
>> +LICENSE = "MIT"
>> +LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
>> +PR = "r9"
>> +
>> +inherit task
>> +
>> +# for backwards compatibility
>> +RPROVIDES_${PN} += "task-xserver"
>> +
>> +XSERVER ?= "xserver-xorg \
>> + xf86-input-evdev \
>> + xf86-input-mouse \
>> + xf86-video-fbdev \
>> + xf86-input-keyboard \
>> +"
>> +
>> +
>> +RDEPENDS_${PN} = " \
>> + ${XSERVER} \
>> +"
>> +
>> +PACKAGE_ARCH = "${MACHINE_ARCH}"
>> diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb b/meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb
>> new file mode 100644
>> index 0000000..326e09f
>> --- /dev/null
>> +++ b/meta-oe/recipes-core/packagegroups/packagegroup-x11_1.0.bb
>> @@ -0,0 +1,30 @@
>> +DESCRIPTION = "The X Window System -- install this task to get a client/server based display multiplexer."
>> +SECTION = "x11/server"
>> +LICENSE = "MIT"
>> +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
>> +PR = "r11"
>> +
>> +inherit task allarch
>> +
>> +PACKAGES += "${PN}-utils"
>> +
>> +RRECOMMENDS_${PN} = "\
>> + ${PN}-server \
>> + ${PN}-utils \
>> +"
>> +
>> +# xserver-common, x11-common
>> +VIRTUAL-RUNTIME_xserver_common ?= "xserver-common"
>> +
>> +# elsa or xserver-nodm-init(-systemd)
>> +VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init"
>> +
>> +RDEPENDS_${PN}-utils = "\
>> + ${VIRTUAL-RUNTIME_xserver_common} \
>> + ${VIRTUAL-RUNTIME_graphical_init_manager} \
>> + xauth \
>> + xhost \
>> + xset \
>> + xrandr \
>> +"
>> +
>> diff --git a/meta-oe/recipes-core/tasks/task-x11-server_1.0.bb b/meta-oe/recipes-core/tasks/task-x11-server_1.0.bb
>> deleted file mode 100644
>> index 7e43d55..0000000
>> --- a/meta-oe/recipes-core/tasks/task-x11-server_1.0.bb
>> +++ /dev/null
>> @@ -1,23 +0,0 @@
>> -DESCRIPTION = "Task for an image with Xserver"
>> -LICENSE = "MIT"
>> -LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
>> -PR = "r9"
>> -
>> -inherit task
>> -
>> -# for backwards compatibility
>> -RPROVIDES_${PN} += "task-xserver"
>> -
>> -XSERVER ?= "xserver-xorg \
>> - xf86-input-evdev \
>> - xf86-input-mouse \
>> - xf86-video-fbdev \
>> - xf86-input-keyboard \
>> -"
>> -
>> -
>> -RDEPENDS_${PN} = " \
>> - ${XSERVER} \
>> -"
>> -
>> -PACKAGE_ARCH = "${MACHINE_ARCH}"
>> diff --git a/meta-oe/recipes-core/tasks/task-x11_1.0.bb b/meta-oe/recipes-core/tasks/task-x11_1.0.bb
>> deleted file mode 100644
>> index 326e09f..0000000
>> --- a/meta-oe/recipes-core/tasks/task-x11_1.0.bb
>> +++ /dev/null
>> @@ -1,30 +0,0 @@
>> -DESCRIPTION = "The X Window System -- install this task to get a client/server based display multiplexer."
>> -SECTION = "x11/server"
>> -LICENSE = "MIT"
>> -LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
>> -PR = "r11"
>> -
>> -inherit task allarch
>> -
>> -PACKAGES += "${PN}-utils"
>> -
>> -RRECOMMENDS_${PN} = "\
>> - ${PN}-server \
>> - ${PN}-utils \
>> -"
>> -
>> -# xserver-common, x11-common
>> -VIRTUAL-RUNTIME_xserver_common ?= "xserver-common"
>> -
>> -# elsa or xserver-nodm-init(-systemd)
>> -VIRTUAL-RUNTIME_graphical_init_manager ?= "xserver-nodm-init"
>> -
>> -RDEPENDS_${PN}-utils = "\
>> - ${VIRTUAL-RUNTIME_xserver_common} \
>> - ${VIRTUAL-RUNTIME_graphical_init_manager} \
>> - xauth \
>> - xhost \
>> - xset \
>> - xrandr \
>> -"
>> -
>> --
>> 1.7.8.6
>>
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-09-05 9:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-05 9:22 [meta-oe][PATCH] task-x11*: Rename to packagegroup to match oe-core Martin Ertsaas
2012-09-05 9:25 ` Martin Jansa
2012-09-05 9:30 ` Martin Ertsås
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.