aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRod Smith <rodsmith@rodsbooks.com>2022-04-14 20:01:30 -0400
committerRod Smith <rodsmith@rodsbooks.com>2022-04-14 20:01:30 -0400
commit1d46f3723bc25f5598266f7d9a3548af3cee0c77 (patch)
tree8580fafdba4f978b518a0832a1f08413e0037a33
parent075f3fe2a0e63dc8b705b0d1dc30f70636dd2e39 (diff)
downloadgptfdisk-1d46f3723bc25f5598266f7d9a3548af3cee0c77.tar.gz
GPT fdisk version 1.0.9
-rw-r--r--Makefile3
-rw-r--r--NEWS4
-rw-r--r--cgdisk.84
-rw-r--r--current.spec8
-rw-r--r--fixparts.84
-rw-r--r--gdisk.84
-rw-r--r--parttypes.cc2
-rw-r--r--sgdisk.84
-rw-r--r--support.h2
9 files changed, 18 insertions, 17 deletions
diff --git a/Makefile b/Makefile
index f7943d2..af9701c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
# Makefile for GPT fdisk
+# Copyright (c) 2022 by Rod Smith
# This program is licensed under the terms of the GNU GPL, version 2,
# or (at your option) any later version.
# You should have received a copy of the GNU General Public License
@@ -63,8 +64,8 @@ endif
$(info Build target is $(TARGET))
# Default/Linux settings....
-#CXXFLAGS+=-O2 -Wall -D_FILE_OFFSET_BITS=64 -D USE_UTF16
STRIP?=strip
+#CXXFLAGS+=-O2 -Wall -D_FILE_OFFSET_BITS=64 -D USE_UTF16
CXXFLAGS+=-O2 -Wall -D_FILE_OFFSET_BITS=64
LDFLAGS+=
LDLIBS+=-luuid #-licuio -licuuc
diff --git a/NEWS b/NEWS
index b5ebc03..c7add56 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
-1.0.9 (?/?/2022):
------------------
+1.0.9 (4/14/2022):
+------------------
- Removed stray debugging code that caused "partNum is {x}" to be printed
when changing a partition's name with sgdisk (-c/--change-name).
diff --git a/cgdisk.8 b/cgdisk.8
index 0b51fc1..e3b5cb4 100644
--- a/cgdisk.8
+++ b/cgdisk.8
@@ -1,6 +1,6 @@
-.\" Copyright 2011-2021 Roderick W. Smith (rodsmith@rodsbooks.com)
+.\" Copyright 2011-2022 Roderick W. Smith (rodsmith@rodsbooks.com)
.\" May be distributed under the GNU General Public License
-.TH "CGDISK" "8" "1.0.8" "Roderick W. Smith" "GPT fdisk Manual"
+.TH "CGDISK" "8" "1.0.9" "Roderick W. Smith" "GPT fdisk Manual"
.SH "NAME"
cgdisk \- Curses-based GUID partition table (GPT) manipulator
.SH "SYNOPSIS"
diff --git a/current.spec b/current.spec
index bb963b1..a912894 100644
--- a/current.spec
+++ b/current.spec
@@ -1,12 +1,12 @@
Summary: GPT partitioning and MBR repair software
Name: gptfdisk
-Version: 1.0.8
+Version: 1.0.9
Release: 1%{?dist}
License: GPLv2
URL: http://www.rodsbooks.com/gdisk
Group: Applications/System
-Source: http://www.rodsbooks.com/gdisk/gptfdisk-1.0.8.tar.gz
+Source: http://www.rodsbooks.com/gdisk/gptfdisk-1.0.9.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%description
@@ -81,5 +81,5 @@ provides a few additional partition manipulation features.
%changelog
-* Wed Jun 9 2021 R Smith <rodsmith@rodsbooks.com> - 1.0.8
-- Created spec file for 1.0.8 release
+* Thu Apr 14 2022 R Smith <rodsmith@rodsbooks.com> - 1.0.9
+- Created spec file for 1.0.9 release
diff --git a/fixparts.8 b/fixparts.8
index 4002ea5..da7462a 100644
--- a/fixparts.8
+++ b/fixparts.8
@@ -1,6 +1,6 @@
-.\" Copyright 2011-2021 Roderick W. Smith (rodsmith@rodsbooks.com)
+.\" Copyright 2011-2022 Roderick W. Smith (rodsmith@rodsbooks.com)
.\" May be distributed under the GNU General Public License
-.TH "FIXPARTS" "8" "1.0.8" "Roderick W. Smith" "FixParts Manual"
+.TH "FIXPARTS" "8" "1.0.9" "Roderick W. Smith" "FixParts Manual"
.SH "NAME"
fixparts \- MBR partition table repair utility
.SH "SYNOPSIS"
diff --git a/gdisk.8 b/gdisk.8
index 75a3e82..b826b89 100644
--- a/gdisk.8
+++ b/gdisk.8
@@ -1,6 +1,6 @@
-.\" Copyright 2011-2021 Roderick W. Smith (rodsmith@rodsbooks.com)
+.\" Copyright 2011-2022 Roderick W. Smith (rodsmith@rodsbooks.com)
.\" May be distributed under the GNU General Public License
-.TH "GDISK" "8" "1.0.8" "Roderick W. Smith" "GPT fdisk Manual"
+.TH "GDISK" "8" "1.0.9" "Roderick W. Smith" "GPT fdisk Manual"
.SH "NAME"
gdisk \- Interactive GUID partition table (GPT) manipulator
.SH "SYNOPSIS"
diff --git a/parttypes.cc b/parttypes.cc
index 82ad37f..b2f5a35 100644
--- a/parttypes.cc
+++ b/parttypes.cc
@@ -358,7 +358,7 @@ void PartType::AddAllTypes(void) {
AddType(0xef01, "024DEE41-33E7-11D3-9D69-0008C781F39F", "MBR partition scheme"); // Used to nest MBR in GPT
AddType(0xef02, "21686148-6449-6E6F-744E-656564454649", "BIOS boot partition"); // Used by GRUB
- // Fuscia OS code; see https://cs.opensource.google/fuchsia/fuchsia/+/main:zircon/system/public/zircon/hw/gpt.h
+ // Fuscia OS codes; see https://cs.opensource.google/fuchsia/fuchsia/+/main:zircon/system/public/zircon/hw/gpt.h
AddType(0xf100, "FE8A2634-5E2E-46BA-99E3-3A192091A350", "Fuchsia boot loader (slot A/B/R)");
AddType(0xf101, "D9FD4535-106C-4CEC-8D37-DFC020CA87CB", "Fuchsia durable mutable encrypted system data");
AddType(0xf102, "A409E16B-78AA-4ACC-995C-302352621A41", "Fuchsia durable mutable boot loader");
diff --git a/sgdisk.8 b/sgdisk.8
index 23fc943..b966a13 100644
--- a/sgdisk.8
+++ b/sgdisk.8
@@ -1,6 +1,6 @@
-.\" Copyright 2011-2021 Roderick W. Smith (rodsmith@rodsbooks.com)
+.\" Copyright 2011-2022 Roderick W. Smith (rodsmith@rodsbooks.com)
.\" May be distributed under the GNU General Public License
-.TH "SGDISK" "8" "1.0.8" "Roderick W. Smith" "GPT fdisk Manual"
+.TH "SGDISK" "8" "1.0.9" "Roderick W. Smith" "GPT fdisk Manual"
.SH "NAME"
sgdisk \- Command\-line GUID partition table (GPT) manipulator for Linux and Unix
.SH "SYNOPSIS"
diff --git a/support.h b/support.h
index 3930ee4..8ba9ad1 100644
--- a/support.h
+++ b/support.h
@@ -8,7 +8,7 @@
#include <stdlib.h>
#include <string>
-#define GPTFDISK_VERSION "1.0.8.3"
+#define GPTFDISK_VERSION "1.0.9"
#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__) || defined (__APPLE__)
// Darwin (Mac OS) & FreeBSD: disk IOCTLs are different, and there is no lseek64