Github messages for voidlinux
 help / color / mirror / Atom feed
From: T0mstone <T0mstone@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: UxPlay-1.68.1
Date: Mon, 08 Jan 2024 19:45:44 +0100	[thread overview]
Message-ID: <20240108184544.5pYm0ltujGylhVqeE7Bf5GaaYZPNM4e31_u4clDcPbc@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-44875@inbox.vuxu.org>

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

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

https://github.com/T0mstone/void-packages uxplay
https://github.com/void-linux/void-packages/pull/44875

New package: UxPlay-1.68.1
<!-- Uncomment relevant sections and delete options which are not applicable -->
Spiritual successor to #33191.

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

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

<!-- 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, (x86_64-glibc)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl

#### OpenSSL
> UxPlay's GPLv3 license does not have an added "GPL exception" explicitly allowing it to be distributed in compiled form when linked to OpenSSL versions prior to v. 3.0.0 (older versions of OpenSSL have a license clause incompatible with the GPL unless OpenSSL can be regarded as a "System Library", which it is in *BSD). Many Linux distributions treat OpenSSL as a "System Library", but some (e.g. Debian) do not: in this case, the issue is solved by linking with OpenSSL-3.0.0 or later.

~~How does Void handle this? Can OpenSSL be considered a "System Library"? Once #37681 lands, this won't be a concern anymore, of course. Until then, I've made the package `restricted=yes` for now.~~

**Update**: Since OpenSSL is now on version 3, I have removed the restriction.

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

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

From aed0aa602ba0f858f8720538d8962ae7aeecfba5 Mon Sep 17 00:00:00 2001
From: T0mstone <realt0mstone@gmail.com>
Date: Wed, 5 Jul 2023 18:08:11 +0200
Subject: [PATCH] New package: UxPlay-1.68.2

---
 srcpkgs/UxPlay/files/README.voidlinux |  5 +++++
 srcpkgs/UxPlay/template               | 23 +++++++++++++++++++++++
 2 files changed, 28 insertions(+)
 create mode 100644 srcpkgs/UxPlay/files/README.voidlinux
 create mode 100644 srcpkgs/UxPlay/template

diff --git a/srcpkgs/UxPlay/files/README.voidlinux b/srcpkgs/UxPlay/files/README.voidlinux
new file mode 100644
index 0000000000000..f67a85659e506
--- /dev/null
+++ b/srcpkgs/UxPlay/files/README.voidlinux
@@ -0,0 +1,5 @@
+Additional GStreamer plugins you may need to install:
+- `gstreamer-vaapi` is needed for hardware-accelerated h264 video decoding by Intel or AMD graphics (but not for use with NVIDIA using proprietary drivers)
+- `gstreamer1-pipewire` may be needed for audio sharing when your system is set up to use pipewire
+
+Additionally, UxPlay requires a running DNS-SD server (for example `avahi`).
diff --git a/srcpkgs/UxPlay/template b/srcpkgs/UxPlay/template
new file mode 100644
index 0000000000000..ab619777ad92f
--- /dev/null
+++ b/srcpkgs/UxPlay/template
@@ -0,0 +1,23 @@
+# Template file for 'UxPlay'
+pkgname=UxPlay
+version=1.68.2
+revision=1
+build_style=cmake
+configure_args="$(vopt_if native_build '' '-DNO_MARCH_NATIVE=ON') $(vopt_if x11 '' '-DNO_X11_DEPS=ON')"
+hostmakedepends="pkg-config"
+makedepends="openssl-devel libplist-devel avahi-compat-libs-devel gstreamer1-devel gst-plugins-base1-devel $(vopt_if x11 libX11-devel)"
+depends="gst-plugins-base1 gst-libav gst-plugins-good1 gst-plugins-bad1"
+short_desc="AirPlay Unix mirroring server"
+maintainer="T0mstone <realt0mstone@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/FDH2/UxPlay"
+changelog="https://github.com/FDH2/UxPlay/releases/tag/v${version}"
+distfiles="https://github.com/FDH2/UxPlay/archive/refs/tags/v${version}.tar.gz"
+checksum=7016d8800b89d3dec2139cc21b779cd61fd49b0d1456311ca3c5182c086ec8ed
+
+build_options="x11 native_build"
+build_options_default="x11"
+
+post_install() {
+	vdoc ${FILESDIR}/README.voidlinux
+}

  parent reply	other threads:[~2024-01-08 18:45 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-06 11:59 [PR PATCH] New package: UxPlay-1.65 T0mstone
2023-07-06 20:52 ` [PR REVIEW] " classabbyamp
2023-07-07 16:33 ` [PR PATCH] [Updated] " T0mstone
2023-09-11 20:17 ` T0mstone
2023-09-11 20:19 ` [PR PATCH] [Updated] New package: UxPlay-1.66 T0mstone
2023-09-11 20:44 ` T0mstone
2023-12-09  4:54 ` T0mstone
2024-01-01 20:22 ` [PR PATCH] [Updated] New package: UxPlay-1.67 T0mstone
2024-01-08 18:45 ` T0mstone [this message]
2024-04-08  1:45 ` New package: UxPlay-1.68.2 github-actions
2024-04-09 17:46 ` T0mstone
2024-04-09 17:47 ` [PR PATCH] [Updated] " T0mstone
2024-04-24  9:25 ` T0mstone
2024-04-24  9:25 ` T0mstone
2024-04-24  9:42 ` [PR PATCH] [Updated] New package: UxPlay-1.68.3 T0mstone

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=20240108184544.5pYm0ltujGylhVqeE7Bf5GaaYZPNM4e31_u4clDcPbc@z \
    --to=t0mstone@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).