Compare commits

...

4 Commits
rawhide ... f8

Author SHA1 Message Date
Fedora Release Engineering 69f9876124 dist-git conversion 2010-07-29 04:46:50 +00:00
Bill Nottingham f42aa9943a Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:21:24 +00:00
Richard W.M. Jones 6e91c99404 Initial CVS import. 2008-03-04 18:21:41 +00:00
Kevin Fenzi 6539a2a733 Initialize branch F-8 for ocaml-postgresql 2008-03-04 17:10:14 +00:00
5 changed files with 102 additions and 21 deletions

View File

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
postgresql-ocaml-1.7.0.tar.bz2

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: ocaml-postgresql
# $Id$
NAME := ocaml-postgresql
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

100
ocaml-postgresql.spec Normal file
View File

@ -0,0 +1,100 @@
%define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
%define debug_package %{nil}
Name: ocaml-postgresql
Version: 1.7.0
Release: 2%{?dist}
Summary: OCaml library for accessing PostreSQL databases
Group: Development/Libraries
License: LGPLv2+ with exceptions
URL: http://www.ocaml.info/home/ocaml_sources.html#toc13
Source0: http://www.ocaml.info/ocaml_sources/postgresql-ocaml-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
ExcludeArch: ppc64
BuildRequires: ocaml >= 3.10.0
BuildRequires: ocaml-findlib-devel
BuildRequires: ocaml-ocamldoc
BuildRequires: postgresql-devel
BuildRequires: chrpath
%define _use_internal_dependency_generator 0
%define __find_requires /usr/lib/rpm/ocaml-find-requires.sh
%define __find_provides /usr/lib/rpm/ocaml-find-provides.sh
%description
This OCaml-library provides an interface to PostgreSQL, an efficient
and reliable, open source, relational database. Almost all
functionality available through the C-API (libpq) is replicated in a
type-safe way. This library uses objects for representing database
connections and results of queries.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and signature files for
developing applications that use %{name}.
%prep
%setup -q -n postgresql-ocaml-%{version}
%build
make
strip lib/dll*.so
chrpath --delete lib/dll*.so
%install
# These rules work if the library uses 'ocamlfind install' to install itself.
rm -rf $RPM_BUILD_ROOT
export DESTDIR=$RPM_BUILD_ROOT
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml
mkdir -p $OCAMLFIND_DESTDIR $OCAMLFIND_DESTDIR/stublibs
make install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc LICENSE
%{_libdir}/ocaml/postgresql
%if %opt
%exclude %{_libdir}/ocaml/postgresql/*.a
%exclude %{_libdir}/ocaml/postgresql/*.cmxa
%endif
%exclude %{_libdir}/ocaml/postgresql/*.mli
%{_libdir}/ocaml/stublibs/*.so
%{_libdir}/ocaml/stublibs/*.so.owner
%files devel
%defattr(-,root,root,-)
%doc LICENSE AUTHORS Changes README examples
%if %opt
%{_libdir}/ocaml/postgresql/*.a
%{_libdir}/ocaml/postgresql/*.cmxa
%endif
%{_libdir}/ocaml/postgresql/*.mli
%changelog
* Mon Mar 3 2008 Richard W.M. Jones <rjones@redhat.com> - 1.7.0-2
- Only include LICENSE doc in main package.
- Include extra documentation and examples in devel package.
- Check it builds in mock.
* Sun Feb 24 2008 Richard W.M. Jones <rjones@redhat.com> - 1.7.0-1
- Initial RPM release.

View File

@ -0,0 +1 @@
c79dbef491646610cfb22559e0fc2c16 postgresql-ocaml-1.7.0.tar.bz2