emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/phpinspect 77ea6ae9e6: Add headers to new .el files + d


From: ELPA Syncer
Subject: [elpa] externals/phpinspect 77ea6ae9e6: Add headers to new .el files + delete compile script
Date: Thu, 24 Aug 2023 15:58:15 -0400 (EDT)

branch: externals/phpinspect
commit 77ea6ae9e67d3fc81aeafcb31533cf2901db70e3
Author: Hugo Thunnissen <devel@hugot.nl>
Commit: Hugo Thunnissen <devel@hugot.nl>

    Add headers to new .el files + delete compile script
---
 benchmarks/stubs.el     | 23 +++++++++++++++++++++++
 scripts/compile.bash    | 19 -------------------
 scripts/install-deps.el | 24 +++++++++++++++++++++++-
 3 files changed, 46 insertions(+), 20 deletions(-)

diff --git a/benchmarks/stubs.el b/benchmarks/stubs.el
index ed2c4862a2..55d25c3a1a 100644
--- a/benchmarks/stubs.el
+++ b/benchmarks/stubs.el
@@ -1,3 +1,26 @@
+;;; stubs.el --- Benchmarks of phpinspect stub index dump and load times  -*- 
lexical-binding: t; -*-
+
+;; Copyright (C) 2023  Free Software Foundation, Inc
+
+;; Author: Hugo Thunnissen <devel@hugot.nl>
+;; Keywords: benchmark
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;;; Code:
 
 (require 'phpinspect-cache)
 
diff --git a/scripts/compile.bash b/scripts/compile.bash
deleted file mode 100644
index 81f4d27f0f..0000000000
--- a/scripts/compile.bash
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-rm ./**/*.elc
-rm *.elc
-
-for file in ./*.el; do
-    echo 'Compiling '"$file"' ...'
-    cask emacs -batch -L . --eval '(setq byte-compile-error-on-warn t)' -f 
batch-byte-compile "$file" || break
-done
-
-for file in ./**/*.el; do
-    echo 'Compiling '"$file"' ...'
-    cask emacs -batch -L . --eval '(setq byte-compile-error-on-warn t)' -f 
batch-byte-compile "$file" || break
-done
-
-if [[ -z $NO_REMOVE_ELC ]]; then
-    rm ./**/*.elc
-    rm *.elc
-fi
diff --git a/scripts/install-deps.el b/scripts/install-deps.el
index 5f00ea9329..85202914a5 100644
--- a/scripts/install-deps.el
+++ b/scripts/install-deps.el
@@ -1,4 +1,26 @@
-;;; install-deps.el --- Install dependencies -*- lexical-binding: t -*-
+;;; install-deps.el --- Install package dependencies  -*- lexical-binding: t; 
-*-
+
+;; Copyright (C) 2023  Free Software Foundation, Inc
+
+;; Author: Hugo Thunnissen <devel@hugot.nl>
+;; Keywords: script
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;;; Code:
 
 (require 'lisp-mnt)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]