Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/4] Configure options clean up and 2 updates
@ 2013-12-24  0:29 Saul Wold
  2013-12-24  0:29 ` [PATCH 1/4] sqlite: remove unrecognised options: --enable-tempstore Saul Wold
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Saul Wold @ 2013-12-24  0:29 UTC (permalink / raw)
  To: openembedded-core

Richard,

V2 of the config options clean-up with better commit messages and a couple
of package updates

Saul Wold (4):
  sqlite: remove unrecognised options: --enable-tempstore
  python: fix unrecognised options: --without-cxx --with-cyclic-gc
  tzdata: Update to 2013i
  tzcode: Update to 2013i

 meta/recipes-devtools/python/python.inc                        |  3 +--
 .../tzcode/{tzcode-native_2013h.bb => tzcode-native_2013i.bb}  | 10 +++++-----
 .../tzdata/{tzdata_2013h.bb => tzdata_2013i.bb}                |  6 +++---
 meta/recipes-support/sqlite/sqlite3.inc                        |  2 +-
 4 files changed, 10 insertions(+), 11 deletions(-)
 rename meta/recipes-extended/tzcode/{tzcode-native_2013h.bb => tzcode-native_2013i.bb} (59%)
 rename meta/recipes-extended/tzdata/{tzdata_2013h.bb => tzdata_2013i.bb} (97%)

-- 
1.8.3.1



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

* [PATCH 1/4] sqlite: remove unrecognised options: --enable-tempstore
  2013-12-24  0:29 [PATCH 0/4] Configure options clean up and 2 updates Saul Wold
@ 2013-12-24  0:29 ` Saul Wold
  2013-12-24  0:29 ` [PATCH 2/4] python: fix unrecognised options: --without-cxx --with-cyclic-gc Saul Wold
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2013-12-24  0:29 UTC (permalink / raw)
  To: openembedded-core

This option appears to be commented out in the configure.ac with no explaination,
It does not appear to be commented out in the source, so it occurs during the sqlite
release process!

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-support/sqlite/sqlite3.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/sqlite/sqlite3.inc b/meta/recipes-support/sqlite/sqlite3.inc
index 064d78c..0cd2deb 100644
--- a/meta/recipes-support/sqlite/sqlite3.inc
+++ b/meta/recipes-support/sqlite/sqlite3.inc
@@ -8,7 +8,7 @@ LICENSE = "PD"
 inherit autotools pkgconfig
 
 EXTRA_OECONF = "--enable-shared --enable-threadsafe"
-EXTRA_OECONF_class-native = "--enable-shared --enable-threadsafe --disable-readline --enable-tempstore"
+EXTRA_OECONF_class-native = "--enable-shared --enable-threadsafe --disable-readline"
 export config_BUILD_CC = "${BUILD_CC}"
 export config_BUILD_CFLAGS = "${BUILD_CFLAGS}"
 export config_BUILD_LIBS = "${BUILD_LDFLAGS}"
-- 
1.8.3.1



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

* [PATCH 2/4] python: fix unrecognised options: --without-cxx --with-cyclic-gc
  2013-12-24  0:29 [PATCH 0/4] Configure options clean up and 2 updates Saul Wold
  2013-12-24  0:29 ` [PATCH 1/4] sqlite: remove unrecognised options: --enable-tempstore Saul Wold
@ 2013-12-24  0:29 ` Saul Wold
  2013-12-24  0:29 ` [PATCH 3/4] tzdata: Update to 2013i Saul Wold
  2013-12-24  0:29 ` [PATCH 4/4] tzcode: " Saul Wold
  3 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2013-12-24  0:29 UTC (permalink / raw)
  To: openembedded-core

The -with-cxx changed to with-cxx-main sometime around the 2.5 time frame
It appears that there never was a with-cyclic-gc configure option, or if
there was it was from some past patch we no longer have.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-devtools/python/python.inc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/python/python.inc b/meta/recipes-devtools/python/python.inc
index fcfeda5..cecfb3a 100644
--- a/meta/recipes-devtools/python/python.inc
+++ b/meta/recipes-devtools/python/python.inc
@@ -22,8 +22,7 @@ PYTHONLSBOPTS_linuxstdbase = "ac_cv_sizeof_off_t=8"
 EXTRA_OECONF = "\
   --with-threads \
   --with-pymalloc \
-  --with-cyclic-gc \
-  --without-cxx \
+  --without-cxx-main \
   --with-signal-module \
   --enable-shared \
   --enable-ipv6=${@base_contains('DISTRO_FEATURES', 'ipv6', 'yes', 'no', d)} \
-- 
1.8.3.1



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

* [PATCH 3/4] tzdata: Update to 2013i
  2013-12-24  0:29 [PATCH 0/4] Configure options clean up and 2 updates Saul Wold
  2013-12-24  0:29 ` [PATCH 1/4] sqlite: remove unrecognised options: --enable-tempstore Saul Wold
  2013-12-24  0:29 ` [PATCH 2/4] python: fix unrecognised options: --without-cxx --with-cyclic-gc Saul Wold
@ 2013-12-24  0:29 ` Saul Wold
  2013-12-24  0:29 ` [PATCH 4/4] tzcode: " Saul Wold
  3 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2013-12-24  0:29 UTC (permalink / raw)
  To: openembedded-core

The solar* time file are no longer distributed (see tzdata's NEWS for details)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-extended/tzdata/{tzdata_2013h.bb => tzdata_2013i.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-extended/tzdata/{tzdata_2013h.bb => tzdata_2013i.bb} (97%)

diff --git a/meta/recipes-extended/tzdata/tzdata_2013h.bb b/meta/recipes-extended/tzdata/tzdata_2013i.bb
similarity index 97%
rename from meta/recipes-extended/tzdata/tzdata_2013h.bb
rename to meta/recipes-extended/tzdata/tzdata_2013i.bb
index 16d67d3..719aa2e 100644
--- a/meta/recipes-extended/tzdata/tzdata_2013h.bb
+++ b/meta/recipes-extended/tzdata/tzdata_2013i.bb
@@ -15,15 +15,15 @@ RCONFLICTS_${PN} = "timezones timezone-africa timezone-america timezone-antarcti
 
 SRC_URI = "ftp://ftp.iana.org/tz/releases/tzdata${PV}.tar.gz;name=tzdata"
 
-SRC_URI[tzdata.md5sum] = "d310abe42cbe87e76ceb69e2c7003c92"
-SRC_URI[tzdata.sha256sum] = "6b9e17e823eec0e09e12f74b452a70be4face1ef14c2fb1917b7c7e60564de27"
+SRC_URI[tzdata.md5sum] = "8bc69eb75bea496ebe1d5a9ab576702d"
+SRC_URI[tzdata.sha256sum] = "1cd56a6ee964143ef0c65229968a5093988335b95e9115235b5e7b7e45e67dda"
 
 S = "${WORKDIR}"
 
 DEFAULT_TIMEZONE ?= "Universal"
 
 TZONES= "africa antarctica asia australasia europe northamerica southamerica  \
-         factory solar87 solar88 solar89 etcetera backward systemv \
+         factory etcetera backward systemv \
         "
 # pacificnew 
 
-- 
1.8.3.1



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

* [PATCH 4/4] tzcode: Update to 2013i
  2013-12-24  0:29 [PATCH 0/4] Configure options clean up and 2 updates Saul Wold
                   ` (2 preceding siblings ...)
  2013-12-24  0:29 ` [PATCH 3/4] tzdata: Update to 2013i Saul Wold
@ 2013-12-24  0:29 ` Saul Wold
  3 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2013-12-24  0:29 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../tzcode/{tzcode-native_2013h.bb => tzcode-native_2013i.bb}  | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
 rename meta/recipes-extended/tzcode/{tzcode-native_2013h.bb => tzcode-native_2013i.bb} (59%)

diff --git a/meta/recipes-extended/tzcode/tzcode-native_2013h.bb b/meta/recipes-extended/tzcode/tzcode-native_2013i.bb
similarity index 59%
rename from meta/recipes-extended/tzcode/tzcode-native_2013h.bb
rename to meta/recipes-extended/tzcode/tzcode-native_2013i.bb
index 5cdc7ef..d883fda 100644
--- a/meta/recipes-extended/tzcode/tzcode-native_2013h.bb
+++ b/meta/recipes-extended/tzcode/tzcode-native_2013i.bb
@@ -6,13 +6,13 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/README;md5=0b7570113550eb5d30aa4bd220964b8
 # note that we allow for us to use data later than our code version
 #
 SRC_URI =" ftp://ftp.iana.org/tz/releases/tzcode${PV}.tar.gz;name=tzcode \
-           ftp://ftp.iana.org/tz/releases/tzdata2013h.tar.gz;name=tzdata"
+           ftp://ftp.iana.org/tz/releases/tzdata2013i.tar.gz;name=tzdata"
 
-SRC_URI[tzdata.md5sum] = "d310abe42cbe87e76ceb69e2c7003c92"
-SRC_URI[tzdata.sha256sum] = "6b9e17e823eec0e09e12f74b452a70be4face1ef14c2fb1917b7c7e60564de27"
+SRC_URI[tzcode.md5sum] = "86154c8b0cfb47f4e2027ecaa2ec547a"
+SRC_URI[tzcode.sha256sum] = "63bba6790afc1cb2ea0af2b998a35fc237e247608140dbe4e08b4216a8c31358"
 
-SRC_URI[tzcode.md5sum] = "14250703b253e1cfdf97f1e928541508"
-SRC_URI[tzcode.sha256sum] = "e14addfc4e0da3cf17ccc1c08cb8094a2a0d3ae9524f565b74e6373c9b83ca0e"
+SRC_URI[tzdata.md5sum] = "8bc69eb75bea496ebe1d5a9ab576702d"
+SRC_URI[tzdata.sha256sum] = "1cd56a6ee964143ef0c65229968a5093988335b95e9115235b5e7b7e45e67dda"
 
 S = "${WORKDIR}"
 
-- 
1.8.3.1



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

end of thread, other threads:[~2013-12-24  0:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-24  0:29 [PATCH 0/4] Configure options clean up and 2 updates Saul Wold
2013-12-24  0:29 ` [PATCH 1/4] sqlite: remove unrecognised options: --enable-tempstore Saul Wold
2013-12-24  0:29 ` [PATCH 2/4] python: fix unrecognised options: --without-cxx --with-cyclic-gc Saul Wold
2013-12-24  0:29 ` [PATCH 3/4] tzdata: Update to 2013i Saul Wold
2013-12-24  0:29 ` [PATCH 4/4] tzcode: " Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox