forked from pool/libverto
- update to 0.3.1:
* Fix rare leak of DSO in module_load * Turn off -Wcast-function-type * Work around libev not being c89-compliant * Minor release bumps for verto_cleanup() * Leak fixes * Enforce strict c89 compliance for portability * Many warning fixes * Fix memleak in libverto:vfree * Update mutex usage to improve debugging * Add verto_cleanup() to free loaded_modules * Make C99 requirement explicit - update to 0.3.1: * Fix rare leak of DSO in module_load * Turn off -Wcast-function-type * Work around libev not being c89-compliant * Minor release bumps for verto_cleanup() * Leak fixes * Enforce strict c89 compliance for portability * Many warning fixes * Fix memleak in libverto:vfree * Update mutex usage to improve debugging * Add verto_cleanup() to free loaded_modules * Make C99 requirement explicit - update to 0.3.1: * Fix rare leak of DSO in module_load * Turn off -Wcast-function-type * Work around libev not being c89-compliant OBS-URL: https://build.opensuse.org/package/show/network/libverto?expand=0&rev=18
This commit is contained in:
parent
a10691cc7e
commit
7e6ba802d4
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 27 10:00:33 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.3.1:
|
||||||
|
* Fix rare leak of DSO in module_load
|
||||||
|
* Turn off -Wcast-function-type
|
||||||
|
* Work around libev not being c89-compliant
|
||||||
|
* Minor release bumps for verto_cleanup()
|
||||||
|
* Leak fixes
|
||||||
|
* Enforce strict c89 compliance for portability
|
||||||
|
* Many warning fixes
|
||||||
|
* Fix memleak in libverto:vfree
|
||||||
|
* Update mutex usage to improve debugging
|
||||||
|
* Add verto_cleanup() to free loaded_modules
|
||||||
|
* Make C99 requirement explicit
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 6 13:42:00 UTC 2017 - hguo@suse.com
|
Tue Jun 6 13:42:00 UTC 2017 - hguo@suse.com
|
||||||
|
|
||||||
|
@ -27,6 +27,7 @@ Group: Development/Libraries/C and C++
|
|||||||
URL: https://github.com/latchset/libverto
|
URL: https://github.com/latchset/libverto
|
||||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: pkgconfig(glib-2.0)
|
BuildRequires: pkgconfig(glib-2.0)
|
||||||
BuildRequires: pkgconfig(libverto) = %{version}
|
BuildRequires: pkgconfig(libverto) = %{version}
|
||||||
|
|
||||||
@ -69,7 +70,7 @@ for developing applications that use libverto-glib.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
@ -82,15 +83,12 @@ rm -rf %{buildroot}/%{_libdir}/%{src_name}.so*
|
|||||||
rm -rf %{buildroot}/%{_libdir}/pkgconfig/%{src_name}.pc
|
rm -rf %{buildroot}/%{_libdir}/pkgconfig/%{src_name}.pc
|
||||||
|
|
||||||
%post -n %{src_name}-glib%{sover} -p /sbin/ldconfig
|
%post -n %{src_name}-glib%{sover} -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n %{src_name}-glib%{sover} -p /sbin/ldconfig
|
%postun -n %{src_name}-glib%{sover} -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n %{src_name}-glib%{sover}
|
%files -n %{src_name}-glib%{sover}
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_libdir}/%{src_name}-glib.so.*
|
%{_libdir}/%{src_name}-glib.so.*
|
||||||
|
|
||||||
%files -n %{src_name}-glib-devel
|
%files -n %{src_name}-glib-devel
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_includedir}/verto-glib.h
|
%{_includedir}/verto-glib.h
|
||||||
%{_libdir}/%{src_name}-glib.so
|
%{_libdir}/%{src_name}-glib.so
|
||||||
%{_libdir}/pkgconfig/%{src_name}-glib.pc
|
%{_libdir}/pkgconfig/%{src_name}-glib.pc
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 27 10:00:33 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.3.1:
|
||||||
|
* Fix rare leak of DSO in module_load
|
||||||
|
* Turn off -Wcast-function-type
|
||||||
|
* Work around libev not being c89-compliant
|
||||||
|
* Minor release bumps for verto_cleanup()
|
||||||
|
* Leak fixes
|
||||||
|
* Enforce strict c89 compliance for portability
|
||||||
|
* Many warning fixes
|
||||||
|
* Fix memleak in libverto:vfree
|
||||||
|
* Update mutex usage to improve debugging
|
||||||
|
* Add verto_cleanup() to free loaded_modules
|
||||||
|
* Make C99 requirement explicit
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 6 13:42:00 UTC 2017 - hguo@suse.com
|
Tue Jun 6 13:42:00 UTC 2017 - hguo@suse.com
|
||||||
|
|
||||||
|
@ -27,6 +27,7 @@ Group: Development/Libraries/C and C++
|
|||||||
URL: https://github.com/latchset/libverto
|
URL: https://github.com/latchset/libverto
|
||||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: pkgconfig(libev)
|
BuildRequires: pkgconfig(libev)
|
||||||
BuildRequires: pkgconfig(libverto) = %{version}
|
BuildRequires: pkgconfig(libverto) = %{version}
|
||||||
|
|
||||||
@ -71,7 +72,7 @@ files for developing applications that use libverto-libev.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
@ -84,15 +85,12 @@ rm -rf %{buildroot}/%{_libdir}/%{src_name}.so*
|
|||||||
rm -rf %{buildroot}/%{_libdir}/pkgconfig/%{src_name}.pc
|
rm -rf %{buildroot}/%{_libdir}/pkgconfig/%{src_name}.pc
|
||||||
|
|
||||||
%post -n %{src_name}-libev%{sover} -p /sbin/ldconfig
|
%post -n %{src_name}-libev%{sover} -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n %{src_name}-libev%{sover} -p /sbin/ldconfig
|
%postun -n %{src_name}-libev%{sover} -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n %{src_name}-libev%{sover}
|
%files -n %{src_name}-libev%{sover}
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_libdir}/%{src_name}-libev.so.*
|
%{_libdir}/%{src_name}-libev.so.*
|
||||||
|
|
||||||
%files -n %{src_name}-libev-devel
|
%files -n %{src_name}-libev-devel
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_includedir}/verto-libev.h
|
%{_includedir}/verto-libev.h
|
||||||
%{_libdir}/%{src_name}-libev.so
|
%{_libdir}/%{src_name}-libev.so
|
||||||
%{_libdir}/pkgconfig/%{src_name}-libev.pc
|
%{_libdir}/pkgconfig/%{src_name}-libev.pc
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 27 10:00:33 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.3.1:
|
||||||
|
* Fix rare leak of DSO in module_load
|
||||||
|
* Turn off -Wcast-function-type
|
||||||
|
* Work around libev not being c89-compliant
|
||||||
|
* Minor release bumps for verto_cleanup()
|
||||||
|
* Leak fixes
|
||||||
|
* Enforce strict c89 compliance for portability
|
||||||
|
* Many warning fixes
|
||||||
|
* Fix memleak in libverto:vfree
|
||||||
|
* Update mutex usage to improve debugging
|
||||||
|
* Add verto_cleanup() to free loaded_modules
|
||||||
|
* Make C99 requirement explicit
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 6 13:42:00 UTC 2017 - hguo@suse.com
|
Tue Jun 6 13:42:00 UTC 2017 - hguo@suse.com
|
||||||
|
|
||||||
|
@ -27,6 +27,7 @@ Group: Development/Libraries/C and C++
|
|||||||
URL: https://github.com/latchset/libverto
|
URL: https://github.com/latchset/libverto
|
||||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||||
Source1: baselibs.conf
|
Source1: baselibs.conf
|
||||||
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: pkgconfig(libverto) = %{version}
|
BuildRequires: pkgconfig(libverto) = %{version}
|
||||||
BuildRequires: pkgconfig(tevent)
|
BuildRequires: pkgconfig(tevent)
|
||||||
|
|
||||||
@ -71,7 +72,7 @@ files for developing applications that use libverto-tevent.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
@ -84,15 +85,12 @@ rm -rf %{buildroot}/%{_libdir}/%{src_name}.so*
|
|||||||
rm -rf %{buildroot}/%{_libdir}/pkgconfig/%{src_name}.pc
|
rm -rf %{buildroot}/%{_libdir}/pkgconfig/%{src_name}.pc
|
||||||
|
|
||||||
%post -n %{src_name}-tevent%{sover} -p /sbin/ldconfig
|
%post -n %{src_name}-tevent%{sover} -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n %{src_name}-tevent%{sover} -p /sbin/ldconfig
|
%postun -n %{src_name}-tevent%{sover} -p /sbin/ldconfig
|
||||||
|
|
||||||
%files -n %{src_name}-tevent%{sover}
|
%files -n %{src_name}-tevent%{sover}
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_libdir}/%{src_name}-tevent.so.*
|
%{_libdir}/%{src_name}-tevent.so.*
|
||||||
|
|
||||||
%files -n %{src_name}-tevent-devel
|
%files -n %{src_name}-tevent-devel
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_includedir}/verto-tevent.h
|
%{_includedir}/verto-tevent.h
|
||||||
%{_libdir}/%{src_name}-tevent.so
|
%{_libdir}/%{src_name}-tevent.so
|
||||||
%{_libdir}/pkgconfig/%{src_name}-tevent.pc
|
%{_libdir}/pkgconfig/%{src_name}-tevent.pc
|
||||||
|
Loading…
Reference in New Issue
Block a user