Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] ntpd-rs: update to 1.1.3
@ 2024-06-28 13:44 tranzystorekk
  2024-06-29 13:33 ` [PR PATCH] [Merged]: " leahneukirchen
  0 siblings, 1 reply; 2+ messages in thread
From: tranzystorekk @ 2024-06-28 13:44 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tranzystorekk/void-packages ntpd-rs
https://github.com/void-linux/void-packages/pull/51034

ntpd-rs: update to 1.1.3
<!-- 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, (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/51034.patch is attached

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

From b40631d891edeed138dfced99d99d961148b4736 Mon Sep 17 00:00:00 2001
From: tranzystorekk <tranzystorek.io@protonmail.com>
Date: Fri, 28 Jun 2024 15:29:15 +0200
Subject: [PATCH] ntpd-rs: update to 1.1.3

---
 srcpkgs/ntpd-rs/patches/fix-tests.patch | 22 ++++++++++++++++++++++
 srcpkgs/ntpd-rs/template                |  4 ++--
 2 files changed, 24 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/ntpd-rs/patches/fix-tests.patch

diff --git a/srcpkgs/ntpd-rs/patches/fix-tests.patch b/srcpkgs/ntpd-rs/patches/fix-tests.patch
new file mode 100644
index 00000000000000..289f3eef84dfab
--- /dev/null
+++ b/srcpkgs/ntpd-rs/patches/fix-tests.patch
@@ -0,0 +1,22 @@
+diff --git a/ntpd/src/daemon/keyexchange.rs b/ntpd/src/daemon/keyexchange.rs
+index b1c00ea..884208e 100644
+--- a/ntpd/src/daemon/keyexchange.rs
++++ b/ntpd/src/daemon/keyexchange.rs
+@@ -736,7 +736,7 @@ mod tests {
+             key_exchange_client(
+                 "localhost".to_string(),
+                 5435,
+-                &certificates_from_bufread(BufReader::new(Cursor::new(ca))).unwrap(),
++                &certificates_from_bufread(BufReader::new(Cursor::new(ca))),
+             )
+         )
+         .await
+@@ -750,7 +750,7 @@ mod tests {
+             key_exchange_client(
+                 "localhost".to_string(),
+                 5435,
+-                &certificates_from_bufread(BufReader::new(Cursor::new(ca))).unwrap(),
++                &certificates_from_bufread(BufReader::new(Cursor::new(ca))),
+             ),
+         )
+         .await
diff --git a/srcpkgs/ntpd-rs/template b/srcpkgs/ntpd-rs/template
index 5da867a56af3b2..e8097bf40a46e0 100644
--- a/srcpkgs/ntpd-rs/template
+++ b/srcpkgs/ntpd-rs/template
@@ -1,6 +1,6 @@
 # Template file for 'ntpd-rs'
 pkgname=ntpd-rs
-version=1.1.2
+version=1.1.3
 revision=1
 build_style=cargo
 make_check_args="--
@@ -17,7 +17,7 @@ license="Apache-2.0, MIT"
 homepage="https://github.com/pendulum-project/ntpd-rs"
 changelog="https://raw.githubusercontent.com/pendulum-project/ntpd-rs/main/CHANGELOG.md"
 distfiles="https://github.com/pendulum-project/ntpd-rs/archive/refs/tags/v${version}.tar.gz"
-checksum=83f5f19acf98ea3a16c9a1256d02edaf1b2f49383a4f550d6a325cab8e8b2d4b
+checksum=8110538b5aca9588215590390dd04d9609d476bf7faafb92e37fba918bd3ef9c
 
 system_accounts="_ntpd_rs"
 conf_files="/etc/ntpd-rs/ntp.toml"

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

* Re: [PR PATCH] [Merged]: ntpd-rs: update to 1.1.3
  2024-06-28 13:44 [PR PATCH] ntpd-rs: update to 1.1.3 tranzystorekk
@ 2024-06-29 13:33 ` leahneukirchen
  0 siblings, 0 replies; 2+ messages in thread
From: leahneukirchen @ 2024-06-29 13:33 UTC (permalink / raw)
  To: ml

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

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

ntpd-rs: update to 1.1.3
https://github.com/void-linux/void-packages/pull/51034

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, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2024-06-29 13:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-28 13:44 [PR PATCH] ntpd-rs: update to 1.1.3 tranzystorekk
2024-06-29 13:33 ` [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).