* [gentoo-commits] repo/gentoo:master commit in: app-emacs/distel/
@ 2018-05-18 12:34 Aaron Bauman
0 siblings, 0 replies; 5+ messages in thread
From: Aaron Bauman @ 2018-05-18 12:34 UTC (permalink / raw
To: gentoo-commits
commit: 0481335c58e30ec5a1ab686fdc9f646fd1b67171
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Thu May 17 08:10:20 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri May 18 12:32:39 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0481335c
app-emacs/distel: use HTTPS
app-emacs/distel/distel-4.0.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-emacs/distel/distel-4.0.6.ebuild b/app-emacs/distel/distel-4.0.6.ebuild
index 1db4cfa6597..b0cdc9f49d4 100644
--- a/app-emacs/distel/distel-4.0.6.ebuild
+++ b/app-emacs/distel/distel-4.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -7,7 +7,7 @@ inherit elisp
DESCRIPTION="Distributed Emacs Lisp for Erlang"
HOMEPAGE="https://code.google.com/p/distel/
- http://www.emacswiki.org/emacs/DistributedEmacsLisp"
+ https://www.emacswiki.org/emacs/DistributedEmacsLisp"
SRC_URI="https://github.com/massemanet/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
# "New BSD License" according to https://code.google.com/p/distel/
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/distel/
@ 2019-09-05 15:05 Ulrich Müller
0 siblings, 0 replies; 5+ messages in thread
From: Ulrich Müller @ 2019-09-05 15:05 UTC (permalink / raw
To: gentoo-commits
commit: 2976eea33924ceb896f8d6abcf1447b92edaf679
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 5 12:11:36 2019 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Sep 5 15:05:06 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2976eea3
app-emacs/distel: Bump to version 4.1.1.
Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-emacs/distel/Manifest | 1 +
app-emacs/distel/distel-4.1.1.ebuild | 40 ++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/app-emacs/distel/Manifest b/app-emacs/distel/Manifest
index 755b567f702..92c3a5ee0fb 100644
--- a/app-emacs/distel/Manifest
+++ b/app-emacs/distel/Manifest
@@ -1 +1,2 @@
DIST distel-4.0.6.tar.gz 210257 BLAKE2B 615682bfc2b773a78ad85d4817135144dda787d1db57b2743ea2fca8ed672fc1e37f6bc23803c9cc2b6096e7376d318cd7c25c3133f7b9c1326dbd451273841b SHA512 510f82b6794379d89020d234462e09251e0db285ebc111eaf096e32a4e3619384650cb2b47ed68d38762a496504b58981c73ca5b930bd0eb1407aee9599c149f
+DIST distel-4.1.1.tar.gz 214189 BLAKE2B 0a24039c11d603814ca352ccc09e776b2431ab1172c195a528aba6ecd85eeb15d9739bb37fcc850fd33e2af928eb9d2c7bc8a1721b46f79792ec658f58d41a4e SHA512 3ef73a650775f25f8e77c78cfaec3d2277a4e097128819d118ba566ac477455a1764383959f1d8eca33f8dedfa937eab605dfff899d344b9b03262c2abc7ac44
diff --git a/app-emacs/distel/distel-4.1.1.ebuild b/app-emacs/distel/distel-4.1.1.ebuild
new file mode 100644
index 00000000000..bfe7b568b6c
--- /dev/null
+++ b/app-emacs/distel/distel-4.1.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit elisp
+
+DESCRIPTION="Distributed Emacs Lisp for Erlang"
+HOMEPAGE="https://massemanet.github.io/distel/
+ https://www.emacswiki.org/emacs/DistributedEmacsLisp"
+SRC_URI="https://github.com/massemanet/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+# "New BSD License" according to https://code.google.com/p/distel/
+# "MIT" according to https://github.com/massemanet/distel
+LICENSE="BSD MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND=">=dev-lang/erlang-11.2.5[emacs]"
+BDEPEND="${RDEPEND}"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+ emake base info
+ cd elisp || die
+ elisp-compile *.el
+}
+
+src_install() {
+ emake prefix="${ED}"/usr \
+ ELISP_DIR="${ED}${SITELISP}/${PN}" install
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+ doinfo doc/distel.info
+ dodoc AUTHORS ChangeLog NEWS README*
+ use doc && dodoc doc/gorrie02distel.pdf
+ docinto html
+ dodoc doc/distel/*.html
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/distel/
@ 2019-10-15 7:35 Ulrich Müller
0 siblings, 0 replies; 5+ messages in thread
From: Ulrich Müller @ 2019-10-15 7:35 UTC (permalink / raw
To: gentoo-commits
commit: f305b6d585a0bc5f4c89359b3d636b6e73c67183
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 15 07:04:33 2019 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Oct 15 07:04:33 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f305b6d5
app-emacs/distel: Remove old.
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
app-emacs/distel/Manifest | 1 -
app-emacs/distel/distel-4.0.6.ebuild | 38 ------------------------------------
2 files changed, 39 deletions(-)
diff --git a/app-emacs/distel/Manifest b/app-emacs/distel/Manifest
index 92c3a5ee0fb..76ee3f7b7df 100644
--- a/app-emacs/distel/Manifest
+++ b/app-emacs/distel/Manifest
@@ -1,2 +1 @@
-DIST distel-4.0.6.tar.gz 210257 BLAKE2B 615682bfc2b773a78ad85d4817135144dda787d1db57b2743ea2fca8ed672fc1e37f6bc23803c9cc2b6096e7376d318cd7c25c3133f7b9c1326dbd451273841b SHA512 510f82b6794379d89020d234462e09251e0db285ebc111eaf096e32a4e3619384650cb2b47ed68d38762a496504b58981c73ca5b930bd0eb1407aee9599c149f
DIST distel-4.1.1.tar.gz 214189 BLAKE2B 0a24039c11d603814ca352ccc09e776b2431ab1172c195a528aba6ecd85eeb15d9739bb37fcc850fd33e2af928eb9d2c7bc8a1721b46f79792ec658f58d41a4e SHA512 3ef73a650775f25f8e77c78cfaec3d2277a4e097128819d118ba566ac477455a1764383959f1d8eca33f8dedfa937eab605dfff899d344b9b03262c2abc7ac44
diff --git a/app-emacs/distel/distel-4.0.6.ebuild b/app-emacs/distel/distel-4.0.6.ebuild
deleted file mode 100644
index b0cdc9f49d4..00000000000
--- a/app-emacs/distel/distel-4.0.6.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit elisp
-
-DESCRIPTION="Distributed Emacs Lisp for Erlang"
-HOMEPAGE="https://code.google.com/p/distel/
- https://www.emacswiki.org/emacs/DistributedEmacsLisp"
-SRC_URI="https://github.com/massemanet/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-# "New BSD License" according to https://code.google.com/p/distel/
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-DEPEND=">=dev-lang/erlang-11.2.5[emacs]"
-RDEPEND="${DEPEND}"
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
- emake base info
- cd elisp || die
- elisp-compile *.el
-}
-
-src_install() {
- emake prefix="${ED}"/usr \
- ELISP_DIR="${ED}${SITELISP}/${PN}" install
- elisp-site-file-install "${FILESDIR}/${SITEFILE}"
- doinfo doc/distel.info
- dohtml doc/distel/*.html
- dodoc AUTHORS ChangeLog NEWS README*
- use doc && dodoc doc/gorrie02distel.pdf
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/distel/
@ 2024-08-05 16:42 Matthew Smith
0 siblings, 0 replies; 5+ messages in thread
From: Matthew Smith @ 2024-08-05 16:42 UTC (permalink / raw
To: gentoo-commits
commit: 26792509743c345430cbdc0c04eb34948cc733cc
Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 5 16:41:56 2024 +0000
Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Mon Aug 5 16:41:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26792509
app-emacs/distel: app-emacs/erlang-mode split
Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
app-emacs/distel/{distel-4.1.1.ebuild => distel-4.1.1-r1.ebuild} | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/app-emacs/distel/distel-4.1.1.ebuild b/app-emacs/distel/distel-4.1.1-r1.ebuild
similarity index 89%
rename from app-emacs/distel/distel-4.1.1.ebuild
rename to app-emacs/distel/distel-4.1.1-r1.ebuild
index bfe7b568b6c5..d66a6d6248cd 100644
--- a/app-emacs/distel/distel-4.1.1.ebuild
+++ b/app-emacs/distel/distel-4.1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -17,7 +17,10 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
-RDEPEND=">=dev-lang/erlang-11.2.5[emacs]"
+RDEPEND="|| (
+ app-emacs/erlang-mode
+ dev-lang/erlang[emacs(-)]
+)"
BDEPEND="${RDEPEND}"
SITEFILE="50${PN}-gentoo.el"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/distel/
@ 2024-08-06 16:53 Maciej Barć
0 siblings, 0 replies; 5+ messages in thread
From: Maciej Barć @ 2024-08-06 16:53 UTC (permalink / raw
To: gentoo-commits
commit: d8cc49b3c6fddaad5a329b696a2320da02782383
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 6 16:52:18 2024 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Aug 6 16:53:26 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8cc49b3
app-emacs/distel: re-add required erlang dependency
Closes: https://bugs.gentoo.org/937424
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
...stel-4.1.1-r1.ebuild => distel-4.1.1-r2.ebuild} | 30 ++++++++++++++++------
1 file changed, 22 insertions(+), 8 deletions(-)
diff --git a/app-emacs/distel/distel-4.1.1-r1.ebuild b/app-emacs/distel/distel-4.1.1-r2.ebuild
similarity index 70%
rename from app-emacs/distel/distel-4.1.1-r1.ebuild
rename to app-emacs/distel/distel-4.1.1-r2.ebuild
index d66a6d6248cd..312c956d10f5 100644
--- a/app-emacs/distel/distel-4.1.1-r1.ebuild
+++ b/app-emacs/distel/distel-4.1.1-r2.ebuild
@@ -1,27 +1,41 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit elisp
DESCRIPTION="Distributed Emacs Lisp for Erlang"
HOMEPAGE="https://massemanet.github.io/distel/
https://www.emacswiki.org/emacs/DistributedEmacsLisp"
-SRC_URI="https://github.com/massemanet/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+if [[ "${PV}" == *9999* ]] ; then
+ inherit git-r3
+
+ EGIT_REPO_URI="https://github.com/massemanet/${PN}.git"
+else
+ SRC_URI="https://github.com/massemanet/${PN}/archive/${PV}.tar.gz
+ -> ${P}.tar.gz"
+
+ KEYWORDS="~amd64 ~x86"
+fi
# "New BSD License" according to https://code.google.com/p/distel/
# "MIT" according to https://github.com/massemanet/distel
LICENSE="BSD MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
IUSE="doc"
-RDEPEND="|| (
- app-emacs/erlang-mode
- dev-lang/erlang[emacs(-)]
-)"
-BDEPEND="${RDEPEND}"
+RDEPEND="
+ dev-lang/erlang
+ || (
+ app-emacs/erlang-mode
+ dev-lang/erlang[emacs(-)]
+ )
+"
+BDEPEND="
+ ${RDEPEND}
+"
SITEFILE="50${PN}-gentoo.el"
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-08-06 16:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-05 16:42 [gentoo-commits] repo/gentoo:master commit in: app-emacs/distel/ Matthew Smith
-- strict thread matches above, loose matches on Subject: below --
2024-08-06 16:53 Maciej Barć
2019-10-15 7:35 Ulrich Müller
2019-09-05 15:05 Ulrich Müller
2018-05-18 12:34 Aaron Bauman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox