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