2013-08-28 19:31:28 +00:00
|
|
|
Name: acpica-tools
|
2015-08-04 22:23:14 +00:00
|
|
|
Version: 20150717
|
|
|
|
Release: 1%{?dist}
|
2013-08-28 19:31:28 +00:00
|
|
|
Summary: ACPICA tools for the development and debug of ACPI tables
|
|
|
|
|
|
|
|
Group: Development/Languages
|
|
|
|
License: GPLv2
|
|
|
|
URL: https://www.acpica.org/
|
|
|
|
|
|
|
|
Source0: https://acpica.org/sites/acpica/files/acpica-unix2-%{version}.tar.gz
|
|
|
|
Source1: https://acpica.org/sites/acpica/files/acpitests-unix-%{version}.tar.gz
|
|
|
|
Source2: README.Fedora
|
|
|
|
Source3: iasl.1
|
|
|
|
Source4: acpibin.1
|
|
|
|
Source5: acpidump.1
|
|
|
|
Source6: acpiexec.1
|
|
|
|
Source7: acpihelp.1
|
|
|
|
Source8: acpinames.1
|
|
|
|
Source9: acpisrc.1
|
|
|
|
Source10: acpixtract.1
|
|
|
|
Source11: badcode.asl.result
|
|
|
|
Source12: grammar.asl.result
|
|
|
|
Source13: run-misc-tests.sh
|
|
|
|
Source14: COPYING
|
|
|
|
|
|
|
|
Patch0: debian-big_endian.patch
|
|
|
|
Patch1: debian-unaligned.patch
|
|
|
|
Patch2: name-miscompare.patch
|
|
|
|
Patch3: aapits-linux.patch
|
2014-02-28 02:42:26 +00:00
|
|
|
Patch4: asllookup-miscompare.patch
|
2015-04-10 21:49:17 +00:00
|
|
|
Patch5: re-enable-big-endian.patch
|
|
|
|
Patch6: OPT_LDFLAGS.patch
|
|
|
|
Patch7: int-format.patch
|
|
|
|
Patch8: f23-harden.patch
|
2013-08-28 19:31:28 +00:00
|
|
|
|
|
|
|
BuildRequires: bison patchutils flex
|
|
|
|
|
|
|
|
# The previous iasl package contained only a very small subset of these tools
|
|
|
|
# and it produced only the iasl package listed below; further, the pmtools
|
|
|
|
# package -- which provides acpidump -- also provides a /usr/sbin/acpixtract
|
|
|
|
# that we don't really want to collide with
|
|
|
|
Provides: acpixtract >= 20120913-7
|
|
|
|
Provides: iasl = %{version}-%{release}
|
2013-09-13 19:40:33 +00:00
|
|
|
Obsoletes: iasl < 20120913-8
|
2013-08-28 19:31:28 +00:00
|
|
|
|
|
|
|
# The pmtools package provides an obsolete and deprecated version of the
|
|
|
|
# acpidump command from lesswatts.org which has now been taken off-line.
|
|
|
|
# ACPICA, however, is providing a new version and we again do not want to
|
|
|
|
# conflict with the command name.
|
|
|
|
Provides: acpidump >= 20100513-5
|
|
|
|
Provides: pmtools = %{version}-%{release}
|
2013-09-10 19:39:28 +00:00
|
|
|
Obsoletes: pmtools < 20100513-6
|
2013-08-28 19:31:28 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
The ACPI Component Architecture (ACPICA) project provides an OS-independent
|
|
|
|
reference implementation of the Advanced Configuration and Power Interface
|
|
|
|
Specification (ACPI). ACPICA code contains those portions of ACPI meant to
|
|
|
|
be directly integrated into the host OS as a kernel-resident subsystem, and
|
|
|
|
a small set of tools to assist in developing and debugging ACPI tables.
|
|
|
|
|
|
|
|
This package contains only the user-space tools needed for ACPI table
|
|
|
|
development, not the kernel implementation of ACPI. The following commands
|
|
|
|
are installed:
|
|
|
|
-- iasl: compiles ASL (ACPI Source Language) into AML (ACPI Machine
|
|
|
|
Language), suitable for inclusion as a DSDT in system firmware.
|
|
|
|
It also can disassemble AML, for debugging purposes.
|
|
|
|
-- acpibin: performs basic operations on binary AML files (e.g.,
|
|
|
|
comparison, data extraction)
|
|
|
|
-- acpidump: write out the current contents of ACPI tables
|
|
|
|
-- acpiexec: simulate AML execution in order to debug method definitions
|
|
|
|
-- acpihelp: display help messages describing ASL keywords and op-codes
|
|
|
|
-- acpinames: display complete ACPI name space from input AML
|
|
|
|
-- acpisrc: manipulate the ACPICA source tree and format source files
|
|
|
|
for specific environments
|
|
|
|
-- acpixtract: extract binary ACPI tables from acpidump output (see
|
|
|
|
also the pmtools package)
|
|
|
|
|
|
|
|
This version of the tools is being released under GPLv2 license.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n acpica-unix2-%{version}
|
|
|
|
gzip -dc %{SOURCE1} | tar -x --strip-components=1 -f -
|
|
|
|
|
|
|
|
%patch0 -p1 -b .debian-big_endian
|
|
|
|
%patch1 -p1 -b .debian-unaligned
|
|
|
|
%patch2 -p1 -b .name-miscompare
|
|
|
|
%patch3 -p1 -b .aapits-linux
|
2014-02-28 02:42:26 +00:00
|
|
|
%patch4 -p1 -b .asllookup-miscompare
|
2015-04-10 21:49:17 +00:00
|
|
|
%patch5 -p1 -b .re-enable-big-endian
|
|
|
|
%patch6 -p1 -b .OPT_LDFLAGS
|
|
|
|
%patch7 -p1 -b .int-format
|
|
|
|
%patch8 -p1 -b .f23-harden
|
2013-08-28 19:31:28 +00:00
|
|
|
|
|
|
|
cp -p %{SOURCE2} README.Fedora
|
|
|
|
cp -p %{SOURCE3} iasl.1
|
|
|
|
cp -p %{SOURCE4} acpibin.1
|
|
|
|
cp -p %{SOURCE5} acpidump.1
|
|
|
|
cp -p %{SOURCE6} acpiexec.1
|
|
|
|
cp -p %{SOURCE7} acpihelp.1
|
|
|
|
cp -p %{SOURCE8} acpinames.1
|
|
|
|
cp -p %{SOURCE9} acpisrc.1
|
|
|
|
cp -p %{SOURCE10} acpixtract.1
|
|
|
|
cp -p %{SOURCE11} badcode.asl.result
|
|
|
|
cp -p %{SOURCE12} grammar.asl.result
|
|
|
|
cp -p %{SOURCE13} tests/run-misc-tests.sh
|
|
|
|
chmod a+x tests/run-misc-tests.sh
|
|
|
|
cp -p %{SOURCE14} COPYING
|
|
|
|
|
|
|
|
# spurious executable permissions on text files in upstream
|
|
|
|
chmod a-x changes.txt
|
|
|
|
chmod a-x source/compiler/new_table.txt
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2014-10-01 19:31:13 +00:00
|
|
|
make OPT_CFLAGS="%{optflags}" OPT_LDFLAGS="%{__global_ldflags}"
|
2013-08-28 19:31:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
# Install the binaries
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
install -pD generate/unix/bin*/* %{buildroot}%{_bindir}/
|
|
|
|
mv %{buildroot}%{_bindir}/acpidump %{buildroot}%{_bindir}/acpidump-acpica
|
|
|
|
mv %{buildroot}%{_bindir}/acpixtract %{buildroot}%{_bindir}/acpixtract-acpica
|
|
|
|
|
|
|
|
# Install the man pages
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
|
|
install -pDm 0644 -p -D *.1 %{buildroot}%{_mandir}/man1/
|
|
|
|
mv %{buildroot}%{_mandir}/man1/acpixtract.1 \
|
|
|
|
%{buildroot}%{_mandir}/man1/acpixtract-acpica.1
|
|
|
|
mv %{buildroot}%{_mandir}/man1/acpidump.1 \
|
|
|
|
%{buildroot}%{_mandir}/man1/acpidump-acpica.1
|
|
|
|
|
|
|
|
%check
|
|
|
|
cd tests
|
|
|
|
|
|
|
|
# ASL tests
|
|
|
|
./aslts.sh # relies on non-zero exit
|
|
|
|
[ $? -eq 0 ] || exit 1
|
|
|
|
|
|
|
|
# API tests
|
|
|
|
cd aapits
|
|
|
|
make
|
|
|
|
cd asl
|
|
|
|
ASL=%{buildroot}%{_bindir}/iasl make
|
|
|
|
cd ../bin
|
|
|
|
./aapitsrun
|
|
|
|
[ $? -eq 0 ] || exit 1
|
|
|
|
cd ../..
|
|
|
|
|
|
|
|
# misc tests
|
|
|
|
./run-misc-tests.sh %{buildroot}%{_bindir} %{version}
|
|
|
|
|
|
|
|
# Template tests
|
|
|
|
cd templates
|
|
|
|
make
|
|
|
|
if [ -f diff.log ]
|
|
|
|
then
|
|
|
|
if [ -s diff.log ]
|
|
|
|
then
|
|
|
|
exit 1 # implies errors occurred
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
alternatives --install %{_bindir}/acpixtract acpixtract \
|
|
|
|
%{_bindir}/acpixtract-acpica 120 \
|
|
|
|
--slave %{_mandir}/man1/acpixtract.1.gz acpixtract.1.gz \
|
2014-04-05 21:32:53 +00:00
|
|
|
%{_mandir}/man1/acpixtract-acpica.1.gz
|
2013-08-28 19:31:28 +00:00
|
|
|
|
|
|
|
alternatives --install %{_bindir}/acpidump acpidump \
|
|
|
|
%{_bindir}/acpidump-acpica 120 \
|
|
|
|
--slave %{_mandir}/man1/acpidump.1.gz acpidump.1.gz \
|
2014-04-05 21:32:53 +00:00
|
|
|
%{_mandir}/man1/acpidump-acpica.1.gz
|
2013-08-28 19:31:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ ! -e %{_bindir}/acpixtract-acpica ]
|
|
|
|
then
|
|
|
|
alternatives --remove acpixtract %{_bindir}/acpixtract-acpica
|
|
|
|
fi
|
|
|
|
if [ ! -e %{_bindir}/acpidump-acpica ]
|
|
|
|
then
|
|
|
|
alternatives --remove acpidump %{_bindir}/acpidump-acpica
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc changes.txt source/compiler/new_table.txt
|
|
|
|
%doc README.Fedora COPYING
|
|
|
|
%{_bindir}/*
|
|
|
|
%{_mandir}/*/*
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2015-08-04 22:23:14 +00:00
|
|
|
* Tue Aug 4 2105 Al Stone <ahs3@redhat.com> - 20150717-1
|
|
|
|
- Update to latest upstream. Closes BZ#1244449.
|
|
|
|
- Refresh patches
|
|
|
|
|
2015-06-30 22:18:31 +00:00
|
|
|
* Tue Jun 30 2015 Al Stone <ahs3@redhat.com> - 20150619-2
|
2015-06-30 22:17:06 +00:00
|
|
|
- Silly error: forgot to remove patches that are no longer needed
|
|
|
|
|
2015-06-30 21:47:41 +00:00
|
|
|
* Mon Jun 29 2015 Al Stone <ahs3@redhat.com> - 20150619-1
|
|
|
|
- Update to latest upstream. Closes BZ#1232512.
|
|
|
|
- Refresh patches
|
|
|
|
|
2015-06-16 23:35:29 +00:00
|
|
|
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20150515-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-03 21:16:20 +00:00
|
|
|
* Wed Jun 3 2015 Al Stone <ahs3@redhat.com> - 20150515-2
|
|
|
|
- Replace dev-mem patch with nodevmem; this is a much more robust version of
|
|
|
|
the functionality needed, and set up properly for arm64 -- the patch makes
|
|
|
|
it so that acpidump does not use /dev/mem at all on arm64 since it might
|
|
|
|
not contain the right data.
|
|
|
|
|
2015-06-01 20:41:40 +00:00
|
|
|
* Mon Jun 1 2015 Al Stone <ahs3@redhat.com> - 20150515-1
|
2015-05-28 18:53:37 +00:00
|
|
|
- Update to latest upstream. Closes BZ#122166
|
|
|
|
- Refresh patches
|
2015-05-29 23:06:02 +00:00
|
|
|
- Add patch from upstream for incorrect UUIDs for NFIT
|
|
|
|
- Add patch from Linaro to remove use of /dev/mem (use /sys instead)
|
|
|
|
- Add patch from upstream to correct ARM GIC entries in MADT
|
2015-06-01 20:41:40 +00:00
|
|
|
- Add patch to fix segfaults reported. Closes BZ#1219341.
|
2015-05-28 18:53:37 +00:00
|
|
|
|
2015-04-14 02:54:43 +00:00
|
|
|
* Mon Apr 13 2015 Al Stone <ahs3@redhat.com> - 20150410-1
|
|
|
|
- Update to latest upstream. Closes BZ#1190383
|
|
|
|
- Refresh patches
|
|
|
|
|
2015-04-10 21:49:17 +00:00
|
|
|
* Fri Apr 10 2015 Al Stone <ahs3@redhat.com> - 20150408-1
|
|
|
|
- Update to latest upstream. Closes BZ#1190383
|
|
|
|
- Refresh patches
|
|
|
|
|
2015-03-03 01:09:09 +00:00
|
|
|
* Mon Mar 2 2015 Al Stone <ahs3@redhat.com> - 20150204-1
|
|
|
|
- Update to latest upstream. Closes BZ#1190383
|
|
|
|
- Refresh patches
|
|
|
|
|
2014-11-18 00:51:11 +00:00
|
|
|
* Mon Nov 17 2014 Al Stone <ahs3@redhat.com> - 20141107-1
|
|
|
|
- Update to latest upstream. Closes BZ#1147131.
|
|
|
|
- Refresh patches
|
|
|
|
- Patch to ensure ASLTS always reports when an error occurs, instead
|
|
|
|
of glossing over it has been incorporated upstream, so remove patch.
|
|
|
|
|
2014-10-01 17:50:56 +00:00
|
|
|
* Wed Oct 1 2014 Al Stone <ahs3@redhat.com> - 20140926-1
|
2014-09-30 22:10:41 +00:00
|
|
|
- Update to latest upstream. Closes BZ#1147131.
|
2014-10-01 17:50:56 +00:00
|
|
|
- Refresh patches
|
2014-10-01 18:06:53 +00:00
|
|
|
- Add patch to ensure ASLTS always reports when an error occurs, instead
|
|
|
|
of glossing over it.
|
2014-10-01 19:31:13 +00:00
|
|
|
- Add use of %__global_ldflags. Closes BZ#1126134.
|
2014-09-30 22:10:41 +00:00
|
|
|
|
2014-08-29 19:06:49 +00:00
|
|
|
* Fri Aug 29 2014 Al Stone <ahs3@redhat.com> - 20140828-1
|
|
|
|
- Update to latest upstream. Closes BZ#1135352.
|
|
|
|
- Refresh patches.
|
|
|
|
|
2014-08-15 19:57:44 +00:00
|
|
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20140724-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-28 19:21:07 +00:00
|
|
|
* Mon Jul 28 2014 Al Stone <ahs3@redhat.com> - 20140724-1
|
|
|
|
- Update to latest upstream. Closes BZ#1114275.
|
|
|
|
- This update adds support for the 5.1 version of the ACPI specification
|
2014-07-28 21:06:33 +00:00
|
|
|
- Refresh patches so everything applies properly.
|
2014-07-28 19:21:07 +00:00
|
|
|
|
2014-06-06 21:00:26 +00:00
|
|
|
* Fri Jun 6 2014 Dan Horák <dan[at]danny.cz> - 20140424-3
|
|
|
|
- refresh the big endian patch so it applies correctly, fixes build on big endians
|
|
|
|
|
2014-05-23 00:07:46 +00:00
|
|
|
* Thu May 22 2014 Al Stone <ahs3@redhat.com> - 20140424-2
|
|
|
|
- Add ppc64le as a 64-bit arch in run-misc-tests.sh. Closes BZ#1098614.
|
|
|
|
- Re-enable big-endian support in iasl.
|
|
|
|
|
2014-05-07 21:34:20 +00:00
|
|
|
* Wed May 7 2014 Al Stone <ahs3@redhat.com> - 20140424-1
|
|
|
|
- Update to latest upstream. Closes BZ#1091189.
|
|
|
|
|
2014-04-05 21:32:53 +00:00
|
|
|
* Fri Apr 4 2014 Al Stone <ahs3@redhat.com> - 20140325-1
|
|
|
|
- Update to latest upstream. Closes BZ#1080791.
|
|
|
|
- Incorporated patch to fix broken symlinks. Closes BZ#1074256.
|
|
|
|
- Add patch to fix missing .o files in aapits tests.
|
|
|
|
|
2014-02-28 02:42:26 +00:00
|
|
|
* Wed Feb 26 2014 Al Stone <ahs3@redhat.com> - 20140214-1
|
|
|
|
- Update to latest upstream. Closes BZ#1053396.
|
|
|
|
- Remove temporary patch so that AAPITS will build and run.
|
|
|
|
- Add patch to print asllookup.c warning properly on big endian;
|
|
|
|
Closes BZ#1069178.
|
|
|
|
|
2014-01-24 17:40:50 +00:00
|
|
|
* Tue Jan 21 2014 Al Stone <ahs3@redhat.com> - 20140114-1
|
|
|
|
- Update to latest upstream. Closes BZ#1053396.
|
|
|
|
- Remove temporary patch to add Makefile missing from upstream tarball.
|
|
|
|
- Add temporary patch so that AAPITS will build and run.
|
|
|
|
|
2014-01-07 21:35:10 +00:00
|
|
|
* Tue Jan 7 2014 Al Stone <ahs3@redhat.com> - 20131218-1
|
|
|
|
- Update to latest upstream. Closes BZ#1044951.
|
|
|
|
- Add temporary patch to add Makefile missing from upstream tarball.
|
|
|
|
|
2013-11-25 23:20:11 +00:00
|
|
|
* Mon Nov 25 2013 Al Stone <ahs3@redhat.com> - 20131115-1
|
|
|
|
- Update to latest upstream. Closes BZ#1031255.
|
2013-11-26 01:44:48 +00:00
|
|
|
- Add a little code to workaround build problems that can occur (the tests
|
|
|
|
will fail) when a build starts before midnight, but ends after midnight
|
|
|
|
- Remove patch to include Makefile.config that was missing from tarball.
|
2013-11-25 23:20:11 +00:00
|
|
|
|
2013-10-09 18:57:17 +00:00
|
|
|
* Wed Oct 09 2013 Al Stone <ahs3@redhat.com> - 20130927-1
|
|
|
|
- Update to latest upstream. Closes BZ#1013090.
|
|
|
|
- Add temporary patch to include Makefile.config being missing from tarball.
|
|
|
|
|
2013-09-13 19:40:33 +00:00
|
|
|
* Fri Sep 13 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 20130823-5
|
|
|
|
- correct iasl obs_ver
|
|
|
|
|
2013-10-09 02:04:51 +00:00
|
|
|
* Tue Sep 10 2013 Dean Nelson <dnelson@redhat.com> - 20130823-4
|
2013-09-11 02:16:31 +00:00
|
|
|
- Fix run-misc-tests.sh script to properly set the number of BITS to 64
|
|
|
|
when run on a s390x system.
|
|
|
|
|
2013-09-10 19:39:28 +00:00
|
|
|
* Tue Sep 10 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 20130823-3
|
|
|
|
- correct pmtools obs_ver
|
|
|
|
|
2013-08-28 19:31:28 +00:00
|
|
|
* Tue Aug 27 2013 Al Stone <ahs3@redhat.com> - 20130823-2
|
|
|
|
- Add in a copy of the GPLv2 text in order to comply with the requirement
|
|
|
|
to always redistribute the terms of the license.
|
|
|
|
|
|
|
|
* Mon Aug 26 2013 Al Stone <ahs3@redhat.com> - 20130823-1
|
|
|
|
- Update to latest upstream source.
|
|
|
|
|
|
|
|
* Tue Aug 20 2013 Al Stone <ahs3@redhat.com> - 20130725-2
|
|
|
|
- Fix several rpmlint items (listed below)
|
|
|
|
- Add versions to explicit provides for acpixtract, acpidump
|
|
|
|
- Not all setup steps used -q
|
|
|
|
- Setup executable test script (run-misc-tests.sh) differently
|
|
|
|
- Removed unneeded commented out line with macros in it
|
|
|
|
- Removed mixed use of spaces and tabs (all spaces now)
|
|
|
|
- Corrected source URLs (upstream moved)
|
|
|
|
|
|
|
|
* Sun Aug 18 2013 Al Stone <ahs3@redhat.com> - 20130725-1
|
|
|
|
- Update to latest upstream source.
|
|
|
|
|
|
|
|
* Wed Jul 24 2013 Al Stone <ahs3@redhat.com> - 20130626-1
|
|
|
|
- Update to latest upstream source.
|
|
|
|
- Move acpidump to acpidump-acpica so it be an alternative properly
|
|
|
|
- Add basic man page for acpidump
|
|
|
|
- Enable use of AAPITS tests during the check step
|
|
|
|
|
|
|
|
* Sun Jun 02 2013 Al Stone <ahs3@redhat.com> - 20130517-2
|
|
|
|
- Correct an oversight: we provide an acpidump in conflict with the
|
|
|
|
version in pmtools (which appears to be dead upstream) but had not
|
|
|
|
made it an alternative before
|
|
|
|
|
|
|
|
* Tue May 28 2013 Al Stone <ahs3@redhat.com> - 20130517-1
|
|
|
|
- Update to latest upstream source.
|
|
|
|
- Remove acpica-tools-config.patch -- now in upstream
|
|
|
|
- Remove iasl-signed-char.patch -- now in upstream
|
|
|
|
- Updated debian-big_endian.patch
|
|
|
|
- Updated debian-unaligned.patch
|
|
|
|
|
|
|
|
* Mon May 13 2013 Al Stone <ahs3@redhat.com> - 20130328-1
|
|
|
|
- Update to latest upstream source.
|
|
|
|
|
|
|
|
* Wed Mar 20 2013 Al Stone <ahs3@redhat.com> - 20130214-2
|
|
|
|
- Incorporate use of optflags macro in the build.
|
|
|
|
- Remove extraneous rm -rf of buildroot.
|
|
|
|
- Remove extraneous use of defattr in the files section.
|
|
|
|
- Incorporate use of parallel make.
|
|
|
|
- Remove extraneous use of the clean section.
|
|
|
|
- Use simpler globbing in the files section.
|
|
|
|
- Use simpler globbing in the install section.
|
|
|
|
- Remove obsolete git notes from README.Fedora.
|
|
|
|
- Remove ExcludeArch restrictions.
|
|
|
|
|
|
|
|
* Mon Feb 18 2013 Al Stone <ahs3@redhat.com> - 20130214-1
|
|
|
|
- New upstream.
|
|
|
|
- Remove most of the config file patch; still need to remove -m{32,64}.
|
|
|
|
- Clarify the licensing; this source is dual-licensed and is being released
|
|
|
|
under the GPLv2 as allowed by the original Intel license.
|
|
|
|
- Redo the misc tests so they compare results properly.
|
|
|
|
|
|
|
|
* Wed Feb 06 2013 Al Stone <ahs3@redhat.com> - 20130117-6
|
|
|
|
- Added a zero-fill to a date used in comparing testing results so that the
|
|
|
|
comparison would be correct on days numbered < 10.
|
|
|
|
|
|
|
|
* Thu Jan 31 2013 Al Stone <ahs3@redhat.com> - 20130117-5
|
|
|
|
- Simplify versioning scheme and revert to the original scheme in use by
|
|
|
|
iasl, which is use the latest official tarball date (2013017) as the
|
|
|
|
version and 1%{?dist} as the release, to be incremented for packaging
|
|
|
|
and bug fixes as needed.
|
|
|
|
|
|
|
|
* Wed Jan 30 2013 Al Stone <ahs3@redhat.com> - 20130117-4
|
|
|
|
- Do a little reset: go back to using just the original upstream tarball
|
|
|
|
instead of the latest git; the snapshot approach was more complicated
|
|
|
|
than needed.
|
|
|
|
- Upstream tarballs split commands from test suites, so had to add the
|
|
|
|
test suite back in as another Source: file.
|
|
|
|
- Change versioning scheme to include the APCI specification level (5.0),
|
|
|
|
the latest official tarball date (2013017) and a revision level (the
|
|
|
|
.1 at the end) for packaging and bug fixes as needed.
|
|
|
|
- Changed the License field to reflect the source tarball change; the release
|
|
|
|
tarball is dual-licensed, Intel ACPI or GPLv2.
|
|
|
|
- Updated patches to apply cleanly as needed.
|
|
|
|
- Corrected Obsoletes and Provides version numbers.
|
|
|
|
|
|
|
|
* Mon Jan 28 2013 Al Stone <ahs3@redhat.com> - 20130117-3
|
|
|
|
- Reconcile Fedora and Debian patches to be as alike as possible
|
|
|
|
|
|
|
|
* Mon Jan 28 2013 Al Stone <ahs3@redhat.com> - 20130117-2
|
|
|
|
- Verify ExcludeArch restrictions -- the architectures excluded can have
|
|
|
|
no use for these tools. Hardware support for ACPI is simply not
|
|
|
|
implemented for them.
|
|
|
|
- Corrected versioning to note this source came from a git pull.
|
|
|
|
- Add License file as upstream has not yet provided one (and has not for
|
|
|
|
many years).
|
|
|
|
- Insert properly versioned Provides and Obsoletes for iasl.
|
|
|
|
- Corrected files to use man.1* (vs man.1.gz) to allow flexibility in the
|
|
|
|
compression being used.
|
|
|
|
|
|
|
|
* Wed Jan 23 2013 Al Stone <ahs3@redhat.com> - 20130117-1
|
|
|
|
- Clone from the current iasl package, with the intent of replacing it
|
|
|
|
- Update source to latest upstream
|
|
|
|
- NB: ACPICA documentation would normally be included in a source tarball.
|
|
|
|
But, since it is not clearly redistributable, it is not included in the
|
|
|
|
source RPM for this package.
|
|
|
|
- Build all ACPICA tools, not just iasl (and hence the package replacement)
|
|
|
|
- Add in brief man pages
|
|
|
|
- Set up acpixtract from this package as an alternative to the same command
|
|
|
|
in the pmtools package
|
|
|
|
- Run the check step once built
|
|
|
|
|