Hello community,

here is the log from the commit of package acpica for openSUSE:Factory checked 
in at 2014-01-09 07:13:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/acpica (Old)
 and      /work/SRC/openSUSE:Factory/.acpica.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "acpica"

Changes:
--------
--- /work/SRC/openSUSE:Factory/acpica/acpica.changes    2013-12-13 
14:52:45.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.acpica.new/acpica.changes       2014-01-09 
07:13:11.000000000 +0100
@@ -1,0 +2,9 @@
+Thu Dec 19 08:27:31 UTC 2013 - [email protected]
+
+- Update to version 20131218
+  Add acpica-add_missing_examples_makefile.patch: They forgot to add a file
+  to the tarball. This patch adds it from git repo.
+  Drop acpica-fix_dots_in_path_for_p_option.patch: This patch is included
+  in the newly provided version tarball already.
+
+-------------------------------------------------------------------

Old:
----
  acpica-fix_dots_in_path_for_p_option.patch
  acpica-unix2-20131115.tar.bz2

New:
----
  acpica-add_missing_examples_makefile.patch
  acpica-unix2-20131218.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ acpica.spec ++++++
--- /var/tmp/diff_new_pack.eAPZU5/_old  2014-01-09 07:13:12.000000000 +0100
+++ /var/tmp/diff_new_pack.eAPZU5/_new  2014-01-09 07:13:12.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package acpica
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 
 Name:           acpica
 Url:            http://acpica.org
-Version:        20131115
+Version:        20131218
 Release:        6
 License:        GPL-2.0
 %define src_dir acpica-unix2-%{version}
@@ -30,7 +30,7 @@
 Source:         %{src_dir}.tar.bz2
 Patch1:         acpica-no-compiletime.patch
 Patch2:         wmidump_add_she_bang.patch
-Patch3:         acpica-fix_dots_in_path_for_p_option.patch
+Patch3:         acpica-add_missing_examples_makefile.patch
 Source1:        ec_access.c
 Source2:        acpi_genl.tar.bz2
 Source3:        acpi_validate
@@ -102,6 +102,7 @@
 /usr/bin/acpihelp
 /usr/bin/acpinames
 /usr/bin/acpi_validate
+/usr/bin/acpiexamples
 
 %doc %{_docdir}/%{name}
 

++++++ acpica-add_missing_examples_makefile.patch ++++++
From: Robert Moore <[email protected]>
Subject: Examples: Update makefiles and project files.
Patch-Mainline: R12_18_13
Git-commit: da63493b9792be01c6ee5a1d5e97d9084b86b77c
Git-repo: github.com/acpica/acpica.git

Signed-off-by: Thomas Renninger <[email protected]>

Update for recent changes to the example ACPICA code.

diff --git a/generate/unix/acpiexamples/Makefile 
b/generate/unix/acpiexamples/Makefile
new file mode 100644
index 0000000..5f0b3b6
--- /dev/null
+++ b/generate/unix/acpiexamples/Makefile
@@ -0,0 +1,148 @@
+#
+# acpiexamples - Example ACPICA initialization code and control
+# method execution.
+#
+
+#
+# Note: This makefile is intended to be used from within the native
+# ACPICA directory structure, from under generate/unix. It specifically
+# places all object files in a generate/unix subdirectory, not within
+# the various ACPICA source directories. This prevents collisions
+# between different compilations of the same source file with different
+# compile options, and prevents pollution of the source code.
+#
+include ../Makefile.config
+FINAL_PROG = ../$(BINDIR)/acpiexamples
+PROG = $(OBJDIR)/acpiexamples
+
+#
+# Search paths for source files
+#
+vpath %.c \
+    $(ACPIEXAMPLES)\
+    $(ACPICA_DEBUGGER)\
+    $(ACPICA_DISPATCHER)\
+    $(ACPICA_EXECUTER)\
+    $(ACPICA_NAMESPACE)\
+    $(ACPICA_PARSER)\
+    $(ACPICA_TABLES)\
+    $(ACPICA_UTILITIES)\
+    $(ACPICA_COMMON)\
+    $(ACPICA_OSL)
+
+HEADERS = \
+    $(wildcard $(ACPIEXAMPLES)/*.h)
+
+OBJECTS = \
+       $(OBJDIR)/examples.o\
+       $(OBJDIR)/exstubs.o\
+       $(OBJDIR)/extables.o\
+       $(OBJDIR)/dsargs.o\
+       $(OBJDIR)/dscontrol.o\
+       $(OBJDIR)/dsfield.o\
+       $(OBJDIR)/dsinit.o\
+       $(OBJDIR)/dsmethod.o\
+       $(OBJDIR)/dsmthdat.o\
+       $(OBJDIR)/dsobject.o\
+       $(OBJDIR)/dsopcode.o\
+       $(OBJDIR)/dsutils.o\
+       $(OBJDIR)/dswexec.o\
+       $(OBJDIR)/dswload.o\
+       $(OBJDIR)/dswload2.o\
+       $(OBJDIR)/dswscope.o\
+       $(OBJDIR)/dswstate.o\
+       $(OBJDIR)/exconfig.o\
+       $(OBJDIR)/exconvrt.o\
+       $(OBJDIR)/excreate.o\
+       $(OBJDIR)/exdebug.o\
+       $(OBJDIR)/exdump.o\
+       $(OBJDIR)/exfield.o\
+       $(OBJDIR)/exfldio.o\
+       $(OBJDIR)/exmisc.o\
+       $(OBJDIR)/exmutex.o\
+       $(OBJDIR)/exnames.o\
+       $(OBJDIR)/exoparg1.o\
+       $(OBJDIR)/exoparg2.o\
+       $(OBJDIR)/exoparg3.o\
+       $(OBJDIR)/exoparg6.o\
+       $(OBJDIR)/exprep.o\
+       $(OBJDIR)/exregion.o\
+       $(OBJDIR)/exresnte.o\
+       $(OBJDIR)/exresolv.o\
+       $(OBJDIR)/exresop.o\
+       $(OBJDIR)/exstore.o\
+       $(OBJDIR)/exstoren.o\
+       $(OBJDIR)/exstorob.o\
+       $(OBJDIR)/exsystem.o\
+       $(OBJDIR)/exutils.o\
+       $(OBJDIR)/nsaccess.o\
+       $(OBJDIR)/nsalloc.o\
+       $(OBJDIR)/nsconvert.o\
+       $(OBJDIR)/nsdump.o\
+       $(OBJDIR)/nseval.o\
+       $(OBJDIR)/nsinit.o\
+       $(OBJDIR)/nsload.o\
+       $(OBJDIR)/nsnames.o\
+       $(OBJDIR)/nsobject.o\
+       $(OBJDIR)/nsparse.o\
+       $(OBJDIR)/nssearch.o\
+       $(OBJDIR)/nsutils.o\
+       $(OBJDIR)/nswalk.o\
+       $(OBJDIR)/nsxfeval.o\
+       $(OBJDIR)/nsxfname.o\
+       $(OBJDIR)/nsxfobj.o\
+       $(OBJDIR)/osunixxf.o\
+       $(OBJDIR)/psargs.o\
+       $(OBJDIR)/psloop.o\
+       $(OBJDIR)/psobject.o\
+       $(OBJDIR)/psopcode.o\
+       $(OBJDIR)/psopinfo.o\
+       $(OBJDIR)/psparse.o\
+       $(OBJDIR)/psscope.o\
+       $(OBJDIR)/pstree.o\
+       $(OBJDIR)/psutils.o\
+       $(OBJDIR)/pswalk.o\
+       $(OBJDIR)/psxface.o\
+       $(OBJDIR)/tbfadt.o\
+       $(OBJDIR)/tbfind.o\
+       $(OBJDIR)/tbinstal.o\
+       $(OBJDIR)/tbprint.o\
+       $(OBJDIR)/tbutils.o\
+       $(OBJDIR)/tbxface.o\
+       $(OBJDIR)/tbxfload.o\
+       $(OBJDIR)/tbxfroot.o\
+       $(OBJDIR)/utaddress.o\
+       $(OBJDIR)/utalloc.o\
+       $(OBJDIR)/utbuffer.o\
+       $(OBJDIR)/utcache.o\
+       $(OBJDIR)/utcopy.o\
+       $(OBJDIR)/utdebug.o\
+       $(OBJDIR)/utdecode.o\
+       $(OBJDIR)/utdelete.o\
+       $(OBJDIR)/uterror.o\
+       $(OBJDIR)/utexcep.o\
+       $(OBJDIR)/utglobal.o\
+       $(OBJDIR)/utlock.o\
+       $(OBJDIR)/utmath.o\
+       $(OBJDIR)/utmisc.o\
+       $(OBJDIR)/utmutex.o\
+       $(OBJDIR)/utobject.o\
+       $(OBJDIR)/utosi.o\
+       $(OBJDIR)/utownerid.o\
+       $(OBJDIR)/utstate.o\
+       $(OBJDIR)/utstring.o\
+       $(OBJDIR)/utxface.o\
+       $(OBJDIR)/utxferror.o\
+       $(OBJDIR)/utxfinit.o
+
+#
+# Flags specific to acpinames utility
+#
+CFLAGS += \
+    -DACPI_EXAMPLE_APP\
+    -I$(EXAMPLES)
+
+#
+# Common Rules
+#
+include ../Makefile.rules
++++++ acpica-unix2-20131115.tar.bz2 -> acpica-unix2-20131218.tar.bz2 ++++++
++++ 5284 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to