- release 4.4.29
OBS-URL: https://build.opensuse.org/package/show/YaST:Head/libstorage-ng?expand=0&rev=769
This commit is contained in:
parent
8269e5d7ae
commit
b8395009c4
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:eafbd75b4402c86f09c612522f62d2188be328a819f138d5e5e0c466a3d3133b
|
|
||||||
size 845316
|
|
3
libstorage-ng-4.4.29.tar.xz
Normal file
3
libstorage-ng-4.4.29.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ea551bc0508a17d06039bbadca93a17a6d2fab23a9d6668c11cc9edddfef403c
|
||||||
|
size 845472
|
@ -1,3 +1,13 @@
|
|||||||
|
--------------------------------------------------------------------
|
||||||
|
Fri Jul 23 14:23:22 UTC 2021 - aschnell@suse.com
|
||||||
|
|
||||||
|
- merge gh#openSUSE/libstorage-ng#823
|
||||||
|
- extended spec file for Fedora
|
||||||
|
- added documentation
|
||||||
|
- avoid non standard parted commands where possible
|
||||||
|
- coding style
|
||||||
|
- 4.4.29
|
||||||
|
|
||||||
--------------------------------------------------------------------
|
--------------------------------------------------------------------
|
||||||
Wed Jul 14 18:38:12 UTC 2021 - opensuse-packaging@opensuse.org
|
Wed Jul 14 18:38:12 UTC 2021 - opensuse-packaging@opensuse.org
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%define libname %{name}1
|
%define libname %{name}1
|
||||||
Name: libstorage-ng
|
Name: libstorage-ng
|
||||||
Version: 4.4.28
|
Version: 4.4.29
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Library for storage management
|
Summary: Library for storage management
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
@ -49,9 +49,16 @@ BuildRequires: ruby2.1-rubygem-test-unit
|
|||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
BuildRequires: rubygem-test-unit
|
BuildRequires: rubygem-test-unit
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: libjson-c-devel
|
|
||||||
BuildRequires: swig >= 3.0.3
|
BuildRequires: swig >= 3.0.3
|
||||||
BuildRequires: pkgconfig(libxml-2.0)
|
BuildRequires: pkgconfig(libxml-2.0)
|
||||||
|
%if 0%{?fedora}
|
||||||
|
BuildRequires: glibc-langpack-de
|
||||||
|
BuildRequires: glibc-langpack-en
|
||||||
|
BuildRequires: glibc-langpack-fr
|
||||||
|
BuildRequires: json-c-devel
|
||||||
|
%else
|
||||||
|
BuildRequires: libjson-c-devel
|
||||||
|
%endif
|
||||||
BuildRequires: pkgconfig(python3)
|
BuildRequires: pkgconfig(python3)
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
@ -153,8 +160,8 @@ export CFLAGS="%{optflags} -DNDEBUG"
|
|||||||
export CXXFLAGS="%{optflags} -DNDEBUG"
|
export CXXFLAGS="%{optflags} -DNDEBUG"
|
||||||
|
|
||||||
autoreconf -fvi
|
autoreconf -fvi
|
||||||
|
|
||||||
%configure \
|
%configure \
|
||||||
|
--docdir="%{_docdir}/%{name}" \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-silent-rules
|
--disable-silent-rules
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
@ -183,8 +190,9 @@ touch %{buildroot}/run/libstorage-ng/lock
|
|||||||
|
|
||||||
%files -n %{libname}
|
%files -n %{libname}
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc AUTHORS
|
%doc %dir %{_docdir}/%{name}
|
||||||
%license LICENSE
|
%doc %{_docdir}/%{name}/AUTHORS
|
||||||
|
%license %{_docdir}/%{name}/LICENSE
|
||||||
%{_libdir}/libstorage-ng.so.*
|
%{_libdir}/libstorage-ng.so.*
|
||||||
%ghost /run/libstorage-ng
|
%ghost /run/libstorage-ng
|
||||||
|
|
||||||
@ -192,17 +200,25 @@ touch %{buildroot}/run/libstorage-ng/lock
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/libstorage-ng.so
|
%{_libdir}/libstorage-ng.so
|
||||||
%{_includedir}/storage
|
%{_includedir}/storage
|
||||||
%dir %{_docdir}/%{name}/
|
%dir %{_docdir}/%{name}/autodocs
|
||||||
%doc %{_docdir}/%{name}/*
|
%doc %{_docdir}/%{name}/autodocs/*
|
||||||
|
|
||||||
%files python3
|
%files python3
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{python3_sitelib}/storage.py*
|
%{python3_sitelib}/storage.py*
|
||||||
%attr(755,root,root) %{python3_sitearch}/_storage.so
|
%attr(755,root,root) %{python3_sitearch}/_storage.so
|
||||||
|
# Fedora has brp-python-bytecompile so apparently they want those packaged
|
||||||
|
%if 0%{?fedora}
|
||||||
|
%{python3_sitelib}/__pycache__/storage*.pyc
|
||||||
|
%endif
|
||||||
|
|
||||||
%files ruby
|
%files ruby
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{rb_vendorarch}/storage.so
|
%if 0%{?fedora}
|
||||||
|
%{ruby_vendorarchdir}/storage.so
|
||||||
|
%else
|
||||||
|
%{rb_vendorarchdir}/storage.so
|
||||||
|
%endif
|
||||||
|
|
||||||
%files utils
|
%files utils
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user