[libverto-jsonrpc] initial import

Nathaniel McCallum npmccallum at fedoraproject.org
Mon Feb 13 21:24:56 UTC 2012


commit b7a517ca7982930121d10d35c16e15a7f8b30dad
Author: Nathaniel McCallum <nathaniel at themccallums.org>
Date:   Mon Feb 13 16:24:56 2012 -0500

    initial import

 .gitignore            |    1 +
 libverto-jsonrpc.spec |   56 +++++++++++++++++++++++++++++++++++++++++++++++++
 sources               |    1 +
 3 files changed, 58 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..a5b641d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/libverto-jsonrpc-0.1.0.tar.gz
diff --git a/libverto-jsonrpc.spec b/libverto-jsonrpc.spec
new file mode 100644
index 0000000..0b3720d
--- /dev/null
+++ b/libverto-jsonrpc.spec
@@ -0,0 +1,56 @@
+Name:           libverto-jsonrpc
+Version:        0.1.0
+Release:        2%{?dist}
+Summary:        JSON-RPC support for libverto
+
+License:        MIT
+URL:            https://fedorahosted.org/libverto
+Source0:        https://fedorahosted.org/releases/l/i/%{name}/%{name}-%{version}.tar.gz
+
+BuildRequires:  libverto-devel
+BuildRequires:  json-c-devel
+
+%description
+A library for doing JSON-RPC over a socket, using the libverto API.
+
+%package        devel
+Summary:        Development files for %{name}
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+Requires:       pkgconfig
+
+%description    devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+%prep
+%setup -q
+
+%build
+%configure --disable-static
+make %{?_smp_mflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%doc AUTHORS ChangeLog COPYING README
+%{_libdir}/*.so.*
+
+%files devel
+%{_includedir}/*
+%{_libdir}/*.so
+%{_libdir}/pkgconfig/%{name}.pc
+
+%changelog
+* Mon Feb 13 2012 Nathaniel McCallum <nathaniel at natemccallum.com> - 0.1.0-2
+- Remove libverto-module-base dependency
+
+* Mon Feb 13 2012 Nathaniel McCallum <npmccallum at redhat.com> - 0.1.0-1
+- Initial package
+
diff --git a/sources b/sources
index e69de29..e364d36 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+5076eadc3e3b43f7139d0b8cf96e575d  libverto-jsonrpc-0.1.0.tar.gz


More information about the scm-commits mailing list