unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* sqlite upgrade to 3.8.2
@ 2014-01-22 13:41 Sree Harsha Totakura
  2014-01-22 16:43 ` Mark H Weaver
  0 siblings, 1 reply; 5+ messages in thread
From: Sree Harsha Totakura @ 2014-01-22 13:41 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 90 bytes --]

Hi,

The attached patch upgrades Sqlite to 3.8.2.  Please commit it to master.

Sree

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-sqlite-Upgrade-to-3.8.2.patch --]
[-- Type: text/x-patch; name="0001-gnu-sqlite-Upgrade-to-3.8.2.patch", Size: 1406 bytes --]

From 848d90f4b02cd16417e6488ef9dcbec352e9c2f2 Mon Sep 17 00:00:00 2001
From: Sree Harsha Totakura <sreeharsha@totakura.in>
Date: Wed, 22 Jan 2014 14:34:42 +0100
Subject: [PATCH] gnu: sqlite: Upgrade to 3.8.2


Signed-off-by: Sree Harsha Totakura <sreeharsha@totakura.in>
---
 gnu/packages/sqlite.scm |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/sqlite.scm b/gnu/packages/sqlite.scm
index ae083cd..f688e13 100644
--- a/gnu/packages/sqlite.scm
+++ b/gnu/packages/sqlite.scm
@@ -26,7 +26,7 @@
 (define-public sqlite
   (package
    (name "sqlite")
-   (version "3.7.15.2")
+   (version "3.8.2")
    (source (origin
             (method url-fetch)
             ;; TODO: Download from sqlite.org once this bug :
@@ -34,10 +34,10 @@
             ;; has been fixed.
             (uri (string-append
                   "mirror://sourceforge/sqlite.mirror/SQLite%20"
-                  version "/sqlite-autoconf-3071502.tar.gz"))
+                  version "/sqlite-autoconf-3080200.tar.gz"))
             (sha256
              (base32
-              "135s6r5z12q56brywpxnraqbqm7bdkxs76v7dygqgjpnjyvicbbq"))))
+              "14pg9zlwbwsj5w7f3qr25d3nniyv82gmczwlvpj0i0ic1431v1d0"))))
    (build-system gnu-build-system)
    (home-page "http://www.sqlite.org/")
    (synopsis "The SQLite database management system")
-- 
1.7.10.4


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 259 bytes --]

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

* Re: sqlite upgrade to 3.8.2
  2014-01-22 13:41 sqlite upgrade to 3.8.2 Sree Harsha Totakura
@ 2014-01-22 16:43 ` Mark H Weaver
  2014-01-22 17:02   ` Sree Harsha Totakura
  0 siblings, 1 reply; 5+ messages in thread
From: Mark H Weaver @ 2014-01-22 16:43 UTC (permalink / raw)
  To: sreeharsha; +Cc: guix-devel

Hi,

Sree Harsha Totakura <sreeharsha@totakura.in> writes:
> From 848d90f4b02cd16417e6488ef9dcbec352e9c2f2 Mon Sep 17 00:00:00 2001
> From: Sree Harsha Totakura <sreeharsha@totakura.in>
> Date: Wed, 22 Jan 2014 14:34:42 +0100
> Subject: [PATCH] gnu: sqlite: Upgrade to 3.8.2
>
>
> Signed-off-by: Sree Harsha Totakura <sreeharsha@totakura.in>

We follow the GNU standard conventions for changelogs in our git commit
logs.  Here, the commit log should be something like:

--8<---------------cut here---------------start------------->8---
gnu: sqlite: Update to 3.8.2.

* gnu/packages/sqlite.scm (sqlite): Upgrade to 3.8.2.
--8<---------------cut here---------------end--------------->8---

It's a fine point, but we usually put periods '.' at the end of the
first line of the log.

     Thanks!
       Mark

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

* Re: sqlite upgrade to 3.8.2
  2014-01-22 16:43 ` Mark H Weaver
@ 2014-01-22 17:02   ` Sree Harsha Totakura
  2014-01-22 17:04     ` Cyril Roelandt
  2014-01-22 23:05     ` Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Sree Harsha Totakura @ 2014-01-22 17:02 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 215 bytes --]

Ok, thanks.  Attached the new patch with the suggested changes.

Sree

On 01/22/2014 05:43 PM, Mark H Weaver wrote:
> gnu: sqlite: Update to 3.8.2.
> 
> * gnu/packages/sqlite.scm (sqlite): Upgrade to 3.8.2.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-sqlite-Upgrade-to-3.8.2.patch --]
[-- Type: text/x-patch; name="0001-gnu-sqlite-Upgrade-to-3.8.2.patch", Size: 1462 bytes --]

From 16a77fe7ff74fd5062671d6fdb9eabba2bd89659 Mon Sep 17 00:00:00 2001
From: Sree Harsha Totakura <sreeharsha@totakura.in>
Date: Wed, 22 Jan 2014 18:00:09 +0100
Subject: [PATCH] gnu: sqlite: Upgrade to 3.8.2.

* gnu/packages/sqlite.scm (sqlite): Upgrade to 3.8.2.

Signed-off-by: Sree Harsha Totakura <sreeharsha@totakura.in>
---
 gnu/packages/sqlite.scm |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/sqlite.scm b/gnu/packages/sqlite.scm
index ae083cd..f688e13 100644
--- a/gnu/packages/sqlite.scm
+++ b/gnu/packages/sqlite.scm
@@ -26,7 +26,7 @@
 (define-public sqlite
   (package
    (name "sqlite")
-   (version "3.7.15.2")
+   (version "3.8.2")
    (source (origin
             (method url-fetch)
             ;; TODO: Download from sqlite.org once this bug :
@@ -34,10 +34,10 @@
             ;; has been fixed.
             (uri (string-append
                   "mirror://sourceforge/sqlite.mirror/SQLite%20"
-                  version "/sqlite-autoconf-3071502.tar.gz"))
+                  version "/sqlite-autoconf-3080200.tar.gz"))
             (sha256
              (base32
-              "135s6r5z12q56brywpxnraqbqm7bdkxs76v7dygqgjpnjyvicbbq"))))
+              "14pg9zlwbwsj5w7f3qr25d3nniyv82gmczwlvpj0i0ic1431v1d0"))))
    (build-system gnu-build-system)
    (home-page "http://www.sqlite.org/")
    (synopsis "The SQLite database management system")
-- 
1.7.10.4


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 259 bytes --]

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

* Re: sqlite upgrade to 3.8.2
  2014-01-22 17:02   ` Sree Harsha Totakura
@ 2014-01-22 17:04     ` Cyril Roelandt
  2014-01-22 23:05     ` Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Cyril Roelandt @ 2014-01-22 17:04 UTC (permalink / raw)
  To: guix-devel

The patch looks good.

On 01/22/2014 06:02 PM, Sree Harsha Totakura wrote:
> -                  version "/sqlite-autoconf-3071502.tar.gz"))
> +                  version "/sqlite-autoconf-3080200.tar.gz"))

It would be nice to be able to generate this version number automagically :)

Cyril.

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

* Re: sqlite upgrade to 3.8.2
  2014-01-22 17:02   ` Sree Harsha Totakura
  2014-01-22 17:04     ` Cyril Roelandt
@ 2014-01-22 23:05     ` Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2014-01-22 23:05 UTC (permalink / raw)
  To: Sree Harsha Totakura; +Cc: guix-devel

Sree Harsha Totakura <sreeharsha@totakura.in> skribis:

> From 16a77fe7ff74fd5062671d6fdb9eabba2bd89659 Mon Sep 17 00:00:00 2001
> From: Sree Harsha Totakura <sreeharsha@totakura.in>
> Date: Wed, 22 Jan 2014 18:00:09 +0100
> Subject: [PATCH] gnu: sqlite: Upgrade to 3.8.2.
>
> * gnu/packages/sqlite.scm (sqlite): Upgrade to 3.8.2.

Pushed, thanks!

Ludo’.

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

end of thread, other threads:[~2014-01-22 23:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-22 13:41 sqlite upgrade to 3.8.2 Sree Harsha Totakura
2014-01-22 16:43 ` Mark H Weaver
2014-01-22 17:02   ` Sree Harsha Totakura
2014-01-22 17:04     ` Cyril Roelandt
2014-01-22 23:05     ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).