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