guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

15/15: gnu: SQLite: Absorb grafted replacement.


From: guix-commits
Subject: 15/15: gnu: SQLite: Absorb grafted replacement.
Date: Mon, 17 May 2021 15:09:58 -0400 (EDT)

lfam pushed a commit to branch wip-ungrafting
in repository guix.

commit 4305ffba113668aacb49cc9775f1a133dad47e76
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Mon May 17 11:57:07 2021 -0400

    gnu: SQLite: Absorb grafted replacement.
    
    * gnu/packages/sqlite.scm (sqlite): Update to 3.32.3.
    [replacement]: Remove field.
    (sqlite/fixed): Remove variable.
---
 gnu/packages/sqlite.scm | 26 ++------------------------
 1 file changed, 2 insertions(+), 24 deletions(-)

diff --git a/gnu/packages/sqlite.scm b/gnu/packages/sqlite.scm
index a48d724..8b68ec6 100644
--- a/gnu/packages/sqlite.scm
+++ b/gnu/packages/sqlite.scm
@@ -48,7 +48,7 @@
 (define-public sqlite
   (package
    (name "sqlite")
-   (version "3.31.1")
+   (version "3.32.3")
    (source (origin
             (method url-fetch)
             (uri (let ((numeric-version
@@ -64,8 +64,7 @@
                                   numeric-version ".tar.gz")))
             (sha256
              (base32
-              "1bj936svd8i5g25xd1bj52hj4zca01fgl3sqkj86z9q5pkz4wa32"))))
-   (replacement sqlite/fixed)
+              "0rlbaq177gcgk5dswd3akbhv2nvvzljrbhgy18hklbhw7h90f5d3"))))
    (build-system gnu-build-system)
    (inputs `(("readline" ,readline)))
    (native-inputs (if (hurd-target?)
@@ -123,27 +122,6 @@ widely deployed SQL database engine in the world.  The 
source code for SQLite
 is in the public domain.")
    (license license:public-domain)))
 
-(define-public sqlite/fixed
-  (package
-    (inherit sqlite)
-    (version "3.32.3")
-    (source (origin
-              (method url-fetch)
-              (uri (let ((numeric-version
-                          (match (string-split version #\.)
-                            ((first-digit other-digits ...)
-                             (string-append first-digit
-                                            (string-pad-right
-                                             (string-concatenate
-                                              (map (cut string-pad <> 2 #\0)
-                                                   other-digits))
-                                             6 #\0))))))
-                     (string-append "https://sqlite.org/2020/sqlite-autoconf-";
-                                    numeric-version ".tar.gz")))
-              (sha256
-               (base32
-                "0rlbaq177gcgk5dswd3akbhv2nvvzljrbhgy18hklbhw7h90f5d3"))))))
-
 ;; Column metadata support was added to the regular 'sqlite' package with
 ;; commit fad5b1a6d8d9c36bea5785ae4fbc1beb37e644d7.
 (define-public sqlite-with-column-metadata



reply via email to

[Prev in Thread] Current Thread [Next in Thread]