* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Emacs-PDE/
@ 2017-10-21 3:32 Kent Fredric
0 siblings, 0 replies; 4+ messages in thread
From: Kent Fredric @ 2017-10-21 3:32 UTC (permalink / raw
To: gentoo-commits
commit: 1393eeeab842b492db5b42b03e5759d4f7ab7d31
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 21 03:04:20 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Oct 21 03:04:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1393eeea
dev-perl/Emacs-PDE: EAPI6 + Tests
- EAPI6ify
- Add basic tests ( Upstream has none to speak of )
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r2.ebuild | 42 +++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r2.ebuild b/dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r2.ebuild
new file mode 100644
index 00000000000..e142d1e50d5
--- /dev/null
+++ b/dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=YEWENBIN
+
+inherit perl-module elisp-common
+
+DESCRIPTION="Perl Develop Environment in Emacs"
+
+LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="virtual/emacs"
+DEPEND="dev-perl/Module-Build
+ ${RDEPEND}"
+myconf="--elispdir=${D}${SITELISP}/pde"
+
+src_test() {
+ local MODULES=(
+ "Emacs::PDE ${PV}"
+ "Emacs::PDE::Util"
+ )
+ local failed=()
+ for dep in "${MODULES[@]}"; do
+ ebegin "Compile testing ${dep}"
+ perl -Mblib="${S}" -M"${dep} ()" -e1
+ eend $? || failed+=( "$dep" )
+ done
+ if [[ ${failed[@]} ]]; then
+ echo
+ eerror "One or more modules failed compile:";
+ for dep in "${failed[@]}"; do
+ eerror " ${dep}"
+ done
+ die "Failing due to module compilation errors";
+ fi
+ perl-module_src_test
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Emacs-PDE/
@ 2018-06-08 5:16 Kent Fredric
0 siblings, 0 replies; 4+ messages in thread
From: Kent Fredric @ 2018-06-08 5:16 UTC (permalink / raw
To: gentoo-commits
commit: 4170c0dd1df9a4fedb0dad49d1a6b435be1f3a4a
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 8 05:03:51 2018 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Jun 8 05:15:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4170c0dd
dev-perl/Emacs-PDE: Cleanup old 0.2.16-r1
Package-Manager: Portage-2.3.29, Repoman-2.3.9
dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r1.ebuild | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r1.ebuild b/dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r1.ebuild
deleted file mode 100644
index 967883846fe..00000000000
--- a/dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR="YEWENBIN"
-
-inherit perl-module elisp-common
-
-DESCRIPTION="Perl Develop Environment in Emacs"
-
-LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-RDEPEND="virtual/emacs"
-DEPEND="dev-perl/Module-Build
- ${RDEPEND}"
-myconf="--elispdir=${D}${SITELISP}/pde"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Emacs-PDE/
@ 2020-08-07 20:11 Kent Fredric
0 siblings, 0 replies; 4+ messages in thread
From: Kent Fredric @ 2020-08-07 20:11 UTC (permalink / raw
To: gentoo-commits
commit: b4d57be49e68bfaf4134267cc6456c411d12314f
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 7 20:10:26 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Aug 7 20:10:53 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4d57be4
dev-perl/Emacs-PDE: Bump to version 0.2.17
- EAPI7
- Fix LICENSE
- Remove empty/used variable assignments
- Push myconf closer to src_configure as a guard against variables
being augmented between ebuild sourcing and function execution
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
dev-perl/Emacs-PDE/Emacs-PDE-0.2.17.ebuild | 46 ++++++++++++++++++++++++++++++
dev-perl/Emacs-PDE/Manifest | 1 +
2 files changed, 47 insertions(+)
diff --git a/dev-perl/Emacs-PDE/Emacs-PDE-0.2.17.ebuild b/dev-perl/Emacs-PDE/Emacs-PDE-0.2.17.ebuild
new file mode 100644
index 00000000000..1ebba83a778
--- /dev/null
+++ b/dev-perl/Emacs-PDE/Emacs-PDE-0.2.17.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=YEWENBIN
+DIST_VERSION="v${PV}"
+inherit perl-module elisp-common
+
+DESCRIPTION="Perl Develop Environment in Emacs"
+# Some elisp files are GPL-2+
+# Some templates are FDL-1.1+
+LICENSE="|| ( Artistic GPL-1+ ) GPL-2+ FDL-1.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+RDEPEND=">=app-editors/emacs-23.1:*"
+DEPEND="dev-perl/Module-Build"
+BDEPEND="${RDEPEND}
+ >=dev-perl/Module-Build-0.420.0
+"
+src_configure() {
+ myconf="--elispdir=${D}${SITELISP}/pde"
+ perl-module_src_configure
+}
+src_test() {
+ local MODULES=(
+ "Emacs::PDE ${PV}"
+ "Emacs::PDE::Util"
+ )
+ local failed=()
+ for dep in "${MODULES[@]}"; do
+ ebegin "Compile testing ${dep}"
+ perl -Mblib="${S}" -M"${dep} ()" -e1
+ eend $? || failed+=( "$dep" )
+ done
+ if [[ ${failed[@]} ]]; then
+ echo
+ eerror "One or more modules failed compile:";
+ for dep in "${failed[@]}"; do
+ eerror " ${dep}"
+ done
+ die "Failing due to module compilation errors";
+ fi
+ perl-module_src_test
+}
diff --git a/dev-perl/Emacs-PDE/Manifest b/dev-perl/Emacs-PDE/Manifest
index 0fe965160fa..79d2049127f 100644
--- a/dev-perl/Emacs-PDE/Manifest
+++ b/dev-perl/Emacs-PDE/Manifest
@@ -1 +1,2 @@
DIST Emacs-PDE-0.2.16.tar.gz 619372 BLAKE2B 7d9eb5a7e3c61424b58bab4186efbd4426ac6c94a2043ade3a5de2da060e5eca2c2fc8ab20d5b3bcd3458036bdd8db861aef1ef963e0276e1c759c151843f362 SHA512 ab104070c820a618b0ce05a2d658cca56ad9c0d537e98697a98262c4135486cba2284ee597210dfe8c30348a0fadb9f76455453e17a86a0123618ce076b5565b
+DIST Emacs-PDE-v0.2.17.tar.gz 664587 BLAKE2B 3b80a5643f71801e9117fd266c28acebc3dddbbdb07eb50d0b123afc1e54134090ffb1c04c4421938e702969d79b9ee6f8948e5dbefeeefc21f822e6a5c6ec95 SHA512 66c6044f41d81689d66d6c6b478291323790b569f9611cd6847d30fecdbee4447e5bea0efd816f243e6323e8872934e5cc15399e80cf29568edc625f87bf109f
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Emacs-PDE/
@ 2020-09-10 15:40 Kent Fredric
0 siblings, 0 replies; 4+ messages in thread
From: Kent Fredric @ 2020-09-10 15:40 UTC (permalink / raw
To: gentoo-commits
commit: eee20c306f530c34072a9c9d6c2165b71249a1a8
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 10 15:37:22 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Sep 10 15:37:22 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eee20c30
dev-perl/Emacs-PDE: Cleanup old 0.2.16-r2
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r2.ebuild | 42 ---------------------------
dev-perl/Emacs-PDE/Manifest | 1 -
2 files changed, 43 deletions(-)
diff --git a/dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r2.ebuild b/dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r2.ebuild
deleted file mode 100644
index afa51d4afed..00000000000
--- a/dev-perl/Emacs-PDE/Emacs-PDE-0.2.16-r2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=YEWENBIN
-
-inherit perl-module elisp-common
-
-DESCRIPTION="Perl Develop Environment in Emacs"
-
-LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-RDEPEND=">=app-editors/emacs-23.1:*"
-DEPEND="dev-perl/Module-Build
- ${RDEPEND}"
-myconf="--elispdir=${D}${SITELISP}/pde"
-
-src_test() {
- local MODULES=(
- "Emacs::PDE ${PV}"
- "Emacs::PDE::Util"
- )
- local failed=()
- for dep in "${MODULES[@]}"; do
- ebegin "Compile testing ${dep}"
- perl -Mblib="${S}" -M"${dep} ()" -e1
- eend $? || failed+=( "$dep" )
- done
- if [[ ${failed[@]} ]]; then
- echo
- eerror "One or more modules failed compile:";
- for dep in "${failed[@]}"; do
- eerror " ${dep}"
- done
- die "Failing due to module compilation errors";
- fi
- perl-module_src_test
-}
diff --git a/dev-perl/Emacs-PDE/Manifest b/dev-perl/Emacs-PDE/Manifest
index 79d2049127f..3639bd53a4d 100644
--- a/dev-perl/Emacs-PDE/Manifest
+++ b/dev-perl/Emacs-PDE/Manifest
@@ -1,2 +1 @@
-DIST Emacs-PDE-0.2.16.tar.gz 619372 BLAKE2B 7d9eb5a7e3c61424b58bab4186efbd4426ac6c94a2043ade3a5de2da060e5eca2c2fc8ab20d5b3bcd3458036bdd8db861aef1ef963e0276e1c759c151843f362 SHA512 ab104070c820a618b0ce05a2d658cca56ad9c0d537e98697a98262c4135486cba2284ee597210dfe8c30348a0fadb9f76455453e17a86a0123618ce076b5565b
DIST Emacs-PDE-v0.2.17.tar.gz 664587 BLAKE2B 3b80a5643f71801e9117fd266c28acebc3dddbbdb07eb50d0b123afc1e54134090ffb1c04c4421938e702969d79b9ee6f8948e5dbefeeefc21f822e6a5c6ec95 SHA512 66c6044f41d81689d66d6c6b478291323790b569f9611cd6847d30fecdbee4447e5bea0efd816f243e6323e8872934e5cc15399e80cf29568edc625f87bf109f
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-09-10 15:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-21 3:32 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Emacs-PDE/ Kent Fredric
-- strict thread matches above, loose matches on Subject: below --
2018-06-08 5:16 Kent Fredric
2020-08-07 20:11 Kent Fredric
2020-09-10 15:40 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox