123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- Name: rasqal
- Summary: RDF Query Library
- Version: 0.9.28
- Release: 1%{?_dist_release}
- Group: System Environment/Libraries
- License: LGPLv2+ or ASL 2.0
- URL: http://librdf.org/rasqal/
- Source: http://download.librdf.org/source/%{name}-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: libxml2-devel
- BuildRequires: mpfr-devel
- BuildRequires: pcre-devel
- BuildRequires: raptor2-devel
- # for the testsuite
- BuildRequires: perl-XML-DOM
- %description
- Rasqal is a library providing full support for querying Resource
- Description Framework (RDF) including parsing query syntaxes, constructing
- the queries, executing them and returning result formats. It currently
- handles the RDF Data Query Language (RDQL) and SPARQL Query language.
- %package devel
- Summary: Libraries, includes etc to develop with the Rasqal RDF query library
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: raptor2-devel
- %description devel
- Libraries, includes etc to develop with the Rasqal RDF query language library.
- %prep
- %setup -q
- # hack to nuke rpaths
- %if "%{_libdir}" != "/usr/lib"
- sed -i -e 's|"/lib /usr/lib|"/%{_lib} %{_libdir}|' configure
- %endif
- %build
- %configure --enable-release --enable-silent-rules --disable-static
- make %{?_smp_mflags}
- %install
- [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT
- # unpackaged files
- rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
- %check
- if [ -x %{_bindir}/rapper ]; then
- %ifarch ppc64 s390x
- make -k check ||:
- %else
- make -k check
- %endif
- else
- echo "WARNING: %{_bindir}/rapper not present in buildroot, 'make check' skipped"
- fi
- %clean
- [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-, root, root)
- %doc AUTHORS COPYING COPYING.LIB ChangeLog LICENSE.txt NEWS README
- %doc LICENSE-2.0.txt NOTICE
- %doc *.html
- %{_libdir}/librasqal*.so.*
- %{_bindir}/roqet
- %{_mandir}/man1/roqet.1*
- %{_mandir}/man3/librasqal.3*
- %files devel
- %defattr(-, root, root)
- %doc docs/README.html
- %{_bindir}/rasqal-config
- %{_libdir}/librasqal*.so
- %{_libdir}/pkgconfig/rasqal.pc
- %{_includedir}/*
- %{_mandir}/man1/rasqal-config.1*
- %doc %{_datadir}/gtk-doc/html
- %changelog
- * Sun Nov 20 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.28-1
- - new upstream release
- * Fri Nov 04 2011 NAKAMURA Kenta <kenta@vinelinux.org> 0.9.26-2
- - rebuilt with mpfr-3.1.0
- * Thu Aug 18 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.26-1
- - new upstream release
- * Mon Sep 20 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.20-1
- - new upstream release
- - rebuilt with rpm-4.8.1
- * Sun Mar 14 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.19-1
- - new upstream release
- * Sun Feb 6 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.17-1
- - new upstream release
- - built with new toolchain
- * Wed Aug 26 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.16-1
- - new upstream release
- * Sat Mar 29 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.15-1
- - fix release
- - drop .a
- * Thu Feb 21 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.15-0vl2
- - drop .la
- * Wed Dec 12 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.15-0vl1
- - new upstream release
- * Fri May 18 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.14-0vl1
- - initial release for VineSeed
- * Wed Aug 11 2005 Dave Beckett <dave.beckett@bristol.ac.uk>
- - Update Source:
- - Use %%makeinstall
- * Wed Aug 10 2005 Dave Beckett <dave.beckett@bristol.ac.uk>
- - Use %%configure.
- * Fri Jul 28 2005 Dave Beckett <dave.beckett@bristol.ac.uk>
- - Updated for gtk-doc locations
- * Fri Oct 22 2004 <Dave.Beckett@bristol.ac.uk>
- - License now LGPL/Apache 2
- - Added LICENSE-2.0.txt and NOTICE
- * Wed May 5 2004 <Dave.Beckett@bristol.ac.uk>
- - Ship roqet and roqet.1
- * Sat May 1 2004 <Dave.Beckett@bristol.ac.uk>
- - Requires raptor 1.3.0
- * Mon Feb 24 2004 <Dave.Beckett@bristol.ac.uk>
- - Requires raptor
- * Mon Aug 11 2003 <Dave.Beckett@bristol.ac.uk>
- - Initial packaging
|