Compare commits
26 Commits
0.12-1mamb
...
0.18.3-1ma
Author | SHA1 | Date | |
---|---|---|---|
e503664b43 | |||
9470e5bad8 | |||
d1381562e1 | |||
fa7155e378 | |||
6f31f8a037 | |||
148f2725a1 | |||
c34b8774b2 | |||
1944cfc39a | |||
a3a50e6457 | |||
297378fc73 | |||
b2127f37c9 | |||
fd7a6d9639 | |||
e0fd8d510b | |||
a0da2cf94d | |||
047e780e3b | |||
0e9494c67b | |||
dbf7c12b84 | |||
57aca32daa | |||
fcfe7ddf1d | |||
bc55eb6b17 | |||
3507920654 | |||
dbaa7ab534 | |||
2deb8b5ada | |||
a04d763133 | |||
d121704c2b | |||
ec713122f0 |
109
umockdev.spec
109
umockdev.spec
@ -1,5 +1,5 @@
|
|||||||
Name: umockdev
|
Name: umockdev
|
||||||
Version: 0.12
|
Version: 0.18.3
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: Mock hardware devices for creating unit tests and bug reporting
|
Summary: Mock hardware devices for creating unit tests and bug reporting
|
||||||
Group: System/Kernel and Hardware
|
Group: System/Kernel and Hardware
|
||||||
@ -7,27 +7,16 @@ Vendor: openmamba
|
|||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: https://launchpad.net/umockdev
|
URL: https://launchpad.net/umockdev
|
||||||
## GITSOURCE https://github.com/martinpitt/umockdev.git 0.9.4
|
|
||||||
Source: https://github.com/martinpitt/umockdev.git/%{version}/umockdev-%{version}.tar.bz2
|
Source: https://github.com/martinpitt/umockdev.git/%{version}/umockdev-%{version}.tar.bz2
|
||||||
License: LGPL
|
License: LGPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: libblkid-devel
|
|
||||||
BuildRequires: libcap-devel
|
|
||||||
BuildRequires: libdw-devel
|
|
||||||
BuildRequires: libffi-devel
|
|
||||||
BuildRequires: libglib-devel
|
BuildRequires: libglib-devel
|
||||||
BuildRequires: libgudev-devel
|
BuildRequires: libpcap-devel
|
||||||
BuildRequires: libmount-devel
|
|
||||||
BuildRequires: libpcre-devel
|
|
||||||
BuildRequires: libselinux-devel
|
BuildRequires: libselinux-devel
|
||||||
BuildRequires: libsepol-devel
|
|
||||||
BuildRequires: libudev-devel
|
BuildRequires: libudev-devel
|
||||||
BuildRequires: libuuid-devel
|
|
||||||
BuildRequires: libz-devel
|
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Mock hardware devices for creating unit tests and bug reporting.
|
Mock hardware devices for creating unit tests and bug reporting.
|
||||||
@ -53,17 +42,16 @@ This package contains libraries and header files for developing applications tha
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
echo %{version} > .version
|
||||||
|
|
||||||
%build
|
%build
|
||||||
./autogen.sh
|
%meson
|
||||||
%configure \
|
|
||||||
--disable-static
|
|
||||||
|
|
||||||
%make
|
%meson_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
%makeinstall
|
%meson_install
|
||||||
|
|
||||||
rm -f %{buildroot}%{_libdir}/libumockdev.la
|
rm -f %{buildroot}%{_libdir}/libumockdev.la
|
||||||
|
|
||||||
@ -91,14 +79,93 @@ rm -f %{buildroot}%{_libdir}/libumockdev.la
|
|||||||
%dir %{_includedir}/umockdev-1.0
|
%dir %{_includedir}/umockdev-1.0
|
||||||
%{_includedir}/umockdev-1.0/*
|
%{_includedir}/umockdev-1.0/*
|
||||||
%{_libdir}/libumockdev.so
|
%{_libdir}/libumockdev.so
|
||||||
|
%{_libdir}/libumockdev-preload.so
|
||||||
%{_libdir}/pkgconfig/umockdev-1.0.pc
|
%{_libdir}/pkgconfig/umockdev-1.0.pc
|
||||||
%dir %{_datadir}/doc/umockdev
|
#%dir %{_datadir}/doc/umockdev
|
||||||
%{_datadir}/doc/umockdev/*
|
#%{_datadir}/doc/umockdev/*
|
||||||
%{_datadir}/gir-1.0/UMockdev-1.0.gir
|
%{_datadir}/gir-1.0/UMockdev-1.0.gir
|
||||||
%{_datadir}/vala/vapi/umockdev-1.0.vapi
|
%{_datadir}/vala/vapi/umockdev-1.0.vapi
|
||||||
%doc NEWS README.rst
|
%doc NEWS
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jul 29 2024 Automatic Build System <autodist@openmamba.org> 0.18.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue May 31 2022 Automatic Build System <autodist@mambasoft.it> 0.17.13-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri May 20 2022 Automatic Build System <autodist@mambasoft.it> 0.17.12-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed May 11 2022 Automatic Build System <autodist@mambasoft.it> 0.17.10-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Apr 12 2022 Automatic Build System <autodist@mambasoft.it> 0.17.9-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Mar 24 2022 Automatic Build System <autodist@mambasoft.it> 0.17.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Mar 03 2022 Automatic Build System <autodist@mambasoft.it> 0.17.7-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Jan 23 2022 Automatic Build System <autodist@mambasoft.it> 0.17.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Automatic Build System <autodist@mambasoft.it> 0.17.5-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Jan 11 2022 Automatic Build System <autodist@mambasoft.it> 0.17.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Jan 11 2022 Automatic Build System <autodist@mambasoft.it> 0.17.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Dec 15 2021 Automatic Build System <autodist@mambasoft.it> 0.17.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Dec 12 2021 Automatic Build System <autodist@mambasoft.it> 0.17.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Sep 15 2021 Automatic Build System <autodist@mambasoft.it> 0.16.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Aug 26 2021 Automatic Build System <autodist@mambasoft.it> 0.16.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Jul 14 2021 Automatic Build System <autodist@mambasoft.it> 0.16.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue May 04 2021 Automatic Build System <autodist@mambasoft.it> 0.15.5-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Jan 06 2021 Automatic Build System <autodist@mambasoft.it> 0.15.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Dec 27 2020 Automatic Build System <autodist@mambasoft.it> 0.15.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Nov 25 2020 Automatic Build System <autodist@mambasoft.it> 0.15.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Nov 19 2020 Automatic Build System <autodist@mambasoft.it> 0.15.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Oct 25 2020 Automatic Build System <autodist@mambasoft.it> 0.14.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Aug 23 2020 Automatic Build System <autodist@mambasoft.it> 0.14.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Aug 22 2020 Automatic Build System <autodist@mambasoft.it> 0.14.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Mar 11 2020 Automatic Build System <autodist@mambasoft.it> 0.14.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Feb 17 2019 Automatic Build System <autodist@mambasoft.it> 0.12.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Tue Sep 25 2018 Automatic Build System <autodist@mambasoft.it> 0.12-1mamba
|
* Tue Sep 25 2018 Automatic Build System <autodist@mambasoft.it> 0.12-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user