Github messages for voidlinux
 help / color / mirror / Atom feed
* Re: [PR PATCH] [Updated] dua-cli: update to 2.26.0
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-48147@inbox.vuxu.org>
@ 2024-01-17 17:29 ` cinerea0
  2024-01-22 17:35 ` [PR PATCH] [Updated] dua-cli: update to 2.27.0 cinerea0
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: cinerea0 @ 2024-01-17 17:29 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cinerea0/void-packages dua
https://github.com/void-linux/void-packages/pull/48147

dua-cli: update to 2.26.0
#### Testing the changes
- I tested the changes in this PR: **YES**



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

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

From 5e6585e1ddd9beacc66c02b41014e984b7d05a59 Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@disroot.org>
Date: Wed, 17 Jan 2024 12:28:58 -0500
Subject: [PATCH] dua-cli: update to 2.27.0

---
 ...yData-size-test-passes-on-32-bit-197.patch | 33 -------------------
 srcpkgs/dua-cli/template                      |  4 +--
 2 files changed, 2 insertions(+), 35 deletions(-)
 delete mode 100644 srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch

diff --git a/srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch b/srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch
deleted file mode 100644
index 9a7154e097522..0000000000000
--- a/srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 392e808ebae97faecdaadf044c7ebd112b82cc94 Mon Sep 17 00:00:00 2001
-From: cinerea0 <cinerea0@disroot.org>
-Date: Mon, 11 Dec 2023 14:51:53 -0500
-Subject: [PATCH] fix: EntryData size test passes on 32-bit (#197)
-
-EntryData doesn't need to be exactly 80 to test memory consumption, just
-less than it.
----
- src/traverse.rs | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/src/traverse.rs b/src/traverse.rs
-index 157ce2c..b2c8724 100644
---- a/src/traverse.rs
-+++ b/src/traverse.rs
-@@ -312,10 +312,10 @@ mod tests {
- 
-     #[test]
-     fn size_of_entry_data() {
--        assert_eq!(
--            std::mem::size_of::<EntryData>(),
--            80,
--            "the size of this should not change unexpectedly as it affects overall memory consumption"
-+        assert!(
-+            std::mem::size_of::<EntryData>() <= 80,
-+            "the size of this ({}) should not exceed 80 as it affects overall memory consumption",
-+            std::mem::size_of::<EntryData>()
-         );
-     }
- }
--- 
-2.43.0
-
diff --git a/srcpkgs/dua-cli/template b/srcpkgs/dua-cli/template
index 1be4fd8325d4c..ec4ebab3fe54a 100644
--- a/srcpkgs/dua-cli/template
+++ b/srcpkgs/dua-cli/template
@@ -1,6 +1,6 @@
 # Template file for 'dua-cli'
 pkgname=dua-cli
-version=2.23.0
+version=2.27.0
 revision=1
 build_style=cargo
 short_desc="Tool to conveniently learn about the disk usage of directories"
@@ -9,7 +9,7 @@ license="MIT"
 homepage="https://github.com/Byron/dua-cli"
 changelog="https://raw.githubusercontent.com/Byron/dua-cli/main/CHANGELOG.md"
 distfiles="https://github.com/Byron/dua-cli/archive/refs/tags/v${version}.tar.gz"
-checksum=61f6fd0c13949d23224d9776c2fd444956d73dd363501e867cf11df6ca89ddfa
+checksum=505f41f9628a5a305d9f713da4adbe972fdf40fb810b327a6fb5dcd3998c7bd5
 
 post_install() {
 	vlicense LICENSE

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

* Re: [PR PATCH] [Updated] dua-cli: update to 2.27.0
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-48147@inbox.vuxu.org>
  2024-01-17 17:29 ` [PR PATCH] [Updated] dua-cli: update to 2.26.0 cinerea0
@ 2024-01-22 17:35 ` cinerea0
  2024-01-23 16:51 ` [PR PATCH] [Updated] dua-cli: update to 2.27.2 cinerea0
  2024-01-25 16:00 ` [PR PATCH] [Merged]: dua-cli: update to 2.28.0 cinerea0
  3 siblings, 0 replies; 4+ messages in thread
From: cinerea0 @ 2024-01-22 17:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cinerea0/void-packages dua
https://github.com/void-linux/void-packages/pull/48147

dua-cli: update to 2.27.0
#### Testing the changes
- I tested the changes in this PR: **YES**



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

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

From 665aa2c074bec42b105458ee3ccfc5b1f5941350 Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@disroot.org>
Date: Mon, 22 Jan 2024 12:35:34 -0500
Subject: [PATCH] dua-cli: update to 2.27.2

---
 ...yData-size-test-passes-on-32-bit-197.patch | 33 -------------------
 srcpkgs/dua-cli/template                      |  4 +--
 2 files changed, 2 insertions(+), 35 deletions(-)
 delete mode 100644 srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch

diff --git a/srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch b/srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch
deleted file mode 100644
index 9a7154e097522..0000000000000
--- a/srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 392e808ebae97faecdaadf044c7ebd112b82cc94 Mon Sep 17 00:00:00 2001
-From: cinerea0 <cinerea0@disroot.org>
-Date: Mon, 11 Dec 2023 14:51:53 -0500
-Subject: [PATCH] fix: EntryData size test passes on 32-bit (#197)
-
-EntryData doesn't need to be exactly 80 to test memory consumption, just
-less than it.
----
- src/traverse.rs | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/src/traverse.rs b/src/traverse.rs
-index 157ce2c..b2c8724 100644
---- a/src/traverse.rs
-+++ b/src/traverse.rs
-@@ -312,10 +312,10 @@ mod tests {
- 
-     #[test]
-     fn size_of_entry_data() {
--        assert_eq!(
--            std::mem::size_of::<EntryData>(),
--            80,
--            "the size of this should not change unexpectedly as it affects overall memory consumption"
-+        assert!(
-+            std::mem::size_of::<EntryData>() <= 80,
-+            "the size of this ({}) should not exceed 80 as it affects overall memory consumption",
-+            std::mem::size_of::<EntryData>()
-         );
-     }
- }
--- 
-2.43.0
-
diff --git a/srcpkgs/dua-cli/template b/srcpkgs/dua-cli/template
index 1be4fd8325d4c..10e4300eab179 100644
--- a/srcpkgs/dua-cli/template
+++ b/srcpkgs/dua-cli/template
@@ -1,6 +1,6 @@
 # Template file for 'dua-cli'
 pkgname=dua-cli
-version=2.23.0
+version=2.27.2
 revision=1
 build_style=cargo
 short_desc="Tool to conveniently learn about the disk usage of directories"
@@ -9,7 +9,7 @@ license="MIT"
 homepage="https://github.com/Byron/dua-cli"
 changelog="https://raw.githubusercontent.com/Byron/dua-cli/main/CHANGELOG.md"
 distfiles="https://github.com/Byron/dua-cli/archive/refs/tags/v${version}.tar.gz"
-checksum=61f6fd0c13949d23224d9776c2fd444956d73dd363501e867cf11df6ca89ddfa
+checksum=327ddececb404e42fd0524caa0f2808eff08888ac53086957c1a41160d3a6f20
 
 post_install() {
 	vlicense LICENSE

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

* Re: [PR PATCH] [Updated] dua-cli: update to 2.27.2
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-48147@inbox.vuxu.org>
  2024-01-17 17:29 ` [PR PATCH] [Updated] dua-cli: update to 2.26.0 cinerea0
  2024-01-22 17:35 ` [PR PATCH] [Updated] dua-cli: update to 2.27.0 cinerea0
@ 2024-01-23 16:51 ` cinerea0
  2024-01-25 16:00 ` [PR PATCH] [Merged]: dua-cli: update to 2.28.0 cinerea0
  3 siblings, 0 replies; 4+ messages in thread
From: cinerea0 @ 2024-01-23 16:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/cinerea0/void-packages dua
https://github.com/void-linux/void-packages/pull/48147

dua-cli: update to 2.27.2
#### Testing the changes
- I tested the changes in this PR: **YES**



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

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

From 0cf6f3c4ea308a793eaaa5346bb07be294045492 Mon Sep 17 00:00:00 2001
From: cinerea0 <cinerea0@disroot.org>
Date: Tue, 23 Jan 2024 11:51:26 -0500
Subject: [PATCH] dua-cli: update to 2.28.0

---
 ...yData-size-test-passes-on-32-bit-197.patch | 33 -------------------
 srcpkgs/dua-cli/template                      |  4 +--
 2 files changed, 2 insertions(+), 35 deletions(-)
 delete mode 100644 srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch

diff --git a/srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch b/srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch
deleted file mode 100644
index 9a7154e097522..0000000000000
--- a/srcpkgs/dua-cli/patches/0001-fix-EntryData-size-test-passes-on-32-bit-197.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 392e808ebae97faecdaadf044c7ebd112b82cc94 Mon Sep 17 00:00:00 2001
-From: cinerea0 <cinerea0@disroot.org>
-Date: Mon, 11 Dec 2023 14:51:53 -0500
-Subject: [PATCH] fix: EntryData size test passes on 32-bit (#197)
-
-EntryData doesn't need to be exactly 80 to test memory consumption, just
-less than it.
----
- src/traverse.rs | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/src/traverse.rs b/src/traverse.rs
-index 157ce2c..b2c8724 100644
---- a/src/traverse.rs
-+++ b/src/traverse.rs
-@@ -312,10 +312,10 @@ mod tests {
- 
-     #[test]
-     fn size_of_entry_data() {
--        assert_eq!(
--            std::mem::size_of::<EntryData>(),
--            80,
--            "the size of this should not change unexpectedly as it affects overall memory consumption"
-+        assert!(
-+            std::mem::size_of::<EntryData>() <= 80,
-+            "the size of this ({}) should not exceed 80 as it affects overall memory consumption",
-+            std::mem::size_of::<EntryData>()
-         );
-     }
- }
--- 
-2.43.0
-
diff --git a/srcpkgs/dua-cli/template b/srcpkgs/dua-cli/template
index 1be4fd8325d4c..644d22200979e 100644
--- a/srcpkgs/dua-cli/template
+++ b/srcpkgs/dua-cli/template
@@ -1,6 +1,6 @@
 # Template file for 'dua-cli'
 pkgname=dua-cli
-version=2.23.0
+version=2.28.0
 revision=1
 build_style=cargo
 short_desc="Tool to conveniently learn about the disk usage of directories"
@@ -9,7 +9,7 @@ license="MIT"
 homepage="https://github.com/Byron/dua-cli"
 changelog="https://raw.githubusercontent.com/Byron/dua-cli/main/CHANGELOG.md"
 distfiles="https://github.com/Byron/dua-cli/archive/refs/tags/v${version}.tar.gz"
-checksum=61f6fd0c13949d23224d9776c2fd444956d73dd363501e867cf11df6ca89ddfa
+checksum=a44691d0dae8e567951cbe4f0b187edc60d306f78e95ceed9e96b9310e6ce350
 
 post_install() {
 	vlicense LICENSE

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

* Re: [PR PATCH] [Merged]: dua-cli: update to 2.28.0
       [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-48147@inbox.vuxu.org>
                   ` (2 preceding siblings ...)
  2024-01-23 16:51 ` [PR PATCH] [Updated] dua-cli: update to 2.27.2 cinerea0
@ 2024-01-25 16:00 ` cinerea0
  3 siblings, 0 replies; 4+ messages in thread
From: cinerea0 @ 2024-01-25 16:00 UTC (permalink / raw)
  To: ml

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

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

dua-cli: update to 2.28.0
https://github.com/void-linux/void-packages/pull/48147

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



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

end of thread, other threads:[~2024-01-25 16:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-48147@inbox.vuxu.org>
2024-01-17 17:29 ` [PR PATCH] [Updated] dua-cli: update to 2.26.0 cinerea0
2024-01-22 17:35 ` [PR PATCH] [Updated] dua-cli: update to 2.27.0 cinerea0
2024-01-23 16:51 ` [PR PATCH] [Updated] dua-cli: update to 2.27.2 cinerea0
2024-01-25 16:00 ` [PR PATCH] [Merged]: dua-cli: update to 2.28.0 cinerea0

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