2007-08-24 16:35:28 +00:00
|
|
|
%define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
|
|
|
%define debug_package %{nil}
|
|
|
|
|
|
|
|
# Select what subpackages to build.
|
|
|
|
%define build_mlvirsh 1
|
|
|
|
|
|
|
|
Name: ocaml-libvirt
|
2009-03-10 10:42:17 +00:00
|
|
|
Version: 0.6.1.0
|
2009-12-30 13:50:34 +00:00
|
|
|
Release: 7%{?dist}
|
2007-08-24 16:35:28 +00:00
|
|
|
Summary: OCaml binding for libvirt
|
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPLv2+
|
2007-11-20 13:25:45 +00:00
|
|
|
URL: http://libvirt.org/ocaml/
|
2008-03-04 19:14:22 +00:00
|
|
|
Source0: http://libvirt.org/sources/ocaml/%{name}-%{version}.tar.gz
|
2007-08-24 16:35:28 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2009-04-16 09:06:09 +00:00
|
|
|
ExcludeArch: sparc64 s390 s390x
|
2007-08-24 16:35:28 +00:00
|
|
|
|
2008-06-05 19:51:58 +00:00
|
|
|
BuildRequires: ocaml >= 3.10.0
|
2007-08-24 16:35:28 +00:00
|
|
|
BuildRequires: ocaml-ocamldoc
|
|
|
|
BuildRequires: ocaml-findlib-devel
|
2008-03-04 18:12:15 +00:00
|
|
|
|
2007-08-24 16:35:28 +00:00
|
|
|
BuildRequires: libvirt-devel >= 0.2.1
|
|
|
|
BuildRequires: perl
|
2007-08-30 09:49:16 +00:00
|
|
|
BuildRequires: gawk
|
2007-08-24 16:35:28 +00:00
|
|
|
|
|
|
|
%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
|
|
|
|
OCaml binding for libvirt.
|
|
|
|
|
|
|
|
|
|
|
|
%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}.
|
|
|
|
|
|
|
|
|
|
|
|
%if %build_mlvirsh
|
|
|
|
%package -n mlvirsh
|
|
|
|
Summary: OCaml virsh utility
|
|
|
|
Group: Applications/Emulators
|
|
|
|
License: GPLv2+
|
|
|
|
|
|
|
|
|
|
|
|
%description -n mlvirsh
|
|
|
|
OCaml virtualization shell.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2008-03-19 12:09:18 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --libdir=%{_libdir} --prefix=%{_prefix}
|
2007-08-24 16:35:28 +00:00
|
|
|
make all doc
|
|
|
|
%if %opt
|
|
|
|
make opt
|
|
|
|
strip libvirt/dllmllibvirt.so
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%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
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
2008-07-09 12:01:31 +00:00
|
|
|
%if %opt
|
|
|
|
make install-opt
|
|
|
|
%else
|
|
|
|
make install-byte
|
|
|
|
%endif
|
2007-08-24 16:35:28 +00:00
|
|
|
|
|
|
|
%if !%build_mlvirsh
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_bindir}/mlvirsh
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2007-09-20 10:30:27 +00:00
|
|
|
%doc COPYING.LIB README ChangeLog
|
2007-08-24 16:35:28 +00:00
|
|
|
%{_libdir}/ocaml/libvirt
|
|
|
|
%if %opt
|
|
|
|
%exclude %{_libdir}/ocaml/libvirt/*.a
|
|
|
|
%exclude %{_libdir}/ocaml/libvirt/*.cmxa
|
|
|
|
%exclude %{_libdir}/ocaml/libvirt/*.cmx
|
|
|
|
%endif
|
|
|
|
%exclude %{_libdir}/ocaml/libvirt/*.mli
|
|
|
|
%{_libdir}/ocaml/stublibs/*.so
|
|
|
|
%{_libdir}/ocaml/stublibs/*.so.owner
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2007-09-20 10:30:27 +00:00
|
|
|
%doc COPYING.LIB README TODO.libvirt ChangeLog html/*
|
2007-08-24 16:35:28 +00:00
|
|
|
%if %opt
|
|
|
|
%{_libdir}/ocaml/libvirt/*.a
|
|
|
|
%{_libdir}/ocaml/libvirt/*.cmxa
|
|
|
|
%{_libdir}/ocaml/libvirt/*.cmx
|
|
|
|
%endif
|
|
|
|
%{_libdir}/ocaml/libvirt/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
%if %build_mlvirsh
|
|
|
|
%files -n mlvirsh
|
|
|
|
%defattr(-,root,root,-)
|
2007-09-20 10:30:27 +00:00
|
|
|
%doc COPYING README ChangeLog
|
2007-08-24 16:35:28 +00:00
|
|
|
%{_bindir}/mlvirsh
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2009-12-30 13:50:34 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 0.6.1.0-7
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-07-25 19:59:05 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-15 08:19:03 +00:00
|
|
|
* Wed Jul 15 2009 Richard W.M. Jones <rjones@redhat.com> - 0.6.1.0-5
|
|
|
|
- Force rebuild to test FTBFS issue.
|
|
|
|
|
2009-06-12 10:22:38 +00:00
|
|
|
* Fri Jun 12 2009 Richard W.M. Jones <rjones@redhat.com> - 0.6.1.0-3
|
|
|
|
- Force rebuild to test FTBFS issue.
|
|
|
|
|
2009-05-23 08:25:52 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 0.6.1.0-2
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
|
2009-04-16 09:06:09 +00:00
|
|
|
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x@lists.fedoraproject.org>
|
|
|
|
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
|
|
|
|
(added sparc64 per request from the sparc maintainer)
|
|
|
|
|
2009-03-10 10:42:17 +00:00
|
|
|
* Tue Mar 10 2009 Richard W.M. Jones <rjones@redhat.com> - 0.6.1.0-1
|
|
|
|
- New upstream release 0.6.1.0.
|
|
|
|
|
2009-02-26 07:14:11 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.4.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 19:25:17 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.4.2-3
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-24 11:37:49 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.4.2-2
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-07-09 12:01:31 +00:00
|
|
|
* Wed Jul 9 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.4.2-1
|
|
|
|
- New upstream version.
|
|
|
|
- In upstream, 'make install' became 'make install-byte' or 'make install-opt'
|
|
|
|
|
2008-06-10 12:01:31 +00:00
|
|
|
* Tue Jun 10 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.2.4-1
|
|
|
|
- New upstream version.
|
|
|
|
|
2008-06-05 21:51:13 +00:00
|
|
|
* Thu Jun 5 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.2.3-1
|
|
|
|
- New upstream version.
|
|
|
|
|
2008-06-05 19:51:58 +00:00
|
|
|
* Thu Jun 5 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.2.2-1
|
|
|
|
- New upstream version.
|
|
|
|
- Removed virt-ctrl, virt-df, virt-top subpackages, since these are
|
|
|
|
now separate Fedora packages.
|
|
|
|
|
2008-05-20 08:53:40 +00:00
|
|
|
* Tue May 20 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.1.1-4
|
|
|
|
- Disable virt-top (bz 442871).
|
|
|
|
- Disable virt-ctrl (bz 442875).
|
|
|
|
|
2008-05-19 16:39:08 +00:00
|
|
|
* Mon May 19 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.1.1-3
|
|
|
|
- Disable virt-df (bz 442873).
|
|
|
|
|
2008-04-23 16:17:07 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.1.1-2
|
|
|
|
- Rebuild for OCaml 3.10.2
|
|
|
|
|
2008-03-19 12:09:18 +00:00
|
|
|
* Tue Mar 19 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.1.1-1
|
|
|
|
- New upstream release 0.4.1.1.
|
|
|
|
- Move configure to build section.
|
|
|
|
- Pass RPM_OPT_FLAGS.
|
|
|
|
|
2008-03-04 19:14:22 +00:00
|
|
|
* Tue Mar 4 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.1.0-2
|
|
|
|
- Fix source URL.
|
|
|
|
- Install virt-df manpage.
|
|
|
|
|
2008-03-04 18:12:15 +00:00
|
|
|
* Tue Mar 4 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.1.0-1
|
|
|
|
- New upstream release 0.4.1.0.
|
|
|
|
- Upstream now requires ocaml-dbus >= 0.06, ocaml-lablgtk >= 2.10.0,
|
2008-03-04 18:14:08 +00:00
|
|
|
ocaml-dbus-devel.
|
2008-03-04 18:12:15 +00:00
|
|
|
- Enable virt-df.
|
|
|
|
|
2008-03-01 10:23:04 +00:00
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.0.3-3
|
|
|
|
- Rebuild for ppc64.
|
|
|
|
|
2008-02-13 10:20:16 +00:00
|
|
|
* Wed Feb 13 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.0.3-2
|
|
|
|
- Add BR gtk2-devel
|
|
|
|
|
2008-02-13 00:34:50 +00:00
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 0.4.0.3-1
|
|
|
|
- New upstream version 0.4.0.3.
|
|
|
|
- Rebuild for OCaml 3.10.1.
|
|
|
|
|
2007-11-20 13:25:45 +00:00
|
|
|
* Tue Nov 20 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.3.4-1
|
|
|
|
- New upstream release 0.3.3.4.
|
|
|
|
- Upstream website is now http://libvirt.org/ocaml/
|
|
|
|
|
2007-10-19 15:47:01 +00:00
|
|
|
* Fri Oct 19 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.3.0-2
|
|
|
|
- Mistake: BR is ocaml-calendar-devel.
|
|
|
|
|
2007-10-19 15:22:32 +00:00
|
|
|
* Fri Oct 19 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.3.0-1
|
|
|
|
- New upstream release 0.3.3.0.
|
|
|
|
- Added support for virt-df, but disabled it by default.
|
|
|
|
- +BR ocaml-calendar.
|
|
|
|
|
2007-09-24 15:28:53 +00:00
|
|
|
* Mon Sep 24 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.8-1
|
|
|
|
- New upstream release 0.3.2.8.
|
|
|
|
|
2007-09-20 10:30:27 +00:00
|
|
|
* Thu Sep 20 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.7-1
|
|
|
|
- New upstream release 0.3.2.7.
|
|
|
|
- Ship the upstream ChangeLog file.
|
|
|
|
|
2007-09-06 17:27:10 +00:00
|
|
|
* Thu Sep 6 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.6-2
|
|
|
|
- Force dependency on ocaml >= 3.10.0-7 which has fixed requires/provides
|
|
|
|
scripts.
|
|
|
|
|
2007-09-06 17:24:16 +00:00
|
|
|
* Thu Sep 6 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.6-1
|
|
|
|
- New upstream version 0.3.2.6.
|
|
|
|
|
2007-08-30 09:49:16 +00:00
|
|
|
* Wed Aug 29 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.5-1
|
|
|
|
- New upstream version 0.3.2.5.
|
|
|
|
- Keep TODO out of the main package, but add (renamed) TODO.libvirt and
|
|
|
|
TODO.virt-top to the devel and virt-top packages respectively.
|
|
|
|
- Add BR gawk.
|
|
|
|
|
2007-08-24 18:14:50 +00:00
|
|
|
* Thu Aug 23 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.4-1
|
|
|
|
- New upstream version 0.3.2.4.
|
|
|
|
|
2007-08-24 16:35:28 +00:00
|
|
|
* Thu Aug 23 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.3-2
|
|
|
|
- build_* macros so we can choose what subpackages to build.
|
|
|
|
|
|
|
|
* Thu Aug 23 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.3-1
|
|
|
|
- Upstream version 0.3.2.3.
|
|
|
|
- Add missing BR libvirt-devel.
|
|
|
|
|
|
|
|
* Wed Aug 22 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.2-1
|
|
|
|
- Upstream version 0.3.2.2.
|
|
|
|
|
|
|
|
* Wed Aug 22 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.1-2
|
|
|
|
- Fix unclosed if-statement in spec file.
|
|
|
|
|
|
|
|
* Wed Aug 22 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.2.1-1
|
|
|
|
- Upstream version 0.3.2.1.
|
|
|
|
- Put HTML documentation in -devel package.
|
|
|
|
|
|
|
|
* Mon Aug 6 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.1.2-1
|
|
|
|
- Initial RPM release.
|