f2549c
# Conditionalize Ocaml support.  This looks ass-backwards, but it's not.
f2549c
%ifarch %{ocaml_native_compiler}
f2549c
%bcond_without ocaml
f2549c
%else
f2549c
%bcond_with ocaml
f2549c
%endif
f2549c
f2549c
# Verify tarball signature with GPGv2.
f2549c
%global verify_tarball_signature 1
f2549c
f2549c
Name:           hivex
f2549c
Version:        1.3.18
d05035
Release:        23%{?dist}
f2549c
Summary:        Read and write Windows Registry binary hive files
f2549c
f2549c
License:        LGPLv2
f2549c
URL:            http://libguestfs.org/
f2549c
f2549c
Source0:        http://libguestfs.org/download/hivex/%{name}-%{version}.tar.gz
f2549c
%if 0%{verify_tarball_signature}
f2549c
Source1:        http://libguestfs.org/download/hivex/%{name}-%{version}.tar.gz.sig
f2549c
%endif
f2549c
f2549c
# Keyring used to verify tarball signature.
f2549c
%if 0%{verify_tarball_signature}
f2549c
Source2:       libguestfs.keyring
f2549c
%endif
f2549c
f2549c
# Patches - all upstream since 1.3.18.
f2549c
Patch0001:      0001-Win-Hivex-Regedit-Accept-CRLF-line-endings.patch
f2549c
Patch0002:      0002-Win-Hivex-Regedit-Ignore-comments.patch
f2549c
7483d8
# Bounds check for block exceeding page length (CVE-2021-3504).
7483d8
Patch0003:      0001-lib-handle.c-Bounds-check-for-block-exceeding-page-l.patch
7483d8
d05035
# Limit recursion in ri-records (CVE-2021-3622).
d05035
Patch0004:      0001-lib-node.c-Limit-recursion-in-ri-records-CVE-2021-36.patch
d05035
f2549c
BuildRequires:  perl-interpreter
f2549c
BuildRequires:  perl-devel
f2549c
BuildRequires:  perl-generators
f2549c
BuildRequires:  %{_bindir}/pod2html
f2549c
BuildRequires:  %{_bindir}/pod2man
f2549c
BuildRequires:  perl(bytes)
f2549c
BuildRequires:  perl(Carp)
f2549c
BuildRequires:  perl(Encode)
f2549c
BuildRequires:  perl(ExtUtils::MakeMaker)
f2549c
BuildRequires:  perl(Exporter)
f2549c
BuildRequires:  perl(IO::Scalar)
f2549c
BuildRequires:  perl(IO::Stringy)
f2549c
BuildRequires:  perl(strict)
f2549c
BuildRequires:  perl(Test::More)
f2549c
BuildRequires:  perl(utf8)
f2549c
BuildRequires:  perl(vars)
f2549c
BuildRequires:  perl(warnings)
f2549c
BuildRequires:  perl(XSLoader)
f2549c
BuildRequires:  perl(Test::Pod) >= 1.00
f2549c
BuildRequires:  perl(Test::Pod::Coverage) >= 1.00
f2549c
%if %{with ocaml}
f2549c
BuildRequires:  ocaml
f2549c
BuildRequires:  ocaml-findlib-devel
f2549c
%endif
f2549c
BuildRequires:  python3-devel
f2549c
BuildRequires:  ruby-devel
f2549c
BuildRequires:  rubygem-rake
f2549c
# see also RHBZ#1325022
f2549c
BuildRequires:  rubygem(json)
f2549c
BuildRequires:  rubygem(minitest)
f2549c
BuildRequires:  rubygem(rdoc)
f2549c
BuildRequires:  readline-devel
f2549c
BuildRequires:  libxml2-devel
f2549c
%if 0%{verify_tarball_signature}
f2549c
BuildRequires: gnupg2
f2549c
%endif
f2549c
f2549c
# https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries#Packages_granted_exceptions
f2549c
Provides:      bundled(gnulib)
f2549c
f2549c
f2549c
%description
f2549c
Hive files are the undocumented binary files that Windows uses to
f2549c
store the Windows Registry on disk.  Hivex is a library that can read
f2549c
and write to these files.
f2549c
f2549c
'hivexsh' is a shell you can use to interactively navigate a hive
f2549c
binary file.
f2549c
f2549c
'hivexregedit' (in perl-hivex) lets you export and merge to the
f2549c
textual regedit format.
f2549c
f2549c
'hivexml' can be used to convert a hive file to a more useful XML
f2549c
format.
f2549c
f2549c
In order to get access to the hive files themselves, you can copy them
f2549c
from a Windows machine.  They are usually found in
f2549c
%%systemroot%%\system32\config.  For virtual machines we recommend
f2549c
using libguestfs or guestfish to copy out these files.  libguestfs
f2549c
also provides a useful high-level tool called 'virt-win-reg' (based on
f2549c
hivex technology) which can be used to query specific registry keys in
f2549c
an existing Windows VM.
f2549c
f2549c
For OCaml bindings, see 'ocaml-hivex-devel'.
f2549c
f2549c
For Perl bindings, see 'perl-hivex'.
f2549c
f2549c
For Python 3 bindings, see 'python3-hivex'.
f2549c
f2549c
For Ruby bindings, see 'ruby-hivex'.
f2549c
f2549c
f2549c
%package devel
f2549c
Summary:        Development tools and libraries for %{name}
f2549c
Requires:       %{name} = %{version}-%{release}
f2549c
Requires:       pkgconfig
f2549c
f2549c
f2549c
%description devel
f2549c
%{name}-devel contains development tools and libraries
f2549c
for %{name}.
f2549c
f2549c
f2549c
%if %{with ocaml}
f2549c
%package -n ocaml-%{name}
f2549c
Summary:       OCaml bindings for %{name}
f2549c
Requires:      %{name} = %{version}-%{release}
f2549c
f2549c
f2549c
%description -n ocaml-%{name}
f2549c
ocaml-%{name} contains OCaml bindings for %{name}.
f2549c
f2549c
This is for toplevel and scripting access only.  To compile OCaml
f2549c
programs which use %{name} you will also need ocaml-%{name}-devel.
f2549c
f2549c
f2549c
%package -n ocaml-%{name}-devel
f2549c
Summary:       OCaml bindings for %{name}
f2549c
Requires:      ocaml-%{name} = %{version}-%{release}
f2549c
Requires:      %{name}-devel = %{version}-%{release}
f2549c
f2549c
f2549c
%description -n ocaml-%{name}-devel
f2549c
ocaml-%{name}-devel contains development libraries
f2549c
required to use the OCaml bindings for %{name}.
f2549c
%endif
f2549c
f2549c
f2549c
%package -n perl-%{name}
f2549c
Summary:       Perl bindings for %{name}
f2549c
Requires:      %{name} = %{version}-%{release}
f2549c
Requires:      perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
f2549c
f2549c
f2549c
%description -n perl-%{name}
f2549c
perl-%{name} contains Perl bindings for %{name}.
f2549c
f2549c
f2549c
%package -n python3-%{name}
f2549c
Summary:       Python 3 bindings for %{name}
f2549c
Requires:      %{name} = %{version}-%{release}
f2549c
f2549c
%description -n python3-%{name}
f2549c
python3-%{name} contains Python 3 bindings for %{name}.
f2549c
f2549c
f2549c
%package -n ruby-%{name}
f2549c
Summary:       Ruby bindings for %{name}
f2549c
Requires:      %{name} = %{version}-%{release}
f2549c
Requires:      ruby(release)
f2549c
Requires:      ruby
f2549c
Provides:      ruby(hivex) = %{version}
f2549c
f2549c
%description -n ruby-%{name}
f2549c
ruby-%{name} contains Ruby bindings for %{name}.
f2549c
f2549c
f2549c
%prep
f2549c
%if 0%{verify_tarball_signature}
f2549c
tmphome="$(mktemp -d)"
f2549c
gpgv2 --homedir "$tmphome" --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
f2549c
%endif
f2549c
%setup -q
f2549c
%autopatch -p1
f2549c
f2549c
f2549c
%build
f2549c
%configure \
f2549c
    PYTHON=%{__python3} \
f2549c
    --disable-static \
f2549c
%if !%{with ocaml}
f2549c
    --disable-ocaml \
f2549c
%endif
f2549c
    %{nil}
f2549c
make V=1 INSTALLDIRS=vendor %{?_smp_mflags}
f2549c
f2549c
f2549c
%install
f2549c
make install DESTDIR=$RPM_BUILD_ROOT INSTALLDIRS=vendor
f2549c
f2549c
# Remove unwanted libtool *.la file:
f2549c
rm $RPM_BUILD_ROOT%{_libdir}/libhivex.la
f2549c
f2549c
# Remove unwanted Perl files:
f2549c
find $RPM_BUILD_ROOT -name perllocal.pod -delete
f2549c
find $RPM_BUILD_ROOT -name .packlist -delete
f2549c
find $RPM_BUILD_ROOT -name '*.bs' -delete
f2549c
f2549c
# Remove unwanted Python files:
f2549c
rm $RPM_BUILD_ROOT%{python3_sitearch}/libhivexmod.la
f2549c
f2549c
%find_lang %{name}
f2549c
f2549c
f2549c
%check
f2549c
if ! make check -k; then
f2549c
    for f in $( find -name test-suite.log | xargs grep -l ^FAIL: ); do
f2549c
        echo
f2549c
        echo "***" $f "***"
f2549c
        cat $f
f2549c
        echo
f2549c
    done
f2549c
    exit 1
f2549c
fi
f2549c
f2549c
%files -f %{name}.lang
f2549c
%doc README LICENSE
f2549c
%{_bindir}/hivexget
f2549c
%{_bindir}/hivexml
f2549c
%{_bindir}/hivexsh
f2549c
%{_libdir}/libhivex.so.*
f2549c
%{_mandir}/man1/hivexget.1*
f2549c
%{_mandir}/man1/hivexml.1*
f2549c
%{_mandir}/man1/hivexsh.1*
f2549c
f2549c
f2549c
%files devel
f2549c
%doc LICENSE
f2549c
%{_libdir}/libhivex.so
f2549c
%{_mandir}/man3/hivex.3*
f2549c
%{_includedir}/hivex.h
f2549c
%{_libdir}/pkgconfig/hivex.pc
f2549c
f2549c
f2549c
%if %{with ocaml}
f2549c
%files -n ocaml-%{name}
f2549c
%doc README
f2549c
%{_libdir}/ocaml/hivex
f2549c
%exclude %{_libdir}/ocaml/hivex/*.a
f2549c
%exclude %{_libdir}/ocaml/hivex/*.cmxa
f2549c
%exclude %{_libdir}/ocaml/hivex/*.cmx
f2549c
%exclude %{_libdir}/ocaml/hivex/*.mli
f2549c
%{_libdir}/ocaml/stublibs/*.so
f2549c
%{_libdir}/ocaml/stublibs/*.so.owner
f2549c
f2549c
f2549c
%files -n ocaml-%{name}-devel
f2549c
%{_libdir}/ocaml/hivex/*.a
f2549c
%{_libdir}/ocaml/hivex/*.cmxa
f2549c
%{_libdir}/ocaml/hivex/*.cmx
f2549c
%{_libdir}/ocaml/hivex/*.mli
f2549c
%endif
f2549c
f2549c
f2549c
%files -n perl-%{name}
f2549c
%{perl_vendorarch}/*
f2549c
%{_mandir}/man3/Win::Hivex.3pm*
f2549c
%{_mandir}/man3/Win::Hivex::Regedit.3pm*
f2549c
%{_bindir}/hivexregedit
f2549c
%{_mandir}/man1/hivexregedit.1*
f2549c
f2549c
f2549c
%files -n python3-%{name}
f2549c
%{python3_sitearch}/hivex/
f2549c
%{python3_sitearch}/*.so
f2549c
f2549c
f2549c
%files -n ruby-%{name}
f2549c
%doc ruby/doc/site/*
f2549c
%{ruby_vendorlibdir}/hivex.rb
f2549c
%{ruby_vendorarchdir}/_hivex.so
f2549c
f2549c
f2549c
%changelog
d05035
* Mon Sep  6 2021 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-23
d05035
- Limit recursion in ri-records (CVE-2021-3622)
d05035
  resolves: rhbz#1976194
d05035
d05035
* Thu Sep 2 2021 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.3.18-22.el8
d05035
- Resolves: bz#2000225
d05035
  (Rebase virt:rhel module:stream based on AV-8.6)
d05035
7483d8
* Sat Apr 17 2021 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-21
7483d8
- Bounds check for block exceeding page length (CVE-2021-3504)
7483d8
  resolves: rhbz#1950501
7483d8
f2549c
* Mon Apr 27 2020 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.3.18
f2549c
- Resolves: bz#1810193
f2549c
  (Upgrade components in virt:rhel module:stream for RHEL-8.3 release)
f2549c
f2549c
* Mon Apr 27 2020 Danilo C. L. de Paula <ddepaula@redhat.com> - 1.3.18
f2549c
- Resolves: bz#1810193
f2549c
  (Upgrade components in virt:rhel module:stream for RHEL-8.3 release)
f2549c
f2549c
* Fri Jun 28 2019 Danilo de Paula <ddepaula@redhat.com> - 1.3.15-7
f2549c
- Rebuild all virt packages to fix RHEL's upgrade path
f2549c
- Resolves: rhbz#1695587
f2549c
  (Ensure modular RPM upgrade path)
f2549c
f2549c
* Fri Dec 14 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-6
f2549c
- Drop hivex-static subpackage
f2549c
  resolves: rhbz#1560207
f2549c
f2549c
* Fri Jul 20 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-5
f2549c
- Rebuild for OCaml 4.07.0.
f2549c
f2549c
* Fri Mar 23 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-4
f2549c
- Remove python2 support
f2549c
  resolves: rhbz#1559086
f2549c
f2549c
* Mon Mar 19 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-3
f2549c
- Add upstream patch to fix injection of LDFLAGS (RHBZ#1548536).
f2549c
f2549c
* Thu Mar  1 2018 Florian Weimer <fweimer@redhat.com> - 1.3.15-2
f2549c
- Rebuild with new redhat-rpm-config/perl build flags
f2549c
f2549c
* Mon Feb 26 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-1
f2549c
- New upstream version 1.3.15.
f2549c
f2549c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.14-15
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f2549c
f2549c
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.3.14-14
f2549c
- Rebuilt for switch to libxcrypt
f2549c
f2549c
* Fri Jan 05 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.14-13
f2549c
- F-28: rebuild for ruby25
f2549c
f2549c
* Wed Nov 08 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-12
f2549c
- Fix string mutability.
f2549c
f2549c
* Wed Nov 08 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-10
f2549c
- OCaml 4.06.0 rebuild.
f2549c
f2549c
* Mon Sep 18 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-9
f2549c
- ocaml-hivex-devel should Require hivex-devel.
f2549c
f2549c
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-8
f2549c
- OCaml 4.05.0 rebuild.
f2549c
f2549c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.14-7
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
f2549c
f2549c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.14-6
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f2549c
f2549c
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-5
f2549c
- OCaml 4.04.2 rebuild.
f2549c
f2549c
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.14-4
f2549c
- Perl 5.26 rebuild
f2549c
f2549c
* Mon May 22 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-3
f2549c
- Create python2 and python3 subpackages (RHBZ#1453189).
f2549c
f2549c
* Fri May 12 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-2
f2549c
- OCaml 4.04.1 rebuild.
f2549c
f2549c
* Fri Feb 17 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-1
f2549c
- New upstream version 1.3.14.
f2549c
- Add GPG signature and mechanics for checking it.
f2549c
f2549c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.13-12
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
f2549c
f2549c
* Fri Jan 13 2017 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.13-11
f2549c
- F-26: rebuild again for ruby24
f2549c
f2549c
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.3.13-10
f2549c
- Rebuild for readline 7.x
f2549c
f2549c
* Thu Jan 12 2017 Vít Ondruch <vondruch@redhat.com> - 1.3.13-9
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4
f2549c
f2549c
* Sat Nov 05 2016 Richard W.M. Jones <rjones@redhat.com> - 1.3.13-8
f2549c
- Rebuild for OCaml 4.04.0.
f2549c
f2549c
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.13-7
f2549c
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
f2549c
f2549c
* Tue May 17 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.13-6
f2549c
- Perl 5.24 rebuild
f2549c
f2549c
* Tue May 10 2016 Richard W.M. Jones <rjones@redhat.com> - 1.3.13-5
f2549c
- Explicitly BR rubygem(rdoc) RHBZ#1334753 and rubygem(json) RHBZ#1325022.
f2549c
f2549c
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.13-4
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f2549c
f2549c
* Tue Jan 12 2016 Vít Ondruch <vondruch@redhat.com> - 1.3.13-3
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.3
f2549c
f2549c
* Thu Oct 29 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.13-2
f2549c
- New upstream version 1.3.13.
f2549c
- Drop ancient 'Conflicts' rule.
f2549c
- Drop Perl patch for setting INSTALLDIRS.
f2549c
- Depend on pod2html, pod2man binaries explicitly.
f2549c
f2549c
* Mon Oct  5 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.12-1
f2549c
- New upstream version 1.3.12.
f2549c
- Drop patches which are now upstream.
f2549c
- Use OCaml macros to test if OCaml native compiler is available.
f2549c
- Use autoreconf --force option.
f2549c
f2549c
* Thu Aug 27 2015 Petr Šabata <contyk@redhat.com> - 1.3.11-13
f2549c
- Correcting the perl build time dependency list
f2549c
  Switching to virtual perl()-style symbols
f2549c
  Dropping unused dependencies and adding some new to fix the FTBFS
f2549c
f2549c
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-12
f2549c
- OCaml 4.02.3 rebuild.
f2549c
f2549c
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-11
f2549c
- ocaml-4.02.2 final rebuild.
f2549c
f2549c
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-10
f2549c
- ocaml-4.02.2 rebuild.
f2549c
f2549c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.11-9
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f2549c
f2549c
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.11-8
f2549c
- Perl 5.22 rebuild
f2549c
f2549c
* Mon Mar  2 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-7
f2549c
- Move hivexregedit to perl-hivex subpackage, since otherwise hivex
f2549c
  and hence libguestfs depends on perl (RHBZ#1194158).
f2549c
f2549c
* Tue Feb 17 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-6
f2549c
- ocaml-4.02.1 rebuild.
f2549c
f2549c
* Sun Jan 18 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.11-5
f2549c
- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_2.2
f2549c
f2549c
* Thu Nov 20 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-4
f2549c
- Increase HIVEX_MAX_SUBKEYS.
f2549c
- Don't leak errno E2BIG to callers.
f2549c
f2549c
* Fri Nov 14 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-2
f2549c
- Pull in a couple of upstream fixes:
f2549c
  * Fix memory leak in _hivex_get_children.
f2549c
  * Increase HIVEX_MAX_VALUE_LEN.
f2549c
f2549c
* Thu Oct 30 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-1
f2549c
- New upstream version 1.3.11.
f2549c
- Python objects are now placed in a hivex/ subdirectory.
f2549c
f2549c
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.10-12
f2549c
- Perl 5.20 rebuild
f2549c
f2549c
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-11
f2549c
- ocaml-4.02.0 final rebuild.
f2549c
f2549c
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.10-10
f2549c
- Perl 5.20 rebuild
f2549c
f2549c
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-9
f2549c
- ocaml-4.02.0+rc1 rebuild.
f2549c
f2549c
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.10-8
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
f2549c
f2549c
* Sat Aug 02 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-7
f2549c
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
f2549c
f2549c
* Tue Jul 22 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-6
f2549c
- OCaml 4.02.0 beta rebuild.
f2549c
f2549c
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.10-5
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f2549c
f2549c
* Fri May 02 2014 Vít Ondruch <vondruch@redhat.com> - 1.3.10-4
f2549c
- Remove the ruby(release) version. It is not needed.
f2549c
f2549c
* Fri May 02 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-3
f2549c
- Rebuild to fix Ruby dependencies problem.
f2549c
f2549c
* Thu Apr 24 2014 Vít Ondruch <vondruch@redhat.com> - 1.3.10-2
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
f2549c
f2549c
* Wed Apr 23 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-1
f2549c
- New upstream version 1.3.10.
f2549c
- Fix ruby test failures (RHBZ#1090407).
f2549c
f2549c
* Fri Jan 17 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.9-2
f2549c
- New upstream version 1.3.9.
f2549c
- Remove patches which are now upstream.
f2549c
f2549c
* Thu Sep 19 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.8-4
f2549c
- OCaml 4.01.0 rebuild.
f2549c
f2549c
* Tue Sep 10 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.8-3
f2549c
- Include various upstream patches to fix endianness problems on ppc64.
f2549c
f2549c
* Sun Sep  8 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.8-2
f2549c
- Bump and rebuild, since ARM package still appears to depend on Perl 5.16.
f2549c
f2549c
* Thu Jul 25 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.8-1
f2549c
- New upstream version 1.3.8.
f2549c
- Fixes handling of keys which use ri-records, for both reading and
f2549c
  writing (RHBZ#717583, RHBZ#987463).
f2549c
- Remove upstream patch.
f2549c
- Rebase dirs patch against new upstream sources.
f2549c
- Rebase ruby patch against new upstream sources.
f2549c
- Modernize the RPM spec file.
f2549c
- Fix .gitignore.
f2549c
f2549c
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.3.7-8
f2549c
- Perl 5.18 rebuild
f2549c
f2549c
* Wed Mar 13 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.7-7
f2549c
- Rebuild for Ruby 2.0.0.
f2549c
- Change ruby(abi) to ruby(release).
f2549c
f2549c
* Fri Feb 15 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.7-6
f2549c
- Fix for latest Ruby in Rawhide.  Fixes build failure identified
f2549c
  by mass rebuild yesterday.
f2549c
- Do not ignore error from running autoreconf.
f2549c
f2549c
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.7-3
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f2549c
f2549c
* Mon Oct 29 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.7-2
f2549c
- Rebuild for OCaml 4.00.1.
f2549c
f2549c
* Thu Oct 11 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.7-1
f2549c
- New upstream version 1.3.7.
f2549c
f2549c
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.6-3
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
f2549c
f2549c
* Wed Jun 27 2012 Petr Pisar <ppisar@redhat.com> - 1.3.6-2
f2549c
- Perl 5.16 rebuild
f2549c
f2549c
* Tue Jun 12 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.6-1
f2549c
- New upstream version 1.3.6.
f2549c
- Enable Ocaml bindings on ppc64.
f2549c
f2549c
* Sat Jun 09 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.5-9
f2549c
- Rebuild for OCaml 4.00.0.
f2549c
f2549c
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 1.3.5-8
f2549c
- Perl 5.16 rebuild
f2549c
f2549c
* Fri May 18 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-7
f2549c
- "blobs" -> "files" in the description.
f2549c
f2549c
* Tue May 15 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-6
f2549c
- Bundled gnulib (RHBZ#821763).
f2549c
f2549c
* Fri Mar 23 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-5
f2549c
- Don't need to rerun the generator (thanks Dan Horák).
f2549c
f2549c
* Tue Mar 13 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-4
f2549c
- New upstream version 1.3.5.
f2549c
- Remove upstream patch.
f2549c
- Depend on automake etc. for the patch.
f2549c
f2549c
* Thu Feb  9 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-8
f2549c
- ruby(abi) 1.9.1.
f2549c
f2549c
* Wed Feb  8 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-7
f2549c
- Bump and rebuild for Ruby update.
f2549c
- Add upstream patch to fix bindings for Ruby 1.9.
f2549c
- Add non-upstream patch to pass --vendor flag to extconf.rb
f2549c
f2549c
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-3
f2549c
- Rebuild for OCaml 3.12.1.
f2549c
f2549c
* Thu Dec  8 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-2
f2549c
- Disable OCaml on ppc64.
f2549c
- Ensure OCaml files are deleted when not packaged.
f2549c
f2549c
* Tue Nov 29 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-1
f2549c
- New upstream version 1.3.3.
f2549c
- Rebased gnulib to work around RHBZ#756981.
f2549c
- Remove patches which are now upstream.
f2549c
f2549c
* Mon Oct 24 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.2-3
f2549c
- New upstream version 1.3.2.
f2549c
- Add upstream patch to fix building of hivexsh, hivexget.
f2549c
f2549c
* Fri Aug 26 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.1-2
f2549c
- New upstream version 1.3.1.
f2549c
- Remove patch, now upstream.
f2549c
- Don't need hack for making an unversioned Python module.
f2549c
f2549c
* Mon Aug 15 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.0-3
f2549c
- New upstream version 1.3.0.
f2549c
- This version adds Ruby bindings, so there is a new subpackage 'ruby-hivex'.
f2549c
- Add upstream patch to fix Ruby tests.
f2549c
- Remove epoch macro in ruby-hivex dependency.
f2549c
f2549c
* Fri Aug 12 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.8-1
f2549c
- New upstream version 1.2.8.
f2549c
- Remove 4 upstream patches.
f2549c
f2549c
* Fri Jul 22 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.7-9
f2549c
- Add upstream patch to fix Perl CCFLAGS for Perl 5.14 on i686.
f2549c
- Enable 'make check'.
f2549c
f2549c
* Thu Jul 21 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.7-6
f2549c
- i686 package is broken, experimentally rebuild it.
f2549c
f2549c
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.2.7-5
f2549c
- Perl mass rebuild
f2549c
f2549c
* Fri Jun 10 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.2.7-4
f2549c
- Perl 5.14 mass rebuild
f2549c
f2549c
* Tue May 17 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.7-3
f2549c
- New upstream version 1.2.7.
f2549c
- Removed patch which is now upstream.
f2549c
- Add upstream patches to fix ocaml install rule.
f2549c
f2549c
* Thu May 12 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.6-2
f2549c
- New upstream version 1.2.6.
f2549c
- Removed patch which is now upstream.
f2549c
- Add upstream patch to fix ocaml tests.
f2549c
f2549c
* Thu Apr 28 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.5-2
f2549c
- Fix Python bindings on 32 bit arch with upstream patch.
f2549c
f2549c
* Wed Apr 13 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.5-1
f2549c
- New upstream version 1.2.5.
f2549c
- This version fixes a number of important memory issues found by
f2549c
  valgrind and upgrading to this version is recommended for all users.
f2549c
- Remove patch now upstream.
f2549c
f2549c
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.4-7
f2549c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f2549c
f2549c
* Fri Jan 14 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-6
f2549c
- Fix multilib conflicts in *.pyc and *.pyo files.
f2549c
- Only install unversioned *.so file for Python bindings.
f2549c
f2549c
* Wed Jan  5 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-4
f2549c
- Rebuild against OCaml 3.12.0.
f2549c
f2549c
* Thu Dec 16 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-3
f2549c
- Backport upstream patch to fix segfault in Hivex.value_value binding.
f2549c
f2549c
* Thu Dec  2 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-1
f2549c
- New upstream version 1.2.4.
f2549c
- This adds Python bindings (python-hivex subpackage).
f2549c
- Fix Source0.
f2549c
f2549c
* Fri Nov 19 2010 Dan Horák <dan[at]danny.cz> - 1.2.3-3
f2549c
- fix built with recent perl
f2549c
f2549c
* Tue Sep  7 2010 Dan Horák <dan[at]danny.cz> - 1.2.3-2
f2549c
- conditionalize ocaml support
f2549c
f2549c
* Fri Aug 27 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.3-1
f2549c
- New upstream version 1.2.3.
f2549c
f2549c
* Wed Aug 25 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.2-3
f2549c
- Create a hivex-static subpackage.
f2549c
f2549c
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.2.2-2
f2549c
- Mass rebuild with perl-5.12.0
f2549c
f2549c
* Wed Apr 28 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.2-1
f2549c
- New upstream version 1.2.2.
f2549c
f2549c
* Tue Mar 30 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.1-1
f2549c
- New upstream version 1.2.1.
f2549c
- Includes new tool for exporting and merging in regedit format.
f2549c
f2549c
* Mon Mar  1 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.0-2
f2549c
- New upstream version 1.2.0.
f2549c
- This includes OCaml and Perl bindings, so add these as subpackages.
f2549c
f2549c
* Mon Feb 22 2010 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-3
f2549c
- Missing Epoch in conflicts version fixed.
f2549c
f2549c
* Mon Feb 22 2010 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-2
f2549c
- Add Conflicts libguestfs <= 1.0.84.
f2549c
f2549c
* Mon Feb 22 2010 Richard W.M. Jones <rjones@redhat.com> - 1.1.2-1
f2549c
- Initial Fedora RPM.