Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] xastir: update to 2.1.8.
@ 2023-01-14  0:19 hazen2215
  2023-01-14  0:56 ` [PR PATCH] [Updated] " hazen2215
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: hazen2215 @ 2023-01-14  0:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/hazen2215/void-packages xastir
https://github.com/void-linux/void-packages/pull/41628

xastir: update to 2.1.8.
<!-- 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 [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, (x86_64-musl)


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

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

From 11fac5976814b8cffcbf74a805e5ab60d8d8c31b Mon Sep 17 00:00:00 2001
From: hazen2215 <haz@disroot.org>
Date: Sat, 14 Jan 2023 09:06:48 +0900
Subject: [PATCH] xastir: update to 2.1.8.

---
 srcpkgs/xastir/patches/fix-mutex.patch | 15 +++++++++++++++
 srcpkgs/xastir/template                | 13 +++++++++----
 2 files changed, 24 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/xastir/patches/fix-mutex.patch

diff --git a/srcpkgs/xastir/patches/fix-mutex.patch b/srcpkgs/xastir/patches/fix-mutex.patch
new file mode 100644
index 000000000000..129cd38b4d11
--- /dev/null
+++ b/srcpkgs/xastir/patches/fix-mutex.patch
@@ -0,0 +1,15 @@
+--- a/src/util.c	2019-07-15 00:30:31.000000000 +0200
++++ b/src/util.c	2019-08-31 15:56:13.580212122 +0200
+@@ -5457,10 +5457,10 @@
+   // NON_LSB VERSION
+   // Check first for newer pthread function
+ #  ifdef HAVE_PTHREAD_MUTEXATTR_SETTYPE
+-  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  else
+   // Use older, deprecated pthread function
+-  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  endif  // HAVE_PTHREAD_MUTEXATTR_SETTYPE
+ # endif  // __LSB__
+ 
diff --git a/srcpkgs/xastir/template b/srcpkgs/xastir/template
index f3a315e821cd..12c5462cff47 100644
--- a/srcpkgs/xastir/template
+++ b/srcpkgs/xastir/template
@@ -1,15 +1,20 @@
 # Template file for 'xastir'
 pkgname=xastir
-version=2.1.6
+version=2.1.8
 revision=1
-archs="i686 x86_64 ppc64le"
 build_style=gnu-configure
-makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel motif-devel libax25-devel"
+hostmakedepends="autoconf automake"
+makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel
+ motif-devel libax25-devel"
 short_desc="X Amateur Station Tracking and Information Reporting"
 maintainer="Michael Aldridge <maldridge@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="http://xastir.org"
 distfiles="https://github.com/Xastir/Xastir/archive/Release-${version}.tar.gz"
-checksum=5a71af2936d4d237c779b1c3a519211f8e3cd03b9873a260c849ddc8950e1a3e
+checksum=aa88069f149dbe720276d0134282bc491e7993d8a88380c8fe2a4735ee6444fc
 
 CFLAGS="-fcommon"
+
+pre_configure() {
+	./bootstrap.sh
+}

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

* Re: [PR PATCH] [Updated] xastir: update to 2.1.8.
  2023-01-14  0:19 [PR PATCH] xastir: update to 2.1.8 hazen2215
@ 2023-01-14  0:56 ` hazen2215
  2023-01-14  0:57 ` hazen2215
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: hazen2215 @ 2023-01-14  0:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/hazen2215/void-packages xastir
https://github.com/void-linux/void-packages/pull/41628

xastir: update to 2.1.8.
<!-- 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 [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, (x86_64-musl)


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

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

From cc2513d77059abb4b8551c8bb43316c8c80f4e01 Mon Sep 17 00:00:00 2001
From: hazen2215 <haz@disroot.org>
Date: Sat, 14 Jan 2023 09:06:48 +0900
Subject: [PATCH] xastir: update to 2.1.8.

---
 srcpkgs/xastir/patches/fix-mutex.patch | 15 +++++++++++++++
 srcpkgs/xastir/template                | 13 +++++++++----
 2 files changed, 24 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/xastir/patches/fix-mutex.patch

diff --git a/srcpkgs/xastir/patches/fix-mutex.patch b/srcpkgs/xastir/patches/fix-mutex.patch
new file mode 100644
index 000000000000..129cd38b4d11
--- /dev/null
+++ b/srcpkgs/xastir/patches/fix-mutex.patch
@@ -0,0 +1,15 @@
+--- a/src/util.c	2019-07-15 00:30:31.000000000 +0200
++++ b/src/util.c	2019-08-31 15:56:13.580212122 +0200
+@@ -5457,10 +5457,10 @@
+   // NON_LSB VERSION
+   // Check first for newer pthread function
+ #  ifdef HAVE_PTHREAD_MUTEXATTR_SETTYPE
+-  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  else
+   // Use older, deprecated pthread function
+-  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  endif  // HAVE_PTHREAD_MUTEXATTR_SETTYPE
+ # endif  // __LSB__
+ 
diff --git a/srcpkgs/xastir/template b/srcpkgs/xastir/template
index f3a315e821cd..12c5462cff47 100644
--- a/srcpkgs/xastir/template
+++ b/srcpkgs/xastir/template
@@ -1,15 +1,20 @@
 # Template file for 'xastir'
 pkgname=xastir
-version=2.1.6
+version=2.1.8
 revision=1
-archs="i686 x86_64 ppc64le"
 build_style=gnu-configure
-makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel motif-devel libax25-devel"
+hostmakedepends="autoconf automake"
+makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel
+ motif-devel libax25-devel"
 short_desc="X Amateur Station Tracking and Information Reporting"
 maintainer="Michael Aldridge <maldridge@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="http://xastir.org"
 distfiles="https://github.com/Xastir/Xastir/archive/Release-${version}.tar.gz"
-checksum=5a71af2936d4d237c779b1c3a519211f8e3cd03b9873a260c849ddc8950e1a3e
+checksum=aa88069f149dbe720276d0134282bc491e7993d8a88380c8fe2a4735ee6444fc
 
 CFLAGS="-fcommon"
+
+pre_configure() {
+	./bootstrap.sh
+}

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

* Re: [PR PATCH] [Updated] xastir: update to 2.1.8.
  2023-01-14  0:19 [PR PATCH] xastir: update to 2.1.8 hazen2215
  2023-01-14  0:56 ` [PR PATCH] [Updated] " hazen2215
@ 2023-01-14  0:57 ` hazen2215
  2023-01-20  3:39 ` hazen2215
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: hazen2215 @ 2023-01-14  0:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/hazen2215/void-packages xastir
https://github.com/void-linux/void-packages/pull/41628

xastir: update to 2.1.8.
<!-- 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 [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, (x86_64-musl)


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

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

From 232e2751e8aca4772f3e50d42188ae7bb76b0fbc Mon Sep 17 00:00:00 2001
From: hazen2215 <haz@disroot.org>
Date: Sat, 14 Jan 2023 09:06:48 +0900
Subject: [PATCH] xastir: update to 2.1.8.

---
 srcpkgs/xastir/patches/fix-mutex.patch | 15 +++++++++++++++
 srcpkgs/xastir/template                | 14 ++++++++++----
 2 files changed, 25 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/xastir/patches/fix-mutex.patch

diff --git a/srcpkgs/xastir/patches/fix-mutex.patch b/srcpkgs/xastir/patches/fix-mutex.patch
new file mode 100644
index 000000000000..129cd38b4d11
--- /dev/null
+++ b/srcpkgs/xastir/patches/fix-mutex.patch
@@ -0,0 +1,15 @@
+--- a/src/util.c	2019-07-15 00:30:31.000000000 +0200
++++ b/src/util.c	2019-08-31 15:56:13.580212122 +0200
+@@ -5457,10 +5457,10 @@
+   // NON_LSB VERSION
+   // Check first for newer pthread function
+ #  ifdef HAVE_PTHREAD_MUTEXATTR_SETTYPE
+-  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  else
+   // Use older, deprecated pthread function
+-  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  endif  // HAVE_PTHREAD_MUTEXATTR_SETTYPE
+ # endif  // __LSB__
+ 
diff --git a/srcpkgs/xastir/template b/srcpkgs/xastir/template
index f3a315e821cd..e32b98690a2b 100644
--- a/srcpkgs/xastir/template
+++ b/srcpkgs/xastir/template
@@ -1,15 +1,21 @@
 # Template file for 'xastir'
 pkgname=xastir
-version=2.1.6
+version=2.1.8
 revision=1
-archs="i686 x86_64 ppc64le"
 build_style=gnu-configure
-makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel motif-devel libax25-devel"
+configure_args="ac_cv_file__usr_bin_gm_exe=no ac_cv_file__usr_bin_convert_exe=no"
+hostmakedepends="autoconf automake"
+makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel
+ motif-devel libax25-devel"
 short_desc="X Amateur Station Tracking and Information Reporting"
 maintainer="Michael Aldridge <maldridge@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="http://xastir.org"
 distfiles="https://github.com/Xastir/Xastir/archive/Release-${version}.tar.gz"
-checksum=5a71af2936d4d237c779b1c3a519211f8e3cd03b9873a260c849ddc8950e1a3e
+checksum=aa88069f149dbe720276d0134282bc491e7993d8a88380c8fe2a4735ee6444fc
 
 CFLAGS="-fcommon"
+
+pre_configure() {
+	./bootstrap.sh
+}

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

* Re: [PR PATCH] [Updated] xastir: update to 2.1.8.
  2023-01-14  0:19 [PR PATCH] xastir: update to 2.1.8 hazen2215
  2023-01-14  0:56 ` [PR PATCH] [Updated] " hazen2215
  2023-01-14  0:57 ` hazen2215
@ 2023-01-20  3:39 ` hazen2215
  2023-04-21  1:52 ` github-actions
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: hazen2215 @ 2023-01-20  3:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/hazen2215/void-packages xastir
https://github.com/void-linux/void-packages/pull/41628

xastir: update to 2.1.8.
<!-- 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 [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, (x86_64-musl)


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

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

From d7a90b1486bc448970ead9ba9ef3b66b8226f31b Mon Sep 17 00:00:00 2001
From: hazen2215 <haz@disroot.org>
Date: Sat, 14 Jan 2023 09:06:48 +0900
Subject: [PATCH] xastir: update to 2.1.8.

---
 srcpkgs/xastir/patches/fix-mutex.patch | 15 +++++++++++++++
 srcpkgs/xastir/template                | 14 ++++++++++----
 2 files changed, 25 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/xastir/patches/fix-mutex.patch

diff --git a/srcpkgs/xastir/patches/fix-mutex.patch b/srcpkgs/xastir/patches/fix-mutex.patch
new file mode 100644
index 0000000000000..129cd38b4d118
--- /dev/null
+++ b/srcpkgs/xastir/patches/fix-mutex.patch
@@ -0,0 +1,15 @@
+--- a/src/util.c	2019-07-15 00:30:31.000000000 +0200
++++ b/src/util.c	2019-08-31 15:56:13.580212122 +0200
+@@ -5457,10 +5457,10 @@
+   // NON_LSB VERSION
+   // Check first for newer pthread function
+ #  ifdef HAVE_PTHREAD_MUTEXATTR_SETTYPE
+-  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  else
+   // Use older, deprecated pthread function
+-  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  endif  // HAVE_PTHREAD_MUTEXATTR_SETTYPE
+ # endif  // __LSB__
+ 
diff --git a/srcpkgs/xastir/template b/srcpkgs/xastir/template
index f3a315e821cdd..e32b98690a2bc 100644
--- a/srcpkgs/xastir/template
+++ b/srcpkgs/xastir/template
@@ -1,15 +1,21 @@
 # Template file for 'xastir'
 pkgname=xastir
-version=2.1.6
+version=2.1.8
 revision=1
-archs="i686 x86_64 ppc64le"
 build_style=gnu-configure
-makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel motif-devel libax25-devel"
+configure_args="ac_cv_file__usr_bin_gm_exe=no ac_cv_file__usr_bin_convert_exe=no"
+hostmakedepends="autoconf automake"
+makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel
+ motif-devel libax25-devel"
 short_desc="X Amateur Station Tracking and Information Reporting"
 maintainer="Michael Aldridge <maldridge@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="http://xastir.org"
 distfiles="https://github.com/Xastir/Xastir/archive/Release-${version}.tar.gz"
-checksum=5a71af2936d4d237c779b1c3a519211f8e3cd03b9873a260c849ddc8950e1a3e
+checksum=aa88069f149dbe720276d0134282bc491e7993d8a88380c8fe2a4735ee6444fc
 
 CFLAGS="-fcommon"
+
+pre_configure() {
+	./bootstrap.sh
+}

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

* Re: xastir: update to 2.1.8.
  2023-01-14  0:19 [PR PATCH] xastir: update to 2.1.8 hazen2215
                   ` (2 preceding siblings ...)
  2023-01-20  3:39 ` hazen2215
@ 2023-04-21  1:52 ` github-actions
  2023-04-21 10:03 ` [PR PATCH] [Updated] " hazen2215
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: github-actions @ 2023-04-21  1:52 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/41628#issuecomment-1517144578

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Updated] xastir: update to 2.1.8.
  2023-01-14  0:19 [PR PATCH] xastir: update to 2.1.8 hazen2215
                   ` (3 preceding siblings ...)
  2023-04-21  1:52 ` github-actions
@ 2023-04-21 10:03 ` hazen2215
  2023-05-28 11:08 ` hazen2215
  2023-06-27 11:36 ` [PR PATCH] [Merged]: " Duncaen
  6 siblings, 0 replies; 8+ messages in thread
From: hazen2215 @ 2023-04-21 10:03 UTC (permalink / raw)
  To: ml

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

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

https://github.com/hazen2215/void-packages xastir
https://github.com/void-linux/void-packages/pull/41628

xastir: update to 2.1.8.
<!-- 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 [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, (x86_64-musl)


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

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

From ba193b8cdea252c64e12b31e971a6738310c2009 Mon Sep 17 00:00:00 2001
From: hazen2215 <haz@disroot.org>
Date: Sat, 14 Jan 2023 09:06:48 +0900
Subject: [PATCH] xastir: update to 2.1.8.

---
 srcpkgs/xastir/patches/fix-mutex.patch | 15 +++++++++++++++
 srcpkgs/xastir/template                | 14 ++++++++++----
 2 files changed, 25 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/xastir/patches/fix-mutex.patch

diff --git a/srcpkgs/xastir/patches/fix-mutex.patch b/srcpkgs/xastir/patches/fix-mutex.patch
new file mode 100644
index 000000000000..129cd38b4d11
--- /dev/null
+++ b/srcpkgs/xastir/patches/fix-mutex.patch
@@ -0,0 +1,15 @@
+--- a/src/util.c	2019-07-15 00:30:31.000000000 +0200
++++ b/src/util.c	2019-08-31 15:56:13.580212122 +0200
+@@ -5457,10 +5457,10 @@
+   // NON_LSB VERSION
+   // Check first for newer pthread function
+ #  ifdef HAVE_PTHREAD_MUTEXATTR_SETTYPE
+-  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  else
+   // Use older, deprecated pthread function
+-  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  endif  // HAVE_PTHREAD_MUTEXATTR_SETTYPE
+ # endif  // __LSB__
+ 
diff --git a/srcpkgs/xastir/template b/srcpkgs/xastir/template
index f3a315e821cd..e32b98690a2b 100644
--- a/srcpkgs/xastir/template
+++ b/srcpkgs/xastir/template
@@ -1,15 +1,21 @@
 # Template file for 'xastir'
 pkgname=xastir
-version=2.1.6
+version=2.1.8
 revision=1
-archs="i686 x86_64 ppc64le"
 build_style=gnu-configure
-makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel motif-devel libax25-devel"
+configure_args="ac_cv_file__usr_bin_gm_exe=no ac_cv_file__usr_bin_convert_exe=no"
+hostmakedepends="autoconf automake"
+makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel
+ motif-devel libax25-devel"
 short_desc="X Amateur Station Tracking and Information Reporting"
 maintainer="Michael Aldridge <maldridge@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="http://xastir.org"
 distfiles="https://github.com/Xastir/Xastir/archive/Release-${version}.tar.gz"
-checksum=5a71af2936d4d237c779b1c3a519211f8e3cd03b9873a260c849ddc8950e1a3e
+checksum=aa88069f149dbe720276d0134282bc491e7993d8a88380c8fe2a4735ee6444fc
 
 CFLAGS="-fcommon"
+
+pre_configure() {
+	./bootstrap.sh
+}

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

* Re: [PR PATCH] [Updated] xastir: update to 2.1.8.
  2023-01-14  0:19 [PR PATCH] xastir: update to 2.1.8 hazen2215
                   ` (4 preceding siblings ...)
  2023-04-21 10:03 ` [PR PATCH] [Updated] " hazen2215
@ 2023-05-28 11:08 ` hazen2215
  2023-06-27 11:36 ` [PR PATCH] [Merged]: " Duncaen
  6 siblings, 0 replies; 8+ messages in thread
From: hazen2215 @ 2023-05-28 11:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/hazen2215/void-packages xastir
https://github.com/void-linux/void-packages/pull/41628

xastir: update to 2.1.8.
<!-- 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 [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, (x86_64-musl)


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

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

From 8f7cbf14d8e47481fad995402bf12299098e22e5 Mon Sep 17 00:00:00 2001
From: hazen2215 <haz@disroot.org>
Date: Sat, 14 Jan 2023 09:06:48 +0900
Subject: [PATCH] xastir: update to 2.1.8.

---
 srcpkgs/xastir/patches/fix-mutex.patch | 15 +++++++++++++++
 srcpkgs/xastir/template                | 14 ++++++++++----
 2 files changed, 25 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/xastir/patches/fix-mutex.patch

diff --git a/srcpkgs/xastir/patches/fix-mutex.patch b/srcpkgs/xastir/patches/fix-mutex.patch
new file mode 100644
index 000000000000..129cd38b4d11
--- /dev/null
+++ b/srcpkgs/xastir/patches/fix-mutex.patch
@@ -0,0 +1,15 @@
+--- a/src/util.c	2019-07-15 00:30:31.000000000 +0200
++++ b/src/util.c	2019-08-31 15:56:13.580212122 +0200
+@@ -5457,10 +5457,10 @@
+   // NON_LSB VERSION
+   // Check first for newer pthread function
+ #  ifdef HAVE_PTHREAD_MUTEXATTR_SETTYPE
+-  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  else
+   // Use older, deprecated pthread function
+-  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
++  (void)pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_ERRORCHECK);
+ #  endif  // HAVE_PTHREAD_MUTEXATTR_SETTYPE
+ # endif  // __LSB__
+ 
diff --git a/srcpkgs/xastir/template b/srcpkgs/xastir/template
index f3a315e821cd..e32b98690a2b 100644
--- a/srcpkgs/xastir/template
+++ b/srcpkgs/xastir/template
@@ -1,15 +1,21 @@
 # Template file for 'xastir'
 pkgname=xastir
-version=2.1.6
+version=2.1.8
 revision=1
-archs="i686 x86_64 ppc64le"
 build_style=gnu-configure
-makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel motif-devel libax25-devel"
+configure_args="ac_cv_file__usr_bin_gm_exe=no ac_cv_file__usr_bin_convert_exe=no"
+hostmakedepends="autoconf automake"
+makedepends="libXrender-devel libXt-devel libXp-devel libcurl-devel pcre-devel
+ motif-devel libax25-devel"
 short_desc="X Amateur Station Tracking and Information Reporting"
 maintainer="Michael Aldridge <maldridge@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="http://xastir.org"
 distfiles="https://github.com/Xastir/Xastir/archive/Release-${version}.tar.gz"
-checksum=5a71af2936d4d237c779b1c3a519211f8e3cd03b9873a260c849ddc8950e1a3e
+checksum=aa88069f149dbe720276d0134282bc491e7993d8a88380c8fe2a4735ee6444fc
 
 CFLAGS="-fcommon"
+
+pre_configure() {
+	./bootstrap.sh
+}

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

* Re: [PR PATCH] [Merged]: xastir: update to 2.1.8.
  2023-01-14  0:19 [PR PATCH] xastir: update to 2.1.8 hazen2215
                   ` (5 preceding siblings ...)
  2023-05-28 11:08 ` hazen2215
@ 2023-06-27 11:36 ` Duncaen
  6 siblings, 0 replies; 8+ messages in thread
From: Duncaen @ 2023-06-27 11:36 UTC (permalink / raw)
  To: ml

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

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

xastir: update to 2.1.8.
https://github.com/void-linux/void-packages/pull/41628

Description:
<!-- 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 [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, (x86_64-musl)


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

end of thread, other threads:[~2023-06-27 11:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-14  0:19 [PR PATCH] xastir: update to 2.1.8 hazen2215
2023-01-14  0:56 ` [PR PATCH] [Updated] " hazen2215
2023-01-14  0:57 ` hazen2215
2023-01-20  3:39 ` hazen2215
2023-04-21  1:52 ` github-actions
2023-04-21 10:03 ` [PR PATCH] [Updated] " hazen2215
2023-05-28 11:08 ` hazen2215
2023-06-27 11:36 ` [PR PATCH] [Merged]: " Duncaen

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