New version 2.1.11
- Remove build requires for pocketlint (rkuska) - edd_test: don't run on non-x86 (pjones) - Added support for device tags (japokorn) - fcoe: don't use dcb for autoconnecting of bnx2x and bnx2fc (#1261703) (rvykydal) - fcoe: replace fipvlan with fcoemon (#1085325) (rvykydal) - Do not use read-only mode for e2fsck (vpodzime) - Fixed behavior when selinux is disabled (japokorn) - Do file system check before resize (#1484575) (vpodzime)
This commit is contained in:
parent
6405c10d86
commit
9cf75ba4fe
1
.gitignore
vendored
1
.gitignore
vendored
@ -105,3 +105,4 @@
|
|||||||
/blivet-2.1.8.tar.gz
|
/blivet-2.1.8.tar.gz
|
||||||
/blivet-2.1.9.tar.gz
|
/blivet-2.1.9.tar.gz
|
||||||
/blivet-2.1.10.tar.gz
|
/blivet-2.1.10.tar.gz
|
||||||
|
/blivet-2.1.11.tar.gz
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Summary: A python module for system storage configuration
|
Summary: A python module for system storage configuration
|
||||||
Name: python-blivet
|
Name: python-blivet
|
||||||
Url: https://www-rhstorage.rhcloud.com/projects/blivet
|
Url: https://www-rhstorage.rhcloud.com/projects/blivet
|
||||||
Version: 2.1.10
|
Version: 2.1.11
|
||||||
|
|
||||||
#%%global prerelease .b1
|
#%%global prerelease .b1
|
||||||
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
|
# prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2
|
||||||
@ -16,10 +16,8 @@ Source0: http://github.com/storaged-project/blivet/archive/%{realname}-%{realver
|
|||||||
# Versions of required components (done so we make sure the buildrequires
|
# Versions of required components (done so we make sure the buildrequires
|
||||||
# match the requires versions of things).
|
# match the requires versions of things).
|
||||||
%global pykickstartver 1.99.22
|
%global pykickstartver 1.99.22
|
||||||
%global pocketlintver 0.4
|
|
||||||
%global partedver 1.8.1
|
%global partedver 1.8.1
|
||||||
%global pypartedver 3.10.4
|
%global pypartedver 3.10.4
|
||||||
%global e2fsver 1.41.0
|
|
||||||
%global utillinuxver 2.15.1
|
%global utillinuxver 2.15.1
|
||||||
%global libblockdevver 2.6
|
%global libblockdevver 2.6
|
||||||
%global libbytesizever 0.3
|
%global libbytesizever 0.3
|
||||||
@ -27,7 +25,6 @@ Source0: http://github.com/storaged-project/blivet/archive/%{realname}-%{realver
|
|||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: gettext
|
BuildRequires: gettext
|
||||||
BuildRequires: python3-pocketlint >= %{pocketlintver}
|
|
||||||
BuildRequires: python3-devel python3-setuptools
|
BuildRequires: python3-devel python3-setuptools
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -47,8 +44,6 @@ Requires: python3-blockdev >= %{libblockdevver}
|
|||||||
Requires: libblockdev-plugins-all >= %{libblockdevver}
|
Requires: libblockdev-plugins-all >= %{libblockdevver}
|
||||||
Requires: python3-bytesize >= %{libbytesizever}
|
Requires: python3-bytesize >= %{libbytesizever}
|
||||||
Requires: util-linux >= %{utillinuxver}
|
Requires: util-linux >= %{utillinuxver}
|
||||||
Requires: dosfstools
|
|
||||||
Requires: e2fsprogs >= %{e2fsver}
|
|
||||||
Requires: lsof
|
Requires: lsof
|
||||||
Requires: python3-gobject-base
|
Requires: python3-gobject-base
|
||||||
Requires: systemd-udev
|
Requires: systemd-udev
|
||||||
@ -66,8 +61,6 @@ rm -rf %{py3dir}
|
|||||||
cp -a . %{py3dir}
|
cp -a . %{py3dir}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# don't try to regenerate blivet.pot as part of the rpm build.
|
|
||||||
touch po/blivet.pot
|
|
||||||
make
|
make
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -80,6 +73,17 @@ make PYTHON=%{__python3} DESTDIR=%{buildroot} install
|
|||||||
%{python3_sitelib}/*
|
%{python3_sitelib}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Sep 19 2017 Vojtech Trefny <vtrefny@redhat.com> - 2.1.11-1
|
||||||
|
- Remove build requires for pocketlint (rkuska)
|
||||||
|
- edd_test: don't run on non-x86 (pjones)
|
||||||
|
- Added support for device tags (japokorn)
|
||||||
|
- fcoe: don't use dcb for autoconnecting of bnx2x and bnx2fc (#1261703)
|
||||||
|
(rvykydal)
|
||||||
|
- fcoe: replace fipvlan with fcoemon (#1085325) (rvykydal)
|
||||||
|
- Do not use read-only mode for e2fsck (vpodzime)
|
||||||
|
- Fixed behavior when selinux is disabled (japokorn)
|
||||||
|
- Do file system check before resize (#1484575) (vpodzime)
|
||||||
|
|
||||||
* Thu Aug 17 2017 Vojtech Trefny <vtrefny@redhat.com> - 2.1.10-1
|
* Thu Aug 17 2017 Vojtech Trefny <vtrefny@redhat.com> - 2.1.10-1
|
||||||
- Use addCleanup for test cleanup instead of clening in tearDown (vtrefny)
|
- Use addCleanup for test cleanup instead of clening in tearDown (vtrefny)
|
||||||
- No longer skip test w/o selinux; mocked (japokorn)
|
- No longer skip test w/o selinux; mocked (japokorn)
|
||||||
@ -108,12 +112,6 @@ make PYTHON=%{__python3} DESTDIR=%{buildroot} install
|
|||||||
- Account for external dep availabilty in StorageDevice.controllable. (dlehman)
|
- Account for external dep availabilty in StorageDevice.controllable. (dlehman)
|
||||||
- Add the appropriate external dependency to LUKSDevice. (dlehman)
|
- Add the appropriate external dependency to LUKSDevice. (dlehman)
|
||||||
|
|
||||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.1.9-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 30 2017 Vojtech Trefny <vtrefny@redhat.com> - 2.1.9-2
|
|
||||||
- Stop enforcing obsolete limits on partition count (dlehman)
|
|
||||||
|
|
||||||
* Thu Jun 01 2017 Vojtech Trefny <vtrefny@redhat.com> - 2.1.9-1
|
* Thu Jun 01 2017 Vojtech Trefny <vtrefny@redhat.com> - 2.1.9-1
|
||||||
- Adapt to logging module name change (mkolman)
|
- Adapt to logging module name change (mkolman)
|
||||||
- Updated calls to avoid log spamming (japokorn)
|
- Updated calls to avoid log spamming (japokorn)
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (blivet-2.1.10.tar.gz) = 1f375df54e4e4251f83905434dee226d22e22377ed003ef04451c78d3a844ae63e782cbdb03ac62adf0bf092d0ed3ebaf6401dae80f53e5166f10934d0089ca5
|
SHA512 (blivet-2.1.11.tar.gz) = b5457f6d7ad8eb1088900c5f792dcb1bd86eee8df7b179a54c408c43570f54a76d4f24d1a510df08499beb3173b08be29adad7a7cf1072e2985c97bd5ff8720d
|
||||||
|
Loading…
Reference in New Issue
Block a user