Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37753175
en ru br
ALT Linux repos
S:20230628-alt1

Group :: System/Kernel and hardware
RPM: acpica

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 


Name: acpica
Version: 20230628
Release: alt1
Summary: ACPICA tools for the development and debug of ACPI tables

Group: System/Kernel and hardware
License: GPLv2
Url: https://www.acpica.org/

#vcs-git https://github.com/acpica/acpica.git

Source: %name-%version.tar
Source3: iasl.1
Source4: acpibin.1
Source5: acpidump.1
Source6: acpiexec.1
Source7: acpihelp.1
Source9: acpisrc.1
Source10: acpixtract.1
Source11: acpiexamples.1
Source12: badcode.asl.result
Source13: grammar.asl.result
Source14: converterSample.asl.result
Source15: run-misc-tests.sh


# other miscellaneous patches

Patch100: unaligned.patch
Patch101: OPT_LDFLAGS.patch
Patch102: int-format.patch
Patch103: f23-harden.patch
Patch104: template.patch
Patch105: arm7hl.patch
Patch107: mips-be-fix.patch
Patch108: cve-2017-13693.patch
Patch109: cve-2017-13694.patch
Patch110: cve-2017-13695.patch
Patch111: str-trunc-warn.patch
Patch112: ptr-cast.patch
Patch113: armv7-str-fixes.patch
Patch114: dbtest.patch
Patch116: dangling-ptr.patch
Patch117: uuid-len.patch

BuildRequires: bison flex

Provides: %name-tools = %version-%release

# 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 = %version-%release
Provides: iasl = %version-%release
Obsoletes: iasl < %version-%release

# 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 = %version-%release
Provides: pmtools = %version-%release
Obsoletes: pmtools < %version-%release

%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
  -- 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
%autopatch -p1

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 %SOURCE9 acpisrc.1
cp -p %SOURCE10 acpixtract.1
cp -p %SOURCE11 acpiexamples.1
cp -p %SOURCE12 badcode.asl.result
cp -p %SOURCE13 grammar.asl.result
cp -p %SOURCE14 converterSample.asl.result
cp -p %SOURCE15 tests/run-misc-tests.sh
chmod a+x tests/run-misc-tests.sh

%ifarch %e2k
sed -i 's,-Werror ,,' generate/unix/iasl/Makefile
%endif

%build
CWARNINGFLAGS="\
   -std=c99 \
   -Wall \
   -Wbad-function-cast \
   -Wdeclaration-after-statement \
%ifnarch %e2k
   -Werror \
%endif
   -Wformat=2 \
   -Wmissing-declarations \
   -Wmissing-prototypes \
   -Wstrict-aliasing \
   -Wstrict-prototypes \
   -Wswitch-default \
   -Wpointer-arith \
   -Wundef \
   -Waddress \
   -Waggregate-return \
   -Winit-self \
   -Winline \
   -Wmissing-declarations \
   -Wmissing-field-initializers \
   -Wnested-externs \
   -Wold-style-definition \
   -Wno-format-nonliteral \
   -Wredundant-decls \
   -Wempty-body \
   -Woverride-init \
   -Wlogical-op \
   -Wmissing-parameter-type \
   -Wold-style-declaration \
   -Wtype-limits"

OPT_CFLAGS="%optflags $CWARNINGFLAGS"
export OPT_CFLAGS

%make HOST=_LINUX NOFORTIFY=TRUE

%install
# Install the binaries
mkdir -p %buildroot%_bindir
install -pD -m0755 generate/unix/bin*/* %buildroot%_bindir/

# Install the man pages

mkdir -p %buildroot%_man1dir
install -pD -m0644 *.1 %buildroot%_man1dir/

%check
cd tests

# ASL tests

./aslts.sh                         # relies on non-zero exit
[ $? -eq 0 ] || exit 1

# misc tests

#./run-misc-tests.sh %buildroot%_bindir %version

%files
%doc documents/changes.txt source/compiler/new_table.txt
%_bindir/*
%_man1dir/*

%changelog

Full changelog you can see here

 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin