Accepting request 989207 from Base:System

OBS-URL: https://build.opensuse.org/request/show/989207
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libnvme?expand=0&rev=11
This commit is contained in:
Richard Brown 2022-07-21 09:32:43 +00:00 committed by Git OBS Bridge
parent 4d31b12cf9
commit a0ab7e0441
7 changed files with 39 additions and 12 deletions

View File

@ -4,9 +4,9 @@
<param name="url">https://github.com/linux-nvme/libnvme.git</param>
<param name="filename">libnvme</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">v1.0</param>
<param name="versionrewrite-pattern">v(\d+.\d+)</param>
<param name="versionrewrite-replacement">\1</param>
<param name="revision">v1.1-rc0</param>
<param name="versionrewrite-pattern">v(\d+.\d+)-rc(\d+)</param>
<param name="versionrewrite-replacement">\1~rc\2</param>
<param name="changesgenerate">enable</param>
</service>
<service name="set_version" mode="manual">

View File

@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/linux-nvme/libnvme.git</param>
<param name="changesrevision">033449f7c61c130fd21f0a747075dc15069f73f0</param>
<param name="changesrevision">6c5aedd78690b042250f3dc82b48b7302ea91dbd</param>
</service>
</servicedata>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d548a161f59257624be175b7a263fd5ba581371f806135876296e4ec244e61c8
size 1564172

3
libnvme-1.1~rc0.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:762ad14129e29443f0a51ee81cca53557487a33d8703f2094494a8324a8e8509
size 2174476

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Thu Jul 14 14:00:41 UTC 2022 - daniel.wagner@suse.com
- Update to version v1.1-rc0:
* update/cleanup of documentation
* various build fixes
* various fixes reported by coverity
* 64-bit Reference Tags and TP-4068 changes
* libnvme-mi: Introduce NVMe Managament Interface library
-------------------------------------------------------------------
Fri Apr 08 17:04:22 UTC 2022 - Daniel Wagner <daniel.wagner@suse.com>

View File

@ -1,4 +1,4 @@
name: libnvme
version: 1.0
mtime: 1649434495
commit: 033449f7c61c130fd21f0a747075dc15069f73f0
version: 1.1~rc0
mtime: 1657802871
commit: 6c5aedd78690b042250f3dc82b48b7302ea91dbd

View File

@ -19,7 +19,7 @@
%define sover 1
Name: libnvme
Version: 1.0
Version: 1.1~rc0
Release: 0
Summary: Linux-native nvme device management library
License: LGPL-2.1-or-later
@ -49,12 +49,20 @@ system.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{sover} = %{version}
Requires: %{name}-mi%{sover} = %{version}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%package -n python3-libnvme
%package mi%{sover}
Summary: NVMe Managament Interface library for %{name}
%description mi%{sover}
Provides library functions for managing NVMe devices via the NVMe
Managament Interface.
%package -n python3-libnvme
Summary: Python binding for %{name}
%description -n python3-libnvme
@ -77,6 +85,9 @@ Python binding part.
%post -n %{name}%{sover} -p /sbin/ldconfig
%postun -n %{name}%{sover} -p /sbin/ldconfig
%post -n %{name}-mi%{sover} -p /sbin/ldconfig
%postun -n %{name}-mi%{sover} -p /sbin/ldconfig
%files -n %{name}%{sover}
%license COPYING
%doc README.md
@ -87,8 +98,14 @@ Python binding part.
%{_includedir}/*
%{_libdir}/%{name}*.so
%{_libdir}/pkgconfig/%{name}.pc
%{_libdir}/pkgconfig/%{name}-mi.pc
%{_mandir}/*/*
%files -n %{name}-mi%{sover}
%license COPYING
%doc README.md
%{_libdir}/%{name}-mi.so.%{sover}*
%files -n python3-libnvme
%{python3_sitearch}/libnvme
%{python3_sitearch}/libnvme/*.so