Accepting request 342554 from home:posophe:branches:multimedia:libs
fixed OBS-URL: https://build.opensuse.org/request/show/342554 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/aubio?expand=0&rev=9
This commit is contained in:
parent
2a24c78a0a
commit
a9d50f798a
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:25d7df0a9cd6366fda764a803424caddf5fb819fc75b42a7a03e1e6f8eb3c695
|
||||
size 288136
|
@ -1,7 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1
|
||||
|
||||
iEYEABECAAYFAlMgfyEACgkQkuC958YALL1iRgCdFjXhUyrFd2iyNn6oBfaetJ4c
|
||||
ivUAnAmO30/PaHTxGaO/6vjDHva6sk5V
|
||||
=inwP
|
||||
-----END PGP SIGNATURE-----
|
3
aubio-0.4.2.tar.bz2
Normal file
3
aubio-0.4.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1cc58e0fed2b9468305b198ad06b889f228b797a082c2ede716dc30fcb4f8f1f
|
||||
size 304216
|
18
aubio-0.4.2.tar.bz2.asc
Normal file
18
aubio-0.4.2.tar.bz2.asc
Normal file
@ -0,0 +1,18 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQJ8BAABCgBmBQJVvJ/jXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
|
||||
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRCODhBNTA3MkQ0OTE1QUVDRjgxQTI0MzQ2
|
||||
QTQ5QjE5NzI4QUJERDkyAAoJEGpJsZcoq92SSIwQAJ2zwryOZ3iN8Jfiol2Dq4tY
|
||||
TNU2Lh36iW+wOjG45HsweyW75BkNKpL55FhZaF4Nm3xnGC2tlqG8TwMP4ylh/aIa
|
||||
J8gKlgqK7NR3cIbYq+ZzA/vq84NJi9TjOzR3RKfO/JJ/+QRvoHrhZun3JX2bd9jM
|
||||
1f53cB3LLuE6xaao6l4SrEgkEwe4SuG6rE+ALvGOAXK4xkgbzOIRGcrbBHZFaKH1
|
||||
TaR1jg19UyRTrkkA5OfAhRxVXvdbZhkFltzU7hE7os6cloCCJFEhL0Vz1462xmvW
|
||||
oQWilG3FGViJ3OAr3Su3452hn/4Xy6No9zHC59OgmUsv1aCaG8EmMFuvVI7gGE4k
|
||||
SURvn1ikQ5lIGuiLMqE/wQfwGqzBntoN0QdILrK4y9ZFnPCxqhGqjWupuJC+oTXV
|
||||
8YWrz6JV+HvwF6HWsfK7suvvz4VqKlwAbB7QZU22t6DVrg97mWHsNlR+eQHjVTE7
|
||||
j0d3bNG6IeCQSKJci22L+FbMyMtqY0yTzGj5w6HFkVG9JoZwYsz+PMubOd+EBeF6
|
||||
BGdG3qyVUOUlDwLjy8Kt1z8ZNpeJd+czPU4QH97F2bzfz0XRfeohrD6yQtlv+zg1
|
||||
v4hHnXMMtbfMypSSZDGmrBlwNFBXh0ziBtgK+JbjovT7EPrcGHK1GCuPuTOGZBIF
|
||||
dpYVp1R2bhHUW+Sn9uSD
|
||||
=oys4
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +1,60 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 27 15:14:35 UTC 2015 - p.drouand@gmail.com
|
||||
|
||||
- Update to version 0.4.2
|
||||
* src/onset/onset.h: add aubio_onset_get_silence(), fix description of
|
||||
aubio_onset_get/set_delay functions
|
||||
* src/tempo/tempo.h: add aubio_tempo_get_silence and aubio_tempo_get_threshold
|
||||
* src/io/audio_unit.c: fix deprecation warning (closes #16)
|
||||
* src/io/sink_apple_audio.c: avoid opening null path
|
||||
* src/io/sink_sndfile.c: improve error messages, set nsamples after write
|
||||
* src/io/sink_wavwrite.c: fail if samplerate is way too large, assume
|
||||
windows is little endian to build with mingw32
|
||||
* src/io/source_apple_audio.c: check out of bounds _seek, set s->path, quiet
|
||||
* src/io/source_avcodec.c: update to libav10, libavcodec 55.34.1
|
||||
* src/io/source_sndfile.c: cast to uint_t for now, clarify some variables
|
||||
names, fix crash, zero-pad output vector when upsampling, improve
|
||||
seek errors and strings
|
||||
* src/io/source_wavread.c: avoid orphan parenthesis , cast size_t to int to
|
||||
avoid warning on win64 , improve seek errors processing , sync error message
|
||||
* src/onset/onset.c: avoid doubled onset at start, check parameters
|
||||
* src/pitch/pitch.c: add Hertz as valid unit string, check parameters
|
||||
* src/pitch/pitchyin.c, src/pitch/pitchyinfft.c: avoid producing
|
||||
NaN on silence (closes #7)
|
||||
* src/pitch/pitchyin.{c,h}: fix typo, developed
|
||||
* src/spectral/phasevoc.c: fix argument checks, improve error messages
|
||||
* src/synth/sampler.c: make sure blocksize > 0
|
||||
* src/tempo/beattracking.c: avoid segfault on silence (closes #24)
|
||||
* src/tempo/tempo.c: add silence detection (closes #23), add old behavior in
|
||||
examples/aubiotrack.c, check parameters
|
||||
* src/*.c: fix some useless float conversion
|
||||
* python/ext/aubiomodule.c: improve documentation
|
||||
* python/ext/py-musicutils.c: add silence_detection (closes #21),
|
||||
level_detection, db_spl, level_lin, complete window implementation
|
||||
* python/ext/py-source.c: add channels, add seek (closes #9)
|
||||
* python/demos/demo_a_weighting.py: add simple demo for a_weighting
|
||||
* python/demos/demo_sink_multi.py: add multi channel version
|
||||
* python/demos/, python/demos/: minor improvements, improve syntax (closes #19)
|
||||
* python/setup.py: use setuptools, add numpy to install_requires
|
||||
* waf: removed, now automatically downloaded with make, updated to 1.8.12
|
||||
* Makefile: add target to fetch waf and basic instructions
|
||||
* .travis.yml: added template for travis continuous integration
|
||||
* {examples,src,tests}/wscript_build: add external libs and uselib to targets
|
||||
* src/wscript_build: do not hardocode install path
|
||||
* wscript, src/io/*.c: use custom defines instead of __APPLE__
|
||||
* wscript: make fat build optional, remove iOS sdk versioning
|
||||
* examples/: use outmsg to print notes (fixes #8)
|
||||
* examples/parse_args.h: improve short documentation (closes #12)
|
||||
* doc/*.cfg: remove html timestamps to make build reproducible
|
||||
(see debian bug #779216)
|
||||
* doc/aubiocut.txt: improve documentation
|
||||
* doc/*.rst: add sphinx documentation basis with Makefile and conf.py
|
||||
* README.md: minor updates
|
||||
* python.old: removed old code
|
||||
* tests/: minor bug fixing
|
||||
- Add doxygen, ffmpeg-devel and txt2man dependencies
|
||||
- Replace python with python-devel
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 3 11:38:00 UTC 2014 - coolo@suse.com
|
||||
|
||||
|
19
aubio.spec
19
aubio.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package aubio
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -22,13 +22,18 @@ Summary: Library for real-time audio labelling
|
||||
License: GPL-2.0
|
||||
Group: System/Libraries
|
||||
BuildRequires: alsa-devel
|
||||
BuildRequires: doxygen
|
||||
%if 0%{?suse_version} > 1320 || (0%{?suse_version} == 1315 && 0%{?is_opensuse})
|
||||
BuildRequires: ffmpeg-devel
|
||||
BuildRequires: txt2man
|
||||
%endif
|
||||
BuildRequires: fftw3-devel
|
||||
BuildRequires: libjack-devel
|
||||
BuildRequires: libsamplerate-devel
|
||||
BuildRequires: libsndfile-devel
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: python
|
||||
Version: 0.4.1
|
||||
BuildRequires: python-devel
|
||||
Version: 0.4.2
|
||||
Release: 0
|
||||
Source: http://aubio.org/pub/%{name}-%{version}.tar.bz2
|
||||
Source1: http://aubio.org/pub/%{name}-%{version}.tar.bz2.asc
|
||||
@ -87,7 +92,9 @@ mv src/wscript_build.new src/wscript_build
|
||||
|
||||
%install
|
||||
./waf install --destdir=%{buildroot}
|
||||
rm %{buildroot}/%{_libdir}/libaubio.a
|
||||
mkdir -p %{buildroot}%{_docdir}/%{name}
|
||||
cp -pR %{buildroot}%{_datadir}/doc/libaubio-doc/html %{buildroot}%{_docdir}/%{name}
|
||||
rm -rf %{buildroot}%{_datadir}/doc/libaubio-doc
|
||||
|
||||
%post -n %{libpkgname} -p /sbin/ldconfig
|
||||
|
||||
@ -106,6 +113,10 @@ rm %{buildroot}/%{_libdir}/libaubio.a
|
||||
|
||||
%files tools
|
||||
%defattr(-, root, root)
|
||||
%doc %{_docdir}/%{name}
|
||||
%if 0%{?suse_version} > 1320 || (0%{?suse_version} == 1315 && 0%{?is_opensuse})
|
||||
%{_mandir}/man1/*
|
||||
%endif
|
||||
%{_bindir}/*
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user