Skip to content

Commit

Permalink
Add legacy package-build
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Dec 29, 2023
1 parent b990e4f commit 5c66181
Show file tree
Hide file tree
Showing 9 changed files with 2,903 additions and 0 deletions.
56 changes: 56 additions & 0 deletions lisp/extern/package-build/24/package-build-badges.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
;;; package-build-badges.el --- Create batches for packages

;; Copyright (C) 2011-2013 Donald Ephraim Curtis <[email protected]>
;; Copyright (C) 2012-2014 Steve Purcell <[email protected]>
;; Copyright (C) 2009 Phil Hagelberg <[email protected]>

;; Author: Donald Ephraim Curtis <[email protected]>
;; Keywords: tools

;; This file is not (yet) part of GNU Emacs.
;; However, it is distributed under the same license.

;; GNU Emacs 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, or (at your option)
;; any later version.

;; GNU Emacs 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 GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.

;;; Commentary:

;; In future we should provide a hook. Note also that it would be
;; straightforward to generate the SVG ourselves, which would save
;; the network overhead.

;;; Code:

(require 'package-build)

(defun package-build--write-melpa-badge-image (name version target-dir)
(shell-command
(mapconcat #'shell-quote-argument
(list "curl" "-f" "-o"
(expand-file-name (concat name "-badge.svg") target-dir)
(format "https://img.shields.io/badge/%s-%s-%s.svg"
(if package-build-stable "melpa stable" "melpa")
(url-hexify-string version)
(if package-build-stable "3e999f" "922793")))
" ")))

(provide 'package-build-badges)

;; Local Variables:
;; coding: utf-8
;; checkdoc-minor-mode: 1
;; indent-tabs-mode: nil
;; End:
;;; package-badges.el ends here
Loading

0 comments on commit 5c66181

Please sign in to comment.