All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] schroedinger: Bump version to 1.0.11
@ 2012-01-31  0:21 ulf
  2012-01-31  0:21 ` [PATCH 2/2] fakeroot(-native)_1.18.2.bb: Bump version ulf
  0 siblings, 1 reply; 4+ messages in thread
From: ulf @ 2012-01-31  0:21 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Ulf Samuelsson

From: Ulf Samuelsson <ulf@emagii.com>

schroedinger depends on orc (Oil Runtime Compiler)
With the current version of schroedinger (1.0.9)
orc must have revision 0.4.11 or earlier.
As of 0.4.12, a stdint.h header is removed, breaking
the schroedinger build, and thus oe-classic which is now
using orc-0.4.16 as default.

Bumping the version will resync schroedinger with orc

Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
---
 recipes/schroedinger/schroedinger_1.0.11.bb |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)
 create mode 100644 recipes/schroedinger/schroedinger_1.0.11.bb

diff --git a/recipes/schroedinger/schroedinger_1.0.11.bb b/recipes/schroedinger/schroedinger_1.0.11.bb
new file mode 100644
index 0000000..ad09dd6
--- /dev/null
+++ b/recipes/schroedinger/schroedinger_1.0.11.bb
@@ -0,0 +1,13 @@
+require schroedinger.inc
+
+PR = "${INC_PR}.0"
+
+inherit autotools
+
+SRC_URI[schroedingertargz.md5sum] = "da6af08e564ca1157348fb8d92efc891"
+SRC_URI[schroedingertargz.sha256sum] = "1e572a0735b92aca5746c4528f9bebd35aa0ccf8619b22fa2756137a8cc9f912"
+
+PACKAGES =+ "gst-plugin-schroedinger-dbg gst-plugin-schroedinger-dev gst-plugin-schroedinger"
+FILES_gst-plugin-schroedinger = "${libdir}/gstreamer-0.10/*.so"
+FILES_gst-plugin-schroedinger-dbg = "${libdir}/gstreamer-0.10/.debug"
+FILES_gst-plugin-schroedinger-dev = "${libdir}/gstreamer-0.10/*.*a"
-- 
1.7.5.4




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

* [PATCH 2/2] fakeroot(-native)_1.18.2.bb: Bump version
  2012-01-31  0:21 [PATCH 1/2] schroedinger: Bump version to 1.0.11 ulf
@ 2012-01-31  0:21 ` ulf
  2012-02-01 14:58   ` Marco Cavallini
  2012-02-06 11:05   ` Marco Cavallini
  0 siblings, 2 replies; 4+ messages in thread
From: ulf @ 2012-01-31  0:21 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Ulf Samuelsson

From: Ulf Samuelsson <ulf@emagii.com>

Earlier fakeroot recipes are not longer available
at the download source.
Upgrade to latest version.

Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
---
 .../fakeroot-1.18.2/0001-quiet-getopt-check.patch  |   30 ++++++++++++++++++++
 .../fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch |   30 ++++++++++++++++++++
 recipes/fakeroot/fakeroot-native_1.18.2.bb         |   21 ++++++++++++++
 recipes/fakeroot/fakeroot_1.18.2.bb                |   20 +++++++++++++
 4 files changed, 101 insertions(+), 0 deletions(-)
 create mode 100644 recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch
 create mode 100644 recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch
 create mode 100644 recipes/fakeroot/fakeroot-native_1.18.2.bb
 create mode 100644 recipes/fakeroot/fakeroot_1.18.2.bb

diff --git a/recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch b/recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch
new file mode 100644
index 0000000..d0e00f7
--- /dev/null
+++ b/recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch
@@ -0,0 +1,30 @@
+From 1470e989b3136d1baef7e0e852849e6cf0638deb Mon Sep 17 00:00:00 2001
+From: Ulf Samuelsson <ulf@emagii.com>
+Date: Mon, 30 Jan 2012 22:43:53 +0100
+Subject: [PATCH 1/2] quiet getopt check
+
+busybox provided getopt prints the help-text on stderr
+
+Imported from an earlier version of fakeroot in openembedded
+
+Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
+---
+ scripts/fakeroot.in |    2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/scripts/fakeroot.in b/scripts/fakeroot.in
+index 324a9dc..7e501bd 100755
+--- a/scripts/fakeroot.in
++++ b/scripts/fakeroot.in
+@@ -43,7 +43,7 @@ export FAKED_MODE
+ 
+ libfound=no
+ 
+-GETOPTEST=`getopt --version`
++GETOPTEST=`getopt --version 2> /dev/null`
+ case $GETOPTEST in
+ getopt*) # GNU getopt
+     FAKE_TEMP=`getopt -l lib: -l faked: -l unknown-is-real -l fd-base: -l version -l help -- +l:f:i:s:ub:vh "$@"`
+-- 
+1.7.5.4
+
diff --git a/recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch b/recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch
new file mode 100644
index 0000000..7aae9c8
--- /dev/null
+++ b/recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch
@@ -0,0 +1,30 @@
+From 6bc2fc6d3907df936ed476591d09d9fe029e22ed Mon Sep 17 00:00:00 2001
+From: Ulf Samuelsson <ulf@emagii.com>
+Date: Mon, 30 Jan 2012 22:42:08 +0100
+Subject: [PATCH 2/2] fix prefix
+
+Ported from an earlier recipe in openembedded
+
+Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
+---
+ scripts/fakeroot.in |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/scripts/fakeroot.in b/scripts/fakeroot.in
+index 7e501bd..9a0e750 100755
+--- a/scripts/fakeroot.in
++++ b/scripts/fakeroot.in
+@@ -30,8 +30,8 @@ fatal ()
+ }
+ 
+ # strip /bin/fakeroot to find install prefix
+-FAKEROOT_PREFIX=@prefix@
+-FAKEROOT_BINDIR=@bindir@
++FAKEROOT_BINDIR=`dirname $0`
++FAKEROOT_PREFIX=`dirname ${FAKEROOT_BINDIR}`
+ 
+ USEABSLIBPATH=@LDPRELOADABS@
+ LIB=lib@fakeroot_transformed@@DLSUFFIX@
+-- 
+1.7.5.4
+
diff --git a/recipes/fakeroot/fakeroot-native_1.18.2.bb b/recipes/fakeroot/fakeroot-native_1.18.2.bb
new file mode 100644
index 0000000..21911a1
--- /dev/null
+++ b/recipes/fakeroot/fakeroot-native_1.18.2.bb
@@ -0,0 +1,21 @@
+require fakeroot_${PV}.bb
+
+RDEPENDS_${PN} = "util-linux-native"
+
+SRC_URI += "file://0002-fix-prefix.patch "
+S = "${WORKDIR}/fakeroot-${PV}"
+
+inherit native
+
+EXTRA_OECONF = " --program-prefix="
+
+# Compatability for the rare systems not using or having SYSV
+python () {
+    if bb.data.getVar('HOST_NONSYSV', d, True) and bb.data.getVar('HOST_NONSYSV', d, True) != '0':
+        bb.data.setVar('EXTRA_OECONF', ' --with-ipc=tcp --program-prefix= ', d)
+}
+
+do_stage_append () {
+    oe_libinstall -so libfakeroot ${STAGING_LIBDIR}/libfakeroot/
+}
+
diff --git a/recipes/fakeroot/fakeroot_1.18.2.bb b/recipes/fakeroot/fakeroot_1.18.2.bb
new file mode 100644
index 0000000..83192b5
--- /dev/null
+++ b/recipes/fakeroot/fakeroot_1.18.2.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "Gives a fake root environment"
+HOMEPAGE = "http://fakeroot.alioth.debian.org/"
+SECTION = "base"
+LICENSE = "GPL"
+# fakeroot needs getopt which is provided by the util-linux package
+RDEPENDS_${PN} = "util-linux"
+
+require fakeroot.inc
+
+PR = "${INC_PR}.0"
+
+inherit autotools
+
+SRC_URI =+ "\
+	${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.orig.tar.bz2 \
+	file://0001-quiet-getopt-check.patch \
+	"
+
+SRC_URI[md5sum] = "79f32331358ad58499704ea5e19fd0ae"
+SRC_URI[sha256sum] = "9dc942e3ef2ec83c6e6fe59de05da6ab54f39948be64803f37721adab4c6aed8"
-- 
1.7.5.4




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

* Re: [PATCH 2/2] fakeroot(-native)_1.18.2.bb: Bump version
  2012-01-31  0:21 ` [PATCH 2/2] fakeroot(-native)_1.18.2.bb: Bump version ulf
@ 2012-02-01 14:58   ` Marco Cavallini
  2012-02-06 11:05   ` Marco Cavallini
  1 sibling, 0 replies; 4+ messages in thread
From: Marco Cavallini @ 2012-02-01 14:58 UTC (permalink / raw)
  To: openembedded-devel

ulf@emagii.com ha scritto, Il 31/01/2012 01:21:
> From: Ulf Samuelsson <ulf@emagii.com>
> 
> Earlier fakeroot recipes are not longer available
> at the download source.
> Upgrade to latest version.
> 
> Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
> ---
>  .../fakeroot-1.18.2/0001-quiet-getopt-check.patch  |   30 ++++++++++++++++++++
>  .../fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch |   30 ++++++++++++++++++++
>  recipes/fakeroot/fakeroot-native_1.18.2.bb         |   21 ++++++++++++++
>  recipes/fakeroot/fakeroot_1.18.2.bb                |   20 +++++++++++++
>  4 files changed, 101 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch
>  create mode 100644 recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch
>  create mode 100644 recipes/fakeroot/fakeroot-native_1.18.2.bb
>  create mode 100644 recipes/fakeroot/fakeroot_1.18.2.bb
> 
> diff --git a/recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch b/recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch
> new file mode 100644
> index 0000000..d0e00f7
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch
> @@ -0,0 +1,30 @@
> +From 1470e989b3136d1baef7e0e852849e6cf0638deb Mon Sep 17 00:00:00 2001
> +From: Ulf Samuelsson <ulf@emagii.com>
> +Date: Mon, 30 Jan 2012 22:43:53 +0100
> +Subject: [PATCH 1/2] quiet getopt check
> +
> +busybox provided getopt prints the help-text on stderr
> +
> +Imported from an earlier version of fakeroot in openembedded
> +
> +Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
> +---
> + scripts/fakeroot.in |    2 +-
> + 1 files changed, 1 insertions(+), 1 deletions(-)
> +
> +diff --git a/scripts/fakeroot.in b/scripts/fakeroot.in
> +index 324a9dc..7e501bd 100755
> +--- a/scripts/fakeroot.in
> ++++ b/scripts/fakeroot.in
> +@@ -43,7 +43,7 @@ export FAKED_MODE
> + 
> + libfound=no
> + 
> +-GETOPTEST=`getopt --version`
> ++GETOPTEST=`getopt --version 2> /dev/null`
> + case $GETOPTEST in
> + getopt*) # GNU getopt
> +     FAKE_TEMP=`getopt -l lib: -l faked: -l unknown-is-real -l fd-base: -l version -l help -- +l:f:i:s:ub:vh "$@"`
> +-- 
> +1.7.5.4
> +
> diff --git a/recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch b/recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch
> new file mode 100644
> index 0000000..7aae9c8
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch
> @@ -0,0 +1,30 @@
> +From 6bc2fc6d3907df936ed476591d09d9fe029e22ed Mon Sep 17 00:00:00 2001
> +From: Ulf Samuelsson <ulf@emagii.com>
> +Date: Mon, 30 Jan 2012 22:42:08 +0100
> +Subject: [PATCH 2/2] fix prefix
> +
> +Ported from an earlier recipe in openembedded
> +
> +Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
> +---
> + scripts/fakeroot.in |    4 ++--
> + 1 files changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/scripts/fakeroot.in b/scripts/fakeroot.in
> +index 7e501bd..9a0e750 100755
> +--- a/scripts/fakeroot.in
> ++++ b/scripts/fakeroot.in
> +@@ -30,8 +30,8 @@ fatal ()
> + }
> + 
> + # strip /bin/fakeroot to find install prefix
> +-FAKEROOT_PREFIX=@prefix@
> +-FAKEROOT_BINDIR=@bindir@
> ++FAKEROOT_BINDIR=`dirname $0`
> ++FAKEROOT_PREFIX=`dirname ${FAKEROOT_BINDIR}`
> + 
> + USEABSLIBPATH=@LDPRELOADABS@
> + LIB=lib@fakeroot_transformed@@DLSUFFIX@
> +-- 
> +1.7.5.4
> +
> diff --git a/recipes/fakeroot/fakeroot-native_1.18.2.bb b/recipes/fakeroot/fakeroot-native_1.18.2.bb
> new file mode 100644
> index 0000000..21911a1
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot-native_1.18.2.bb
> @@ -0,0 +1,21 @@
> +require fakeroot_${PV}.bb
> +
> +RDEPENDS_${PN} = "util-linux-native"
> +
> +SRC_URI += "file://0002-fix-prefix.patch "
> +S = "${WORKDIR}/fakeroot-${PV}"
> +
> +inherit native
> +
> +EXTRA_OECONF = " --program-prefix="
> +
> +# Compatability for the rare systems not using or having SYSV
> +python () {
> +    if bb.data.getVar('HOST_NONSYSV', d, True) and bb.data.getVar('HOST_NONSYSV', d, True) != '0':
> +        bb.data.setVar('EXTRA_OECONF', ' --with-ipc=tcp --program-prefix= ', d)
> +}
> +
> +do_stage_append () {
> +    oe_libinstall -so libfakeroot ${STAGING_LIBDIR}/libfakeroot/
> +}
> +
> diff --git a/recipes/fakeroot/fakeroot_1.18.2.bb b/recipes/fakeroot/fakeroot_1.18.2.bb
> new file mode 100644
> index 0000000..83192b5
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot_1.18.2.bb
> @@ -0,0 +1,20 @@
> +DESCRIPTION = "Gives a fake root environment"
> +HOMEPAGE = "http://fakeroot.alioth.debian.org/"
> +SECTION = "base"
> +LICENSE = "GPL"
> +# fakeroot needs getopt which is provided by the util-linux package
> +RDEPENDS_${PN} = "util-linux"
> +
> +require fakeroot.inc
> +
> +PR = "${INC_PR}.0"
> +
> +inherit autotools
> +
> +SRC_URI =+ "\
> +	${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.orig.tar.bz2 \
> +	file://0001-quiet-getopt-check.patch \
> +	"
> +
> +SRC_URI[md5sum] = "79f32331358ad58499704ea5e19fd0ae"
> +SRC_URI[sha256sum] = "9dc942e3ef2ec83c6e6fe59de05da6ab54f39948be64803f37721adab4c6aed8"


Thank you for your patch.

Acked-by: Marco Cavallini <m.cavallini@koansoftware.com>



Cordiali Saluti / Kindest Regards / Mit freundlichen Grüßen
--
Marco Cavallini | KOAN sas | Bergamo - Italia
 embedded and real-time software engineering
   Atmel third party certified consultant
Phone:+39-035-255.235 - Fax:+39-178-22.39.748
      http://www.KoanSoftware.com
        http://www.KaeilOS.com




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

* Re: [PATCH 2/2] fakeroot(-native)_1.18.2.bb: Bump version
  2012-01-31  0:21 ` [PATCH 2/2] fakeroot(-native)_1.18.2.bb: Bump version ulf
  2012-02-01 14:58   ` Marco Cavallini
@ 2012-02-06 11:05   ` Marco Cavallini
  1 sibling, 0 replies; 4+ messages in thread
From: Marco Cavallini @ 2012-02-06 11:05 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Ulf Samuelsson

ulf@emagii.com ha scritto, Il 31/01/2012 01:21:
> From: Ulf Samuelsson <ulf@emagii.com>
> 
> Earlier fakeroot recipes are not longer available
> at the download source.
> Upgrade to latest version.
> 
> Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
> ---
>  .../fakeroot-1.18.2/0001-quiet-getopt-check.patch  |   30 ++++++++++++++++++++
>  .../fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch |   30 ++++++++++++++++++++
>  recipes/fakeroot/fakeroot-native_1.18.2.bb         |   21 ++++++++++++++
>  recipes/fakeroot/fakeroot_1.18.2.bb                |   20 +++++++++++++
>  4 files changed, 101 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch
>  create mode 100644 recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch
>  create mode 100644 recipes/fakeroot/fakeroot-native_1.18.2.bb
>  create mode 100644 recipes/fakeroot/fakeroot_1.18.2.bb
> 
> diff --git a/recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch b/recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch
> new file mode 100644
> index 0000000..d0e00f7
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot-1.18.2/0001-quiet-getopt-check.patch
> @@ -0,0 +1,30 @@
> +From 1470e989b3136d1baef7e0e852849e6cf0638deb Mon Sep 17 00:00:00 2001
> +From: Ulf Samuelsson <ulf@emagii.com>
> +Date: Mon, 30 Jan 2012 22:43:53 +0100
> +Subject: [PATCH 1/2] quiet getopt check
> +
> +busybox provided getopt prints the help-text on stderr
> +
> +Imported from an earlier version of fakeroot in openembedded
> +
> +Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
> +---
> + scripts/fakeroot.in |    2 +-
> + 1 files changed, 1 insertions(+), 1 deletions(-)
> +
> +diff --git a/scripts/fakeroot.in b/scripts/fakeroot.in
> +index 324a9dc..7e501bd 100755
> +--- a/scripts/fakeroot.in
> ++++ b/scripts/fakeroot.in
> +@@ -43,7 +43,7 @@ export FAKED_MODE
> + 
> + libfound=no
> + 
> +-GETOPTEST=`getopt --version`
> ++GETOPTEST=`getopt --version 2> /dev/null`
> + case $GETOPTEST in
> + getopt*) # GNU getopt
> +     FAKE_TEMP=`getopt -l lib: -l faked: -l unknown-is-real -l fd-base: -l version -l help -- +l:f:i:s:ub:vh "$@"`
> +-- 
> +1.7.5.4
> +
> diff --git a/recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch b/recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch
> new file mode 100644
> index 0000000..7aae9c8
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot-1.18.2/0002-fix-prefix.patch
> @@ -0,0 +1,30 @@
> +From 6bc2fc6d3907df936ed476591d09d9fe029e22ed Mon Sep 17 00:00:00 2001
> +From: Ulf Samuelsson <ulf@emagii.com>
> +Date: Mon, 30 Jan 2012 22:42:08 +0100
> +Subject: [PATCH 2/2] fix prefix
> +
> +Ported from an earlier recipe in openembedded
> +
> +Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
> +---
> + scripts/fakeroot.in |    4 ++--
> + 1 files changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/scripts/fakeroot.in b/scripts/fakeroot.in
> +index 7e501bd..9a0e750 100755
> +--- a/scripts/fakeroot.in
> ++++ b/scripts/fakeroot.in
> +@@ -30,8 +30,8 @@ fatal ()
> + }
> + 
> + # strip /bin/fakeroot to find install prefix
> +-FAKEROOT_PREFIX=@prefix@
> +-FAKEROOT_BINDIR=@bindir@
> ++FAKEROOT_BINDIR=`dirname $0`
> ++FAKEROOT_PREFIX=`dirname ${FAKEROOT_BINDIR}`
> + 
> + USEABSLIBPATH=@LDPRELOADABS@
> + LIB=lib@fakeroot_transformed@@DLSUFFIX@
> +-- 
> +1.7.5.4
> +
> diff --git a/recipes/fakeroot/fakeroot-native_1.18.2.bb b/recipes/fakeroot/fakeroot-native_1.18.2.bb
> new file mode 100644
> index 0000000..21911a1
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot-native_1.18.2.bb
> @@ -0,0 +1,21 @@
> +require fakeroot_${PV}.bb
> +
> +RDEPENDS_${PN} = "util-linux-native"
> +
> +SRC_URI += "file://0002-fix-prefix.patch "
> +S = "${WORKDIR}/fakeroot-${PV}"
> +
> +inherit native
> +
> +EXTRA_OECONF = " --program-prefix="
> +
> +# Compatability for the rare systems not using or having SYSV
> +python () {
> +    if bb.data.getVar('HOST_NONSYSV', d, True) and bb.data.getVar('HOST_NONSYSV', d, True) != '0':
> +        bb.data.setVar('EXTRA_OECONF', ' --with-ipc=tcp --program-prefix= ', d)
> +}
> +
> +do_stage_append () {
> +    oe_libinstall -so libfakeroot ${STAGING_LIBDIR}/libfakeroot/
> +}
> +
> diff --git a/recipes/fakeroot/fakeroot_1.18.2.bb b/recipes/fakeroot/fakeroot_1.18.2.bb
> new file mode 100644
> index 0000000..83192b5
> --- /dev/null
> +++ b/recipes/fakeroot/fakeroot_1.18.2.bb
> @@ -0,0 +1,20 @@
> +DESCRIPTION = "Gives a fake root environment"
> +HOMEPAGE = "http://fakeroot.alioth.debian.org/"
> +SECTION = "base"
> +LICENSE = "GPL"
> +# fakeroot needs getopt which is provided by the util-linux package
> +RDEPENDS_${PN} = "util-linux"
> +
> +require fakeroot.inc
> +
> +PR = "${INC_PR}.0"
> +
> +inherit autotools
> +
> +SRC_URI =+ "\
> +	${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.orig.tar.bz2 \
> +	file://0001-quiet-getopt-check.patch \
> +	"
> +
> +SRC_URI[md5sum] = "79f32331358ad58499704ea5e19fd0ae"
> +SRC_URI[sha256sum] = "9dc942e3ef2ec83c6e6fe59de05da6ab54f39948be64803f37721adab4c6aed8"


Ulf,
thank you again for your patch.
It works with a charm.

Please push it ASAP
I already did it in my own branch mckoan/kaeilos-2011

commit 3e454402452998cac95a0f02de78ad6c51949ac8
Author: Marco Cavallini <m.cavallini@koansoftware.com>
Date:   Thu Feb 2 10:18:56 2012 +0100

    fakeroot_1.18.2: Upgrade to latest version.

     * Earlier fakeroot recipes are not longer available
     * at the download source.
     * http://patches.openembedded.org/patch/20365/
     * From: Ulf Samuelsson <ulf@emagii.com>


--
Marco



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

end of thread, other threads:[~2012-02-06 11:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-31  0:21 [PATCH 1/2] schroedinger: Bump version to 1.0.11 ulf
2012-01-31  0:21 ` [PATCH 2/2] fakeroot(-native)_1.18.2.bb: Bump version ulf
2012-02-01 14:58   ` Marco Cavallini
2012-02-06 11:05   ` Marco Cavallini

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.