automatic version update by autodist [release 3.0.1-1mamba;Tue Oct 05 2021]
This commit is contained in:
parent
e0f51ab68c
commit
fc2c7b39e6
31
libsoup.spec
31
libsoup.spec
@ -1,7 +1,7 @@
|
|||||||
%define apiversion 2.4
|
%define apiversion 3.0
|
||||||
%define majversion %(echo %version | cut -d. -f 1-2)
|
%define majversion %(echo %version | cut -d. -f 1-2)
|
||||||
Name: libsoup
|
Name: libsoup
|
||||||
Version: 2.74.0
|
Version: 3.0.1
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Summary: An HTTP library implementation in C
|
Summary: An HTTP library implementation in C
|
||||||
@ -17,10 +17,10 @@ BuildRequires: glibc-devel
|
|||||||
BuildRequires: libbrotli-devel
|
BuildRequires: libbrotli-devel
|
||||||
BuildRequires: libglib-devel
|
BuildRequires: libglib-devel
|
||||||
BuildRequires: libkrb5-devel
|
BuildRequires: libkrb5-devel
|
||||||
|
BuildRequires: libnghttp2-devel
|
||||||
BuildRequires: libpsl-devel
|
BuildRequires: libpsl-devel
|
||||||
BuildRequires: libsqlite-devel
|
BuildRequires: libsqlite-devel
|
||||||
BuildRequires: libsysprof-devel
|
BuildRequires: libsysprof-devel
|
||||||
BuildRequires: libxml2-devel
|
|
||||||
BuildRequires: libz-devel
|
BuildRequires: libz-devel
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
BuildRequires: glib-networking
|
BuildRequires: glib-networking
|
||||||
@ -52,10 +52,8 @@ Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|||||||
%description devel
|
%description devel
|
||||||
Soup is an HTTP library implementation in C.
|
Soup is an HTTP library implementation in C.
|
||||||
It was originally part of a SOAP (Simple Object Access Protocol) implementation, but the SOAP code was later removed (and then later partially reimplemented...)
|
It was originally part of a SOAP (Simple Object Access Protocol) implementation, but the SOAP code was later removed (and then later partially reimplemented...)
|
||||||
|
|
||||||
Soup uses GObjects and the glib main loop, and is designed to work well with Gtk/GNOME applications.
|
Soup uses GObjects and the glib main loop, and is designed to work well with Gtk/GNOME applications.
|
||||||
This enables GNOME applications to access HTTP servers on the network in a completely asynchronous fashion, very similar to the Gtk+ programming model (a synchronous operation mode is also supported for those who want it).
|
This enables GNOME applications to access HTTP servers on the network in a completely asynchronous fashion, very similar to the Gtk+ programming model (a synchronous operation mode is also supported for those who want it).
|
||||||
|
|
||||||
Soup also contains code to implement an HTTP/1.1 server.
|
Soup also contains code to implement an HTTP/1.1 server.
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
@ -66,7 +64,7 @@ Features:
|
|||||||
* Client support for Digest, NTLM, and Basic authentication
|
* Client support for Digest, NTLM, and Basic authentication
|
||||||
* Server support for Digest and Basic authentication
|
* Server support for Digest and Basic authentication
|
||||||
|
|
||||||
This package contains static libraries and header files need for development.
|
This package contains static libraries and header files needed for development.
|
||||||
|
|
||||||
%package apidocs
|
%package apidocs
|
||||||
Summary: %{name} API documentation
|
Summary: %{name} API documentation
|
||||||
@ -91,7 +89,7 @@ Requires: gtk-doc
|
|||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
%meson_install
|
%meson_install
|
||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name} --all-name
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
@ -101,17 +99,18 @@ Requires: gtk-doc
|
|||||||
|
|
||||||
%files -f %{name}.lang
|
%files -f %{name}.lang
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/libsoup-2.4.so.*
|
%{_libdir}/libsoup-*.so.*
|
||||||
%{_libdir}/libsoup-gnome-2.4.so.*
|
#%{_libdir}/libsoup-gnome-*.so.*
|
||||||
%{_libdir}/girepository-1.0/Soup*-2.4.typelib
|
%{_libdir}/girepository-1.0/Soup*-*.typelib
|
||||||
|
#%{python3_sitearch}/gi/overrides/Soup.py
|
||||||
%doc AUTHORS COPYING
|
%doc AUTHORS COPYING
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_includedir}/libsoup-%{apiversion}/%{name}/*.h
|
%{_includedir}/libsoup-%{apiversion}/%{name}/*.h
|
||||||
%{_includedir}/libsoup-gnome-%{apiversion}/%{name}/*.h
|
#%{_includedir}/libsoup-gnome-%{apiversion}/%{name}/*.h
|
||||||
%{_libdir}/libsoup-2.4.so
|
%{_libdir}/libsoup-*.so
|
||||||
%{_libdir}/libsoup-gnome-2.4.so
|
#%{_libdir}/libsoup-gnome-*.so
|
||||||
%{_datadir}/gir-1.0/Soup*-*.gir
|
%{_datadir}/gir-1.0/Soup*-*.gir
|
||||||
%{_datadir}/vala/vapi/libsoup-*.deps
|
%{_datadir}/vala/vapi/libsoup-*.deps
|
||||||
%{_datadir}/vala/vapi/libsoup-*.vapi
|
%{_datadir}/vala/vapi/libsoup-*.vapi
|
||||||
@ -123,6 +122,12 @@ Requires: gtk-doc
|
|||||||
%{_datadir}/gtk-doc/html/%{name}-%{apiversion}/
|
%{_datadir}/gtk-doc/html/%{name}-%{apiversion}/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 05 2021 Automatic Build System <autodist@mambasoft.it> 3.0.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Sep 29 2021 Automatic Build System <autodist@mambasoft.it> 3.0.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Mon Aug 23 2021 Automatic Build System <autodist@mambasoft.it> 2.74.0-1mamba
|
* Mon Aug 23 2021 Automatic Build System <autodist@mambasoft.it> 2.74.0-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user