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

gstlal: package no longer relies on pylal

- remove checks from configure and dependency from packaging scripts
parent 4a88db27
No related branches found
No related tags found
No related merge requests found
......@@ -332,9 +332,7 @@ AX_PYTHON_SYMBOL([lal], [LIGOTimeGPS])
AC_SUBST([MIN_GLUE_VERSION], [1.52.0])
AC_SUBST([MIN_PYLAL_VERSION], [0.12.0])
AX_PYTHON_GLUE()
AX_PYTHON_PYLAL()
#
......
......@@ -64,7 +64,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 (core stable 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
])
......@@ -28,7 +28,6 @@ Requires: numpy
Requires: orc >= @MIN_ORC_VERSION@
Requires: python >= @MIN_PYTHON_VERSION@
Requires: python-%{gstreamername}
Requires: python-pylal >= @MIN_PYLAL_VERSION@
Requires: scipy
BuildRequires: doxygen >= @MIN_DOXYGEN_VERSION@
BuildRequires: fftw-devel >= 3
......
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