OBS User unknown 2007-08-09 19:14:21 +00:00 committed by Git OBS Bridge
parent f3a32aec1b
commit 3d2077a3b5
4 changed files with 47 additions and 25 deletions

3
raptor-1.4.15.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c22d71259897ce8f0658824e34bf105282192008817cd587ac5c03c07a78f6a
size 1053749

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df391e58c8ee3cd1efd8f1bef7ae6dc103c1479ec9e54511e5a933d057983efc
size 1445553

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Tue Aug 7 07:43:21 CEST 2007 - crrodriguez@suse.de
- as per http://lists.opensuse.org/opensuse-packaging/2007-07/msg00049.html
taking manteniance of this package
- use system libcurl for web access
- use libxslt as well (adds grdd parser support)
- remove nasty la file that causes significant bloat
- Fix build and devel package dependencies (raptor.h only requires glibc-devel)
- remove static libraries
- run ldconfig correctly
- run make check on rpm check section.
-------------------------------------------------------------------
Fri May 4 08:42:11 CEST 2007 - dmueller@suse.de

View File

@ -11,16 +11,15 @@
# norootforbuild
Name: raptor
BuildRequires: gtkdoc libxml2-devel
BuildRequires: curl-devel gtkdoc libxml2-devel libxslt-devel
Summary: Raptor RDF Parser Toolkit
Version: 1.4.15
Release: 6
Release: 28
License: The Apache Software License
Group: System/Libraries
Source: %{name}-%{version}.tar.gz
Source: %{name}-%{version}.tar.bz2
URL: http://www.redland.opensource.ac.uk/raptor/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: libraptor1
%description
Raptor is the RDF Parser Toolkit for Redland that provides a set of
@ -49,9 +48,9 @@ Authors:
%package -n libraptor-devel
Summary: Development package for the raptor library
Group: Development/Libraries/C and C++
Requires: libraptor1 = %{version} glibc-devel libxml2-devel
Provides: raptor-devel = %{name}-%{version}
Obsoletes: raptor-devel < %{name}-%{version}
Requires: libraptor1 = %{version} glibc-devel
Provides: raptor-devel = %{version}
Obsoletes: raptor-devel < %{version}
%description -n libraptor-devel
This package contains the files needed to compile programs that use the
@ -64,39 +63,39 @@ Authors:
Dave Beckett <dave@dajobe.org>
%prep
%setup
autoreconf --force --install
%{?suse_update_config:%{suse_update_config -f}}
%setup -q
%build
%configure --with-html-dir=%{_docdir}
make
autoreconf -fi
%configure --disable-static --with-pic --with-html-dir=%{_docdir}
%{__make} %{?jobs:-j%jobs}
%install
make DESTDIR="$RPM_BUILD_ROOT" install
mv $RPM_BUILD_ROOT%{_docdir}/raptor $RPM_BUILD_ROOT%{_docdir}/raptor-devel
%{__make} DESTDIR="%{buildroot}" install
mv %{buildroot}%{_docdir}/raptor %{buildroot}%{_docdir}/raptor-devel
#causes some ugly dependency bloat..
%{__rm} -f %{buildroot}%{_libdir}/libraptor.la
%post
%run_ldconfig
%check
%{__make} check
%postun
%run_ldconfig
%post -n libraptor1 -p /sbin/ldconfig
%postun -n libraptor1 -p /sbin/ldconfig
%clean
test "$RPM_BUILD_ROOT" != "/" -a -d "$RPM_BUILD_ROOT" && rm -rf $RPM_BUILD_ROOT
%{__rm} -rf %{buildroot}
%files
%defattr(-,root,root)
%doc AUTHORS COPYING COPYING.LIB ChangeLog LICENSE.txt NEWS README
%{_bindir}/rapper
%{_mandir}/man?/*
%doc %{_mandir}/man?/*
%files -n libraptor-devel
%defattr(-,root,root)
%doc %{_docdir}/raptor-devel
%{_libdir}/lib*.so
%{_libdir}/lib*.a
%{_libdir}/lib*.la
%{_includedir}/*
%{_bindir}/*-config
%{_libdir}/pkgconfig/*.pc
@ -106,6 +105,16 @@ test "$RPM_BUILD_ROOT" != "/" -a -d "$RPM_BUILD_ROOT" && rm -rf $RPM_BUILD_ROOT
%{_libdir}/lib*.so.*
%changelog
* Tue Aug 07 2007 - crrodriguez@suse.de
- as per http://lists.opensuse.org/opensuse-packaging/2007-07/msg00049.html
taking manteniance of this package
- use system libcurl for web access
- use libxslt as well (adds grdd parser support)
- remove nasty la file that causes significant bloat
- Fix build and devel package dependencies (raptor.h only requires glibc-devel)
- remove static libraries
- run ldconfig correctly
- run make check on rpm check section.
* Fri May 04 2007 - dmueller@suse.de
- libraptor -> libraptor1
* Fri May 04 2007 - lrupp@suse.de