automatic version update by autodist [release 20250807-1mamba;Thu Sep 18 2025]

This commit is contained in:
2025-10-04 18:12:41 +02:00
parent 618f8d366e
commit aec9276b4b
3 changed files with 23 additions and 6 deletions

View File

@@ -3,4 +3,3 @@
Advanced Configuration & Power Interface Component Architecture (ACPI CA) provides a reference implementation of software components that enable OS support for interfaces defined in the ACPI 1.0b specification.
This includes: AML interpreter and debugger, Namespace Management, ACPI hardware support, and basic OSPM, including a device power management framework.

View File

@@ -0,0 +1,11 @@
--- acpica-20250807/source/components/executer/extrace.c.orig 2025-10-04 13:11:10.334036288 +0200
+++ acpica-20250807/source/components/executer/extrace.c 2025-10-04 13:11:56.048870473 +0200
@@ -301,7 +301,7 @@
switch (obj_desc->Common.Type)
{
case ACPI_TYPE_INTEGER:
- ACPI_DEBUG_PRINT_RAW((ACPI_DB_TRACE_POINT, "%lx", obj_desc->Integer.Value));
+ ACPI_DEBUG_PRINT_RAW((ACPI_DB_TRACE_POINT, "%llx", (unsigned long long) obj_desc->Integer.Value));
break;
case ACPI_TYPE_STRING:

View File

@@ -2,7 +2,7 @@
%define gv2 %{lua:print(string.sub(rpm.expand("%{version}"), 5, 6))}
%define gv3 %{lua:print(string.sub(rpm.expand("%{version}"), 7, 8))}
Name: acpica
Version: 20250404
Version: 20250807
Release: 1mamba
Summary: Advanced Configuration & Power Interface Component Architecture
Group: System/Kernel and Hardware
@@ -11,10 +11,11 @@ Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/acpica/acpica
Source: https://github.com/acpica/acpica.git/R%{gv1}_%{gv2}_%{gv3}/acpica-%{version}.tar.bz2
Source1: %{name}-license
Source1: acpica-license
Source2: http://www.intel.com/technology/iapc/acpi/downloads/AslCompiler.pdf
Source3: http://www.intel.com/technology/iapc/acpi/downloads/ACPICA-ProgRef.pdf
Patch1: %{name}-20061109-iasl_manpage.patch
Patch0: acpica-20061109-iasl_manpage.patch
Patch1: acpica-20250807-x86-fix-int64-format.patch
License: Intel Software License Agreement
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
@@ -28,11 +29,14 @@ ExclusiveArch: %{ix86} x86_64
Advanced Configuration & Power Interface Component Architecture (ACPI CA) provides a reference implementation of software components that enable OS support for interfaces defined in the ACPI 1.0b specification.
This includes: AML interpreter and debugger, Namespace Management, ACPI hardware support, and basic OSPM, including a device power management framework.
%prep
%setup -q
cd source
%ifarch %{ix86}
%patch 1 -p1
%endif
cd source
%patch 0 -p1
cp %{S:1} LICENSE
cp %{S:2} %{S:3} .
@@ -56,6 +60,9 @@ export CFLAGS="%{optflags} -Wno-dangling-pointer -Wno-format-overflow"
%doc source/LICENSE
%changelog
* Thu Sep 18 2025 Automatic Build System <autodist@openmamba.org> 20250807-1mamba
- automatic version update by autodist
* Thu Apr 10 2025 Automatic Build System <autodist@openmamba.org> 20250404-1mamba
- automatic version update by autodist