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