pkubat / rpms / rdkit

Forked from rpms/rdkit 5 years ago
Clone
bb09397
# recommonmark is currently incompatible with commonmark
bb09397
# as included in Fedora
bb09397
# https://github.com/rtfd/recommonmark/issues/24
795c687
%global with_docs 0
bb09397
# Apparently, a prerelease inchi library is breaking our tests
bb09397
%global with_tests 0
961f706
%global with_py3 1
795c687
398d1b6
%global year        2016
67f7ce4
%global month       09
fb42a18
%global extraver    2
398d1b6
%global pkgname     Release_%{year}_%{month}_%{extraver}
398d1b6
%global rootdir     rdkit-%{pkgname}
398d1b6
398d1b6
Name:           rdkit
398d1b6
Version:        %{year}.%{month}.%{extraver}
f84f562
Release:        3%{?dist}
398d1b6
Summary:        Chemical informatics and machine learning toolkit
398d1b6
License:        BSD
398d1b6
URL:            http://www.rdkit.org/
398d1b6
Source0:        https://github.com/rdkit/rdkit/archive/%{pkgname}.tar.gz
398d1b6
398d1b6
BuildRequires:  cmake
398d1b6
BuildRequires:  flex
398d1b6
BuildRequires:  bison
398d1b6
BuildRequires:  python2-devel
398d1b6
BuildRequires:  boost-devel
398d1b6
BuildRequires:  postgresql-devel
398d1b6
BuildRequires:  %{_bindir}/pg_config
398d1b6
BuildRequires:  numpy
398d1b6
BuildRequires:  inchi-devel
398d1b6
BuildRequires:  cairo-devel
f84f562
BuildRequires:  eigen3-devel
398d1b6
BuildRequires:  chrpath
398d1b6
BuildRequires:  swig
398d1b6
BuildRequires:  java-devel
398d1b6
BuildRequires:  junit
961f706
%if 0%{?fedora} && 0%{?with_py3}
398d1b6
BuildRequires:  python3-devel
398d1b6
BuildRequires:  boost-python3-devel
398d1b6
%endif
398d1b6
795c687
%if 0%{?with_docs}
398d1b6
# Docs build deps
398d1b6
BuildRequires: python-sphinx
0bd4e54
BuildRequires: python2-recommonmark
398d1b6
BuildRequires: epydoc
398d1b6
BuildRequires: doxygen
398d1b6
BuildRequires: pandoc
398d1b6
398d1b6
%if 0%{?fedora}
398d1b6
BuildRequires: texlive-collection-latexrecommended
398d1b6
BuildRequires: texlive-collection-fontsrecommended
398d1b6
BuildRequires: tex(titlesec.sty)
398d1b6
BuildRequires: tex(framed.sty)
398d1b6
BuildRequires: tex(threeparttable.sty)
398d1b6
BuildRequires: tex(wrapfig.sty)
398d1b6
BuildRequires: tex(upquote.sty)
398d1b6
BuildRequires: tex(multirow.sty)
398d1b6
BuildRequires: tex(capt-of.sty)
398d1b6
BuildRequires: tex(eqparbox.sty)
795c687
%endif
398d1b6
%endif
398d1b6
398d1b6
# Needed for tests
795c687
%if 0%{?with_tests}
398d1b6
BuildRequires:  pycairo
398d1b6
BuildRequires:  xorg-x11-fonts-Type1
398d1b6
BuildRequires:  python-pandas
398d1b6
BuildRequires:  python-pillow
961f706
%if 0%{?fedora} && 0%{?with_py3}
398d1b6
BuildRequires:  python3-cairocffi
398d1b6
BuildRequires:  python3-pandas
398d1b6
BuildRequires:  python3-pillow
398d1b6
%endif
398d1b6
%endif
398d1b6
398d1b6
Patch1:         rdkit-2015.03-use_cairo_backend_on_tests.patch
398d1b6
Patch2:         rdkit-2014.09-do_not_install_sping.patch
398d1b6
Patch4:         rdkit-2014.09-fix_cmake_files_path.patch
398d1b6
Patch7:         rdkit-2015.03-dont_install_contrib.patch
398d1b6
398d1b6
%description
398d1b6
Chemical informatics and machine learning toolkit
398d1b6
398d1b6
%package devel
398d1b6
Summary:        Development files for %{name}
398d1b6
Requires:       %{name}%{?_isa} = %{version}-%{release}
398d1b6
Requires:       boost-devel%{?_isa}
398d1b6
398d1b6
%description devel
398d1b6
The %{name}-devel package contains libraries, build data, and header
398d1b6
files for developing applications that use %{name}.
398d1b6
398d1b6
398d1b6
%package doc
398d1b6
Summary:        Documentation for %{name}
398d1b6
BuildArch:      noarch
398d1b6
Requires:       %{name} = %{version}-%{release}
398d1b6
398d1b6
%description doc
398d1b6
Documentation files for %{name}.
398d1b6
398d1b6
398d1b6
%package -n python2-rdkit
398d1b6
Summary:        Python 2 bindings for RDKit libraries
398d1b6
%{?python_provide:%python_provide python2-rdkit}
398d1b6
Requires:       %{name}%{?_isa} = %{version}-%{release}
398d1b6
Requires:       numpy
398d1b6
Requires:       pycairo
398d1b6
Requires:       python-pillow
398d1b6
Requires:       xorg-x11-fonts-Type1
398d1b6
398d1b6
%description -n python2-rdkit
398d1b6
Python 2 bindings for RDKit libraries
398d1b6
961f706
%if 0%{?fedora} && 0%{?with_py3}
398d1b6
%package -n python3-rdkit
398d1b6
Summary:        Python 3 bindings for RDKit libraries
398d1b6
%{?python_provide:%python_provide python3-rdkit}
398d1b6
Requires:       %{name}%{?_isa} = %{version}-%{release}
398d1b6
Requires:       python3-numpy
398d1b6
Requires:       python3-cairocffi
398d1b6
Requires:       python3-pillow
398d1b6
Requires:       xorg-x11-fonts-Type1
398d1b6
398d1b6
%description -n python3-rdkit
398d1b6
Python 3 bindings for RDKit libraries
398d1b6
%endif
398d1b6
398d1b6
%package postgresql
398d1b6
Summary:        RDKit cartridge for PostgreSQL
398d1b6
Requires:       %{name}%{?_isa} = %{version}-%{release}
9680b42
Requires:       postgresql-server(:MODULE_COMPAT_%{postgresql_major})
398d1b6
398d1b6
%description postgresql
398d1b6
PostgreSQL module for RDKit, which implements *mol* datatype to
398d1b6
describe molecules and *fp* datatype for fingerprints, basic comparison
398d1b6
operations, similarity operation (tanimoto, dice) and  index support
398d1b6
(using GiST indexing framework).
398d1b6
398d1b6
To complete installation of the cartridge in PostgreSQL, please follow
398d1b6
the steps detailed in:
398d1b6
398d1b6
%{_docdir}/%{name}-postgresql/README
398d1b6
398d1b6
# Prepare for a double build according to
398d1b6
# https://fedoraproject.org/wiki/Packaging:Python_Appendix#Using_separate_build_directories
398d1b6
%prep
398d1b6
%setup -c -q -n %{rootdir}
398d1b6
mv %{rootdir} python2
398d1b6
pushd python2
398d1b6
%patch1 -p1
398d1b6
%patch2 -p1
398d1b6
%patch4 -p1
398d1b6
%patch7 -p1
398d1b6
398d1b6
rm -rf rdkit/sping
398d1b6
398d1b6
# Copy docs to top dir
398d1b6
cp -pr license.txt ReleaseNotes.* ../
398d1b6
popd
398d1b6
961f706
%if 0%{?with_py3}
398d1b6
cp -a python2 python3
398d1b6
find python3 -name '*.py' | xargs sed -i '1s|^#!.*|#!%{__python3}|'
398d1b6
398d1b6
# fix tests scripts for python3 runtime
398d1b6
find python3 -name 'test_list.py' | xargs sed -i 's/"python"/"python3"/g'
f548b75
find python3 -name 'test_list.py' | xargs sed -i "s/'python'/'python3'/g"
398d1b6
sed -i.orig 's/python/python3/g' python3/Projects/DbCLI/TestDbCLI.py
961f706
%endif
398d1b6
961f706
find python2 -name '*.py' | xargs sed -i '1s|^#!.*|#!%{__python2}|'
398d1b6
398d1b6
%build
398d1b6
# fix rpmlint "unused-direct-shlib-dependency"
398d1b6
export CXXFLAGS="%{optflags} -Wl,--as-needed"
398d1b6
398d1b6
# Python 2 build
398d1b6
pushd python2
398d1b6
%cmake  -D RDK_INSTALL_INTREE=OFF \
398d1b6
        -D CMAKE_BUILD_TYPE=RelWithDebInfo \
398d1b6
        -D RDK_BUILD_INCHI_SUPPORT:BOOL=ON \
398d1b6
        -D RDK_BUILD_THREADSAFE_SSS:BOOL=ON \
398d1b6
        -D RDK_BUILD_CAIRO_SUPPORT:BOOL=ON \
398d1b6
        -D RDK_BUILD_PGSQL:BOOL=ON \
398d1b6
        -D RDK_PGSQL_STATIC:BOOL=OFF \
398d1b6
        -D RDK_INSTALL_STATIC_LIBS:BOOL=OFF \
398d1b6
        -D RDK_USE_FLEXBISON:BOOL=ON \
398d1b6
        -D RDK_TEST_MULTITHREADED:BOOL=ON \
398d1b6
        -D PYTHON_EXECUTABLE:FILEPATH=%{__python2} \
224900e
%ifnarch %{ix86} x86_64
398d1b6
        -D RDK_OPTIMIZE_NATIVE:BOOL=OFF \
398d1b6
%endif
398d1b6
        .
398d1b6
#        -D RDK_BUILD_SWIG_WRAPPERS:BOOL=ON \
398d1b6
398d1b6
make %{?_smp_mflags}
398d1b6
398d1b6
# PostgreSQL cartridge
398d1b6
pushd Code/PgSQL/rdkit
398d1b6
chrpath -d librdkit.so
398d1b6
popd
398d1b6
961f706
%if 0%{?fedora} && 0%{with_docs}
398d1b6
# Documentation (does not currently build on EPEL)
398d1b6
export RDBASE=%{_builddir}/%{rootdir}/python2
398d1b6
pushd rdkit
398d1b6
epydoc --config epydoc.config
398d1b6
popd
398d1b6
pushd Code
398d1b6
doxygen doxygen/doxygen.config
398d1b6
popd
398d1b6
pushd Docs/Book
398d1b6
make latexpdf
398d1b6
popd
398d1b6
%endif
e8e9c4d
popd
398d1b6
961f706
%if 0%{?fedora} && 0%{?with_py3}
398d1b6
# Python 3 build
398d1b6
pushd python3
398d1b6
%cmake  -D RDK_INSTALL_INTREE=OFF \
398d1b6
        -D CMAKE_BUILD_TYPE=RelWithDebInfo \
398d1b6
        -D RDK_BUILD_INCHI_SUPPORT:BOOL=ON \
398d1b6
        -D RDK_BUILD_THREADSAFE_SSS:BOOL=ON \
398d1b6
        -D RDK_BUILD_CAIRO_SUPPORT:BOOL=ON \
398d1b6
        -D RDK_BUILD_PGSQL:BOOL=ON \
398d1b6
        -D RDK_PGSQL_STATIC:BOOL=OFF \
398d1b6
        -D RDK_INSTALL_STATIC_LIBS:BOOL=OFF \
398d1b6
        -D RDK_USE_FLEXBISON:BOOL=ON \
398d1b6
        -D RDK_TEST_MULTITHREADED:BOOL=ON \
398d1b6
        -D PYTHON_EXECUTABLE:FILEPATH=%{__python3} \
224900e
%ifnarch %{ix86} x86_64
398d1b6
        -D RDK_OPTIMIZE_NATIVE:BOOL=OFF \
398d1b6
%endif
398d1b6
        .
398d1b6
#        -D RDK_BUILD_SWIG_WRAPPERS:BOOL=ON \
398d1b6
398d1b6
make %{?_smp_mflags}
398d1b6
%endif
398d1b6
398d1b6
%install
398d1b6
# install Python 2 bindings
398d1b6
pushd python2
398d1b6
make install DESTDIR=%{buildroot}
398d1b6
pushd Code/PgSQL/rdkit
398d1b6
# TODO: upstream installation should be fixed
398d1b6
install -D librdkit.so %{buildroot}%{_libdir}/pgsql/rdkit.so
398d1b6
install -D rdkit.control %{buildroot}%{_datadir}/pgsql/extension/rdkit.control
0a7b8fa
install -D rdkit--3.5.sql %{buildroot}%{_datadir}/pgsql/extension/rdkit--3.5.sql
398d1b6
popd
398d1b6
popd
398d1b6
961f706
%if 0%{?fedora} && 0%{?with_py3}
398d1b6
# install Python 3 bindings
398d1b6
pushd python3
398d1b6
make install DESTDIR=%{buildroot}
398d1b6
popd
398d1b6
%endif
398d1b6
398d1b6
# remove installed doc files
398d1b6
rm -r %{buildroot}/%{_datadir}/RDKit
398d1b6
398d1b6
# Fix rpmlint warnings
398d1b6
FMCS=%{buildroot}%{python2_sitearch}/rdkit/Chem/fmcs/fmcs
398d1b6
sed '1{\@^#!%{__python2}@d}' $FMCS.py > $FMCS.new &&
398d1b6
touch -r $FMCS.py $FMCS.new &&
398d1b6
mv $FMCS.new $FMCS.py
398d1b6
rm $FMCS
398d1b6
961f706
%if 0%{?fedora} && 0%{?with_py3}
398d1b6
FMCS=%{buildroot}%{python3_sitearch}/rdkit/Chem/fmcs/fmcs
398d1b6
sed '1{\@^#!%{__python3}@d}' $FMCS.py > $FMCS.new &&
398d1b6
touch -r $FMCS.py $FMCS.new &&
398d1b6
mv $FMCS.new $FMCS.py
398d1b6
rm $FMCS
398d1b6
%endif
398d1b6
398d1b6
%check
795c687
%if 0%{?with_tests}
398d1b6
# exclude PostgreSQL tests as they require a running DB instance
398d1b6
pushd python2
398d1b6
export RDBASE=%{_builddir}/%{rootdir}/python2
398d1b6
export LD_LIBRARY_PATH=$RDBASE/lib
398d1b6
export PYTHONPATH=$RDBASE
398d1b6
ARGS="-V -E PgSQL" make test
398d1b6
popd
398d1b6
961f706
%if 0%{?fedora} && 0%{?with_py3}
398d1b6
pushd python3
398d1b6
export RDBASE=%{_builddir}/%{rootdir}/python3
398d1b6
export LD_LIBRARY_PATH=$RDBASE/lib
398d1b6
export PYTHONPATH=$RDBASE
398d1b6
ARGS="-V -E PgSQL" make test
398d1b6
popd
398d1b6
%endif
398d1b6
%endif
398d1b6
398d1b6
%post -p /sbin/ldconfig
398d1b6
398d1b6
%postun -p /sbin/ldconfig
398d1b6
398d1b6
398d1b6
%files
398d1b6
%license license.txt
398d1b6
%doc ReleaseNotes.*
398d1b6
%{_libdir}/lib*.so.*
398d1b6
398d1b6
%files devel
398d1b6
%{_includedir}/rdkit
398d1b6
%{_libdir}/lib*.so
398d1b6
%{_libdir}/cmake/*.cmake
398d1b6
398d1b6
%files doc
961f706
%if 0%{?fedora} && 0%{?with_docs}
398d1b6
%doc python2/Docs/Book/_build/latex/RDKit.pdf
398d1b6
%endif
398d1b6
398d1b6
%files -n python2-rdkit
398d1b6
%{python2_sitearch}/rdkit
398d1b6
961f706
%if 0%{?fedora} && 0%{?with_py3}
398d1b6
%files -n python3-rdkit
398d1b6
%{python3_sitearch}/rdkit
398d1b6
%endif
398d1b6
398d1b6
%files postgresql
398d1b6
%doc python2/Code/PgSQL/rdkit/README
398d1b6
%{_libdir}/pgsql/rdkit.so
398d1b6
%{_datadir}/pgsql/extension/rdkit--*.sql
398d1b6
%{_datadir}/pgsql/extension/rdkit.control
398d1b6
398d1b6
%changelog
f84f562
* Sat Nov 26 2016 Gianluca Sforna <giallu@gmail.com> - 2016.09.2-3
f84f562
- BR eigen3-devel to activate build of more descriptors
f84f562
fb42a18
* Wed Nov 23 2016 Gianluca Sforna <giallu@gmail.com> - 2016.09.2-1
fb42a18
- new upstream release
f84f562
- clean up spec (no more EL6 builds)
fb42a18
224900e
* Mon Nov 21 2016 Dan HorĂ¡k <dan[at]danny.cz> - 2016.09.1-2
224900e
- fix non-x86 builds universally
224900e
67f7ce4
* Fri Nov 11 2016 Gianluca Sforna <giallu@gmail.com> - 2016.09.1-1
67f7ce4
- new upstream release
67f7ce4
- fix ppc/ppc64 build
1f7f4cd
- drop upstreamed patches
bbe4d3f
d5ddf9d
* Wed Nov  2 2016 Gianluca Sforna <giallu@gmail.com> - 2016.03.5-1
d5ddf9d
- new upstream release
d5ddf9d
- fix moldraw headers installation with upstream patch
d5ddf9d
- drop upstreamed patches
d5ddf9d
9680b42
* Mon Oct 10 2016 Pavel Raiskup <praiskup@redhat.com> - 2016.03.2-8
9680b42
- rebuild for postgresql 9.6.0, add guard for incompatible PG plugin
9680b42
  installation
9680b42
35dc58f
* Sun Sep 18 2016 Gianluca Sforna <giallu@gmail.com> - 2016.03.2-7
35dc58f
- fix aarch64 build
35dc58f
398d1b6
* Fri Aug 19 2016 Gianluca Sforna <giallu@gmail.com> - 2016.03.2-6
398d1b6
- fix unused-direct-shlib-dependency rpmlint warning
398d1b6
398d1b6
* Wed Aug 17 2016 Gianluca Sforna <giallu@gmail.com> - 2016.03.2-5
398d1b6
- fix wrong-script-interpreter rpmlint error
398d1b6
398d1b6
* Thu Aug 11 2016 Gianluca Sforna <giallu@gmail.com> - 2016.03.2-4
398d1b6
- skip PgSQL tests not working in the build environment
398d1b6
- fix PgSQL cartridge installation
398d1b6
398d1b6
* Fri Aug  5 2016 Gianluca Sforna <giallu@gmail.com> - 2016.03.2-3
398d1b6
- fix arm build
398d1b6
- use CMAKE to build PgSQL cartridge
398d1b6
398d1b6
* Tue Aug  2 2016 Gianluca Sforna <giallu@gmail.com> - 2016.03.2-2
398d1b6
- fix build on rawhide
398d1b6
398d1b6
* Thu Jul 21 2016 Gianluca Sforna <giallu@gmail.com> - 2016.03.2-1
398d1b6
- new upstream release
398d1b6
- fix documentation build on Fedora 24
398d1b6
- add patch for broken cartridge build
398d1b6
398d1b6
* Mon Apr 18 2016 Gianluca Sforna <giallu@gmail.com> - 2016.03.1-1
398d1b6
- new upstream release
398d1b6
398d1b6
* Fri Dec  4 2015 Gianluca Sforna <giallu@gmail.com> - 2015.09.2-2
398d1b6
- Fix tests for python 3 wrappers
398d1b6
398d1b6
* Wed Nov 18 2015 Gianluca Sforna <giallu@gmail.com> - 2015.09.2-1
398d1b6
- new upstream release
398d1b6
398d1b6
* Sun Nov  8 2015 Gianluca Sforna <giallu@gmail.com> - 2015.09.1-1
398d1b6
- new upstream release
398d1b6
398d1b6
* Sat Sep 19 2015 Gianluca Sforna <giallu@gmail.com> - 2015.03.1-3
398d1b6
- more fixes from package review
398d1b6
- activate cairo rendering
398d1b6
- add python3 wrappers
398d1b6
398d1b6
* Mon Jul  6 2015 Gianluca Sforna <giallu@gmail.com> - 2015.03.1-2
398d1b6
- activate threading
398d1b6
- always test in verbose mode
398d1b6
398d1b6
* Thu Apr 30 2015 Gianluca Sforna <giallu@gmail.com> - 2015.03.1-1
398d1b6
* new upstream release
398d1b6
398d1b6
* Mon Dec  8 2014 Gianluca Sforna <giallu@gmail.com> - 2014.09.2-1
398d1b6
- new upstream release
398d1b6
398d1b6
* Wed Oct 29 2014 Gianluca Sforna <giallu@gmail.com> - 2014.09.1-1
398d1b6
- new upstream release
398d1b6
- rebase patches
398d1b6
398d1b6
* Wed Jul 16 2014 Gianluca Sforna <giallu@gmail.com> - 2014.03.1-3
398d1b6
- let base package own _datadir/RDKit
398d1b6
398d1b6
* Tue May 27 2014 Gianluca Sforna <giallu@gmail.com> - 2014.03.1-2
398d1b6
- fix EPEL build by adding python2_* macros
398d1b6
398d1b6
* Mon May 12 2014 Gianluca Sforna <giallu@gmail.com> - 2014.03.1-1
398d1b6
- new upstream release
398d1b6
- disable static build with cmake flag, drop related patch
398d1b6
398d1b6
* Sun Mar 30 2014 Gianluca Sforna <giallu@gmail.com> - 2013.09.2-1
398d1b6
- new upstream release
398d1b6
- more spec fixes from review ticket
398d1b6
398d1b6
* Mon Jan  6 2014 Gianluca Sforna <giallu@gmail.com> - 2013.09.1-2
398d1b6
- move cmake files under %%_libdir/cmake
398d1b6
398d1b6
* Mon Nov 11 2013 Gianluca Sforna <giallu@gmail.com> - 2013.09.1-1
398d1b6
- new upstream release
398d1b6
398d1b6
* Tue Jul 30 2013 Gianluca Sforna <giallu@gmail.com> - 2013.06.1-2
398d1b6
- use %%cmake macro
398d1b6
- fix tests in rawhide
398d1b6
398d1b6
* Sun Jul 28 2013 Gianluca Sforna <giallu@gmail.com> - 2013.06.1-1
398d1b6
- new upstream release
398d1b6
- spec clean up
398d1b6
398d1b6
* Thu May 30 2013 Gianluca Sforna <giallu@gmail.com> - 2013.03.2-1
398d1b6
- new upstream release
398d1b6
- fix shebang on rdkit/Chem/MCS.py
398d1b6
398d1b6
* Wed May 29 2013 Gianluca Sforna <giallu@gmail.com> - 2013.03-2
398d1b6
- spec fixes from package review (#804125)
398d1b6
398d1b6
* Sat Apr 27 2013 Gianluca Sforna <giallu@gmail.com> - 2013.03-1
398d1b6
- new upstream release
398d1b6
398d1b6
* Wed Feb  6 2013 Gianluca Sforna <giallu@gmail.com> - 2012.12-2
398d1b6
- add inchi support
398d1b6
398d1b6
* Tue Jan 22 2013 Gianluca Sforna <giallu@gmail.com> - 2012.12-1
398d1b6
- New upstream release
398d1b6
- BR fonts package
398d1b6
398d1b6
* Sun Oct 21 2012 Gianluca Sforna <giallu@gmail.com> - 2012.09-1
398d1b6
- New upstream release
398d1b6
- add python related requires
398d1b6
398d1b6
* Wed Jul 11 2012 Gianluca Sforna <giallu@gmail.com> - 2012.06-1
398d1b6
- New upstream release
398d1b6
398d1b6
* Fri Apr 13 2012 Gianluca Sforna <giallu@gmail.com> - 2012.03-1
398d1b6
- New upstream release
398d1b6
- Fix some packaging issues as per review (#804125)
398d1b6
398d1b6
* Wed Mar 07 2012 Gianluca Sforna <giallu@gmail.com> - 2011.12-1
398d1b6
- New upstream release
398d1b6
398d1b6
* Mon Dec 05 2011 Gianluca Sforna <giallu@gmail.com> - 2011.09-2.20111202svn1877
398d1b6
- Package a newer snapshot for postgres 9.1 support
398d1b6
- Remove rpath from postgres cartridge
398d1b6
398d1b6
* Fri Nov 25 2011 Gianluca Sforna <giallu@gmail.com> - 2011.09-1
398d1b6
- New upstream release
398d1b6
- rebase patches
398d1b6
- drop upstreamed patch
398d1b6
398d1b6
* Mon Aug 15 2011 Gianluca Sforna <giallu@gmail.com> - 2011.06-2
398d1b6
- Final release
398d1b6
- add SDMOlsupplier patch, fixes loop on tests
398d1b6
398d1b6
* Wed Jul  6 2011 Gianluca Sforna <giallu@gmail.com> - 2011.06-1
398d1b6
- New upstream (beta) release
398d1b6
- rebase patches
398d1b6
398d1b6
* Mon Jun 13 2011 Gianluca Sforna <giallu@gmail.com> - 2011.03-1
398d1b6
- New upstream release
398d1b6
- drop upstreamed patch
398d1b6
398d1b6
* Wed Apr  6 2011 Gianluca Sforna <giallu@gmail.com> - 2010.12-3
398d1b6
- Add draw_refactoring patch
398d1b6
398d1b6
* Fri Jan 14 2011 Gianluca Sforna <giallu@gmail.com> - 2010.12-2
398d1b6
- New upstream release
398d1b6
- filter auto-provides for python extensions
398d1b6
398d1b6
* Thu Dec 30 2010 Gianluca Sforna <giallu@gmail.com> - 2010.12-1
398d1b6
- New upstream (beta) release
398d1b6
- drop upstream patch
398d1b6
- add patches for rpath, static libs
398d1b6
- Fix spurious executable bits
398d1b6
398d1b6
* Mon Oct  4 2010 Gianluca Sforna <giallu@gmail.com> - 2010.09-1
398d1b6
- New upstream release
398d1b6
- Move build in tree to support tests
398d1b6
- build PostgreSQL cartridge
398d1b6
398d1b6
* Tue Sep  7 2010 Gianluca Sforna <giallu gmail com>
398d1b6
- Split subpackages
398d1b6
398d1b6
* Mon Jul  5 2010 Gianluca Sforna <giallu gmail com> - 2010.Q2-1
398d1b6
- Initial package