mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-26 07:11:34 -08:00
a missing merge
This commit is contained in:
parent
659a0a5909
commit
fe27c32fac
7 changed files with 88 additions and 0 deletions
BIN
test/automated/data/decompress/foo-gzipped
Normal file
BIN
test/automated/data/decompress/foo-gzipped
Normal file
Binary file not shown.
1
test/automated/data/package/multi-file-readme.txt
Normal file
1
test/automated/data/package/multi-file-readme.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
This is a bare-bones readme file for the multi-file package.
|
||||
13
test/automated/data/package/newer-versions/archive-contents
Normal file
13
test/automated/data/package/newer-versions/archive-contents
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
(1
|
||||
(simple-single .
|
||||
[(1 4)
|
||||
nil "A single-file package with no dependencies" single])
|
||||
(simple-depend .
|
||||
[(1 0)
|
||||
((simple-single (1 3))) "A single-file package with a dependency." single])
|
||||
(new-pkg .
|
||||
[(1 0)
|
||||
nil "A package only seen after "updating" archive-contents" single])
|
||||
(multi-file .
|
||||
[(0 2 3)
|
||||
nil "Example of a multi-file tar package" tar]))
|
||||
18
test/automated/data/package/newer-versions/new-pkg-1.0.el
Normal file
18
test/automated/data/package/newer-versions/new-pkg-1.0.el
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
;;; new-pkg.el --- A package only seen after "updating" archive-contents
|
||||
|
||||
;; Author: J. R. Hacker <jrh@example.com>
|
||||
;; Version: 1.0
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; This will only show up after updating "archive-contents".
|
||||
|
||||
;;; Code:
|
||||
|
||||
(defun new-pkg-frob ()
|
||||
"Ignore me."
|
||||
(ignore))
|
||||
|
||||
(provide 'new-pkg)
|
||||
|
||||
;;; new-pkg.el ends here
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
;;; simple-single.el --- A single-file package with no dependencies
|
||||
|
||||
;; Author: J. R. Hacker <jrh@example.com>
|
||||
;; Version: 1.4
|
||||
;; Keywords: frobnicate
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; This package provides a minor mode to frobnicate and/or bifurcate
|
||||
;; any flanges you desire. To activate it, type "C-M-r M-3 butterfly"
|
||||
;; and all your dreams will come true.
|
||||
;;
|
||||
;; This is a new, updated version.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(defgroup simple-single nil "Simply a file"
|
||||
:group 'lisp)
|
||||
|
||||
(defcustom simple-single-super-sunday nil
|
||||
"How great is this?
|
||||
Default changed to `nil'."
|
||||
:type 'boolean
|
||||
:group 'simple-single
|
||||
:package-version "1.4")
|
||||
|
||||
(defvar simple-single-sudo-sandwich nil
|
||||
"Make a sandwich?")
|
||||
|
||||
;;;###autoload
|
||||
(define-minor-mode simple-single-mode
|
||||
"It does good things to stuff")
|
||||
|
||||
(provide 'simple-single)
|
||||
|
||||
;;; simple-single.el ends here
|
||||
17
test/automated/data/package/simple-depend-1.0.el
Normal file
17
test/automated/data/package/simple-depend-1.0.el
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
;;; simple-depend.el --- A single-file package with a dependency.
|
||||
|
||||
;; Author: J. R. Hacker <jrh@example.com>
|
||||
;; Version: 1.0
|
||||
;; Keywords: frobnicate
|
||||
;; Package-Requires: ((simple-single "1.3"))
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; Depends on another package.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(defvar simple-depend "Value"
|
||||
"Some trivial code")
|
||||
|
||||
;;; simple-depend.el ends here
|
||||
3
test/automated/data/package/simple-single-readme.txt
Normal file
3
test/automated/data/package/simple-single-readme.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
This package provides a minor mode to frobnicate and/or bifurcate
|
||||
any flanges you desire. To activate it, type "C-M-r M-3 butterfly"
|
||||
and all your dreams will come true.
|
||||
Loading…
Add table
Add a link
Reference in a new issue