Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package parti for openSUSE:Factory checked in at 2021-11-04 16:09:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/parti (Old) and /work/SRC/openSUSE:Factory/.parti.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "parti" Thu Nov 4 16:09:50 2021 rev:11 rq:929065 version:2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/parti/parti.changes 2021-10-28 18:31:46.000426845 +0200 +++ /work/SRC/openSUSE:Factory/.parti.new.1890/parti.changes 2021-11-04 16:10:36.313083124 +0100 @@ -1,0 +2,6 @@ +Wed Nov 3 16:58:54 UTC 2021 - wfe...@opensuse.org + +- add spec file +- 2.1 + +-------------------------------------------------------------------- Old: ---- parti-2.0.tar.xz New: ---- parti-2.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ parti.spec ++++++ --- /var/tmp/diff_new_pack.psdJ2D/_old 2021-11-04 16:10:36.721083362 +0100 +++ /var/tmp/diff_new_pack.psdJ2D/_new 2021-11-04 16:10:36.721083362 +0100 @@ -18,7 +18,7 @@ Name: parti -Version: 2.0 +Version: 2.1 Release: 0 Summary: Show partition table information License: GPL-3.0 ++++++ parti-2.0.tar.xz -> parti-2.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parti-2.0/VERSION new/parti-2.1/VERSION --- old/parti-2.0/VERSION 2021-10-28 14:18:03.000000000 +0200 +++ new/parti-2.1/VERSION 2021-11-03 17:58:54.000000000 +0100 @@ -1 +1 @@ -2.0 +2.1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parti-2.0/changelog new/parti-2.1/changelog --- old/parti-2.0/changelog 2021-10-28 14:18:03.000000000 +0200 +++ new/parti-2.1/changelog 2021-11-03 17:58:54.000000000 +0100 @@ -1,3 +1,6 @@ +2021-11-03: 2.1 + - add spec file + 2021-10-28: 2.0 - merge gh#wfeldt/parti#12 - the future diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/parti-2.0/obs/parti.spec new/parti-2.1/obs/parti.spec --- old/parti-2.0/obs/parti.spec 1970-01-01 01:00:00.000000000 +0100 +++ new/parti-2.1/obs/parti.spec 2021-11-03 17:58:54.000000000 +0100 @@ -0,0 +1,65 @@ +# +# spec file for package parti +# +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2013-2015 Steffen Winterfeldt +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +Name: parti +Version: 0.0 +Release: 0 +Summary: Show partition table information +License: GPL-3.0 +Group: Hardware/Other +Url: https://github.com/wfeldt/parti +Source: %{name}-%{version}.tar.xz +BuildRequires: xz +BuildRequires: pkgconfig(blkid) +BuildRequires: pkgconfig(uuid) +BuildRequires: pkgconfig(json-c) +%if 0%{suse_version} >= 1500 +Requires: mkisofs +%else +Requires: cdrkit-cdrtools-compat +%endif +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +Show partition table information for +* Master Boot Record (MBR) Partition Table +* GUID Partition Table (GPT) +* Apple Partition Map +* El Torito Bootable CD/DVD +* zIPL boot info + +It shows the complete information but mostly in uninterpreted form (unlike partitioning tools like fdisk or parted). + +So it can be used to verify the data your favorite partitioning tool has actually written. + +%prep +%setup -q + +%build +make %{?_smp_mflags} + +%install +make DESTDIR=%{buildroot} install %{?_smp_mflags} + +%files +%defattr(-,root,root) +%{_bindir}/parti +%doc README.md COPYING + +%changelog