All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] [YOCTO #1079]: Rename this file and add a link for lsb test
@ 2011-05-18 11:23 Xiaofeng Yan
  2011-05-18 11:23 ` [PATCH 1/1] lsbsetup: " Xiaofeng Yan
  2011-05-24 17:47 ` [PATCH 0/1] [YOCTO #1079]: " Saul Wold
  0 siblings, 2 replies; 4+ messages in thread
From: Xiaofeng Yan @ 2011-05-18 11:23 UTC (permalink / raw)
  To: poky

From: Xiaofeng Yan <xiaofeng.yan@windriver.com>

Fix bug [YOCTO #1079], It could be not the most solution for this bug but could pass lsb test

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: xiaofeng/lsb
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=xiaofeng/lsb

Thanks,
    Xiaofeng Yan <xiaofeng.yan@windriver.com>
---


Xiaofeng Yan (1):
  lsbsetup: Rename this file and add a link for lsb test

 meta/recipes-extended/lsb/lsbsetup_0.9.bb |   25 -------------------------
 meta/recipes-extended/lsb/lsbsetup_1.0.bb |   27 +++++++++++++++++++++++++++
 2 files changed, 27 insertions(+), 25 deletions(-)
 delete mode 100644 meta/recipes-extended/lsb/lsbsetup_0.9.bb
 create mode 100644 meta/recipes-extended/lsb/lsbsetup_1.0.bb



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

* [PATCH 1/1] lsbsetup: Rename this file and add a link for lsb test
  2011-05-18 11:23 [PATCH 0/1] [YOCTO #1079]: Rename this file and add a link for lsb test Xiaofeng Yan
@ 2011-05-18 11:23 ` Xiaofeng Yan
  2011-05-18 16:40   ` Saul Wold
  2011-05-24 17:47 ` [PATCH 0/1] [YOCTO #1079]: " Saul Wold
  1 sibling, 1 reply; 4+ messages in thread
From: Xiaofeng Yan @ 2011-05-18 11:23 UTC (permalink / raw)
  To: poky

From: Xiaofeng Yan <xiaofeng.yan@windriver.com>

Rename this file version from 0.9 to 1.0.
Link time environment for Hong Kong time for lsb test.

Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
 meta/recipes-extended/lsb/lsbsetup_0.9.bb |   25 -------------------------
 meta/recipes-extended/lsb/lsbsetup_1.0.bb |   27 +++++++++++++++++++++++++++
 2 files changed, 27 insertions(+), 25 deletions(-)
 delete mode 100644 meta/recipes-extended/lsb/lsbsetup_0.9.bb
 create mode 100644 meta/recipes-extended/lsb/lsbsetup_1.0.bb

diff --git a/meta/recipes-extended/lsb/lsbsetup_0.9.bb b/meta/recipes-extended/lsb/lsbsetup_0.9.bb
deleted file mode 100644
index f3651e2..0000000
--- a/meta/recipes-extended/lsb/lsbsetup_0.9.bb
+++ /dev/null
@@ -1,25 +0,0 @@
-DESCRIPTION = "auto-setup environment for lsb test"
-SECTION = "console/utils"
-PRIORITY = "required"
-LICENSE = "GPLv2"
-PR = "r3"
-
-LIC_FILES_CHKSUM = "file://LSB_Setup.sh;beginline=3;endline=16;md5=97451c7c0786ce5bbe9ac58042945583"
-
-SRC_URI = "file://LSB_Setup.sh"
-
-S=${WORKDIR}
-
-do_install() {
-        # Only install file if it has a contents
-        install -d ${D}/usr/bin
-        install -m 0755 ${S}/LSB_Setup.sh ${D}/usr/bin
-        install -d  ${D}/usr/lib/lsb
-        ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/install_initd
-        ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/remove_initd
-        ln -sf ${sbindir}/sendmail ${D}/${libdir}/sendmail
-}
-
-FILES_${PN} += "${libdir}/lsb \
-               ${libdir}/* \
-               "
diff --git a/meta/recipes-extended/lsb/lsbsetup_1.0.bb b/meta/recipes-extended/lsb/lsbsetup_1.0.bb
new file mode 100644
index 0000000..247f9bc
--- /dev/null
+++ b/meta/recipes-extended/lsb/lsbsetup_1.0.bb
@@ -0,0 +1,27 @@
+DESCRIPTION = "auto-setup environment for lsb test"
+SECTION = "console/utils"
+PRIORITY = "required"
+LICENSE = "GPLv2"
+PR = "r3"
+
+LIC_FILES_CHKSUM = "file://LSB_Setup.sh;beginline=3;endline=16;md5=97451c7c0786ce5bbe9ac58042945583"
+
+SRC_URI = "file://LSB_Setup.sh"
+
+S=${WORKDIR}
+
+do_install() {
+    # Only install file if it has a contents
+    install -d ${D}/usr/bin
+    install -d ${D}/${sysconfdir}
+    install -m 0755 ${S}/LSB_Setup.sh ${D}/usr/bin
+    install -d  ${D}/usr/lib/lsb
+    ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/install_initd
+    ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/remove_initd
+    ln -sf ${sbindir}/sendmail ${D}/${libdir}/sendmail
+    ln -sf ${datadir}/zoneinfo/Asia/Hong_Kong ${D}${sysconfdir}/localtime
+}
+
+FILES_${PN} += "${libdir}/lsb \
+               ${libdir}/* \
+               "
-- 
1.7.0.4



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

* Re: [PATCH 1/1] lsbsetup: Rename this file and add a link for lsb test
  2011-05-18 11:23 ` [PATCH 1/1] lsbsetup: " Xiaofeng Yan
@ 2011-05-18 16:40   ` Saul Wold
  0 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2011-05-18 16:40 UTC (permalink / raw)
  To: Xiaofeng Yan; +Cc: poky

On 05/18/2011 04:23 AM, Xiaofeng Yan wrote:
> From: Xiaofeng Yan<xiaofeng.yan@windriver.com>
>
In the future, please include the [YOCTO #bugid] in the commit messages 
itself.  It should go here after the Subject line before the body of the 
commit message.

[YOCTO #1079]

> Rename this file version from 0.9 to 1.0.
> Link time environment for Hong Kong time for lsb test.
>

> Signed-off-by: Xiaofeng Yan<xiaofeng.yan@windriver.com>
> ---
>   meta/recipes-extended/lsb/lsbsetup_0.9.bb |   25 -------------------------
>   meta/recipes-extended/lsb/lsbsetup_1.0.bb |   27 +++++++++++++++++++++++++++
>   2 files changed, 27 insertions(+), 25 deletions(-)
>   delete mode 100644 meta/recipes-extended/lsb/lsbsetup_0.9.bb
>   create mode 100644 meta/recipes-extended/lsb/lsbsetup_1.0.bb
>
> diff --git a/meta/recipes-extended/lsb/lsbsetup_0.9.bb b/meta/recipes-extended/lsb/lsbsetup_0.9.bb
> deleted file mode 100644
> index f3651e2..0000000
> --- a/meta/recipes-extended/lsb/lsbsetup_0.9.bb
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -DESCRIPTION = "auto-setup environment for lsb test"
> -SECTION = "console/utils"
> -PRIORITY = "required"
> -LICENSE = "GPLv2"
> -PR = "r3"
> -
> -LIC_FILES_CHKSUM = "file://LSB_Setup.sh;beginline=3;endline=16;md5=97451c7c0786ce5bbe9ac58042945583"
> -
> -SRC_URI = "file://LSB_Setup.sh"
> -
> -S=${WORKDIR}
> -
> -do_install() {
> -        # Only install file if it has a contents
> -        install -d ${D}/usr/bin
> -        install -m 0755 ${S}/LSB_Setup.sh ${D}/usr/bin
> -        install -d  ${D}/usr/lib/lsb
> -        ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/install_initd
> -        ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/remove_initd
> -        ln -sf ${sbindir}/sendmail ${D}/${libdir}/sendmail
> -}
> -
> -FILES_${PN} += "${libdir}/lsb \
> -               ${libdir}/* \
> -               "
> diff --git a/meta/recipes-extended/lsb/lsbsetup_1.0.bb b/meta/recipes-extended/lsb/lsbsetup_1.0.bb
> new file mode 100644
> index 0000000..247f9bc
> --- /dev/null
> +++ b/meta/recipes-extended/lsb/lsbsetup_1.0.bb
> @@ -0,0 +1,27 @@
> +DESCRIPTION = "auto-setup environment for lsb test"
> +SECTION = "console/utils"
> +PRIORITY = "required"
> +LICENSE = "GPLv2"
> +PR = "r3"
> +
> +LIC_FILES_CHKSUM = "file://LSB_Setup.sh;beginline=3;endline=16;md5=97451c7c0786ce5bbe9ac58042945583"
> +
> +SRC_URI = "file://LSB_Setup.sh"
> +
> +S=${WORKDIR}
> +
> +do_install() {
> +    # Only install file if it has a contents
> +    install -d ${D}/usr/bin
> +    install -d ${D}/${sysconfdir}
> +    install -m 0755 ${S}/LSB_Setup.sh ${D}/usr/bin
> +    install -d  ${D}/usr/lib/lsb
> +    ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/install_initd
> +    ln -sf ${base_sbindir}/chkconfig ${D}/${libdir}/lsb/remove_initd
> +    ln -sf ${sbindir}/sendmail ${D}/${libdir}/sendmail
> +    ln -sf ${datadir}/zoneinfo/Asia/Hong_Kong ${D}${sysconfdir}/localtime
> +}
> +
> +FILES_${PN} += "${libdir}/lsb \
> +               ${libdir}/* \
> +               "



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

* Re: [PATCH 0/1] [YOCTO #1079]: Rename this file and add a link for lsb test
  2011-05-18 11:23 [PATCH 0/1] [YOCTO #1079]: Rename this file and add a link for lsb test Xiaofeng Yan
  2011-05-18 11:23 ` [PATCH 1/1] lsbsetup: " Xiaofeng Yan
@ 2011-05-24 17:47 ` Saul Wold
  1 sibling, 0 replies; 4+ messages in thread
From: Saul Wold @ 2011-05-24 17:47 UTC (permalink / raw)
  To: Xiaofeng Yan; +Cc: poky

On 05/18/2011 04:23 AM, Xiaofeng Yan wrote:
> From: Xiaofeng Yan<xiaofeng.yan@windriver.com>
>
> Fix bug [YOCTO #1079], It could be not the most solution for this bug but could pass lsb test
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>    Branch: xiaofeng/lsb
>    Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=xiaofeng/lsb
>
> Thanks,
>      Xiaofeng Yan<xiaofeng.yan@windriver.com>
> ---
>
>
> Xiaofeng Yan (1):
>    lsbsetup: Rename this file and add a link for lsb test
>
>   meta/recipes-extended/lsb/lsbsetup_0.9.bb |   25 -------------------------
>   meta/recipes-extended/lsb/lsbsetup_1.0.bb |   27 +++++++++++++++++++++++++++
>   2 files changed, 27 insertions(+), 25 deletions(-)
>   delete mode 100644 meta/recipes-extended/lsb/lsbsetup_0.9.bb
>   create mode 100644 meta/recipes-extended/lsb/lsbsetup_1.0.bb
>
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
>
Merged into oe-core

Thanks
	Sau!



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

end of thread, other threads:[~2011-05-24 17:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-18 11:23 [PATCH 0/1] [YOCTO #1079]: Rename this file and add a link for lsb test Xiaofeng Yan
2011-05-18 11:23 ` [PATCH 1/1] lsbsetup: " Xiaofeng Yan
2011-05-18 16:40   ` Saul Wold
2011-05-24 17:47 ` [PATCH 0/1] [YOCTO #1079]: " Saul Wold

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.