From 16e296010fa1a7202aeb98869fb9a8af4f7ec5e8 Mon Sep 17 00:00:00 2001 From: Chris Barrett Date: Mon, 7 Aug 2023 21:11:50 +1200 Subject: [PATCH] Move deps into a pkg file --- lisp/nursery-pkg.el | 14 ++++++++++++++ lisp/org-roam-gc.el | 4 ---- lisp/org-roam-links.el | 4 ---- lisp/org-roam-review.el | 4 ---- lisp/org-roam-rewrite.el | 5 ----- lisp/org-roam-search.el | 4 ---- lisp/plisty.el | 4 ---- 7 files changed, 14 insertions(+), 25 deletions(-) create mode 100644 lisp/nursery-pkg.el diff --git a/lisp/nursery-pkg.el b/lisp/nursery-pkg.el new file mode 100644 index 0000000..9591b36 --- /dev/null +++ b/lisp/nursery-pkg.el @@ -0,0 +1,14 @@ +(define-package + "nursery" + "0.0.1-pre" + "Unpackage shared Lisp" + '((emacs "27.1") + (async "1.9.5") + (dash "2.19.1") + (f "0.17.2") + (ht "2.4") + (org "9.5.3") + (org-drill "2.7.0") + (org-roam "2.2.2") + (pcre2el "1.8") + (ts "0.3-pre"))) diff --git a/lisp/org-roam-gc.el b/lisp/org-roam-gc.el index cbc5f63..15cbd84 100644 --- a/lisp/org-roam-gc.el +++ b/lisp/org-roam-gc.el @@ -6,10 +6,6 @@ ;; Homepage: https://github.com/chrisbarrett/nursery -;; Version: 0.0.1-pre - -;; Package-Requires: ((emacs "27.1") (org "9.5.3") (org-roam "2.2.2")) - ;; 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 diff --git a/lisp/org-roam-links.el b/lisp/org-roam-links.el index cc1610d..3d5cd60 100644 --- a/lisp/org-roam-links.el +++ b/lisp/org-roam-links.el @@ -4,12 +4,8 @@ ;; Author: Chris Barrett -;; Package-Requires: ((emacs "27.1") (dash "2.19.1")) - ;; Homepage: https://github.com/chrisbarrett/nursery -;; Version: 0.0.1-pre - ;; 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 diff --git a/lisp/org-roam-review.el b/lisp/org-roam-review.el index 1c8815f..af3a8b6 100644 --- a/lisp/org-roam-review.el +++ b/lisp/org-roam-review.el @@ -4,12 +4,8 @@ ;; Author: Chris Barrett -;; Package-Requires: ((emacs "27.1") (dash "2.19.1") (ts "0.3-pre") (org-roam "2.2.2") (org-drill "2.7.0")) - ;; Homepage: https://github.com/chrisbarrett/nursery -;; Version: 0.0.1-pre - ;; 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 diff --git a/lisp/org-roam-rewrite.el b/lisp/org-roam-rewrite.el index 62b2f51..8eb2c8a 100644 --- a/lisp/org-roam-rewrite.el +++ b/lisp/org-roam-rewrite.el @@ -2,12 +2,8 @@ ;; Copyright (C) 2022 Chris Barrett -;; Package-Requires: ((emacs "27.2") (dash "2.19.1") (f "0.17.2") (org-roam "2.2.2")) - ;; Homepage: https://github.com/chrisbarrett/nursery -;; Version: 0.0.1-pre - ;; Author: Chris Barrett ;; This program is free software; you can redistribute it and/or modify @@ -31,7 +27,6 @@ ;;; Code: (require 'dash) -(require 'f) (require 'org) (require 'org-roam) (require 'plisty) diff --git a/lisp/org-roam-search.el b/lisp/org-roam-search.el index 554f4ff..b44f6df 100644 --- a/lisp/org-roam-search.el +++ b/lisp/org-roam-search.el @@ -4,12 +4,8 @@ ;; Author: Chris Barrett -;; Package-Requires: ((emacs "27.1") (async "1.9.5") (dash "2.19.1") (org-roam "2.2.2") (pcre2el "1.8")) - ;; Homepage: https://github.com/chrisbarrett/nursery -;; Version: 0.0.1-pre - ;; 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 diff --git a/lisp/plisty.el b/lisp/plisty.el index 53c0161..a6fcabd 100644 --- a/lisp/plisty.el +++ b/lisp/plisty.el @@ -2,14 +2,10 @@ ;; Copyright (C) 2022 Chris Barrett -;; Package-Requires: ((emacs "27.1") (dash "2.19.1") (ht "2.4")) - ;; Author: Chris Barrett ;; Homepage: https://github.com/chrisbarrett/nursery -;; Version: 0.0.1-pre - ;; 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