mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
gnu: bdb: Do not inherit from bdb-4.8.
* gnu/packages/dbm.scm (bdb): Copy-paste all fields from bdb-4.8. [inherit]: Remove field. [source]: Do not inherit. Change-Id: I4b231218e30da5f651e59eb4a80e9efccca37402
This commit is contained in:
@@ -251,20 +251,23 @@ SQL, Key/Value, XML/XQuery or Java Object storage for their data model.")
|
|||||||
"See LICENSE in the distribution."))))
|
"See LICENSE in the distribution."))))
|
||||||
|
|
||||||
(define-public bdb-6
|
(define-public bdb-6
|
||||||
(package (inherit bdb-4.8)
|
(package
|
||||||
(name "bdb")
|
(name "bdb")
|
||||||
(version "6.2.32")
|
(version "6.2.32")
|
||||||
(source (origin
|
(source (origin
|
||||||
(inherit (package-source bdb-4.8))
|
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://download.oracle.com/berkeley-db/db-"
|
(uri (string-append "https://download.oracle.com/berkeley-db/db-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1yx8wzhch5wwh016nh0kfxvknjkafv6ybkqh6nh7lxx50jqf5id9"))
|
"1yx8wzhch5wwh016nh0kfxvknjkafv6ybkqh6nh7lxx50jqf5id9"))
|
||||||
(patches '())))
|
(modules '((guix build utils)
|
||||||
;; Copy-paste the arguments from bdb-4.8 and drop the
|
(srfi srfi-1)))
|
||||||
|
(snippet bdb-snippet)))
|
||||||
|
;; Copy-paste the arguments from bdb-5.3 and drop the
|
||||||
;; 'bdb-configure patch phase.
|
;; 'bdb-configure patch phase.
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(arguments
|
(arguments
|
||||||
(list #:tests? #f ; no check target available
|
(list #:tests? #f ; no check target available
|
||||||
#:disallowed-references '("doc")
|
#:disallowed-references '("doc")
|
||||||
@@ -317,6 +320,13 @@ SQL, Key/Value, XML/XQuery or Java Object storage for their data model.")
|
|||||||
(("rm (.*) configure") "")
|
(("rm (.*) configure") "")
|
||||||
(("chmod (.*) config.guess(.*)$") ""))
|
(("chmod (.*) config.guess(.*)$") ""))
|
||||||
(invoke "sh" "s_config"))))))
|
(invoke "sh" "s_config"))))))
|
||||||
|
(native-inputs (list autoconf automake-1.16.5 libtool))
|
||||||
|
(synopsis "Berkeley database")
|
||||||
|
(description
|
||||||
|
"Berkeley DB is an embeddable database allowing developers the choice of
|
||||||
|
SQL, Key/Value, XML/XQuery or Java Object storage for their data model.")
|
||||||
|
(home-page
|
||||||
|
"http://www.oracle.com/us/products/database/berkeley-db/overview/index.html")
|
||||||
;; Starting with version 6, BDB is distributed under AGPL3. Many individual
|
;; Starting with version 6, BDB is distributed under AGPL3. Many individual
|
||||||
;; files are covered by the 3-clause BSD license.
|
;; files are covered by the 3-clause BSD license.
|
||||||
(license (list license:agpl3+ license:bsd-3))))
|
(license (list license:agpl3+ license:bsd-3))))
|
||||||
|
|||||||
Reference in New Issue
Block a user