forked from pool/ceph-iscsi
Accepting request 835250 from filesystems:ceph:pacific
Factory to v3.4 OBS-URL: https://build.opensuse.org/request/show/835250 OBS-URL: https://build.opensuse.org/package/show/filesystems:ceph/ceph-iscsi?expand=0&rev=58
This commit is contained in:
parent
55bef657bf
commit
33a2c2062e
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b5fb71dc0909cd5786c6962423c11ca0b72f6c813e516edb0f69c859342e10fc
|
||||
size 132025
|
3
ceph-iscsi-3.4+1600349408.g516d37d.tar.gz
Normal file
3
ceph-iscsi-3.4+1600349408.g516d37d.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e37f4e9da940c24f9a8e9a1874c600685dec9b324bfb596d5f8473b6e840951c
|
||||
size 136555
|
@ -1,3 +1,58 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 17 13:32:02 UTC 2020 - Ricardo Marques <rimarques@suse.com>
|
||||
|
||||
- Update to 3.4+1600349408.g516d37d
|
||||
+ Fix gateway creation crash in python3 (#196)
|
||||
+ Report tcmu-runner device status (#210)
|
||||
+ Fix list access violiation when load config (#200)
|
||||
+ Fix delete disk error when disk owner is not specified (#206)
|
||||
+ Support specified gateway config name (#207)
|
||||
+ Added dependency on ceph-common package (#201)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 15 12:14:23 UTC 2020 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
- Update to 3.4+1600172042.g4d04457
|
||||
+ Rename blacklist to blocklist (#216)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 14 15:12:32 UTC 2020 - Ricardo Marques <rimarques@suse.com>
|
||||
|
||||
- Update to 3.4+1589469085.ga007663
|
||||
+ Add a config option to log to stderr (#186)
|
||||
+ Don't store to config if create_target fails (#187)
|
||||
+ Fixed numerous string format issues on errors paths (#189)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 30 17:14:48 UTC 2020 - Ricardo Marques <rimarques@suse.com>
|
||||
|
||||
- Update to 3.4+1588266755.g4a5a2cb
|
||||
+ Attempt to pull SSL crt and key's from mon config-key store (#173)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 14 13:08:30 UTC 2020 - Ricardo Marques <rimarques@suse.com>
|
||||
|
||||
- Update to 3.4+1586869678.gf041d18
|
||||
+ Allow target reconfigure without clients (bsc#1164571)
|
||||
+ Fix ceph blacklist ls test (#171)
|
||||
+ Always perform full deletion on local node (#170)
|
||||
+ Fix crash during unblacklisting with python3 (#170)
|
||||
+ Fix metrics crash if gw not setup yet (#170)
|
||||
+ Fix keys() crash with python 3 (#168)
|
||||
+ Add option to force deletion of unreachable gw (#156)
|
||||
+ Fix next() crash with python 3 (#164)
|
||||
+ Fix config upgrade from 2 to 3 (#162)
|
||||
+ Fix ZeroDivisionError (#155)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 15 15:55:16 UTC 2019 - Ricardo Marques <rimarques@suse.com>
|
||||
|
||||
- Update to 3.3+1573833100.g55d02da:
|
||||
+ Allow explicit set LUN number and WWN (bsc#1145756)
|
||||
+ Should be possible to use a single gateway (bsc#1155283)
|
||||
+ Fix group disk add on python3
|
||||
+ Fix crash when CephCluster fails to get Rados object
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 8 11:05:09 UTC 2019 - Nathan Cutler <ncutler@suse.com>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
%endif
|
||||
|
||||
Name: ceph-iscsi
|
||||
Version: 3.3+1570532654.g93940a4
|
||||
Version: 3.4+1600349408.g516d37d
|
||||
Release: 1%{?dist}
|
||||
Group: System/Filesystems
|
||||
Summary: Python modules for Ceph iSCSI gateway configuration management
|
||||
@ -33,19 +33,14 @@ Source0: %{name}-%{version}.tar.gz
|
||||
%if 0%{?suse_version}
|
||||
Source98: checkin.sh
|
||||
Source99: README-checkin.txt
|
||||
%if 0%{?is_opensuse}
|
||||
ExclusiveArch: x86_64 aarch64 ppc64le s390x
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if ! 0%{?is_opensuse}
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
|
||||
Obsoletes: ceph-iscsi-config
|
||||
Obsoletes: ceph-iscsi-cli
|
||||
|
||||
Requires: tcmu-runner >= 1.4.0
|
||||
Requires: ceph-common >= 10.2.2
|
||||
%if 0%{?with_python2}
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python2-setuptools
|
||||
|
@ -98,8 +98,8 @@ VERSION=$(grep ^Version *spec | sed -r "s/^Version:\s+//")
|
||||
VERSION="${VERSION}+$(date +%s).${GIT_SHA1}"
|
||||
sed -i -e 's/^Version:.*/Version: '$VERSION'/' $PROJECT.spec
|
||||
sed -i -e 's#^Source0:.*#Source0: %{name}-%{version}.tar.gz#' $PROJECT.spec
|
||||
sed -i -e '/Source0/a %if 0%{?suse_version}\nSource98: checkin.sh\nSource99: README-checkin.txt\nExclusiveArch: x86_64 aarch64 ppc64le s390x\n%endif' $PROJECT.spec
|
||||
sed -i -e '/BuildArch:\s\+noarch/d' $PROJECT.spec
|
||||
sed -i -e '/Source0/a %if 0%{?suse_version}\nSource98: checkin.sh\nSource99: README-checkin.txt\n%if 0%{?is_opensuse}\nExclusiveArch: x86_64 aarch64 ppc64le s390x\n%endif\n%endif\n\n%if ! 0%{?is_opensuse}\nBuildArch: noarch\n%endif' $PROJECT.spec
|
||||
sed -i -e 'N;/^\n$/D;P;D;' $PROJECT.spec # collapse multiple adjacent newlines down to a single newline
|
||||
cp $PROJECT.spec $THIS_DIR
|
||||
echo "Version number is ->$VERSION<-"
|
||||
|
Loading…
x
Reference in New Issue
Block a user