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