From: "Andrew Ammerlaan" <andrewammerlaan@riseup.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/coreimage/, gui-apps/corepad/, gui-apps/coreuniverse/, ...
Date: Tue, 6 Apr 2021 09:03:09 +0000 (UTC) [thread overview]
Message-ID: <1617479271.2d85215993f96209b6d53ffedfbed12a9e8d9dfa.andrewammerlaan@gentoo> (raw)
commit: 2d85215993f96209b6d53ffedfbed12a9e8d9dfa
Author: Maciej Barć <xgqt <AT> riseup <DOT> net>
AuthorDate: Sat Apr 3 19:47:51 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Apr 3 19:47:51 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2d852159
gui-apps/core*: use cmake for live versions
Signed-off-by: Maciej Barć <xgqt <AT> riseup.net>
gui-apps/coreaction/coreaction-9999.ebuild | 22 ++++------------------
gui-apps/corearchiver/corearchiver-9999.ebuild | 22 ++++------------------
gui-apps/corefm/corefm-9999.ebuild | 20 +++-----------------
gui-apps/coregarage/coregarage-9999.ebuild | 22 ++++------------------
gui-apps/coreimage/coreimage-9999.ebuild | 20 +++-----------------
gui-apps/coreinfo/coreinfo-9999.ebuild | 22 ++++------------------
gui-apps/corekeyboard/corekeyboard-9999.ebuild | 20 +++-----------------
gui-apps/corepad/corepad-9999.ebuild | 22 ++++------------------
gui-apps/corepaint/corepaint-9999.ebuild | 22 ++++------------------
gui-apps/corepdf/corepdf-9999.ebuild | 22 ++++------------------
gui-apps/corepins/corepins-9999.ebuild | 19 ++-----------------
gui-apps/corerenamer/corerenamer-9999.ebuild | 22 ++++------------------
gui-apps/coreshot/coreshot-9999.ebuild | 22 ++++------------------
gui-apps/corestats/corestats-9999.ebuild | 22 ++++------------------
gui-apps/corestuff/corestuff-9999.ebuild | 22 ++++------------------
gui-apps/coreterminal/coreterminal-9999.ebuild | 20 +++-----------------
gui-apps/coretime/coretime-9999.ebuild | 22 ++++------------------
gui-apps/coreuniverse/coreuniverse-9999.ebuild | 20 +++-----------------
18 files changed, 65 insertions(+), 318 deletions(-)
diff --git a/gui-apps/coreaction/coreaction-9999.ebuild b/gui-apps/coreaction/coreaction-9999.ebuild
index e7524dade..3965c6eb8 100644
--- a/gui-apps/coreaction/coreaction-9999.ebuild
+++ b/gui-apps/coreaction/coreaction-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A side bar for showing widgets for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreaction"
@@ -31,21 +31,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' app/"${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' app/*.desktop || die
}
diff --git a/gui-apps/corearchiver/corearchiver-9999.ebuild b/gui-apps/corearchiver/corearchiver-9999.ebuild
index 0f739637f..ddc11a096 100644
--- a/gui-apps/corearchiver/corearchiver-9999.ebuild
+++ b/gui-apps/corearchiver/corearchiver-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="Archiver for C Suite, to create and extract archives"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corearchiver"
@@ -33,21 +33,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/corefm/corefm-9999.ebuild b/gui-apps/corefm/corefm-9999.ebuild
index ea3deb8db..6a7d8b8b8 100644
--- a/gui-apps/corefm/corefm-9999.ebuild
+++ b/gui-apps/corefm/corefm-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A lightweight file-manager for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corefm"
@@ -33,21 +33,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/coregarage/coregarage-9999.ebuild b/gui-apps/coregarage/coregarage-9999.ebuild
index 3c6916721..30de6e0b7 100644
--- a/gui-apps/coregarage/coregarage-9999.ebuild
+++ b/gui-apps/coregarage/coregarage-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A settings manager for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coregarage"
@@ -34,21 +34,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/coreimage/coreimage-9999.ebuild b/gui-apps/coreimage/coreimage-9999.ebuild
index f7feb91a3..908b0ae66 100644
--- a/gui-apps/coreimage/coreimage-9999.ebuild
+++ b/gui-apps/coreimage/coreimage-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="An image viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreimage"
@@ -34,21 +34,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/coreinfo/coreinfo-9999.ebuild b/gui-apps/coreinfo/coreinfo-9999.ebuild
index 503b5d116..a43fa5fc0 100644
--- a/gui-apps/coreinfo/coreinfo-9999.ebuild
+++ b/gui-apps/coreinfo/coreinfo-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A file information tool for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreinfo"
@@ -35,21 +35,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/corekeyboard/corekeyboard-9999.ebuild b/gui-apps/corekeyboard/corekeyboard-9999.ebuild
index b09193992..ad44b5f79 100644
--- a/gui-apps/corekeyboard/corekeyboard-9999.ebuild
+++ b/gui-apps/corekeyboard/corekeyboard-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A x11 based virtual keyboard for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corekeyboard"
@@ -33,21 +33,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/corepad/corepad-9999.ebuild b/gui-apps/corepad/corepad-9999.ebuild
index d9494660c..f83942e8c 100644
--- a/gui-apps/corepad/corepad-9999.ebuild
+++ b/gui-apps/corepad/corepad-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A document editor for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepad"
@@ -33,21 +33,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/corepaint/corepaint-9999.ebuild b/gui-apps/corepaint/corepaint-9999.ebuild
index a5a4ad7f7..162903c97 100644
--- a/gui-apps/corepaint/corepaint-9999.ebuild
+++ b/gui-apps/corepaint/corepaint-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A paint app for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepaint"
@@ -32,21 +32,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/corepdf/corepdf-9999.ebuild b/gui-apps/corepdf/corepdf-9999.ebuild
index 7c4c75112..fe0a53ec5 100644
--- a/gui-apps/corepdf/corepdf-9999.ebuild
+++ b/gui-apps/corepdf/corepdf-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A PDF viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepdf"
@@ -33,21 +33,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/corepins/corepins-9999.ebuild b/gui-apps/corepins/corepins-9999.ebuild
index 94fbe2e95..b3a182710 100644
--- a/gui-apps/corepins/corepins-9999.ebuild
+++ b/gui-apps/corepins/corepins-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A bookmarking app for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corepins"
@@ -32,22 +32,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/C Suite/X-CSuite/' *.desktop || die
sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
-}
diff --git a/gui-apps/corerenamer/corerenamer-9999.ebuild b/gui-apps/corerenamer/corerenamer-9999.ebuild
index b29774136..2c905afbe 100644
--- a/gui-apps/corerenamer/corerenamer-9999.ebuild
+++ b/gui-apps/corerenamer/corerenamer-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A batch file renamer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corerenamer"
@@ -32,21 +32,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/coreshot/coreshot-9999.ebuild b/gui-apps/coreshot/coreshot-9999.ebuild
index faf3bdc16..144ba959a 100644
--- a/gui-apps/coreshot/coreshot-9999.ebuild
+++ b/gui-apps/coreshot/coreshot-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A screen capture utility for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreshot"
@@ -33,21 +33,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/corestats/corestats-9999.ebuild b/gui-apps/corestats/corestats-9999.ebuild
index d3f2e9768..ffe980266 100644
--- a/gui-apps/corestats/corestats-9999.ebuild
+++ b/gui-apps/corestats/corestats-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A system resource viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestats"
@@ -35,21 +35,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/corestuff/corestuff-9999.ebuild b/gui-apps/corestuff/corestuff-9999.ebuild
index 95490556f..584d9ca65 100644
--- a/gui-apps/corestuff/corestuff-9999.ebuild
+++ b/gui-apps/corestuff/corestuff-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="An activity viewer for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/corestuff"
@@ -33,21 +33,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/coreterminal/coreterminal-9999.ebuild b/gui-apps/coreterminal/coreterminal-9999.ebuild
index 405602a94..77f273463 100644
--- a/gui-apps/coreterminal/coreterminal-9999.ebuild
+++ b/gui-apps/coreterminal/coreterminal-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A terminal emulator for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreterminal"
@@ -34,21 +34,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/coretime/coretime-9999.ebuild b/gui-apps/coretime/coretime-9999.ebuild
index 677daaec9..74d037ebc 100644
--- a/gui-apps/coretime/coretime-9999.ebuild
+++ b/gui-apps/coretime/coretime-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="A time related task manager for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretime"
@@ -33,21 +33,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
diff --git a/gui-apps/coreuniverse/coreuniverse-9999.ebuild b/gui-apps/coreuniverse/coreuniverse-9999.ebuild
index b7e6da131..2c3544aab 100644
--- a/gui-apps/coreuniverse/coreuniverse-9999.ebuild
+++ b/gui-apps/coreuniverse/coreuniverse-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit qmake-utils xdg
+inherit cmake xdg
DESCRIPTION="Shows information about apps for C Suite"
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreuniverse"
@@ -32,21 +32,7 @@ RDEPEND="
"
src_prepare() {
- default
+ cmake_src_prepare
- sed -i 's/CSuite/X-CSuite/' "${PN}.desktop" || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_compile() {
- emake
-}
-
-src_install() {
- einstalldocs
-
- emake INSTALL_ROOT="${D}" install
+ sed -i 's/CSuite/X-CSuite/' *.desktop || die
}
reply other threads:[~2021-04-06 9:03 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1617479271.2d85215993f96209b6d53ffedfbed12a9e8d9dfa.andrewammerlaan@gentoo \
--to=andrewammerlaan@riseup.net \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox