gnu: emacs-closql: Update to 1.0.0-1.70b98db.
* gnu/packages/emacs-xyz.scm (emacs-closql): Update to 1.0.0-1.70b98db.master
parent
2485f17256
commit
735a972eae
|
@ -11503,31 +11503,33 @@ object @code{nil} corresponds 1:1 with @code{NULL} in the database.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-closql
|
(define-public emacs-closql
|
||||||
(package
|
;; Take a commit newer than 1.0.0 release because of Emacs upgrade to 26.3.
|
||||||
(name "emacs-closql")
|
(let ((commit "70b98dbae53611d10a461d9b4a6f71086910dcef"))
|
||||||
(version "1.0.0")
|
(package
|
||||||
(source
|
(name "emacs-closql")
|
||||||
(origin
|
(version (git-version "1.0.0" "1" commit))
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
(url "https://github.com/emacscollective/closql.git")
|
(method git-fetch)
|
||||||
(commit (string-append "v" version))))
|
(uri (git-reference
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/emacscollective/closql.git")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"1xhpfjjkjqfc1k2rj77cscclz5r7gpvv3hi202x178vdcpipjwar"))))
|
(sha256
|
||||||
(build-system emacs-build-system)
|
(base32
|
||||||
(propagated-inputs
|
"1wvhrihg663f61yzc7f0vha2abjdnlwbk0gjcwakdfk1bhwf5ikh"))))
|
||||||
`(("emacs-emacsql" ,emacs-emacsql)))
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/emacscollective/closql")
|
(propagated-inputs
|
||||||
(synopsis "Store EIEIO objects using EmacSQL")
|
`(("emacs-emacsql" ,emacs-emacsql)))
|
||||||
(description
|
(home-page "https://github.com/emacscollective/closql")
|
||||||
"This package allows to store uniform EIEIO objects in an EmacSQL
|
(synopsis "Store EIEIO objects using EmacSQL")
|
||||||
|
(description
|
||||||
|
"This package allows to store uniform EIEIO objects in an EmacSQL
|
||||||
database. SQLite is used as backend. This library imposes some restrictions
|
database. SQLite is used as backend. This library imposes some restrictions
|
||||||
on what kind of objects can be stored; it isn't intended to store arbitrary
|
on what kind of objects can be stored; it isn't intended to store arbitrary
|
||||||
objects. All objects have to share a common superclass and subclasses cannot
|
objects. All objects have to share a common superclass and subclasses cannot
|
||||||
add any additional instance slots.")
|
add any additional instance slots.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3))))
|
||||||
|
|
||||||
(define-public emacs-epkg
|
(define-public emacs-epkg
|
||||||
;; The release version is to old for the current database scheme.
|
;; The release version is to old for the current database scheme.
|
||||||
|
|
Reference in New Issue