* [gentoo-commits] repo/gentoo:master commit in: net-libs/libre-graph-api-cpp-qt-client/
@ 2024-03-12 23:05 Bernard Cafarelli
0 siblings, 0 replies; 2+ messages in thread
From: Bernard Cafarelli @ 2024-03-12 23:05 UTC (permalink / raw
To: gentoo-commits
commit: f619f3b5365da84246fcfbe05ab582b24b3f53f6
Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 12 22:34:08 2024 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Tue Mar 12 23:05:09 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f619f3b5
net-libs/libre-graph-api-cpp-qt-client: new package, add 1.0.4
This is an unbundled dep for net-misc/owncloud-client
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
net-libs/libre-graph-api-cpp-qt-client/Manifest | 1 +
.../libre-graph-api-cpp-qt-client-1.0.4.ebuild | 18 ++++++++++++++++++
net-libs/libre-graph-api-cpp-qt-client/metadata.xml | 11 +++++++++++
3 files changed, 30 insertions(+)
diff --git a/net-libs/libre-graph-api-cpp-qt-client/Manifest b/net-libs/libre-graph-api-cpp-qt-client/Manifest
new file mode 100644
index 000000000000..044c42418915
--- /dev/null
+++ b/net-libs/libre-graph-api-cpp-qt-client/Manifest
@@ -0,0 +1 @@
+DIST libre-graph-api-cpp-qt-client-1.0.4.tar.gz 118205 BLAKE2B d48eee996a3fb5160dfbca799122d50a0b6e43ad1a121fcbf8bd9a2543b5364878055b5d5d0f230ca5c69ff8cf94986f3b1fc216211458210ede1c444423edea SHA512 1e7a190abb92c9f3a5d4de8f6c1c3b8c2f8bd2c037e104fc869db8c6eab40eb878e51a627946cdf944ad768db31969e9776d14df3590e30ca3a2be5de0c722b5
diff --git a/net-libs/libre-graph-api-cpp-qt-client/libre-graph-api-cpp-qt-client-1.0.4.ebuild b/net-libs/libre-graph-api-cpp-qt-client/libre-graph-api-cpp-qt-client-1.0.4.ebuild
new file mode 100644
index 000000000000..51efb3492afb
--- /dev/null
+++ b/net-libs/libre-graph-api-cpp-qt-client/libre-graph-api-cpp-qt-client-1.0.4.ebuild
@@ -0,0 +1,18 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="API for cloud collaboration inspired by the MS Graph API"
+HOMEPAGE="https://github.com/owncloud/libre-graph-api-cpp-qt-client/"
+SRC_URI="https://github.com/owncloud/libre-graph-api-cpp-qt-client/archive/refs/tags/v${PV}.tar.gz -> libre-graph-api-cpp-qt-client-${PV}.tar.gz"
+
+S=${WORKDIR}/${P}/client
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+DEPEND="dev-qt/qtbase:6[gui,ssl]"
+RDEPEND="${DEPEND}"
diff --git a/net-libs/libre-graph-api-cpp-qt-client/metadata.xml b/net-libs/libre-graph-api-cpp-qt-client/metadata.xml
new file mode 100644
index 000000000000..71c9310e4e84
--- /dev/null
+++ b/net-libs/libre-graph-api-cpp-qt-client/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>voyageur@gentoo.org</email>
+ <name>Bernard Cafarelli</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">owncloud/libre-graph-api-cpp-qt-client</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libre-graph-api-cpp-qt-client/
@ 2024-03-19 20:23 Bernard Cafarelli
0 siblings, 0 replies; 2+ messages in thread
From: Bernard Cafarelli @ 2024-03-19 20:23 UTC (permalink / raw
To: gentoo-commits
commit: db587ac90cdd7384c687491cbd2a4a6777b5bbca
Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 19 20:23:25 2024 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Tue Mar 19 20:23:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db587ac9
net-libs/libre-graph-api-cpp-qt-client: avoid Qt5 detection
Closes: https://bugs.gentoo.org/927292
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
.../libre-graph-api-cpp-qt-client-1.0.4.ebuild | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/net-libs/libre-graph-api-cpp-qt-client/libre-graph-api-cpp-qt-client-1.0.4.ebuild b/net-libs/libre-graph-api-cpp-qt-client/libre-graph-api-cpp-qt-client-1.0.4.ebuild
index 51efb3492afb..22f737562833 100644
--- a/net-libs/libre-graph-api-cpp-qt-client/libre-graph-api-cpp-qt-client-1.0.4.ebuild
+++ b/net-libs/libre-graph-api-cpp-qt-client/libre-graph-api-cpp-qt-client-1.0.4.ebuild
@@ -16,3 +16,10 @@ KEYWORDS="~amd64 ~arm64 ~x86"
DEPEND="dev-qt/qtbase:6[gui,ssl]"
RDEPEND="${DEPEND}"
+
+src_prepare() {
+ # Do not look for Qt5
+ sed -e "s/Qt5//" -i CMakeLists.txt || die
+
+ cmake_src_prepare
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-03-19 20:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-12 23:05 [gentoo-commits] repo/gentoo:master commit in: net-libs/libre-graph-api-cpp-qt-client/ Bernard Cafarelli
-- strict thread matches above, loose matches on Subject: below --
2024-03-19 20:23 Bernard Cafarelli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox