Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
David Sugar
cd87bb838f fix for breakage in shell::getsym, required for new sipwitch releases 2010-08-10 19:18:46 -04:00
David Sugar
5182d4fe9b even more upstream bugfixes 2010-08-09 01:19:34 -04:00
David Sugar
120f64bf04 new upstream release with some important bug fixes 2010-08-06 20:33:36 -04:00
David Sugar
82cfe428de new upstream release and maybe base for next sipwitch 2010-08-05 21:29:30 -04:00
3 changed files with 32 additions and 11 deletions

4
.gitignore vendored
View file

@ -1 +1,5 @@
ucommon-3.2.1.tar.gz
ucommon-3.3.1.tar.gz
ucommon-3.3.2.tar.gz
ucommon-3.3.3.tar.gz
ucommon-3.3.4.tar.gz

View file

@ -1 +1 @@
7d5b608baa7b0c3600e0921ad360dbe6 ucommon-3.2.1.tar.gz
96aafe67bc3322fa5c26055879cb634e ucommon-3.3.4.tar.gz

View file

@ -10,7 +10,7 @@
Name: ucommon
Summary: Portable C++ framework for threads and sockets
Version: 3.2.1
Version: 3.3.4
Release: 0%{?dist}
License: LGPLv3+
URL: http://www.gnu.org/software/commoncpp
@ -45,17 +45,17 @@ Requires: %{name} = %{version}-%{release}
Group: System Environment/Libraries
Summary: uCommon framework for telephonic audio support
%package audio-tools
%package bin
Requires: %{name} = %{version}-%{release}
Requires: %{name}-audio = %{version}-%{release}
Group: Applications/Multimedia
Summary: Telephonic audio file manipulation utilities
Summary: ucommon system and support applications
%package devel
Requires: %{name} = %{version}-%{release}
Requires: %{name}-script = %{version}-%{release}
Requires: %{name}-audio = %{version}-%{release}
Requires: %{name}-audio-tools = %{version}-%{release}
Requires: %{name}-bin = %{version}-%{release}
Requires: pkgconfig
Group: Development/Libraries
Summary: Headers for building uCommon applications
@ -80,11 +80,11 @@ The GNU uCommon C++ telephonic audio library covers a range of functionality
including tone generation and detection, streaming and transcoding of encoded
audio frames, accessing of audio files on disk, and phrasebook management.
%description audio-tools
This is a collection of command line tools to manage telephonic audio files and
phrasebook libraries built from the ucommon telephonic audio library. These
utilities may also be required to build packages which use sampled audio
libraries and phrasebooks.
%description bin
This is a collection of command line tools that use various aspects of the
ucommon library. Some may be needed to prepare files or for development of
applications, such as audiotool, which might be used to prepare or convert
audio samples.
%description devel
This package provides header and support files needed for building
@ -129,10 +129,12 @@ html browsable.
%defattr(-,root,root,-)
%{_libdir}/libuccaudio.so.*
%files audio-tools
%files bin
%defattr(-,root,root,-)
%{_bindir}/audiotool
%{_bindir}/args
%{_mandir}/man1/audiotool.*
%{_mandir}/man1/args.*
%files devel
%defattr(-,root,root,-)
@ -151,6 +153,21 @@ html browsable.
%postun -p /sbin/ldconfig
%changelog
* Tue Aug 10 2010 - David Sugar <dyfet@gnutelephony.org> - 3.3.4-0
- major breakage in shell::getsym found and fixed.
* Sun Aug 08 2010 - David Sugar <dyfet@gnutelephony.org> - 3.3.3-0
- daemon detach and restart support.
- completion of string to numeric conversions.
* Thu Aug 05 2010 - David Sugar <dyfet@gnutelephony.org> - 3.3.1-0
- system logging integrated into shell api.
- string initialization and expression fixes.
* Sun Aug 01 2010 - David Sugar <dyfet@gnutelephony.org> - 3.3.0-0
- internationalization bindings with gnu gettext support.
- reorganized utils into ucommon-bin subpackage.
* Sun Jul 11 2010 - David Sugar <dyfet@gnutelephony.org> - 3.2.1-0
- uuid generation support and further shell parsing features.