[xqc/f13/master] Initial import (#655866)

Martin Gieseking mgieseki at fedoraproject.org
Tue Jan 11 18:56:37 UTC 2011


commit 3647b60fc416af22b79b8350d2dca898358c6db9
Author: Martin Gieseking <martin.gieseking at uos.de>
Date:   Tue Jan 11 19:45:49 2011 +0100

    Initial import (#655866)

 .gitignore |    2 +
 sources    |    2 +
 xqc.spec   |   62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 66 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..f873dc7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/intro.pdf
+/xqc.tar.gz
diff --git a/sources b/sources
index e69de29..bbcf223 100644
--- a/sources
+++ b/sources
@@ -0,0 +1,2 @@
+be38b1935482c0e5201e95827339a80d  intro.pdf
+eed309dd847602b19b97ccdeafabff0c  xqc.tar.gz
diff --git a/xqc.spec b/xqc.spec
new file mode 100644
index 0000000..82300fc
--- /dev/null
+++ b/xqc.spec
@@ -0,0 +1,62 @@
+%global snapshot 20101120svn7
+
+Name:           xqc
+Version:        1.0
+Release:        0.2.%{snapshot}%{?dist}
+Summary:        C/C++ API for interfacing with XQuery processors
+
+Group:          Development/Libraries
+License:        BSD
+URL:            http://xqc.sourceforge.net
+
+# snapshot archive created from upstream revision 7 with:
+# svn export https://xqc.svn.sourceforge.net/svnroot/xqc/trunk/xqc xqc 
+# tar czf xqc.tar.gz xqc
+Source0:        xqc.tar.gz
+Source1:        http://downloads.sourceforge.net/%{name}/intro.pdf
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:      noarch
+
+BuildRequires:  doxygen
+
+%description
+The goal of the XQC project is to create standardized C/C++ APIs for 
+interfacing with XQuery processors. They should provide mechanisms to compile 
+and execute XQueries, manage contexts, and provide a basic interface for 
+the XQuery Data Model.
+
+
+%prep
+%setup -q -n %{name}
+cp %{SOURCE1} .
+
+%build
+%configure
+make %{?_smp_mflags}
+cd docs
+doxygen Doxyfile.xqc
+
+
+%install
+rm -rf %{buildroot}
+make install DESTDIR=%{buildroot}
+
+
+%clean
+rm -rf %{buildroot}
+
+
+%files
+%defattr(-,root,root,-)
+%doc LICENSE.txt intro.pdf examples/ docs/xqc/
+%{_includedir}/xqc.h
+%exclude %{_includedir}/xqc++.hpp
+
+
+%changelog
+* Tue Jan 11 2011 Martin Gieseking <martin.gieseking at uos.de> 1.0-0.2.20101120svn7
+- added SVN revision number to release tag
+
+* Sat Nov 20 2010 Martin Gieseking <martin.gieseking at uos.de> 1.0-0.1.20101120svn
+- initial package
+


More information about the scm-commits mailing list