public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: app-misc/neo/
@ 2022-02-23  0:33 Ronny Gutbrod
  0 siblings, 0 replies; 3+ messages in thread
From: Ronny Gutbrod @ 2022-02-23  0:33 UTC (permalink / raw
  To: gentoo-commits

commit:     06756aaf93576a3346d8983c8b474d3aff4383c6
Author:     Carlos Eduardo <carana2099 <AT> gmail <DOT> com>
AuthorDate: Tue Feb 22 21:24:10 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue Feb 22 21:24:10 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=06756aaf

app-misc/neo: fix dangling symlink

Repoman doesn't seem to have staged neo-9999.ebuild turning from a symlink
to a normal file...

Signed-off-by: Carlos Eduardo <carana2099 <AT> gmail.com>

 app-misc/neo/neo-9999.ebuild | 33 ++++++++++++++++++++++++++++++++-
 1 file changed, 32 insertions(+), 1 deletion(-)

diff --git a/app-misc/neo/neo-9999.ebuild b/app-misc/neo/neo-9999.ebuild
deleted file mode 120000
index 7fee11d41..000000000
--- a/app-misc/neo/neo-9999.ebuild
+++ /dev/null
@@ -1 +0,0 @@
-neo-0.6.ebuild
\ No newline at end of file

diff --git a/app-misc/neo/neo-9999.ebuild b/app-misc/neo/neo-9999.ebuild
new file mode 100644
index 000000000..7cbc274fd
--- /dev/null
+++ b/app-misc/neo/neo-9999.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="cmatrix clone with 32-bit color and Unicode support"
+HOMEPAGE="https://github.com/st3w/neo"
+
+if [ "$PV" = 9999 ]; then
+	inherit autotools git-r3
+	EGIT_REPO_URI="https://github.com/st3w/neo/"
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/st3w/neo/releases/download/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+
+DEPEND="sys-libs/ncurses"
+RDEPEND="${DEPEND}"
+[ "$PV" = 9999 ] && BDEPEND="
+	sys-devel/autoconf
+	sys-devel/autoconf-archive
+"
+
+src_prepare() {
+	default
+	[ -f ./configure ] || eautoreconf || die 'autoreconf failed'
+}


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

* [gentoo-commits] repo/proj/guru:master commit in: app-misc/neo/
@ 2022-03-08 13:39 Andrew Ammerlaan
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2022-03-08 13:39 UTC (permalink / raw
  To: gentoo-commits

commit:     7971659573391190c1d54dc9aac80a745b553c09
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  8 13:32:50 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Mar  8 13:33:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=79716595

app-misc/neo: drop symlink

no symlinks in the repo please

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 app-misc/neo/neo-0.6.1.ebuild | 32 +++++++++++++++++++++++++++++++-
 app-misc/neo/neo-9999.ebuild  |  1 -
 2 files changed, 31 insertions(+), 2 deletions(-)

diff --git a/app-misc/neo/neo-0.6.1.ebuild b/app-misc/neo/neo-0.6.1.ebuild
deleted file mode 120000
index 132d15a69..000000000
--- a/app-misc/neo/neo-0.6.1.ebuild
+++ /dev/null
@@ -1 +0,0 @@
-neo-9999.ebuild
\ No newline at end of file

diff --git a/app-misc/neo/neo-0.6.1.ebuild b/app-misc/neo/neo-0.6.1.ebuild
new file mode 100644
index 000000000..6a8299362
--- /dev/null
+++ b/app-misc/neo/neo-0.6.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="cmatrix clone with 32-bit color and Unicode support"
+HOMEPAGE="https://github.com/st3w/neo"
+
+if [ "$PV" = 9999 ]; then
+	inherit autotools git-r3
+	EGIT_REPO_URI="https://github.com/st3w/neo/"
+else
+	SRC_URI="https://github.com/st3w/neo/releases/download/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+
+DEPEND="sys-libs/ncurses"
+RDEPEND="${DEPEND}"
+[ "$PV" = 9999 ] && BDEPEND="
+	sys-devel/autoconf
+	sys-devel/autoconf-archive
+"
+
+src_prepare() {
+	default
+	[ -f ./configure ] || eautoreconf || die 'autoreconf failed'
+}

diff --git a/app-misc/neo/neo-9999.ebuild b/app-misc/neo/neo-9999.ebuild
index 7cbc274fd..6a8299362 100644
--- a/app-misc/neo/neo-9999.ebuild
+++ b/app-misc/neo/neo-9999.ebuild
@@ -9,7 +9,6 @@ HOMEPAGE="https://github.com/st3w/neo"
 if [ "$PV" = 9999 ]; then
 	inherit autotools git-r3
 	EGIT_REPO_URI="https://github.com/st3w/neo/"
-	KEYWORDS=""
 else
 	SRC_URI="https://github.com/st3w/neo/releases/download/v${PV}/${P}.tar.gz"
 	KEYWORDS="~amd64"


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

* [gentoo-commits] repo/proj/guru:master commit in: app-misc/neo/
@ 2024-01-18 11:57 Andrew Ammerlaan
  0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2024-01-18 11:57 UTC (permalink / raw
  To: gentoo-commits

commit:     3b9c369f23d6a6c124c64d7e78ccbd2ad7052da9
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Jan 18 10:20:08 2024 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Jan 18 10:27:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3b9c369f

app-misc/neo: fix NonexistentDeps

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 app-misc/neo/neo-0.6.1.ebuild | 22 ++++++++++++----------
 app-misc/neo/neo-9999.ebuild  | 22 ++++++++++++----------
 2 files changed, 24 insertions(+), 20 deletions(-)

diff --git a/app-misc/neo/neo-0.6.1.ebuild b/app-misc/neo/neo-0.6.1.ebuild
index d81e8c60c9..b6aef0eb60 100644
--- a/app-misc/neo/neo-0.6.1.ebuild
+++ b/app-misc/neo/neo-0.6.1.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
@@ -6,26 +6,28 @@ EAPI=8
 DESCRIPTION="cmatrix clone with 32-bit color and Unicode support"
 HOMEPAGE="https://github.com/st3w/neo"
 
-if [ "$PV" = 9999 ]; then
+if [[ ${PV} == *9999* ]]; then
 	inherit autotools git-r3
-	EGIT_REPO_URI="https://github.com/st3w/neo/"
+	EGIT_REPO_URI="https://github.com/st3w/neo.git"
+	BDEPEND="
+		dev-build/autoconf-archive
+		dev-build/automake
+	"
 else
-	SRC_URI="https://github.com/st3w/neo/releases/download/v${PV}/${P}.tar.gz"
+	SRC_URI="https://github.com/st3w/${PN}/releases/download/v${PV}/${P}.tar.gz"
 	KEYWORDS="~amd64"
 fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE=""
 
 DEPEND="sys-libs/ncurses"
 RDEPEND="${DEPEND}"
-[ "$PV" = 9999 ] && BDEPEND="
-	dev-build/automake
-	dev-build/automake-archive
-"
 
 src_prepare() {
 	default
-	[ -f ./configure ] || eautoreconf || die 'autoreconf failed'
+
+	if [[ ! -x configure ]]; then
+		eautoreconf
+	fi
 }

diff --git a/app-misc/neo/neo-9999.ebuild b/app-misc/neo/neo-9999.ebuild
index d81e8c60c9..b6aef0eb60 100644
--- a/app-misc/neo/neo-9999.ebuild
+++ b/app-misc/neo/neo-9999.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
@@ -6,26 +6,28 @@ EAPI=8
 DESCRIPTION="cmatrix clone with 32-bit color and Unicode support"
 HOMEPAGE="https://github.com/st3w/neo"
 
-if [ "$PV" = 9999 ]; then
+if [[ ${PV} == *9999* ]]; then
 	inherit autotools git-r3
-	EGIT_REPO_URI="https://github.com/st3w/neo/"
+	EGIT_REPO_URI="https://github.com/st3w/neo.git"
+	BDEPEND="
+		dev-build/autoconf-archive
+		dev-build/automake
+	"
 else
-	SRC_URI="https://github.com/st3w/neo/releases/download/v${PV}/${P}.tar.gz"
+	SRC_URI="https://github.com/st3w/${PN}/releases/download/v${PV}/${P}.tar.gz"
 	KEYWORDS="~amd64"
 fi
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE=""
 
 DEPEND="sys-libs/ncurses"
 RDEPEND="${DEPEND}"
-[ "$PV" = 9999 ] && BDEPEND="
-	dev-build/automake
-	dev-build/automake-archive
-"
 
 src_prepare() {
 	default
-	[ -f ./configure ] || eautoreconf || die 'autoreconf failed'
+
+	if [[ ! -x configure ]]; then
+		eautoreconf
+	fi
 }


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

end of thread, other threads:[~2024-01-18 11:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-18 11:57 [gentoo-commits] repo/proj/guru:master commit in: app-misc/neo/ Andrew Ammerlaan
  -- strict thread matches above, loose matches on Subject: below --
2022-03-08 13:39 Andrew Ammerlaan
2022-02-23  0:33 Ronny Gutbrod

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