;;; fpkg --- a simple package manager for FG42 -*- lexical-binding: t; -*- ;; ;; Copyright (C) 2010-2020 Sameer Rahmani ;; ;; Author: Sameer Rahmani ;; Keywords: lisp fg42 IDE package manager ;; Version: 1.0.0 ;; ;; 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. ;; ;; 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. ;; ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . ;; ;;; Commentary: ;; ;; Simple package manager for FG42 ;; ;;; Code: (require 'cl-lib) (require 'subr-x) (require 'fpkg/installers) ;; Variables --------------------------------- (cl-defstruct fpkg-dependency "Package structure for FG42." name (version "0") (path nil) (source 'elpa)) (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.") (defvar required-packages (make-hash-table) "A hash of `fg42-package structure representing required packages.") ;; 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)))) (defun fpkg-initialize-once () "Initilize FPKG only once." (when (not fpkg-initilized-p) (fpkg-initialize))) (defun get-extension-name (args) (cond ((symbolp args) args) ((listp args) (car args)))) (defvar official-extensions '(devops-extension)) (defun is-official-extension (args) (member args official-extensions)) (defun get-official-extension-receipe (name) (list name :host 'gitlab :repo (format "amirrezaask/%s" name))) (defun fg42-install-extension (args) (let ((extension-name (get-extension-name args))) (if (is-official-extension extension-name) (straight-use-package (get-official-extension-receipe extension-name)) (straight-use-package extension-name)))) (defun extensionp (args) "Tell if given ARGS is a FG42 extension or a normal straight package." (cond ((symbolp args) (string= (car (last (split-string (symbol-name args) "-"))) "extension")) ((listp args) (string= (car (last (split-string (symbol-name (car args)) "-"))) "extension")))) (defun depends-on (args) (if (extensionp args) (fg42-install-extension args) (straight-use-package args) )) (provide 'fpkg) ;;; fpkg.el ends here