branch: elpa/emacsql commit 6622516e153d1f48a199b613367bbe8f6d7d43bf Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Update library headers --- emacsql-compiler.el | 7 ++++++- emacsql-mysql.el | 8 +++++--- emacsql-pg.el | 9 ++++++++- emacsql-psql.el | 8 +++++--- emacsql-sqlite.el | 8 +++++--- emacsql.el | 8 +++++--- tests/emacsql-compiler-tests.el | 2 +- tests/emacsql-external-tests.el | 4 +++- tests/emacsql-tests.el | 4 +++- 9 files changed, 41 insertions(+), 17 deletions(-) diff --git a/emacsql-compiler.el b/emacsql-compiler.el index ca7193a48d..68b58d65e5 100644 --- a/emacsql-compiler.el +++ b/emacsql-compiler.el @@ -1,7 +1,12 @@ -;;; emacsql-compile.el --- s-expression SQL compiler -*- lexical-binding: t; -*- +;;; emacsql-compile.el --- S-expression SQL compiler -*- lexical-binding:t -*- ;; This is free and unencumbered software released into the public domain. +;; Author: Christopher Wellons <well...@nullprogram.com> +;; Maintainer: Jonas Bernoulli <jo...@bernoul.li> +;; Homepage: https://github.com/magit/emacsql +;; SPDX-License-Identifier: Unlicense + ;;; Code: (require 'cl-lib) diff --git a/emacsql-mysql.el b/emacsql-mysql.el index 9d82d5f740..d587ef6b14 100644 --- a/emacsql-mysql.el +++ b/emacsql-mysql.el @@ -1,11 +1,13 @@ -;;; emacsql-mysql.el --- EmacSQL back-end for MySQL -*- lexical-binding: t; -*- +;;; emacsql-mysql.el --- EmacSQL back-end for MySQL -*- lexical-binding:t -*- ;; This is free and unencumbered software released into the public domain. ;; Author: Christopher Wellons <well...@nullprogram.com> -;; URL: https://github.com/skeeto/emacsql -;; Version: 1.0.0 +;; Maintainer: Jonas Bernoulli <jo...@bernoul.li> +;; Homepage: https://github.com/magit/emacsql +;; Version: 3.0.0-git ;; Package-Requires: ((emacs "25.1") (emacsql "2.0.0")) +;; SPDX-License-Identifier: Unlicense ;;; Commentary: diff --git a/emacsql-pg.el b/emacsql-pg.el index 812df093ad..55a1421d0a 100644 --- a/emacsql-pg.el +++ b/emacsql-pg.el @@ -1,7 +1,14 @@ -;;; emacsql-pg.el --- 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. +;; Author: Christopher Wellons <well...@nullprogram.com> +;; Maintainer: Jonas Bernoulli <jo...@bernoul.li> +;; Homepage: https://github.com/magit/emacsql +;; Version: 3.0.0-git +;; Package-Requires: ((emacs "25.1") (emacsql "2.0.0") (pg "0")) +;; SPDX-License-Identifier: Unlicense + ;;; Commentary: ;; Unlike emacsql-psql, this connection type uses Eric Marsden's pg.el diff --git a/emacsql-psql.el b/emacsql-psql.el index f0317ec553..191b519dd8 100644 --- a/emacsql-psql.el +++ b/emacsql-psql.el @@ -1,11 +1,13 @@ -;;; emacsql-psql.el --- EmacSQL back-end for PostgreSQL via psql -*- lexical-binding: t; -*- +;;; emacsql-psql.el --- EmacSQL back-end for PostgreSQL via psql -*- lexical-binding:t -*- ;; This is free and unencumbered software released into the public domain. ;; Author: Christopher Wellons <well...@nullprogram.com> -;; URL: https://github.com/skeeto/emacsql -;; Version: 1.0.0 +;; Maintainer: Jonas Bernoulli <jo...@bernoul.li> +;; Homepage: https://github.com/magit/emacsql +;; Version: 3.0.0-git ;; Package-Requires: ((emacs "25.1") (emacsql "2.0.0")) +;; SPDX-License-Identifier: Unlicense ;;; Commentary: diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el index 5e94d600d5..4fde7f4aa9 100644 --- a/emacsql-sqlite.el +++ b/emacsql-sqlite.el @@ -1,11 +1,13 @@ -;;; emacsql-sqlite.el --- EmacSQL back-end for SQLite -*- lexical-binding: t; -*- +;;; emacsql-sqlite.el --- EmacSQL back-end for SQLite -*- lexical-binding:t -*- ;; This is free and unencumbered software released into the public domain. ;; Author: Christopher Wellons <well...@nullprogram.com> -;; URL: https://github.com/skeeto/emacsql -;; Version: 1.0.0 +;; Maintainer: Jonas Bernoulli <jo...@bernoul.li> +;; Homepage: https://github.com/magit/emacsql +;; Version: 3.0.0-git ;; Package-Requires: ((emacs "25.1") (emacsql "2.0.0")) +;; SPDX-License-Identifier: Unlicense ;;; Commentary: diff --git a/emacsql.el b/emacsql.el index bcbfd79259..5f180f0a10 100644 --- a/emacsql.el +++ b/emacsql.el @@ -1,11 +1,13 @@ -;;; emacsql.el --- high-level SQL database front-end -*- lexical-binding: t; -*- +;;; emacsql.el --- High-level SQL database front-end -*- lexical-binding:t -*- ;; This is free and unencumbered software released into the public domain. ;; Author: Christopher Wellons <well...@nullprogram.com> -;; URL: https://github.com/skeeto/emacsql -;; Version: 3.0.0 +;; Maintainer: Jonas Bernoulli <jo...@bernoul.li> +;; Homepage: https://github.com/magit/emacsql +;; Version: 3.0.0-git ;; Package-Requires: ((emacs "25.1")) +;; SPDX-License-Identifier: Unlicense ;;; Commentary: diff --git a/tests/emacsql-compiler-tests.el b/tests/emacsql-compiler-tests.el index 5c0bca1367..8a2d540b02 100644 --- a/tests/emacsql-compiler-tests.el +++ b/tests/emacsql-compiler-tests.el @@ -1,4 +1,4 @@ -;;; emacsql-tests.el --- tests for emacsql -*- lexical-binding: t; -*- +;;; emacsql-tests.el --- tests for emacsql -*- lexical-binding:t -*- ;; This is free and unencumbered software released into the public domain. diff --git a/tests/emacsql-external-tests.el b/tests/emacsql-external-tests.el index 3d3f3b36ff..781efc29fb 100644 --- a/tests/emacsql-external-tests.el +++ b/tests/emacsql-external-tests.el @@ -1,7 +1,9 @@ -;;; emacsql-external-tests.el --- subprocess tests -*- lexical-binding: t; -*- +;;; emacsql-external-tests.el --- subprocess tests -*- lexical-binding:t -*- ;; This is free and unencumbered software released into the public domain. +;;; Code: + (require 'cl-lib) (require 'ert) (require 'emacsql) diff --git a/tests/emacsql-tests.el b/tests/emacsql-tests.el index 90284d64f1..c6f2bc351c 100644 --- a/tests/emacsql-tests.el +++ b/tests/emacsql-tests.el @@ -1,7 +1,9 @@ -;;; emacsql-tests.el --- test suite for EmacSQL -*- lexical-binding: t; -*- +;;; emacsql-tests.el --- test suite for EmacSQL -*- lexical-binding:t -*- ;; This is free and unencumbered software released into the public domain. +;;; Code: + (require 'cl-lib) (require 'emacsql-compiler-tests) (require 'emacsql-external-tests)