All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] postgresql: update inherit to work correctly with RSS
@ 2017-02-24 21:24 Derek Straka
  2017-02-24 21:34 ` Martin Jansa
  0 siblings, 1 reply; 3+ messages in thread
From: Derek Straka @ 2017-02-24 21:24 UTC (permalink / raw)
  To: openembedded-devel

Resolves build issue exposed by RSS
See http://errors.yoctoproject.org/Errors/Details/131632/

Signed-off-by: Derek Straka <derek@asterius.io>
---
 meta-oe/recipes-support/postgresql/postgresql.inc       | 4 ++--
 meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb | 2 --
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc
index 314c23d..cce513f 100644
--- a/meta-oe/recipes-support/postgresql/postgresql.inc
+++ b/meta-oe/recipes-support/postgresql/postgresql.inc
@@ -19,7 +19,7 @@ DESCRIPTION = "\
 "
 HOMEPAGE = "http://www.postgresql.com"
 LICENSE = "BSD"
-DEPENDS = "zlib readline tzcode-native gettext-native"
+DEPENDS = "zlib readline tzcode-native "
 
 ARM_INSTRUCTION_SET = "arm"
 
@@ -37,7 +37,7 @@ LEAD_SONAME = "libpq.so"
 # LDFLAGS for shared libraries
 export LDFLAGS_SL = "${LDFLAGS}"
 
-inherit autotools pkgconfig perlnative pythonnative useradd update-rc.d systemd
+inherit autotools gettext pkgconfig perlnative pythonnative useradd update-rc.d systemd
 
 CFLAGS += "-I${STAGING_INCDIR}/${PYTHON_DIR} -I${STAGING_INCDIR}/tcl8.6"
 
diff --git a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb b/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
index 4787e57..5498350 100644
--- a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
+++ b/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
@@ -9,5 +9,3 @@ SRC_URI += "\
 
 SRC_URI[md5sum] = "1171df0426fe4da5a29f6cdaf2e8b812"
 SRC_URI[sha256sum] = "7061678bed1981c681ce54c76b98b6ec17743f090a9775104a45e7e1a8826ecf"
-
-PNBLACKLIST[postgresql] ?= "Fails to build with RSS http://errors.yoctoproject.org/Errors/Details/131632/"
-- 
2.7.4



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

* Re: [meta-oe][PATCH] postgresql: update inherit to work correctly with RSS
  2017-02-24 21:24 [meta-oe][PATCH] postgresql: update inherit to work correctly with RSS Derek Straka
@ 2017-02-24 21:34 ` Martin Jansa
  2017-02-24 21:48   ` Derek Straka
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2017-02-24 21:34 UTC (permalink / raw)
  To: Derek Straka; +Cc: openembedded-devel

This was already fixed in master:
http://git.openembedded.org/meta-openembedded/commit/?id=18b373d1429172f13d30bc389687424163076a20

On Fri, Feb 24, 2017 at 10:24 PM, Derek Straka <derek@asterius.io> wrote:

> Resolves build issue exposed by RSS
> See http://errors.yoctoproject.org/Errors/Details/131632/
>
> Signed-off-by: Derek Straka <derek@asterius.io>
> ---
>  meta-oe/recipes-support/postgresql/postgresql.inc       | 4 ++--
>  meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb | 2 --
>  2 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc
> b/meta-oe/recipes-support/postgresql/postgresql.inc
> index 314c23d..cce513f 100644
> --- a/meta-oe/recipes-support/postgresql/postgresql.inc
> +++ b/meta-oe/recipes-support/postgresql/postgresql.inc
> @@ -19,7 +19,7 @@ DESCRIPTION = "\
>  "
>  HOMEPAGE = "http://www.postgresql.com"
>  LICENSE = "BSD"
> -DEPENDS = "zlib readline tzcode-native gettext-native"
> +DEPENDS = "zlib readline tzcode-native "
>
>  ARM_INSTRUCTION_SET = "arm"
>
> @@ -37,7 +37,7 @@ LEAD_SONAME = "libpq.so"
>  # LDFLAGS for shared libraries
>  export LDFLAGS_SL = "${LDFLAGS}"
>
> -inherit autotools pkgconfig perlnative pythonnative useradd update-rc.d
> systemd
> +inherit autotools gettext pkgconfig perlnative pythonnative useradd
> update-rc.d systemd
>
>  CFLAGS += "-I${STAGING_INCDIR}/${PYTHON_DIR} -I${STAGING_INCDIR}/tcl8.6"
>
> diff --git a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
> b/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
> index 4787e57..5498350 100644
> --- a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
> +++ b/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
> @@ -9,5 +9,3 @@ SRC_URI += "\
>
>  SRC_URI[md5sum] = "1171df0426fe4da5a29f6cdaf2e8b812"
>  SRC_URI[sha256sum] = "7061678bed1981c681ce54c76b98b6
> ec17743f090a9775104a45e7e1a8826ecf"
> -
> -PNBLACKLIST[postgresql] ?= "Fails to build with RSS
> http://errors.yoctoproject.org/Errors/Details/131632/"
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-oe][PATCH] postgresql: update inherit to work correctly with RSS
  2017-02-24 21:34 ` Martin Jansa
@ 2017-02-24 21:48   ` Derek Straka
  0 siblings, 0 replies; 3+ messages in thread
From: Derek Straka @ 2017-02-24 21:48 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel

Indeed.  I was a few days out of date.  Thanks.

-Derek

On Fri, Feb 24, 2017 at 4:34 PM, Martin Jansa <martin.jansa@gmail.com>
wrote:

> This was already fixed in master:
> http://git.openembedded.org/meta-openembedded/commit/?id=
> 18b373d1429172f13d30bc389687424163076a20
>
> On Fri, Feb 24, 2017 at 10:24 PM, Derek Straka <derek@asterius.io> wrote:
>
>> Resolves build issue exposed by RSS
>> See http://errors.yoctoproject.org/Errors/Details/131632/
>>
>> Signed-off-by: Derek Straka <derek@asterius.io>
>> ---
>>  meta-oe/recipes-support/postgresql/postgresql.inc       | 4 ++--
>>  meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb | 2 --
>>  2 files changed, 2 insertions(+), 4 deletions(-)
>>
>> diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc
>> b/meta-oe/recipes-support/postgresql/postgresql.inc
>> index 314c23d..cce513f 100644
>> --- a/meta-oe/recipes-support/postgresql/postgresql.inc
>> +++ b/meta-oe/recipes-support/postgresql/postgresql.inc
>> @@ -19,7 +19,7 @@ DESCRIPTION = "\
>>  "
>>  HOMEPAGE = "http://www.postgresql.com"
>>  LICENSE = "BSD"
>> -DEPENDS = "zlib readline tzcode-native gettext-native"
>> +DEPENDS = "zlib readline tzcode-native "
>>
>>  ARM_INSTRUCTION_SET = "arm"
>>
>> @@ -37,7 +37,7 @@ LEAD_SONAME = "libpq.so"
>>  # LDFLAGS for shared libraries
>>  export LDFLAGS_SL = "${LDFLAGS}"
>>
>> -inherit autotools pkgconfig perlnative pythonnative useradd update-rc.d
>> systemd
>> +inherit autotools gettext pkgconfig perlnative pythonnative useradd
>> update-rc.d systemd
>>
>>  CFLAGS += "-I${STAGING_INCDIR}/${PYTHON_DIR} -I${STAGING_INCDIR}/tcl8.6"
>>
>> diff --git a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
>> b/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
>> index 4787e57..5498350 100644
>> --- a/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
>> +++ b/meta-oe/recipes-support/postgresql/postgresql_9.4.10.bb
>> @@ -9,5 +9,3 @@ SRC_URI += "\
>>
>>  SRC_URI[md5sum] = "1171df0426fe4da5a29f6cdaf2e8b812"
>>  SRC_URI[sha256sum] = "7061678bed1981c681ce54c76b98b
>> 6ec17743f090a9775104a45e7e1a8826ecf"
>> -
>> -PNBLACKLIST[postgresql] ?= "Fails to build with RSS
>> http://errors.yoctoproject.org/Errors/Details/131632/"
>> --
>> 2.7.4
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>
>
>


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

end of thread, other threads:[~2017-02-24 21:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-24 21:24 [meta-oe][PATCH] postgresql: update inherit to work correctly with RSS Derek Straka
2017-02-24 21:34 ` Martin Jansa
2017-02-24 21:48   ` Derek Straka

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.