Compare commits
No commits in common. "c10s" and "c8-stream-rhel" have entirely different histories.
c10s
...
c8-stream-
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,4 +1 @@
|
||||
*.rpm
|
||||
.build*.log
|
||||
/libvirt-dbus-*.tar.gz
|
||||
/libvirt-dbus-*.tar.xz
|
||||
SOURCES/libvirt-dbus-1.3.0.tar.xz
|
||||
|
1
.libvirt-dbus.metadata
Normal file
1
.libvirt-dbus.metadata
Normal file
@ -0,0 +1 @@
|
||||
14e62f4491467874deac075f247a1f1c2db5ca1c SOURCES/libvirt-dbus-1.3.0.tar.xz
|
89
SPECS/libvirt-dbus.spec
Normal file
89
SPECS/libvirt-dbus.spec
Normal file
@ -0,0 +1,89 @@
|
||||
# -*- rpm-spec -*-
|
||||
|
||||
%global glib2_version 2.44.0
|
||||
%global libvirt_version 3.0.0
|
||||
%global libvirt_glib_version 0.0.7
|
||||
%global system_user libvirtdbus
|
||||
|
||||
Name: libvirt-dbus
|
||||
Version: 1.3.0
|
||||
Release: 2%{?dist}%{?extra_release}
|
||||
Summary: libvirt D-Bus API binding
|
||||
License: LGPLv2+
|
||||
URL: https://libvirt.org/
|
||||
Source0: https://libvirt.org/sources/dbus/%{name}-%{version}.tar.xz
|
||||
|
||||
BuildRequires: git
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libtool
|
||||
BuildRequires: glib2-devel >= %{glib2_version}
|
||||
BuildRequires: libvirt-devel >= %{libvirt_version}
|
||||
BuildRequires: libvirt-glib-devel >= %{libvirt_glib_version}
|
||||
BuildRequires: /usr/bin/pod2man
|
||||
|
||||
Requires: dbus
|
||||
Requires: glib2 >= %{glib2_version}
|
||||
Requires: libvirt-libs >= %{libvirt_version}
|
||||
Requires: libvirt-glib >= %{libvirt_glib_version}
|
||||
Requires: polkit
|
||||
|
||||
Requires(pre): shadow-utils
|
||||
|
||||
%description
|
||||
This package provides D-Bus API for libvirt
|
||||
|
||||
%prep
|
||||
%autosetup -S git_am -N
|
||||
|
||||
git config gc.auto 0
|
||||
|
||||
%autopatch
|
||||
|
||||
|
||||
%build
|
||||
%configure
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
%pre
|
||||
getent group %{system_user} >/dev/null || groupadd -r %{system_user}
|
||||
getent passwd %{system_user} >/dev/null || \
|
||||
useradd -r -g %{system_user} -d / -s /sbin/nologin \
|
||||
-c "Libvirt D-Bus bridge" %{system_user}
|
||||
exit 0
|
||||
|
||||
%files
|
||||
%doc README.md HACKING.md AUTHORS NEWS
|
||||
%license COPYING
|
||||
%{_sbindir}/libvirt-dbus
|
||||
%{_datadir}/dbus-1/services/org.libvirt.service
|
||||
%{_datadir}/dbus-1/system-services/org.libvirt.service
|
||||
%{_datadir}/dbus-1/system.d/org.libvirt.conf
|
||||
%{_datadir}/dbus-1/interfaces/org.libvirt.*.xml
|
||||
%{_datadir}/polkit-1/rules.d/libvirt-dbus.rules
|
||||
%{_mandir}/man8/libvirt-dbus.8*
|
||||
|
||||
%changelog
|
||||
* Thu Sep 2 2021 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.3.0-2.el8
|
||||
- Resolves: bz#2000225
|
||||
(Rebase virt:rhel module:stream based on AV-8.6)
|
||||
|
||||
* Mon Apr 27 2020 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.3.0
|
||||
- Resolves: bz#1810193
|
||||
(Upgrade components in virt:rhel module:stream for RHEL-8.3 release)
|
||||
|
||||
* Fri Jun 28 2019 Danilo de Paula <ddepaula@redhat.com> - 1.2.0-3
|
||||
- Rebuild all virt packages to fix RHEL's upgrade path
|
||||
- Resolves: rhbz#1695587
|
||||
(Ensure modular RPM upgrade path)
|
||||
|
||||
* Fri Jan 18 2019 Pavel Hrdina <phrdina@redhat.com> - 1.2.0-2
|
||||
- util: fix virtDBusUtilDecodeUUID (rhbz#1647823)
|
||||
|
||||
* Thu Sep 20 2018 Pavel Hrdina <phrdina@redhat.com> - 1.2.0-1
|
||||
- Rebased to libvirt-dbus-1.2.0 (rhbz#1630196)
|
||||
|
||||
* Thu May 17 2018 Pavel Hrdina <phrdina@redhat.com> - 1.0.0-1
|
||||
- Rebase from Fedora
|
@ -1,6 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
@ -1,149 +0,0 @@
|
||||
# -*- rpm-spec -*-
|
||||
|
||||
%global meson_version 0.49.0
|
||||
%global glib2_version 2.44.0
|
||||
%global libvirt_version 3.1.0
|
||||
%global libvirt_glib_version 0.0.7
|
||||
%global system_user libvirtdbus
|
||||
|
||||
Name: libvirt-dbus
|
||||
Version: 1.4.1
|
||||
Release: 6%{?dist}
|
||||
Summary: libvirt D-Bus API binding
|
||||
License: LGPL-2.1-or-later
|
||||
URL: https://libvirt.org/
|
||||
Source0: https://libvirt.org/sources/dbus/%{name}-%{version}.tar.xz
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: meson >= %{meson_version}
|
||||
BuildRequires: glib2-devel >= %{glib2_version}
|
||||
BuildRequires: libvirt-devel >= %{libvirt_version}
|
||||
BuildRequires: libvirt-glib-devel >= %{libvirt_glib_version}
|
||||
BuildRequires: python3-docutils
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: systemd
|
||||
|
||||
Requires: dbus
|
||||
Requires: glib2 >= %{glib2_version}
|
||||
Requires: libvirt-libs >= %{libvirt_version}
|
||||
Requires: libvirt-glib >= %{libvirt_glib_version}
|
||||
Requires: polkit
|
||||
|
||||
Requires(pre): shadow-utils
|
||||
|
||||
%description
|
||||
This package provides D-Bus API for libvirt
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
%build
|
||||
%meson \
|
||||
-Dinit_script=systemd
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
%pre
|
||||
getent group %{system_user} >/dev/null || groupadd -r %{system_user}
|
||||
getent passwd %{system_user} >/dev/null || \
|
||||
useradd -r -g %{system_user} -d / -s /sbin/nologin \
|
||||
-c "Libvirt D-Bus bridge" %{system_user}
|
||||
exit 0
|
||||
|
||||
%post
|
||||
%systemd_post %{name}.service
|
||||
%systemd_user_post %{name}.service
|
||||
|
||||
%preun
|
||||
%systemd_preun %{name}.service
|
||||
%systemd_user_preun %{name}.service
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart %{name}.service
|
||||
%systemd_user_postun_with_restart %{name}.service
|
||||
|
||||
%files
|
||||
%doc AUTHORS.rst NEWS.rst
|
||||
%license COPYING
|
||||
%{_sbindir}/libvirt-dbus
|
||||
%{_unitdir}/libvirt-dbus.service
|
||||
%{_userunitdir}/libvirt-dbus.service
|
||||
%{_datadir}/dbus-1/services/org.libvirt.service
|
||||
%{_datadir}/dbus-1/system-services/org.libvirt.service
|
||||
%{_datadir}/dbus-1/system.d/org.libvirt.conf
|
||||
%{_datadir}/dbus-1/interfaces/org.libvirt.*.xml
|
||||
%{_datadir}/polkit-1/rules.d/libvirt-dbus.rules
|
||||
%{_mandir}/man8/libvirt-dbus.8*
|
||||
|
||||
%changelog
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.4.1-6
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.4.1-5
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Tue Nov 14 2023 Pavel Hrdina <phrdina@redhat.com> - 1.4.1-2
|
||||
- Synchronize spec file with upstream
|
||||
|
||||
* Mon Oct 30 2023 Ladar Levison <ladar@lavabit.com> - 1.4.1-1
|
||||
- Update to 1.4.1 release
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jun 05 2020 Pavel Hrdina <phrdina@redhat.com> - 1.4.0-1
|
||||
- Update to 1.4.0 release
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Jan 21 2019 Pavel Hrdina <phrdina@redhat.com> - 1.3.0-1
|
||||
- Update to 1.3.0 release
|
||||
|
||||
* Wed Aug 29 2018 Pavel Hrdina <phrdina@redhat.com> - 1.2.0-1
|
||||
- Update to 1.2.0 release
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Jun 28 2018 Pavel Hrdina <phrdina@redhat.com> - 1.1.0-1
|
||||
- Update to 1.1.0 release
|
||||
|
||||
* Thu May 17 2018 Pavel Hrdina <phrdina@redhat.com> - 1.0.0-1
|
||||
- Update to 1.0.0 release
|
||||
|
||||
* Tue Mar 27 2018 Pavel Hrdina <phrdina@redhat.com> - 0.0.1-1
|
||||
- Initial RPM build
|
Loading…
Reference in New Issue
Block a user