[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2024-06-08 Thread Arthur Zamarin
commit: 9e36e3f5e3cdfdba30b5720aa881f1c36a4834bb
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat Jun  8 10:10:58 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jun  8 12:02:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e36e3f5

app-editors/moe: fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>

Closes: https://bugs.gentoo.org/881629
Closes: https://github.com/gentoo/gentoo/pull/37079
Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/app-editors/moe/moe-1.12.ebuild b/app-editors/moe/moe-1.12.ebuild
index 83d00419afd1..2669fcffdb1d 100644
--- a/app-editors/moe/moe-1.12.ebuild
+++ b/app-editors/moe/moe-1.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -9,7 +9,7 @@ DESCRIPTION="A powerful and user-friendly console text editor"
 HOMEPAGE="https://www.gnu.org/software/moe/";
 SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
 
-LICENSE="GPL-3"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 arm ~riscv x86 ~amd64-linux ~x86-linux"
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/, app-editors/moe/files/

2024-06-08 Thread Arthur Zamarin
commit: 55397f68967ec1c18586da8353cab3a390719e7e
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat Jun  8 10:09:45 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jun  8 12:02:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55397f68

app-editors/moe: add 1.14

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/moe/Manifest   |  1 +
 .../moe/files/moe-1.14-respect-user-flags.patch| 17 ++
 app-editors/moe/moe-1.14.ebuild| 27 ++
 3 files changed, 45 insertions(+)

diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest
index d14cfd3430ca..201bd1d7c0fa 100644
--- a/app-editors/moe/Manifest
+++ b/app-editors/moe/Manifest
@@ -1 +1,2 @@
 DIST moe-1.12.tar.lz 87917 BLAKE2B 
b036b24193045cd5c64812af13e6cf542700e649e78f3ba416501d0915c0ac2eef09bebdb333d145e0428dfacdccef431588ce93b1f407a41a7bd7e0acbc163c
 SHA512 
f0d5daba70d0018ce82d6673749b8f688c0bac58de7684cc24f5badffd6868d425c9f771404186ab5cec12ab94c3e20af870bd920bfef0432a622925838ebed7
+DIST moe-1.14.tar.lz 92905 BLAKE2B 
c4adb3ca00f48c6a36547da063aa1ce9327823fed26eb9e0ac25d837b5df207988c2259156bb841727463b74de450d2cb0475746a0e19d926aeb65ac38079561
 SHA512 
db45f7c05b9a1a06085b2604eb8e9857caeb7d3a56a4815df208806bbbf19cc47b19776619635c70860142cb8bb775c0eaf31b9b07698cc83b74f1c6d6f47d5c

diff --git a/app-editors/moe/files/moe-1.14-respect-user-flags.patch 
b/app-editors/moe/files/moe-1.14-respect-user-flags.patch
new file mode 100644
index ..8616c8095962
--- /dev/null
+++ b/app-editors/moe/files/moe-1.14-respect-user-flags.patch
@@ -0,0 +1,17 @@
+--- a/configure
 b/configure
+@@ -21,11 +21,9 @@
+ infodir='$(datarootdir)/info'
+ mandir='$(datarootdir)/man'
+ sysconfdir='$(prefix)/etc'
+-CXX=g++
+-CPPFLAGS=
+-CXXFLAGS='-Wall -W -O2'
+-LDFLAGS=
+-LIBS=-lncurses
++CPPFLAGS="$(${PKG_CONFIG} --cflags ncurses) ${CPPFLAGS}"
++CXXFLAGS="-Wall -W ${CXXFLAGS}"
++LIBS="$(${PKG_CONFIG} --libs ncurses) ${LIBS}"
+ MAKEINFO=makeinfo
+ 
+ # checking whether we are using GNU C++.

diff --git a/app-editors/moe/moe-1.14.ebuild b/app-editors/moe/moe-1.14.ebuild
new file mode 100644
index ..90da6b924e76
--- /dev/null
+++ b/app-editors/moe/moe-1.14.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="Powerful and user-friendly console text editor"
+HOMEPAGE="https://www.gnu.org/software/moe/";
+SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="sys-libs/ncurses:="
+DEPEND="${RDEPEND}"
+BDEPEND="
+   $(unpacker_src_uri_depends)
+   virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/${P}-respect-user-flags.patch )
+
+src_configure() {
+   tc-export CXX PKG_CONFIG
+   default
+}



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/files/, app-editors/moe/

2022-09-23 Thread Andreas Sturmlechner
commit: 0c4e4d9d383a1de41034ef1fea05e042673fd15c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Aug 29 18:48:25 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Sep 23 20:07:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c4e4d9d

app-editors/moe: drop 1.10, EAPI-6--

Closes: https://bugs.gentoo.org/865435
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-editors/moe/Manifest  |  1 -
 app-editors/moe/files/moe-1.6-tinfo.patch | 11 --
 app-editors/moe/moe-1.10.ebuild   | 36 ---
 3 files changed, 48 deletions(-)

diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest
index 25c9c6f62920..d14cfd3430ca 100644
--- a/app-editors/moe/Manifest
+++ b/app-editors/moe/Manifest
@@ -1,2 +1 @@
-DIST moe-1.10.tar.lz 84050 BLAKE2B 
2e49aba27cdd603fbc9a4eb0fef5e086a527087d72f30f68beb4e3389de0ccdd85fec5bf753b3187d64cd6549ac5738c89e94c543c141f88896c580e7c33ad42
 SHA512 
3908d7906aa7dcb8bd4a5d340fe94b06fc91814098c20e8939906c2b0e03e1a8a3c95847b5f8111a5d9f37636a2fafa52f9105e0e8fa0ad8b16c2f9e9dede748
 DIST moe-1.12.tar.lz 87917 BLAKE2B 
b036b24193045cd5c64812af13e6cf542700e649e78f3ba416501d0915c0ac2eef09bebdb333d145e0428dfacdccef431588ce93b1f407a41a7bd7e0acbc163c
 SHA512 
f0d5daba70d0018ce82d6673749b8f688c0bac58de7684cc24f5badffd6868d425c9f771404186ab5cec12ab94c3e20af870bd920bfef0432a622925838ebed7

diff --git a/app-editors/moe/files/moe-1.6-tinfo.patch 
b/app-editors/moe/files/moe-1.6-tinfo.patch
deleted file mode 100644
index 5a94ec599e89..
--- a/app-editors/moe/files/moe-1.6-tinfo.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/Makefile.in.orig 2014-11-03 00:33:57.152593136 +0300
-+++ b/Makefile.in  2014-11-03 00:34:21.121592519 +0300
-@@ -4,7 +4,7 @@
- INSTALL_PROGRAM = $(INSTALL) -m 755
- INSTALL_DATA = $(INSTALL) -m 644
- INSTALL_DIR = $(INSTALL) -d -m 755
--LIBS = -lncurses
-+LIBS = $(shell ${PKG_CONFIG} --libs ncurses)
- SHELL = /bin/sh
- 
- edobjs = basic_buffer.o block.o buffer.o buffer_handle.o \

diff --git a/app-editors/moe/moe-1.10.ebuild b/app-editors/moe/moe-1.10.ebuild
deleted file mode 100644
index 6d9028d722c4..
--- a/app-editors/moe/moe-1.10.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs unpacker
-
-DESCRIPTION="A powerful and user-friendly console text editor"
-HOMEPAGE="https://www.gnu.org/software/moe/";
-SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 arm x86 amd64-linux ~x86-linux"
-
-RDEPEND="
-   sys-libs/ncurses:0=
-"
-DEPEND="
-   $(unpacker_src_uri_depends)
-   ${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   tc-export CXX PKG_CONFIG
-   sed -i \
-   -e "/^CXXFLAGS=/d" \
-   -e "/^LDFLAGS=/d" \
-   -e  "/^CXX=/d" \
-   configure || die "sed on configure failed"
-
-   eapply_user
-
-   eapply "${FILESDIR}/${PN}-1.6-tinfo.patch"
-}



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2022-08-29 Thread Jakov Smolić
commit: f4becbf1c5a1e3915faf4fcfdb2910fff2745265
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Aug 29 19:31:24 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Aug 29 19:31:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4becbf1

app-editors/moe: stabilize 1.12 for arm

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/app-editors/moe/moe-1.12.ebuild b/app-editors/moe/moe-1.12.ebuild
index db582752da2c..83d00419afd1 100644
--- a/app-editors/moe/moe-1.12.ebuild
+++ b/app-editors/moe/moe-1.12.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~riscv x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="sys-libs/ncurses:="
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2022-08-29 Thread Agostino Sarubbo
commit: 068ada5056d0925fac0a6f7f82f5cc5db8a44aea
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Aug 29 18:44:36 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Aug 29 18:44:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=068ada50

app-editors/moe: amd64 stable wrt bug #865435

Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-editors/moe/moe-1.12.ebuild b/app-editors/moe/moe-1.12.ebuild
index 8c5cdd983499..db582752da2c 100644
--- a/app-editors/moe/moe-1.12.ebuild
+++ b/app-editors/moe/moe-1.12.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~riscv x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="sys-libs/ncurses:="
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2022-08-29 Thread Agostino Sarubbo
commit: 50f63ff8733425da4b77a66dd787867ab6eebb93
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Aug 29 07:19:20 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Aug 29 07:19:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50f63ff8

app-editors/moe: x86 stable wrt bug #865435

Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-editors/moe/moe-1.12.ebuild b/app-editors/moe/moe-1.12.ebuild
index 5b893619380a..8c5cdd983499 100644
--- a/app-editors/moe/moe-1.12.ebuild
+++ b/app-editors/moe/moe-1.12.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~riscv x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="sys-libs/ncurses:="
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/files/, app-editors/moe/

2022-07-31 Thread David Seifert
commit: b082eeda0734cd2695ad00fba618e465b85e9d6d
Author: David Seifert  gentoo  org>
AuthorDate: Sun Jul 31 11:34:18 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Jul 31 11:34:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b082eeda

app-editors/moe: add 1.12

Signed-off-by: David Seifert  gentoo.org>

 app-editors/moe/Manifest   |  1 +
 .../moe/files/moe-1.12-respect-user-flags.patch| 17 ++
 app-editors/moe/moe-1.12.ebuild| 27 ++
 3 files changed, 45 insertions(+)

diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest
index fda80cb2889c..12f164fcd297 100644
--- a/app-editors/moe/Manifest
+++ b/app-editors/moe/Manifest
@@ -1,3 +1,4 @@
 DIST moe-1.10.tar.lz 84050 BLAKE2B 
2e49aba27cdd603fbc9a4eb0fef5e086a527087d72f30f68beb4e3389de0ccdd85fec5bf753b3187d64cd6549ac5738c89e94c543c141f88896c580e7c33ad42
 SHA512 
3908d7906aa7dcb8bd4a5d340fe94b06fc91814098c20e8939906c2b0e03e1a8a3c95847b5f8111a5d9f37636a2fafa52f9105e0e8fa0ad8b16c2f9e9dede748
 DIST moe-1.11.tar.lz 89532 BLAKE2B 
8479c8bb0504e614b4ad87e47ae89d1f0eb23141ff71ef3e46eb316424dfe87150f2d9474e1dbd3510fa9b1da517bd6afe47b2cd36f1aa70630b371f0f6bec3a
 SHA512 
147f3500909739371290fc2f703ef5fab286d2ca385f6808ee3e0cb1cbae2ed58a0b5046d30ad5d24215dc28d77f0bba4efacb144c116209d89d023e731e8a39
+DIST moe-1.12.tar.lz 87917 BLAKE2B 
b036b24193045cd5c64812af13e6cf542700e649e78f3ba416501d0915c0ac2eef09bebdb333d145e0428dfacdccef431588ce93b1f407a41a7bd7e0acbc163c
 SHA512 
f0d5daba70d0018ce82d6673749b8f688c0bac58de7684cc24f5badffd6868d425c9f771404186ab5cec12ab94c3e20af870bd920bfef0432a622925838ebed7
 DIST moe-1.9.tar.lz 82046 BLAKE2B 
9144dfc4ce17bc04f3ad9aa9ec271f173df6c581705e5d922a346f94c086a97af9429478c016d7081c1fd38787055666504f04d25a8b9f5c1020dc147aaafdb0
 SHA512 
277700e4a796e1a7aee42de55ba4599a350a612f95a1a2eca5078d85f6f9a7db190fb5611eb2f286c98580af847a2934bf38a4bce10176db4c5cddc2d257f929

diff --git a/app-editors/moe/files/moe-1.12-respect-user-flags.patch 
b/app-editors/moe/files/moe-1.12-respect-user-flags.patch
new file mode 100644
index ..2a83cb7d4c2f
--- /dev/null
+++ b/app-editors/moe/files/moe-1.12-respect-user-flags.patch
@@ -0,0 +1,17 @@
+--- a/configure
 b/configure
+@@ -21,11 +21,9 @@
+ infodir='$(datarootdir)/info'
+ mandir='$(datarootdir)/man'
+ sysconfdir='$(prefix)/etc'
+-CXX=g++
+-CPPFLAGS=
+-CXXFLAGS='-Wall -W -O2'
+-LDFLAGS=
+-LIBS=-lncurses
++CPPFLAGS="$(${PKG_CONFIG} --cflags ncurses) ${CPPFLAGS}"
++CXXFLAGS="-Wall -W ${CXXFLAGS}"
++LIBS="$(${PKG_CONFIG} --libs ncurses) ${LIBS}"
+ 
+ # checking whether we are using GNU C++.
+ /bin/sh -c "${CXX} --version" > /dev/null 2>&1 || { CXX=c++ ; CXXFLAGS=-O2 ; }

diff --git a/app-editors/moe/moe-1.12.ebuild b/app-editors/moe/moe-1.12.ebuild
new file mode 100644
index ..5b893619380a
--- /dev/null
+++ b/app-editors/moe/moe-1.12.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="A powerful and user-friendly console text editor"
+HOMEPAGE="https://www.gnu.org/software/moe/";
+SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="sys-libs/ncurses:="
+DEPEND="${RDEPEND}"
+BDEPEND="
+   $(unpacker_src_uri_depends)
+   virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.12-respect-user-flags.patch )
+
+src_configure() {
+   tc-export CXX PKG_CONFIG
+   default
+}



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2022-07-31 Thread David Seifert
commit: 9f84029f139b4fe4af7a503d14d1d7297e982eeb
Author: David Seifert  gentoo  org>
AuthorDate: Sun Jul 31 11:34:19 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Jul 31 11:34:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f84029f

app-editors/moe: drop 1.9, 1.11

Signed-off-by: David Seifert  gentoo.org>

 app-editors/moe/Manifest|  2 --
 app-editors/moe/moe-1.11.ebuild | 36 
 app-editors/moe/moe-1.9.ebuild  | 36 
 3 files changed, 74 deletions(-)

diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest
index 12f164fcd297..25c9c6f62920 100644
--- a/app-editors/moe/Manifest
+++ b/app-editors/moe/Manifest
@@ -1,4 +1,2 @@
 DIST moe-1.10.tar.lz 84050 BLAKE2B 
2e49aba27cdd603fbc9a4eb0fef5e086a527087d72f30f68beb4e3389de0ccdd85fec5bf753b3187d64cd6549ac5738c89e94c543c141f88896c580e7c33ad42
 SHA512 
3908d7906aa7dcb8bd4a5d340fe94b06fc91814098c20e8939906c2b0e03e1a8a3c95847b5f8111a5d9f37636a2fafa52f9105e0e8fa0ad8b16c2f9e9dede748
-DIST moe-1.11.tar.lz 89532 BLAKE2B 
8479c8bb0504e614b4ad87e47ae89d1f0eb23141ff71ef3e46eb316424dfe87150f2d9474e1dbd3510fa9b1da517bd6afe47b2cd36f1aa70630b371f0f6bec3a
 SHA512 
147f3500909739371290fc2f703ef5fab286d2ca385f6808ee3e0cb1cbae2ed58a0b5046d30ad5d24215dc28d77f0bba4efacb144c116209d89d023e731e8a39
 DIST moe-1.12.tar.lz 87917 BLAKE2B 
b036b24193045cd5c64812af13e6cf542700e649e78f3ba416501d0915c0ac2eef09bebdb333d145e0428dfacdccef431588ce93b1f407a41a7bd7e0acbc163c
 SHA512 
f0d5daba70d0018ce82d6673749b8f688c0bac58de7684cc24f5badffd6868d425c9f771404186ab5cec12ab94c3e20af870bd920bfef0432a622925838ebed7
-DIST moe-1.9.tar.lz 82046 BLAKE2B 
9144dfc4ce17bc04f3ad9aa9ec271f173df6c581705e5d922a346f94c086a97af9429478c016d7081c1fd38787055666504f04d25a8b9f5c1020dc147aaafdb0
 SHA512 
277700e4a796e1a7aee42de55ba4599a350a612f95a1a2eca5078d85f6f9a7db190fb5611eb2f286c98580af847a2934bf38a4bce10176db4c5cddc2d257f929

diff --git a/app-editors/moe/moe-1.11.ebuild b/app-editors/moe/moe-1.11.ebuild
deleted file mode 100644
index 18bd0460ec98..
--- a/app-editors/moe/moe-1.11.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs unpacker
-
-DESCRIPTION="A powerful and user-friendly console text editor"
-HOMEPAGE="https://www.gnu.org/software/moe/";
-SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   sys-libs/ncurses:0=
-"
-DEPEND="
-   $(unpacker_src_uri_depends)
-   ${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   tc-export CXX PKG_CONFIG
-   sed -i \
-   -e "/^CXXFLAGS=/d" \
-   -e "/^LDFLAGS=/d" \
-   -e  "/^CXX=/d" \
-   configure || die "sed on configure failed"
-
-   eapply_user
-
-   eapply "${FILESDIR}/${PN}-1.6-tinfo.patch"
-}

diff --git a/app-editors/moe/moe-1.9.ebuild b/app-editors/moe/moe-1.9.ebuild
deleted file mode 100644
index 0e627addb662..
--- a/app-editors/moe/moe-1.9.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs unpacker
-
-DESCRIPTION="A powerful and user-friendly console text editor"
-HOMEPAGE="https://www.gnu.org/software/moe/";
-SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   sys-libs/ncurses:0=
-"
-DEPEND="
-   $(unpacker_src_uri_depends)
-   ${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   tc-export CXX PKG_CONFIG
-   sed -i \
-   -e "/^CXXFLAGS=/d" \
-   -e "/^LDFLAGS=/d" \
-   -e  "/^CXX=/d" \
-   configure || die "sed on configure failed"
-
-   eapply_user
-
-   eapply "${FILESDIR}/${PN}-1.6-tinfo.patch"
-}



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2021-01-20 Thread Mikle Kolyada
commit: a1d92fcb211d1d5c644599db3316d10014d45bc8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jan 20 10:02:14 2021 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jan 20 10:03:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1d92fcb

app-editors/moe: Version bump (v1.11)

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Mikle Kolyada  gentoo.org>

 app-editors/moe/Manifest|  1 +
 app-editors/moe/moe-1.11.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest
index 3ffc676..fda80cb2889 100644
--- a/app-editors/moe/Manifest
+++ b/app-editors/moe/Manifest
@@ -1,2 +1,3 @@
 DIST moe-1.10.tar.lz 84050 BLAKE2B 
2e49aba27cdd603fbc9a4eb0fef5e086a527087d72f30f68beb4e3389de0ccdd85fec5bf753b3187d64cd6549ac5738c89e94c543c141f88896c580e7c33ad42
 SHA512 
3908d7906aa7dcb8bd4a5d340fe94b06fc91814098c20e8939906c2b0e03e1a8a3c95847b5f8111a5d9f37636a2fafa52f9105e0e8fa0ad8b16c2f9e9dede748
+DIST moe-1.11.tar.lz 89532 BLAKE2B 
8479c8bb0504e614b4ad87e47ae89d1f0eb23141ff71ef3e46eb316424dfe87150f2d9474e1dbd3510fa9b1da517bd6afe47b2cd36f1aa70630b371f0f6bec3a
 SHA512 
147f3500909739371290fc2f703ef5fab286d2ca385f6808ee3e0cb1cbae2ed58a0b5046d30ad5d24215dc28d77f0bba4efacb144c116209d89d023e731e8a39
 DIST moe-1.9.tar.lz 82046 BLAKE2B 
9144dfc4ce17bc04f3ad9aa9ec271f173df6c581705e5d922a346f94c086a97af9429478c016d7081c1fd38787055666504f04d25a8b9f5c1020dc147aaafdb0
 SHA512 
277700e4a796e1a7aee42de55ba4599a350a612f95a1a2eca5078d85f6f9a7db190fb5611eb2f286c98580af847a2934bf38a4bce10176db4c5cddc2d257f929

diff --git a/app-editors/moe/moe-1.11.ebuild b/app-editors/moe/moe-1.11.ebuild
new file mode 100644
index 000..690bdeff457
--- /dev/null
+++ b/app-editors/moe/moe-1.11.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="A powerful and user-friendly console text editor"
+HOMEPAGE="https://www.gnu.org/software/moe/";
+SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   sys-libs/ncurses:0=
+"
+DEPEND="
+   $(unpacker_src_uri_depends)
+   ${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   tc-export CXX PKG_CONFIG
+   sed -i \
+   -e "/^CXXFLAGS=/d" \
+   -e "/^LDFLAGS=/d" \
+   -e  "/^CXX=/d" \
+   configure || die "sed on configure failed"
+
+   eapply_user
+
+   eapply "${FILESDIR}/${PN}-1.6-tinfo.patch"
+}



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2021-01-20 Thread Mikle Kolyada
commit: 6a1e0cc7ab4007da1bd6ca05efda9976310b0d6d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Jan 20 10:02:58 2021 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jan 20 10:03:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a1e0cc7

app-editors/moe: mark stable

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Mikle Kolyada  gentoo.org>

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

diff --git a/app-editors/moe/moe-1.10.ebuild b/app-editors/moe/moe-1.10.ebuild
index f530b53537f..6d9028d722c 100644
--- a/app-editors/moe/moe-1.10.ebuild
+++ b/app-editors/moe/moe-1.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm x86 amd64-linux ~x86-linux"
 
 RDEPEND="
sys-libs/ncurses:0=



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2019-01-10 Thread Mikle Kolyada
commit: 7015ade522e6b253f1bf6af36b2f8c2f115ee29c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jan 10 13:02:57 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jan 10 13:03:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7015ade5

app-editors/moe: Version bump (v1.10)

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-editors/moe/Manifest|  1 +
 app-editors/moe/moe-1.10.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest
index 0434c417392..c1aa7470986 100644
--- a/app-editors/moe/Manifest
+++ b/app-editors/moe/Manifest
@@ -1,2 +1,3 @@
+DIST moe-1.10.tar.lz 84050 BLAKE2B 
2e49aba27cdd603fbc9a4eb0fef5e086a527087d72f30f68beb4e3389de0ccdd85fec5bf753b3187d64cd6549ac5738c89e94c543c141f88896c580e7c33ad42
 SHA512 
3908d7906aa7dcb8bd4a5d340fe94b06fc91814098c20e8939906c2b0e03e1a8a3c95847b5f8111a5d9f37636a2fafa52f9105e0e8fa0ad8b16c2f9e9dede748
 DIST moe-1.6.tar.lz 75108 BLAKE2B 
0d675ceecea6670fe24e860d030ef43905add64334d0769d24a57fb3b0cc421e7065c6d36df7e2c154db66936ab8849f9bf42288767810aec34db4261fef23f6
 SHA512 
0aa717c865d41f73adccddbb158ae67b611a64f24258bcce5a68fea8175d28d6db55a0fb356fb294bfe3106c0973607b1fcc76ceee17d360e30eb80650ec043b
 DIST moe-1.9.tar.lz 82046 BLAKE2B 
9144dfc4ce17bc04f3ad9aa9ec271f173df6c581705e5d922a346f94c086a97af9429478c016d7081c1fd38787055666504f04d25a8b9f5c1020dc147aaafdb0
 SHA512 
277700e4a796e1a7aee42de55ba4599a350a612f95a1a2eca5078d85f6f9a7db190fb5611eb2f286c98580af847a2934bf38a4bce10176db4c5cddc2d257f929

diff --git a/app-editors/moe/moe-1.10.ebuild b/app-editors/moe/moe-1.10.ebuild
new file mode 100644
index 000..f530b53537f
--- /dev/null
+++ b/app-editors/moe/moe-1.10.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="A powerful and user-friendly console text editor"
+HOMEPAGE="https://www.gnu.org/software/moe/";
+SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   sys-libs/ncurses:0=
+"
+DEPEND="
+   $(unpacker_src_uri_depends)
+   ${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   tc-export CXX PKG_CONFIG
+   sed -i \
+   -e "/^CXXFLAGS=/d" \
+   -e "/^LDFLAGS=/d" \
+   -e  "/^CXX=/d" \
+   configure || die "sed on configure failed"
+
+   eapply_user
+
+   eapply "${FILESDIR}/${PN}-1.6-tinfo.patch"
+}



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2019-01-10 Thread Mikle Kolyada
commit: ef5066b1bd55b214a66b855b0eda1b381d9ebb10
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jan 10 13:03:44 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jan 10 13:03:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef5066b1

app-editors/moe: Drop old

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-editors/moe/Manifest   |  1 -
 app-editors/moe/moe-1.6.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest
index c1aa7470986..3ffc676 100644
--- a/app-editors/moe/Manifest
+++ b/app-editors/moe/Manifest
@@ -1,3 +1,2 @@
 DIST moe-1.10.tar.lz 84050 BLAKE2B 
2e49aba27cdd603fbc9a4eb0fef5e086a527087d72f30f68beb4e3389de0ccdd85fec5bf753b3187d64cd6549ac5738c89e94c543c141f88896c580e7c33ad42
 SHA512 
3908d7906aa7dcb8bd4a5d340fe94b06fc91814098c20e8939906c2b0e03e1a8a3c95847b5f8111a5d9f37636a2fafa52f9105e0e8fa0ad8b16c2f9e9dede748
-DIST moe-1.6.tar.lz 75108 BLAKE2B 
0d675ceecea6670fe24e860d030ef43905add64334d0769d24a57fb3b0cc421e7065c6d36df7e2c154db66936ab8849f9bf42288767810aec34db4261fef23f6
 SHA512 
0aa717c865d41f73adccddbb158ae67b611a64f24258bcce5a68fea8175d28d6db55a0fb356fb294bfe3106c0973607b1fcc76ceee17d360e30eb80650ec043b
 DIST moe-1.9.tar.lz 82046 BLAKE2B 
9144dfc4ce17bc04f3ad9aa9ec271f173df6c581705e5d922a346f94c086a97af9429478c016d7081c1fd38787055666504f04d25a8b9f5c1020dc147aaafdb0
 SHA512 
277700e4a796e1a7aee42de55ba4599a350a612f95a1a2eca5078d85f6f9a7db190fb5611eb2f286c98580af847a2934bf38a4bce10176db4c5cddc2d257f929

diff --git a/app-editors/moe/moe-1.6.ebuild b/app-editors/moe/moe-1.6.ebuild
deleted file mode 100644
index 85f0a9065dc..000
--- a/app-editors/moe/moe-1.6.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils toolchain-funcs unpacker
-
-DESCRIPTION="A powerful and user-friendly console text editor"
-HOMEPAGE="https://www.gnu.org/software/moe/";
-SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   sys-libs/ncurses:0=
-"
-DEPEND="
-   $(unpacker_src_uri_depends)
-   ${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   tc-export CXX PKG_CONFIG
-   sed -i \
-   -e "/^CXXFLAGS=/d" \
-   -e "/^LDFLAGS=/d" \
-   -e  "/^CXX=/d" \
-   configure || die "sed on configure failed"
-
-   epatch_user
-
-   epatch "${FILESDIR}/${P}-tinfo.patch"
-}



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2018-08-15 Thread Mikle Kolyada
commit: f6dfc22068d0d7b82f11fc94f3329514bd67527d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Aug 15 19:53:36 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Aug 15 19:53:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6dfc220

app-editors/moe: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-editors/moe/Manifest   |  1 -
 app-editors/moe/moe-1.7.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest
index 138b65fae76..0434c417392 100644
--- a/app-editors/moe/Manifest
+++ b/app-editors/moe/Manifest
@@ -1,3 +1,2 @@
 DIST moe-1.6.tar.lz 75108 BLAKE2B 
0d675ceecea6670fe24e860d030ef43905add64334d0769d24a57fb3b0cc421e7065c6d36df7e2c154db66936ab8849f9bf42288767810aec34db4261fef23f6
 SHA512 
0aa717c865d41f73adccddbb158ae67b611a64f24258bcce5a68fea8175d28d6db55a0fb356fb294bfe3106c0973607b1fcc76ceee17d360e30eb80650ec043b
-DIST moe-1.7.tar.lz 79644 BLAKE2B 
e4e353d1daba8b40842d86a0821c8a0668bbe9e6875b988190f870b8fd637ee3f0006ca088f9aeb1dedcc69b17c45ced4167ffb248adb429531516b64229caee
 SHA512 
e961291c55e5b2af09e3b5cb0d07b557b0af1f6143339390e5b06f4bdebace888f7c3866ec936bd20f25b23cc96fdfdb7bd3da6690e684ec24513b106ae53b49
 DIST moe-1.9.tar.lz 82046 BLAKE2B 
9144dfc4ce17bc04f3ad9aa9ec271f173df6c581705e5d922a346f94c086a97af9429478c016d7081c1fd38787055666504f04d25a8b9f5c1020dc147aaafdb0
 SHA512 
277700e4a796e1a7aee42de55ba4599a350a612f95a1a2eca5078d85f6f9a7db190fb5611eb2f286c98580af847a2934bf38a4bce10176db4c5cddc2d257f929

diff --git a/app-editors/moe/moe-1.7.ebuild b/app-editors/moe/moe-1.7.ebuild
deleted file mode 100644
index c7f8b897e55..000
--- a/app-editors/moe/moe-1.7.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils toolchain-funcs unpacker
-
-DESCRIPTION="A powerful and user-friendly console text editor"
-HOMEPAGE="https://www.gnu.org/software/moe/";
-SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   sys-libs/ncurses:0=
-"
-DEPEND="
-   $(unpacker_src_uri_depends)
-   ${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   tc-export CXX PKG_CONFIG
-   sed -i \
-   -e "/^CXXFLAGS=/d" \
-   -e "/^LDFLAGS=/d" \
-   -e  "/^CXX=/d" \
-   configure || die "sed on configure failed"
-
-   epatch_user
-
-   epatch "${FILESDIR}/${PN}-1.6-tinfo.patch"
-}



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2018-08-15 Thread Mikle Kolyada
commit: 3f06040ab5e9c5264c3d226e57a588da2c449cb5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Aug 15 19:52:26 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Aug 15 19:52:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f06040a

app-editors/moe: mark stable

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/app-editors/moe/moe-1.9.ebuild b/app-editors/moe/moe-1.9.ebuild
index c511c32637f..0e627addb66 100644
--- a/app-editors/moe/moe-1.9.ebuild
+++ b/app-editors/moe/moe-1.9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
sys-libs/ncurses:0=



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/, app-editors/moe/files/

2018-05-11 Thread Mikle Kolyada
commit: f41585c6b64573b0f9927fc403f366cc21c7ead7
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri May 11 21:46:18 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri May 11 21:47:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f41585c6

app-editors/moe: Version bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-editors/moe/Manifest  |  1 +
 app-editors/moe/files/moe-1.6-tinfo.patch |  4 ++--
 app-editors/moe/moe-1.9.ebuild| 36 +++
 3 files changed, 39 insertions(+), 2 deletions(-)

diff --git a/app-editors/moe/Manifest b/app-editors/moe/Manifest
index 52e5465c4b8..138b65fae76 100644
--- a/app-editors/moe/Manifest
+++ b/app-editors/moe/Manifest
@@ -1,2 +1,3 @@
 DIST moe-1.6.tar.lz 75108 BLAKE2B 
0d675ceecea6670fe24e860d030ef43905add64334d0769d24a57fb3b0cc421e7065c6d36df7e2c154db66936ab8849f9bf42288767810aec34db4261fef23f6
 SHA512 
0aa717c865d41f73adccddbb158ae67b611a64f24258bcce5a68fea8175d28d6db55a0fb356fb294bfe3106c0973607b1fcc76ceee17d360e30eb80650ec043b
 DIST moe-1.7.tar.lz 79644 BLAKE2B 
e4e353d1daba8b40842d86a0821c8a0668bbe9e6875b988190f870b8fd637ee3f0006ca088f9aeb1dedcc69b17c45ced4167ffb248adb429531516b64229caee
 SHA512 
e961291c55e5b2af09e3b5cb0d07b557b0af1f6143339390e5b06f4bdebace888f7c3866ec936bd20f25b23cc96fdfdb7bd3da6690e684ec24513b106ae53b49
+DIST moe-1.9.tar.lz 82046 BLAKE2B 
9144dfc4ce17bc04f3ad9aa9ec271f173df6c581705e5d922a346f94c086a97af9429478c016d7081c1fd38787055666504f04d25a8b9f5c1020dc147aaafdb0
 SHA512 
277700e4a796e1a7aee42de55ba4599a350a612f95a1a2eca5078d85f6f9a7db190fb5611eb2f286c98580af847a2934bf38a4bce10176db4c5cddc2d257f929

diff --git a/app-editors/moe/files/moe-1.6-tinfo.patch 
b/app-editors/moe/files/moe-1.6-tinfo.patch
index 6b91460e8e5..5a94ec599e8 100644
--- a/app-editors/moe/files/moe-1.6-tinfo.patch
+++ b/app-editors/moe/files/moe-1.6-tinfo.patch
@@ -1,5 +1,5 @@
 Makefile.in.orig   2014-11-03 00:33:57.152593136 +0300
-+++ Makefile.in2014-11-03 00:34:21.121592519 +0300
+--- a/Makefile.in.orig 2014-11-03 00:33:57.152593136 +0300
 b/Makefile.in  2014-11-03 00:34:21.121592519 +0300
 @@ -4,7 +4,7 @@
  INSTALL_PROGRAM = $(INSTALL) -m 755
  INSTALL_DATA = $(INSTALL) -m 644

diff --git a/app-editors/moe/moe-1.9.ebuild b/app-editors/moe/moe-1.9.ebuild
new file mode 100644
index 000..c511c32637f
--- /dev/null
+++ b/app-editors/moe/moe-1.9.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="A powerful and user-friendly console text editor"
+HOMEPAGE="https://www.gnu.org/software/moe/";
+SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   sys-libs/ncurses:0=
+"
+DEPEND="
+   $(unpacker_src_uri_depends)
+   ${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   tc-export CXX PKG_CONFIG
+   sed -i \
+   -e "/^CXXFLAGS=/d" \
+   -e "/^LDFLAGS=/d" \
+   -e  "/^CXX=/d" \
+   configure || die "sed on configure failed"
+
+   eapply_user
+
+   eapply "${FILESDIR}/${PN}-1.6-tinfo.patch"
+}



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2017-12-10 Thread David Seifert
commit: d5f6c4ea0e056f8ec8200787bee2795d78c753d6
Author: David Seifert  gentoo  org>
AuthorDate: Sun Dec 10 14:11:18 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Dec 10 14:15:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5f6c4ea

app-editors/moe: [QA] Fix dependency.missingslot

Package-Manager: Portage-2.3.16, Repoman-2.3.6

 app-editors/moe/moe-1.6.ebuild | 4 ++--
 app-editors/moe/moe-1.7.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-editors/moe/moe-1.6.ebuild b/app-editors/moe/moe-1.6.ebuild
index ddf33ecaa77..85f0a9065dc 100644
--- a/app-editors/moe/moe-1.6.ebuild
+++ b/app-editors/moe/moe-1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ SLOT="0"
 KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
-   sys-libs/ncurses
+   sys-libs/ncurses:0=
 "
 DEPEND="
$(unpacker_src_uri_depends)

diff --git a/app-editors/moe/moe-1.7.ebuild b/app-editors/moe/moe-1.7.ebuild
index ef8c23261ec..c7f8b897e55 100644
--- a/app-editors/moe/moe-1.7.ebuild
+++ b/app-editors/moe/moe-1.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
-   sys-libs/ncurses
+   sys-libs/ncurses:0=
 "
 DEPEND="
$(unpacker_src_uri_depends)



[gentoo-commits] repo/gentoo:master commit in: app-editors/moe/

2017-07-17 Thread Sergey Popov
commit: 72f43ff08e97b8ba636f24e3f221f7bffa7587b9
Author: Sergey Popov  gentoo  org>
AuthorDate: Mon Jul 17 14:55:36 2017 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Mon Jul 17 14:56:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72f43ff0

app-editors/moe: remove myself from maintainers

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-editors/moe/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/app-editors/moe/metadata.xml b/app-editors/moe/metadata.xml
index 2cb7edde3a3..6698a4ab788 100644
--- a/app-editors/moe/metadata.xml
+++ b/app-editors/moe/metadata.xml
@@ -5,8 +5,4 @@
zlog...@gentoo.org
Mikle Kolyada

-   
-   pinkb...@gentoo.org
-   Sergey Popov
-