Accepting request 184939 from Base:System

- Update to new upstream release 0.8.7
  * Small improvements and bug fixes mark this revision.
  * Three new partition type codes have been added:
    freedesktop.org's proposed $BOOT partition (type code EA00),
    the Intel Rapid Start partition (code 8400),
    and for Haiku's BFS (code EB00).
  * Removed a stray debug message that appeared when reading MBR
    disks.
  * The "converting MBR to GPT" message has been modified to
    clarify that changes are being held in memory.
  * The Mac version now works on /dev/rdisk* devices as well as
    /dev/disk* devices.
  * When used with /dev/rdisk* devices, the partition table can
    sometimes be re-read without rebooting or unplugging and
    re-inserting the disk.
  * Finally, cgdisk now supports a -a option, which works similarly
    to the -a option in cfdisk.
- remove gptfdisk-0.8.5-fix-test-suite-short-opt-usage.patch, is
  upstream merged (forwarded request 184897 from rudi_m)

OBS-URL: https://build.opensuse.org/request/show/184939
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gptfdisk?expand=0&rev=8
This commit is contained in:
Stephan Kulow 2013-08-01 04:54:43 +00:00 committed by Git OBS Bridge
parent de19e50ec1
commit f6e9296f87
5 changed files with 38 additions and 84 deletions

View File

@ -1,70 +0,0 @@
From bc168eec1f61cbdb9191fd07da74ae9f5e83495e Mon Sep 17 00:00:00 2001
From: Ruediger Meier <ruediger.meier@ga-group.nl>
Date: Fri, 18 Jan 2013 18:37:32 +0100
Subject: [PATCH] fix test suite, short opt usage
Short options and their argument should not separated by "=" but by
space. While this seemed to work with popt 1.16 it does not with
1.13 (which is still used in most recent Fedora distros).
see also popt(3): "A space separates a short option from its
arguments; either a space or an = separates a long option from an
argument."
Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
---
gdisk_test.sh | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/gdisk_test.sh b/gdisk_test.sh
index e567d4c..8c5d800 100755
--- a/gdisk_test.sh
+++ b/gdisk_test.sh
@@ -147,7 +147,7 @@ EOF
;;
sgdisk)
- $SGDISK_BIN $TEMP_DISK -${OPT_NEW}=1 -${OPT_CHANGE_NAME}=1:"${TEST_PART_DEFAULT_NAME}"
+ $SGDISK_BIN $TEMP_DISK -${OPT_NEW} 1 -${OPT_CHANGE_NAME} 1:"${TEST_PART_DEFAULT_NAME}"
;;
esac
@@ -171,7 +171,7 @@ EOF
;;
sgdisk)
- $SGDISK_BIN $TEMP_DISK -${OPT_CHANGE_NAME}=1:${TEST_PART_NEWNAME}
+ $SGDISK_BIN $TEMP_DISK -${OPT_CHANGE_NAME} 1:${TEST_PART_NEWNAME}
;;
esac
@@ -195,7 +195,7 @@ EOF
;;
sgdisk)
- $SGDISK_BIN $TEMP_DISK -${OPT_CHANGE_TYPE}=1:${TEST_PART_NEWTYPE}
+ $SGDISK_BIN $TEMP_DISK -${OPT_CHANGE_TYPE} 1:${TEST_PART_NEWTYPE}
;;
esac
@@ -219,7 +219,7 @@ echo ""
;;
sgdisk)
- $SGDISK_BIN $TEMP_DISK -${OPT_BACKUP}=${GPT_BACKUP_FILENAME}
+ $SGDISK_BIN $TEMP_DISK -${OPT_BACKUP} ${GPT_BACKUP_FILENAME}
;;
esac
@@ -248,7 +248,7 @@ EOF
;;
sgdisk)
- $SGDISK_BIN $TEMP_DISK -${OPT_DELETE}=1
+ $SGDISK_BIN $TEMP_DISK -${OPT_DELETE} 1
;;
esac
--
1.7.6.1

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4579cd54842459699970e24720dda7fb0aa217027818623089c321bc62a647b2
size 184686

3
gptfdisk-0.8.7.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39e61d9f3701e95db1bcb83ce8fb211b22f33548e3c75b17f22067c6968e91e3
size 187010

View File

@ -1,3 +1,26 @@
-------------------------------------------------------------------
Mon Jul 29 22:18:09 UTC 2013 - sweet_f_a@gmx.de
- Update to new upstream release 0.8.7
* Small improvements and bug fixes mark this revision.
* Three new partition type codes have been added:
freedesktop.org's proposed $BOOT partition (type code EA00),
the Intel Rapid Start partition (code 8400),
and for Haiku's BFS (code EB00).
* Removed a stray debug message that appeared when reading MBR
disks.
* The "converting MBR to GPT" message has been modified to
clarify that changes are being held in memory.
* The Mac version now works on /dev/rdisk* devices as well as
/dev/disk* devices.
* When used with /dev/rdisk* devices, the partition table can
sometimes be re-read without rebooting or unplugging and
re-inserting the disk.
* Finally, cgdisk now supports a -a option, which works similarly
to the -a option in cfdisk.
- remove gptfdisk-0.8.5-fix-test-suite-short-opt-usage.patch, is
upstream merged
-------------------------------------------------------------------
Wed Mar 27 12:48:24 UTC 2013 - mmeister@suse.com
@ -8,11 +31,14 @@ Wed Mar 27 12:48:24 UTC 2013 - mmeister@suse.com
Fri Jan 18 19:58:32 UTC 2013 - sweet_f_a@gmx.de
- Update to new upstream release 0.8.6
* add type codes for a Sony System Partition and for VMWare ESX
* fix the hybrid MBR creation support that could cause it to omit
the 0xEE partition under some circumstances
* fix a bug that could cause a crash when passing a partition
number of 0 via the -t option.
* add type codes for a Sony System Partition and for VMWare ESX
* new check in the verification code
* support for building under Solaris.
* fix Mac OS X build
* fix the hybrid MBR creation support that could cause it to omit
the 0xEE partition under some circumstances
* fix a bug that could cause a crash when passing a partition
number of 0 via the -t option.
-------------------------------------------------------------------
Fri Jan 18 12:01:39 UTC 2013 - sweet_f_a@gmx.de
@ -27,9 +53,9 @@ Fri Jan 18 12:01:39 UTC 2013 - sweet_f_a@gmx.de
Fri Jun 22 21:29:05 UTC 2012 - jengelh@inai.de
- Update to new upstream release 0.8.5
* sgdisk: fix bug that caused truncation of 2+ TiB partitions
on 32-bit
* added type codes for Midnight BSD
* sgdisk: fix bug that caused truncation of 2+ TiB partitions
on 32-bit
* added type codes for Midnight BSD
- Rip out unused gdisk subpackage
-------------------------------------------------------------------

View File

@ -17,7 +17,7 @@
Name: gptfdisk
Version: 0.8.6
Version: 0.8.7
Release: 0
Summary: GPT partitioning and MBR repair software
License: GPL-2.0
@ -26,7 +26,6 @@ Url: http://rodsbooks.com/gdisk
#DL-URL: http://downloads.sf.net/gptfdisk/gptfdisk-0.8.6.tar.gz
Source: http://downloads.sf.net/%{name}/%{name}-%{version}.tar.gz
Patch1: gptfdisk-0.8.5-fix-test-suite-short-opt-usage.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: gcc-c++
BuildRequires: ncurses-devel
@ -64,7 +63,6 @@ provides a few additional partition manipulation features.
%prep
%setup -q
%patch -P 1 -p1
%build
CFLAGS="%optflags" CXXFLAGS="%optflags" make %{?_smp_mflags}