gnu: emacs-pg: Update to 0.16.

* gnu/packages/emacs-xyz.scm (emacs-pg): Update to 0.16.
[source]<origin>: Change upstream repository, the older one being
unmaintained.
[home-page]: Update accordingly.
[description]: Expound it.
[license]: Set to GPL2+.
This commit is contained in:
Nicolas Goaziou 2022-09-30 08:28:43 +02:00
parent a70c67cfe7
commit 575da30495
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -19056,24 +19056,27 @@ (define-public emacs-evil-anzu
(license license:gpl3+)))
(define-public emacs-pg
(let ((commit "4f6516ec3946d95dcef49abb6703cc89ecb5183d"))
(package
(name "emacs-pg")
(version (git-version "0.1" "1" commit))
(source (origin
(method git-fetch)
(uri (git-reference (url "https://github.com/cbbrowne/pg.el")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"))))
(build-system emacs-build-system)
(home-page "https://github.com/cbbrowne/pg.el")
(synopsis "Emacs Lisp interface for PostgreSQL")
(description
"This package provides an Emacs Lisp interface for PostgreSQL.")
(license license:gpl3+))))
(package
(name "emacs-pg")
(version "0.16")
(source (origin
(method git-fetch)
(uri (git-reference (url "https://github.com/emarsden/pg-el")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1jdnslpgdm16klaga02p33g7c8bjzg164kxz3jd7gs5v9gqa6ppz"))))
(build-system emacs-build-system)
(home-page "https://github.com/emarsden/pg-el")
(synopsis "Emacs Lisp interface for PostgreSQL")
(description
"This module lets you access the PostgreSQL object-relational DBMS from
Emacs, using its socket-level frontend/backend protocol. The module is
capable of automatic type coercions from a range of SQL types to the
equivalent Emacs Lisp type. This is a low level API, and won't be useful to
end users.")
(license license:gpl2+)))
(define-public emacs-finalize
(package