forked from pool/libverto
Accepting request 829946 from network
- 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/request/show/829946 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libverto?expand=0&rev=8
This commit is contained in:
commit
c2106736e7
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:17eca6a3855f4884e2e7095e91501767d834b3bf313a6f59a93303f54ac91c9e
|
||||
size 352690
|
3
libverto-0.3.1.tar.gz
Normal file
3
libverto-0.3.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:983817c6bc0af6fa3731da2653e6371f6e1a56b4489ee44b3172e918574c50ea
|
||||
size 383390
|
@ -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
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libverto-glib
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -12,21 +12,22 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define sover 1
|
||||
%define src_name libverto
|
||||
Name: libverto-glib
|
||||
Version: 0.2.6
|
||||
Version: 0.3.1
|
||||
Release: 0
|
||||
Summary: Main loop abstraction library
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://fedorahosted.org/libverto
|
||||
Source: http://fedorahosted.org/releases/l/i/%{src_name}/%{src_name}-%{version}.tar.gz
|
||||
URL: https://github.com/latchset/libverto
|
||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(libverto) = %{version}
|
||||
|
||||
@ -69,7 +70,7 @@ for developing applications that use libverto-glib.
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
@ -82,15 +83,12 @@ rm -rf %{buildroot}/%{_libdir}/%{src_name}.so*
|
||||
rm -rf %{buildroot}/%{_libdir}/pkgconfig/%{src_name}.pc
|
||||
|
||||
%post -n %{src_name}-glib%{sover} -p /sbin/ldconfig
|
||||
|
||||
%postun -n %{src_name}-glib%{sover} -p /sbin/ldconfig
|
||||
|
||||
%files -n %{src_name}-glib%{sover}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/%{src_name}-glib.so.*
|
||||
|
||||
%files -n %{src_name}-glib-devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/verto-glib.h
|
||||
%{_libdir}/%{src_name}-glib.so
|
||||
%{_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
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libverto-libev
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -12,21 +12,22 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define sover 1
|
||||
%define src_name libverto
|
||||
Name: libverto-libev
|
||||
Version: 0.2.6
|
||||
Version: 0.3.1
|
||||
Release: 0
|
||||
Summary: Main loop abstraction library
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://fedorahosted.org/libverto
|
||||
Source: http://fedorahosted.org/releases/l/i/%{src_name}/%{src_name}-%{version}.tar.gz
|
||||
URL: https://github.com/latchset/libverto
|
||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(libev)
|
||||
BuildRequires: pkgconfig(libverto) = %{version}
|
||||
|
||||
@ -71,7 +72,7 @@ files for developing applications that use libverto-libev.
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
@ -84,15 +85,12 @@ rm -rf %{buildroot}/%{_libdir}/%{src_name}.so*
|
||||
rm -rf %{buildroot}/%{_libdir}/pkgconfig/%{src_name}.pc
|
||||
|
||||
%post -n %{src_name}-libev%{sover} -p /sbin/ldconfig
|
||||
|
||||
%postun -n %{src_name}-libev%{sover} -p /sbin/ldconfig
|
||||
|
||||
%files -n %{src_name}-libev%{sover}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/%{src_name}-libev.so.*
|
||||
|
||||
%files -n %{src_name}-libev-devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/verto-libev.h
|
||||
%{_libdir}/%{src_name}-libev.so
|
||||
%{_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
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libverto-tevent
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -12,21 +12,22 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define sover 1
|
||||
%define src_name libverto
|
||||
Name: libverto-tevent
|
||||
Version: 0.2.6
|
||||
Version: 0.3.1
|
||||
Release: 0
|
||||
Summary: Main loop abstraction library
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://fedorahosted.org/libverto
|
||||
Source: http://fedorahosted.org/releases/l/i/%{src_name}/%{src_name}-%{version}.tar.gz
|
||||
URL: https://github.com/latchset/libverto
|
||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(libverto) = %{version}
|
||||
BuildRequires: pkgconfig(tevent)
|
||||
|
||||
@ -71,7 +72,7 @@ files for developing applications that use libverto-tevent.
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
@ -84,15 +85,12 @@ rm -rf %{buildroot}/%{_libdir}/%{src_name}.so*
|
||||
rm -rf %{buildroot}/%{_libdir}/pkgconfig/%{src_name}.pc
|
||||
|
||||
%post -n %{src_name}-tevent%{sover} -p /sbin/ldconfig
|
||||
|
||||
%postun -n %{src_name}-tevent%{sover} -p /sbin/ldconfig
|
||||
|
||||
%files -n %{src_name}-tevent%{sover}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/%{src_name}-tevent.so.*
|
||||
|
||||
%files -n %{src_name}-tevent-devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/verto-tevent.h
|
||||
%{_libdir}/%{src_name}-tevent.so
|
||||
%{_libdir}/pkgconfig/%{src_name}-tevent.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
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 22 15:14:25 UTC 2018 - fvogt@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libverto
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -12,21 +12,21 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define sover 1
|
||||
Name: libverto
|
||||
Version: 0.2.6
|
||||
Version: 0.3.1
|
||||
Release: 0
|
||||
Summary: Main loop abstraction library
|
||||
License: MIT
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://fedorahosted.org/libverto
|
||||
Source: http://fedorahosted.org/releases/l/i/%{name}/%{name}-%{version}.tar.gz
|
||||
URL: https://github.com/latchset/libverto
|
||||
Source: https://github.com/latchset/libverto/releases/download/%{version}/libverto-%{version}.tar.gz
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: pkgconfig
|
||||
|
||||
%description
|
||||
libverto provides a way for libraries to expose asynchronous
|
||||
@ -74,7 +74,7 @@ for developing applications that use libverto.
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
@ -82,17 +82,14 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
||||
find %{buildroot} -name '*.so.*T' -delete
|
||||
|
||||
%post -n libverto%{sover} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libverto%{sover} -p /sbin/ldconfig
|
||||
|
||||
%files -n libverto%{sover}
|
||||
%defattr(-,root,root)
|
||||
%license COPYING
|
||||
%doc AUTHORS ChangeLog NEWS README
|
||||
%{_libdir}/%{name}.so.*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/verto.h
|
||||
%{_includedir}/verto-module.h
|
||||
%{_libdir}/%{name}.so
|
||||
|
Loading…
Reference in New Issue
Block a user