Compare commits
50 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
bef263b6ee | ||
|
93a63ef0a9 | ||
|
b0e54451e4 | ||
|
9d8964ede5 | ||
|
de6ee91aef | ||
|
4b5ad14d8d | ||
|
2890f54620 | ||
|
79df7393be | ||
|
b6237125e9 | ||
|
34bade78f1 | ||
|
ac45d8f41b | ||
|
94d4b1ca50 | ||
|
1b104727f0 | ||
|
59f15f3215 | ||
|
2ed9779fc8 | ||
|
d4e900835f | ||
|
324925487f | ||
|
a2f2542587 | ||
|
56bee03972 | ||
|
0f44a3a2d0 | ||
|
348ab07ead | ||
|
f51775adb9 | ||
|
9b41e5f78d | ||
|
66bce4a240 | ||
|
b18fbfcf6b | ||
|
5e6179159d | ||
|
00c34811bb | ||
|
c621e3dbbb | ||
|
9a6fcf7a1a | ||
|
cef976fbd7 | ||
|
204567e2fb | ||
|
9b61b8fa2f | ||
|
012ae194b8 | ||
|
1ddea2b2d7 | ||
|
e36d82ead4 | ||
|
173b0c0f62 | ||
|
9acb66a74f | ||
|
3c49e3a259 | ||
|
a67c925a9b | ||
|
f247c706f8 | ||
|
09fe96e731 | ||
|
2517260341 | ||
|
471d2df9e8 | ||
|
60dc0b6ffc | ||
|
142ee02c73 | ||
|
63662c58e5 | ||
|
8ec952d21c | ||
|
77ac3f48c7 | ||
|
ed1fc075ca | ||
|
370f6d3688 |
347
baresip.spec
347
baresip.spec
@ -1,8 +1,8 @@
|
||||
Summary: Modular SIP user-agent with audio and video support
|
||||
Name: baresip
|
||||
Version: 2.4.0
|
||||
Version: 3.15.0
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
License: BSD-3-Clause
|
||||
URL: https://github.com/baresip/baresip
|
||||
Source0: https://github.com/baresip/baresip/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||
Source1: com.github.baresip.desktop
|
||||
@ -11,26 +11,25 @@ Source11: https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/raw/1e1d6921
|
||||
Source12: https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/raw/master/COPYING#/COPYING.adwaita-icon-theme
|
||||
Source13: https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/raw/master/COPYING_CCBYSA3#/COPYING_CCBYSA3.adwaita-icon-theme
|
||||
Source14: https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/raw/master/COPYING_LGPL#/COPYING_LGPL.adwaita-icon-theme
|
||||
BuildRequires: make
|
||||
BuildRequires: cmake
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libre-devel >= 2.4.0
|
||||
BuildRequires: librem-devel >= 2.4.0
|
||||
%if 0%{?fedora} || 0%{?rhel} >= 8
|
||||
BuildRequires: openssl-devel >= 1.1.0
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libre-devel >= 3.15.0
|
||||
%if 0%{?fedora} || 0%{?rhel} >= 9
|
||||
BuildRequires: openssl-devel
|
||||
Recommends: %{name}-pipewire%{?_isa} = %{version}-%{release}
|
||||
%else
|
||||
BuildRequires: openssl11-devel
|
||||
# Atomic support in libre >= 2.1.0
|
||||
BuildRequires: devtoolset-8-toolchain
|
||||
%endif
|
||||
%if 0%{?fedora} || (0%{?rhel} && 0%{?rhel} > 7)
|
||||
# https://github.com/baresip/re/pull/1015
|
||||
BuildRequires: openssl3-devel
|
||||
Recommends: %{name}-pulse%{?_isa} = %{version}-%{release}
|
||||
%else
|
||||
Requires: %{name}-pulse%{?_isa} = %{version}-%{release}
|
||||
%endif
|
||||
Obsoletes: %{name}-cairo < 1.1.0-1
|
||||
Obsoletes: %{name}-rst < 2.0.0-1
|
||||
Obsoletes: %{name}-speex_pp < 2.0.0-1
|
||||
Obsoletes: %{name}-x11grab < 2.0.0-1
|
||||
Obsoletes: %{name}-gsm < 2.6.0-1
|
||||
Obsoletes: %{name}-gst_video < 2.6.0-1
|
||||
Obsoletes: %{name}-omx < 2.7.0-1
|
||||
|
||||
%description
|
||||
A modular SIP user-agent with support for audio and video, and many IETF
|
||||
@ -45,6 +44,15 @@ or X11, NAT traversal via STUN, TURN, ICE, and NAT-PMP, media encryption
|
||||
via TLS, SRTP or DTLS-SRTP, management features like embedded web-server
|
||||
with HTTP interface, command-line console and interface, and MQTT.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for the baresip library
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
|
||||
%description devel
|
||||
The baresip-devel package includes header files and libraries necessary
|
||||
for developing programs which use the baresip C library.
|
||||
|
||||
%if 0%{?fedora}
|
||||
%package aac
|
||||
Summary: AAC audio codec module for baresip
|
||||
@ -123,16 +131,6 @@ Baresip is a modular SIP user-agent with audio and video support.
|
||||
|
||||
This module provides the G.726 audio codec.
|
||||
|
||||
%package gsm
|
||||
Summary: GSM audio codec module for baresip
|
||||
BuildRequires: gsm-devel
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description gsm
|
||||
Baresip is a modular SIP user-agent with audio and video support.
|
||||
|
||||
This module provides the GSM audio codec.
|
||||
|
||||
%package gst
|
||||
Summary: GStreamer audio source driver for baresip
|
||||
BuildRequires: pkgconfig(gstreamer-1.0)
|
||||
@ -144,51 +142,31 @@ Baresip is a modular SIP user-agent with audio and video support.
|
||||
This module uses the GStreamer 1.0 framework to play external media and
|
||||
provides them as an internal audio source.
|
||||
|
||||
%package gst_video
|
||||
Summary: Video codec support using GStreamer for baresip
|
||||
BuildRequires: pkgconfig(gstreamer-1.0)
|
||||
BuildRequires: pkgconfig(gstreamer-app-1.0)
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description gst_video
|
||||
Baresip is a modular SIP user-agent with audio and video support.
|
||||
|
||||
This module implements video codecs using GStreamer 1.0 framework.
|
||||
|
||||
%package gtk
|
||||
Summary: GTK+ menu-based user interface module for baresip
|
||||
BuildRequires: pkgconfig(gtk+-3.0) >= 3.0
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.32
|
||||
BuildRequires: desktop-file-utils
|
||||
%if 0%{?rhel} == 7 || 0%{?rhel} == 8
|
||||
License: BSD and (LGPLv3+ or CC-BY-SA)
|
||||
BuildRequires: librsvg2
|
||||
BuildRequires: /usr/bin/gtk-encode-symbolic-svg
|
||||
Requires: adwaita-icon-theme < 3.31.91-1
|
||||
%else
|
||||
%if 0%{?fedora} || 0%{?rhel} >= 9
|
||||
Requires: adwaita-icon-theme >= 3.31.91-1
|
||||
Requires: (gnome-shell-extension-appindicator if gnome-shell)
|
||||
%else
|
||||
License: BSD-3-Clause AND (LGPL-3.0-or-later OR CC-BY-SA-3.0)
|
||||
BuildRequires: librsvg2
|
||||
BuildRequires: %{_bindir}/gtk-encode-symbolic-svg
|
||||
Requires: adwaita-icon-theme < 3.31.91-1
|
||||
Requires: (gnome-shell-extension-topicons-plus if gnome-shell)
|
||||
%endif
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
%if 0%{?fedora} || (0%{?rhel} && 0%{?rhel} > 8)
|
||||
Requires: (gnome-shell-extension-appindicator if gnome-shell)
|
||||
Recommends: libcanberra-gtk3
|
||||
%else
|
||||
%if 0%{?rhel} == 8
|
||||
Requires: (gnome-shell-extension-topicons-plus if gnome-shell)
|
||||
Recommends: libcanberra-gtk3
|
||||
%else
|
||||
Requires: libcanberra-gtk3
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%description gtk
|
||||
Baresip is a modular SIP user-agent with audio and video support.
|
||||
|
||||
This module provides a GTK+ menu-based user interface.
|
||||
%if 0%{?fedora} || (0%{?rhel} && 0%{?rhel} > 7)
|
||||
|
||||
Note: GTK+ defaults to the Wayland backend, which baresip does not
|
||||
support. Use 'GDK_BACKEND=x11 baresip' to override it to Xwayland.
|
||||
%endif
|
||||
|
||||
%package jack
|
||||
Summary: JACK audio driver for baresip
|
||||
@ -205,11 +183,7 @@ Summary: MPA speech and audio codec module for baresip
|
||||
BuildRequires: twolame-devel
|
||||
BuildRequires: lame-devel
|
||||
BuildRequires: mpg123-devel
|
||||
%if 0%{?fedora} || (0%{?rhel} && 0%{?rhel} > 7)
|
||||
BuildRequires: speexdsp-devel
|
||||
%else
|
||||
BuildRequires: speex-devel
|
||||
%endif
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description mpa
|
||||
@ -228,19 +202,6 @@ Baresip is a modular SIP user-agent with audio and video support.
|
||||
This module provides the Message Queue Telemetry Transport (MQTT)
|
||||
management module.
|
||||
|
||||
%if 0%{?fedora}
|
||||
%package omx
|
||||
Summary: OpenMAX IL video display module for baresip
|
||||
BuildRequires: libomxil-bellagio-devel
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description omx
|
||||
Baresip is a modular SIP user-agent with audio and video support.
|
||||
|
||||
This module provides the OpenMAX IL (OMX) video display module for
|
||||
video playback support for the VideoCore 4 of the Raspberry Pi.
|
||||
%endif
|
||||
|
||||
%package opus
|
||||
Summary: Opus speech and audio codec module for baresip
|
||||
BuildRequires: opus-devel
|
||||
@ -251,6 +212,18 @@ Baresip is a modular SIP user-agent with audio and video support.
|
||||
|
||||
This module provides the Opus speech and audio codec module.
|
||||
|
||||
%if 0%{?fedora} || 0%{?rhel} >= 9
|
||||
%package pipewire
|
||||
Summary: PipeWire audio driver for baresip
|
||||
BuildRequires: pkgconfig(libpipewire-0.3)
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description pipewire
|
||||
Baresip is a modular SIP user-agent with audio and video support.
|
||||
|
||||
This module provides the PipeWire audio driver.
|
||||
%endif
|
||||
|
||||
%package plc
|
||||
Summary: Packet Loss Concealment module for baresip
|
||||
BuildRequires: spandsp-devel
|
||||
@ -273,7 +246,7 @@ This module provides the Portaudio audio driver.
|
||||
|
||||
%package pulse
|
||||
Summary: PulseAudio audio driver for baresip
|
||||
BuildRequires: pkgconfig(libpulse-simple)
|
||||
BuildRequires: pkgconfig(libpulse)
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description pulse
|
||||
@ -368,34 +341,31 @@ Baresip is a modular SIP user-agent with audio and video support.
|
||||
This module provides the X11 video output driver.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%if 0%{?rhel} == 7
|
||||
. /opt/rh/devtoolset-8/enable
|
||||
RPM_OPT_FLAGS="$RPM_OPT_FLAGS $(pkg-config --cflags-only-I openssl11)"
|
||||
RPM_LD_FLAGS="$RPM_LD_FLAGS $(pkg-config --libs-only-L openssl11)"
|
||||
%cmake \
|
||||
-DDEFAULT_CAFILE:PATH="%{_sysconfdir}/pki/tls/certs/ca-bundle.crt" \
|
||||
-DDEFAULT_CAPATH:PATH="%{_sysconfdir}/pki/tls/certs" \
|
||||
%if 0%{?fedora} || 0%{?rhel} >= 9
|
||||
-DDEFAULT_AUDIO_DEVICE:STRING="pipewire" \
|
||||
%else
|
||||
-DDEFAULT_AUDIO_DEVICE:STRING="pulse" \
|
||||
%endif
|
||||
%if 0%{?rhel} == 8
|
||||
-DOPENSSL_ROOT_DIR:PATH="%{_includedir}/openssl3;%{_libdir}/openssl3"
|
||||
%endif
|
||||
|
||||
%make_build \
|
||||
SHELL='sh -x' \
|
||||
RELEASE=1 \
|
||||
PREFIX=%{_prefix} \
|
||||
MOD_PATH=%{_libdir}/%{name}/modules \
|
||||
EXTRA_CFLAGS="$RPM_OPT_FLAGS -DDEFAULT_CAFILE='\"%{_sysconfdir}/pki/tls/certs/ca-bundle.crt\"' -DDEFAULT_AUDIO_DEVICE='\"pulse\"'" \
|
||||
EXTRA_LFLAGS="$RPM_LD_FLAGS"
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
%make_install LIBDIR=%{_libdir}
|
||||
|
||||
# Correct module permissions to add executable bit
|
||||
chmod 755 $RPM_BUILD_ROOT%{_libdir}/%{name}/modules/*.so
|
||||
%cmake_install
|
||||
|
||||
# Install com.github.baresip.desktop file
|
||||
desktop-file-install --dir=$RPM_BUILD_ROOT%{_datadir}/applications/ %{SOURCE1}
|
||||
|
||||
# Missing status icons for RHEL 7 and 8 (included since adwaita-icon-theme >= 3.31.91)
|
||||
%if 0%{?rhel} == 7 || 0%{?rhel} == 8
|
||||
# Missing status icons for RHEL 8 (included since adwaita-icon-theme >= 3.31.91)
|
||||
%if 0%{?rhel} == 8
|
||||
cp -pf %{SOURCE12} %{SOURCE13} %{SOURCE14} .
|
||||
|
||||
install -D -p -m 0644 %{SOURCE10} $RPM_BUILD_ROOT%{_datadir}/icons/Adwaita/scalable/status/call-incoming-symbolic.svg
|
||||
@ -410,30 +380,12 @@ gtk-encode-symbolic-svg %{SOURCE11} 16x16 -o $RPM_BUILD_ROOT%{_datadir}/icons/Ad
|
||||
install -p -m 0755 tools/fritzbox2%{name} $RPM_BUILD_ROOT%{_bindir}/fritzbox2%{name}
|
||||
|
||||
%check
|
||||
%if 0%{?rhel} == 7
|
||||
. /opt/rh/devtoolset-8/enable
|
||||
RPM_OPT_FLAGS="$RPM_OPT_FLAGS $(pkg-config --cflags-only-I openssl11)"
|
||||
RPM_LD_FLAGS="$RPM_LD_FLAGS $(pkg-config --libs-only-L openssl11)"
|
||||
%if !0%{?__cmake_in_source_build}
|
||||
cd %{__cmake_builddir}
|
||||
%endif
|
||||
./test/selftest -d %{!?__cmake_in_source_build:../}test/data/ -v
|
||||
|
||||
make test \
|
||||
SHELL='sh -x' \
|
||||
EXTRA_CFLAGS="$RPM_OPT_FLAGS" \
|
||||
EXTRA_LFLAGS="$RPM_LD_FLAGS"
|
||||
|
||||
%if 0%{?rhel} == 7
|
||||
%post gtk
|
||||
touch --no-create %{_datadir}/icons/Adwaita &>/dev/null || :
|
||||
|
||||
%postun gtk
|
||||
if [ $1 -eq 0 ]; then
|
||||
touch --no-create %{_datadir}/icons/Adwaita &>/dev/null
|
||||
gtk-update-icon-cache %{_datadir}/icons/Adwaita &>/dev/null || :
|
||||
fi
|
||||
|
||||
%posttrans gtk
|
||||
gtk-update-icon-cache %{_datadir}/icons/Adwaita &>/dev/null || :
|
||||
%endif
|
||||
%ldconfig_scriptlets
|
||||
|
||||
%if 0%{?rhel} == 8
|
||||
%transfiletriggerin -- %{_datadir}/icons/Adwaita
|
||||
@ -444,9 +396,10 @@ gtk-update-icon-cache --force %{_datadir}/icons/Adwaita &>/dev/null || :
|
||||
%endif
|
||||
|
||||
%files
|
||||
%license docs/COPYING
|
||||
%doc docs/ChangeLog docs/THANKS docs/examples
|
||||
%license LICENSE
|
||||
%doc CHANGELOG.md docs/THANKS docs/examples
|
||||
%{_bindir}/%{name}
|
||||
%{_libdir}/lib%{name}.so.17*
|
||||
%dir %{_libdir}/%{name}/
|
||||
%dir %{_libdir}/%{name}/modules/
|
||||
%{_libdir}/%{name}/modules/account.so
|
||||
@ -468,14 +421,15 @@ gtk-update-icon-cache --force %{_datadir}/icons/Adwaita &>/dev/null || :
|
||||
%{_libdir}/%{name}/modules/httpd.so
|
||||
%{_libdir}/%{name}/modules/httpreq.so
|
||||
%{_libdir}/%{name}/modules/ice.so
|
||||
%{_libdir}/%{name}/modules/in_band_dtmf.so
|
||||
%{_libdir}/%{name}/modules/l16.so
|
||||
%{_libdir}/%{name}/modules/menu.so
|
||||
%{_libdir}/%{name}/modules/mixausrc.so
|
||||
%{_libdir}/%{name}/modules/mixminus.so
|
||||
%{_libdir}/%{name}/modules/multicast.so
|
||||
%{_libdir}/%{name}/modules/mwi.so
|
||||
%{_libdir}/%{name}/modules/natpmp.so
|
||||
%{_libdir}/%{name}/modules/netroam.so
|
||||
%{_libdir}/%{name}/modules/pcp.so
|
||||
%{_libdir}/%{name}/modules/presence.so
|
||||
%{_libdir}/%{name}/modules/rtcpsummary.so
|
||||
%{_libdir}/%{name}/modules/selfview.so
|
||||
@ -491,6 +445,11 @@ gtk-update-icon-cache --force %{_datadir}/icons/Adwaita &>/dev/null || :
|
||||
%{_libdir}/%{name}/modules/vumeter.so
|
||||
%{_datadir}/%{name}/
|
||||
|
||||
%files devel
|
||||
%{_libdir}/lib%{name}.so
|
||||
%{_includedir}/%{name}.h
|
||||
%{_libdir}/pkgconfig/lib%{name}.pc
|
||||
|
||||
%if 0%{?fedora}
|
||||
%files aac
|
||||
%{_libdir}/%{name}/modules/aac.so
|
||||
@ -514,19 +473,13 @@ gtk-update-icon-cache --force %{_datadir}/icons/Adwaita &>/dev/null || :
|
||||
%files g726
|
||||
%{_libdir}/%{name}/modules/g726.so
|
||||
|
||||
%files gsm
|
||||
%{_libdir}/%{name}/modules/gsm.so
|
||||
|
||||
%files gst
|
||||
%{_libdir}/%{name}/modules/gst.so
|
||||
|
||||
%files gst_video
|
||||
%{_libdir}/%{name}/modules/gst_video.so
|
||||
|
||||
%files gtk
|
||||
%{_libdir}/%{name}/modules/gtk.so
|
||||
%{_datadir}/applications/com.github.baresip.desktop
|
||||
%if 0%{?rhel} == 7 || 0%{?rhel} == 8
|
||||
%if 0%{?rhel} == 8
|
||||
%license COPYING*.adwaita-icon-theme
|
||||
%{_datadir}/icons/Adwaita/16x16/status/call-incoming-symbolic.symbolic.png
|
||||
%{_datadir}/icons/Adwaita/16x16/status/call-outgoing-symbolic.symbolic.png
|
||||
@ -543,15 +496,15 @@ gtk-update-icon-cache --force %{_datadir}/icons/Adwaita &>/dev/null || :
|
||||
%files mqtt
|
||||
%{_libdir}/%{name}/modules/mqtt.so
|
||||
|
||||
%if 0%{?fedora}
|
||||
%files omx
|
||||
%{_libdir}/%{name}/modules/omx.so
|
||||
%endif
|
||||
|
||||
%files opus
|
||||
%{_libdir}/%{name}/modules/opus.so
|
||||
%{_libdir}/%{name}/modules/opus_multistream.so
|
||||
|
||||
%if 0%{?fedora} || 0%{?rhel} >= 9
|
||||
%files pipewire
|
||||
%{_libdir}/%{name}/modules/pipewire.so
|
||||
%endif
|
||||
|
||||
%files plc
|
||||
%{_libdir}/%{name}/modules/plc.so
|
||||
|
||||
@ -586,6 +539,148 @@ gtk-update-icon-cache --force %{_datadir}/icons/Adwaita &>/dev/null || :
|
||||
%{_libdir}/%{name}/modules/x11.so
|
||||
|
||||
%changelog
|
||||
* Sat Sep 14 2024 Robert Scheck <robert@fedoraproject.org> 3.15.0-1
|
||||
- Upgrade to 3.15.0 (#2309007)
|
||||
|
||||
* Tue Jul 23 2024 Robert Scheck <robert@fedoraproject.org> 3.14.0-1
|
||||
- Upgrade to 3.14.0 (#2299492)
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.13.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Fri Jun 28 2024 Robert Scheck <robert@fedoraproject.org> 3.13.0-1
|
||||
- Upgrade to 3.13.0 (#2293512)
|
||||
|
||||
* Tue May 28 2024 Robert Scheck <robert@fedoraproject.org> 3.12.1-1
|
||||
- Upgrade to 3.12.1 (#2283595)
|
||||
|
||||
* Mon May 20 2024 Robert Scheck <robert@fedoraproject.org> 3.12.0-1
|
||||
- Upgrade to 3.12.0
|
||||
|
||||
* Thu Apr 11 2024 Robert Scheck <robert@fedoraproject.org> 3.11.0-1
|
||||
- Upgrade to 3.11.0 (#2274242)
|
||||
|
||||
* Tue Mar 12 2024 Robert Scheck <robert@fedoraproject.org> 3.10.1-1
|
||||
- Upgrade to 3.10.1 (#2269261)
|
||||
|
||||
* Mon Mar 11 2024 Robert Scheck <robert@fedoraproject.org> 3.10.0-2
|
||||
- Added upstream patch to fix mtx_unlock on discard in aureceiver
|
||||
|
||||
* Sun Mar 10 2024 Robert Scheck <robert@fedoraproject.org> 3.10.0-1
|
||||
- Upgrade to 3.10.0 (#2268424)
|
||||
|
||||
* Wed Feb 07 2024 Pete Walter <pwalter@fedoraproject.org> - 3.9.0-2
|
||||
- Rebuild for libvpx 1.14.x
|
||||
|
||||
* Thu Feb 01 2024 Robert Scheck <robert@fedoraproject.org> 3.9.0-1
|
||||
- Upgrade to 3.9.0 (#2262187)
|
||||
|
||||
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.8.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jan 06 2024 Robert Scheck <robert@fedoraproject.org> 3.8.1-1
|
||||
- Upgrade to 3.8.1 (#2256553)
|
||||
|
||||
* Thu Dec 28 2023 Robert Scheck <robert@fedoraproject.org> 3.8.0-1
|
||||
- Upgrade to 3.8.0 (#2256050)
|
||||
|
||||
* Sun Nov 26 2023 Robert Scheck <robert@fedoraproject.org> 3.7.0-1
|
||||
- Upgrade to 3.7.0 (#2251125)
|
||||
|
||||
* Sun Oct 29 2023 Robert Scheck <robert@fedoraproject.org> 3.6.0-1
|
||||
- Upgrade to 3.6.0 (#2244802)
|
||||
|
||||
* Sun Sep 17 2023 Robert Scheck <robert@fedoraproject.org> 3.5.1-1
|
||||
- Upgrade to 3.5.1 (#2238647)
|
||||
|
||||
* Sat Aug 12 2023 Robert Scheck <robert@fedoraproject.org> 3.4.0-1
|
||||
- Upgrade to 3.4.0 (#2230766)
|
||||
|
||||
* Sat Aug 05 2023 Richard Shaw <hobbes1069@gmail.com> - 3.3.0-3
|
||||
- Rebuild for codec2.
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Fri Jul 07 2023 Robert Scheck <robert@fedoraproject.org> 3.3.0-1
|
||||
- Upgrade to 3.3.0 (#2220879)
|
||||
|
||||
* Wed May 31 2023 Robert Scheck <robert@fedoraproject.org> 3.2.0-1
|
||||
- Upgrade to 3.2.0 (#2211408)
|
||||
|
||||
* Thu Apr 27 2023 Robert Scheck <robert@fedoraproject.org> 3.1.0-1
|
||||
- Upgrade to 3.1.0 (#2190310)
|
||||
|
||||
* Mon Mar 20 2023 Robert Scheck <robert@fedoraproject.org> 3.0.0-1
|
||||
- Upgrade to 3.0.0 (#2180064)
|
||||
- Added (hopefully future upstream) patch for PipeWire support
|
||||
|
||||
* Sat Feb 18 2023 Robert Scheck <robert@fedoraproject.org> 2.12.0-1
|
||||
- Upgrade to 2.12.0 (#2170292)
|
||||
|
||||
* Wed Feb 15 2023 Tom Callaway <spot@fedoraproject.org> - 2.11.0-3
|
||||
- rebuild for libvpx
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2023 Robert Scheck <robert@fedoraproject.org> 2.11.0-1
|
||||
- Upgrade to 2.11.0 (#2160564)
|
||||
|
||||
* Wed Dec 07 2022 Robert Scheck <robert@fedoraproject.org> 2.10.0-1
|
||||
- Upgrade to 2.10.0 (#2151456)
|
||||
|
||||
* Thu Nov 17 2022 Robert Scheck <robert@fedoraproject.org> 2.9.0-4
|
||||
- Added upstream patch to fix GTK+ dial history space error
|
||||
|
||||
* Tue Nov 08 2022 Robert Scheck <robert@fedoraproject.org> 2.9.0-3
|
||||
- Added upstream patch to fix GTK+ dial segfault regression
|
||||
|
||||
* Mon Nov 07 2022 Richard Shaw <hobbes1069@gmail.com> - 2.9.0-2
|
||||
- Rebuild for updated codec2.
|
||||
|
||||
* Tue Nov 01 2022 Robert Scheck <robert@fedoraproject.org> 2.9.0-1
|
||||
- Upgrade to 2.9.0 (#2139174)
|
||||
|
||||
* Tue Oct 11 2022 Robert Scheck <robert@fedoraproject.org> 2.8.2-1
|
||||
- Upgrade to 2.8.2 (#2133869)
|
||||
|
||||
* Sat Oct 01 2022 Robert Scheck <robert@fedoraproject.org> 2.8.1-1
|
||||
- Upgrade to 2.8.1 (#2131453)
|
||||
|
||||
* Sat Oct 01 2022 Robert Scheck <robert@fedoraproject.org> 2.8.0-1
|
||||
- Upgrade to 2.8.0
|
||||
|
||||
* Thu Sep 01 2022 Robert Scheck <robert@fedoraproject.org> 2.7.0-1
|
||||
- Upgrade to 2.7.0 (#2123475)
|
||||
|
||||
* Wed Aug 03 2022 Robert Scheck <robert@fedoraproject.org> 2.6.0-2
|
||||
- Rebuilt for libre 2.6.1
|
||||
|
||||
* Tue Aug 02 2022 Robert Scheck <robert@fedoraproject.org> 2.6.0-1
|
||||
- Upgrade to 2.6.0 (#2113067)
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon Jul 18 2022 Robert Scheck <robert@fedoraproject.org> 2.5.1-1
|
||||
- Upgrade to 2.5.1 (#2107946)
|
||||
|
||||
* Sat Jul 16 2022 Robert Scheck <robert@fedoraproject.org> 2.5.0-3
|
||||
- Added upstream patch to fix missing free-line signal regression
|
||||
|
||||
* Sat Jul 09 2022 Richard Shaw <hobbes1069@gmail.com> - 2.5.0-2
|
||||
- Rebuild for codec2 1.0.4.
|
||||
|
||||
* Sat Jul 02 2022 Robert Scheck <robert@fedoraproject.org> 2.5.0-1
|
||||
- Upgrade to 2.5.0 (#2103207)
|
||||
|
||||
* Wed Jun 22 2022 Robert-André Mauchin <zebob.m@gmail.com> - 2.4.0-2
|
||||
- Rebuilt for new AOM
|
||||
|
||||
* Wed Jun 01 2022 Robert Scheck <robert@fedoraproject.org> 2.4.0-1
|
||||
- Upgrade to 2.4.0 (#2092576)
|
||||
|
||||
|
2
sources
2
sources
@ -1,4 +1,4 @@
|
||||
SHA512 (baresip-2.4.0.tar.gz) = a3101dff86139b5ad8cc991f9440296e1ac6fe6550a87e44f42b722f868bcee89f4aeb71746d281470c4d55d24baddfb42b86dca8bbaf1ca0d31f9a84e050305
|
||||
SHA512 (baresip-3.15.0.tar.gz) = 20d426d749c2cdbaab09ed92be5ef089c85bb1bf693eab272de673be1ad5457624487e5de2f4675be6246cfead1b6181e60ec35624aadf88909d0d625228d966
|
||||
SHA512 (call-incoming-symbolic.svg) = 49b6422efff9986dd4a18b34df4ab185b01b46c44ab5b8c1d45ab1ca25694cb42e73428b0a69e5fe2eb61c4e7a7aba9c0df82b5e0290f45950f3942be63bf987
|
||||
SHA512 (call-outgoing-symbolic.svg) = 142cf668d977e3a709d3c13e01d86fdd09e501affd1756df3000de84581c55b3b5082758b32a73ae0e47f45233cc7e55609f3e54effbba01666ca97d5a55fdaa
|
||||
SHA512 (COPYING.adwaita-icon-theme) = e8963bab4d94d9fbcfc930b95164afff9502e4e53209104f4836fcd6dab2c2e9f105c9f9a17b43bc9502903c9c7b2e0880dacf2339cbe110a19654f13742e20a
|
||||
|
Loading…
x
Reference in New Issue
Block a user