import hivex-1.3.21-3.el9
This commit is contained in:
commit
8e66c727a3
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
SOURCES/hivex-1.3.21.tar.gz
|
||||
SOURCES/libguestfs.keyring
|
2
.hivex.metadata
Normal file
2
.hivex.metadata
Normal file
@ -0,0 +1,2 @@
|
||||
3d39d9210e92d809fc3d1e692ff27ee7e9fb0b4c SOURCES/hivex-1.3.21.tar.gz
|
||||
1bbc40f501a7fef9eef2a39b701a71aee2fea7c4 SOURCES/libguestfs.keyring
|
@ -0,0 +1,80 @@
|
||||
From d5a522c0bb738efdd7cc1e762840b579fc9ea3de Mon Sep 17 00:00:00 2001
|
||||
From: Laszlo Ersek <lersek@redhat.com>
|
||||
Date: Fri, 10 Sep 2021 01:06:17 +0200
|
||||
Subject: [PATCH] lib: write: improve key collation compatibility with Windows
|
||||
|
||||
There are multiple problems with using strcasecmp() for ordering registry
|
||||
keys:
|
||||
|
||||
(1) strcasecmp() is influenced by LC_CTYPE.
|
||||
|
||||
(2) strcasecmp() cannot implement case conversion for multibyte UTF-8
|
||||
sequences.
|
||||
|
||||
(3) Even with LC_CTYPE=POSIX and key names consisting solely of ASCII
|
||||
characters, strcasecmp() converts characters to lowercase, for
|
||||
comparison. But on Windows, the CompareStringOrdinal() function
|
||||
converts characters to uppercase. This makes a difference when
|
||||
comparing a letter to one of the characters that fall between 'Z'
|
||||
(0x5A) and 'a' (0x61), namely {'[', '\\', ']', '^', '_', '`'}. For
|
||||
example,
|
||||
|
||||
'c' (0x63) > '_' (0x5F)
|
||||
'C' (0x43) < '_' (0x5F)
|
||||
|
||||
Compare key names byte for byte, eliminating problems (1) and (3).
|
||||
|
||||
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1648520
|
||||
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
|
||||
Message-Id: <20210909230617.31256-1-lersek@redhat.com>
|
||||
Acked-by: Richard W.M. Jones <rjones@redhat.com>
|
||||
---
|
||||
lib/write.c | 32 +++++++++++++++++++++++++++++++-
|
||||
1 file changed, 31 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/lib/write.c b/lib/write.c
|
||||
index 70105c9d9907..d9a13a3c18b6 100644
|
||||
--- a/lib/write.c
|
||||
+++ b/lib/write.c
|
||||
@@ -462,7 +462,37 @@ compare_name_with_nk_name (hive_h *h, const char *name, hive_node_h nk_offs)
|
||||
return 0;
|
||||
}
|
||||
|
||||
- int r = strcasecmp (name, nname);
|
||||
+ /* Perform a limited case-insensitive comparison. ASCII letters will be
|
||||
+ * *upper-cased*. Multibyte sequences will produce nonsensical orderings.
|
||||
+ */
|
||||
+ int r = 0;
|
||||
+ const char *s1 = name;
|
||||
+ const char *s2 = nname;
|
||||
+
|
||||
+ for (;;) {
|
||||
+ unsigned char c1 = *(s1++);
|
||||
+ unsigned char c2 = *(s2++);
|
||||
+
|
||||
+ if (c1 >= 'a' && c1 <= 'z')
|
||||
+ c1 = 'A' + (c1 - 'a');
|
||||
+ if (c2 >= 'a' && c2 <= 'z')
|
||||
+ c2 = 'A' + (c2 - 'a');
|
||||
+ if (c1 < c2) {
|
||||
+ /* Also covers the case when "name" is a prefix of "nname". */
|
||||
+ r = -1;
|
||||
+ break;
|
||||
+ }
|
||||
+ if (c1 > c2) {
|
||||
+ /* Also covers the case when "nname" is a prefix of "name". */
|
||||
+ r = 1;
|
||||
+ break;
|
||||
+ }
|
||||
+ if (c1 == '\0') {
|
||||
+ /* Both strings end. */
|
||||
+ break;
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
free (nname);
|
||||
|
||||
return r;
|
||||
--
|
||||
2.19.1.3.g30247aa5d201
|
||||
|
17
SOURCES/hivex-1.3.21.tar.gz.sig
Normal file
17
SOURCES/hivex-1.3.21.tar.gz.sig
Normal file
@ -0,0 +1,17 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQJFBAABCAAvFiEE93dPsa0HSn6Mh2fqkXOPc+G3aKAFAmEHr1sRHHJpY2hAYW5u
|
||||
ZXhpYS5vcmcACgkQkXOPc+G3aKAdQRAAnKp8vh3Mn73YpNBzA4PgQm/wkhwU0vlG
|
||||
WEpcbz5sJnxd51XsLfPbHLC99CN3A47WBbwvUVlbY6QIzEgonKJvsWYPnRi9DURG
|
||||
9rrHGPNixitS+eZCwyhhqjDXzujQOC7h0YBRxOHp2HTE2uQ+l15o6H0i6sr2vNkG
|
||||
QwiUI50YVhtaAi3DVaXpPbb2vlA+3K6ImeLPQrSB+em1+n0g40Wze6B2tHN5wtxB
|
||||
XMRN8Hlw+Emc3Fe0Bx/4apg6YRqnXXCGyTyx25zHgtnf8cocOvjamt/cqsN3IspP
|
||||
pOi9aD4+LmPuToLzTfReLwmacch3p+QA4ZjSfcqmSXOpdl6ZtIBGHg3587Zv3j5+
|
||||
1WvpVVTeRsV8neRg9H+bnLFhjvCjbU+pPylmW+HdWargqFrzlhFrLAvGTzKhxWNy
|
||||
r3Xmbe/XnHHTWYeojg8mTZQ5mYt5MYfpbmywZusoyqhWVZV+bAHKJFk1q0UWLjfo
|
||||
L+TkJLka9wjB4r4uPylZion92hW4QEh3lRg7SJU6qfIvmOJMaihRWK77c4S7BvZ2
|
||||
NG05XST/cRyZviSRtGbllqhzBjS50zl5oCCmwu/L4muZGaBYT0/DiQgvM8TI1XeB
|
||||
9si16xg+KdE76tR+5g+Hn9Mh6ywi7hwp55UZHnRmgvvXHB6spBG2LQNqVNtPkWJV
|
||||
CzY9MsNqjVc=
|
||||
=y80J
|
||||
-----END PGP SIGNATURE-----
|
885
SPECS/hivex.spec
Normal file
885
SPECS/hivex.spec
Normal file
@ -0,0 +1,885 @@
|
||||
# Conditionalize Ocaml support. This looks ass-backwards, but it's not.
|
||||
%ifarch %{ocaml_native_compiler}
|
||||
%bcond_without ocaml
|
||||
%else
|
||||
%bcond_with ocaml
|
||||
%endif
|
||||
|
||||
# Verify tarball signature with GPGv2.
|
||||
%global verify_tarball_signature 1
|
||||
|
||||
Name: hivex
|
||||
Version: 1.3.21
|
||||
Release: 3%{?dist}
|
||||
Summary: Read and write Windows Registry binary hive files
|
||||
|
||||
License: LGPLv2
|
||||
URL: http://libguestfs.org/
|
||||
|
||||
Source0: http://libguestfs.org/download/hivex/%{name}-%{version}.tar.gz
|
||||
%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
|
||||
|
||||
Patch0000: 0001-lib-write-improve-key-collation-compatibility-with-Windows.patch
|
||||
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl-devel
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: %{_bindir}/pod2html
|
||||
BuildRequires: %{_bindir}/pod2man
|
||||
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
|
||||
%if %{with ocaml}
|
||||
BuildRequires: ocaml
|
||||
BuildRequires: ocaml-findlib-devel
|
||||
%endif
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: ruby-devel
|
||||
BuildRequires: rubygem-rake
|
||||
# see also RHBZ#1325022
|
||||
BuildRequires: rubygem(json)
|
||||
BuildRequires: rubygem(minitest)
|
||||
BuildRequires: rubygem(rdoc)
|
||||
BuildRequires: readline-devel
|
||||
BuildRequires: libxml2-devel
|
||||
%if 0%{verify_tarball_signature}
|
||||
BuildRequires: gnupg2
|
||||
%endif
|
||||
BuildRequires: make
|
||||
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
|
||||
Conflicts: %{name} < 1.3.20-6
|
||||
Obsoletes: %{name} < 1.3.20-6
|
||||
|
||||
# https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries#Packages_granted_exceptions
|
||||
Provides: bundled(gnulib)
|
||||
|
||||
|
||||
%description
|
||||
Hive files are the undocumented binary files that Windows uses to
|
||||
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.
|
||||
|
||||
'hivexregedit' (in perl-hivex) lets you export and merge to the
|
||||
textual regedit format.
|
||||
|
||||
'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.
|
||||
|
||||
For OCaml bindings, see 'ocaml-hivex-devel'.
|
||||
|
||||
For Perl bindings, see 'perl-hivex'.
|
||||
|
||||
For Python 3 bindings, see 'python3-hivex'.
|
||||
|
||||
For Ruby bindings, see 'ruby-hivex'.
|
||||
|
||||
|
||||
%package libs
|
||||
Summary: Library for %{name}
|
||||
Conflicts: %{name} < 1.3.20-6
|
||||
Obsoletes: %{name} < 1.3.20-6
|
||||
|
||||
|
||||
%description libs
|
||||
%{name}-libs contains the library for %{name}.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development tools and libraries for %{name}
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
|
||||
|
||||
%description devel
|
||||
%{name}-devel contains development tools and libraries
|
||||
for %{name}.
|
||||
|
||||
|
||||
%if !0%{?rhel}
|
||||
%package static
|
||||
Summary: Statically linked library for %{name}
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
|
||||
|
||||
%description static
|
||||
%{name}-static contains the statically linked library
|
||||
for %{name}.
|
||||
%endif
|
||||
|
||||
|
||||
%if %{with ocaml}
|
||||
%package -n ocaml-%{name}
|
||||
Summary: OCaml bindings for %{name}
|
||||
Requires: %{name}-libs = %{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}
|
||||
Requires: %{name}-devel = %{version}-%{release}
|
||||
|
||||
|
||||
%description -n ocaml-%{name}-devel
|
||||
ocaml-%{name}-devel contains development libraries
|
||||
required to use the OCaml bindings for %{name}.
|
||||
%endif
|
||||
|
||||
|
||||
%package -n perl-%{name}
|
||||
Summary: Perl bindings for %{name}
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
|
||||
|
||||
%description -n perl-%{name}
|
||||
perl-%{name} contains Perl bindings for %{name}.
|
||||
|
||||
|
||||
%package -n python3-%{name}
|
||||
Summary: Python 3 bindings for %{name}
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
|
||||
%description -n python3-%{name}
|
||||
python3-%{name} contains Python 3 bindings for %{name}.
|
||||
|
||||
|
||||
%package -n ruby-%{name}
|
||||
Summary: Ruby bindings for %{name}
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
Requires: ruby(release)
|
||||
Requires: ruby
|
||||
Provides: ruby(hivex) = %{version}
|
||||
|
||||
%description -n ruby-%{name}
|
||||
ruby-%{name} contains Ruby bindings for %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%if 0%{verify_tarball_signature}
|
||||
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
||||
%endif
|
||||
%setup -q
|
||||
%autopatch -p1
|
||||
|
||||
|
||||
%build
|
||||
%configure \
|
||||
PYTHON=%{__python3} \
|
||||
%if !%{with ocaml}
|
||||
--disable-ocaml \
|
||||
%endif
|
||||
%if 0%{?rhel}
|
||||
--disable-static \
|
||||
%endif
|
||||
%{nil}
|
||||
make V=1 INSTALLDIRS=vendor %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALLDIRS=vendor
|
||||
|
||||
# Remove unwanted libtool *.la file:
|
||||
rm $RPM_BUILD_ROOT%{_libdir}/libhivex.la
|
||||
|
||||
# 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
|
||||
|
||||
# Remove unwanted Python files:
|
||||
rm $RPM_BUILD_ROOT%{python3_sitearch}/libhivexmod.la
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
|
||||
%check
|
||||
# Disable some gnulib tests which fail on Arm and POWER and S/390
|
||||
# (2020-07, 2020-12):
|
||||
for f in test-float test-perror2 test-pthread_sigmask1 test-strerror_r; do
|
||||
pushd gnulib/tests
|
||||
make $f
|
||||
rm -f $f
|
||||
touch $f
|
||||
chmod +x $f
|
||||
popd
|
||||
done
|
||||
|
||||
if ! make check -k; then
|
||||
for f in $( find -name test-suite.log | xargs grep -l ^FAIL: ); do
|
||||
echo
|
||||
echo "***" $f "***"
|
||||
cat $f
|
||||
echo
|
||||
done
|
||||
exit 1
|
||||
fi
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc README
|
||||
%license LICENSE
|
||||
%{_bindir}/hivexget
|
||||
%{_bindir}/hivexml
|
||||
%{_bindir}/hivexsh
|
||||
%{_mandir}/man1/hivexget.1*
|
||||
%{_mandir}/man1/hivexml.1*
|
||||
%{_mandir}/man1/hivexsh.1*
|
||||
|
||||
|
||||
%files libs
|
||||
%doc README
|
||||
%license LICENSE
|
||||
%{_libdir}/libhivex.so.*
|
||||
|
||||
|
||||
%files devel
|
||||
%license LICENSE
|
||||
%{_libdir}/libhivex.so
|
||||
%{_mandir}/man3/hivex.3*
|
||||
%{_includedir}/hivex.h
|
||||
%{_libdir}/pkgconfig/hivex.pc
|
||||
|
||||
|
||||
%if !0%{?rhel}
|
||||
%files static
|
||||
%license LICENSE
|
||||
%{_libdir}/libhivex.a
|
||||
%endif
|
||||
|
||||
|
||||
%if %{with ocaml}
|
||||
%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
|
||||
%endif
|
||||
|
||||
|
||||
%files -n perl-%{name}
|
||||
%{perl_vendorarch}/*
|
||||
%{_mandir}/man3/Win::Hivex.3pm*
|
||||
%{_mandir}/man3/Win::Hivex::Regedit.3pm*
|
||||
%{_bindir}/hivexregedit
|
||||
%{_mandir}/man1/hivexregedit.1*
|
||||
|
||||
|
||||
%files -n python3-%{name}
|
||||
%{python3_sitearch}/hivex/
|
||||
%{python3_sitearch}/*.so
|
||||
|
||||
|
||||
%files -n ruby-%{name}
|
||||
%doc ruby/doc/site/*
|
||||
%{ruby_vendorlibdir}/hivex.rb
|
||||
%{ruby_vendorarchdir}/_hivex.so
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Sep 14 2021 Laszlo Ersek <lersek@redhat.com> - 1.3.21-3
|
||||
- Bring key collation order closer to that of Windows.
|
||||
- Resolves: RHBZ#1648524.
|
||||
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.3.21-2
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Mon Aug 2 2021 Richard W.M. Jones <rjones@redhat.com> - 1.3.21-1
|
||||
- New upstream version 1.3.21.
|
||||
- Fixes CVE-2021-3622 limit recursion in ri-records.
|
||||
|
||||
* Wed Jun 23 2021 Richard W.M. Jones <rjones@redhat.com> - 1.3.20-7
|
||||
- Bump and rebuild
|
||||
resolves: rhbz#1975314
|
||||
|
||||
* Fri Jun 11 2021 Matt Coleman <matt@datto.com> - 1.3.20-6
|
||||
- Move the library into a separate package: hivex-libs
|
||||
|
||||
* Fri Jun 11 2021 Matt Coleman <matt@datto.com> - 1.3.20-5
|
||||
- Mark LICENSE as a license file
|
||||
|
||||
* Wed Jun 2 2021 Richard W.M. Jones <rjones@redhat.com> - 1.3.20-3
|
||||
- Add gating tests (for RHEL 9)
|
||||
|
||||
* Mon May 3 2021 Richard W.M. Jones <rjones@redhat.com> - 1.3.20-1
|
||||
- New upstream version 1.3.20.
|
||||
- Fixes CVE-2021-3504 missing bounds check in hivex_open.
|
||||
|
||||
* Tue Mar 30 2021 Richard W.M. Jones <rjones@redhat.com> - 1.3.19-10
|
||||
- Bump and rebuild for ELN.
|
||||
|
||||
* Mon Mar 1 13:12:08 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 1.3.19-9
|
||||
- OCaml 4.12.0 build
|
||||
|
||||
* Wed Jan 27 2021 Richard W.M. Jones <rjones@redhat.com> - 1.3.19-8
|
||||
- Bump and rebuild for s390.
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.19-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Jan 07 2021 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.19-6
|
||||
- F-34: rebuild against ruby 3.0
|
||||
|
||||
* Thu Dec 03 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.19-5
|
||||
- Disable static subpackage on RHEL.
|
||||
|
||||
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.19-4
|
||||
- OCaml 4.11.1 rebuild
|
||||
|
||||
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.19-3
|
||||
- OCaml 4.11.0 rebuild
|
||||
|
||||
* Thu Jul 30 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.19-2
|
||||
- Disable some failing gnulib tests.
|
||||
|
||||
* Wed Jul 29 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.19-1
|
||||
- New upstream version 1.3.19.
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.18-28
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.18-27
|
||||
- Perl 5.32 rebuild
|
||||
|
||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.3.18-26
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Mon May 04 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-25
|
||||
- OCaml 4.11.0+dev2-2020-04-22 rebuild
|
||||
|
||||
* Tue Apr 21 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-24
|
||||
- OCaml 4.11.0 pre-release attempt 2
|
||||
|
||||
* Fri Apr 17 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-23
|
||||
- OCaml 4.11.0 pre-release
|
||||
|
||||
* Thu Apr 02 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-22
|
||||
- Update all OCaml dependencies for RPM 4.16.
|
||||
|
||||
* Wed Feb 26 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-21
|
||||
- OCaml 4.10.0 final.
|
||||
|
||||
* Wed Jan 29 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-20
|
||||
- Add a couple of upstream patches.
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.18-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Mon Jan 20 2020 Vít Ondruch <vondruch@redhat.com> - 1.3.18-18
|
||||
- Another rebuild against Ruby 2.7.
|
||||
|
||||
* Sun Jan 19 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-17
|
||||
- OCaml 4.10.0+beta1 rebuild.
|
||||
|
||||
* Sat Jan 18 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.18-16
|
||||
- F-32: rebuild against ruby27
|
||||
|
||||
* Thu Jan 09 2020 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-15
|
||||
- OCaml 4.09.0 for riscv64
|
||||
|
||||
* Fri Dec 06 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-14
|
||||
- OCaml 4.09.0 (final) rebuild.
|
||||
|
||||
* Wed Nov 27 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-13
|
||||
- Use gpgverify macro instead of explicit gpgv2 command.
|
||||
|
||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.3.18-12
|
||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.3.18-11
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Fri Aug 16 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-10
|
||||
- OCaml 4.08.1 (final) rebuild.
|
||||
|
||||
* Wed Jul 31 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-9
|
||||
- OCaml 4.08.1 (rc2) rebuild.
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.18-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jun 27 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-7
|
||||
- OCaml 4.08.0 (final) rebuild.
|
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.18-6
|
||||
- Perl 5.30 rebuild
|
||||
|
||||
* Mon Apr 29 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-5
|
||||
- OCaml 4.08.0 (beta 3) rebuild.
|
||||
|
||||
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.18-4
|
||||
- Rebuild for readline 8.0
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.18-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jan 24 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.18-2
|
||||
- F-30: rebuild again against ruby26
|
||||
|
||||
* Thu Jan 24 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.18-1
|
||||
- New upstream version 1.3.18.
|
||||
- Revert: Undefine _ld_as_needed which breaks gnulib tests.
|
||||
|
||||
* Thu Jan 24 2019 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.17-3
|
||||
- F-30: rebuild against ruby26
|
||||
|
||||
* Wed Jan 23 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.17-2
|
||||
- Undefine _ld_as_needed which breaks gnulib tests.
|
||||
|
||||
* Tue Jan 22 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.17-1
|
||||
- New upstream version 1.3.17.
|
||||
- Fixes regression of RHBZ#1145056.
|
||||
|
||||
* Thu Jan 17 2019 Richard W.M. Jones <rjones@redhat.com> - 1.3.16-1
|
||||
- New upstream version 1.3.16.
|
||||
|
||||
* Thu Jan 10 2019 Miro Hrončok <mhroncok@redhat.com> - 1.3.15-12
|
||||
- Remove Python 2 subpackage
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.15-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-10
|
||||
- OCaml 4.07.0 (final) rebuild.
|
||||
|
||||
* Fri Jul 06 2018 Petr Pisar <ppisar@redhat.com> - 1.3.15-9
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Thu Jul 05 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-8
|
||||
- Remove ldconfig
|
||||
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/SU3LJVDZ7LUSJGZR5MS72BMRAFP3PQQL/
|
||||
- BR on python-unversioned-command
|
||||
https://fedoraproject.org/wiki/Changes/Move_usr_bin_python_into_separate_package
|
||||
|
||||
* Tue Jul 03 2018 Petr Pisar <ppisar@redhat.com> - 1.3.15-7
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.15-6
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Tue Jun 19 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-5
|
||||
- OCaml 4.07.0-rc1 rebuild.
|
||||
|
||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.3.15-4
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Mon Mar 19 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-3
|
||||
- Add upstream patch to fix injection of LDFLAGS (RHBZ#1548536).
|
||||
|
||||
* Thu Mar 1 2018 Florian Weimer <fweimer@redhat.com> - 1.3.15-2
|
||||
- Rebuild with new redhat-rpm-config/perl build flags
|
||||
|
||||
* Mon Feb 26 2018 Richard W.M. Jones <rjones@redhat.com> - 1.3.15-1
|
||||
- New upstream version 1.3.15.
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.14-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.3.14-14
|
||||
- Rebuilt for switch to libxcrypt
|
||||
|
||||
* Fri Jan 05 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.14-13
|
||||
- F-28: rebuild for ruby25
|
||||
|
||||
* Wed Nov 08 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-12
|
||||
- Fix string mutability.
|
||||
|
||||
* Wed Nov 08 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-10
|
||||
- OCaml 4.06.0 rebuild.
|
||||
|
||||
* Mon Sep 18 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-9
|
||||
- ocaml-hivex-devel should Require hivex-devel.
|
||||
|
||||
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-8
|
||||
- OCaml 4.05.0 rebuild.
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.14-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.14-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-5
|
||||
- OCaml 4.04.2 rebuild.
|
||||
|
||||
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.14-4
|
||||
- Perl 5.26 rebuild
|
||||
|
||||
* Mon May 22 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-3
|
||||
- Create python2 and python3 subpackages (RHBZ#1453189).
|
||||
|
||||
* Fri May 12 2017 Richard W.M. Jones <rjones@redhat.com> - 1.3.14-2
|
||||
- OCaml 4.04.1 rebuild.
|
||||
|
||||
* 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.
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.13-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Jan 13 2017 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.13-11
|
||||
- F-26: rebuild again for ruby24
|
||||
|
||||
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.3.13-10
|
||||
- Rebuild for readline 7.x
|
||||
|
||||
* Thu Jan 12 2017 Vít Ondruch <vondruch@redhat.com> - 1.3.13-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4
|
||||
|
||||
* Sat Nov 05 2016 Richard W.M. Jones <rjones@redhat.com> - 1.3.13-8
|
||||
- Rebuild for OCaml 4.04.0.
|
||||
|
||||
* 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
|
||||
|
||||
* Tue May 17 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.13-6
|
||||
- Perl 5.24 rebuild
|
||||
|
||||
* Tue May 10 2016 Richard W.M. Jones <rjones@redhat.com> - 1.3.13-5
|
||||
- Explicitly BR rubygem(rdoc) RHBZ#1334753 and rubygem(json) RHBZ#1325022.
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.13-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Jan 12 2016 Vít Ondruch <vondruch@redhat.com> - 1.3.13-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.3
|
||||
|
||||
* Thu Oct 29 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.13-2
|
||||
- New upstream version 1.3.13.
|
||||
- Drop ancient 'Conflicts' rule.
|
||||
- Drop Perl patch for setting INSTALLDIRS.
|
||||
- Depend on pod2html, pod2man binaries explicitly.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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
|
||||
|
||||
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-12
|
||||
- OCaml 4.02.3 rebuild.
|
||||
|
||||
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-11
|
||||
- ocaml-4.02.2 final rebuild.
|
||||
|
||||
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-10
|
||||
- ocaml-4.02.2 rebuild.
|
||||
|
||||
* 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
|
||||
|
||||
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.11-8
|
||||
- Perl 5.22 rebuild
|
||||
|
||||
* 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).
|
||||
|
||||
* Tue Feb 17 2015 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-6
|
||||
- ocaml-4.02.1 rebuild.
|
||||
|
||||
* Sun Jan 18 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.3.11-5
|
||||
- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_2.2
|
||||
|
||||
* Thu Nov 20 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.11-4
|
||||
- Increase HIVEX_MAX_SUBKEYS.
|
||||
- Don't leak errno E2BIG to callers.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.10-12
|
||||
- Perl 5.20 rebuild
|
||||
|
||||
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-11
|
||||
- ocaml-4.02.0 final rebuild.
|
||||
|
||||
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.3.10-10
|
||||
- Perl 5.20 rebuild
|
||||
|
||||
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-9
|
||||
- ocaml-4.02.0+rc1 rebuild.
|
||||
|
||||
* 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
|
||||
|
||||
* Sat Aug 02 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-7
|
||||
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
|
||||
|
||||
* Tue Jul 22 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-6
|
||||
- OCaml 4.02.0 beta rebuild.
|
||||
|
||||
* 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
|
||||
|
||||
* Fri May 02 2014 Vít Ondruch <vondruch@redhat.com> - 1.3.10-4
|
||||
- Remove the ruby(release) version. It is not needed.
|
||||
|
||||
* Fri May 02 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.10-3
|
||||
- Rebuild to fix Ruby dependencies problem.
|
||||
|
||||
* Thu Apr 24 2014 Vít Ondruch <vondruch@redhat.com> - 1.3.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.1
|
||||
|
||||
* 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).
|
||||
|
||||
* Fri Jan 17 2014 Richard W.M. Jones <rjones@redhat.com> - 1.3.9-2
|
||||
- New upstream version 1.3.9.
|
||||
- Remove patches which are now upstream.
|
||||
|
||||
* Thu Sep 19 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.8-4
|
||||
- OCaml 4.01.0 rebuild.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.3.7-8
|
||||
- Perl 5.18 rebuild
|
||||
|
||||
* 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).
|
||||
|
||||
* Fri Feb 15 2013 Richard W.M. Jones <rjones@redhat.com> - 1.3.7-6
|
||||
- Fix for latest Ruby in Rawhide. Fixes build failure identified
|
||||
by mass rebuild yesterday.
|
||||
- Do not ignore error from running autoreconf.
|
||||
|
||||
* 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
|
||||
|
||||
* Mon Oct 29 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.7-2
|
||||
- Rebuild for OCaml 4.00.1.
|
||||
|
||||
* Thu Oct 11 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.7-1
|
||||
- New upstream version 1.3.7.
|
||||
|
||||
* 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
|
||||
|
||||
* Wed Jun 27 2012 Petr Pisar <ppisar@redhat.com> - 1.3.6-2
|
||||
- Perl 5.16 rebuild
|
||||
|
||||
* 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.
|
||||
|
||||
* Sat Jun 09 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.5-9
|
||||
- Rebuild for OCaml 4.00.0.
|
||||
|
||||
* Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 1.3.5-8
|
||||
- Perl 5.16 rebuild
|
||||
|
||||
* Fri May 18 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-7
|
||||
- "blobs" -> "files" in the description.
|
||||
|
||||
* Tue May 15 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-6
|
||||
- Bundled gnulib (RHBZ#821763).
|
||||
|
||||
* 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).
|
||||
|
||||
* Tue Mar 13 2012 Richard W.M. Jones <rjones@redhat.com> - 1:1.3.5-4
|
||||
- New upstream version 1.3.5.
|
||||
- Remove upstream patch.
|
||||
- Depend on automake etc. for the patch.
|
||||
|
||||
* Thu Feb 9 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-8
|
||||
- ruby(abi) 1.9.1.
|
||||
|
||||
* Wed Feb 8 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-7
|
||||
- Bump and rebuild for Ruby update.
|
||||
- Add upstream patch to fix bindings for Ruby 1.9.
|
||||
- Add non-upstream patch to pass --vendor flag to extconf.rb
|
||||
|
||||
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 1.3.3-3
|
||||
- Rebuild for OCaml 3.12.1.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* Mon Oct 24 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.2-3
|
||||
- New upstream version 1.3.2.
|
||||
- Add upstream patch to fix building of hivexsh, hivexget.
|
||||
|
||||
* Fri Aug 26 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.1-2
|
||||
- New upstream version 1.3.1.
|
||||
- Remove patch, now upstream.
|
||||
- Don't need hack for making an unversioned Python module.
|
||||
|
||||
* Mon Aug 15 2011 Richard W.M. Jones <rjones@redhat.com> - 1.3.0-3
|
||||
- New upstream version 1.3.0.
|
||||
- This version adds Ruby bindings, so there is a new subpackage 'ruby-hivex'.
|
||||
- Add upstream patch to fix Ruby tests.
|
||||
- Remove epoch macro in ruby-hivex dependency.
|
||||
|
||||
* 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.
|
||||
|
||||
* Fri Jul 22 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.7-9
|
||||
- Add upstream patch to fix Perl CCFLAGS for Perl 5.14 on i686.
|
||||
- Enable 'make check'.
|
||||
|
||||
* Thu Jul 21 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.7-6
|
||||
- i686 package is broken, experimentally rebuild it.
|
||||
|
||||
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.2.7-5
|
||||
- Perl mass rebuild
|
||||
|
||||
* Fri Jun 10 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.2.7-4
|
||||
- Perl 5.14 mass rebuild
|
||||
|
||||
* Tue May 17 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.7-3
|
||||
- New upstream version 1.2.7.
|
||||
- Removed patch which is now upstream.
|
||||
- Add upstream patches to fix ocaml install rule.
|
||||
|
||||
* Thu May 12 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.6-2
|
||||
- New upstream version 1.2.6.
|
||||
- Removed patch which is now upstream.
|
||||
- Add upstream patch to fix ocaml tests.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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
|
||||
|
||||
* 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.
|
||||
|
||||
* Wed Jan 5 2011 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-4
|
||||
- Rebuild against OCaml 3.12.0.
|
||||
|
||||
* Thu Dec 16 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.4-3
|
||||
- Backport upstream patch to fix segfault in Hivex.value_value binding.
|
||||
|
||||
* 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.
|
||||
|
||||
* Fri Nov 19 2010 Dan Horák <dan[at]danny.cz> - 1.2.3-3
|
||||
- fix built with recent perl
|
||||
|
||||
* Tue Sep 7 2010 Dan Horák <dan[at]danny.cz> - 1.2.3-2
|
||||
- conditionalize ocaml support
|
||||
|
||||
* Fri Aug 27 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.3-1
|
||||
- New upstream version 1.2.3.
|
||||
|
||||
* Wed Aug 25 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.2-3
|
||||
- Create a hivex-static subpackage.
|
||||
|
||||
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.2.2-2
|
||||
- Mass rebuild with perl-5.12.0
|
||||
|
||||
* Wed Apr 28 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.2-1
|
||||
- New upstream version 1.2.2.
|
||||
|
||||
* 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.
|
||||
|
||||
* Mon Mar 1 2010 Richard W.M. Jones <rjones@redhat.com> - 1.2.0-2
|
||||
- New upstream version 1.2.0.
|
||||
- This includes OCaml and Perl bindings, so add these as subpackages.
|
||||
|
||||
* 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.
|
Loading…
Reference in New Issue
Block a user