Skip to content
Snippets Groups Projects
Commit 47e8b801 authored by Kipp Cannon's avatar Kipp Cannon
Browse files

gstlal-ugly: remove pylal dependency

parent 83c0dbee
No related branches found
No related tags found
No related merge requests found
......@@ -409,9 +409,7 @@ AX_PYTHON_MODULE([lal], fatal)
AC_SUBST([MIN_GLUE_VERSION], [1.54.1])
AC_SUBST([MIN_PYLAL_VERSION], [0.13.0])
AX_PYTHON_GLUE()
AX_PYTHON_PYLAL()
#
......
......@@ -56,7 +56,6 @@ Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends},
python-glue-segments (>= @MIN_GLUE_VERSION@),
python-gst-1.0,
python-numpy,
python-pylal (>= @MIN_PYLAL_VERSION@),
python-scipy
Description: GStreamer for GW data analysis (in-development parts)
This package provides a variety of GStreamer elements for
......
AC_DEFUN([AX_PYTHON_PYLAL],[
if test -z $PYTHON ; then
PYTHON="python"
fi
PYTHON_NAME=`basename $PYTHON`
AX_PYTHON_MODULE([pylal])
if test "x$HAVE_PYMOD_PYLAL" == "xyes" ; then
AC_MSG_CHECKING(pylal version)
PYLAL_VERSION=`$PYTHON -c "from pylal import git_version ; print '%s.%s' % tuple((git_version.tag or '0-0').replace('pylal-', '').split('-')[[:2]])"`
if test "x${PYLAL_VERSION}" == "x0.0" ; then
PYLAL_VERSION=
AC_MSG_RESULT([unknown])
else
AC_MSG_RESULT($PYLAL_VERSION)
fi
fi
])
......@@ -11,7 +11,6 @@ Requires: python >= @MIN_PYTHON_VERSION@
Requires: glue >= @MIN_GLUE_VERSION@
Requires: glue-segments >= @MIN_GLUE_VERSION@
Requires: gobject-introspection >= @MIN_GOBJECT_INTROSPECTION_VERSION@
Requires: python-pylal >= @MIN_PYLAL_VERSION@
Requires: fftw >= 3
Requires: %{gstreamername} >= @MIN_GSTREAMER_VERSION@
Requires: %{gstreamername}-plugins-base >= @MIN_GSTREAMER_VERSION@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment