Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Mar 2024 14:10:44 GMT
From:      Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 6901cd690324 - main - sysutils/gdisk: Update to 1.0.10
Message-ID:  <202403091410.429EAilQ003955@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6901cd690324298a224e31e92010cac8b53e7c23

commit 6901cd690324298a224e31e92010cac8b53e7c23
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2024-03-09 13:45:57 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2024-03-09 14:05:29 +0000

    sysutils/gdisk: Update to 1.0.10
    
    - Update WWW and clean up pkg-descr
    
    Changes:        https://www.rodsbooks.com/gdisk/revisions.html
---
 sysutils/gdisk/Makefile             |  5 ++---
 sysutils/gdisk/distinfo             |  6 +++---
 sysutils/gdisk/files/patch-gptcl.cc | 37 -------------------------------------
 sysutils/gdisk/pkg-descr            |  2 --
 4 files changed, 5 insertions(+), 45 deletions(-)

diff --git a/sysutils/gdisk/Makefile b/sysutils/gdisk/Makefile
index a83681dc5c69..983387cb1d7b 100644
--- a/sysutils/gdisk/Makefile
+++ b/sysutils/gdisk/Makefile
@@ -1,13 +1,12 @@
 PORTNAME=	gdisk
-PORTVERSION=	1.0.9
-PORTREVISION=	4
+PORTVERSION=	1.0.10
 CATEGORIES=	sysutils
 MASTER_SITES=	SF/gptfdisk/gptfdisk/${PORTVERSION}
 DISTNAME=	gptfdisk-${PORTVERSION}
 
 MAINTAINER=	sunpoet@FreeBSD.org
 COMMENT=	GPT fdisk
-WWW=		https://www.rodsbooks.com/fixparts/
+WWW=		https://www.rodsbooks.com/gdisk/
 
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
diff --git a/sysutils/gdisk/distinfo b/sysutils/gdisk/distinfo
index 08cac7a4de3a..a68c87528a71 100644
--- a/sysutils/gdisk/distinfo
+++ b/sysutils/gdisk/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1650228694
-SHA256 (gptfdisk-1.0.9.tar.gz) = dafead2693faeb8e8b97832b23407f6ed5b3219bc1784f482dd855774e2d50c2
-SIZE (gptfdisk-1.0.9.tar.gz) = 215065
+TIMESTAMP = 1709390420
+SHA256 (gptfdisk-1.0.10.tar.gz) = 2abed61bc6d2b9ec498973c0440b8b804b7a72d7144069b5a9209b2ad693a282
+SIZE (gptfdisk-1.0.10.tar.gz) = 220787
diff --git a/sysutils/gdisk/files/patch-gptcl.cc b/sysutils/gdisk/files/patch-gptcl.cc
deleted file mode 100644
index 4b89d9c51625..000000000000
--- a/sysutils/gdisk/files/patch-gptcl.cc
+++ /dev/null
@@ -1,37 +0,0 @@
---- gptcl.cc.orig	2022-04-14 23:17:12 UTC
-+++ gptcl.cc
-@@ -71,7 +71,7 @@ int GPTDataCL::DoOptions(int argc, char* argv[]) {
-    uint64_t low, high, startSector, endSector, sSize, mainTableLBA;
-    uint64_t temp; // temporary variable; free to use in any case
-    char *device;
--   string cmd, typeGUID, name;
-+   string cmd, typeGUID, name, devstr;
-    PartType typeHelper;
- 
-    struct poptOption theOptions[] =
-@@ -156,12 +156,14 @@ int GPTDataCL::DoOptions(int argc, char* argv[]) {
- 
-    // Assume first non-option argument is the device filename....
-    device = (char*) poptGetArg(poptCon);
-+   if (device != NULL)
-+        devstr = device;
-    poptResetContext(poptCon);
- 
--   if (device != NULL) {
-+   if (!devstr.empty()) {
-       JustLooking(); // reset as necessary
-       BeQuiet(); // Tell called functions to be less verbose & interactive
--      if (LoadPartitions((string) device)) {
-+      if (LoadPartitions(devstr)) {
-          if ((WhichWasUsed() == use_mbr) || (WhichWasUsed() == use_bsd))
-             saveNonGPT = 0; // flag so we don't overwrite unless directed to do so
-          sSize = GetBlockSize();
-@@ -498,7 +500,7 @@ int GPTDataCL::DoOptions(int argc, char* argv[]) {
-          cerr << "Error encountered; not saving changes.\n";
-          retval = 4;
-       } // if
--   } // if (device != NULL)
-+   } // if (devstr empty)
-    poptFreeContext(poptCon);
-    return retval;
- } // GPTDataCL::DoOptions()
diff --git a/sysutils/gdisk/pkg-descr b/sysutils/gdisk/pkg-descr
index df5c3da413bc..9ba6e272b471 100644
--- a/sysutils/gdisk/pkg-descr
+++ b/sysutils/gdisk/pkg-descr
@@ -10,5 +10,3 @@ GPT-partitioned disks. Specific advantages of gdisk, cgdisk and sgdisk include:
 - Repair damaged GPT data structures
 - The ability to specify sector-exact partition sizes
 - Clear identification of the number of unallocated sectors on a disk
-
-See also: https://www.rodsbooks.com/gdisk/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202403091410.429EAilQ003955>