Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] diffutils: update to 3.9.
@ 2023-01-18 22:41 mhmdanas
  2023-01-21 18:35 ` Piraty
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: mhmdanas @ 2023-01-18 22:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mhmdanas/void-packages diffutils-3.9
https://github.com/void-linux/void-packages/pull/41732

diffutils: update to 3.9.
<!-- 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/41732.patch is attached

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

From bd126bba206f9e715a385ea88f1eff95b1b1ccf8 Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 18 Jan 2023 22:39:37 +0000
Subject: [PATCH] diffutils: update to 3.9.

---
 srcpkgs/diffutils/patches/ppc-musl.patch | 14 --------------
 srcpkgs/diffutils/template               |  6 +++---
 2 files changed, 3 insertions(+), 17 deletions(-)
 delete mode 100644 srcpkgs/diffutils/patches/ppc-musl.patch

diff --git a/srcpkgs/diffutils/patches/ppc-musl.patch b/srcpkgs/diffutils/patches/ppc-musl.patch
deleted file mode 100644
index 6ba37f233591..000000000000
--- a/srcpkgs/diffutils/patches/ppc-musl.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/lib/sigsegv.c
-+++ b/lib/sigsegv.c
-@@ -221,8 +221,10 @@ int libsigsegv_version = LIBSIGSEGV_VERSION;
- /* both should be equivalent */
- #   if 0
- #    define SIGSEGV_FAULT_STACKPOINTER  ((ucontext_t *) ucp)->uc_mcontext.regs->gpr[1]
--#   else
-+#   elif defined(__GLIBC__)
- #    define SIGSEGV_FAULT_STACKPOINTER  ((ucontext_t *) ucp)->uc_mcontext.uc_regs->gregs[1]
-+#   else
-+#    define SIGSEGV_FAULT_STACKPOINTER  ((ucontext_t *) ucp)->uc_mcontext.gregs[1]
- #   endif
- #  endif
- 
diff --git a/srcpkgs/diffutils/template b/srcpkgs/diffutils/template
index b5954a0db2ce..f7e20a93d5a2 100644
--- a/srcpkgs/diffutils/template
+++ b/srcpkgs/diffutils/template
@@ -1,6 +1,6 @@
 # Template file for 'diffutils'
 pkgname=diffutils
-version=3.8
+version=3.9
 revision=1
 bootstrap=yes
 build_style=gnu-configure
@@ -10,8 +10,8 @@ short_desc="The GNU diff utilities"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://www.gnu.org/software/diffutils"
-distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
-checksum=a6bdd7d1b31266d11c4f4de6c1b748d4607ab0231af5188fc2533d0ae2438fec
+distfiles="${GNU_SITE}/diffutils/diffutils-${version}.tar.xz"
+checksum=d80d3be90a201868de83d78dad3413ad88160cc53bcc36eb9eaf7c20dbf023f1
 
 if [ "$XBPS_TARGET_LIBC" = musl ]; then
 	export ac_cv_lib_error_at_line=no

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

* Re: diffutils: update to 3.9.
  2023-01-18 22:41 [PR PATCH] diffutils: update to 3.9 mhmdanas
@ 2023-01-21 18:35 ` Piraty
  2023-01-21 20:55 ` [PR PATCH] [Updated] " mhmdanas
  2023-01-21 23:10 ` [PR PATCH] [Merged]: " leahneukirchen
  2 siblings, 0 replies; 4+ messages in thread
From: Piraty @ 2023-01-21 18:35 UTC (permalink / raw)
  To: ml

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

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/41732#issuecomment-1399307654

Comment:
fix xlint

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

* Re: [PR PATCH] [Updated] diffutils: update to 3.9.
  2023-01-18 22:41 [PR PATCH] diffutils: update to 3.9 mhmdanas
  2023-01-21 18:35 ` Piraty
@ 2023-01-21 20:55 ` mhmdanas
  2023-01-21 23:10 ` [PR PATCH] [Merged]: " leahneukirchen
  2 siblings, 0 replies; 4+ messages in thread
From: mhmdanas @ 2023-01-21 20:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mhmdanas/void-packages diffutils-3.9
https://github.com/void-linux/void-packages/pull/41732

diffutils: update to 3.9.
<!-- 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/41732.patch is attached

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

From da55d2f02f36e3db8b6fc0521b700780a5da7627 Mon Sep 17 00:00:00 2001
From: mhmdanas <triallax@tutanota.com>
Date: Wed, 18 Jan 2023 22:39:37 +0000
Subject: [PATCH] diffutils: update to 3.9.

---
 srcpkgs/diffutils/patches/ppc-musl.patch | 14 --------------
 srcpkgs/diffutils/template               |  8 ++++----
 2 files changed, 4 insertions(+), 18 deletions(-)
 delete mode 100644 srcpkgs/diffutils/patches/ppc-musl.patch

diff --git a/srcpkgs/diffutils/patches/ppc-musl.patch b/srcpkgs/diffutils/patches/ppc-musl.patch
deleted file mode 100644
index 6ba37f233591..000000000000
--- a/srcpkgs/diffutils/patches/ppc-musl.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/lib/sigsegv.c
-+++ b/lib/sigsegv.c
-@@ -221,8 +221,10 @@ int libsigsegv_version = LIBSIGSEGV_VERSION;
- /* both should be equivalent */
- #   if 0
- #    define SIGSEGV_FAULT_STACKPOINTER  ((ucontext_t *) ucp)->uc_mcontext.regs->gpr[1]
--#   else
-+#   elif defined(__GLIBC__)
- #    define SIGSEGV_FAULT_STACKPOINTER  ((ucontext_t *) ucp)->uc_mcontext.uc_regs->gregs[1]
-+#   else
-+#    define SIGSEGV_FAULT_STACKPOINTER  ((ucontext_t *) ucp)->uc_mcontext.gregs[1]
- #   endif
- #  endif
- 
diff --git a/srcpkgs/diffutils/template b/srcpkgs/diffutils/template
index b5954a0db2ce..47ad5680d713 100644
--- a/srcpkgs/diffutils/template
+++ b/srcpkgs/diffutils/template
@@ -1,17 +1,17 @@
 # Template file for 'diffutils'
 pkgname=diffutils
-version=3.8
+version=3.9
 revision=1
 bootstrap=yes
 build_style=gnu-configure
 configure_args="gl_cv_func_gettimeofday_clobber=no gl_cv_func_tzset_clobber=no"
 checkdepends="perl"
-short_desc="The GNU diff utilities"
+short_desc="GNU diff utilities"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://www.gnu.org/software/diffutils"
-distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
-checksum=a6bdd7d1b31266d11c4f4de6c1b748d4607ab0231af5188fc2533d0ae2438fec
+distfiles="${GNU_SITE}/diffutils/diffutils-${version}.tar.xz"
+checksum=d80d3be90a201868de83d78dad3413ad88160cc53bcc36eb9eaf7c20dbf023f1
 
 if [ "$XBPS_TARGET_LIBC" = musl ]; then
 	export ac_cv_lib_error_at_line=no

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

* Re: [PR PATCH] [Merged]: diffutils: update to 3.9.
  2023-01-18 22:41 [PR PATCH] diffutils: update to 3.9 mhmdanas
  2023-01-21 18:35 ` Piraty
  2023-01-21 20:55 ` [PR PATCH] [Updated] " mhmdanas
@ 2023-01-21 23:10 ` leahneukirchen
  2 siblings, 0 replies; 4+ messages in thread
From: leahneukirchen @ 2023-01-21 23:10 UTC (permalink / raw)
  To: ml

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

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

diffutils: update to 3.9.
https://github.com/void-linux/void-packages/pull/41732

Description:
<!-- 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
-->


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

end of thread, other threads:[~2023-01-21 23:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-18 22:41 [PR PATCH] diffutils: update to 3.9 mhmdanas
2023-01-21 18:35 ` Piraty
2023-01-21 20:55 ` [PR PATCH] [Updated] " mhmdanas
2023-01-21 23:10 ` [PR PATCH] [Merged]: " leahneukirchen

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).