Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] owncloudclient: new subpkg for KDE integration
@ 2023-07-31 13:18 sgn
  2023-07-31 13:37 ` [PR PATCH] [Updated] " sgn
  2023-07-31 16:14 ` [PR PATCH] [Merged]: " sgn
  0 siblings, 2 replies; 3+ messages in thread
From: sgn @ 2023-07-31 13:18 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1299 bytes --]

There is a new pull request by sgn against master on the void-packages repository

https://github.com/sgn/void-packages owncloudclient-dolphin
https://github.com/void-linux/void-packages/pull/45352

owncloudclient: new subpkg for KDE integration
<!-- Uncomment relevant sections and delete options which are not applicable -->

Fix #45342 

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/45352.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-owncloudclient-dolphin-45352.patch --]
[-- Type: text/x-diff, Size: 2815 bytes --]

From 1a57e7f1f2d9e2dfe667c705bc63b4219c6f84f1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 31 Jul 2023 15:44:49 +0700
Subject: [PATCH] owncloudclient: new subpkg for KDE integration

---
 srcpkgs/owncloudclient-devel    |  1 +
 srcpkgs/owncloudclient-kde5     |  1 +
 srcpkgs/owncloudclient/template | 29 +++++++++++++++++++++++------
 3 files changed, 25 insertions(+), 6 deletions(-)
 create mode 120000 srcpkgs/owncloudclient-devel
 create mode 120000 srcpkgs/owncloudclient-kde5

diff --git a/srcpkgs/owncloudclient-devel b/srcpkgs/owncloudclient-devel
new file mode 120000
index 0000000000000..176f4fa1add7b
--- /dev/null
+++ b/srcpkgs/owncloudclient-devel
@@ -0,0 +1 @@
+owncloudclient
\ No newline at end of file
diff --git a/srcpkgs/owncloudclient-kde5 b/srcpkgs/owncloudclient-kde5
new file mode 120000
index 0000000000000..176f4fa1add7b
--- /dev/null
+++ b/srcpkgs/owncloudclient-kde5
@@ -0,0 +1 @@
+owncloudclient
\ No newline at end of file
diff --git a/srcpkgs/owncloudclient/template b/srcpkgs/owncloudclient/template
index 741bc117030ec..ffa01c189c50a 100644
--- a/srcpkgs/owncloudclient/template
+++ b/srcpkgs/owncloudclient/template
@@ -1,11 +1,11 @@
 # Template file for 'owncloudclient'
 pkgname=owncloudclient
 version=4.1.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DWITH_AUTO_UPDATER=OFF"
-hostmakedepends="pkg-config extra-cmake-modules"
-makedepends="qtkeychain-qt5-devel sqlite-devel qt5-declarative-devel
+hostmakedepends="pkg-config extra-cmake-modules qt5-host-tools qt5-tools-devel"
+makedepends="qtkeychain-qt5-devel sqlite-devel qt5-declarative-devel kio-devel
  qt5-tools-devel qt5-plugin-odbc qt5-plugin-tds qt5-plugin-pgsql qt5-plugin-mysql
  qt5-plugin-sqlite libre-graph-api-cpp-qt-client libcloudproviders-devel"
 depends="qt5-plugin-sqlite qt5-svg"
@@ -17,7 +17,24 @@ homepage="https://www.owncloud.org"
 changelog="https://raw.githubusercontent.com/owncloud/client/master/CHANGELOG.md"
 distfiles="https://github.com/owncloud/client/archive/v${version/.rc/-rc}.tar.gz"
 checksum=32c1a9e73f510bee4f7da3c399ff208739f221e4600f69280b9dcc3763d1f84c
+subpackages="owncloudclient-kde5 owncloudclient-devel"
 
-if [ "$CROSS_BUILD" ]; then
-	hostmakedepends+=" qt5-host-tools qt5-tools-devel"
-fi
+owncloudclient-kde5_package() {
+	short_desc+=" - KDE 5 integration"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove "usr/lib/*dolphin*"
+		vmove "usr/lib/qt5/plugins/*dolphin*"
+		vmove "usr/lib/qt5/plugins/kf5"
+	}
+}
+
+owncloudclient-devel_package() {
+	short_desc+=" - development files"
+	depends="${sourcepkg}>=${version}_${revision} qt5-devel"
+	pkg_install() {
+		vmove "usr/include"
+		vmove "usr/lib/cmake"
+		vmove "usr/lib/*.so"
+	}
+}

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

* Re: [PR PATCH] [Updated] owncloudclient: new subpkg for KDE integration
  2023-07-31 13:18 [PR PATCH] owncloudclient: new subpkg for KDE integration sgn
@ 2023-07-31 13:37 ` sgn
  2023-07-31 16:14 ` [PR PATCH] [Merged]: " sgn
  1 sibling, 0 replies; 3+ messages in thread
From: sgn @ 2023-07-31 13:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1304 bytes --]

There is an updated pull request by sgn against master on the void-packages repository

https://github.com/sgn/void-packages owncloudclient-dolphin
https://github.com/void-linux/void-packages/pull/45352

owncloudclient: new subpkg for KDE integration
<!-- Uncomment relevant sections and delete options which are not applicable -->

Fix #45342 

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/45352.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-owncloudclient-dolphin-45352.patch --]
[-- Type: text/x-diff, Size: 2830 bytes --]

From c7b317f798350be2256311847e60d5285f63ddf5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Mon, 31 Jul 2023 15:44:49 +0700
Subject: [PATCH] owncloudclient: new subpkg for KDE integration

---
 srcpkgs/owncloudclient-devel    |  1 +
 srcpkgs/owncloudclient-kde5     |  1 +
 srcpkgs/owncloudclient/template | 30 ++++++++++++++++++++++++------
 3 files changed, 26 insertions(+), 6 deletions(-)
 create mode 120000 srcpkgs/owncloudclient-devel
 create mode 120000 srcpkgs/owncloudclient-kde5

diff --git a/srcpkgs/owncloudclient-devel b/srcpkgs/owncloudclient-devel
new file mode 120000
index 0000000000000..176f4fa1add7b
--- /dev/null
+++ b/srcpkgs/owncloudclient-devel
@@ -0,0 +1 @@
+owncloudclient
\ No newline at end of file
diff --git a/srcpkgs/owncloudclient-kde5 b/srcpkgs/owncloudclient-kde5
new file mode 120000
index 0000000000000..176f4fa1add7b
--- /dev/null
+++ b/srcpkgs/owncloudclient-kde5
@@ -0,0 +1 @@
+owncloudclient
\ No newline at end of file
diff --git a/srcpkgs/owncloudclient/template b/srcpkgs/owncloudclient/template
index 741bc117030ec..0206f4345fd15 100644
--- a/srcpkgs/owncloudclient/template
+++ b/srcpkgs/owncloudclient/template
@@ -1,11 +1,12 @@
 # Template file for 'owncloudclient'
 pkgname=owncloudclient
 version=4.1.0
-revision=1
+revision=2
 build_style=cmake
 configure_args="-Wno-dev -DWITH_AUTO_UPDATER=OFF"
-hostmakedepends="pkg-config extra-cmake-modules"
-makedepends="qtkeychain-qt5-devel sqlite-devel qt5-declarative-devel
+hostmakedepends="pkg-config extra-cmake-modules qt5-host-tools qt5-tools-devel
+ kcoreaddons"
+makedepends="qtkeychain-qt5-devel sqlite-devel qt5-declarative-devel kio-devel
  qt5-tools-devel qt5-plugin-odbc qt5-plugin-tds qt5-plugin-pgsql qt5-plugin-mysql
  qt5-plugin-sqlite libre-graph-api-cpp-qt-client libcloudproviders-devel"
 depends="qt5-plugin-sqlite qt5-svg"
@@ -17,7 +18,24 @@ homepage="https://www.owncloud.org"
 changelog="https://raw.githubusercontent.com/owncloud/client/master/CHANGELOG.md"
 distfiles="https://github.com/owncloud/client/archive/v${version/.rc/-rc}.tar.gz"
 checksum=32c1a9e73f510bee4f7da3c399ff208739f221e4600f69280b9dcc3763d1f84c
+subpackages="owncloudclient-kde5 owncloudclient-devel"
 
-if [ "$CROSS_BUILD" ]; then
-	hostmakedepends+=" qt5-host-tools qt5-tools-devel"
-fi
+owncloudclient-kde5_package() {
+	short_desc+=" - KDE 5 integration"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove "usr/lib/*dolphin*"
+		vmove "usr/lib/qt5/plugins/*dolphin*"
+		vmove "usr/lib/qt5/plugins/kf5"
+	}
+}
+
+owncloudclient-devel_package() {
+	short_desc+=" - development files"
+	depends="${sourcepkg}>=${version}_${revision} qt5-devel"
+	pkg_install() {
+		vmove "usr/include"
+		vmove "usr/lib/cmake"
+		vmove "usr/lib/*.so"
+	}
+}

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

* Re: [PR PATCH] [Merged]: owncloudclient: new subpkg for KDE integration
  2023-07-31 13:18 [PR PATCH] owncloudclient: new subpkg for KDE integration sgn
  2023-07-31 13:37 ` [PR PATCH] [Updated] " sgn
@ 2023-07-31 16:14 ` sgn
  1 sibling, 0 replies; 3+ messages in thread
From: sgn @ 2023-07-31 16:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1141 bytes --]

There's a merged pull request on the void-packages repository

owncloudclient: new subpkg for KDE integration
https://github.com/void-linux/void-packages/pull/45352

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

Fix #45342 

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2023-07-31 16:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-31 13:18 [PR PATCH] owncloudclient: new subpkg for KDE integration sgn
2023-07-31 13:37 ` [PR PATCH] [Updated] " sgn
2023-07-31 16:14 ` [PR PATCH] [Merged]: " sgn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).