Changeset 77494e7
- Timestamp:
- Dec 12, 2004, 1:25:19 AM (20 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- e6d4ccb
- Parents:
- 205da86
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r205da86 r77494e7 1 2004-12-11 Paul Brossier <piem@altern,org> 2 * swig/Makefile.am: instructions moved to python/aubio and cleaned 3 * python/aubiocut: corrected slicing on multichannel files 4 * VERSION: bumped to 0.1.8 5 1 6 2004-12-06 Paul Brossier <piem@altern.org> 2 7 * examples/{midi*,testforclam}.c: removed 8 * src/{sndfile,midi*,jackio}.[ch]: moved to ext 3 9 4 10 2004-12-03 Paul Brossier <piem@altern.org> … … 17 23 2004-10-28 Paul Brossier <piem@altern.org> 18 24 * src/Makefile.am: added config.h installation 25 * VERSION: 0.1.7.1 19 26 20 27 2004-10-26 Paul Brossier <piem@altern.org>: -
VERSION
r205da86 r77494e7 1 1 AUBIO_MAJOR_VERSION=0 2 2 AUBIO_MINOR_VERSION=1 3 AUBIO_PATCH_VERSION= 74 AUBIO_VERSION_STATUS= .23 AUBIO_PATCH_VERSION=8 4 AUBIO_VERSION_STATUS= 5 5 -
doc/Makefile.am
r205da86 r77494e7 6 6 7 7 man_MANS = aubionotes.1 aubioonset.1 8 CLEANFILES = $(man_MANS) 8 9 #docbook_docs = aubio-devdoc.xml 9 10 #DOCBOOK_STYLESHEET ?= http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl -
doc/Makefile.in
r205da86 r77494e7 161 161 162 162 man_MANS = aubionotes.1 aubioonset.1 163 CLEANFILES = $(man_MANS) 163 164 subdir = doc 164 165 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 297 298 298 299 clean-generic: 300 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 299 301 300 302 distclean-generic: -
ext/Makefile.am
r205da86 r77494e7 1 EXTRA_DIST = aubio_priv.h2 3 1 pkginclude_HEADERS = aubioext.h \ 4 2 jackio.h \ -
ext/Makefile.in
r205da86 r77494e7 152 152 sysconfdir = @sysconfdir@ 153 153 target_alias = @target_alias@ 154 EXTRA_DIST = aubio_priv.h155 156 154 pkginclude_HEADERS = aubioext.h \ 157 155 jackio.h \ -
plugins/puredata/Makefile.am
r205da86 r77494e7 9 9 10 10 ## Make and install the shared library. 11 pdinstalldir = $(pddir)/extra /aubio11 pdinstalldir = $(pddir)/extra 12 12 13 13 # Automake won't accept something ending in ".pd_linux" as a library … … 38 38 noinst_SCRIPTS = libtoolkludge 39 39 40 ## version.h is there for the Windows platform (no autoconf) 41 EXTRA_DIST = $(pdinstall_DATA) $(noinst_SCRIPTS) version.h 40 EXTRA_DIST = $(pdinstall_DATA) $(noinst_SCRIPTS) -
plugins/puredata/Makefile.in
r205da86 r77494e7 162 162 163 163 #SUBDIRS = ladspa vst win 164 pdinstalldir = $(pddir)/extra /aubio164 pdinstalldir = $(pddir)/extra 165 165 166 166 # Automake won't accept something ending in ".pd_linux" as a library … … 188 188 noinst_SCRIPTS = libtoolkludge 189 189 190 EXTRA_DIST = $(pdinstall_DATA) $(noinst_SCRIPTS) version.h190 EXTRA_DIST = $(pdinstall_DATA) $(noinst_SCRIPTS) 191 191 subdir = plugins/puredata 192 192 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -
plugins/puredata/libtoolkludge
r205da86 r77494e7 1 1 #! /bin/sh 2 2 3 # added --mode=link 3 4 if test \( $# -gt 1 \) -a \( $1 = "--mode=link" \); then 5 shift; 6 echo " libtoolkludge running \"$*\"" 7 $* 8 exit 0 9 elif test \( $# -gt 1 \) -a \( $1 = "--mode=install" \); then 4 10 shift; 5 11 echo " libtoolkludge running \"$*\"" -
python/aubio/Makefile.am
r205da86 r77494e7 1 EXTRA_DIST = __init__.py onsetcompare.py aubioclass.py gnuplot.py\2 median.py txtfile.py3 4 1 pkgpython_PYTHON = __init__.py onsetcompare.py\ 5 2 gnuplot.py median.py txtfile.py aubioclass.py 3 4 nodist_pkgpython_PYTHON = aubiowrapper.py _aubiowrapper.so 6 5 7 clean: 8 rm -f *.pyc 6 CLEANFILES = *.pyc *.so *.o aubio_wrap.c aubiowrapper.py 9 7 10 distclean: clean 8 all: _aubiowrapper.so 9 10 SWIG = swig 11 # removed -Wall -Wmissing-prototypes -Wmissing-declarations 12 SWCFLAGS = -DJACK_SUPPORT -Werror -Wno-char-subscripts -Wno-unknown-pragmas -I/usr/include/python2.3 -I../../src -I../../ext -I/usr/include 13 SWLDFLAGS = -shared -L../../ext/.libs -laubioext -L../../src/.libs -laubio 14 15 aubio_wrap.c: 16 $(SWIG) -outdir . -o aubio_wrap.c -python ../../swig/aubio.i 17 18 _aubiowrapper.so: aubio_wrap.c 19 $(CC) $(SWCFLAGS) -c aubio_wrap.c 20 $(CC) $(SWLDFLAGS) aubio_wrap.o -o _aubiowrapper.so -
python/aubio/Makefile.in
r205da86 r77494e7 152 152 sysconfdir = @sysconfdir@ 153 153 target_alias = @target_alias@ 154 EXTRA_DIST = __init__.py onsetcompare.py aubioclass.py gnuplot.py\155 median.py txtfile.py156 157 158 154 pkgpython_PYTHON = __init__.py onsetcompare.py\ 159 155 gnuplot.py median.py txtfile.py aubioclass.py 160 156 157 158 nodist_pkgpython_PYTHON = aubiowrapper.py _aubiowrapper.so 159 160 CLEANFILES = *.pyc *.so *.o aubio_wrap.c aubiowrapper.py 161 162 SWIG = swig 163 # removed -Wall -Wmissing-prototypes -Wmissing-declarations 164 SWCFLAGS = -DJACK_SUPPORT -Werror -Wno-char-subscripts -Wno-unknown-pragmas -I/usr/include/python2.3 -I../../src -I../../ext -I/usr/include 165 SWLDFLAGS = -shared -L../../ext/.libs -laubioext -L../../src/.libs -laubio 161 166 subdir = python/aubio 162 167 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 185 190 -rm -f libtool 186 191 uninstall-info-am: 192 nodist_pkgpythonPYTHON_INSTALL = $(INSTALL_DATA) 193 install-nodist_pkgpythonPYTHON: $(nodist_pkgpython_PYTHON) 194 @$(NORMAL_INSTALL) 195 $(mkinstalldirs) $(DESTDIR)$(pkgpythondir) 196 @list='$(nodist_pkgpython_PYTHON)'; dlist=''; for p in $$list; do\ 197 if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \ 198 if test -f $$b$$p; then \ 199 d=`echo "$$p" | sed -e 's,^.*/,,'`; \ 200 dlist="$$dlist $$d"; \ 201 echo " $(nodist_pkgpythonPYTHON_INSTALL) $$b$$p $(DESTDIR)$(pkgpythondir)/$$d"; \ 202 $(nodist_pkgpythonPYTHON_INSTALL) $$b$$p $(DESTDIR)$(pkgpythondir)/$$d; \ 203 else :; fi; \ 204 done; \ 205 PYTHON=$(PYTHON) $(py_compile) --basedir $(DESTDIR)$(pkgpythondir) $$dlist 206 207 uninstall-nodist_pkgpythonPYTHON: 208 @$(NORMAL_UNINSTALL) 209 list='$(nodist_pkgpython_PYTHON)'; for p in $$list; do \ 210 d=`echo "$$p" | sed -e 's,^.*/,,'`; \ 211 rm -f $(DESTDIR)$(pkgpythondir)/$$d; \ 212 rm -f $(DESTDIR)$(pkgpythondir)/$${d}c; \ 213 rm -f $(DESTDIR)$(pkgpythondir)/$${d}o; \ 214 done 187 215 pkgpythonPYTHON_INSTALL = $(INSTALL_DATA) 188 216 install-pkgpythonPYTHON: $(pkgpython_PYTHON) … … 251 279 252 280 installdirs: 253 $(mkinstalldirs) $(DESTDIR)$(pkgpythondir) 281 $(mkinstalldirs) $(DESTDIR)$(pkgpythondir) $(DESTDIR)$(pkgpythondir) 254 282 install: install-am 255 283 install-exec: install-exec-am … … 269 297 270 298 clean-generic: 299 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 271 300 272 301 distclean-generic: … … 292 321 info-am: 293 322 294 install-data-am: install- pkgpythonPYTHON323 install-data-am: install-nodist_pkgpythonPYTHON install-pkgpythonPYTHON 295 324 296 325 install-exec-am: … … 318 347 ps-am: 319 348 320 uninstall-am: uninstall-info-am uninstall-pkgpythonPYTHON 349 uninstall-am: uninstall-info-am uninstall-nodist_pkgpythonPYTHON \ 350 uninstall-pkgpythonPYTHON 321 351 322 352 .PHONY: all all-am check check-am clean clean-generic clean-libtool \ … … 324 354 dvi-am info info-am install install-am install-data \ 325 355 install-data-am install-exec install-exec-am install-info \ 326 install-info-am install-man install-pkgpythonPYTHON \ 327 install-strip installcheck installcheck-am installdirs \ 328 maintainer-clean maintainer-clean-generic mostlyclean \ 329 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 330 uninstall uninstall-am uninstall-info-am \ 356 install-info-am install-man install-nodist_pkgpythonPYTHON \ 357 install-pkgpythonPYTHON install-strip installcheck \ 358 installcheck-am installdirs maintainer-clean \ 359 maintainer-clean-generic mostlyclean mostlyclean-generic \ 360 mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ 361 uninstall-info-am uninstall-nodist_pkgpythonPYTHON \ 331 362 uninstall-pkgpythonPYTHON 332 363 333 364 334 clean: 335 rm -f *.pyc 336 337 distclean: clean 365 all: _aubiowrapper.so 366 367 aubio_wrap.c: 368 $(SWIG) -outdir . -o aubio_wrap.c -python ../../swig/aubio.i 369 370 _aubiowrapper.so: aubio_wrap.c 371 $(CC) $(SWCFLAGS) -c aubio_wrap.c 372 $(CC) $(SWLDFLAGS) aubio_wrap.o -o _aubiowrapper.so 338 373 # Tell versions [3.59,3.63) of GNU make to not export all variables. 339 374 # Otherwise a system limit (for SysV at least) may be exceeded. -
python/aubiocut
r205da86 r77494e7 61 61 fromcross = 0 62 62 while (zerocross < readsize): 63 mycopy.set(myvec.get(zerocross,0),fromcross,0) 63 for i in range(channels): 64 mycopy.set(myvec.get(zerocross,i),fromcross,i) 64 65 fromcross += 1 65 66 zerocross += 1 -
swig/Makefile.am
r205da86 r77494e7 1 # see ../python/Makefile.am 1 2 EXTRA_DIST = aubio.i 2 3 PYTHON_DIR = ../python/aubio4 SWIG = swig5 #SW_FLAGS = -c++6 # removed -Wall -Wmissing-prototypes -Wmissing-declarations7 SW_CFLAGS = -DJACK_SUPPORT -shared -Werror -Wno-char-subscripts -Wno-unknown-pragmas8 #SW_CFLAGS = -Wno-missing-prototypes -Wno-missing-declarations9 SWINCLUDE = -I/usr/include/python2.3 -I../src -I../ext -I/usr/include10 SWLDFLAGS = -L../ext/.libs -laubioext -L../src/.libs -laubio11 12 all:13 $(SWIG) $(SW_FLAGS) -outdir $(PYTHON_DIR) -python aubio.i14 $(CC) $(SW_CFLAGS) -c aubio_wrap.c $(SWINCLUDE)15 $(CC) $(SW_CFLAGS) aubio_wrap.o -o $(PYTHON_DIR)/_aubiowrapper.so $(SWLDFLAGS)16 17 install:18 $(mkinstalldirs) $(DESTDIR)$(pkgpythondir)19 $(INSTALL) $(PYTHON_DIR)/_aubiowrapper.so $(DESTDIR)$(pkgpythondir)20 $(INSTALL) -m644 $(PYTHON_DIR)/aubiowrapper.py $(DESTDIR)$(pkgpythondir)21 22 clean:23 rm -f aubio_wrap.{c,o} $(PYTHON_DIR)/{_aubiowrapper.so,aubiowrapper.py,aubiowrapper.pyc}24 25 distclean: clean -
swig/Makefile.in
r205da86 r77494e7 152 152 sysconfdir = @sysconfdir@ 153 153 target_alias = @target_alias@ 154 155 # see ../python/Makefile.am 154 156 EXTRA_DIST = aubio.i 155 156 PYTHON_DIR = ../python/aubio157 SWIG = swig158 #SW_FLAGS = -c++159 # removed -Wall -Wmissing-prototypes -Wmissing-declarations160 SW_CFLAGS = -DJACK_SUPPORT -shared -Werror -Wno-char-subscripts -Wno-unknown-pragmas161 #SW_CFLAGS = -Wno-missing-prototypes -Wno-missing-declarations162 SWINCLUDE = -I/usr/include/python2.3 -I../src -I../ext -I/usr/include163 SWLDFLAGS = -L../ext/.libs -laubioext -L../src/.libs -laubio164 157 subdir = swig 165 158 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 230 223 231 224 installdirs: 225 install: install-am 232 226 install-exec: install-exec-am 233 227 install-data: install-data-am … … 307 301 uninstall-info-am 308 302 309 310 all:311 $(SWIG) $(SW_FLAGS) -outdir $(PYTHON_DIR) -python aubio.i312 $(CC) $(SW_CFLAGS) -c aubio_wrap.c $(SWINCLUDE)313 $(CC) $(SW_CFLAGS) aubio_wrap.o -o $(PYTHON_DIR)/_aubiowrapper.so $(SWLDFLAGS)314 315 install:316 $(mkinstalldirs) $(DESTDIR)$(pkgpythondir)317 $(INSTALL) $(PYTHON_DIR)/_aubiowrapper.so $(DESTDIR)$(pkgpythondir)318 $(INSTALL) -m644 $(PYTHON_DIR)/aubiowrapper.py $(DESTDIR)$(pkgpythondir)319 320 clean:321 rm -f aubio_wrap.{c,o} $(PYTHON_DIR)/{_aubiowrapper.so,aubiowrapper.py,aubiowrapper.pyc}322 323 distclean: clean324 303 # Tell versions [3.59,3.63) of GNU make to not export all variables. 325 304 # Otherwise a system limit (for SysV at least) may be exceeded.
Note: See TracChangeset
for help on using the changeset viewer.