* [gentoo-commits] repo/gentoo:master commit in: app-text/pep/
@ 2018-08-15 19:53 Andreas Sturmlechner
0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2018-08-15 19:53 UTC (permalink / raw
To: gentoo-commits
commit: f957dd20b2016704813be78a6f8c44f3de003f9c
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Aug 1 16:06:20 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 15 19:53:29 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f957dd20
app-text/pep: EAPI7, improve ebuild
app-text/pep/pep-2.8-r2.ebuild | 50 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/app-text/pep/pep-2.8-r2.ebuild b/app-text/pep/pep-2.8-r2.ebuild
new file mode 100644
index 00000000000..8e25853adc3
--- /dev/null
+++ b/app-text/pep/pep-2.8-r2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs flag-o-matic
+
+DESCRIPTION="General purpose filter and file cleaning program"
+HOMEPAGE="http://hannemyr.com/enjoy/pep.html"
+SRC_URI="http://hannemyr.com/enjoy/${PN}${PV//./}.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~ppc ~x86 ~x86-linux ~ppc-macos"
+
+DEPEND="app-arch/unzip"
+
+S=${WORKDIR}
+
+# pep does not come with autconf so here's a patch to configure
+# Makefile with the correct path
+PATCHES=(
+ "${FILESDIR}"/${P}-gentoo.patch
+ "${FILESDIR}"/${P}-include.patch
+)
+
+src_prepare() {
+ default
+ # Darwin lacks stricmp and DIRCHAR
+ if [[ ${CHOST} == *-darwin* ]] ; then
+ sed -i -e '/^OBJS/s/^\(.*\)$/\1 bdmg.o/' Makefile || die
+ append-flags "-Dunix" -DSTRICMP
+ fi
+}
+
+src_compile() {
+ # make man page too
+ make Doc/pep.1 || die "make man page failed"
+ emake CC="$(tc-getCC)"
+}
+
+src_install() {
+ dobin pep
+ doman Doc/pep.1
+
+ insinto /usr/share/pep
+ doins Filters/*
+
+ dodoc aareadme.txt file_id.diz
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/pep/
@ 2018-09-09 9:59 Mikle Kolyada
0 siblings, 0 replies; 5+ messages in thread
From: Mikle Kolyada @ 2018-09-09 9:59 UTC (permalink / raw
To: gentoo-commits
commit: 14ce8dbbe177a691ea5f0dbd70ebc1b83b734ec6
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 9 09:59:08 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Sep 9 09:59:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14ce8dbb
app-text/pep: Drop old
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-text/pep/pep-2.8-r1.ebuild | 49 ------------------------------------------
1 file changed, 49 deletions(-)
diff --git a/app-text/pep/pep-2.8-r1.ebuild b/app-text/pep/pep-2.8-r1.ebuild
deleted file mode 100644
index 59b13dc23d4..00000000000
--- a/app-text/pep/pep-2.8-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils toolchain-funcs flag-o-matic
-
-DESCRIPTION="General purpose filter and file cleaning program"
-HOMEPAGE="http://hannemyr.com/enjoy/pep.html"
-SRC_URI="http://hannemyr.com/enjoy/${PN}${PV//./}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~mips ppc x86 ~x86-linux ~ppc-macos"
-IUSE=""
-
-DEPEND="app-arch/unzip"
-RDEPEND=""
-
-S=${WORKDIR}
-
-src_prepare() {
- # pep does not come with autconf so here's a patch to configure
- # Makefile with the correct path
- epatch \
- "${FILESDIR}"/${P}-gentoo.patch \
- "${FILESDIR}"/${P}-include.patch
- # Darwin lacks stricmp and DIRCHAR
- if [[ ${CHOST} == *-darwin* ]] ; then
- sed -i -e '/^OBJS/s/^\(.*\)$/\1 bdmg.o/' Makefile
- append-flags "-Dunix" -DSTRICMP
- fi
-}
-
-src_compile() {
- # make man page too
- make Doc/pep.1 || die "make man page failed"
- emake CC="$(tc-getCC)" || die "emake failed"
-}
-
-src_install() {
- dobin pep || die "dobin failed"
- doman Doc/pep.1 || die "doman failed"
-
- insinto /usr/share/pep
- doins Filters/* || die "doins failed"
-
- dodoc aareadme.txt file_id.diz
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/pep/
@ 2018-09-09 9:59 Mikle Kolyada
0 siblings, 0 replies; 5+ messages in thread
From: Mikle Kolyada @ 2018-09-09 9:59 UTC (permalink / raw
To: gentoo-commits
commit: 843c641f34dc39fab440aef53c38b4cdf7ffdbb5
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 9 09:58:40 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Sep 9 09:58:40 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=843c641f
app-text/pep: mark stable
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-text/pep/pep-2.8-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-text/pep/pep-2.8-r2.ebuild b/app-text/pep/pep-2.8-r2.ebuild
index 8e25853adc3..a5320f2d727 100644
--- a/app-text/pep/pep-2.8-r2.ebuild
+++ b/app-text/pep/pep-2.8-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://hannemyr.com/enjoy/${PN}${PV//./}.zip"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~x86 ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~mips ppc x86 ~x86-linux ~ppc-macos"
DEPEND="app-arch/unzip"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/pep/
@ 2019-03-20 20:27 Aaron Bauman
0 siblings, 0 replies; 5+ messages in thread
From: Aaron Bauman @ 2019-03-20 20:27 UTC (permalink / raw
To: gentoo-commits
commit: c69f540605dd6dc22315777b1b6551cbccf8f198
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Mar 13 18:09:31 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Mar 20 20:27:10 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c69f5406
app-text/pep: use HTTPS
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
app-text/pep/pep-2.8-r2.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-text/pep/pep-2.8-r2.ebuild b/app-text/pep/pep-2.8-r2.ebuild
index 27ea8d3bc0a..f1864940b8b 100644
--- a/app-text/pep/pep-2.8-r2.ebuild
+++ b/app-text/pep/pep-2.8-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -6,8 +6,8 @@ EAPI=7
inherit toolchain-funcs flag-o-matic
DESCRIPTION="General purpose filter and file cleaning program"
-HOMEPAGE="http://hannemyr.com/enjoy/pep.html"
-SRC_URI="http://hannemyr.com/enjoy/${PN}${PV//./}.zip -> ${P}.zip"
+HOMEPAGE="https://hannemyr.com/enjoy/pep.html"
+SRC_URI="https://hannemyr.com/enjoy/${PN}${PV//./}.zip -> ${P}.zip"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-text/pep/
@ 2021-11-06 5:57 Sam James
0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2021-11-06 5:57 UTC (permalink / raw
To: gentoo-commits
commit: 07bbc4a98c82d44fc160cd9bb2cb915a0b7c6fba
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 6 05:55:32 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 6 05:55:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07bbc4a9
app-text/pep: use 'emake', not 'make'
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-text/pep/pep-2.8-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-text/pep/pep-2.8-r2.ebuild b/app-text/pep/pep-2.8-r2.ebuild
index e38782d4b5f..288dacb2649 100644
--- a/app-text/pep/pep-2.8-r2.ebuild
+++ b/app-text/pep/pep-2.8-r2.ebuild
@@ -17,7 +17,7 @@ BDEPEND="app-arch/unzip"
S=${WORKDIR}
-# pep does not come with autconf so here's a patch to configure
+# pep does not come with autoconf so here's a patch to configure
# Makefile with the correct path
PATCHES=(
"${FILESDIR}"/${P}-gentoo.patch
@@ -35,7 +35,7 @@ src_prepare() {
src_compile() {
# make man page too
- make Doc/pep.1 || die "make man page failed"
+ emake Doc/pep.1
emake CC="$(tc-getCC)"
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-11-06 5:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-20 20:27 [gentoo-commits] repo/gentoo:master commit in: app-text/pep/ Aaron Bauman
-- strict thread matches above, loose matches on Subject: below --
2021-11-06 5:57 Sam James
2018-09-09 9:59 Mikle Kolyada
2018-09-09 9:59 Mikle Kolyada
2018-08-15 19:53 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox