rpms/raptor/devel raptor-1.4.8-config.patch, NONE, 1.1 raptor-1.4.8-pkgconfig.patch, NONE, 1.1 raptor.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Anthony Green (green) fedora-extras-commits at redhat.com
Thu Apr 27 00:40:34 UTC 2006


Author: green

Update of /cvs/extras/rpms/raptor/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31682/devel

Modified Files:
	.cvsignore sources 
Added Files:
	raptor-1.4.8-config.patch raptor-1.4.8-pkgconfig.patch 
	raptor.spec 
Log Message:
auto-import raptor-1.4.8-5 on branch devel from raptor-1.4.8-5.src.rpm

raptor-1.4.8-config.patch:

--- NEW FILE raptor-1.4.8-config.patch ---
diff -Nur raptor-1.4.8-orig/src/raptor-config.in raptor-1.4.8/src/raptor-config.in
--- raptor-1.4.8-orig/src/raptor-config.in	2005-08-25 00:49:15.000000000 +0200
+++ raptor-1.4.8/src/raptor-config.in	2006-04-27 00:21:09.000000000 +0200
@@ -129,7 +129,7 @@
   done
 fi
 if test "$echo_libs" = "yes"; then
-  echo -L at libdir@ -lraptor @LDFLAGS@ @LIBS@
+  echo -L at libdir@ -lraptor 
 fi
 if test "$echo_libtool_libs" = "yes"; then
   echo @libdir@/@RAPTOR_LIBTOOLLIBS@

raptor-1.4.8-pkgconfig.patch:

--- NEW FILE raptor-1.4.8-pkgconfig.patch ---
diff -Nur raptor-1.4.8-orig/raptor.pc.in raptor-1.4.8/raptor.pc.in
--- raptor-1.4.8-orig/raptor.pc.in	2003-12-16 23:24:01.000000000 +0100
+++ raptor-1.4.8/raptor.pc.in	2006-04-23 22:50:05.000000000 +0200
@@ -6,6 +6,6 @@
 Name: Raptor
 Description: RDF Parser Toolkit Library
 Version: @VERSION@
-Libs: -L${libdir} -lraptor @LDFLAGS@ @LIBS@
+Libs: -L${libdir} -lraptor
 Cflags: -I${includedir}
 


--- NEW FILE raptor.spec ---
Summary:       Raptor RDF Parser Toolkit for Redland
Name:          raptor
Version:       1.4.8
Release:       5%{?dist}
License:       LGPL or Apache License Version 2.0
Group:         System Environment/Libraries
Source:        http://www.redland.opensource.ac.uk/dist/source/raptor-1.4.8.tar.gz
Patch0:        raptor-1.4.8-pkgconfig.patch
Patch1:        raptor-1.4.8-config.patch
URL:           http://www.redland.opensource.ac.uk/raptor/
BuildRoot:     %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libxml2-devel libxslt-devel curl-devel

%description
Raptor is the RDF Parser Toolkit for Redland that provides
a set of standalone RDF parsers, generating triples from RDF/XML
or N-Triples.

%package devel
Summary: Libraries, includes etc to develop with Raptor RDF parser library
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}

%description devel
Libraries, includes etc to develop with Raptor RDF parser library.
It provides a set of standalone RDF parsers, generating triples from
RDF/XML or N-Triples.

%prep
%setup -q
%patch0 -p1
%patch1 -p1

%build
%configure --disable-static
make %{?_smp_mflags}

%install
rm -rf $RPM_BUILD_ROOT

make DESTDIR=$RPM_BUILD_ROOT install
rm -f ${RPM_BUILD_ROOT}%{_libdir}/*.{a,la}

%clean
rm -rf $RPM_BUILD_ROOT

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig

%files
%defattr(-, root, root)
%doc AUTHORS COPYING COPYING.LIB ChangeLog LICENSE-2.0.txt LICENSE.html LICENSE.txt NEWS README
%doc %{_mandir}/man1/rapper.1*
%doc %{_mandir}/man3/libraptor.3*
%{_libdir}/lib*.so.*
%{_bindir}/rapper


%files devel
%defattr(-, root, root)
%doc AUTHORS COPYING COPYING.LIB ChangeLog LICENSE-2.0.txt LICENSE.html LICENSE.txt NEWS README
%doc INSTALL.html
%doc %{_mandir}/man1/raptor-config.1*
%doc %{_datadir}/gtk-doc/html/raptor
%{_libdir}/lib*.so
%{_libdir}/pkgconfig/raptor.pc
%{_prefix}/include/*
%{_bindir}/raptor-config

%changelog
* Wed Apr 26 2006 Anthony Green <green at redhat.com> 1.4.8-5
- Add raptor-1.4.8-config.patch from Michael Schwendt.
- Remove some Requires from the devel package.

* Sun Apr 23 2006 Anthony Green <green at redhat.com> 1.4.8-4
- Add raptor-1.4.8-pkgconfig.patch from Michael Schwendt.

* Sun Apr 23 2006 Anthony Green <green at redhat.com> 1.4.8-3
- Many spec file fixes from Michael Schwendt.
- Add many Requires to the -devel package.

* Tue Apr 18 2006 Anthony Green <green at redhat.com> 1.4.8-1
- Upgrade sources.  
- Install with DESTDIR.
- Build for Fedora Extras.

* Fri Nov  7 2003 Fernando Lopez-Lezcano <nando at ccrma.stanford.edu> 1.0.0-1
- build for Planet CCRMA, clean up spec file

* Thu Apr 17 2003 Dave Beckett <Dave.Beckett at bristol.ac.uk>

- Added pkgconfig raptor.pc, raptor-config
- Requires curl

* Mon Jan 13 2003 Dave Beckett <Dave.Beckett at bristol.ac.uk>

- rdfdump now rapper

* Thu Jan  9 2003 Fernando Lopez-Lezcano <nando at ccrma.stanford.edu>
- built for planet ccrma
- one file conflicts with rdfdump in the nasm-rdoff package, so rename
  the binary to rdf-rdfdump for now. Maybe we should make this a
  "Conflict:" with nasm-rdoff and leave the file as is...

* Fri Dec 20 2002 Dave Beckett <Dave.Beckett at bristol.ac.uk>

- Updated to have two RPMs for raptor and raptor-devel.  Depend on
  libxml2 as XML parser.


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/raptor/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	27 Apr 2006 00:39:50 -0000	1.1
+++ .cvsignore	27 Apr 2006 00:40:34 -0000	1.2
@@ -0,0 +1 @@
+raptor-1.4.8.tar.gz


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/raptor/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	27 Apr 2006 00:39:50 -0000	1.1
+++ sources	27 Apr 2006 00:40:34 -0000	1.2
@@ -0,0 +1 @@
+112d8b72a37f4de8a00f840999f2d383  raptor-1.4.8.tar.gz




More information about the scm-commits mailing list