Initial commit

This commit is contained in:
Daniel Berteaud 2022-08-14 23:19:26 +02:00
parent 63868b0a51
commit 755e642658
5 changed files with 42 additions and 2 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.tar.gz filter=lfs diff=lfs merge=lfs -text

1
.tito/releasers.conf Symbolic link
View File

@ -0,0 +1 @@
../../tito_libs/releasers.conf

View File

@ -1,5 +1,6 @@
[buildconfig]
builder = tito.builder.Builder
tagger = tito.tagger.VersionTagger
builder = dbd.builder.GitLfsBuilder
tagger = tito.tagger.ReleaseTagger
changelog_do_not_remove_cherrypick = 0
changelog_format = %s (%ae)
lib_dir = ../tito_libs

BIN
linstor-client-1.14.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

34
linstor-client.spec Normal file
View File

@ -0,0 +1,34 @@
Name: linstor-client
Version: 1.14.0
Release: 0
Summary: Linstor SDS client utility
License: GPL-3.0-only
URL: https://github.com/LINBIT/linstor-client
Source: https://pkg.linbit.com//downloads/linstor/%{name}-%{version}.tar.gz
BuildRequires: python3-devel
BuildRequires: python-linstor
Requires: python-linstor >= %{version}
%define __python %{__python3}
%description
User space client to ease DRBD9 resource management.
%prep
%setup -q
%build
%{python} setup.py build
%install
%{_python} setup.py install --single-version-externally-managed -O1 --root=%{buildroot} --prefix=%{_prefix} --record=INSTALLED_FILES
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
%defattr(-,root,root)
%changelog