Github messages for voidlinux
 help / color / mirror / Atom feed
From: mhmdanas <mhmdanas@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] eudev: update to 3.2.12.
Date: Mon, 12 Jun 2023 20:43:03 +0200	[thread overview]
Message-ID: <20230612184303.nT6H5KCIbSFYy-w0enGBaKzW-WwLDTGr0V2z0ZjDsKE@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-44175@inbox.vuxu.org>

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

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

https://github.com/mhmdanas/void-packages eudev-3.2.12
https://github.com/void-linux/void-packages/pull/44175

eudev: update to 3.2.12.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### 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/44175.patch is attached

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

From cc8be892b3220621072f3136a9f3eddf8c0a3e4e Mon Sep 17 00:00:00 2001
From: triallax <triallax@tutanota.com>
Date: Tue, 30 May 2023 17:48:30 +0100
Subject: [PATCH 1/2] eudev: update to 3.2.12.

---
 ...80239647d37e5cfe320c422cce879c2e0d2c.patch | 20 ------------------
 srcpkgs/eudev/template                        | 21 +++++++++----------
 2 files changed, 10 insertions(+), 31 deletions(-)
 delete mode 100644 srcpkgs/eudev/patches/9d9e80239647d37e5cfe320c422cce879c2e0d2c.patch

diff --git a/srcpkgs/eudev/patches/9d9e80239647d37e5cfe320c422cce879c2e0d2c.patch b/srcpkgs/eudev/patches/9d9e80239647d37e5cfe320c422cce879c2e0d2c.patch
deleted file mode 100644
index b36b84f75496..000000000000
--- a/srcpkgs/eudev/patches/9d9e80239647d37e5cfe320c422cce879c2e0d2c.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-From 9d9e80239647d37e5cfe320c422cce879c2e0d2c Mon Sep 17 00:00:00 2001
-From: oreo639 <31916379+Oreo639@users.noreply.github.com>
-Date: Sat, 9 Apr 2022 05:39:56 -0700
-Subject: [PATCH] udev: add udev_dir as synonym of udevdir
-
----
- src/udev/udev.pc.in | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/src/udev/udev.pc.in b/src/udev/udev.pc.in
-index 4a9d867b8..cccebb245 100644
---- a/src/udev/udev.pc.in
-+++ b/src/udev/udev.pc.in
-@@ -3,4 +3,5 @@ Description: eudev
- Version: @UDEV_VERSION@
- prefix=@prefix@
- exec_prefix=@exec_prefix@
--udevdir=@udevlibexecdir@
-+udev_dir=@udevlibexecdir@
-+udevdir=${udev_dir}
diff --git a/srcpkgs/eudev/template b/srcpkgs/eudev/template
index 1639a17d3448..27c652e974ea 100644
--- a/srcpkgs/eudev/template
+++ b/srcpkgs/eudev/template
@@ -3,33 +3,32 @@
 _UDEV_VERSION="243" # compatible udev version provided
 
 pkgname=eudev
-version=3.2.11
+version=3.2.12
 revision=1
 build_style=gnu-configure
-configure_args="--enable-hwdb --enable-manpages --disable-introspection"
+configure_args="--enable-hwdb --enable-manpages"
 hostmakedepends="pkg-config gperf"
 makedepends="libblkid-devel libkmod-devel"
 checkdepends="xz tar perl"
 short_desc="Fork of systemd-udev (enhanced userland device daemon)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-or-later"
-homepage="https://github.com/eudev-project"
+homepage="https://github.com/eudev-project/eudev"
+changelog="https://github.com/eudev-project/eudev/releases"
 distfiles="https://github.com/eudev-project/eudev/releases/download/v${version}/eudev-${version}.tar.gz"
-checksum=19847cafec67897da855fde56f9dc7d92e21c50e450aa79068a7e704ed44558b
+checksum=ccdd64ec3c381d3c3ed0e99d2e70d1f62988c7763de89ca7bdffafa5eacb9ad8
 conf_files="/etc/udev/udev.conf"
 
+if [ "$XBPS_ALLOW_CHROOT_BREAKOUT" ]; then
+	# requires unshare(2) which is not available in chroot
+	make_check=no
+fi
+
 post_install() {
 	mv "${DESTDIR}/etc/udev/hwdb.d" "${DESTDIR}/usr/lib/udev"
 	vsv udevd
 }
 
-do_check() {
-	# requires unshare(2) which is not available in chroot
-	if [ ! "$XBPS_ALLOW_CHROOT_BREAKOUT" ]; then
-		make check
-	fi
-}
-
 eudev-libudev-devel_package() {
 	provides="libudev-devel-${_UDEV_VERSION}_${revision}"
 	depends="eudev-libudev>=${version}_${revision}"

From 08675ad6ecec0bae985cad04b6c0e0a819ccd124 Mon Sep 17 00:00:00 2001
From: triallax <triallax@tutanota.com>
Date: Mon, 12 Jun 2023 19:26:50 +0100
Subject: [PATCH 2/2] base-files: add 'sgx' group.

---
 srcpkgs/base-files/files/group | 1 +
 srcpkgs/base-files/template    | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/base-files/files/group b/srcpkgs/base-files/files/group
index dfad1019792b..455c937b1aef 100644
--- a/srcpkgs/base-files/files/group
+++ b/srcpkgs/base-files/files/group
@@ -24,6 +24,7 @@ kvm:x:24:
 input:x:25:
 plugdev:x:26:
 usbmon:x:27:
+sgx:x:28:
 nogroup:x:99:
 users:x:100:
 xbuilder:x:101:
diff --git a/srcpkgs/base-files/template b/srcpkgs/base-files/template
index 27b83604b648..5594c5a0efb4 100644
--- a/srcpkgs/base-files/template
+++ b/srcpkgs/base-files/template
@@ -1,7 +1,7 @@
 # Template file for 'base-files'
 pkgname=base-files
 version=0.143
-revision=1
+revision=2
 bootstrap=yes
 depends="xbps-triggers"
 short_desc="Void Linux base system files"
@@ -29,7 +29,7 @@ conf_files="
 
 replaces="base-directories>=0"
 # New system groups
-system_groups="kvm:24 plugdev:26 usbmon:27"
+system_groups="kvm:24 plugdev:26 usbmon:27 sgx:28"
 
 do_install() {
 	# Create bin and lib dirs and symlinks.

  parent reply	other threads:[~2023-06-12 18:43 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-30 16:49 [PR PATCH] " mhmdanas
2023-05-31 15:09 ` biopsin
2023-06-03  8:15 ` mhmdanas
2023-06-03 15:50 ` biopsin
2023-06-08 21:02 ` mhmdanas
2023-06-12  8:13 ` biopsin
2023-06-12 15:11 ` [PR PATCH] [Updated] " mhmdanas
2023-06-12 15:14 ` mhmdanas
2023-06-12 15:24 ` mhmdanas
2023-06-12 15:49 ` Duncaen
2023-06-12 18:43 ` mhmdanas [this message]
2023-06-12 18:43 ` mhmdanas
2023-06-23 19:39 ` [PR PATCH] [Merged]: " Duncaen
2023-06-23 23:02 ` dkwo
2023-06-24  0:30 ` Duncaen

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=20230612184303.nT6H5KCIbSFYy-w0enGBaKzW-WwLDTGr0V2z0ZjDsKE@z \
    --to=mhmdanas@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).