mrc0mmand / rpms / hivex

Forked from rpms/hivex 3 years ago
Clone
c1e277
# conditionalize Ocaml support
c1e277
%ifarch sparc64 s390
c1e277
%bcond_with ocaml
c1e277
%else
c1e277
%bcond_without ocaml
c1e277
%endif
c1e277
c1e277
Name:           hivex
c1e277
Version:        1.3.10
c1e277
Release:        6.9%{?dist}
c1e277
Summary:        Read and write Windows Registry binary hive files
c1e277
c1e277
License:        LGPLv2
c1e277
URL:            http://libguestfs.org/
c1e277
c1e277
Source0:        http://libguestfs.org/download/hivex/%{name}-%{version}.tar.gz
c1e277
c1e277
# The RHEL 7 patches are stored in the upstream git repository,
c1e277
# in the branch called 'rhel-7.4', ie:
c1e277
# https://github.com/libguestfs/hivex/tree/rhel-7.4
c1e277
c1e277
# Fix Perl directory install path.
c1e277
Patch0001:      0001-Fix-Perl-directory-install-path.patch
c1e277
c1e277
# Upstream patches to fix RHBZ#1145056.
c1e277
Patch0002:      0002-value-Set-errno-0-on-non-error-path-in-hivex_value_d.patch
c1e277
Patch0003:      0003-hivexml-Tidy-up-error-handling-and-printing.patch
c1e277
Patch0004:      0004-lib-Don-t-leak-errno-from-_hivex_recode-function.patch
c1e277
c1e277
# Upstream patches to fix RHBZ#1158992.
c1e277
Patch0005:      0005-handle-Refuse-to-open-files-8192-bytes-in-size.patch
c1e277
Patch0006:      0006-handle-Check-that-pages-do-not-extend-beyond-the-end.patch
c1e277
c1e277
# Fix typo in documentation (RHBZ#1099286).
c1e277
Patch0007:      0007-generator-Fix-a-spelling-mistake-in-the-documentatio.patch
c1e277
c1e277
# Tolerate corruption in some hives (RHBZ#1423436).
c1e277
Patch0008:      0008-add-HIVEX_OPEN_UNSAFE-flag.patch
c1e277
Patch0009:      0009-lib-change-how-hbin-sections-are-read.patch
c1e277
Patch0010:      0010-lib-allow-to-walk-registry-with-corrupted-blocks.patch
c1e277
Patch0011:      0011-hivexsh-add-u-flag-for-HIVEX_OPEN_UNSAFE.patch
c1e277
Patch0012:      0012-hivexregedit-allow-to-pass-HIVEX_OPEN_UNSAFE.patch
c1e277
c1e277
# Patch generated code (because we can't assume we have OCaml on all
c1e277
# arches).  To construct this you need to do 'make prep', run the
c1e277
# generator by hand, and diff before and after.
c1e277
Patch9999:      generated.patch
c1e277
c1e277
# Use git to apply patches.
c1e277
BuildRequires:  git
c1e277
c1e277
# Since some patches touch autotools file, we need to rerun autoreconf.
c1e277
BuildRequires:  autoconf, automake, libtool, gettext-devel
c1e277
c1e277
BuildRequires:  perl
c1e277
BuildRequires:  perl-Test-Simple
c1e277
BuildRequires:  perl-Test-Pod
c1e277
BuildRequires:  perl-Test-Pod-Coverage
c1e277
BuildRequires:  perl-ExtUtils-MakeMaker
c1e277
BuildRequires:  perl-IO-stringy
c1e277
BuildRequires:  perl-libintl
c1e277
%if %{with ocaml}
c1e277
BuildRequires:  ocaml
c1e277
BuildRequires:  ocaml-findlib-devel
c1e277
%endif
c1e277
BuildRequires:  python-devel
c1e277
BuildRequires:  ruby-devel
c1e277
BuildRequires:  rubygem-rake
c1e277
BuildRequires:  rubygem(minitest)
c1e277
BuildRequires:  readline-devel
c1e277
BuildRequires:  libxml2-devel
c1e277
c1e277
# This library used to be part of libguestfs.  It won't install alongside
c1e277
# the old version of libguestfs that included this library:
c1e277
Conflicts:      libguestfs <= 1:1.0.84
c1e277
c1e277
# https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries#Packages_granted_exceptions
c1e277
Provides:      bundled(gnulib)
c1e277
c1e277
c1e277
%description
c1e277
Hive files are the undocumented binary files that Windows uses to
c1e277
store the Windows Registry on disk.  Hivex is a library that can read
c1e277
and write to these files.
c1e277
c1e277
'hivexsh' is a shell you can use to interactively navigate a hive
c1e277
binary file.
c1e277
c1e277
'hivexregedit' lets you export and merge to the textual regedit
c1e277
format.
c1e277
c1e277
'hivexml' can be used to convert a hive file to a more useful XML
c1e277
format.
c1e277
c1e277
In order to get access to the hive files themselves, you can copy them
c1e277
from a Windows machine.  They are usually found in
c1e277
%%systemroot%%\system32\config.  For virtual machines we recommend
c1e277
using libguestfs or guestfish to copy out these files.  libguestfs
c1e277
also provides a useful high-level tool called 'virt-win-reg' (based on
c1e277
hivex technology) which can be used to query specific registry keys in
c1e277
an existing Windows VM.
c1e277
c1e277
For OCaml bindings, see 'ocaml-hivex-devel'.
c1e277
c1e277
For Perl bindings, see 'perl-hivex'.
c1e277
c1e277
For Python bindings, see 'python-hivex'.
c1e277
c1e277
For Ruby bindings, see 'ruby-hivex'.
c1e277
c1e277
c1e277
%package devel
c1e277
Summary:        Development tools and libraries for %{name}
c1e277
Requires:       %{name} = %{version}-%{release}
c1e277
Requires:       pkgconfig
c1e277
c1e277
c1e277
%description devel
c1e277
%{name}-devel contains development tools and libraries
c1e277
for %{name}.
c1e277
c1e277
c1e277
%if %{with ocaml}
c1e277
%package -n ocaml-%{name}
c1e277
Summary:       OCaml bindings for %{name}
c1e277
Requires:      %{name} = %{version}-%{release}
c1e277
c1e277
c1e277
%description -n ocaml-%{name}
c1e277
ocaml-%{name} contains OCaml bindings for %{name}.
c1e277
c1e277
This is for toplevel and scripting access only.  To compile OCaml
c1e277
programs which use %{name} you will also need ocaml-%{name}-devel.
c1e277
c1e277
c1e277
%package -n ocaml-%{name}-devel
c1e277
Summary:       OCaml bindings for %{name}
c1e277
Requires:      ocaml-%{name} = %{version}-%{release}
c1e277
c1e277
c1e277
%description -n ocaml-%{name}-devel
c1e277
ocaml-%{name}-devel contains development libraries
c1e277
required to use the OCaml bindings for %{name}.
c1e277
%endif
c1e277
c1e277
c1e277
%package -n perl-%{name}
c1e277
Summary:       Perl bindings for %{name}
c1e277
Requires:      %{name} = %{version}-%{release}
c1e277
Requires:      perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
c1e277
c1e277
c1e277
%description -n perl-%{name}
c1e277
perl-%{name} contains Perl bindings for %{name}.
c1e277
c1e277
c1e277
%package -n python-%{name}
c1e277
Summary:       Python bindings for %{name}
c1e277
Requires:      %{name} = %{version}-%{release}
c1e277
c1e277
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
c1e277
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
c1e277
c1e277
%description -n python-%{name}
c1e277
python-%{name} contains Python bindings for %{name}.
c1e277
c1e277
c1e277
%package -n ruby-%{name}
c1e277
Summary:       Ruby bindings for %{name}
c1e277
Requires:      %{name} = %{version}-%{release}
c1e277
Requires:      ruby(release)
c1e277
Requires:      ruby
c1e277
Provides:      ruby(hivex) = %{version}
c1e277
c1e277
%description -n ruby-%{name}
c1e277
ruby-%{name} contains Ruby bindings for %{name}.
c1e277
c1e277
c1e277
%prep
c1e277
%setup -q
c1e277
c1e277
# Use git to apply patches.
c1e277
# http://rwmj.wordpress.com/2011/08/09/nice-rpm-git-patch-management-trick/
c1e277
git init
c1e277
git config user.email "libguestfs@redhat.com"
c1e277
git config user.name "libguestfs"
c1e277
git add .
c1e277
git commit -a -q -m "%{version} baseline"
c1e277
for f in %{patches}; do
c1e277
    if [[ ! "$f" =~ generated.patch ]]; then
c1e277
	git am "$f"
c1e277
    else
c1e277
	patch -p1 < "$f"
c1e277
    fi
c1e277
done
c1e277
c1e277
autoreconf -i
c1e277
c1e277
%build
c1e277
%configure --disable-static
c1e277
make V=1 INSTALLDIRS=vendor %{?_smp_mflags}
c1e277
c1e277
c1e277
%check
c1e277
make check
c1e277
c1e277
%if !%{with ocaml}
c1e277
# Delete OCaml files, in case the user had OCaml installed and it was
c1e277
# picked up by the configure script.
c1e277
# XXX Add ./configure --disable-ocaml upstream.
c1e277
rm -rf $RPM_BUILD_ROOT%{_libdir}/ocaml/hivex
c1e277
rm -f  $RPM_BUILD_ROOT%{_libdir}/ocaml/stublibs/*hivex*
c1e277
%endif
c1e277
c1e277
c1e277
%install
c1e277
make install DESTDIR=$RPM_BUILD_ROOT INSTALLDIRS=vendor
c1e277
c1e277
# Remove unwanted libtool *.la file:
c1e277
rm $RPM_BUILD_ROOT%{_libdir}/libhivex.la
c1e277
c1e277
# Remove unwanted Perl files:
c1e277
find $RPM_BUILD_ROOT -name perllocal.pod -delete
c1e277
find $RPM_BUILD_ROOT -name .packlist -delete
c1e277
find $RPM_BUILD_ROOT -name '*.bs' -delete
c1e277
c1e277
# Remove unwanted Python files:
c1e277
rm $RPM_BUILD_ROOT%{python_sitearch}/libhivexmod.la
c1e277
c1e277
%find_lang %{name}
c1e277
c1e277
c1e277
%post -p /sbin/ldconfig
c1e277
c1e277
%postun -p /sbin/ldconfig
c1e277
c1e277
c1e277
%files -f %{name}.lang
c1e277
%doc README LICENSE
c1e277
%{_bindir}/hivexget
c1e277
%{_bindir}/hivexml
c1e277
%{_bindir}/hivexregedit
c1e277
%{_bindir}/hivexsh
c1e277
%{_libdir}/libhivex.so.*
c1e277
%{_mandir}/man1/hivexget.1*
c1e277
%{_mandir}/man1/hivexml.1*
c1e277
%{_mandir}/man1/hivexregedit.1*
c1e277
%{_mandir}/man1/hivexsh.1*
c1e277
c1e277
c1e277
%files devel
c1e277
%doc LICENSE
c1e277
%{_libdir}/libhivex.so
c1e277
%{_mandir}/man3/hivex.3*
c1e277
%{_includedir}/hivex.h
c1e277
%{_libdir}/pkgconfig/hivex.pc
c1e277
c1e277
c1e277
%if %{with ocaml}
c1e277
%files -n ocaml-%{name}
c1e277
%doc README
c1e277
%{_libdir}/ocaml/hivex
c1e277
%exclude %{_libdir}/ocaml/hivex/*.a
c1e277
%exclude %{_libdir}/ocaml/hivex/*.cmxa
c1e277
%exclude %{_libdir}/ocaml/hivex/*.cmx
c1e277
%exclude %{_libdir}/ocaml/hivex/*.mli
c1e277
%{_libdir}/ocaml/stublibs/*.so
c1e277
%{_libdir}/ocaml/stublibs/*.so.owner
c1e277
c1e277
c1e277
%files -n ocaml-%{name}-devel
c1e277
%{_libdir}/ocaml/hivex/*.a
c1e277
%{_libdir}/ocaml/hivex/*.cmxa
c1e277
%{_libdir}/ocaml/hivex/*.cmx
c1e277
%{_libdir}/ocaml/hivex/*.mli
c1e277
%endif
c1e277
c1e277
c1e277
%files -n perl-%{name}
c1e277
%{perl_vendorarch}/*
c1e277
%{_mandir}/man3/Win::Hivex.3pm*
c1e277
%{_mandir}/man3/Win::Hivex::Regedit.3pm*
c1e277
c1e277
c1e277
%files -n python-%{name}
c1e277
%{python_sitearch}/*.py
c1e277
%{python_sitearch}/*.pyc
c1e277
%{python_sitearch}/*.pyo
c1e277
%{python_sitearch}/*.so
c1e277
c1e277
c1e277
%files -n ruby-%{name}
c1e277
%doc ruby/doc/site/*
c1e277
%{ruby_vendorlibdir}/hivex.rb
c1e277
%{ruby_vendorarchdir}/_hivex.so
c1e277
c1e277
c1e277
%changelog
c1e277
* Tue Oct 10 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-6.9
c1e277
- Enable OCaml subpackage on s390x.
c1e277
  resolves: rhbz#1447983
c1e277
c1e277
* Fri Sep 22 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-6.8
c1e277
- Rebuild for OCaml 4.05
c1e277
  resolves: rhbz#1447983
c1e277
c1e277
* Fri Feb 17 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-5.8
c1e277
- Tolerate corruption in some hives
c1e277
  resolves: rhbz#1423436
c1e277
- Switch to using git to manage patches.
c1e277
c1e277
* Mon Nov 17 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-5.7
c1e277
- Fix: "Argument list too long" when using virt-v2v on Windows guest
c1e277
  with French copy of Citrix installed
c1e277
  related: rhbz#1145056
c1e277
c1e277
* Mon Nov 17 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-5.6
c1e277
- Fix: typo in man page
c1e277
  resolves: rhbz#1099286
c1e277
c1e277
* Thu Nov 13 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-5.4
c1e277
- Fix: hivex missing checks for small/truncated files
c1e277
  resolves: rhbz#1158992
c1e277
c1e277
* Wed Sep 24 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-5.3
c1e277
- Fix: hivexml generates "Argument list too long" error.
c1e277
  resolves: rhbz#1145056
c1e277
c1e277
* Fri Aug 08 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-5.2
c1e277
- Resolves: rhbz#1125544
c1e277
c1e277
* Mon Jul 21 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-5.1
c1e277
- Rebase to hivex 1.3.10.
c1e277
  resolves: rhbz#1023978
c1e277
c1e277
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.3.8-4
c1e277
- Mass rebuild 2014-01-24
c1e277
c1e277
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.3.8-3
c1e277
- Mass rebuild 2013-12-27
c1e277
c1e277
* Thu Oct 31 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.8-2
c1e277
- Drop hivex-static subpackage
c1e277
  resolves: rhbz#1020019
c1e277
c1e277
* Thu Jul 25 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.8-1
c1e277
- New upstream version 1.3.8.
c1e277
- Fixes handling of keys which use ri-records, for both reading and
c1e277
  writing (RHBZ#717583, RHBZ#987463).
c1e277
- Remove upstream patch.
c1e277
- Rebase dirs patch against new upstream sources.
c1e277
- Rebase ruby patch against new upstream sources.
c1e277
- Modernize the RPM spec file.
c1e277
- Fix .gitignore.
c1e277
c1e277
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.3.7-8
c1e277
- Perl 5.18 rebuild
c1e277
c1e277
* Wed Mar 13 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.7-7
c1e277
- Rebuild for Ruby 2.0.0.
c1e277
- Change ruby(abi) to ruby(release).
c1e277
c1e277
* Fri Feb 15 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.7-6
c1e277
- Fix for latest Ruby in Rawhide.  Fixes build failure identified
c1e277
  by mass rebuild yesterday.
c1e277
- Do not ignore error from running autoreconf.
c1e277
c1e277
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.7-3
c1e277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c1e277
c1e277
* Mon Oct 29 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.7-2
c1e277
- Rebuild for OCaml 4.00.1.
c1e277
c1e277
* Thu Oct 11 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.7-1
c1e277
- New upstream version 1.3.7.
c1e277
c1e277
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.6-3
c1e277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c1e277
c1e277
* Wed Jun 27 2012 Petr Pisar <ppisar@redhat.com> - 1.3.6-2
c1e277
- Perl 5.16 rebuild
c1e277
c1e277
* Tue Jun 12 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.6-1
c1e277
- New upstream version 1.3.6.
c1e277
- Enable Ocaml bindings on ppc64.
c1e277
c1e277
* Sat Jun 09 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.5-9
c1e277
- Rebuild for OCaml 4.00.0.
c1e277
c1e277
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 1.3.5-8
c1e277
- Perl 5.16 rebuild
c1e277
c1e277
* Fri May 18 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-7
c1e277
- "blobs" -> "files" in the description.
c1e277
c1e277
* Tue May 15 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-6
c1e277
- Bundled gnulib (RHBZ#821763).
c1e277
c1e277
* Fri Mar 23 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-5
c1e277
- Don't need to rerun the generator (thanks Dan Horák).
c1e277
c1e277
* Tue Mar 13 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-4
c1e277
- New upstream version 1.3.5.
c1e277
- Remove upstream patch.
c1e277
- Depend on automake etc. for the patch.
c1e277
c1e277
* Thu Feb  9 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-8
c1e277
- ruby(abi) 1.9.1.
c1e277
c1e277
* Wed Feb  8 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-7
c1e277
- Bump and rebuild for Ruby update.
c1e277
- Add upstream patch to fix bindings for Ruby 1.9.
c1e277
- Add non-upstream patch to pass --vendor flag to extconf.rb
c1e277
c1e277
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-3
c1e277
- Rebuild for OCaml 3.12.1.
c1e277
c1e277
* Thu Dec  8 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-2
c1e277
- Disable OCaml on ppc64.
c1e277
- Ensure OCaml files are deleted when not packaged.
c1e277
c1e277
* Tue Nov 29 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-1
c1e277
- New upstream version 1.3.3.
c1e277
- Rebased gnulib to work around RHBZ#756981.
c1e277
- Remove patches which are now upstream.
c1e277
c1e277
* Mon Oct 24 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.2-3
c1e277
- New upstream version 1.3.2.
c1e277
- Add upstream patch to fix building of hivexsh, hivexget.
c1e277
c1e277
* Fri Aug 26 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.1-2
c1e277
- New upstream version 1.3.1.
c1e277
- Remove patch, now upstream.
c1e277
- Don't need hack for making an unversioned Python module.
c1e277
c1e277
* Mon Aug 15 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.0-3
c1e277
- New upstream version 1.3.0.
c1e277
- This version adds Ruby bindings, so there is a new subpackage 'ruby-hivex'.
c1e277
- Add upstream patch to fix Ruby tests.
c1e277
- Remove epoch macro in ruby-hivex dependency.
c1e277
c1e277
* Fri Aug 12 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.8-1
c1e277
- New upstream version 1.2.8.
c1e277
- Remove 4 upstream patches.
c1e277
c1e277
* Fri Jul 22 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.7-9
c1e277
- Add upstream patch to fix Perl CCFLAGS for Perl 5.14 on i686.
c1e277
- Enable 'make check'.
c1e277
c1e277
* Thu Jul 21 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.7-6
c1e277
- i686 package is broken, experimentally rebuild it.
c1e277
c1e277
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.2.7-5
c1e277
- Perl mass rebuild
c1e277
c1e277
* Fri Jun 10 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.2.7-4
c1e277
- Perl 5.14 mass rebuild
c1e277
c1e277
* Tue May 17 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.7-3
c1e277
- New upstream version 1.2.7.
c1e277
- Removed patch which is now upstream.
c1e277
- Add upstream patches to fix ocaml install rule.
c1e277
c1e277
* Thu May 12 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.6-2
c1e277
- New upstream version 1.2.6.
c1e277
- Removed patch which is now upstream.
c1e277
- Add upstream patch to fix ocaml tests.
c1e277
c1e277
* Thu Apr 28 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.5-2
c1e277
- Fix Python bindings on 32 bit arch with upstream patch.
c1e277
c1e277
* Wed Apr 13 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.5-1
c1e277
- New upstream version 1.2.5.
c1e277
- This version fixes a number of important memory issues found by
c1e277
  valgrind and upgrading to this version is recommended for all users.
c1e277
- Remove patch now upstream.
c1e277
c1e277
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-7
c1e277
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c1e277
c1e277
* Fri Jan 14 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-6
c1e277
- Fix multilib conflicts in *.pyc and *.pyo files.
c1e277
- Only install unversioned *.so file for Python bindings.
c1e277
c1e277
* Wed Jan  5 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-4
c1e277
- Rebuild against OCaml 3.12.0.
c1e277
c1e277
* Thu Dec 16 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-3
c1e277
- Backport upstream patch to fix segfault in Hivex.value_value binding.
c1e277
c1e277
* Thu Dec  2 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-1
c1e277
- New upstream version 1.2.4.
c1e277
- This adds Python bindings (python-hivex subpackage).
c1e277
- Fix Source0.
c1e277
c1e277
* Fri Nov 19 2010 Dan Horák <dan[at]danny.cz> - 1.2.3-3
c1e277
- fix built with recent perl
c1e277
c1e277
* Tue Sep  7 2010 Dan Horák <dan[at]danny.cz> - 1.2.3-2
c1e277
- conditionalize ocaml support
c1e277
c1e277
* Fri Aug 27 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.3-1
c1e277
- New upstream version 1.2.3.
c1e277
c1e277
* Wed Aug 25 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.2-3
c1e277
- Create a hivex-static subpackage.
c1e277
c1e277
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.2.2-2
c1e277
- Mass rebuild with perl-5.12.0
c1e277
c1e277
* Wed Apr 28 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.2-1
c1e277
- New upstream version 1.2.2.
c1e277
c1e277
* Tue Mar 30 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.1-1
c1e277
- New upstream version 1.2.1.
c1e277
- Includes new tool for exporting and merging in regedit format.
c1e277
c1e277
* Mon Mar  1 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.0-2
c1e277
- New upstream version 1.2.0.
c1e277
- This includes OCaml and Perl bindings, so add these as subpackages.
c1e277
c1e277
* Mon Feb 22 2010 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-3
c1e277
- Missing Epoch in conflicts version fixed.
c1e277
c1e277
* Mon Feb 22 2010 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-2
c1e277
- Add Conflicts libguestfs <= 1.0.84.
c1e277
c1e277
* Mon Feb 22 2010 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-1
c1e277
- Initial Fedora RPM.