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