mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-14 16:37:01 +02:00
sys-apps/gptfdisk: Sync with Gentoo
It's from Gentoo commit b783faffc88d845229396a32951ed3f3d6564d00.
This commit is contained in:
parent
642a47e3aa
commit
a674fa2ebd
@ -1,3 +1 @@
|
|||||||
DIST gptfdisk-1.0.6.tar.gz 207017 BLAKE2B d00e0f00dc8dce3b6088250aa39e05f41c96bee2218eec1dca34a160e70129d1006abc4341031994c53e77068b5de510b923c69858903627ccf786f3cc848a86 SHA512 a3bf95c813f707d9d41513295c3419916301a0e88b4c6ade70ad7d9422a507d519e092e68a3868d53092428d159bdbb248817c4f40d8ac88b0175d5afbd79dbc
|
DIST gptfdisk-1.0.9.tar.gz 215065 BLAKE2B 1939ffd75972a4d7f92af2bfab90c7b0223825b5478b6b808dd35af943c687d38ba81663cd7ba5e0f9400656db4dac019c13a9f75d90b7bd716568c676c24dd2 SHA512 c2489ac7e196cb53b9fdb18d0e421571eca43c366de8922c5c7f550aadf192558e7af69b181c30747d6cf607c1670126223465eaa5e231cc589402d94a4e97a2
|
||||||
DIST gptfdisk-1.0.7.tar.gz 207723 BLAKE2B cebb0375294b4ff8f8eb522a4ae23259714d07d670a7bfbf8664586c948c1c8bee2674649a181a7c5d22f9dfe177feb7a9648ca9936c388b419faf7b52e789d8 SHA512 8a2067523479e34c76392571692b36e6c9eadcd0aca979f1ba09904930ed92a709bfdcdfa3369230a5ab2b5a751682dc7fb4645fb5f7f1c361ee8d28e104214c
|
|
||||||
DIST gptfdisk-1.0.8.tar.gz 208958 BLAKE2B 03c74c43fead13e90ff6cd42405e15db726f527801a9e3f1d5f6a83d3fa58f0f8e58b35edc1b12b0b2e6c7849b657ce4493ac67204d25309e6f63fe7f57f766b SHA512 0818a238e57cf6de893da7c161e8aaf2d30ad917a47750de09967ce1d83d1ab6666fa043465abaffdc293d058acc3fa87f8bc93a4b03c7c5d9a9ceb8f5b07331
|
|
||||||
|
@ -1,71 +0,0 @@
|
|||||||
From f063fe08e424c99f133df18bf9dce49c851bcb0a Mon Sep 17 00:00:00 2001
|
|
||||||
From: Rod Smith <rodsmith@rodsbooks.com>
|
|
||||||
Date: Mon, 1 Feb 2021 10:19:50 -0500
|
|
||||||
Subject: [PATCH] Fix spurious warnings of problems on MBR disks
|
|
||||||
|
|
||||||
---
|
|
||||||
NEWS | 7 +++++++
|
|
||||||
gpt.cc | 18 +++++++++++++-----
|
|
||||||
support.h | 2 +-
|
|
||||||
3 files changed, 21 insertions(+), 6 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/NEWS b/NEWS
|
|
||||||
index f74bad0..a7131aa 100644
|
|
||||||
--- a/NEWS
|
|
||||||
+++ b/NEWS
|
|
||||||
@@ -1,3 +1,10 @@
|
|
||||||
+1.0.7 (?/??/2021):
|
|
||||||
+------------------
|
|
||||||
+
|
|
||||||
+- Fixed bug that caused spurious warnings about the partition table
|
|
||||||
+ header claiming an invalid size of partition entries when reading
|
|
||||||
+ some MBR disks.
|
|
||||||
+
|
|
||||||
1.0.6 (1/13/2021):
|
|
||||||
------------------
|
|
||||||
|
|
||||||
diff --git a/gpt.cc b/gpt.cc
|
|
||||||
index 1b4e10f..842dfb1 100644
|
|
||||||
--- a/gpt.cc
|
|
||||||
+++ b/gpt.cc
|
|
||||||
@@ -1042,11 +1042,19 @@ int GPTData::LoadHeader(struct GPTHeader *header, DiskIO & disk, uint64_t sector
|
|
||||||
*crcOk = CheckHeaderCRC(&tempHeader);
|
|
||||||
|
|
||||||
if (tempHeader.sizeOfPartitionEntries != sizeof(GPTPart)) {
|
|
||||||
- cerr << "Warning: Partition table header claims that the size of partition table\n";
|
|
||||||
- cerr << "entries is " << tempHeader.sizeOfPartitionEntries << " bytes, but this program ";
|
|
||||||
- cerr << " supports only " << sizeof(GPTPart) << "-byte entries.\n";
|
|
||||||
- cerr << "Adjusting accordingly, but partition table may be garbage.\n";
|
|
||||||
- tempHeader.sizeOfPartitionEntries = sizeof(GPTPart);
|
|
||||||
+ // Print the below warning only if the CRC is OK -- but correct the
|
|
||||||
+ // problem either way. The warning is printed only on a valid CRC
|
|
||||||
+ // because otherwise this warning will display inappropriately when
|
|
||||||
+ // reading MBR disks. If the CRC is invalid, then a warning about
|
|
||||||
+ // that will be shown later, so the user will still know that
|
|
||||||
+ // something is wrong.
|
|
||||||
+ if (*crcOk) {
|
|
||||||
+ cerr << "Warning: Partition table header claims that the size of partition table\n";
|
|
||||||
+ cerr << "entries is " << tempHeader.sizeOfPartitionEntries << " bytes, but this program ";
|
|
||||||
+ cerr << " supports only " << sizeof(GPTPart) << "-byte entries.\n";
|
|
||||||
+ cerr << "Adjusting accordingly, but partition table may be garbage.\n";
|
|
||||||
+ }
|
|
||||||
+ tempHeader.sizeOfPartitionEntries = sizeof(GPTPart);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (allOK && (numParts != tempHeader.numParts) && *crcOk) {
|
|
||||||
diff --git a/support.h b/support.h
|
|
||||||
index d87fe9a..e3e1e12 100644
|
|
||||||
--- a/support.h
|
|
||||||
+++ b/support.h
|
|
||||||
@@ -8,7 +8,7 @@
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
-#define GPTFDISK_VERSION "1.0.6"
|
|
||||||
+#define GPTFDISK_VERSION "1.0.6.1"
|
|
||||||
|
|
||||||
#if defined (__FreeBSD__) || defined (__FreeBSD_kernel__) || defined (__APPLE__)
|
|
||||||
// Darwin (Mac OS) & FreeBSD: disk IOCTLs are different, and there is no lseek64
|
|
||||||
--
|
|
||||||
2.30.1
|
|
||||||
|
|
@ -1,50 +0,0 @@
|
|||||||
From fded770b55fdb3a201ad515d785c17ac35705652 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Erik Larsson <catacombae@gmail.com>
|
|
||||||
Date: Tue, 8 Jun 2021 16:11:21 +0300
|
|
||||||
Subject: [PATCH] gptpart.cc: Remove byteswap commands in
|
|
||||||
GPTPart::SetName(const string&).
|
|
||||||
|
|
||||||
The byteswapping done in GPTPart::SetName(const string&) was reversed
|
|
||||||
later when GPTPart::ReversePartBytes() was called.
|
|
||||||
|
|
||||||
The intended design seems to have been to keep the fields in native
|
|
||||||
endianness until just before the partition is written to disk when all
|
|
||||||
the GPTPart data is byteswapped all at once with a call to
|
|
||||||
GPTPart::ReversePartBytes().
|
|
||||||
However this was defeated by leaving the original byteswaps in there and
|
|
||||||
effectively the name was swapped back to the native-endian form. For big
|
|
||||||
endian systems this meant that a UTF-16BE string was written to disk,
|
|
||||||
violating the specification and causing interoperability problems.
|
|
||||||
|
|
||||||
Fixed by removing these inline byteswaps in GPTPart::SetName(const
|
|
||||||
string&).
|
|
||||||
---
|
|
||||||
gptpart.cc | 3 ---
|
|
||||||
1 file changed, 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/gptpart.cc b/gptpart.cc
|
|
||||||
index 81bbcf0..841140a 100644
|
|
||||||
--- a/gptpart.cc
|
|
||||||
+++ b/gptpart.cc
|
|
||||||
@@ -242,7 +242,6 @@ void GPTPart::SetName(const string & theName) {
|
|
||||||
// then to utf16le
|
|
||||||
if ( uni < 0x10000 ) {
|
|
||||||
name[ pos ] = (uint16_t) uni ;
|
|
||||||
- if ( ! IsLittleEndian() ) ReverseBytes( name + pos , 2 ) ;
|
|
||||||
pos ++ ;
|
|
||||||
} // if
|
|
||||||
else {
|
|
||||||
@@ -252,10 +251,8 @@ void GPTPart::SetName(const string & theName) {
|
|
||||||
} // if
|
|
||||||
uni -= 0x10000 ;
|
|
||||||
name[ pos ] = (uint16_t)( uni >> 10 ) | 0xd800 ;
|
|
||||||
- if ( ! IsLittleEndian() ) ReverseBytes( name + pos , 2 ) ;
|
|
||||||
pos ++ ;
|
|
||||||
name[ pos ] = (uint16_t)( uni & 0x3ff ) | 0xdc00 ;
|
|
||||||
- if ( ! IsLittleEndian() ) ReverseBytes( name + pos , 2 ) ;
|
|
||||||
pos ++ ;
|
|
||||||
}
|
|
||||||
} // for
|
|
||||||
--
|
|
||||||
2.32.0
|
|
||||||
|
|
@ -0,0 +1,37 @@
|
|||||||
|
From e67faca2c0ca955f56cbd22e90941cdcbdc12597 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Rod Smith <rodsmith@rodsbooks.com>
|
||||||
|
Date: Sat, 16 Apr 2022 09:32:04 -0400
|
||||||
|
Subject: [PATCH] Updated guid.cc to deal with minor change in libuuid
|
||||||
|
|
||||||
|
---
|
||||||
|
NEWS | 3 +++
|
||||||
|
guid.cc | 2 +-
|
||||||
|
2 files changed, 4 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/NEWS b/NEWS
|
||||||
|
index c7add56..3d90d9a 100644
|
||||||
|
--- a/NEWS
|
||||||
|
+++ b/NEWS
|
||||||
|
@@ -1,3 +1,6 @@
|
||||||
|
+
|
||||||
|
+- Updated guid.cc to deal with minor change in libuuid.
|
||||||
|
+
|
||||||
|
1.0.9 (4/14/2022):
|
||||||
|
------------------
|
||||||
|
|
||||||
|
diff --git a/guid.cc b/guid.cc
|
||||||
|
index 1e73ab7..d3e4fd5 100644
|
||||||
|
--- a/guid.cc
|
||||||
|
+++ b/guid.cc
|
||||||
|
@@ -141,7 +141,7 @@ void GUIDData::Zero(void) {
|
||||||
|
void GUIDData::Randomize(void) {
|
||||||
|
int i, uuidGenerated = 0;
|
||||||
|
|
||||||
|
-#ifdef _UUID_UUID_H
|
||||||
|
+#if defined (_UUID_UUID_H) || defined (_UL_LIBUUID_UUID_H)
|
||||||
|
uuid_generate(uuidData);
|
||||||
|
ReverseBytes(&uuidData[0], 4);
|
||||||
|
ReverseBytes(&uuidData[4], 2);
|
||||||
|
--
|
||||||
|
2.36.1
|
||||||
|
|
@ -0,0 +1,22 @@
|
|||||||
|
--- a/gptcl.cc
|
||||||
|
+++ b/gptcl.cc
|
||||||
|
@@ -156,9 +156,10 @@
|
||||||
|
|
||||||
|
// Assume first non-option argument is the device filename....
|
||||||
|
device = (char*) poptGetArg(poptCon);
|
||||||
|
- poptResetContext(poptCon);
|
||||||
|
|
||||||
|
if (device != NULL) {
|
||||||
|
+ device = strdup(device);
|
||||||
|
+ poptResetContext(poptCon);
|
||||||
|
JustLooking(); // reset as necessary
|
||||||
|
BeQuiet(); // Tell called functions to be less verbose & interactive
|
||||||
|
if (LoadPartitions((string) device)) {
|
||||||
|
@@ -498,6 +499,7 @@
|
||||||
|
cerr << "Error encountered; not saving changes.\n";
|
||||||
|
retval = 4;
|
||||||
|
} // if
|
||||||
|
+ free(device);
|
||||||
|
} // if (device != NULL)
|
||||||
|
poptFreeContext(poptCon);
|
||||||
|
return retval;
|
@ -1,60 +0,0 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=7
|
|
||||||
|
|
||||||
inherit flag-o-matic toolchain-funcs
|
|
||||||
|
|
||||||
DESCRIPTION="GPT partition table manipulator for Linux"
|
|
||||||
HOMEPAGE="https://www.rodsbooks.com/gdisk/"
|
|
||||||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
|
|
||||||
IUSE="kernel_linux ncurses static"
|
|
||||||
|
|
||||||
# libuuid from util-linux is required.
|
|
||||||
RDEPEND="!static? (
|
|
||||||
dev-libs/popt
|
|
||||||
ncurses? ( sys-libs/ncurses:=[unicode(+)] )
|
|
||||||
kernel_linux? ( sys-apps/util-linux )
|
|
||||||
)"
|
|
||||||
DEPEND="
|
|
||||||
${RDEPEND}
|
|
||||||
static? (
|
|
||||||
dev-libs/popt[static-libs(+)]
|
|
||||||
ncurses? ( sys-libs/ncurses:=[unicode(+),static-libs(+)] )
|
|
||||||
kernel_linux? ( sys-apps/util-linux[static-libs(+)] )
|
|
||||||
)
|
|
||||||
"
|
|
||||||
BDEPEND="virtual/pkgconfig"
|
|
||||||
|
|
||||||
PATCHES=(
|
|
||||||
"${FILESDIR}/${P}.1-spurious_mbr_warnings.patch"
|
|
||||||
)
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
default
|
|
||||||
|
|
||||||
tc-export CXX PKG_CONFIG
|
|
||||||
|
|
||||||
if ! use ncurses ; then
|
|
||||||
sed -i \
|
|
||||||
-e '/^all:/s: cgdisk::' \
|
|
||||||
Makefile || die
|
|
||||||
fi
|
|
||||||
|
|
||||||
sed \
|
|
||||||
-e '/g++/s:=:?=:g' \
|
|
||||||
-e 's:-lncursesw:$(shell $(PKG_CONFIG) --libs ncursesw):g' \
|
|
||||||
-i Makefile || die
|
|
||||||
|
|
||||||
use static && append-ldflags -static
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
dosbin gdisk sgdisk $(usex ncurses cgdisk '') fixparts
|
|
||||||
doman *.8
|
|
||||||
dodoc NEWS README
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=7
|
|
||||||
|
|
||||||
inherit flag-o-matic toolchain-funcs
|
|
||||||
|
|
||||||
DESCRIPTION="GPT partition table manipulator for Linux"
|
|
||||||
HOMEPAGE="https://www.rodsbooks.com/gdisk/"
|
|
||||||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
|
|
||||||
IUSE="kernel_linux ncurses static"
|
|
||||||
|
|
||||||
# libuuid from util-linux is required.
|
|
||||||
RDEPEND="!static? (
|
|
||||||
dev-libs/popt
|
|
||||||
ncurses? ( sys-libs/ncurses:=[unicode(+)] )
|
|
||||||
kernel_linux? ( sys-apps/util-linux )
|
|
||||||
)"
|
|
||||||
DEPEND="
|
|
||||||
${RDEPEND}
|
|
||||||
static? (
|
|
||||||
dev-libs/popt[static-libs(+)]
|
|
||||||
ncurses? ( sys-libs/ncurses:=[unicode(+),static-libs(+)] )
|
|
||||||
kernel_linux? ( sys-apps/util-linux[static-libs(+)] )
|
|
||||||
)
|
|
||||||
"
|
|
||||||
BDEPEND="virtual/pkgconfig"
|
|
||||||
|
|
||||||
PATCHES=(
|
|
||||||
"${FILESDIR}/${P}-remove_byteswap.patch" #797412
|
|
||||||
)
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
default
|
|
||||||
|
|
||||||
tc-export CXX PKG_CONFIG
|
|
||||||
|
|
||||||
if ! use ncurses ; then
|
|
||||||
sed -i \
|
|
||||||
-e '/^all:/s: cgdisk::' \
|
|
||||||
Makefile || die
|
|
||||||
fi
|
|
||||||
|
|
||||||
sed \
|
|
||||||
-e '/g++/s:=:?=:g' \
|
|
||||||
-e 's:-lncursesw:$(shell $(PKG_CONFIG) --libs ncursesw):g' \
|
|
||||||
-i Makefile || die
|
|
||||||
|
|
||||||
use static && append-ldflags -static
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
dosbin gdisk sgdisk $(usex ncurses cgdisk '') fixparts
|
|
||||||
doman *.8
|
|
||||||
dodoc NEWS README
|
|
||||||
}
|
|
@ -1,18 +1,18 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
# Copyright 1999-2022 Gentoo Authors
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
EAPI=7
|
EAPI=8
|
||||||
|
|
||||||
inherit flag-o-matic toolchain-funcs
|
inherit flag-o-matic toolchain-funcs
|
||||||
|
|
||||||
DESCRIPTION="GPT partition table manipulator for Linux"
|
DESCRIPTION="GPT partition table manipulator for Linux"
|
||||||
HOMEPAGE="https://www.rodsbooks.com/gdisk/"
|
HOMEPAGE="https://www.rodsbooks.com/gdisk/"
|
||||||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz"
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
LICENSE="GPL-2"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
|
||||||
IUSE="kernel_linux ncurses static"
|
IUSE="ncurses static"
|
||||||
|
|
||||||
# libuuid from util-linux is required.
|
# libuuid from util-linux is required.
|
||||||
RDEPEND="!static? (
|
RDEPEND="!static? (
|
||||||
@ -30,6 +30,11 @@ DEPEND="
|
|||||||
virtual/pkgconfig
|
virtual/pkgconfig
|
||||||
"
|
"
|
||||||
|
|
||||||
|
PATCHES=(
|
||||||
|
"${FILESDIR}/${PN}-1.0.9-libuuid.patch" #844073
|
||||||
|
"${FILESDIR}/${PN}-1.0.9-popt_segv.patch" #872131
|
||||||
|
)
|
||||||
|
|
||||||
src_prepare() {
|
src_prepare() {
|
||||||
default
|
default
|
||||||
|
|
@ -1,11 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||||
<pkgmetadata>
|
<pkgmetadata>
|
||||||
<maintainer type="person">
|
<maintainer type="person">
|
||||||
<email>polynomial-c@gentoo.org</email>
|
<email>marecki@gentoo.org</email>
|
||||||
<name>Lars Wendler</name>
|
<name>Marek Szuba</name>
|
||||||
</maintainer>
|
</maintainer>
|
||||||
<upstream>
|
<upstream>
|
||||||
<remote-id type="sourceforge">gptfdisk</remote-id>
|
<remote-id type="sourceforge">gptfdisk</remote-id>
|
||||||
</upstream>
|
</upstream>
|
||||||
</pkgmetadata>
|
</pkgmetadata>
|
||||||
|
Loading…
Reference in New Issue
Block a user