[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emacs-closql: Update to 1.0.4.
From: |
guix-commits |
Subject: |
branch master updated: gnu: emacs-closql: Update to 1.0.4. |
Date: |
Thu, 26 Nov 2020 04:16:18 -0500 |
This is an automated email from the git hooks/post-receive script.
jlicht pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 3a0cb77 gnu: emacs-closql: Update to 1.0.4.
3a0cb77 is described below
commit 3a0cb77df6532b85ea5d9e149ecfc3a7540b0620
Author: Jelle Licht <jlicht@fsfe.org>
AuthorDate: Thu Nov 26 10:08:54 2020 +0100
gnu: emacs-closql: Update to 1.0.4.
* gnu/packages/emacs-xyz.scm (emacs-closql): Update to 1.0.4.
---
gnu/packages/emacs-xyz.scm | 44 +++++++++++++++++++++-----------------------
1 file changed, 21 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 907ff20..6865346 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -14540,33 +14540,31 @@ official @command{sqlite3} executable to access SQL
database.")
(license license:gpl3+)))
(define-public emacs-closql
- ;; Take a commit newer than 1.0.0 release because of Emacs upgrade to 26.3.
- (let ((commit "70b98dbae53611d10a461d9b4a6f71086910dcef"))
- (package
- (name "emacs-closql")
- (version (git-version "1.0.0" "1" commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/emacscollective/closql")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1wvhrihg663f61yzc7f0vha2abjdnlwbk0gjcwakdfk1bhwf5ikh"))))
- (build-system emacs-build-system)
- (propagated-inputs
- `(("emacs-emacsql" ,emacs-emacsql)))
- (home-page "https://github.com/emacscollective/closql")
- (synopsis "Store EIEIO objects using EmacSQL")
- (description
- "This package stores uniform EIEIO objects in an EmacSQL
+ (package
+ (name "emacs-closql")
+ (version "1.0.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emacscollective/closql")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "06j0sc6dx8f34wc8i7dzkp8jwvwnrpnl8i93vpc1qw0ih0jwa2zh"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-emacsql" ,emacs-emacsql)))
+ (home-page "https://github.com/emacscollective/closql")
+ (synopsis "Store EIEIO objects using EmacSQL")
+ (description
+ "This package stores uniform EIEIO objects in an EmacSQL
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
objects. All objects have to share a common superclass and subclasses cannot
add any additional instance slots.")
- (license license:gpl3))))
+ (license license:gpl3)))
(define-public emacs-epkg
(package
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emacs-closql: Update to 1.0.4.,
guix-commits <=