Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (2af0dd130bee5aecb344e5f32ae4f35e5e3ffd5a)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (2af0dd130bee5aecb344e5f32ae4f35e5e3ffd5a)
  • Date: Mon, 10 Oct 2011 03:07:12 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 3 +++
utils/acpid/CONFLICTS | 1 +
utils/acpid/HISTORY | 4 ++++
utils/acpid/PROVIDES | 1 +
utils/acpid2/BUILD | 5 +++++
utils/acpid2/CONFLICTS | 1 +
utils/acpid2/DETAILS | 22 ++++++++++++++++++++++
utils/acpid2/FINAL | 7 +++++++
utils/acpid2/HISTORY | 3 +++
utils/acpid2/INSTALL | 18 ++++++++++++++++++
utils/acpid2/PROVIDES | 1 +
utils/acpid2/init.d/acpid | 10 ++++++++++
utils/acpid2/init.d/acpid.conf | 3 +++
13 files changed, 79 insertions(+)

New commits:
commit 2af0dd130bee5aecb344e5f32ae4f35e5e3ffd5a
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

acpid: conflicts with acpid2

commit b835594c6f80370bac85105e878d365963932202
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

acpid2: new spell, acpid for netlink

commit 7d30b5d265a2e917fb0ae01cb1953caf30de4eca
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

acpid: provides ACPI

diff --git a/ChangeLog b/ChangeLog
index ea402b3..f05c069 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2011-10-10 Vlad Glagolev <stealth AT sourcemage.org>
+ * utils/acpid2: new spell, acpid for netlink
+
2011-10-10 Ismael Luceno <ismael AT sourcemage.org>
* graphics/mypaint: new spell, graphics application for digital
painters

diff --git a/utils/acpid/CONFLICTS b/utils/acpid/CONFLICTS
new file mode 100755
index 0000000..f631144
--- /dev/null
+++ b/utils/acpid/CONFLICTS
@@ -0,0 +1 @@
+conflicts acpid2
diff --git a/utils/acpid/HISTORY b/utils/acpid/HISTORY
index 2d913df..96a2428 100644
--- a/utils/acpid/HISTORY
+++ b/utils/acpid/HISTORY
@@ -1,3 +1,7 @@
+2011-10-10 Vlad Glagolev <stealth AT sourcemage.org>
+ * PROVIDES: added, provides ACPI
+ * CONFLICTS: added, conflicts with acpid2
+
2010-02-17 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: use vars more

diff --git a/utils/acpid/PROVIDES b/utils/acpid/PROVIDES
new file mode 100755
index 0000000..78437d6
--- /dev/null
+++ b/utils/acpid/PROVIDES
@@ -0,0 +1 @@
+ACPI
diff --git a/utils/acpid2/BUILD b/utils/acpid2/BUILD
new file mode 100755
index 0000000..500dac6
--- /dev/null
+++ b/utils/acpid2/BUILD
@@ -0,0 +1,5 @@
+make OPT="$CFLAGS" DESTDIR="$INSTALL_ROOT" &&
+
+cd kacpimon &&
+make CFLAGS="$CFLAGS" &&
+cd ..
diff --git a/utils/acpid2/CONFLICTS b/utils/acpid2/CONFLICTS
new file mode 100755
index 0000000..bfc51cb
--- /dev/null
+++ b/utils/acpid2/CONFLICTS
@@ -0,0 +1 @@
+conflicts acpid
diff --git a/utils/acpid2/DETAILS b/utils/acpid2/DETAILS
new file mode 100755
index 0000000..3b6b193
--- /dev/null
+++ b/utils/acpid2/DETAILS
@@ -0,0 +1,22 @@
+ SPELL=acpid2
+ SPELLX=acpid
+ VERSION=2.0.12
+ SOURCE=$SPELLX-$VERSION.tar.gz
+
SOURCE_HASH=sha512:434050039cf57b5c0b2d20ab6f3fefa842f2fdcfdc783a6cb2058f941f2f55757c0dc744988010f3071c059659d82075ef18105615745d72fa3f15e78e7936cd
+ SOURCE_URL[0]=http://tedfelix.com/linux/$SOURCE
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELLX-$VERSION"
+ GATHER_DOCS=off
+ WEB_SITE=http://tedfelix.com/linux/acpid-netlink.html
+ ENTERED=20111010
+ LICENSE=GPL
+ KEYWORDS="acpi utils"
+ SHORT="acpid for netlink"
+cat << EOF
+In recent linux kernels, the /proc/acpi/event interface has been deprecated.
+
+The same information (and more) is available via netlink (a way for the
kernel
+to communicate with userspace that is usually used for networking) and the
input
+layer (mouse, keyboard, power button, etc...).
+
+This version of acpid supports netlink and the input layer.
+EOF
diff --git a/utils/acpid2/FINAL b/utils/acpid2/FINAL
new file mode 100755
index 0000000..8cb9b0d
--- /dev/null
+++ b/utils/acpid2/FINAL
@@ -0,0 +1,7 @@
+if [[ ! -d /proc/acpi ]]; then
+ message "${PROBLEM_COLOR}"
+ message "WARNING: Your current kernel does not have ACPI support enabled.
In"
+ message "order to be able to use the Advanced Configuration and Power"
+ message "Interface support you need to recompile your kernel with ACPI."
+ message "${DEFAULT_COLOR}"
+fi
diff --git a/utils/acpid2/HISTORY b/utils/acpid2/HISTORY
new file mode 100644
index 0000000..5122954
--- /dev/null
+++ b/utils/acpid2/HISTORY
@@ -0,0 +1,3 @@
+2011-10-10 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, BUILD, INSTALL, CONFLICTS, PROVIDES, FINAL,
+ init.d/acpid{,.conf}: spell created
diff --git a/utils/acpid2/INSTALL b/utils/acpid2/INSTALL
new file mode 100755
index 0000000..5f09dcb
--- /dev/null
+++ b/utils/acpid2/INSTALL
@@ -0,0 +1,18 @@
+make DESTDIR="$INSTALL_ROOT" install &&
+
+if [[ $INIT_INSTALLED ]]; then
+ install_config_file "$SPELL_DIRECTORY/init.d/acpid.conf" \
+ "$INSTALL_ROOT/etc/sysconfig/acpid"
+fi &&
+
+if [[ ! -d "$INSTALL_ROOT/etc/acpi/events" ]]; then
+ install -vm 755 -d "$INSTALL_ROOT/etc/acpi/events"
+fi &&
+
+if [[ ! -d "$INSTALL_ROOT/etc/acpi/actions" ]]; then
+ install -vm 755 -d "$INSTALL_ROOT/etc/acpi/actions"
+fi &&
+
+cd kacpimon &&
+default_install &&
+install -vm 644 kacpimon.8 "$INSTALL_ROOT/usr/share/man/man8"
diff --git a/utils/acpid2/PROVIDES b/utils/acpid2/PROVIDES
new file mode 100755
index 0000000..78437d6
--- /dev/null
+++ b/utils/acpid2/PROVIDES
@@ -0,0 +1 @@
+ACPI
diff --git a/utils/acpid2/init.d/acpid b/utils/acpid2/init.d/acpid
new file mode 100644
index 0000000..6b03ea7
--- /dev/null
+++ b/utils/acpid2/init.d/acpid
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+. /etc/sysconfig/acpid
+
+PROGRAM=/usr/sbin/acpid
+ARGS="$ACPID_ARGS"
+RUNLEVEL=S
+NEEDS="+local_fs"
+
+. /etc/init.d/smgl_init
diff --git a/utils/acpid2/init.d/acpid.conf b/utils/acpid2/init.d/acpid.conf
new file mode 100644
index 0000000..b42508d
--- /dev/null
+++ b/utils/acpid2/init.d/acpid.conf
@@ -0,0 +1,3 @@
+# For the arguments and description see acpid(8)
+
+ACPID_ARGS="-l"



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (2af0dd130bee5aecb344e5f32ae4f35e5e3ffd5a), Vlad Glagolev, 10/10/2011

Archive powered by MHonArc 2.6.24.

Top of Page