Blame SPECS/soprano.spec

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