Github messages for voidlinux
 help / color / mirror / Atom feed
From: toadwastoast <toadwastoast@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] octoxbps: update to 0.4.0 and add new dependency
Date: Fri, 01 Nov 2024 01:56:37 +0100	[thread overview]
Message-ID: <20241101005637.ECD7B30AB0@inbox.vuxu.org> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-52824@inbox.vuxu.org>

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

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

https://github.com/toadwastoast/void-packages octoxbps-0.4.0
https://github.com/void-linux/void-packages/pull/52824

octoxbps: update to 0.4.0 and add new dependency
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64 (cross)
  - armv7l-musl (cross)
  - armv6l (cross)

Had to package qt-sudo since it's now necessary on octoxbps.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-octoxbps-0.4.0-52824.patch --]
[-- Type: text/x-diff, Size: 3593 bytes --]

From 7a7115e6636bd52a6edf61bb2088dc46c411cd10 Mon Sep 17 00:00:00 2001
From: toadwastoast <toadwastoast@proton.me>
Date: Thu, 31 Oct 2024 21:54:44 -0300
Subject: [PATCH 1/2] octoxbps: update to 0.4.0

---
 srcpkgs/octoxbps/template | 26 +++++++++++---------------
 1 file changed, 11 insertions(+), 15 deletions(-)

diff --git a/srcpkgs/octoxbps/template b/srcpkgs/octoxbps/template
index 2c084fc503c8c0..814dba11dc0962 100644
--- a/srcpkgs/octoxbps/template
+++ b/srcpkgs/octoxbps/template
@@ -1,31 +1,27 @@
 # Template file for 'octoxbps'
 pkgname=octoxbps
-version=0.3.3
+version=0.4.0
 revision=1
 build_style=qmake
-hostmakedepends="qt5-qmake pkg-config qt5-host-tools"
-makedepends="qt5-declarative-devel qtermwidget-devel"
-depends="curl"
+build_helper=qmake6
+hostmakedepends="pkg-config qt6-tools qt6-base"
+makedepends=" qt6-declarative-devel qtermwidget-qt6-devel qt6-qt5compat-devel"
+depends="curl qt-sudo"
 short_desc="Qt-based XBPS front-end"
 maintainer="beefcurtains <beefcurtains@voidlinux.org>"
 license="GPL-2.0-or-later"
-homepage="https://tintaescura.com/projects/octopi/"
+homepage="https://tintaescura.com/projects/octoxbps/"
 changelog="https://raw.githubusercontent.com/aarnt/octoxbps/master/CHANGELOG"
 distfiles="https://github.com/aarnt/octoxbps/archive/v${version}.tar.gz"
-checksum=bf00fca7416b9ecad5e8c6e85d8e3215e8c4ef73c23a2b2c3cbe6773491ff4d5
+checksum=9c01d6a97511e3cecea32d094482e14b40ff3e1ede6576eb45a7e75dd8f39920
 
 post_configure() {
+	sed -i 's/usr\/local/usr/g' src/constants.h
 	local qmake_args
 	if [ "$CROSS_BUILD" ]; then
 		qmake_args="-qtconf ${wrksrc}/qt.conf"
 	fi
-	cd ${wrksrc}/notifier && qmake-qt5 ${configure_args} \
-		QMAKE_CC=$CC QMAKE_CXX=$CXX QMAKE_LINK=$CXX QMAKE_LINK_C=$CC \
-		QMAKE_CFLAGS="${CFLAGS}" \
-		QMAKE_CXXFLAGS="${CXXFLAGS}" \
-		QMAKE_LFLAGS="${LDFLAGS}" \
-		${qmake_args}
-	cd ${wrksrc}/sudo && qmake-qt5 ${configure_args} \
+	cd ${wrksrc}/notifier && qmake-qt6 ${configure_args} \
 		QMAKE_CC=$CC QMAKE_CXX=$CXX QMAKE_LINK=$CXX QMAKE_LINK_C=$CC \
 		QMAKE_CFLAGS="${CFLAGS}" \
 		QMAKE_CXXFLAGS="${CXXFLAGS}" \
@@ -34,13 +30,13 @@ post_configure() {
 }
 
 do_build() {
-	for _dir in ${wrksrc} ${wrksrc}/notifier ${wrksrc}/sudo; do
+	for _dir in ${wrksrc} ${wrksrc}/notifier; do
 		cd $_dir && make ${makejobs} ${make_build_args} ${make_build_target} CC="$CC" CXX="$CXX" LINK="$CXX"
 	done
 }
 
 do_install() {
-	for _dir in ${wrksrc} ${wrksrc}/notifier ${wrksrc}/sudo; do
+	for _dir in ${wrksrc} ${wrksrc}/notifier; do
 		cd $_dir && make INSTALL_ROOT=${DESTDIR} install
 	done
 }

From 0a31172d4054447a6ce6602a4a6c0847bcfcd18d Mon Sep 17 00:00:00 2001
From: toadwastoast <toadwastoast@proton.me>
Date: Thu, 31 Oct 2024 21:55:10 -0300
Subject: [PATCH 2/2] New package: qt-sudo-2.0.1

---
 srcpkgs/qt-sudo/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/qt-sudo/template

diff --git a/srcpkgs/qt-sudo/template b/srcpkgs/qt-sudo/template
new file mode 100644
index 00000000000000..cf2fbc463e4ca7
--- /dev/null
+++ b/srcpkgs/qt-sudo/template
@@ -0,0 +1,14 @@
+# Template file for 'qt-sudo'
+pkgname=qt-sudo
+version=2.0.1
+revision=1
+build_style=qmake
+build_helper=qmake6
+hostmakedepends="qt6-base qt6-tools"
+makedepends="qt6-base-devel"
+short_desc="Clone of LXQt sudo tool, without LXQt libs"
+maintainer="toadwastoast <toadwastoast@proton.me>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/aarnt/qt-sudo"
+distfiles="https://github.com/aarnt/qt-sudo/archive/v${version}.tar.gz"
+checksum=d97f38b37f2f8e4411506bed361090415a5617ebd794a9de7d9b4bb606ece3a1

  parent reply	other threads:[~2024-11-01  0:56 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-29  1:11 [PR PATCH] " toadwastoast
2024-10-29  2:22 ` [PR PATCH] [Updated] " toadwastoast
2024-10-29  2:32 ` toadwastoast
2024-10-29 10:06 ` [PR REVIEW] " chrysos349
2024-10-29 12:06 ` [PR PATCH] [Updated] " toadwastoast
2024-11-01  0:18 ` [PR REVIEW] " classabbyamp
2024-11-01  0:56 ` toadwastoast [this message]
2024-11-01  1:34 ` [PR PATCH] [Merged]: " classabbyamp

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=20241101005637.ECD7B30AB0@inbox.vuxu.org \
    --to=toadwastoast@users.noreply.github.com \
    --cc=ml@inbox.vuxu.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;
as well as URLs for NNTP newsgroup(s).