* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-03-14 20:44 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-03-14 20:44 UTC (permalink / raw
To: gentoo-commits
commit: 2116f7e580af56dad18753381516bd29276a7280
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 14 20:44:35 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Mar 14 20:44:35 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=2116f7e5
README.md: reword the "User" section
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
README.md | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index aca7562..5f3c346 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,10 @@ emerge app-emacs/emacs-ebuild-snippets
### User
-If you want to install this package under your user only then you have to use
-the Eldev tool or manually copy the `snippets` directory.
+If you want to install this package under your current user only, then you
+have to use the [Eldev](https://github.com/doublep/eldev/) tool or manually
+copy the `snippets` directory to the location where you installed
+`ebuild-snippets.el`.
``` shell
make eldev-install
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2024-10-06 19:45 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2024-10-06 19:45 UTC (permalink / raw
To: gentoo-commits
commit: 2a5d555bcef7479cc8c10849938e4eb96af922ee
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 6 19:44:18 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Oct 6 19:44:18 2024 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=2a5d555b
fix(ebuild-snippets): account for yas-snippet-dirs being a string and not a list
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
ebuild-snippets.el | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/ebuild-snippets.el b/ebuild-snippets.el
index fccb40d..a16b14f 100644
--- a/ebuild-snippets.el
+++ b/ebuild-snippets.el
@@ -78,7 +78,12 @@
;;;###autoload
(defun ebuild-snippets-initialize ()
"Ebuild-Snippets initialization."
- (add-to-list 'yas-snippet-dirs ebuild-snippets-directory t)
+ ;; Because `yas-snippet-dirs' may be a string.
+ (cond
+ ((listp yas-snippet-dirs)
+ (add-to-list 'yas-snippet-dirs ebuild-snippets-directory t))
+ (t
+ (setq yas-snippet-dirs (list yas-snippet-dirs ebuild-snippets-directory))))
(yas-load-directory ebuild-snippets-directory))
;;;###autoload
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-10-25 19:33 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-10-25 19:33 UTC (permalink / raw
To: gentoo-commits
commit: 0327d28e43c8ce1650085e85bef18ebc4dd31f94
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 25 19:32:49 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Oct 25 19:32:49 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=0327d28e
pyproject.toml: cleanup
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
pyproject.toml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 1ac45c9..ac6ff22 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -16,10 +16,6 @@ tag_template = "{new_version}"
src = "./VERSION"
search = "{current_version}"
-[[tool.tbump.file]]
-src = "./VERSION"
-search = "{current_version}"
-
[[tool.tbump.file]]
src = "./ebuild-snippets.el"
search = ";; Version: {current_version}"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-10-25 19:26 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-10-25 19:26 UTC (permalink / raw
To: gentoo-commits
commit: cbec045dceae01e78e2d0fc2328750241f153675
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 25 19:24:53 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Oct 25 19:24:53 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=cbec045d
add pyproject.toml file
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
pyproject.toml | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..fe2a6e7
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,33 @@
+[tool.tbump.version]
+current = "2.1.0"
+regex = '''
+ (?P<major>\d+)
+ \.
+ (?P<minor>\d+)
+ \.
+ (?P<patch>\d+)
+ '''
+
+[tool.tbump.git]
+message_template = "bump to {new_version}"
+tag_template = "{new_version}"
+
+[[tool.tbump.file]]
+src = "./VERSION"
+search = "{current_version}"
+
+[[tool.tbump.file]]
+src = "./VERSION"
+search = "{current_version}"
+
+[[tool.tbump.file]]
+src = "./ebuild-snippets.el"
+search = ";; Version: {current_version}"
+
+[[tool.tbump.file]]
+src = "./ebuild-snippets.el"
+search = "defconst ebuild-snippets-version \"{current_version}\""
+
+[[tool.tbump.before_commit]]
+name = "execute make all"
+cmd = "make all"
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-10-25 19:26 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-10-25 19:26 UTC (permalink / raw
To: gentoo-commits
commit: 6dc74d77e999281169109c5107a8365d987a5e6c
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 25 19:25:25 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Oct 25 19:26:12 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=6dc74d77
bump to 2.2.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
VERSION | 2 +-
ebuild-snippets.el | 4 ++--
pyproject.toml | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/VERSION b/VERSION
index 7ec1d6d..ccbccc3 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.1.0
+2.2.0
diff --git a/ebuild-snippets.el b/ebuild-snippets.el
index cc7ba97..fccb40d 100644
--- a/ebuild-snippets.el
+++ b/ebuild-snippets.el
@@ -21,7 +21,7 @@
;; Authors: Maciej Barć <xgqt@gentoo.org>
;; Created: 27 Feb 2023
-;; Version: 2.1.0
+;; Version: 2.2.0
;; Keywords: languages
;; Homepage: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git
;; Package-Requires: ((emacs "24"))
@@ -49,7 +49,7 @@
(require 'yasnippet)
-(defconst ebuild-snippets-version "2.1.0"
+(defconst ebuild-snippets-version "2.2.0"
"Ebuild-Snippets version.")
diff --git a/pyproject.toml b/pyproject.toml
index fe2a6e7..1ac45c9 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,5 @@
[tool.tbump.version]
-current = "2.1.0"
+current = "2.2.0"
regex = '''
(?P<major>\d+)
\.
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-10-25 19:26 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-10-25 19:26 UTC (permalink / raw
To: gentoo-commits
commit: 814a60d447f3ec0363646e3f3ed07c7d814799df
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 25 19:24:43 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Oct 25 19:24:43 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=814a60d4
add VERSION file
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
VERSION | 1 +
1 file changed, 1 insertion(+)
diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..7ec1d6d
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+2.1.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-06-13 22:01 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-06-13 22:01 UTC (permalink / raw
To: gentoo-commits
commit: 96f2d50f4ab934c6e566bb5a7086185b5646549f
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 13 22:00:22 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Jun 13 22:00:22 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=96f2d50f
ebuild-snippets.el: bump to 2.1.0
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
ebuild-snippets.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ebuild-snippets.el b/ebuild-snippets.el
index 1985522..cc7ba97 100644
--- a/ebuild-snippets.el
+++ b/ebuild-snippets.el
@@ -21,7 +21,7 @@
;; Authors: Maciej Barć <xgqt@gentoo.org>
;; Created: 27 Feb 2023
-;; Version: 2.0.4
+;; Version: 2.1.0
;; Keywords: languages
;; Homepage: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git
;; Package-Requires: ((emacs "24"))
@@ -49,7 +49,7 @@
(require 'yasnippet)
-(defconst ebuild-snippets-version "2.0.4"
+(defconst ebuild-snippets-version "2.1.0"
"Ebuild-Snippets version.")
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-04-25 19:48 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-04-25 19:48 UTC (permalink / raw
To: gentoo-commits
commit: 1a77d90d0488b4ceb486ef0627e6133fafd13c13
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 19:48:17 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 19:48:17 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=1a77d90d
Eldev: add autoloads plugin
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
Eldev | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/Eldev b/Eldev
index 0a6841f..0404bba 100644
--- a/Eldev
+++ b/Eldev
@@ -2,8 +2,9 @@
(eldev-use-package-archive 'melpa)
-(setf eldev-project-main-file
- "ebuild-snippets.el")
+(eldev-use-plugin 'autoloads)
+
+(setf eldev-project-main-file "ebuild-snippets.el")
(setf eldev-files-to-package
`(:or ,eldev-files-to-package '("snippets")))
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-04-25 15:22 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-04-25 15:22 UTC (permalink / raw
To: gentoo-commits
commit: a8eb48067f7ac690431d3d149af589060f8f1a92
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 15:16:53 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 15:16:53 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=a8eb4806
remove Cask
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
Cask | 8 --------
1 file changed, 8 deletions(-)
diff --git a/Cask b/Cask
deleted file mode 100644
index d68e16c..0000000
--- a/Cask
+++ /dev/null
@@ -1,8 +0,0 @@
-(source melpa)
-
-(package-file "ebuild-snippets.el")
-
-(files "ebuild-snippets.el"
- "snippets")
-
-(development (depends-on "yasnippet"))
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-04-25 15:22 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-04-25 15:22 UTC (permalink / raw
To: gentoo-commits
commit: 1687c98242be9d9a99b5605baca717c66969da5a
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 15:16:03 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 15:16:03 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=1687c982
README.md: add gitlab link
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
README.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/README.md b/README.md
index 5f3c346..6910907 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,9 @@ make eldev-install
Upstream can be found on the Gentoo official GitWeb:
https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/
+There is also a mirror on the Gentoo GitLab:
+https://gitlab.gentoo.org/emacs/emacs-ebuild-snippets/
+
## License
Copyright (c) 2023 Gentoo Authors
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-03-26 0:27 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-03-26 0:27 UTC (permalink / raw
To: gentoo-commits
commit: 5fce788eddaf683d4a889cb3b1cef2e6dd7467c0
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 26 00:26:48 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Mar 26 00:26:48 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=5fce788e
bump to 2.0.4
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
ebuild-snippets.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ebuild-snippets.el b/ebuild-snippets.el
index ffdb491..1985522 100644
--- a/ebuild-snippets.el
+++ b/ebuild-snippets.el
@@ -21,7 +21,7 @@
;; Authors: Maciej Barć <xgqt@gentoo.org>
;; Created: 27 Feb 2023
-;; Version: 2.0.3
+;; Version: 2.0.4
;; Keywords: languages
;; Homepage: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git
;; Package-Requires: ((emacs "24"))
@@ -49,7 +49,7 @@
(require 'yasnippet)
-(defconst ebuild-snippets-version "2.0.3"
+(defconst ebuild-snippets-version "2.0.4"
"Ebuild-Snippets version.")
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-03-26 0:26 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-03-26 0:26 UTC (permalink / raw
To: gentoo-commits
commit: 94191cb76ecc468a105b2176bf8813fc1f836e48
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 26 00:25:50 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Mar 26 00:25:50 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=94191cb7
bump to 2.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
ebuild-snippets.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ebuild-snippets.el b/ebuild-snippets.el
index 004b893..ffdb491 100644
--- a/ebuild-snippets.el
+++ b/ebuild-snippets.el
@@ -21,7 +21,7 @@
;; Authors: Maciej Barć <xgqt@gentoo.org>
;; Created: 27 Feb 2023
-;; Version: 2.0.2
+;; Version: 2.0.3
;; Keywords: languages
;; Homepage: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git
;; Package-Requires: ((emacs "24"))
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-03-26 0:24 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-03-26 0:24 UTC (permalink / raw
To: gentoo-commits
commit: c744081844c86c524a511dde27adcd2a79b2bb03
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 26 00:24:30 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sun Mar 26 00:24:30 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=c7440818
bump to 2.0.3
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
ebuild-snippets.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ebuild-snippets.el b/ebuild-snippets.el
index 5b56bef..004b893 100644
--- a/ebuild-snippets.el
+++ b/ebuild-snippets.el
@@ -49,7 +49,7 @@
(require 'yasnippet)
-(defconst ebuild-snippets-version "2.0.2"
+(defconst ebuild-snippets-version "2.0.3"
"Ebuild-Snippets version.")
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-03-14 20:41 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-03-14 20:41 UTC (permalink / raw
To: gentoo-commits
commit: 228b2c051a9db004ca03dffc36500893502c94ee
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 14 20:35:12 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Mar 14 20:35:12 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=228b2c05
Makefile: add eldev-install
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
Makefile | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/Makefile b/Makefile
index e2b7514..9d46c46 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ ELCS = $(ELS:.el=.elc)
EMACS := emacs
RM := rm -f
+SH := sh
EMACFLAGS := --batch -q --no-site-file -L $(PWD)
EMACSCMD = $(EMACS) $(EMACFLAGS)
@@ -27,3 +28,9 @@ compile-snippets:
.PHONY: compile
compile: $(ELCS)
compile: compile-snippets
+
+.PHONY: eldev-install
+eldev-install:
+ $(MAKE) -B clean
+ $(MAKE) -B $(ELCS)
+ $(SH) $(PWD)/scripts/eldev-install.sh
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: /
@ 2023-03-14 20:41 Maciej Barć
0 siblings, 0 replies; 15+ messages in thread
From: Maciej Barć @ 2023-03-14 20:41 UTC (permalink / raw
To: gentoo-commits
commit: 694dd977f189ba5028b301411eea9eb56fb0c71c
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 14 20:41:00 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Mar 14 20:41:00 2023 +0000
URL: https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/commit/?id=694dd977
README.md: add README.md
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
README.md | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..aca7562
--- /dev/null
+++ b/README.md
@@ -0,0 +1,36 @@
+# Emacs-Ebuild-Snippets
+
+Yasnippets for editing Ebuilds, Eclasses and Gentoo package metadata.
+
+## Installation
+
+### System
+
+If you are on Gentoo Linux, then just emerge
+`app-emacs/emacs-ebuild-snippets`.
+
+``` shell
+emerge app-emacs/emacs-ebuild-snippets
+```
+
+### User
+
+If you want to install this package under your user only then you have to use
+the Eldev tool or manually copy the `snippets` directory.
+
+``` shell
+make eldev-install
+```
+
+## Upstream
+
+Upstream can be found on the Gentoo official GitWeb:
+https://gitweb.gentoo.org/proj/emacs-ebuild-snippets.git/
+
+## License
+
+Copyright (c) 2023 Gentoo Authors
+
+Licensed under the GNU GPL v2 License
+
+SPDX-License-Identifier: GPL-2.0-or-later
^ permalink raw reply related [flat|nested] 15+ messages in thread
end of thread, other threads:[~2024-10-06 19:45 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-14 20:44 [gentoo-commits] proj/emacs-ebuild-snippets:master commit in: / Maciej Barć
-- strict thread matches above, loose matches on Subject: below --
2024-10-06 19:45 Maciej Barć
2023-10-25 19:33 Maciej Barć
2023-10-25 19:26 Maciej Barć
2023-10-25 19:26 Maciej Barć
2023-10-25 19:26 Maciej Barć
2023-06-13 22:01 Maciej Barć
2023-04-25 19:48 Maciej Barć
2023-04-25 15:22 Maciej Barć
2023-04-25 15:22 Maciej Barć
2023-03-26 0:27 Maciej Barć
2023-03-26 0:26 Maciej Barć
2023-03-26 0:24 Maciej Barć
2023-03-14 20:41 Maciej Barć
2023-03-14 20:41 Maciej Barć
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox