public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2017-02-17 20:18 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2017-02-17 20:18 UTC (permalink / raw
  To: gentoo-commits

commit:     2adc9e70501d6a6c56cf1f4b404df5eedd59d694
Author:     Harri Nieminen <moikkis <AT> gmail <DOT> com>
AuthorDate: Fri Feb 17 14:52:47 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Feb 17 20:17:17 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2adc9e70

app-editors/jove: Fix toolong.DESCRIPTION

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3996

 app-editors/jove/jove-4.16.0.73.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/jove/jove-4.16.0.73.ebuild b/app-editors/jove/jove-4.16.0.73.ebuild
index d3d1fcbad2..5bccf72944 100644
--- a/app-editors/jove/jove-4.16.0.73.ebuild
+++ b/app-editors/jove/jove-4.16.0.73.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI=4
 
 inherit eutils toolchain-funcs
 
-DESCRIPTION="Jonathan's Own Version of Emacs - a light emacs-like editor without LISP bindings"
+DESCRIPTION="Jonathan's Own Version of Emacs, a light emacs-like editor without LISP bindings"
 HOMEPAGE="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/"
 SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz"
 


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2019-08-08 19:37 Ulrich Müller
  0 siblings, 0 replies; 13+ messages in thread
From: Ulrich Müller @ 2019-08-08 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     c6e0e902966bbf67aed4887343e38cc5a778db9e
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  8 19:35:24 2019 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Aug  8 19:36:34 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6e0e902

app-editors/jove: Fix compilation with glibc-2.30.

glibc-2.30 no longer provides stropts.h, which shouldn't have been
included in the first place. Suppress its loading (in iproc.c)
by defining _XOPEN_STREAMS=-1.

Bump EAPI to 7.

Closes: https://bugs.gentoo.org/691760
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-editors/jove/jove-4.16.0.73-r1.ebuild | 51 +++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/app-editors/jove/jove-4.16.0.73-r1.ebuild b/app-editors/jove/jove-4.16.0.73-r1.ebuild
new file mode 100644
index 00000000000..3ff695ea5c7
--- /dev/null
+++ b/app-editors/jove/jove-4.16.0.73-r1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Jonathan's Own Version of Emacs, a light emacs-like editor without LISP bindings"
+HOMEPAGE="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/"
+SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz"
+
+LICENSE="JOVE"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc"
+
+RDEPEND="sys-libs/ncurses:0="
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+S="${WORKDIR}/${PN}${PV}"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-4.16.0.70.3.1-getline.patch
+	"${FILESDIR}"/${P}-build.patch
+	"${FILESDIR}"/${P}-sendmail.patch
+	"${FILESDIR}"/${P}-doc.patch
+)
+
+src_compile() {
+	tc-export CC
+
+	emake OPTFLAGS="${CFLAGS}" \
+		SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500 -D_XOPEN_STREAMS=-1" \
+		TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
+
+	if use doc; then
+		# Full manual (*not* man page)
+		emake doc/jove.man
+	fi
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	keepdir /var/lib/jove/preserve
+
+	dodoc README
+	if use doc; then
+		dodoc doc/jove.man
+	fi
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2019-09-04  8:38 Agostino Sarubbo
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo @ 2019-09-04  8:38 UTC (permalink / raw
  To: gentoo-commits

commit:     63e89372c0d67d151c9c13d40257f7f753acfa41
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  4 08:38:39 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Sep  4 08:38:39 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63e89372

app-editors/jove: amd64 stable wrt bug #693388

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-editors/jove/jove-4.16.0.73-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/jove/jove-4.16.0.73-r1.ebuild b/app-editors/jove/jove-4.16.0.73-r1.ebuild
index 3ff695ea5c7..a24ccebc749 100644
--- a/app-editors/jove/jove-4.16.0.73-r1.ebuild
+++ b/app-editors/jove/jove-4.16.0.73-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz"
 
 LICENSE="JOVE"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="doc"
 
 RDEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2019-09-04  9:41 Agostino Sarubbo
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo @ 2019-09-04  9:41 UTC (permalink / raw
  To: gentoo-commits

commit:     a26bfa6bb79d5571e14c145017293e6be482adbb
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  4 09:40:56 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Sep  4 09:40:56 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a26bfa6b

app-editors/jove: x86 stable wrt bug #693388

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-editors/jove/jove-4.16.0.73-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/jove/jove-4.16.0.73-r1.ebuild b/app-editors/jove/jove-4.16.0.73-r1.ebuild
index a24ccebc749..2a08de0ba9b 100644
--- a/app-editors/jove/jove-4.16.0.73-r1.ebuild
+++ b/app-editors/jove/jove-4.16.0.73-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz"
 
 LICENSE="JOVE"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="doc"
 
 RDEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2019-09-05  7:44 Agostino Sarubbo
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo @ 2019-09-05  7:44 UTC (permalink / raw
  To: gentoo-commits

commit:     d703aac3126d4b65441691d86fb95d51efd2fafb
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  5 07:43:59 2019 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Sep  5 07:43:59 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d703aac3

app-editors/jove: ppc stable wrt bug #693388

Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-editors/jove/jove-4.16.0.73-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/jove/jove-4.16.0.73-r1.ebuild b/app-editors/jove/jove-4.16.0.73-r1.ebuild
index 2a08de0ba9b..c6f1bdcef2e 100644
--- a/app-editors/jove/jove-4.16.0.73-r1.ebuild
+++ b/app-editors/jove/jove-4.16.0.73-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz"
 
 LICENSE="JOVE"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="doc"
 
 RDEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2019-09-05 10:49 Ulrich Müller
  0 siblings, 0 replies; 13+ messages in thread
From: Ulrich Müller @ 2019-09-05 10:49 UTC (permalink / raw
  To: gentoo-commits

commit:     d3e12893fa4996ead15d22db3dd6794ebe36873f
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  5 10:48:26 2019 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Sep  5 10:48:59 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e12893

app-editors/jove: Remove old.

Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-editors/jove/jove-4.16.0.73.ebuild | 51 ----------------------------------
 1 file changed, 51 deletions(-)

diff --git a/app-editors/jove/jove-4.16.0.73.ebuild b/app-editors/jove/jove-4.16.0.73.ebuild
deleted file mode 100644
index 72d2a677cad..00000000000
--- a/app-editors/jove/jove-4.16.0.73.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Jonathan's Own Version of Emacs, a light emacs-like editor without LISP bindings"
-HOMEPAGE="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/"
-SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz"
-
-LICENSE="JOVE"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc"
-
-RDEPEND="sys-libs/ncurses"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-S="${WORKDIR}/${PN}${PV}"
-
-src_prepare() {
-	epatch "${FILESDIR}/${PN}-4.16.0.70.3.1-getline.patch"
-	epatch "${FILESDIR}/${P}-build.patch"
-	epatch "${FILESDIR}/${P}-sendmail.patch"
-	epatch "${FILESDIR}/${P}-doc.patch"
-}
-
-src_compile() {
-	tc-export CC
-
-	emake OPTFLAGS="${CFLAGS}" \
-		SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" \
-		TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
-
-	if use doc; then
-		# Full manual (*not* man page)
-		emake doc/jove.man
-	fi
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-	keepdir /var/lib/jove/preserve
-
-	dodoc README
-	if use doc; then
-		dodoc doc/jove.man
-	fi
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2022-02-15 18:49 Ulrich Müller
  0 siblings, 0 replies; 13+ messages in thread
From: Ulrich Müller @ 2022-02-15 18:49 UTC (permalink / raw
  To: gentoo-commits

commit:     a4ff1a1c9a66a3a659358b88b3546f04783285c6
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 15 18:36:47 2022 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Feb 15 18:48:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ff1a1c

app-editors/jove: Version bump to 4.17.3.7

Upstream labels this as a pre-release, so it is _not_ a candidate for
stabilisation.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-editors/jove/Manifest             |  1 +
 app-editors/jove/jove-4.17.3.7.ebuild | 50 +++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/app-editors/jove/Manifest b/app-editors/jove/Manifest
index f8f0ce69df7f..5528d9543721 100644
--- a/app-editors/jove/Manifest
+++ b/app-editors/jove/Manifest
@@ -1 +1,2 @@
+DIST jove-4.17.3.7.tar.gz 490070 BLAKE2B bfe95cc8f78993438839b93ebf37567940449e3914dd1963728ee82dc601c371318a34ea0d5d13d9d4dccaf9c4750874c5e0d3af22dcb2421595dca2da7cafdf SHA512 90bd597bb4be3a4589f77ee331cee4fa2784264221fe6247c2535ae34c5689c08f55c2b2919bff34af5631b73b12883dab54df9770b4157ae801079a23222d9a
 DIST jove4.16.0.73.tgz 465214 BLAKE2B cc1eeca2cdbd7ca98a5deaf27c37bfcdc529f2b388361e0cd5fd6278b72740a06283abd1f60212e6dc0d1e540e4dc4d99edb99b781645b13e1675644db0f38eb SHA512 2198504f9a23590710acba7f27661fa5649fdbed559a4c6bde9d2c1d673c22ce7d99a690be45a4602d37cf6e70399230c4ae3a251d8451af0c5252bdca61b09d

diff --git a/app-editors/jove/jove-4.17.3.7.ebuild b/app-editors/jove/jove-4.17.3.7.ebuild
new file mode 100644
index 000000000000..3c41a1a75685
--- /dev/null
+++ b/app-editors/jove/jove-4.17.3.7.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Jonathan's Own Version of Emacs, a light emacs-like editor without LISP bindings"
+HOMEPAGE="https://github.com/jonmacs/jove"
+SRC_URI="https://github.com/jonmacs/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="JOVE"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc"
+
+RDEPEND="sys-libs/ncurses:0="
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_compile() {
+	tc-export CC
+
+	emake \
+		JOVEHOME="${EPREFIX}/usr" \
+		JMANDIR="${EPREFIX}/usr/share/man/man1" \
+		OPTFLAGS="${CFLAGS}" \
+		LDFLAGS="${LDFLAGS}" \
+		SYSDEFS="-DLinux" \
+		TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
+
+	if use doc; then
+		# Full manual (*not* man page)
+		emake doc/jove.man
+	fi
+}
+
+src_install() {
+	emake \
+		JOVEHOME="${EPREFIX}/usr" \
+		JMANDIR="${EPREFIX}/usr/share/man/man1" \
+		DESTDIR="${D}" \
+		install
+	keepdir /var/lib/jove/preserve
+
+	dodoc README
+	if use doc; then
+		dodoc doc/jove.man
+	fi
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2023-11-07 21:41 Ulrich Müller
  0 siblings, 0 replies; 13+ messages in thread
From: Ulrich Müller @ 2023-11-07 21:41 UTC (permalink / raw
  To: gentoo-commits

commit:     2263720251494e99337b8e38d43196d28fb117f3
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  7 21:40:33 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Nov  7 21:41:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22637202

app-editors/jove: add 4.17.5.3

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-editors/jove/Manifest             |  1 +
 app-editors/jove/jove-4.17.5.3.ebuild | 45 +++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/app-editors/jove/Manifest b/app-editors/jove/Manifest
index 5528d9543721..8829818bbfd3 100644
--- a/app-editors/jove/Manifest
+++ b/app-editors/jove/Manifest
@@ -1,2 +1,3 @@
 DIST jove-4.17.3.7.tar.gz 490070 BLAKE2B bfe95cc8f78993438839b93ebf37567940449e3914dd1963728ee82dc601c371318a34ea0d5d13d9d4dccaf9c4750874c5e0d3af22dcb2421595dca2da7cafdf SHA512 90bd597bb4be3a4589f77ee331cee4fa2784264221fe6247c2535ae34c5689c08f55c2b2919bff34af5631b73b12883dab54df9770b4157ae801079a23222d9a
+DIST jove-4.17.5.3.tar.gz 548835 BLAKE2B 12b1f16d82e84cc2d099e2f45f5a42e2d1e811e5a9685c7ee162280ef49ecef8f7955a98679b60c49bbeaa30e3a430b1d6fc969270bee02862ff284a932829d9 SHA512 f91bdf3145ad243cfe8a4d9aca497a3d2cc58711488fa6b845d0d5e70dece6939046743aae1f18fd2614d75420bb747b00e61bb60b13ff35b26409068df40127
 DIST jove4.16.0.73.tgz 465214 BLAKE2B cc1eeca2cdbd7ca98a5deaf27c37bfcdc529f2b388361e0cd5fd6278b72740a06283abd1f60212e6dc0d1e540e4dc4d99edb99b781645b13e1675644db0f38eb SHA512 2198504f9a23590710acba7f27661fa5649fdbed559a4c6bde9d2c1d673c22ce7d99a690be45a4602d37cf6e70399230c4ae3a251d8451af0c5252bdca61b09d

diff --git a/app-editors/jove/jove-4.17.5.3.ebuild b/app-editors/jove/jove-4.17.5.3.ebuild
new file mode 100644
index 000000000000..503b10d07000
--- /dev/null
+++ b/app-editors/jove/jove-4.17.5.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Jonathan's Own Version of Emacs, a light emacs-like editor without LISP bindings"
+HOMEPAGE="https://github.com/jonmacs/jove"
+SRC_URI="https://github.com/jonmacs/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="JOVE"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc"
+
+RDEPEND="sys-libs/ncurses:0="
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_compile() {
+	tc-export CC
+
+	myopts=(
+		JOVEHOME="${EPREFIX}/usr" \
+		JMANDIR="${EPREFIX}/usr/share/man/man1" \
+		JDOCDIR="${EPREFIX}/usr/share/doc/${PF}" \
+		OPTFLAGS="${CFLAGS}" \
+		LDFLAGS="${LDFLAGS}" \
+		LDLIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)" \
+		SYSDEFS="-DLinux" \
+		$(usev !doc FREFDOCS="")
+	)
+	emake "${myopts[@]}"
+}
+
+src_install() {
+	# The Makefile triggers a rebuild if any of the options have changed
+	# (see recipe for keys.c). So we must pass identical options even if
+	# they're not needed for installation.
+	emake "${myopts[@]}" DESTDIR="${D}" install
+
+	keepdir /var/lib/jove/preserve
+	dodoc README
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2023-11-07 21:41 Ulrich Müller
  0 siblings, 0 replies; 13+ messages in thread
From: Ulrich Müller @ 2023-11-07 21:41 UTC (permalink / raw
  To: gentoo-commits

commit:     f3a2790a32d3742ffeda9e7604e36572f25e1901
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  7 21:40:43 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Nov  7 21:41:16 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3a2790a

app-editors/jove: add github upstream metadata

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-editors/jove/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-editors/jove/metadata.xml b/app-editors/jove/metadata.xml
index 7fc03da65063..33e460068827 100644
--- a/app-editors/jove/metadata.xml
+++ b/app-editors/jove/metadata.xml
@@ -12,4 +12,7 @@
   language specific modes) while weighing in with CPU, memory, and disk
   requirements comparable to vi.
 </longdescription>
+<upstream>
+  <remote-id type="github">jonmacs/jove</remote-id>
+</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2023-12-06 21:20 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2023-12-06 21:20 UTC (permalink / raw
  To: gentoo-commits

commit:     79043610ca429fb4ffe03ef108cce9ff15d487bb
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  6 21:20:15 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Dec  6 21:20:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79043610

app-editors/jove: Stabilize 4.17.5.3 amd64, #919379

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-editors/jove/jove-4.17.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/jove/jove-4.17.5.3.ebuild b/app-editors/jove/jove-4.17.5.3.ebuild
index 503b10d07000..c0969e885750 100644
--- a/app-editors/jove/jove-4.17.5.3.ebuild
+++ b/app-editors/jove/jove-4.17.5.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/jonmacs/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}
 
 LICENSE="JOVE"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="doc"
 
 RDEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2023-12-06 21:20 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2023-12-06 21:20 UTC (permalink / raw
  To: gentoo-commits

commit:     8dfb2a72249161eb3dba77f16220377c3a384e37
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  6 21:20:16 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Dec  6 21:20:16 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dfb2a72

app-editors/jove: Stabilize 4.17.5.3 x86, #919379

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-editors/jove/jove-4.17.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/jove/jove-4.17.5.3.ebuild b/app-editors/jove/jove-4.17.5.3.ebuild
index c0969e885750..89eec469c6be 100644
--- a/app-editors/jove/jove-4.17.5.3.ebuild
+++ b/app-editors/jove/jove-4.17.5.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/jonmacs/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}
 
 LICENSE="JOVE"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="doc"
 
 RDEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2023-12-07  5:57 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2023-12-07  5:57 UTC (permalink / raw
  To: gentoo-commits

commit:     37076c8978e648d048835ff15cf0a948aebf0f89
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  7 05:57:47 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  7 05:57:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37076c89

app-editors/jove: Stabilize 4.17.5.3 ppc, #919379

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-editors/jove/jove-4.17.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/jove/jove-4.17.5.3.ebuild b/app-editors/jove/jove-4.17.5.3.ebuild
index 89eec469c6be..45d502a5e15a 100644
--- a/app-editors/jove/jove-4.17.5.3.ebuild
+++ b/app-editors/jove/jove-4.17.5.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/jonmacs/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}
 
 LICENSE="JOVE"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="doc"
 
 RDEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
@ 2024-11-20 13:06 Ulrich Müller
  0 siblings, 0 replies; 13+ messages in thread
From: Ulrich Müller @ 2024-11-20 13:06 UTC (permalink / raw
  To: gentoo-commits

commit:     4c6e2af9f9e1e5cfb616486b6b56ca043dc30072
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 20 12:58:06 2024 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Nov 20 13:06:09 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c6e2af9

app-editors/jove: drop 4.17.3.7

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-editors/jove/Manifest             |  1 -
 app-editors/jove/jove-4.17.3.7.ebuild | 50 -----------------------------------
 2 files changed, 51 deletions(-)

diff --git a/app-editors/jove/Manifest b/app-editors/jove/Manifest
index 8ee24206e392..02680fa9e6ad 100644
--- a/app-editors/jove/Manifest
+++ b/app-editors/jove/Manifest
@@ -1,2 +1 @@
-DIST jove-4.17.3.7.tar.gz 490070 BLAKE2B bfe95cc8f78993438839b93ebf37567940449e3914dd1963728ee82dc601c371318a34ea0d5d13d9d4dccaf9c4750874c5e0d3af22dcb2421595dca2da7cafdf SHA512 90bd597bb4be3a4589f77ee331cee4fa2784264221fe6247c2535ae34c5689c08f55c2b2919bff34af5631b73b12883dab54df9770b4157ae801079a23222d9a
 DIST jove-4.17.5.3.tar.gz 548835 BLAKE2B 12b1f16d82e84cc2d099e2f45f5a42e2d1e811e5a9685c7ee162280ef49ecef8f7955a98679b60c49bbeaa30e3a430b1d6fc969270bee02862ff284a932829d9 SHA512 f91bdf3145ad243cfe8a4d9aca497a3d2cc58711488fa6b845d0d5e70dece6939046743aae1f18fd2614d75420bb747b00e61bb60b13ff35b26409068df40127

diff --git a/app-editors/jove/jove-4.17.3.7.ebuild b/app-editors/jove/jove-4.17.3.7.ebuild
deleted file mode 100644
index 3c41a1a75685..000000000000
--- a/app-editors/jove/jove-4.17.3.7.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Jonathan's Own Version of Emacs, a light emacs-like editor without LISP bindings"
-HOMEPAGE="https://github.com/jonmacs/jove"
-SRC_URI="https://github.com/jonmacs/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="JOVE"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc"
-
-RDEPEND="sys-libs/ncurses:0="
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_compile() {
-	tc-export CC
-
-	emake \
-		JOVEHOME="${EPREFIX}/usr" \
-		JMANDIR="${EPREFIX}/usr/share/man/man1" \
-		OPTFLAGS="${CFLAGS}" \
-		LDFLAGS="${LDFLAGS}" \
-		SYSDEFS="-DLinux" \
-		TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
-
-	if use doc; then
-		# Full manual (*not* man page)
-		emake doc/jove.man
-	fi
-}
-
-src_install() {
-	emake \
-		JOVEHOME="${EPREFIX}/usr" \
-		JMANDIR="${EPREFIX}/usr/share/man/man1" \
-		DESTDIR="${D}" \
-		install
-	keepdir /var/lib/jove/preserve
-
-	dodoc README
-	if use doc; then
-		dodoc doc/jove.man
-	fi
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-11-20 13:06 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-08 19:37 [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/ Ulrich Müller
  -- strict thread matches above, loose matches on Subject: below --
2024-11-20 13:06 Ulrich Müller
2023-12-07  5:57 Arthur Zamarin
2023-12-06 21:20 Arthur Zamarin
2023-12-06 21:20 Arthur Zamarin
2023-11-07 21:41 Ulrich Müller
2023-11-07 21:41 Ulrich Müller
2022-02-15 18:49 Ulrich Müller
2019-09-05 10:49 Ulrich Müller
2019-09-05  7:44 Agostino Sarubbo
2019-09-04  9:41 Agostino Sarubbo
2019-09-04  8:38 Agostino Sarubbo
2017-02-17 20:18 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox