FG42/lib/fpkg.el

118 lines
4.0 KiB
EmacsLisp
Raw Normal View History

2015-07-07 00:01:24 +01:00
;;; fpkg --- a simple package manager for FG42 -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2010-2020 Sameer Rahmani <lxsameer@gnu.org>
;;
2015-07-07 13:10:57 +01:00
;; Author: Sameer Rahmani <lxsameer@gnu.org>
2015-07-07 00:01:24 +01:00
;; Keywords: lisp fg42 IDE package manager
;; Version: 1.0.0
2019-08-21 15:38:13 +01:00
;;
2015-07-07 00:01:24 +01:00
;; 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.
2019-08-21 15:38:13 +01:00
;;
2015-07-07 00:01:24 +01:00
;; 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.
2019-08-21 15:38:13 +01:00
;;
2015-07-07 00:01:24 +01:00
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
2019-08-21 15:38:13 +01:00
;;
2015-07-07 00:01:24 +01:00
;;; Commentary:
2019-08-21 15:38:13 +01:00
;;
2015-07-07 00:01:24 +01:00
;; Simple package manager for FG42
2019-08-21 15:38:13 +01:00
;;
2015-07-07 00:01:24 +01:00
;;; Code:
(require 'cl-lib)
2015-07-07 12:25:06 +01:00
(require 'subr-x)
(require 'fpkg/installers)
2015-07-07 00:01:24 +01:00
;; Variables ---------------------------------
(cl-defstruct fpkg-dependency
"Package structure for FG42."
name
(version "0")
2015-07-07 12:25:06 +01:00
(path nil)
(source 'elpa))
2015-07-07 00:01:24 +01:00
(defvar bootstrap-version nil
"Bootstrap version of straight. This var is used in straight's installer.")
(defvar fpkg-packages-path
(expand-file-name ".fpkg/" fg42-home)
"The path to the directory which FPKG will use to store that packages.")
(defvar fpkg-initilized-p nil
"A boolean flag that indicates whether FPKG is initialized or not.")
2015-07-07 00:01:24 +01:00
(defvar required-packages (make-hash-table)
"A hash of `fg42-package structure representing required packages.")
2020-04-04 11:55:08 +01:00
(defvar fg42/extensions '(devops-extension)
"A list of official FG42 extensions.")
2015-07-07 00:01:24 +01:00
;; Functions ----------------------------------
(defun fpkg-initialize ()
"Initilize the straight.e package manager and setup necessary hooks."
(let ((bootstrap-file (concat fpkg-packages-path
"straight/repos/straight.el/bootstrap.el"))
(bootstrap-version 5))
(make-directory fpkg-packages-path t)
(setq straight-base-dir fpkg-packages-path)
(if (not (file-exists-p bootstrap-file))
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp))
(load bootstrap-file nil 'nomessage))))
2020-04-04 12:35:53 +01:00
(setq straight-use-package-by-default t)
(defun fpkg-initialize-once ()
"Initilize FPKG only once."
(when (not fpkg-initilized-p)
(fpkg-initialize)
(straight-use-package 'use-package)))
2020-04-04 11:55:08 +01:00
(defun official-extension-p (args)
2020-04-04 12:02:17 +01:00
"Predicate to say if ARGS is an official FG42 extension."
(member args fg42/extensions))
2020-04-03 22:52:26 +01:00
(defun get-receipe (name)
2020-04-04 12:35:53 +01:00
"Get the receipe for given NAME if that is an official extension."
2020-04-03 22:02:41 +01:00
(list name :host 'gitlab :repo (format "FG42/%s" name)))
2020-04-04 12:35:53 +01:00
(defmacro fg42-install-extension (args)
"Install if given ARGS is an official extension."
(let ((reciepe (get-receipe args)))
`(use-package ,args :straight ,reciepe)))
2020-04-04 12:50:18 +01:00
(defun old-depends-on-calls-adapter (args)
(if (listp (car args))
2020-04-10 06:27:54 +01:00
(progn (add-to-list 'args (car (cdr (pop args)))) args))
args)
2020-04-04 12:50:18 +01:00
2020-04-04 12:35:53 +01:00
(defmacro depends-on (&rest args)
"Install given ARGS."
2020-04-10 06:27:54 +01:00
(let ((adapted-args (old-depends-on-calls-adapter args)))
(if (official-extension-p (car args))
`(fg42-install-extension ,@adapted-args)
`(use-package ,@adapted-args))))
2020-04-04 12:50:18 +01:00
2020-04-04 12:35:53 +01:00
;; depends on now is a wrapper around use-package
;; (macroexpand-1 '(depends-on go-mode :mode "\\.go\\'"))
;; (macroexpand-1 '(depends-on devops-extension))
;; (macroexpand-1 '(fg42-install-extension devops-extension))
;; (depends-on 'cyberpunk-theme) ;; compatible with old calls
2020-04-04 12:35:53 +01:00
;; (depends-on devops-extension) ;; official extension
;; (depends-on go-extension :straight (go-extension :host gitlab :repo "amirrezaask/go-extension")) ;; 3rd party extension
2015-07-07 00:01:24 +01:00
(provide 'fpkg)
;;; fpkg.el ends here