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

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

[nongnu] elpa/pacmacs 30b5c43879 040/472: License header (#28):


From: ELPA Syncer
Subject: [nongnu] elpa/pacmacs 30b5c43879 040/472: License header (#28):
Date: Thu, 6 Jan 2022 21:59:09 -0500 (EST)

branch: elpa/pacmacs
commit 30b5c4387900a281eb93a1ff921c1aad21a4b3ce
Author: rexim <reximkut@gmail.com>
Commit: rexim <reximkut@gmail.com>

    License header (#28):
    
    Put the license header to all the game's modules
---
 pacman-anim.el      | 36 ++++++++++++++++++++++++++++++++++++
 pacman-resources.el | 36 ++++++++++++++++++++++++++++++++++++
 pacman.el           |  6 ++++++
 3 files changed, 78 insertions(+)

diff --git a/pacman-anim.el b/pacman-anim.el
index cee67bf889..832338cb11 100644
--- a/pacman-anim.el
+++ b/pacman-anim.el
@@ -1,3 +1,37 @@
+;;; pacman-anim.el --- Pacman for Emacs
+
+;; Copyright (C) 2015 Codingteam
+
+;; Author: Codingteam <codingteam@conference.jabber.ru>
+;; Maintainer: Alexey Kutepov <reximkut@gmail.com>
+;; URL: http://github.com/rexim/pacman.el
+
+;; Permission is hereby granted, free of charge, to any person
+;; obtaining a copy of this software and associated documentation
+;; files (the "Software"), to deal in the Software without
+;; restriction, including without limitation the rights to use, copy,
+;; modify, merge, publish, distribute, sublicense, and/or sell copies
+;; of the Software, and to permit persons to whom the Software is
+;; furnished to do so, subject to the following conditions:
+
+;; The above copyright notice and this permission notice shall be
+;; included in all copies or substantial portions of the Software.
+
+;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+;; BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+;; ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+;; SOFTWARE.
+
+;;; Commentary:
+
+;; Routines for working with animation
+
+;;; Code:
+
 (require 'json)
 
 (defun pacman-make-anim (frames)
@@ -48,3 +82,5 @@
                (pacman-anim-next-frame anim))))
 
 (provide 'pacman-anim)
+
+;;; pacman-anim.el ends here
diff --git a/pacman-resources.el b/pacman-resources.el
index bda7f9ca6f..0207964451 100644
--- a/pacman-resources.el
+++ b/pacman-resources.el
@@ -1,3 +1,37 @@
+;;; pacman-resources.el --- Pacman for Emacs
+
+;; Copyright (C) 2015 Codingteam
+
+;; Author: Codingteam <codingteam@conference.jabber.ru>
+;; Maintainer: Alexey Kutepov <reximkut@gmail.com>
+;; URL: http://github.com/rexim/pacman.el
+
+;; Permission is hereby granted, free of charge, to any person
+;; obtaining a copy of this software and associated documentation
+;; files (the "Software"), to deal in the Software without
+;; restriction, including without limitation the rights to use, copy,
+;; modify, merge, publish, distribute, sublicense, and/or sell copies
+;; of the Software, and to permit persons to whom the Software is
+;; furnished to do so, subject to the following conditions:
+
+;; The above copyright notice and this permission notice shall be
+;; included in all copies or substantial portions of the Software.
+
+;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+;; BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+;; ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+;; SOFTWARE.
+
+;;; Commentary:
+
+;; Routines for working with game resources
+
+;;; Code:
+
 (defun pacman-load-resource (filename)
   (create-image (concat default-directory filename)
                 'png nil :heuristic-mask t))
@@ -6,3 +40,5 @@
   (insert-image resource " " nil resource-vector))
 
 (provide 'pacman-resources)
+
+;;; pacman-anim.el ends here
diff --git a/pacman.el b/pacman.el
index f7b0325bbd..9a005aa028 100644
--- a/pacman.el
+++ b/pacman.el
@@ -27,6 +27,12 @@
 ;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 ;; SOFTWARE.
 
+;;; Commentary:
+
+;; Pacman game for Emacs
+
+;;; Code:
+
 (require 'pacman-anim)
 (require 'pacman-resources)
 



reply via email to

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