From 8a72ebe54363c342133688d2e158a6e4c3048bc5 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 15 Apr 2009 05:12:10 +0000 Subject: [PATCH 1/4] Initialize branch F-11 for acpitool --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..25c7708 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-11 From 8c24b3f0d19c3a3153ac06c4ad03f0b578eae75f Mon Sep 17 00:00:00 2001 From: "Steven M. Parrish" Date: Wed, 26 Aug 2009 18:13:42 +0000 Subject: [PATCH 2/4] various minor fixes (fixing memleaks, removing of limit on thermal zones) --- .cvsignore | 2 +- acpitool.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index 35c55ea..89374d5 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -acpitool-0.5.tar.bz2 +acpitool-0.5.1.tar.bz2 diff --git a/acpitool.spec b/acpitool.spec index be736a6..b66f9fd 100644 --- a/acpitool.spec +++ b/acpitool.spec @@ -1,13 +1,13 @@ Summary: Command line ACPI client Name: acpitool -Version: 0.5 -Release: 2%{?dist} +Version: 0.5.1 +Release: 1%{?dist} License: GPLv2+ Group: Applications/System URL: http://freeunix.dyndns.org:8000/site2/acpitool.shtml Source0: http://freeunix.dyndns.org:8088/ftp_site/pub/unix/acpitool/acpitool-%{version}.tar.bz2 -Patch0: acpitool-0.5-gcc43.patch +#Patch0: acpitool-0.5-gcc43.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -21,7 +21,7 @@ toggle fan on/off, and more. %prep %setup -q -%patch0 -p1 -b .gcc43 +#patch0 -p1 -b .gcc43 %build %configure @@ -41,6 +41,9 @@ rm -fr $RPM_BUILD_ROOT %{_mandir}/man1/acpitool* %changelog +* Wed Aug 26 2009 Steven M. Parrish 0.5.1-1 +- various minor fixes (fixing memleaks, removing of limit on thermal zones) + * Mon Feb 23 2009 Fedora Release Engineering - 0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild diff --git a/sources b/sources index 4e858e9..540c457 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c4acc19eb002d6871d12abb490593202 acpitool-0.5.tar.bz2 +9e4ec55201be0be71ffbc56d38b42b57 acpitool-0.5.1.tar.bz2 From 9f042c3bd7ce1f814eadab4763ae1e72e44b8dff Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:24:53 +0000 Subject: [PATCH 3/4] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c619d2e..811922b 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := acpitool SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From d5250cfe7d48ce82c75a193b12d52c9b03d3e29d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:35:24 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 811922b..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: acpitool -# $Id$ -NAME := acpitool -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 25c7708..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-11