Github messages for voidlinux
 help / color / mirror / Atom feed
From: CabrioletDiskette <CabrioletDiskette@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New Package: Qt6ct
Date: Tue, 22 Mar 2022 03:18:36 +0100	[thread overview]
Message-ID: <20220322021836.nAzxXuR1xyLlcUaZYXVG347ET49FaItldl3BNVQi7W4@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-36265@inbox.vuxu.org>

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

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

https://github.com/CabrioletDiskette/void-packages qt6ct
https://github.com/void-linux/void-packages/pull/36265

New Package: Qt6ct
<!-- Uncomment relevant sections and delete options which are not applicable -->

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


#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**


<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](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, (x86_64)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64
- I am working on cross compiling these packages on:
  - aarch64-musl
  - armv7l
  - armv6l-musl



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

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

From 4a44c2fd5e2c0bdd1d1fdada8c88eec35bcdb5a9 Mon Sep 17 00:00:00 2001
From: Adam Pschorr <adampschorr13@aol.com>
Date: Sun, 20 Mar 2022 19:44:45 -0600
Subject: [PATCH 1/4] New package: BAND-1.10.9

---
 srcpkgs/BAND/template | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 srcpkgs/BAND/template

diff --git a/srcpkgs/BAND/template b/srcpkgs/BAND/template
new file mode 100644
index 000000000000..e749580c782e
--- /dev/null
+++ b/srcpkgs/BAND/template
@@ -0,0 +1,35 @@
+# Template file for 'BAND'
+pkgname=BAND
+version=1.10.9
+revision=1
+archs="x86_64"
+hostmakedepends="binutils tar xz gzip"
+depends="gtk+3 libnotify nss libXScrnSaver libXtst xdg-utils at-spi2-core libuuid libappindicator libsecret"
+short_desc="Group Chat Client for Sports, School, Campus Groups, and more"
+maintainer="Adam Pschorr <adampschorr13@aol.com>"
+license="custom:Proprietary"
+homepage="https://band.us/home"
+distfiles="https://ssl.pstatic.net/cmstatic/desktop/v${version}/BAND-${version}-amd64.deb"
+checksum=88bbc33c1d831e51abad81cb43d4622382e3cb40de38f35d549effc979ea1f8c
+repository=nonfree
+restricted=yes
+do_extract() {
+	ar x ${XBPS_SRCDISTDIR}/BAND-${version}/BAND-${version}-amd64.deb
+	tar -xf data.tar.xz
+	gzip -d usr/share/doc/band/changelog.gz
+}
+do_install() {
+	vmkdir /opt/BAND
+	vcopy opt/BAND/* /opt/BAND
+	vinstall usr/share/applications/band.desktop 644 usr/share/applications
+	#install icons
+	for size in 16 32 48 64 128 256 512; do
+		#Insure containing directory
+		mkdir -p ${DESTDIR}/usr/share/icons/hicolor/${size}x${size}/apps
+		vinstall usr/share/icons/hicolor/${size}x${size}/apps/band.png 644 /usr/share/icons/hicolor/${size}x${size}/apps
+	done
+}
+post_install() {
+	vdoc usr/share/doc/band/changelog
+	vlicense opt/BAND/resources/LICENSE
+}

From 233cfc678976f94b3fbcb0085062e1b90b67f35d Mon Sep 17 00:00:00 2001
From: Adam Pschorr <adampschorr13@aol.com>
Date: Mon, 21 Mar 2022 12:19:12 -0600
Subject: [PATCH 2/4] New package: qt6ct-0.5

---
 srcpkgs/qt6ct/INSTALL.msg    |  2 ++
 srcpkgs/qt6ct/files/qt6ct.sh |  6 ++++++
 srcpkgs/qt6ct/template       | 18 ++++++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 100644 srcpkgs/qt6ct/INSTALL.msg
 create mode 100644 srcpkgs/qt6ct/files/qt6ct.sh
 create mode 100644 srcpkgs/qt6ct/template

diff --git a/srcpkgs/qt6ct/INSTALL.msg b/srcpkgs/qt6ct/INSTALL.msg
new file mode 100644
index 000000000000..8485434a339f
--- /dev/null
+++ b/srcpkgs/qt6ct/INSTALL.msg
@@ -0,0 +1,2 @@
+NOTE: You may have to logout and log back in or reboot to apply qt6ct
+theme environment variables properly
diff --git a/srcpkgs/qt6ct/files/qt6ct.sh b/srcpkgs/qt6ct/files/qt6ct.sh
new file mode 100644
index 000000000000..b36c5b523174
--- /dev/null
+++ b/srcpkgs/qt6ct/files/qt6ct.sh
@@ -0,0 +1,6 @@
+#!/usr/bin/env sh
+
+export QT_QPA_PLATFORMTHEME=qt6ct
+if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
+	export QT_QPA_PLATFORM=wayland
+fi
diff --git a/srcpkgs/qt6ct/template b/srcpkgs/qt6ct/template
new file mode 100644
index 000000000000..7ad14a312392
--- /dev/null
+++ b/srcpkgs/qt6ct/template
@@ -0,0 +1,18 @@
+# Template file for 'qt6ct'
+pkgname=qt6ct
+version=0.5
+revision=1
+build_style=cmake
+hostmakedepends="qt6-tools-devel"
+depends="qt6-base qt6-svg"
+short_desc="Qt6 Configuration Tool"
+maintainer="Adam Pschorr <adampschorr13@aol.com>"
+license="BSD-2-Clause"
+homepage="https://github.com/trialuser02/qt6ct"
+distfiles="https://github.com/trialuser02/qt6ct/archive/refs/tags/${version}.tar.gz"
+checksum=0fea8e5295e4ebebfae36f4862aaa67859238312d7a055b252cc53b281d69e0d
+
+post_install() {
+	vlicense COPYING
+	vinstall ${FILESDIR}/qt6ct.sh 644 etc/profile.d
+}

From 56d953763f304fa3090bd53b1b937574fdf41fdc Mon Sep 17 00:00:00 2001
From: Adam Pschorr <adampschorr13@aol.com>
Date: Mon, 21 Mar 2022 12:42:29 -0600
Subject: [PATCH 3/4] remove BAND from qt6ct branch

---
 srcpkgs/BAND/template | 35 -----------------------------------
 1 file changed, 35 deletions(-)
 delete mode 100644 srcpkgs/BAND/template

diff --git a/srcpkgs/BAND/template b/srcpkgs/BAND/template
deleted file mode 100644
index e749580c782e..000000000000
--- a/srcpkgs/BAND/template
+++ /dev/null
@@ -1,35 +0,0 @@
-# Template file for 'BAND'
-pkgname=BAND
-version=1.10.9
-revision=1
-archs="x86_64"
-hostmakedepends="binutils tar xz gzip"
-depends="gtk+3 libnotify nss libXScrnSaver libXtst xdg-utils at-spi2-core libuuid libappindicator libsecret"
-short_desc="Group Chat Client for Sports, School, Campus Groups, and more"
-maintainer="Adam Pschorr <adampschorr13@aol.com>"
-license="custom:Proprietary"
-homepage="https://band.us/home"
-distfiles="https://ssl.pstatic.net/cmstatic/desktop/v${version}/BAND-${version}-amd64.deb"
-checksum=88bbc33c1d831e51abad81cb43d4622382e3cb40de38f35d549effc979ea1f8c
-repository=nonfree
-restricted=yes
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/BAND-${version}/BAND-${version}-amd64.deb
-	tar -xf data.tar.xz
-	gzip -d usr/share/doc/band/changelog.gz
-}
-do_install() {
-	vmkdir /opt/BAND
-	vcopy opt/BAND/* /opt/BAND
-	vinstall usr/share/applications/band.desktop 644 usr/share/applications
-	#install icons
-	for size in 16 32 48 64 128 256 512; do
-		#Insure containing directory
-		mkdir -p ${DESTDIR}/usr/share/icons/hicolor/${size}x${size}/apps
-		vinstall usr/share/icons/hicolor/${size}x${size}/apps/band.png 644 /usr/share/icons/hicolor/${size}x${size}/apps
-	done
-}
-post_install() {
-	vdoc usr/share/doc/band/changelog
-	vlicense opt/BAND/resources/LICENSE
-}

From 42936898e760fce0f3718b82f1255a0eee1a1b42 Mon Sep 17 00:00:00 2001
From: Adam Pschorr <adampschorr13@aol.com>
Date: Mon, 21 Mar 2022 20:18:13 -0600
Subject: [PATCH 4/4] revised qt6ct template and removed INSTALL.msg

---
 srcpkgs/qt6ct/INSTALL.msg    | 2 --
 srcpkgs/qt6ct/files/qt6ct.sh | 2 +-
 2 files changed, 1 insertion(+), 3 deletions(-)
 delete mode 100644 srcpkgs/qt6ct/INSTALL.msg

diff --git a/srcpkgs/qt6ct/INSTALL.msg b/srcpkgs/qt6ct/INSTALL.msg
deleted file mode 100644
index 8485434a339f..000000000000
--- a/srcpkgs/qt6ct/INSTALL.msg
+++ /dev/null
@@ -1,2 +0,0 @@
-NOTE: You may have to logout and log back in or reboot to apply qt6ct
-theme environment variables properly
diff --git a/srcpkgs/qt6ct/files/qt6ct.sh b/srcpkgs/qt6ct/files/qt6ct.sh
index b36c5b523174..e4e7708d8a29 100644
--- a/srcpkgs/qt6ct/files/qt6ct.sh
+++ b/srcpkgs/qt6ct/files/qt6ct.sh
@@ -1,6 +1,6 @@
 #!/usr/bin/env sh
 
-export QT_QPA_PLATFORMTHEME=qt6ct
+export QT_QPA_PLATFORMTHEME=qt5ct
 if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
 	export QT_QPA_PLATFORM=wayland
 fi

  parent reply	other threads:[~2022-03-22  2:18 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-21 19:09 [PR PATCH] " CabrioletDiskette
2022-03-21 23:21 ` [PR REVIEW] " classabbyamp
2022-03-21 23:21 ` classabbyamp
2022-03-22  1:20 ` CabrioletDiskette
2022-03-22  2:18 ` CabrioletDiskette [this message]
2022-03-22  2:22 ` CabrioletDiskette
2022-03-22  2:22 ` CabrioletDiskette
2022-03-22  4:42 ` CabrioletDiskette
2022-03-22 15:37 ` paper42
2022-03-22 17:30 ` [PR PATCH] [Updated] " CabrioletDiskette
2022-03-22 17:49 ` CabrioletDiskette
2022-03-23  0:24 ` CabrioletDiskette
2022-03-23  0:29 ` CabrioletDiskette
2022-03-23  0:45 ` CabrioletDiskette
2022-03-23  0:46 ` CabrioletDiskette
2022-03-23  4:15 ` [PR PATCH] [Updated] New Package: qt6ct CabrioletDiskette
2022-03-23 19:51 ` CabrioletDiskette
2022-03-23 20:00 ` CabrioletDiskette
2022-03-24  6:33 ` CabrioletDiskette
2022-03-24 10:05 ` [PR REVIEW] " paper42
2022-03-24 16:39 ` [PR PATCH] [Updated] " CabrioletDiskette
2022-03-24 16:43 ` CabrioletDiskette
2022-03-24 16:44 ` [PR REVIEW] " CabrioletDiskette
2022-03-27 18:22 ` Vaelatern
2022-03-27 23:33 ` [PR PATCH] [Updated] " CabrioletDiskette
2022-03-27 23:35 ` CabrioletDiskette
2022-03-28  3:40 ` [PR PATCH] [Merged]: " Vaelatern
2022-03-28  6:14 ` [PR REVIEW] " paper42

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=20220322021836.nAzxXuR1xyLlcUaZYXVG347ET49FaItldl3BNVQi7W4@z \
    --to=cabrioletdiskette@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).