Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
429b95fbb3 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/libnvme-1.16.1.tar.gz
|
libnvme-1.16.1.tar.gz
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
f900568699e4653686fc66666d3c00243df358ff SOURCES/libnvme-1.16.1.tar.gz
|
|
||||||
@ -1,207 +0,0 @@
|
|||||||
# RHEL 8 compatibility
|
|
||||||
%{!?version_no_tilde: %define version_no_tilde %{shrink:%(echo '%{version}' | tr '~' '-')}}
|
|
||||||
|
|
||||||
Name: libnvme
|
|
||||||
Summary: Linux-native nvme device management library
|
|
||||||
Version: 1.16.1
|
|
||||||
Release: 3%{?dist}
|
|
||||||
License: LGPL-2.1-or-later
|
|
||||||
URL: https://github.com/linux-nvme/libnvme
|
|
||||||
Source0: %{url}/archive/v%{version_no_tilde}/%{name}-%{version_no_tilde}.tar.gz
|
|
||||||
Patch0: 0001-tree-cleanup-paths-when-freeing-namespace.patch
|
|
||||||
|
|
||||||
BuildRequires: gcc gcc-c++
|
|
||||||
BuildRequires: swig
|
|
||||||
BuildRequires: python3-devel
|
|
||||||
BuildRequires: meson >= 0.62
|
|
||||||
BuildRequires: json-c-devel >= 0.13
|
|
||||||
BuildRequires: openssl-devel
|
|
||||||
BuildRequires: keyutils-libs-devel
|
|
||||||
|
|
||||||
Requires: keyutils-libs
|
|
||||||
|
|
||||||
%description
|
|
||||||
Provides type definitions for NVMe specification structures,
|
|
||||||
enumerations, and bit fields, helper functions to construct,
|
|
||||||
dispatch, and decode commands and payloads, and utilities to connect,
|
|
||||||
scan, and manage nvme devices on a Linux system.
|
|
||||||
|
|
||||||
%package devel
|
|
||||||
Summary: Development files for %{name}
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description devel
|
|
||||||
This package provides header files to include and libraries to link with
|
|
||||||
for Linux-native nvme device management.
|
|
||||||
%package doc
|
|
||||||
Summary: Reference manual for libnvme
|
|
||||||
BuildArch: noarch
|
|
||||||
BuildRequires: perl-interpreter
|
|
||||||
BuildRequires: python3-sphinx
|
|
||||||
BuildRequires: python3-sphinx_rtd_theme
|
|
||||||
|
|
||||||
%description doc
|
|
||||||
This package contains the reference manual for %{name}.
|
|
||||||
|
|
||||||
%package -n python3-libnvme
|
|
||||||
Summary: Python3 bindings for libnvme
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
Provides: python3-nvme = %{version}-%{release}
|
|
||||||
%{?python_provide:%python_provide python3-libnvme}
|
|
||||||
|
|
||||||
%description -n python3-libnvme
|
|
||||||
This package contains Python bindings for libnvme.
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -p1 -n %{name}-%{version_no_tilde}
|
|
||||||
|
|
||||||
%build
|
|
||||||
%meson -Dpython=enabled -Dlibdbus=disabled -Ddocs=all -Ddocs-build=true -Dhtmldir=%{_pkgdocdir} -Dliburing=disabled
|
|
||||||
%meson_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%meson_install
|
|
||||||
%{__install} -pm 644 README.md %{buildroot}%{_pkgdocdir}
|
|
||||||
%{__install} -pm 644 doc/config-schema.json %{buildroot}%{_pkgdocdir}
|
|
||||||
mv %{buildroot}%{_pkgdocdir}/nvme/html %{buildroot}%{_pkgdocdir}/html
|
|
||||||
rm -rf %{buildroot}%{_pkgdocdir}/nvme
|
|
||||||
mv %{buildroot}/usr/*.rst %{buildroot}%{_pkgdocdir}/
|
|
||||||
|
|
||||||
%ldconfig_scriptlets
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license COPYING ccan/licenses/*
|
|
||||||
%{_libdir}/libnvme.so.1
|
|
||||||
%{_libdir}/libnvme.so.1.16.1
|
|
||||||
%{_libdir}/libnvme-mi.so.1
|
|
||||||
%{_libdir}/libnvme-mi.so.1.16.1
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%{_libdir}/libnvme.so
|
|
||||||
%{_libdir}/libnvme-mi.so
|
|
||||||
%{_includedir}/libnvme.h
|
|
||||||
%{_includedir}/libnvme-mi.h
|
|
||||||
%dir %{_includedir}/nvme
|
|
||||||
%{_includedir}/nvme/*.h
|
|
||||||
%{_libdir}/pkgconfig/*.pc
|
|
||||||
|
|
||||||
%files doc
|
|
||||||
%doc %{_pkgdocdir}
|
|
||||||
%{_mandir}/man2/*.2*
|
|
||||||
|
|
||||||
%files -n python3-libnvme
|
|
||||||
%dir %{python3_sitearch}/libnvme
|
|
||||||
%{python3_sitearch}/libnvme/*
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Wed Mar 11 2026 Maurizio Lombardi <mlombard@redhat.com> - 1.16.1-3
|
|
||||||
- Fix linked list corruption RHEL-146273
|
|
||||||
|
|
||||||
* Fri Nov 21 2025 Maurizio Lombardi <mlombard@redhat.com> - 1.16.1-2
|
|
||||||
- Respin for RHEL-114102
|
|
||||||
|
|
||||||
* Thu Nov 20 2025 Maurizio Lombardi <mlombard@redhat.com> - 1.16.1-1
|
|
||||||
- Rebase to version 1.16.1 (RHEL-114102)
|
|
||||||
|
|
||||||
* Tue Apr 29 2025 Maurizio Lombardi <mlombard@redhat.com> - 1.13-1
|
|
||||||
- Update to version 1.13 (RHEL-88847)
|
|
||||||
|
|
||||||
* Tue Nov 19 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.11.1-1
|
|
||||||
- TLS Fixes (RHEL-53980)
|
|
||||||
|
|
||||||
* Tue Nov 12 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.11-1
|
|
||||||
- Update libnvme to version 1.11 (RHEL-67145)
|
|
||||||
|
|
||||||
* Mon Oct 07 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.10-1
|
|
||||||
- Update to latest upstream version RHEL-61573
|
|
||||||
|
|
||||||
* Thu Aug 01 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.9-3
|
|
||||||
- Backport fix for RHEL-49544
|
|
||||||
|
|
||||||
* Wed Jul 24 2024 Tomas Bzatek <tbzatek@redhat.com> - 1.9-2
|
|
||||||
- Backport URI parser API
|
|
||||||
|
|
||||||
* Tue May 07 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.9-1
|
|
||||||
- Rebase to version 1.9
|
|
||||||
|
|
||||||
* Tue Apr 02 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.8-1
|
|
||||||
- Update to version 1.8
|
|
||||||
|
|
||||||
* Fri Nov 03 2023 Maurizio Lombardi <mlombard@redhat.com> - 1.6-1
|
|
||||||
- Update to version 1.6, including the stack-smashing fixes
|
|
||||||
|
|
||||||
* Mon Jul 17 2023 John Meneghini <jmeneghi@redhat.com> - 1.4-7
|
|
||||||
- Fix BZ#2223429
|
|
||||||
|
|
||||||
* Mon Jun 05 2023 Maurizio Lombardi <mlombard@redhat.com> - 1.4-6
|
|
||||||
- Rebuild for BZ2212307
|
|
||||||
|
|
||||||
* Tue May 16 2023 Maurizio Lombardi <mlombard@redhat.com> - 1.4-5
|
|
||||||
- Add support to NBFT (BZ2188516)
|
|
||||||
|
|
||||||
* Mon May 08 2023 Maurizio Lombardi <mlombard@redhat.com> - 1.4-4
|
|
||||||
- Fix BZ#2190206
|
|
||||||
|
|
||||||
* Fri May 05 2023 Maurizio Lombardi <mlombard@redhat.com> - 1.4-3
|
|
||||||
- Fix Jira RHEL-258
|
|
||||||
|
|
||||||
* Thu Apr 06 2023 Maurizio Lombardi <mlombard@redhat.com> - 1.4-2
|
|
||||||
- Rebuild the package
|
|
||||||
|
|
||||||
* Mon Apr 03 2023 Maurizio Lombardi <mlombard@redhat.com> - 1.4-1
|
|
||||||
- Update to version 1.4
|
|
||||||
|
|
||||||
* Thu Jan 12 2023 John Meneghini <jmeneghi@redhat.com> - 1.2-2
|
|
||||||
- Fix BZ2158264
|
|
||||||
|
|
||||||
* Fri Nov 04 2022 Maurizio Lombardi <mlombard@redhat.com> - 1.2-1
|
|
||||||
- Update to upstream version v1.2
|
|
||||||
|
|
||||||
* Mon Sep 19 2022 Maurizio Lombardi <mlombard@redhat.com> - 1.1-1
|
|
||||||
- Update to upstream version v1.1
|
|
||||||
|
|
||||||
* Fri Jun 24 2022 Maurizio Lombardi <mlombard@redhat.com> - 1.0-5
|
|
||||||
- Rebuild for RHEL9.1
|
|
||||||
|
|
||||||
* Thu Jun 09 2022 Maurizio Lombardi <mlombard@redhat.com> - 1.0-4
|
|
||||||
- Add gating tests
|
|
||||||
|
|
||||||
* Wed Jun 01 2022 Maurizio Lombardi <mlombard@redhat.com> - 1.0-3
|
|
||||||
- Rebuild for RHEL 9.1
|
|
||||||
|
|
||||||
* Wed Apr 27 2022 Maurizio Lombardi <mlombard@redhat.com> - 1.0-2
|
|
||||||
- Porting to RHEL 9
|
|
||||||
|
|
||||||
* Mon Apr 11 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0-1
|
|
||||||
- Upstream v1.0 release
|
|
||||||
|
|
||||||
* Fri Apr 01 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc8-1
|
|
||||||
- Upstream v1.0 Release Candidate 8
|
|
||||||
|
|
||||||
* Wed Mar 23 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc7-1
|
|
||||||
- Upstream v1.0 Release Candidate 7
|
|
||||||
- Renamed python3-nvme subpackage to python3-libnvme
|
|
||||||
|
|
||||||
* Mon Mar 14 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc6-1
|
|
||||||
- Upstream v1.0 Release Candidate 6
|
|
||||||
|
|
||||||
* Fri Mar 04 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc5-1
|
|
||||||
- Upstream v1.0 Release Candidate 5
|
|
||||||
|
|
||||||
* Mon Feb 28 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc4-1
|
|
||||||
- Upstream v1.0 Release Candidate 4
|
|
||||||
|
|
||||||
* Fri Feb 11 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc3-1
|
|
||||||
- Upstream v1.0 Release Candidate 3
|
|
||||||
|
|
||||||
* Tue Feb 01 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc2-1
|
|
||||||
- Upstream v1.0 Release Candidate 2
|
|
||||||
|
|
||||||
* Thu Jan 27 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc1-1
|
|
||||||
- Upstream v1.0 Release Candidate 1
|
|
||||||
|
|
||||||
* Mon Jan 17 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc0-1
|
|
||||||
- Upstream v1.0 Release Candidate 0
|
|
||||||
|
|
||||||
* Wed Oct 20 2021 Tomas Bzatek <tbzatek@redhat.com> - 0.0.1-1.git1fe38d6
|
|
||||||
- Initial packaging
|
|
||||||
237
libnvme.spec
Normal file
237
libnvme.spec
Normal file
@ -0,0 +1,237 @@
|
|||||||
|
# RHEL 8 compatibility
|
||||||
|
%{!?version_no_tilde: %define version_no_tilde %{shrink:%(echo '%{version}' | tr '~' '-')}}
|
||||||
|
|
||||||
|
Name: libnvme
|
||||||
|
Summary: Linux-native nvme device management library
|
||||||
|
Version: 1.16.1
|
||||||
|
Release: 3%{?dist}
|
||||||
|
License: LGPL-2.1-or-later
|
||||||
|
URL: https://github.com/linux-nvme/libnvme
|
||||||
|
Source0: %{url}/archive/v%{version_no_tilde}/%{name}-%{version_no_tilde}.tar.gz
|
||||||
|
Patch0: 0001-tree-cleanup-paths-when-freeing-namespace.patch
|
||||||
|
|
||||||
|
BuildRequires: gcc gcc-c++
|
||||||
|
BuildRequires: swig
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
|
||||||
|
BuildRequires: meson >= 0.62
|
||||||
|
BuildRequires: json-c-devel >= 0.13
|
||||||
|
BuildRequires: openssl-devel
|
||||||
|
BuildRequires: dbus-devel
|
||||||
|
BuildRequires: keyutils-libs-devel
|
||||||
|
%if 0%{?fedora} || 0%{?rhel} > 9
|
||||||
|
BuildRequires: kernel-headers >= 5.15
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
Provides type definitions for NVMe specification structures,
|
||||||
|
enumerations, and bit fields, helper functions to construct,
|
||||||
|
dispatch, and decode commands and payloads, and utilities to connect,
|
||||||
|
scan, and manage nvme devices on a Linux system.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
This package provides header files to include and libraries to link with
|
||||||
|
for Linux-native nvme device management.
|
||||||
|
%package doc
|
||||||
|
Summary: Reference manual for libnvme
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: python3-sphinx
|
||||||
|
BuildRequires: python3-sphinx_rtd_theme
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
This package contains the reference manual for %{name}.
|
||||||
|
|
||||||
|
%package -n python3-libnvme
|
||||||
|
Summary: Python3 bindings for libnvme
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Provides: python3-nvme = %{version}-%{release}
|
||||||
|
Obsoletes: python3-nvme < 1.0~rc7
|
||||||
|
%{?python_provide:%python_provide python3-libnvme}
|
||||||
|
|
||||||
|
%description -n python3-libnvme
|
||||||
|
This package contains Python bindings for libnvme.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1 -n %{name}-%{version_no_tilde}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%meson -Dpython=enabled -Dlibdbus=enabled -Ddocs=all -Ddocs-build=true -Dhtmldir=%{_pkgdocdir} -Dliburing=disabled
|
||||||
|
%meson_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%meson_install
|
||||||
|
%{__install} -pm 644 README.md %{buildroot}%{_pkgdocdir}
|
||||||
|
%{__install} -pm 644 doc/config-schema.json %{buildroot}%{_pkgdocdir}
|
||||||
|
mv %{buildroot}%{_pkgdocdir}/nvme/html %{buildroot}%{_pkgdocdir}/html
|
||||||
|
rm -rf %{buildroot}%{_pkgdocdir}/nvme
|
||||||
|
mv %{buildroot}/usr/*.rst %{buildroot}%{_pkgdocdir}/
|
||||||
|
rm -r %{buildroot}%{_pkgdocdir}/html/{.buildinfo,.doctrees/}
|
||||||
|
|
||||||
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license COPYING ccan/licenses/*
|
||||||
|
%{_libdir}/libnvme.so.1
|
||||||
|
%{_libdir}/libnvme.so.1.16.1
|
||||||
|
%{_libdir}/libnvme-mi.so.1
|
||||||
|
%{_libdir}/libnvme-mi.so.1.16.1
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_libdir}/libnvme.so
|
||||||
|
%{_libdir}/libnvme-mi.so
|
||||||
|
%{_includedir}/libnvme.h
|
||||||
|
%{_includedir}/libnvme-mi.h
|
||||||
|
%dir %{_includedir}/nvme
|
||||||
|
%{_includedir}/nvme/*.h
|
||||||
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%doc %{_pkgdocdir}
|
||||||
|
%{_mandir}/man2/*.2*
|
||||||
|
|
||||||
|
%files -n python3-libnvme
|
||||||
|
%dir %{python3_sitearch}/libnvme
|
||||||
|
%{python3_sitearch}/libnvme/*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Mar 27 2026 Maurizio Lombardi <mlombard@redhat.com> - 1.16.1-3
|
||||||
|
- Fix linked list corruption (RHEL-156539)
|
||||||
|
|
||||||
|
* Wed Nov 19 2025 Maurizio Lombardi <mlombard@redhat.com> - 1.16.1-2
|
||||||
|
- Fix gating tests for RHEL-127740
|
||||||
|
|
||||||
|
* Wed Nov 12 2025 Maurizio Lombardi <mlombard@redhat.com> - 1.16.1-1
|
||||||
|
- Rebase to version 1.16.1 (RHEL-127740)
|
||||||
|
|
||||||
|
* Fri Sep 26 2025 Maurizio Lombardi <mlombard@redhat.com> - 1.15-3
|
||||||
|
- Add a fix for a NULL pointer dereference regression
|
||||||
|
|
||||||
|
* Mon Sep 08 2025 Maurizio Lombardi <mlombard@redhat.com> - 1.15-2
|
||||||
|
- bump version because the side-tag didn't propagate
|
||||||
|
|
||||||
|
* Thu Sep 04 2025 Maurizio Lombardi <mlombard@redhat.com> - 1.15-1
|
||||||
|
- Update to version 1.15 (RHEL-113070)
|
||||||
|
|
||||||
|
* Mon May 12 2025 Maurizio Lombardi <mlombard@redhat.com> - 1.13-1
|
||||||
|
- Update to version 1.13 (RHEL-90418)
|
||||||
|
|
||||||
|
* Wed Nov 20 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.11.1-1
|
||||||
|
- Update to the latest version v1.11.1 (RHEL-68304)
|
||||||
|
|
||||||
|
* Mon Oct 21 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.10-1
|
||||||
|
- Update to version 1.10 (RHEL-63282)
|
||||||
|
|
||||||
|
* Fri Jul 26 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.9-4
|
||||||
|
- Fix RHEL-37611
|
||||||
|
|
||||||
|
* Thu Jul 25 2024 Maurizio Lombardi <mlombard@redhat.com> - 1.9-3
|
||||||
|
- Fix RHEL-46699
|
||||||
|
|
||||||
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.9-2
|
||||||
|
- Bump release for June 2024 mass rebuild
|
||||||
|
|
||||||
|
* Fri May 03 2024 Tomas Bzatek <tbzatek@redhat.com> - 1.9-1
|
||||||
|
- Upstream v1.9 release
|
||||||
|
|
||||||
|
* Wed Feb 28 2024 Davide Cavalca <dcavalca@fedoraproject.org> - 1.8-2
|
||||||
|
- Do not package doctrees to make the package build reproducible
|
||||||
|
|
||||||
|
* Wed Feb 14 2024 Tomas Bzatek <tbzatek@redhat.com> - 1.8-1
|
||||||
|
- Upstream v1.8 release
|
||||||
|
|
||||||
|
* Fri Feb 09 2024 Tomas Bzatek <tbzatek@redhat.com> - 1.7.1-4
|
||||||
|
- nbft: Fix SSNS HFI indexes parsing
|
||||||
|
- cleanup: Explicitly initialize auto-cleanup variables
|
||||||
|
|
||||||
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 28 2023 Tomas Bzatek <tbzatek@redhat.com> - 1.7.1-1
|
||||||
|
- Upstream v1.7.1 release
|
||||||
|
|
||||||
|
* Tue Oct 24 2023 Tomas Bzatek <tbzatek@redhat.com> - 1.6-2
|
||||||
|
- Backport stack smashing fixes (#2245707)
|
||||||
|
|
||||||
|
* Fri Sep 29 2023 Tomas Bzatek <tbzatek@redhat.com> - 1.6-1
|
||||||
|
- Upstream v1.6 release
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 04 2023 Python Maint <python-maint@redhat.com> - 1.5-2
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Tue Jul 04 2023 Tomas Bzatek <tbzatek@redhat.com> - 1.5-1
|
||||||
|
- Upstream v1.5 release
|
||||||
|
|
||||||
|
* Thu Jun 15 2023 Python Maint <python-maint@redhat.com> - 1.4-3
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Thu Apr 20 2023 Tomas Bzatek <tbzatek@redhat.com> - 1.4-2
|
||||||
|
- Backport the NBFT parser from git master
|
||||||
|
|
||||||
|
* Mon Apr 03 2023 Tomas Bzatek <tbzatek@redhat.com> - 1.4-1
|
||||||
|
- Upstream v1.4 release
|
||||||
|
|
||||||
|
* Tue Jan 31 2023 Tomas Bzatek <tbzatek@redhat.com> - 1.3-1
|
||||||
|
- Upstream v1.3 release
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 01 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.2-1
|
||||||
|
- Upstream v1.2 release
|
||||||
|
|
||||||
|
* Fri Aug 05 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.1-1
|
||||||
|
- Upstream v1.1 release
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1~rc0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 15 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.1~rc0-1
|
||||||
|
- Upstream v1.1 Release Candidate 0
|
||||||
|
|
||||||
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.0-2
|
||||||
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
* Mon Apr 11 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0-1
|
||||||
|
- Upstream v1.0 release
|
||||||
|
|
||||||
|
* Fri Apr 01 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc8-1
|
||||||
|
- Upstream v1.0 Release Candidate 8
|
||||||
|
|
||||||
|
* Wed Mar 23 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc7-1
|
||||||
|
- Upstream v1.0 Release Candidate 7
|
||||||
|
- Renamed python3-nvme subpackage to python3-libnvme
|
||||||
|
|
||||||
|
* Mon Mar 14 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc6-1
|
||||||
|
- Upstream v1.0 Release Candidate 6
|
||||||
|
|
||||||
|
* Fri Mar 04 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc5-1
|
||||||
|
- Upstream v1.0 Release Candidate 5
|
||||||
|
|
||||||
|
* Mon Feb 28 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc4-1
|
||||||
|
- Upstream v1.0 Release Candidate 4
|
||||||
|
|
||||||
|
* Fri Feb 11 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc3-1
|
||||||
|
- Upstream v1.0 Release Candidate 3
|
||||||
|
|
||||||
|
* Tue Feb 01 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc2-1
|
||||||
|
- Upstream v1.0 Release Candidate 2
|
||||||
|
|
||||||
|
* Thu Jan 27 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc1-1
|
||||||
|
- Upstream v1.0 Release Candidate 1
|
||||||
|
|
||||||
|
* Mon Jan 17 2022 Tomas Bzatek <tbzatek@redhat.com> - 1.0~rc0-1
|
||||||
|
- Upstream v1.0 Release Candidate 0
|
||||||
|
|
||||||
|
* Wed Oct 20 2021 Tomas Bzatek <tbzatek@redhat.com> - 0.0.1-1.git1fe38d6
|
||||||
|
- Initial packaging
|
||||||
Loading…
Reference in New Issue
Block a user