-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chen Bin
committed
Apr 13, 2024
1 parent
98ed08e
commit d51a5b8
Showing
3 changed files
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
;;; elpa-mirror.el --- Create local package repository from installed packages | ||
|
||
;; Copyright (C) 2014-2020 Chen Bin | ||
;; Copyright (C) 2014-2024 Chen Bin | ||
|
||
;; Author: Chen Bin <[email protected]> | ||
;; URL: https://github.com/redguardtoo/elpa-mirror | ||
;; Package-Requires: ((emacs "25.1")) | ||
;; Version: 2.2.2 | ||
;; Package-Requires: ((emacs "27.1")) | ||
;; Version: 2.3.0 | ||
;; Keywords: tools | ||
;; | ||
;; This file is not part of GNU Emacs. | ||
|
@@ -294,7 +294,7 @@ command compatible with BSD tar instead of GNU tar." | |
(defun elpamr-version () | ||
"Current version." | ||
(interactive) | ||
(message "2.2.2")) | ||
(message "2.3.0")) | ||
|
||
(defun elpamr--win-executable-find (exe) | ||
"Find EXE on windows." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
name=elpa-mirror | ||
version=2.2.2 | ||
version=2.3.0 | ||
pkg=$name-$version | ||
mkdir $pkg | ||
cp *.el $pkg | ||
|