branch: elpa/emacsql commit 97ccd7d9e6a30a1ad6e7d67ac1ec9cca02ea24db Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Update library commentaries of package libraries Some of these commentaries didn't take into account that these libraries are no longer included in the `emacsql' package, but are distributed as a separate packages. --- emacsql-mysql.el | 3 ++- emacsql-pg.el | 14 ++++---------- emacsql-psql.el | 6 +++--- emacsql-sqlite.el | 6 ++++-- 4 files changed, 13 insertions(+), 16 deletions(-) diff --git a/emacsql-mysql.el b/emacsql-mysql.el index 1256728aa9..4bc335931b 100644 --- a/emacsql-mysql.el +++ b/emacsql-mysql.el @@ -11,7 +11,8 @@ ;;; Commentary: -;; This backend uses the standard "mysql" command line program. +;; This package provides an EmacSQL back-end for MySQL, which uses +;; the standard `msql' command line program. ;;; Code: diff --git a/emacsql-pg.el b/emacsql-pg.el index 87ecca1028..3171f5bd1c 100644 --- a/emacsql-pg.el +++ b/emacsql-pg.el @@ -1,4 +1,4 @@ -;;; emacsql-pg.el --- Emacsql back-end for PostgreSQL via pg -*- lexical-binding:t -*- +;;; emacsql-pg.el --- EmacSQL back-end for PostgreSQL via pg -*- lexical-binding:t -*- ;; This is free and unencumbered software released into the public domain. @@ -11,16 +11,10 @@ ;;; Commentary: -;; Unlike emacsql-psql, this connection type uses Eric Marsden's pg.el -;; to connect to PostgreSQL. It speaks directly to the database, so -;; unlike the other EmacSQL connection types, this one requires no -;; external command line programs. +;; This package provides an EmacSQL back-end for PostgreSQL, which +;; uses the `pg' package to directly speak to the database. -;; The only pg functions required are pg:connect, pg:disconnect, -;; pg:exec, and pg:result. Unfortunately, since pg.el is synchronous -;; it will not be fully compliant once EmacSQL supports asynchronous -;; queries. But, on the plus side, this means the implementation below -;; is dead simple. +;; (For an alternative back-end for PostgreSQL, see `emacsql-psql'.) ;;; Code: diff --git a/emacsql-psql.el b/emacsql-psql.el index 191b519dd8..e544d7e28a 100644 --- a/emacsql-psql.el +++ b/emacsql-psql.el @@ -11,10 +11,10 @@ ;;; Commentary: -;; This backend uses the standard "psql" command line program. +;; This package provides an EmacSQL back-end for PostgreSQL, which +;; uses the standard `psql' command line program. -;; This package also includes the emacsql-pg backend, which is written -;; in in pure Emacs Lisp and requires no command line program. +;; (For an alternative back-end for PostgreSQL, see `emacsql-pg'.) ;;; Code: diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el index 4fde7f4aa9..ff660a74e0 100644 --- a/emacsql-sqlite.el +++ b/emacsql-sqlite.el @@ -11,8 +11,10 @@ ;;; Commentary: -;; During package installation EmacSQL will attempt to compile a -;; custom native binary for communicating with a SQLite database. +;; This package provides the original EmacSQL back-end for SQLite, +;; which uses a custom binary for communicating with a SQLite database. + +;; During package installation an attempt is made to compile the binary. ;;; Code: