Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package parti for openSUSE:Factory checked 
in at 2026-08-09 21:41:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/parti (Old)
 and      /work/SRC/openSUSE:Factory/.parti.new.16738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "parti"

Sun Aug  9 21:41:09 2026 rev:22 rq:1370213 version:2.13

Changes:
--------
--- /work/SRC/openSUSE:Factory/parti/parti.changes      2026-03-27 
16:54:29.599971151 +0100
+++ /work/SRC/openSUSE:Factory/.parti.new.16738/parti.changes   2026-08-09 
21:41:12.174253356 +0200
@@ -1,0 +2,8 @@
+Fri Aug 7 10:55:37 UTC 2026 - [email protected]
+
+- merge gh#wfeldt/parti#26
+- increase data read for file system probing to 256 kiB
+  (bsc#1274273)
+- 2.13
+
+--------------------------------------------------------------------

Old:
----
  parti-2.12.tar.xz

New:
----
  parti-2.13.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ parti.spec ++++++
--- /var/tmp/diff_new_pack.unNixu/_old  2026-08-09 21:41:12.742272763 +0200
+++ /var/tmp/diff_new_pack.unNixu/_new  2026-08-09 21:41:12.742272763 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           parti
-Version:        2.12
+Version:        2.13
 Release:        0
 Summary:        Show partition table information
 License:        GPL-3.0-only

++++++ parti-2.12.tar.xz -> parti-2.13.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parti-2.12/VERSION new/parti-2.13/VERSION
--- old/parti-2.12/VERSION      2026-03-27 12:13:08.000000000 +0100
+++ new/parti-2.13/VERSION      2026-08-07 12:55:37.000000000 +0200
@@ -1 +1 @@
-2.12
+2.13
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parti-2.12/changelog new/parti-2.13/changelog
--- old/parti-2.12/changelog    2026-03-27 12:13:08.000000000 +0100
+++ new/parti-2.13/changelog    2026-08-07 12:55:37.000000000 +0200
@@ -1,3 +1,8 @@
+2026-08-07:    2.13
+       - merge gh#wfeldt/parti#26
+       - increase data read for file system probing to 256 kiB
+         (bsc#1274273)
+
 2026-03-27:    2.12
        - merge gh#wfeldt/parti#25
        - adapt parti to work also with xorriso (bsc#1260860)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/parti-2.12/filesystem.c new/parti-2.13/filesystem.c
--- old/parti-2.12/filesystem.c 2026-03-27 12:13:08.000000000 +0100
+++ new/parti-2.13/filesystem.c 2026-08-07 12:55:37.000000000 +0200
@@ -23,6 +23,9 @@
 #include "filesystem.h"
 #include "util.h"
 
+// read (and cache) this much of each file system for probing
+#define FS_READ_BYTES  (256 * 1024)
+
 typedef struct {
   char *type;
   char *label;
@@ -54,7 +57,7 @@
 
   uint8_t buf[disk->block_size];
 
-  for(uint64_t u = 0; u < 68 * 1024; u += disk->block_size) {
+  for(uint64_t u = 0; u < FS_READ_BYTES; u += disk->block_size) {
     disk_read(disk, buf, (offset + u) / disk->block_size, 1);
   }
 

Reply via email to