4 Commits

Author SHA256 Message Date
55291f670c Accepting request 1307550 from devel:libraries:c_c++
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1307550
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gensio?expand=0&rev=26
2025-09-29 14:32:21 +00:00
916409d1fb Accepting request 1306278 from home:mnhauke
- Update to version 3.0.0
  * The deprecated sergensio code has been removed.
  * ser2net, the rust and go interfaces have all had that removed
    for a while and hopefully any other users have removed it.
  * Minor bug fixes, some documentation improvements, some minor
    improvements
  * Bug fix around ax25 where it was reporting the close of the
    last channel too soon.
- Update to version 2.8.15
  * https://github.com/cminyard/gensio/compare/v2.8.10...v2.8.15
- Use %ldconfig_scriptlets macro

OBS-URL: https://build.opensuse.org/request/show/1306278
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/gensio?expand=0&rev=49
2025-09-21 08:59:01 +00:00
39dc5f4544 Accepting request 1229928 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1229928
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gensio?expand=0&rev=25
2024-12-11 20:03:40 +00:00
f79591d9ad - Update to version 2.8.10
* https://github.com/cminyard/gensio/compare/v2.8.2...v2.8.10

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/gensio?expand=0&rev=47
2024-12-10 21:08:22 +00:00
4 changed files with 49 additions and 22 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5cac546afd3106abdfb3eaba6c7b9eae1015fa2e93d994bd9537fff33fa413dc
size 886620

3
gensio-3.0.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f44d7a94abc1a9407bf8ee8544f4c2e9347d22924d78a480c876213c1951284d
size 3761940

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Sun Sep 21 07:26:20 UTC 2025 - Martin Hauke <mardnh@gmx.de>
- Update to version 3.0.0
* The deprecated sergensio code has been removed.
* ser2net, the rust and go interfaces have all had that removed
for a while and hopefully any other users have removed it.
* Minor bug fixes, some documentation improvements, some minor
improvements
* Bug fix around ax25 where it was reporting the close of the
last channel too soon.
- Update to version 2.8.15
* https://github.com/cminyard/gensio/compare/v2.8.10...v2.8.15
- Use %ldconfig_scriptlets macro
-------------------------------------------------------------------
Fri Dec 6 19:40:53 UTC 2024 - Martin Hauke <mardnh@gmx.de>
- Update to version 2.8.10
* https://github.com/cminyard/gensio/compare/v2.8.2...v2.8.10
-------------------------------------------------------------------
Wed Dec 27 21:47:46 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,8 +1,8 @@
#
# spec file for package gensio
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2020-2023, Martin Hauke <mardnh@gmx.de>
# Copyright (c) 2025 SUSE LLC and contributors
# Copyright (c) 2020-2025, Martin Hauke <mardnh@gmx.de>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,9 +17,9 @@
#
%global sover 6
%global sover_cpp 6
%global libname libgensio6
%global sover 14
%global sover_cpp 14
%global libname libgensio14
%global libname_cpp libgensiocpp%{sover_cpp}
%if 0%{?suse_version} > 1500
%bcond_without openipmi
@@ -27,7 +27,7 @@
%bcond_with openipmi
%endif
Name: gensio
Version: 2.8.2
Version: 3.0.0
Release: 0
Summary: Library to abstract stream and packet I/O
# examples/* is licenced under Apache-2.0
@@ -92,6 +92,14 @@ Group: System/Libraries
This is gensio (pronounced gen'-see-oh), a framework for giving a
consistent view of various stream (and packet) I/O types - mdns support
%package -n libgensio_openipmi_oshandler%{sover}
Summary: Library to abstract stream and packet I/O
Group: System/Libraries
%description -n libgensio_openipmi_oshandler%{sover}
This is gensio (pronounced gen'-see-oh), a framework for giving a
consistent view of various stream (and packet) I/O types - ipmi support
%package -n libgensio_python_swig%{sover}
Summary: Library to abstract stream and packet I/O
Group: System/Libraries
@@ -154,7 +162,6 @@ abscration.
%setup -q
%build
export CFLAGS="%optflags -fcommon"
autoreconf -fiv
%configure --disable-static
%make_build
@@ -163,20 +170,17 @@ autoreconf -fiv
%make_install
find %{buildroot} -type f -name "*.la" -delete -print
%post -n %{libname} -p /sbin/ldconfig
%postun -n %{libname} -p /sbin/ldconfig
%post -n libgensioosh%{sover} -p /sbin/ldconfig
%postun -n libgensioosh%{sover} -p /sbin/ldconfig
%post -n libgensiomdns%{sover} -p /sbin/ldconfig
%postun -n libgensiomdns%{sover} -p /sbin/ldconfig
%post -n libgensio_python_swig%{sover} -p /sbin/ldconfig
%postun -n libgensio_python_swig%{sover} -p /sbin/ldconfig
%post -n %{libname_cpp} -p /sbin/ldconfig
%postun -n %{libname_cpp} -p /sbin/ldconfig
%ldconfig_scriptlets -n %{libname}
%ldconfig_scriptlets -n libgensioosh%{sover}
%ldconfig_scriptlets -n libgensiomdns%{sover}
%ldconfig_scriptlets -n libgensio_openipmi_oshandler%{sover}
%ldconfig_scriptlets -n libgensio_python_swig%{sover}
%ldconfig_scriptlets -n %{libname_cpp}
%files
%license COPYING COPYING.LIB
%doc AUTHORS ChangeLog NEWS README.rst
%{_bindir}/gagwpe
%{_bindir}/gensiot
%{_bindir}/gmdns
%{_bindir}/greflector
@@ -192,7 +196,6 @@ find %{buildroot} -type f -name "*.la" -delete -print
%{_mandir}/man1/gtlssh.1%{?ext_man}
%{_mandir}/man1/gtlssync.1%{?ext_man}
%{_mandir}/man5/gensio.5%{?ext_man}
%{_mandir}/man5/sergensio.5%{?ext_man}
%files -n %{libname}
%{_libdir}/libgensio.so.%{sover_cpp}*
@@ -207,6 +210,10 @@ find %{buildroot} -type f -name "*.la" -delete -print
%{_libdir}/libgensiomdns.so.%{sover}*
%{_libdir}/libgensiomdnscpp.so.%{sover}*
%files -n libgensio_openipmi_oshandler%{sover}
%{_libdir}/libgensio_openipmi_oshandler.so.%{sover}*
%{_libdir}/libgensio_openipmi_oshandler.so.%{sover}*
%files -n libgensio_python_swig%{sover}
%{_libdir}/libgensio_python_swig.so.%{sover}*
@@ -218,7 +225,6 @@ find %{buildroot} -type f -name "*.la" -delete -print
%{_libdir}/libgensio*.so
%{_libdir}/pkgconfig/libgensio*.pc
%{_mandir}/man3/gensio_*3%{?ext_man}
%{_mandir}/man3/sergensio_*3%{?ext_man}
%{_mandir}/man3/str_to_gensio*.3%{?ext_man}
%files -n python3-gensio