commit 8730d1d95767fb4fbee1d3d6365effeab3962b3314b999b3df6b4718416cc782 Author: OBS User unknown Date: Fri Aug 1 02:27:15 2008 +0000 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aubio?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/aubio-0.3.2.tar.bz2 b/aubio-0.3.2.tar.bz2 new file mode 100644 index 0000000..e7efedc --- /dev/null +++ b/aubio-0.3.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd184d94d7de35067e43612ada253e632760c908bc237a5d95944a75bc06807 +size 433266 diff --git a/aubio.changes b/aubio.changes new file mode 100644 index 0000000..50b890a --- /dev/null +++ b/aubio.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Wed Jul 16 18:20:10 CEST 2008 - tiwai@suse.de + +- initial version: 0.3.2 + diff --git a/aubio.spec b/aubio.spec new file mode 100644 index 0000000..07049ef --- /dev/null +++ b/aubio.spec @@ -0,0 +1,126 @@ +# +# spec file for package aubio (Version 0.3.2) +# +# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. +# This file and all modifications and additions to the pristine +# package are under the same license as the package itself. +# +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +# norootforbuild + + +Name: aubio +Summary: Library for real-time audio labelling +BuildRequires: alsa-devel fftw3-devel libjack-devel +BuildRequires: libsamplerate-devel libsndfile-devel pkg-config python +License: GPL v2 only +Group: System/Libraries +AutoReqProv: on +Version: 0.3.2 +Release: 2 +Source: %{name}-%{version}.tar.bz2 +Url: http://aubio.org +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +Aubio is a library for real time audio labelling. Its features include +segmenting a sound file before each of its attacks, performing pitch +detection, tapping the beat and producing midi streams from live audio. +The name aubio comes from 'audio' with a typo: several transcription +errors are likely to be found in the results too. + + + +Authors: +-------- + Paul Brossier + +%package -n libaubio2 +License: GPL v2 only +Summary: Library for real-time audio labelling +Group: System/Libraries + +%description -n libaubio2 +Aubio is a library for real time audio labelling. Its features include +segmenting a sound file before each of its attacks, performing pitch +detection, tapping the beat and producing midi streams from live audio. +The name aubio comes from 'audio' with a typo: several transcription +errors are likely to be found in the results too. + + + +Authors: +-------- + Paul Brossier + +%package -n libaubio-devel +License: GPL v2 or later +Summary: Development package for aubio library +Group: Development/Libraries/C and C++ +Requires: libaubio2 = %{version} glibc-devel + +%description -n libaubio-devel +This package contains the files needed to compile programs that use +aubio library. + + + +Authors: +-------- + Paul Brossier + +%package tools +License: GPL v2 or later +Summary: Example programs for aubio library +Group: Productivity/Multimedia/Sound/Editors and Convertors + +%description tools +This package includes the example programs for aubio library. + + + +Authors: +-------- + Paul Brossier + +%prep +%setup -q + +%build +autoreconf -fi +%configure \ + --disable-static +make %{?jobs:-j %jobs} + +%install +%makeinstall +rm -f $RPM_BUILD_ROOT%{_libdir}/*.*a + +%post -n libaubio2 -p /sbin/ldconfig + +%postun -n libaubio2 -p /sbin/ldconfig + +%clean +rm -rf $RPM_BUILD_ROOT + +%files -n libaubio2 +%defattr(-, root, root) +%{_libdir}/lib*.so.* + +%files -n libaubio-devel +%defattr(-, root, root) +%doc AUTHORS ChangeLog COPYING README THANKS TODO +%{_libdir}/lib*.so +%{_libdir}/pkgconfig/*.pc +%{_includedir}/aubio + +%files tools +%defattr(-, root, root) +%{_bindir}/* +%{_datadir}/sounds/aubio + +%changelog +* Wed Jul 16 2008 tiwai@suse.de +- initial version: 0.3.2 diff --git a/ready b/ready new file mode 100644 index 0000000..473a0f4