Blame SPECS/soprano.spec

fcccde
fcccde
# undef or set to 0 to disable items for a faster build
fcccde
%global apidocs 1
fcccde
## upstream says tests busted, maybe to be fixed in some future point release
fcccde
#global tests 1
fcccde
fcccde
Summary: Qt wrapper API to different RDF storage solutions
fcccde
Name:    soprano
fcccde
Version: 2.9.2
fcccde
Release: 3%{?dist}
fcccde
fcccde
License: LGPLv2+
fcccde
URL:     http://sourceforge.net/projects/soprano
fcccde
%if 0%{?snap:1}
fcccde
# git clone git://anongit.kde.org/soprano ; cd soprano
fcccde
# git archive --prefix=soprano-%{version}/ master | bzip2 > soprano-%{version}-%{snap}.tar.bz2
fcccde
Source0: soprano-%{version}-%{snap}.tar.bz2
fcccde
%else
fcccde
Source0: http://downloads.sf.net/soprano/soprano-%{version}.tar.bz2
fcccde
%endif
fcccde
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
fcccde
fcccde
## upstreamable patches
fcccde
fcccde
## upstream patches
fcccde
fcccde
BuildRequires: clucene-core-devel >= 0.9.20-2
fcccde
BuildRequires: cmake
fcccde
BuildRequires: kde-filesystem
fcccde
# for backends/virtuoso
fcccde
BuildRequires: libiodbc-devel
fcccde
BuildRequires: pkgconfig
fcccde
BuildRequires: pkgconfig(raptor2)
fcccde
BuildRequires: pkgconfig(rasqal) >= 0.9.22
fcccde
BuildRequires: pkgconfig(redland)
fcccde
BuildRequires: pkgconfig(QtDBus) pkgconfig(QtNetwork) pkgconfig(QtXml) 
fcccde
%if 0%{?tests}
fcccde
BuildRequires: virtuoso-opensource
fcccde
%endif
fcccde
fcccde
%if 0%{?apidocs}
fcccde
BuildRequires: doxygen
fcccde
BuildRequires: graphviz
fcccde
BuildRequires: qt4-doc
fcccde
%endif
fcccde
fcccde
%{?_qt4_version:Requires: qt4%{?_isa} >= %{_qt4_version}}
fcccde
## not sure if  this is really needed -- rex
fcccde
Requires: redland-virtuoso
fcccde
## If/When backends are packaged separately
fcccde
#Requires: soprano-backend
fcccde
## otherwise,
fcccde
Provides: soprano-backend = %{version}-%{release}
fcccde
Provides: soprano-backend-redland =  %{version}-%{release}
fcccde
Provides: soprano-backend-virtuoso = %{version}-%{release}
fcccde
## nepomuk upstream recommends this be in nepomuk-core, and strictly optional here -- rex
fcccde
#Requires: virtuoso-opensource
fcccde
fcccde
%description
fcccde
%{summary}.
fcccde
fcccde
%package devel
fcccde
Summary: Developer files for %{name}
fcccde
Requires: %{name}%{?_isa} = %{version}-%{release}
fcccde
%description devel
fcccde
%{summary}.
fcccde
fcccde
%package backend-redland 
fcccde
Summary: Redland backend for %{name}
fcccde
Provides: %{name}-backend = %{version}-%{release}
fcccde
Requires: %{name}%{?_isa} = %{version}-%{release}
fcccde
%description backend-redland 
fcccde
%{summary}.
fcccde
fcccde
%package backend-virtuoso
fcccde
Summary: Virtuoso backend for %{name}
fcccde
Provides: %{name}-backend = %{version}-%{release}
fcccde
Requires: %{name}%{?_isa} = %{version}-%{release}
fcccde
## not sure if  this is really needed -- rex
fcccde
Requires: redland-virtuoso
fcccde
## nepomuk upstream recommends this be in nepomuk-core, and strictly optional here -- rex
fcccde
#Requires: virtuoso-opensource
fcccde
%description backend-virtuoso 
fcccde
%{summary}.
fcccde
fcccde
%package apidocs
fcccde
Summary: Soprano API documentation
fcccde
Requires: kde-filesystem
fcccde
BuildArch: noarch
fcccde
%description apidocs
fcccde
This package includes the Soprano API documentation in HTML
fcccde
format for easy browsing.
fcccde
fcccde
fcccde
%prep
fcccde
%if 0%{?prerelease_tag:1}
fcccde
%setup -q -n soprano-%{version}-%{prerelease_tag}
fcccde
%else
fcccde
%setup -q -n soprano-%{version}
fcccde
%endif
fcccde
fcccde
fcccde
%build
fcccde
fcccde
mkdir -p %{_target_platform}
fcccde
pushd %{_target_platform}
fcccde
%{cmake} \
fcccde
  -DDATA_INSTALL_DIR:PATH=%{_kde4_appsdir} \
fcccde
  -DQT_DOC_DIR=%{?_qt4_docdir}%{!?_qt4_docdir:%(pkg-config --variable=docdir Qt)} \
fcccde
  -DSOPRANO_BUILD_API_DOCS:BOOL=%{!?apidocs:0}%{?apidocs} \
fcccde
  -DSOPRANO_BUILD_TESTS:BOOL=%{?tests:ON}%{!?tests:OFF} \
fcccde
  -DSOPRANO_DISABLE_SESAME2_BACKEND:BOOL=ON \
fcccde
  .. 
fcccde
popd
fcccde
fcccde
make %{?_smp_mflags} -C %{_target_platform}
fcccde
fcccde
fcccde
%install
fcccde
rm -rf $RPM_BUILD_ROOT
fcccde
fcccde
make install/fast DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
fcccde
fcccde
%if 0%{?apidocs}
fcccde
mkdir -p %{buildroot}%{_kde4_docdir}/HTML/en
fcccde
cp -a %{_target_platform}/docs/html %{buildroot}%{_kde4_docdir}/HTML/en/soprano-apidocs
fcccde
# spurious executables, pull in perl dep(s)
fcccde
find %{buildroot}%{_kde4_docdir}/HTML/en/ -name 'installdox' -exec rm -fv {} ';'
fcccde
%endif
fcccde
fcccde
fcccde
%check
fcccde
# verify pkg-config version (notoriously wrong in recent soprano releases)
fcccde
export PKG_CONFIG_PATH=%{buildroot}%{_datadir}/pkgconfig:%{buildroot}%{_libdir}/pkgconfig
fcccde
test "$(pkg-config --modversion soprano)" = "%{version}"
fcccde
%if 0%{?tests:1}
fcccde
## expected doing manual build (with active dbus/user session?)
fcccde
## TODO/FIXME: mock builds have many more, find out why.
fcccde
#The following tests FAILED:
fcccde
#         13 - parsertest (Failed)
fcccde
#         14 - serializertest (Failed)
fcccde
#         17 - cluceneindextest (Failed)
fcccde
#         19 - sopranodclienttest (Failed)
fcccde
#         20 - localsocketmultithreadtest (Failed)
fcccde
#         21 - sopranodsocketclienttest (Failed)
fcccde
#         22 - sopranodbusclienttest (Failed)
fcccde
#         23 - sopranodbusmultithreadtest (OTHER_FAULT)
fcccde
#         25 - virtuosobackendtest (Failed)
fcccde
#         26 - graphtest (Failed)
fcccde
make -C %{_target_platform}/test test ||:
fcccde
%endif
fcccde
fcccde
fcccde
%clean
fcccde
rm -rf $RPM_BUILD_ROOT
fcccde
fcccde
fcccde
%post -p /sbin/ldconfig
fcccde
%postun -p /sbin/ldconfig
fcccde
fcccde
%files
fcccde
%doc AUTHORS COPYING* README TODO
fcccde
%{_bindir}/sopranocmd
fcccde
%{_bindir}/sopranod
fcccde
%{_bindir}/onto2vocabularyclass
fcccde
%{_libdir}/libsoprano.so.4*
fcccde
%{_libdir}/libsopranoclient.so.1*
fcccde
%{_libdir}/libsopranoindex.so.1*
fcccde
%{_libdir}/libsopranoserver.so.1*
fcccde
%{_datadir}/dbus-1/interfaces/org.soprano.*.xml
fcccde
%dir %{_datadir}/soprano/
fcccde
%dir %{_datadir}/soprano/plugins
fcccde
%{_datadir}/soprano/plugins/*parser.desktop
fcccde
%{_datadir}/soprano/plugins/*serializer.desktop
fcccde
%{_datadir}/soprano/rules/
fcccde
%dir %{_libdir}/soprano/
fcccde
%{_libdir}/soprano/libsoprano_*parser.so
fcccde
%{_libdir}/soprano/libsoprano_*serializer.so
fcccde
fcccde
#files backend-redland
fcccde
%{_libdir}/soprano/libsoprano_redlandbackend.so
fcccde
%{_datadir}/soprano/plugins/redlandbackend.desktop
fcccde
fcccde
#files backend-virtuoso
fcccde
%{_libdir}/soprano/libsoprano_virtuosobackend.so
fcccde
%{_datadir}/soprano/plugins/virtuosobackend.desktop
fcccde
fcccde
%files devel
fcccde
%{_datadir}/soprano/cmake/
fcccde
%{_libdir}/libsoprano*.so
fcccde
%{_libdir}/pkgconfig/soprano.pc
fcccde
%{_libdir}/pkgconfig/sopranoclient.pc
fcccde
%{_libdir}/pkgconfig/sopranoindex.pc
fcccde
%{_libdir}/pkgconfig/sopranoserver.pc
fcccde
%{_includedir}/soprano/
fcccde
%{_includedir}/Soprano/
fcccde
fcccde
%if 0%{?apidocs}
fcccde
%files apidocs
fcccde
%{_kde4_docdir}/HTML/en/soprano-apidocs/
fcccde
%endif
fcccde
fcccde
fcccde
%changelog
fcccde
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.9.2-3
fcccde
- Mass rebuild 2014-01-24
fcccde
fcccde
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.9.2-2
fcccde
- Mass rebuild 2013-12-27
fcccde
fcccde
* Fri May 10 2013 Rex Dieter <rdieter@fedoraproject.org> 2.9.2-1
fcccde
- soprano-2.9.2
fcccde
fcccde
* Thu May 02 2013 Rex Dieter <rdieter@fedoraproject.org> 2.9.1-1
fcccde
- soprano-2.9.1 (#891265)
fcccde
fcccde
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.0-2
fcccde
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
fcccde
fcccde
* Wed Jan 02 2013 Rex Dieter <rdieter@fedoraproject.org> - 2.9.0-1
fcccde
- 2.9.0
fcccde
- disable tests for now
fcccde
- omit QT_NO_DEBUG_OUTPUT hack, handled properly now
fcccde
fcccde
* Mon Dec 24 2012 Rex Dieter <rdieter@fedoraproject.org> 2.8.0-5
fcccde
- backport some upstream fixes
fcccde
fcccde
* Fri Aug 10 2012 Rex Dieter <rdieter@fedoraproject.org> - 2.8.0-4
fcccde
- move virtuoso dep to nepomuk-core
fcccde
- remove .spec cruft
fcccde
fcccde
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-3
fcccde
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
fcccde
fcccde
* Tue Jul 24 2012 Rex Dieter <rdieter@fedoraproject.org> 2.8.0-2
fcccde
- rebuild
fcccde
fcccde
* Wed Jun 27 2012 Jaroslav Reznik <jreznik@redhat.com> 2.8.0-1
fcccde
- soprano-2.8.0
fcccde
fcccde
* Fri Jun 08 2012 Rex Dieter <rdieter@fedoraproject.org> 2.7.57-1
fcccde
- soprano-2.7.57
fcccde
fcccde
* Wed May 30 2012 Rex Dieter <rdieter@fedoraproject.org> 2.7.56-2
fcccde
- restore SC / BC with a stub impl of tcpclient 
fcccde
fcccde
* Wed May 30 2012 Jaroslav Reznik <jreznik@redhat.com> 2.7.56-1
fcccde
- soprano-2.7.56 beta 1 release
fcccde
fcccde
* Mon May 28 2012 Jaroslav Reznik <jreznik@redhat.com> 2.7.56-0.1.20120528
fcccde
- soprano-2.7.56-20120528 snapshot
fcccde
fcccde
* Sat May 19 2012 Rex Dieter <rdieter@fedoraproject.org> 2.7.6-1
fcccde
- 2.7.6
fcccde
fcccde
* Tue May 08 2012 Rex Dieter <rdieter@fedoraproject.org> 2.7.5-3
fcccde
- use/rely-on Qt pkgconfig deps
fcccde
fcccde
* Wed Apr 18 2012 Jaroslav Reznik <jreznik@redhat.com> 2.7.5-2
fcccde
- include 'installdox' script for el
fcccde
fcccde
* Tue Mar 06 2012 Rex Dieter <rdieter@fedoraproject.org> 2.7.5-1
fcccde
- 2.7.5
fcccde
- include our own 'installdox' script (doxygen-1.8+ no longer provides it)
fcccde
fcccde
* Sat Jan 14 2012 Rex Dieter <rdieter@fedoraproject.org> 2.7.4-3
fcccde
- backport upstream gcc47 fix
fcccde
fcccde
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.4-2
fcccde
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
fcccde
fcccde
* Sat Dec 03 2011 Rex Dieter <rdieter@fedoraproject.org> 2.7.4-1
fcccde
- 2.7.4 (#759721)
fcccde
fcccde
* Tue Nov 01 2011 Rex Dieter <rdieter@fedoraproject.org> 2.7.3-1
fcccde
- 2.7.3
fcccde
fcccde
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.2-3
fcccde
- Rebuilt for glibc bug#747377
fcccde
fcccde
* Fri Oct 21 2011 Rex Dieter <rdieter@fedoraproject.org> 2.7.2-2
fcccde
- unconditionally set -DQT_NO_DEBUG_OUTPUT
fcccde
fcccde
* Fri Oct 21 2011 Rex Dieter <rdieter@fedoraproject.org> 2.7.2-1
fcccde
- soprano-2.7.2 (#747906)
fcccde
- disable DEBUG for pre-rawhide builds (#746499) 
fcccde
fcccde
* Sun Sep 25 2011 Rex Dieter <rdieter@fedoraproject.org> 2.7.1-1
fcccde
- soprano-2.7.1 is available (#741005)
fcccde
fcccde
* Thu Aug 04 2011 Rex Dieter <rdieter@fedoraproject.org> 2.7.0-1
fcccde
- 2.7.0
fcccde
fcccde
* Mon Jul 25 2011 Rex Dieter <rdieter@fedoraproject.org> 2.6.52-2.20110723
fcccde
- update raptor/rasqal deps
fcccde
fcccde
* Sat Jul 23 2011 Rex Dieter <rdieter@fedoraproject.org> 2.6.52-1.20110723
fcccde
- soprano-2.6.52 20110723 snapshot
fcccde
fcccde
* Tue Jul 19 2011 Karsten Hopp <karsten@redhat.com> 2.6.51-0.3.20110602
fcccde
- rebuild again, PPC picked up wrong dependencies
fcccde
fcccde
* Mon Jun 06 2011 Rex Dieter <rdieter@fedoraproject.org> 2.6.51-0.2.20110602
fcccde
- rebuild (clucene)
fcccde
fcccde
* Thu Jun 02 2011 Rex Dieter <rdieter@fedoraproject.org> 2.6.51-0.1.20110602
fcccde
- soprano-2.6.51 20110602 snapshot
fcccde
fcccde
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0-2
fcccde
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
fcccde
fcccde
* Wed Feb 02 2011 Rex Dieter <rdieter@fedoraproject.org> 2.6.0-1
fcccde
- soprano-2.6.0
fcccde
fcccde
* Tue Jan 25 2011 Rex Dieter <rdieter@fedoraproject.org> 2.5.63-3
fcccde
- rebuild (gcc)
fcccde
- use upstreamable rpath fix
fcccde
fcccde
* Tue Nov 23 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.5.63-2
fcccde
- soprano-2.5.63 (release)
fcccde
fcccde
* Sat Nov 20 2010 Rex Dieter <rdieter@fedoraproject.org> -  2.5.63-1.20101120
fcccde
- soprano-2.5.63-20101120 snapshot
fcccde
fcccde
* Fri Sep 10 2010 Thomas Janssen <thomasj@fedoraproject.org> 2.5.2-1
fcccde
- update to soprano 2.5.2
fcccde
fcccde
* Wed Sep 08 2010 Thomas Janssen <thomasj@fedoraproject.org> - 2.5.1-1
fcccde
- soprano-2.5.1
fcccde
fcccde
* Mon Aug 23 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.5.0-2
fcccde
- Requires: qt4 ...
fcccde
- tighten subpkg pkg deps with %%{?_isa}
fcccde
fcccde
* Sat Aug 07 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.5.0-1
fcccde
- soprano-2.5.0
fcccde
fcccde
* Sat Jul 24 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.64-3
fcccde
- -apidocs: remove spurious perl dep, move to %%_kde4_docdir/HTML/en/
fcccde
fcccde
* Sat Jul 24 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.64-1
fcccde
- soprano-2.4.64
fcccde
fcccde
* Thu Jun 10 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.63-3
fcccde
- Requires: redland-virtuoso (f14+)
fcccde
fcccde
* Wed May 26 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.63-2
fcccde
- soprano 2.4.63 (official)
fcccde
fcccde
* Fri May 21 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.63-1.20100521
fcccde
- soprano 2.4.63 20100521 snapshot
fcccde
fcccde
* Sun Apr 25 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.3-2
fcccde
- fix version, and test to %%check 
fcccde
fcccde
* Thu Apr 22 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.3-1
fcccde
- soprano-2.4.3
fcccde
fcccde
* Sat Apr 17 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.2-1
fcccde
- soprano-2.4.2
fcccde
fcccde
* Tue Mar 23 2010 Kevin Kofler <Kevin@tigcc.ticalc.org> - 2.4.1-3
fcccde
- disable debugging output (-DQT_NO_DEBUG_OUTPUT)
fcccde
fcccde
* Tue Mar 09 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.1-2
fcccde
- fix version string in CMakeLists.txt
fcccde
fcccde
* Fri Mar 05 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.1-1
fcccde
- soprano-2.4.1
fcccde
fcccde
* Thu Feb 11 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.0.1-1
fcccde
- soprano-2.4.0.1
fcccde
fcccde
* Tue Feb 09 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.4.0-1
fcccde
- soprano-2.4.0
fcccde
- %%build: explictly %%{_cmake_skip_rpath}, need to poke on cmake to see why 
fcccde
  %%{_libdir} is getting rpath'd here
fcccde
fcccde
* Sat Jan 30 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.3.73-0.1.20100130
fcccde
- soprano-2.3.73 (20100130 snapshot)
fcccde
fcccde
* Sun Jan 03 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.3.70-3
fcccde
- redland_version_check patch
fcccde
fcccde
* Sun Jan 03 2010 Rex Dieter <rdieter@fedoraproject.org> - 2.3.70-2
fcccde
- rebuild (redland)
fcccde
fcccde
* Wed Dec 02 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.3.70-1
fcccde
- soprano-2.3.70 (#543440)
fcccde
fcccde
* Wed Nov 18 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.3.68-0.1.20091118
fcccde
- soprano-2.3.68 (20091118 snapshot)
fcccde
fcccde
* Mon Nov 02 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.3.67-0.1.20091102
fcccde
- soprano-2.3.67 (20091102 snapshot)
fcccde
- Provides: soprano-backend-virtuoso
fcccde
fcccde
* Tue Oct 20 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.3.65-0.2.20091020
fcccde
- soprano-2.3.65 (20091020 snapshot)
fcccde
- Requires: virtuoso-opensource
fcccde
fcccde
* Fri Oct 09 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.3.63-0.1.20091009
fcccde
- soprano-2.3.63 (20091009 snapshot)
fcccde
fcccde
* Mon Sep 14 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.3.1-1
fcccde
- soprano-2.3.1
fcccde
fcccde
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
fcccde
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
fcccde
fcccde
* Thu Jul 16 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.3.0-1
fcccde
- soprano-2.3.0
fcccde
- upstream dropped virtuoso backend  ):
fcccde
fcccde
* Fri Jun 26 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.2.69-1
fcccde
- soprano-2.2.69
fcccde
fcccde
* Tue Jun 09 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.2.67-2
fcccde
- upstream soprano-2.2.67 tarball
fcccde
fcccde
* Wed Jun 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.2.67-1
fcccde
- soprano-2.2.67, 20090603 snapshot from kdesupport 
fcccde
fcccde
* Wed May  6 2009 Rex Dieter <rdieter@fedoraproject.org> - 2.2.3-2
fcccde
- %%files: drop ownership of %%_datadir/dbus-1.0/interfaces (#334681)
fcccde
- %%files: track shlib sonames
fcccde
- make -apidocs noarch
fcccde
fcccde
* Mon Mar  2 2009 Lukáš Tinkl <ltinkl@redhat.com> - 2.2.3-1
fcccde
- update to 2.2.3, fix apidox building
fcccde
fcccde
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-2
fcccde
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
fcccde
fcccde
* Thu Jan 29 2009 Lukáš Tinkl <ltinkl@redhat.com> 2.2.1-1
fcccde
- update to 2.2.1
fcccde
fcccde
* Tue Jan 27 2009 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.2-1
fcccde
- update to 2.2
fcccde
fcccde
* Fri Jan 09 2009 Than Ngo <than@redhat.com> - 2.1.64-1
fcccde
- update to 2.1.64 (2.2 beta 1)
fcccde
fcccde
* Sun Sep 28 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.1.1-1
fcccde
- update to 2.1.1
fcccde
fcccde
* Tue Jul 22 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.1-1
fcccde
- update to 2.1
fcccde
- BR graphviz for apidocs
fcccde
fcccde
* Fri Jul 11 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.0.99-1
fcccde
- update to 2.0.99 (2.1 RC 1)
fcccde
fcccde
* Thu May 1 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.0.98-1
fcccde
- update to 2.0.98 (2.1 alpha 1)
fcccde
fcccde
* Thu Mar 6 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.0.3-2
fcccde
- build apidocs and put them into an -apidocs subpackage (can be turned off)
fcccde
- BR doxygen and qt4-doc when building apidocs
fcccde
fcccde
* Tue Mar 4 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.0.3-1
fcccde
- update to 2.0.3 (bugfix release)
fcccde
fcccde
* Fri Feb 22 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.0.2-1
fcccde
- update to 2.0.2 (bugfix release)
fcccde
- drop glibc/open (missing mode) patch (fixed upstream)
fcccde
fcccde
* Sat Feb 9 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.0.0-2
fcccde
- rebuild for GCC 4.3
fcccde
fcccde
* Mon Jan 07 2008 Than Ngo <than@redhat.com> 2.0.0-1
fcccde
- 2.0.0
fcccde
fcccde
* Sun Dec 2 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.98.0-1
fcccde
- soprano-1.98.0 (soprano 2 rc 1)
fcccde
- update glibc/open patch
fcccde
fcccde
* Sat Nov 10 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.97.1-2
fcccde
- glibc/open patch
fcccde
fcccde
* Sat Nov 10 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.97.1-1
fcccde
- soprano-1.97.1 (soprano 2 beta 4)
fcccde
fcccde
* Fri Oct 26 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.95.0-3
fcccde
- BR clucene-core-devel >= 0.9.20-2 to make sure we get a fixed package
fcccde
fcccde
* Fri Oct 26 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.95.0-2
fcccde
- drop findclucene patch, fixed in clucene-0.9.20-2
fcccde
fcccde
* Tue Oct 16 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 1.95.0-1
fcccde
- update to 1.95.0 (Soprano 2 beta 2)
fcccde
- new BRs clucene-core-devel, raptor-devel >= 1.4.15
fcccde
- now need redland-devel >= 1.0.6
fcccde
- add patch to find CLucene (clucene-config.h is moved in the Fedora package)
fcccde
- new Requires: pkg-config for -devel
fcccde
fcccde
* Wed Aug 22 2007 Rex Dieter <rdietr[AT]fedoraproject.org> 0.9.0-4
fcccde
- respin (BuildID)
fcccde
fcccde
* Fri Aug 3 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 0.9.0-3
fcccde
- specify LGPL version in License tag
fcccde
fcccde
* Sun Jul 15 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 0.9.0-2
fcccde
- BR: cmake (doh)
fcccde
fcccde
* Wed Jun 27 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 0.9.0-1
fcccde
- soprano-0.9.0
fcccde
- first try
fcccde