New upstream release
This commit is contained in:
parent
e6ad7c9dc9
commit
28a7f11252
1
.gitignore
vendored
1
.gitignore
vendored
@ -23,3 +23,4 @@
|
|||||||
/fwupd-0.8.0.tar.xz
|
/fwupd-0.8.0.tar.xz
|
||||||
/fwupd-0.8.1.tar.xz
|
/fwupd-0.8.1.tar.xz
|
||||||
/fwupd-0.8.2.tar.xz
|
/fwupd-0.8.2.tar.xz
|
||||||
|
/fwupd-0.9.2.tar.xz
|
||||||
|
49
fwupd.spec
49
fwupd.spec
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
Summary: Firmware update daemon
|
Summary: Firmware update daemon
|
||||||
Name: fwupd
|
Name: fwupd
|
||||||
Version: 0.8.2
|
Version: 0.9.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: https://github.com/hughsie/fwupd
|
URL: https://github.com/hughsie/fwupd
|
||||||
@ -23,7 +23,6 @@ Source0: http://people.freedesktop.org/~hughsient/releases/%{name}-%{version}.
|
|||||||
BuildRequires: docbook-utils
|
BuildRequires: docbook-utils
|
||||||
BuildRequires: gettext
|
BuildRequires: gettext
|
||||||
BuildRequires: glib2-devel >= %{glib2_version}
|
BuildRequires: glib2-devel >= %{glib2_version}
|
||||||
BuildRequires: intltool
|
|
||||||
BuildRequires: libappstream-glib-devel >= %{libappstream_version}
|
BuildRequires: libappstream-glib-devel >= %{libappstream_version}
|
||||||
BuildRequires: libgudev1-devel
|
BuildRequires: libgudev1-devel
|
||||||
BuildRequires: libgusb-devel >= %{libgusb_version}
|
BuildRequires: libgusb-devel >= %{libgusb_version}
|
||||||
@ -91,42 +90,33 @@ Files for development with libdfu.
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
|
||||||
--disable-static \
|
%meson \
|
||||||
--disable-thunderbolt \
|
-Denable-tests=false \
|
||||||
--enable-gtk-doc \
|
-Denable-thunderbolt=false \
|
||||||
--enable-colorhug \
|
|
||||||
%if 0%{?have_uefi}
|
%if 0%{?have_uefi}
|
||||||
--enable-uefi \
|
-Denable-uefi=true \
|
||||||
%else
|
%else
|
||||||
--disable-uefi \
|
-Denable-uefi=false \
|
||||||
%endif
|
%endif
|
||||||
%if 0%{?have_smbios}
|
%if 0%{?have_smbios}
|
||||||
--enable-dell \
|
-Denable-dell=true \
|
||||||
--enable-synaptics \
|
-Denable-synaptics=true \
|
||||||
%else
|
%else
|
||||||
--disable-dell \
|
-Denable-packdellagekit=false \
|
||||||
--disable-synaptics \
|
-Denable-synaptics=false \
|
||||||
%endif
|
%endif
|
||||||
--disable-rpath \
|
-Denable-colorhug=true
|
||||||
--disable-silent-rules \
|
|
||||||
--disable-dependency-tracking
|
|
||||||
|
|
||||||
make %{?_smp_mflags}
|
%meson_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
%meson_install
|
||||||
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
|
||||||
mkdir --mode=0700 $RPM_BUILD_ROOT%{_localstatedir}/lib/fwupd/gnupg
|
|
||||||
|
|
||||||
# not ready for primetime yet
|
mkdir -p --mode=0700 $RPM_BUILD_ROOT%{_localstatedir}/lib/fwupd/gnupg
|
||||||
rm -f %{buildroot}%{_libdir}/fwupd-plugins-2/libfu_plugin_unifying.so
|
|
||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
%check
|
|
||||||
# make check VERBOSE=1
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
%systemd_post fwupd.service
|
%systemd_post fwupd.service
|
||||||
@ -182,7 +172,7 @@ rm -f %{buildroot}%{_libdir}/fwupd-plugins-2/libfu_plugin_unifying.so
|
|||||||
%if 0%{?have_uefi}
|
%if 0%{?have_uefi}
|
||||||
%{_libdir}/fwupd-plugins-2/libfu_plugin_uefi.so
|
%{_libdir}/fwupd-plugins-2/libfu_plugin_uefi.so
|
||||||
%endif
|
%endif
|
||||||
#%{_libdir}/fwupd-plugins-2/libfu_plugin_unifying.so
|
%{_libdir}/fwupd-plugins-2/libfu_plugin_unifying.so
|
||||||
%{_libdir}/fwupd-plugins-2/libfu_plugin_upower.so
|
%{_libdir}/fwupd-plugins-2/libfu_plugin_upower.so
|
||||||
%{_libdir}/fwupd-plugins-2/libfu_plugin_usb.so
|
%{_libdir}/fwupd-plugins-2/libfu_plugin_usb.so
|
||||||
%ghost %{_localstatedir}/lib/fwupd/gnupg
|
%ghost %{_localstatedir}/lib/fwupd/gnupg
|
||||||
@ -210,6 +200,13 @@ rm -f %{buildroot}%{_libdir}/fwupd-plugins-2/libfu_plugin_unifying.so
|
|||||||
%{_libdir}/pkgconfig/dfu.pc
|
%{_libdir}/pkgconfig/dfu.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon May 22 2017 Richard Hughes <richard@hughsie.com> 0.9.2-1
|
||||||
|
- New upstream release
|
||||||
|
- Add support for Unifying DFU features
|
||||||
|
- Do not spew a critial warning when parsing an invalid URI
|
||||||
|
- Ensure steelseries device is closed if it returns an invalid packet
|
||||||
|
- Ignore spaces in the Unifying version prefix
|
||||||
|
|
||||||
* Thu Apr 20 2017 Richard Hughes <richard@hughsie.com> 0.8.2-1
|
* Thu Apr 20 2017 Richard Hughes <richard@hughsie.com> 0.8.2-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
- Add a config option to allow runtime disabling plugins by name
|
- Add a config option to allow runtime disabling plugins by name
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (fwupd-0.8.2.tar.xz) = a0c19f7c3fb00a1f946cf2b2712b6c00a705146316efd5b4d6e33e36920312114d34a5850b0f152bfa50905b96768f30163c389baf0cd28bcee2aaa7d672c3ca
|
SHA512 (fwupd-0.9.2.tar.xz) = 9cca2e152536e13c0d702e44582d5e7bfdd1d3b0a363dc18769f95477975b785424c3774b960aa3e50e9e1fdcf5330e6ddc5c3e27738460328d49c83145229b9
|
||||||
|
Loading…
Reference in New Issue
Block a user