All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Upgrade sqlite to 3.9.0
@ 2015-10-16  6:28 kai.kang
  2015-10-16  6:28 ` [PATCH 1/1] sqlite: 3.8.10.2 -> 3.9.0 kai.kang
  2015-10-29  9:17 ` [PATCH 0/1] Upgrade sqlite to 3.9.0 Kang Kai
  0 siblings, 2 replies; 7+ messages in thread
From: kai.kang @ 2015-10-16  6:28 UTC (permalink / raw)
  To: openembedded-core

From: Kai Kang <kai.kang@windriver.com>

The following changes since commit e35c404537db0b46047fcb2ee7d3645e3e0935c5:

  bitbake: toaster: Don't descend into directories for cached_layers (2015-10-11 08:12:58 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib kangkai/sqlite3
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kangkai/sqlite3

Kai Kang (1):
  sqlite: 3.8.10.2 -> 3.9.0

 .../files/0001-using-the-dynamic-library.patch     | 30 ----------------------
 .../{sqlite3_3.8.10.2.bb => sqlite3_3.9.0.bb}      | 10 ++++----
 2 files changed, 5 insertions(+), 35 deletions(-)
 delete mode 100644 meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch
 rename meta/recipes-support/sqlite/{sqlite3_3.8.10.2.bb => sqlite3_3.9.0.bb} (72%)

-- 
2.6.1



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

* [PATCH 1/1] sqlite: 3.8.10.2 -> 3.9.0
  2015-10-16  6:28 [PATCH 0/1] Upgrade sqlite to 3.9.0 kai.kang
@ 2015-10-16  6:28 ` kai.kang
  2015-10-29  9:17 ` [PATCH 0/1] Upgrade sqlite to 3.9.0 Kang Kai
  1 sibling, 0 replies; 7+ messages in thread
From: kai.kang @ 2015-10-16  6:28 UTC (permalink / raw)
  To: openembedded-core

From: Kai Kang <kai.kang@windriver.com>

Upgrade sqlite from 3.8.10.2 to 3.9.0.

* update python function to get right SRC_URI
* drop 0001-using-the-dynamic-library.patch which use dynamic library
  that it is done that way in new version

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 .../files/0001-using-the-dynamic-library.patch     | 30 ----------------------
 .../{sqlite3_3.8.10.2.bb => sqlite3_3.9.0.bb}      | 10 ++++----
 2 files changed, 5 insertions(+), 35 deletions(-)
 delete mode 100644 meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch
 rename meta/recipes-support/sqlite/{sqlite3_3.8.10.2.bb => sqlite3_3.9.0.bb} (72%)

diff --git a/meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch b/meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch
deleted file mode 100644
index e3bfd5f..0000000
--- a/meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-[PATCH] using the dynamic library
-
-Upstream-Status:  Inappropriate [configuration]
-
-building statically-linked sqlite3 failed since sqlite3.o is generated in 
-different dir, even if link successes, the size of sqlite3 is become larger,
-so use the dynamic link, ref: http://patchwork.openembedded.org/patch/93293/
-
-Signed-off-by: Roy Li <rongqing.li@windriver.com>
----
- Makefile.am | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index 88bc23d..fe50f20 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -7,7 +7,8 @@ libsqlite3_la_LDFLAGS = -no-undefined -version-info 8:6:8
- 
- bin_PROGRAMS = sqlite3
- sqlite3_SOURCES = shell.c sqlite3.h
--sqlite3_LDADD = sqlite3.$(OBJEXT) @READLINE_LIBS@
-+sqlite3_LDADD = @READLINE_LIBS@ libsqlite3.la
-+
- 
- include_HEADERS = sqlite3.h sqlite3ext.h
- 
--- 
-1.9.1
-
diff --git a/meta/recipes-support/sqlite/sqlite3_3.8.10.2.bb b/meta/recipes-support/sqlite/sqlite3_3.9.0.bb
similarity index 72%
rename from meta/recipes-support/sqlite/sqlite3_3.8.10.2.bb
rename to meta/recipes-support/sqlite/sqlite3_3.9.0.bb
index c72ad50..50531ba 100644
--- a/meta/recipes-support/sqlite/sqlite3_3.8.10.2.bb
+++ b/meta/recipes-support/sqlite/sqlite3_3.9.0.bb
@@ -4,16 +4,16 @@ LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b357
 
 def sqlite_download_version(d):
     pvsplit = d.getVar('PV', True).split('.')
+    if len(pvsplit) < 4:
+        pvsplit.append('0')
     return pvsplit[0] + ''.join([part.rjust(2,'0') for part in pvsplit[1:]])
 
 PE = "3"
 SQLITE_PV = "${@sqlite_download_version(d)}"
-SRC_URI = "http://www.sqlite.org/2015/sqlite-autoconf-${SQLITE_PV}.tar.gz \
-           file://0001-using-the-dynamic-library.patch \
-"
+SRC_URI = "http://www.sqlite.org/2015/sqlite-autoconf-${SQLITE_PV}.tar.gz"
 
-SRC_URI[md5sum] = "a18bfc015cd49a1e7a961b7b77bc3b37"
-SRC_URI[sha256sum] = "8382e55a4e7d853c93038562ca3dd00307937fccf1c6b65ddd813e503a56d626"
+SRC_URI[md5sum] = "cd0f883b2ddfc29e8e1bbbbd8e85f555"
+SRC_URI[sha256sum] = "a324143f4cc35cd7e9605a0a8dec9f9e4861d0be8305f3642e7d05008b77e60d"
 
 S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}"
 
-- 
2.6.1



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

* Re: [PATCH 0/1] Upgrade sqlite to 3.9.0
  2015-10-16  6:28 [PATCH 0/1] Upgrade sqlite to 3.9.0 kai.kang
  2015-10-16  6:28 ` [PATCH 1/1] sqlite: 3.8.10.2 -> 3.9.0 kai.kang
@ 2015-10-29  9:17 ` Kang Kai
  2015-11-02 12:16   ` Burton, Ross
  1 sibling, 1 reply; 7+ messages in thread
From: Kang Kai @ 2015-10-29  9:17 UTC (permalink / raw)
  To: openembedded-core

On 2015年10月16日 14:28, kai.kang@windriver.com wrote:
> From: Kai Kang <kai.kang@windriver.com>
>
> The following changes since commit e35c404537db0b46047fcb2ee7d3645e3e0935c5:
>
>    bitbake: toaster: Don't descend into directories for cached_layers (2015-10-11 08:12:58 +0100)
>
> are available in the git repository at:
>
>    git://git.yoctoproject.org/poky-contrib kangkai/sqlite3
>    http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kangkai/sqlite3
>
> Kai Kang (1):
>    sqlite: 3.8.10.2 -> 3.9.0

Ping.


>
>   .../files/0001-using-the-dynamic-library.patch     | 30 ----------------------
>   .../{sqlite3_3.8.10.2.bb => sqlite3_3.9.0.bb}      | 10 ++++----
>   2 files changed, 5 insertions(+), 35 deletions(-)
>   delete mode 100644 meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch
>   rename meta/recipes-support/sqlite/{sqlite3_3.8.10.2.bb => sqlite3_3.9.0.bb} (72%)
>


-- 
Regards,
Neil | Kai Kang



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

* Re: [PATCH 0/1] Upgrade sqlite to 3.9.0
  2015-10-29  9:17 ` [PATCH 0/1] Upgrade sqlite to 3.9.0 Kang Kai
@ 2015-11-02 12:16   ` Burton, Ross
  2015-11-02 18:52     ` Andre McCurdy
  2015-11-03  3:48     ` Kang Kai
  0 siblings, 2 replies; 7+ messages in thread
From: Burton, Ross @ 2015-11-02 12:16 UTC (permalink / raw)
  To: Kang Kai; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 317 bytes --]

On 29 October 2015 at 09:17, Kang Kai <Kai.Kang@windriver.com> wrote:

> Kai Kang (1):
>>    sqlite: 3.8.10.2 -> 3.9.0
>>
>
> Ping.
>

As Stephen's weekly status mails show, we're frozen whilst 2.0 is being
prepared.  This patch has been merged into my staging branch (ross/mut) for
when we thaw.

Ross

[-- Attachment #2: Type: text/html, Size: 800 bytes --]

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

* Re: [PATCH 0/1] Upgrade sqlite to 3.9.0
  2015-11-02 12:16   ` Burton, Ross
@ 2015-11-02 18:52     ` Andre McCurdy
  2015-11-02 19:33       ` Burton, Ross
  2015-11-03  3:48     ` Kang Kai
  1 sibling, 1 reply; 7+ messages in thread
From: Andre McCurdy @ 2015-11-02 18:52 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core

On Mon, Nov 2, 2015 at 4:16 AM, Burton, Ross <ross.burton@intel.com> wrote:
>
> On 29 October 2015 at 09:17, Kang Kai <Kai.Kang@windriver.com> wrote:
>>>
>>> Kai Kang (1):
>>>    sqlite: 3.8.10.2 -> 3.9.0
>>
>>
>> Ping.
>
> As Stephen's weekly status mails show, we're frozen whilst 2.0 is being
> prepared.  This patch has been merged into my staging branch (ross/mut) for
> when we thaw.

Hi Ross,

Is there a ross/mut branch of oe-core somewhere? Or only poky?

> Ross
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>


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

* Re: [PATCH 0/1] Upgrade sqlite to 3.9.0
  2015-11-02 18:52     ` Andre McCurdy
@ 2015-11-02 19:33       ` Burton, Ross
  0 siblings, 0 replies; 7+ messages in thread
From: Burton, Ross @ 2015-11-02 19:33 UTC (permalink / raw)
  To: Andre McCurdy; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 244 bytes --]

On 2 November 2015 at 18:52, Andre McCurdy <armccurdy@gmail.com> wrote:

> Is there a ross/mut branch of oe-core somewhere? Or only poky?
>

Sorry, it's branched from poky for testing purposes and convenience on the
autobuilder.

Ross

[-- Attachment #2: Type: text/html, Size: 653 bytes --]

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

* Re: [PATCH 0/1] Upgrade sqlite to 3.9.0
  2015-11-02 12:16   ` Burton, Ross
  2015-11-02 18:52     ` Andre McCurdy
@ 2015-11-03  3:48     ` Kang Kai
  1 sibling, 0 replies; 7+ messages in thread
From: Kang Kai @ 2015-11-03  3:48 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 493 bytes --]

On 2015年11月02日 20:16, Burton, Ross wrote:
>
> On 29 October 2015 at 09:17, Kang Kai <Kai.Kang@windriver.com 
> <mailto:Kai.Kang@windriver.com>> wrote:
>
>         Kai Kang (1):
>            sqlite: 3.8.10.2 -> 3.9.0
>
>
>     Ping.
>
>
> As Stephen's weekly status mails show, we're frozen whilst 2.0 is 
> being prepared.  This patch has been merged into my staging branch 
> (ross/mut) for when we thaw.
>
> Ross

Got it. Thanks.

-- 
Regards,
Neil | Kai Kang


[-- Attachment #2: Type: text/html, Size: 1737 bytes --]

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

end of thread, other threads:[~2015-11-03  3:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-16  6:28 [PATCH 0/1] Upgrade sqlite to 3.9.0 kai.kang
2015-10-16  6:28 ` [PATCH 1/1] sqlite: 3.8.10.2 -> 3.9.0 kai.kang
2015-10-29  9:17 ` [PATCH 0/1] Upgrade sqlite to 3.9.0 Kang Kai
2015-11-02 12:16   ` Burton, Ross
2015-11-02 18:52     ` Andre McCurdy
2015-11-02 19:33       ` Burton, Ross
2015-11-03  3:48     ` Kang Kai

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.