* [gentoo-commits] repo/proj/guru:master commit in: app-editors/mined/
@ 2022-02-04 11:44 Florian Schmaus
0 siblings, 0 replies; 6+ messages in thread
From: Florian Schmaus @ 2022-02-04 11:44 UTC (permalink / raw
To: gentoo-commits
commit: ab5323899177ed87341c97b4a75f76a2781e5d10
Author: Alexander Holcomb <alex <AT> alexsdigital <DOT> rodeo>
AuthorDate: Thu Feb 3 15:03:20 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Feb 3 15:03:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ab532389
app-editors/mined: Make Ebuild Respect CFLAGS
This changes the build process to use the src/mkmined script,
rather than the makemined script called by the makefile. This
should solve bug 831704 (https://bugs.gentoo.org/831704), by
making the script use CFLAGS, rather than having them explicity
set.
Also, I changed the copyright notice to "2022," rather than
"1998-2022," because repoman mentioned it as a minor issue.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alex Holcomb <alex <AT> alexsdigital.rodeo>
app-editors/mined/mined-2015.25.ebuild | 19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)
diff --git a/app-editors/mined/mined-2015.25.ebuild b/app-editors/mined/mined-2015.25.ebuild
index 79ac97d1c..006d7fe6d 100644
--- a/app-editors/mined/mined-2015.25.ebuild
+++ b/app-editors/mined/mined-2015.25.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -14,13 +14,18 @@ IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
BDEPEND=""
-#src_configure() {
-# econf
-#}
+S=${S}/src
+src_configure() {
+ sed -in 's/OBJDIR=..\/bin\/sh/OBJDIR=bin\/sh/' mkmined
+ sed -in 's/\"\${COPT--DTERMIO \$W}\"/\"${CFLAGS} \${COPT--DTERMIO}\"/' mkmined
+}
+
src_compile() {
- emake -j1
+ mkdir bin/
+ ./mkmined
}
+
src_install() {
- dobin bin/Linux.x86_64/mined
- doman man/mined.1
+ dobin bin/sh/mined
+ doman ../man/mined.1
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-editors/mined/
@ 2022-02-20 8:46 Florian Schmaus
0 siblings, 0 replies; 6+ messages in thread
From: Florian Schmaus @ 2022-02-20 8:46 UTC (permalink / raw
To: gentoo-commits
commit: 503799036a7c56cacc33ad87c876141304362499
Author: Alexander Holcomb <alex <AT> alexsdigital <DOT> rodeo>
AuthorDate: Sun Feb 20 04:19:44 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Feb 20 04:25:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=50379903
app-editors/mined: Make package respect LDFLAGS
This will edit the build command used for compilation to
explicitly enable LDFLAGS.
This commit should resolve bug 832740.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alex Holcomb <alex <AT> alexsdigital.rodeo>
app-editors/mined/mined-2015.25.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/app-editors/mined/mined-2015.25.ebuild b/app-editors/mined/mined-2015.25.ebuild
index 006d7fe6d..6844b33e5 100644
--- a/app-editors/mined/mined-2015.25.ebuild
+++ b/app-editors/mined/mined-2015.25.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -17,7 +17,10 @@ BDEPEND=""
S=${S}/src
src_configure() {
sed -in 's/OBJDIR=..\/bin\/sh/OBJDIR=bin\/sh/' mkmined
- sed -in 's/\"\${COPT--DTERMIO \$W}\"/\"${CFLAGS} \${COPT--DTERMIO}\"/' mkmined
+ sed -in 's/\"\${COPT--DTERMIO \$W}\"/\"${CFLAGS} \${COPT--DTERMIO} \${LDFLAGS}\"/' mkmined
+ sed -in 's/name.o/name.o \$LDFLAGS/' mkmined
+ sed -in 's/link=false/link=true/' mkmined
+ sed -in 142's/$/ \$LDFLAGS/' mkmined
}
src_compile() {
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-editors/mined/
@ 2022-04-09 3:30 Ronny Gutbrod
0 siblings, 0 replies; 6+ messages in thread
From: Ronny Gutbrod @ 2022-04-09 3:30 UTC (permalink / raw
To: gentoo-commits
commit: 2cf5af8e8c422c7f553460fdaf777d88e79da9f9
Author: Alexander Holcomb <alex <AT> alexsdigital <DOT> rodeo>
AuthorDate: Fri Apr 8 03:21:19 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Fri Apr 8 03:21:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2cf5af8e
app-editors/mined: Fix direct call to cc
This commit should fix bug 831698, the build script calling
cc directly. It uses the tc-export command from
toolchain-funcs to set and use $CC.
Signed-off-by: Alexander Holcomb <alex <AT> alexsdigital.rodeo>
app-editors/mined/mined-2015.25.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app-editors/mined/mined-2015.25.ebuild b/app-editors/mined/mined-2015.25.ebuild
index 6844b33e5..56af7db0f 100644
--- a/app-editors/mined/mined-2015.25.ebuild
+++ b/app-editors/mined/mined-2015.25.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-
EAPI=7
+inherit toolchain-funcs
DESCRIPTION="A powerful text editor with extensive Unicode and CJK support"
HOMEPAGE="http://towo.net/mined/"
@@ -16,6 +16,7 @@ DEPEND="${RDEPEND}"
BDEPEND=""
S=${S}/src
src_configure() {
+ tc-export CC
sed -in 's/OBJDIR=..\/bin\/sh/OBJDIR=bin\/sh/' mkmined
sed -in 's/\"\${COPT--DTERMIO \$W}\"/\"${CFLAGS} \${COPT--DTERMIO} \${LDFLAGS}\"/' mkmined
sed -in 's/name.o/name.o \$LDFLAGS/' mkmined
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-editors/mined/
@ 2023-05-27 17:22 Viorel Munteanu
0 siblings, 0 replies; 6+ messages in thread
From: Viorel Munteanu @ 2023-05-27 17:22 UTC (permalink / raw
To: gentoo-commits
commit: 263ab577f39718b9004ac9585f21c9a60b3fdefd
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 16:59:49 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat May 27 16:59:49 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=263ab577
app-editors/mined: fix SRC_URI more
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
app-editors/mined/mined-2015.25.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/mined/mined-2015.25.ebuild b/app-editors/mined/mined-2015.25.ebuild
index 11412c883..ba03bd60f 100644
--- a/app-editors/mined/mined-2015.25.ebuild
+++ b/app-editors/mined/mined-2015.25.ebuild
@@ -5,7 +5,7 @@ inherit toolchain-funcs
DESCRIPTION="A powerful text editor with extensive Unicode and CJK support"
HOMEPAGE="http://towo.net/mined/"
-SRC_URI="https://downloads.sourceforge.net/project/mined/mined/mined%202015.25/mined-2015.25.tar.gz?ts=gAAAAABhfF-EKWvxGfwH7tpfR0NI8LV87Muimvh4jUigxZZZAD1fN8xgcbBPJc1TQ3f8djMFDbHXXz6rQZI4_qwwEsqakvBpqg%3D%3D&r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fmined%2Ffiles%2Fmined%2Fmined%25202015.25%2Fmined-${P}.tar.gz%2Fdownload -> ${P}.tar.gz"
+SRC_URI="https://downloads.sourceforge.net/project/mined/mined/mined%20${PV}/${P}.tar.gz?ts=gAAAAABhfF-EKWvxGfwH7tpfR0NI8LV87Muimvh4jUigxZZZAD1fN8xgcbBPJc1TQ3f8djMFDbHXXz6rQZI4_qwwEsqakvBpqg%3D%3D&r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fmined%2Ffiles%2Fmined%2Fmined%2520${PV}%2Fmined-${P}.tar.gz%2Fdownload -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-editors/mined/
@ 2023-05-27 17:22 Viorel Munteanu
0 siblings, 0 replies; 6+ messages in thread
From: Viorel Munteanu @ 2023-05-27 17:22 UTC (permalink / raw
To: gentoo-commits
commit: a343954afc328f1e034468b2196426b64fb0cfb4
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 16:57:49 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat May 27 16:57:49 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a343954a
app-editors/mined: update SRC_URI
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
app-editors/mined/mined-2015.25.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/mined/mined-2015.25.ebuild b/app-editors/mined/mined-2015.25.ebuild
index 56af7db0f..11412c883 100644
--- a/app-editors/mined/mined-2015.25.ebuild
+++ b/app-editors/mined/mined-2015.25.ebuild
@@ -5,7 +5,7 @@ inherit toolchain-funcs
DESCRIPTION="A powerful text editor with extensive Unicode and CJK support"
HOMEPAGE="http://towo.net/mined/"
-SRC_URI="https://downloads.sourceforge.net/project/mined/mined/mined%202015.25/mined-2015.25.tar.gz?ts=gAAAAABhfF-EKWvxGfwH7tpfR0NI8LV87Muimvh4jUigxZZZAD1fN8xgcbBPJc1TQ3f8djMFDbHXXz6rQZI4_qwwEsqakvBpqg%3D%3D&r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fmined%2Ffiles%2Fmined%2Fmined%25202015.25%2Fmined-2015.25.tar.gz%2Fdownload -> mined-2015.25.tar.gz"
+SRC_URI="https://downloads.sourceforge.net/project/mined/mined/mined%202015.25/mined-2015.25.tar.gz?ts=gAAAAABhfF-EKWvxGfwH7tpfR0NI8LV87Muimvh4jUigxZZZAD1fN8xgcbBPJc1TQ3f8djMFDbHXXz6rQZI4_qwwEsqakvBpqg%3D%3D&r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fmined%2Ffiles%2Fmined%2Fmined%25202015.25%2Fmined-${P}.tar.gz%2Fdownload -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-editors/mined/
@ 2023-05-27 17:22 Viorel Munteanu
0 siblings, 0 replies; 6+ messages in thread
From: Viorel Munteanu @ 2023-05-27 17:22 UTC (permalink / raw
To: gentoo-commits
commit: 9ed7b4654631595756dc0fe2c663766fa5ee8933
Author: Rahul Sandhu <rahul <AT> sandhuservices <DOT> dev>
AuthorDate: Sat May 27 16:55:44 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat May 27 16:55:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9ed7b465
app-editors/mined: add sourceforge upstream metadata
Signed-off-by: Rahul Sandhu <rahul <AT> sandhuservices.dev>
app-editors/mined/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/app-editors/mined/metadata.xml b/app-editors/mined/metadata.xml
index 822a69f59..bbb622a1a 100644
--- a/app-editors/mined/metadata.xml
+++ b/app-editors/mined/metadata.xml
@@ -6,6 +6,7 @@
<name>Alex Holcomb</name>
</maintainer>
<upstream>
+ <remote-id type="sourceforge">mined</remote-id>
<bugs-to>http://towo.net/mined/</bugs-to>
</upstream>
<longdescription>
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-05-27 17:23 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-04 11:44 [gentoo-commits] repo/proj/guru:master commit in: app-editors/mined/ Florian Schmaus
-- strict thread matches above, loose matches on Subject: below --
2022-02-20 8:46 Florian Schmaus
2022-04-09 3:30 Ronny Gutbrod
2023-05-27 17:22 Viorel Munteanu
2023-05-27 17:22 Viorel Munteanu
2023-05-27 17:22 Viorel Munteanu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox