* [meta-oe][PATCH 0/2] Misc updates
@ 2011-07-18 18:33 Tom Rini
2011-07-18 18:33 ` [meta-oe][PATCH 1/2] guile: Move 'configure-fix.patch' to guile-1.8.7 dir Tom Rini
2011-07-18 18:33 ` [meta-oe][PATCH 2/2] mercurial-native: Add 1.9 version Tom Rini
0 siblings, 2 replies; 4+ messages in thread
From: Tom Rini @ 2011-07-18 18:33 UTC (permalink / raw)
To: openembedded-devel
Hey all,
Here's a short 'misc' series with a few changes. First, take oe.dev's
mercurial-native and update to the current version. We don't yet have any
hg:// URIs but this lets us be ready for when we do. Second, one of the
patches guile needs was in the wrong directory to be used/found, so move
it.
The following changes since commit 7254205d68c9321d7a7073a74a77f46c17a98b27:
Khem Raj (1):
systemd: Replace use of %m in printf formats
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib trini/misc
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=trini/misc
Tom Rini (2):
guile: Move 'configure-fix.patch' to guile-1.8.7 dir
mercurial-native: Add 1.9 version
.../mercurial/mercurial-native_1.9.bb | 24 ++++++++++++++++++++
.../configure-fix.patch | 0
2 files changed, 24 insertions(+), 0 deletions(-)
create mode 100644 meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb
rename meta-oe/recipes-support/guile/{guile-native-1.8.7 => guile-1.8.7}/configure-fix.patch (100%)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [meta-oe][PATCH 1/2] guile: Move 'configure-fix.patch' to guile-1.8.7 dir
2011-07-18 18:33 [meta-oe][PATCH 0/2] Misc updates Tom Rini
@ 2011-07-18 18:33 ` Tom Rini
2011-07-18 18:33 ` [meta-oe][PATCH 2/2] mercurial-native: Add 1.9 version Tom Rini
1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2011-07-18 18:33 UTC (permalink / raw)
To: openembedded-devel
This patch is used by both native and target recipes.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
.../configure-fix.patch | 0
1 files changed, 0 insertions(+), 0 deletions(-)
rename meta-oe/recipes-support/guile/{guile-native-1.8.7 => guile-1.8.7}/configure-fix.patch (100%)
diff --git a/meta-oe/recipes-support/guile/guile-native-1.8.7/configure-fix.patch b/meta-oe/recipes-support/guile/guile-1.8.7/configure-fix.patch
similarity index 100%
rename from meta-oe/recipes-support/guile/guile-native-1.8.7/configure-fix.patch
rename to meta-oe/recipes-support/guile/guile-1.8.7/configure-fix.patch
--
1.7.0.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [meta-oe][PATCH 2/2] mercurial-native: Add 1.9 version
2011-07-18 18:33 [meta-oe][PATCH 0/2] Misc updates Tom Rini
2011-07-18 18:33 ` [meta-oe][PATCH 1/2] guile: Move 'configure-fix.patch' to guile-1.8.7 dir Tom Rini
@ 2011-07-18 18:33 ` Tom Rini
2011-07-18 22:50 ` Paul Menzel
1 sibling, 1 reply; 4+ messages in thread
From: Tom Rini @ 2011-07-18 18:33 UTC (permalink / raw)
To: openembedded-devel
This is based on 91c14caa8819b08def8ea99e02949e49604c2e86 from oe.dev
with an update to 1.9.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
.../mercurial/mercurial-native_1.9.bb | 24 ++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
create mode 100644 meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb
diff --git a/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb b/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb
new file mode 100644
index 0000000..b4438a3
--- /dev/null
+++ b/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "The Mercurial distributed SCM"
+HOMEPAGE = "http://mercurial.selenic.com/"
+SECTION = "console/utils"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+DEPENDS = "python-native"
+PR = "r1"
+
+SRC_URI = "http://mercurial.selenic.com/release/mercurial-${PV}.tar.gz"
+SRC_URI[md5sum] = "d4842129fa2732eb6ed1180467bc32e2"
+SRC_URI[sha256sum] = "711e4b1cd2924a7a88499d6c431a9122390183bf554d4e153edbb3b2f30123e0"
+
+S = "${WORKDIR}/mercurial-${PV}"
+
+inherit native
+
+EXTRA_OEMAKE = "STAGING_LIBDIR=${STAGING_LIBDIR} STAGING_INCDIR=${STAGING_INCDIR} \
+ BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} PREFIX=${prefix}"
+
+do_install () {
+ oe_runmake -e install-bin DESTDIR=${D} PREFIX=${prefix}
+}
+
+NATIVE_INSTALL_WORKS = "1"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-oe][PATCH 2/2] mercurial-native: Add 1.9 version
2011-07-18 18:33 ` [meta-oe][PATCH 2/2] mercurial-native: Add 1.9 version Tom Rini
@ 2011-07-18 22:50 ` Paul Menzel
0 siblings, 0 replies; 4+ messages in thread
From: Paul Menzel @ 2011-07-18 22:50 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1650 bytes --]
Am Montag, den 18.07.2011, 11:33 -0700 schrieb Tom Rini:
> This is based on 91c14caa8819b08def8ea99e02949e49604c2e86 from oe.dev
> with an update to 1.9.
>
> Signed-off-by: Tom Rini <tom_rini@mentor.com>
> ---
> .../mercurial/mercurial-native_1.9.bb | 24 ++++++++++++++++++++
> 1 files changed, 24 insertions(+), 0 deletions(-)
> create mode 100644 meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb
>
> diff --git a/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb b/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb
> new file mode 100644
> index 0000000..b4438a3
> --- /dev/null
> +++ b/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb
> @@ -0,0 +1,24 @@
> +DESCRIPTION = "The Mercurial distributed SCM"
> +HOMEPAGE = "http://mercurial.selenic.com/"
> +SECTION = "console/utils"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> +DEPENDS = "python-native"
> +PR = "r1"
Start with `r0` please.
> +
> +SRC_URI = "http://mercurial.selenic.com/release/mercurial-${PV}.tar.gz"
> +SRC_URI[md5sum] = "d4842129fa2732eb6ed1180467bc32e2"
> +SRC_URI[sha256sum] = "711e4b1cd2924a7a88499d6c431a9122390183bf554d4e153edbb3b2f30123e0"
> +
> +S = "${WORKDIR}/mercurial-${PV}"
> +
> +inherit native
> +
> +EXTRA_OEMAKE = "STAGING_LIBDIR=${STAGING_LIBDIR} STAGING_INCDIR=${STAGING_INCDIR} \
> + BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} PREFIX=${prefix}"
> +
> +do_install () {
> + oe_runmake -e install-bin DESTDIR=${D} PREFIX=${prefix}
> +}
> +
> +NATIVE_INSTALL_WORKS = "1"
Thanks,
Paul
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-07-18 22:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-18 18:33 [meta-oe][PATCH 0/2] Misc updates Tom Rini
2011-07-18 18:33 ` [meta-oe][PATCH 1/2] guile: Move 'configure-fix.patch' to guile-1.8.7 dir Tom Rini
2011-07-18 18:33 ` [meta-oe][PATCH 2/2] mercurial-native: Add 1.9 version Tom Rini
2011-07-18 22:50 ` Paul Menzel
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.