RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/umockdev#875e739e8891536d7d78d4ae5236cc2b666891b0
This commit is contained in:
parent
f501fa1feb
commit
410da09b95
17
.gitignore
vendored
17
.gitignore
vendored
@ -0,0 +1,17 @@
|
||||
/umockdev-0.8.8.tar.xz
|
||||
/umockdev-0.8.11.tar.xz
|
||||
/0.8.12.tar.gz
|
||||
/0.8.13.tar.gz
|
||||
/0.9.2.tar.gz
|
||||
/0.10.tar.gz
|
||||
/0.11.tar.gz
|
||||
/0.11.1.tar.gz
|
||||
/0.11.2.tar.gz
|
||||
/0.11.3.tar.gz
|
||||
/0.12.1.tar.gz
|
||||
/0.13.1.tar.gz
|
||||
/0.13.2.tar.gz
|
||||
/0.14.tar.gz
|
||||
/0.14.1.tar.gz
|
||||
/0.14.2.tar.gz
|
||||
/0.14.3.tar.gz
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (0.14.3.tar.gz) = 20d74adcc25617af1ea7c5e3a9c55192635af2c1df2512a19545b2055ac9657dea6c09715c791039e897b562a51fe8d0d30bd247bdb099251f40211fef065d8d
|
184
umockdev.spec
Normal file
184
umockdev.spec
Normal file
@ -0,0 +1,184 @@
|
||||
Name: umockdev
|
||||
Version: 0.14.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Mock hardware devices
|
||||
|
||||
License: LGPLv2+
|
||||
URL: https://github.com/martinpitt/%{name}
|
||||
Source0: https://github.com/martinpitt/%{name}/archive/%{version}.tar.gz
|
||||
|
||||
BuildRequires: autoconf automake libtool
|
||||
BuildRequires: gtk-doc
|
||||
BuildRequires: gobject-introspection-devel
|
||||
BuildRequires: glib2-devel
|
||||
BuildRequires: libgudev1-devel systemd-devel
|
||||
BuildRequires: vala
|
||||
BuildRequires: chrpath
|
||||
# Required for tests
|
||||
BuildRequires: gphoto2
|
||||
BuildRequires: python3
|
||||
|
||||
%description
|
||||
With this program and libraries you can easily create mock udev objects.
|
||||
This is useful for writing tests for software which talks to
|
||||
hardware devices.
|
||||
|
||||
%package devel
|
||||
Summary: Development packages for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains the libraries to develop
|
||||
using %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
%build
|
||||
NOCONFIGURE=1 ./autogen.sh
|
||||
%configure --disable-static --enable-gtk-doc
|
||||
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
||||
|
||||
#nuke the .la file(s)
|
||||
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||
|
||||
# Remove rpath
|
||||
chrpath --delete %{buildroot}%{_bindir}/umockdev-record \
|
||||
%{buildroot}%{_bindir}/umockdev-run
|
||||
chrpath --delete %{buildroot}%{_libdir}/libumockdev.so.*
|
||||
chrpath --delete %{buildroot}%{_libdir}/libumockdev-preload.so.*
|
||||
|
||||
rm -rf $RPM_BUILD_ROOT/%{_datadir}/doc/umockdev
|
||||
|
||||
%check
|
||||
|
||||
# Disabled for now, as the Xorg tests don't pass
|
||||
# https://github.com/martinpitt/umockdev/issues/47
|
||||
# make check
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%doc README.rst
|
||||
%{_bindir}/umockdev-*
|
||||
%{_libdir}/libumockdev.so.*
|
||||
%{_libdir}/libumockdev-preload.so.*
|
||||
%{_libdir}/girepository-1.0/UMockdev-1.0.typelib
|
||||
|
||||
%files devel
|
||||
%doc docs/script-format.txt docs/examples/battery.c docs/examples/battery.py
|
||||
%{_libdir}/libumockdev.so
|
||||
%{_libdir}/pkgconfig/umockdev-1.0.pc
|
||||
%{_datadir}/gir-1.0/UMockdev-1.0.gir
|
||||
%{_includedir}/umockdev-1.0
|
||||
%{_datadir}/gtk-doc/html/umockdev/
|
||||
%{_datadir}/vala/vapi/umockdev-1.0.vapi
|
||||
|
||||
%changelog
|
||||
* Mon Aug 24 2020 Bastien Nocera <bnocera@redhat.com> - 0.14.3-1
|
||||
+ umockdev-0.14.3-1
|
||||
- Update to 0.14.3
|
||||
|
||||
* Fri Jul 31 2020 Bastien Nocera <bnocera@redhat.com> - 0.14.2-1
|
||||
+ umockdev-0.14.2-1
|
||||
- Update to 0.14.2 (#1861973)
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Feb 12 2020 Fedora Release Monitoring <release-monitoring@fedoraproject.org> - 0.14.1-1
|
||||
- Update to 0.14.1 (#1802194)
|
||||
|
||||
* Sun Feb 09 2020 Bastien Nocera <bnocera@redhat.com> - 0.14-1
|
||||
+ umockdev-0.14-1
|
||||
- Fix FTBS (#1800217)
|
||||
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Mon Sep 02 2019 Bastien Nocera <bnocera@redhat.com> - 0.13.2-1
|
||||
+ umockdev-0.13.2-1
|
||||
- Update to 0.13.2 (#1747088)
|
||||
|
||||
* Mon Aug 19 2019 Bastien Nocera <bnocera@redhat.com> - 0.13.1-1
|
||||
+ umockdev-0.13.1-1
|
||||
- Update to 0.13.1 (#1742178)
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Wed May 29 2019 Christian Kellner <ckellner@redhat.com> - 0.12.1-1
|
||||
- Update to umockdev-0.12.1
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jun 06 2018 Bastien Nocera <bnocera@redhat.com> - 0.11.3-1
|
||||
+ umockdev-0.11.3-1
|
||||
- Update to 0.11.3 (#1550306)
|
||||
|
||||
* Wed Mar 28 2018 Bastien Nocera <bnocera@redhat.com> - 0.11.2-1
|
||||
+ umockdev-0.11.2-1
|
||||
- Update to 0.11.2 (#1550306)
|
||||
|
||||
* Thu Mar 01 2018 Bastien Nocera <bnocera@redhat.com> - 0.11.1-1
|
||||
+ umockdev-0.11.1-1
|
||||
- Update to 0.11.1
|
||||
|
||||
* Mon Feb 12 2018 Bastien Nocera <bnocera@redhat.com> - 0.11-1
|
||||
+ umockdev-0.11-1
|
||||
- Update to 0.11 (#1544128)
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Jan 08 2018 Fedora Release Monitoring <release-monitoring@fedoraproject.org> - 0.10-1
|
||||
- Update to 0.10 (#1490889)
|
||||
|
||||
* Thu Aug 10 2017 Bastien Nocera <bnocera@redhat.com> - 0.9.2-1
|
||||
- Update to 0.9.2
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.13-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.13-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.13-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Jan 26 2017 Bastien Nocera <bnocera@redhat.com> - 0.8.13-1
|
||||
+ umockdev-0.8.13-1
|
||||
- Update to 0.8.13
|
||||
|
||||
* Tue Jan 24 2017 Bastien Nocera <bnocera@redhat.com> - 0.8.12-1
|
||||
+ umockdev-0.8.12-1
|
||||
- Update to 0.8.12
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.11-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Wed Sep 23 2015 Bastien Nocera <bnocera@redhat.com> 0.8.11-1
|
||||
- Update to 0.8.11
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.8-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Wed Apr 29 2015 Bastien Nocera <bnocera@redhat.com> 0.8.8-3
|
||||
- Fix license/doc mixup
|
||||
- Add isa to Requires
|
||||
|
||||
* Wed Apr 29 2015 Bastien Nocera <bnocera@redhat.com> 0.8.8-2
|
||||
- Review comments
|
||||
|
||||
* Mon Apr 27 2015 Bastien Nocera <bnocera@redhat.com> 0.8.8-1
|
||||
- Initial package for Fedora
|
Loading…
Reference in New Issue
Block a user