[arch-commits] Commit in powertop/repos (8 files)

Evangelos Foutras foutrelis at archlinux.org
Sun Sep 6 19:09:22 UTC 2015


    Date: Sunday, September 6, 2015 @ 21:09:21
  Author: foutrelis
Revision: 139324

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  powertop/repos/community-staging-i686/
  powertop/repos/community-staging-i686/PKGBUILD
    (from rev 139323, powertop/trunk/PKGBUILD)
  powertop/repos/community-staging-i686/powertop-autotune.patch
    (from rev 139323, powertop/trunk/powertop-autotune.patch)
  powertop/repos/community-staging-i686/powertop.changelog
    (from rev 139323, powertop/trunk/powertop.changelog)
  powertop/repos/community-staging-x86_64/
  powertop/repos/community-staging-x86_64/PKGBUILD
    (from rev 139323, powertop/trunk/PKGBUILD)
  powertop/repos/community-staging-x86_64/powertop-autotune.patch
    (from rev 139323, powertop/trunk/powertop-autotune.patch)
  powertop/repos/community-staging-x86_64/powertop.changelog
    (from rev 139323, powertop/trunk/powertop.changelog)

--------------------------------------------------+
 community-staging-i686/PKGBUILD                  |   38 +++++++++++++++++++++
 community-staging-i686/powertop-autotune.patch   |    9 ++++
 community-staging-i686/powertop.changelog        |   24 +++++++++++++
 community-staging-x86_64/PKGBUILD                |   38 +++++++++++++++++++++
 community-staging-x86_64/powertop-autotune.patch |    9 ++++
 community-staging-x86_64/powertop.changelog      |   24 +++++++++++++
 6 files changed, 142 insertions(+)

Copied: powertop/repos/community-staging-i686/PKGBUILD (from rev 139323, powertop/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-09-06 19:09:21 UTC (rev 139324)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Alexander Fehr <pizzapunk gmail com>
+# Contributor: Xilon <xilonmu at gmail.com>
+
+pkgname=powertop
+pkgver=2.7
+pkgrel=3
+pkgdesc='A tool to diagnose issues with power consumption and power management'
+arch=('i686' 'x86_64')
+url='https://01.org/powertop/'
+license=('GPL2')
+depends=('gcc-libs' 'libnl' 'ncurses' 'pciutils')
+changelog=$pkgname.changelog
+source=(https://01.org/sites/default/files/downloads/powertop/$pkgname-$pkgver.tar.gz
+        $pkgname-autotune.patch)
+sha256sums=('8d4b1490e2baad4467c0ded3c423db4472dcbf7b2dd8f8f2a928f54047c678ca'
+            'ff1ae08afb4ab611d7782de8d2ea7398b8d8289e7f45f21b7327317157fa5e46')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  patch -Np1 -i "${srcdir}"/$pkgname-autotune.patch
+}
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+#  ./autogen.sh
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: powertop/repos/community-staging-i686/powertop-autotune.patch (from rev 139323, powertop/trunk/powertop-autotune.patch)
===================================================================
--- community-staging-i686/powertop-autotune.patch	                        (rev 0)
+++ community-staging-i686/powertop-autotune.patch	2015-09-06 19:09:21 UTC (rev 139324)
@@ -0,0 +1,9 @@
+--- a/src/devices/devfreq.cpp
++++ b/src/devices/devfreq.cpp
+@@ -247,6 +247,7 @@ void create_all_devfreq_devices(void)
+ 		fprintf(stderr, "Devfreq not enabled\n");
+ 		is_enabled = false;
+ 		closedir(dir);
++		dir = NULL;
+ 		return;
+ 	}

Copied: powertop/repos/community-staging-i686/powertop.changelog (from rev 139323, powertop/trunk/powertop.changelog)
===================================================================
--- community-staging-i686/powertop.changelog	                        (rev 0)
+++ community-staging-i686/powertop.changelog	2015-09-06 19:09:21 UTC (rev 139324)
@@ -0,0 +1,24 @@
+2015-02-17 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* powertop 2.7-2
+	* FS#43150 fix
+
+2014-11-30 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* powertop 2.7-1
+
+2014-05-29 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* powertop 2.6.1-1
+
+2013-03-23 Evangelos Foutras <evangelos at foutrelis.com>
+	* powertop 2.3-1
+
+2013-01-05 Jaroslav Lichtblau (Dragonlord) <svetlemodry at archlinux.org>
+	* powertop 2.2-1
+
+2012-10-28 Jaroslav Lichtblau (Dragonlord) <svetlemodry at archlinux.org>
+	* powertop 2.1.1-1
+
+2012-08-22 Sébastien Luttringer (seblu) <seblu at aur.archlinux.org>
+	* powertop 2.1-1
+
+2012-05-12 Jaroslav Lichtblau (Dragonlord) <svetlemodry at archlinux.org>
+	* powertop 2.0-1

Copied: powertop/repos/community-staging-x86_64/PKGBUILD (from rev 139323, powertop/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-09-06 19:09:21 UTC (rev 139324)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Alexander Fehr <pizzapunk gmail com>
+# Contributor: Xilon <xilonmu at gmail.com>
+
+pkgname=powertop
+pkgver=2.7
+pkgrel=3
+pkgdesc='A tool to diagnose issues with power consumption and power management'
+arch=('i686' 'x86_64')
+url='https://01.org/powertop/'
+license=('GPL2')
+depends=('gcc-libs' 'libnl' 'ncurses' 'pciutils')
+changelog=$pkgname.changelog
+source=(https://01.org/sites/default/files/downloads/powertop/$pkgname-$pkgver.tar.gz
+        $pkgname-autotune.patch)
+sha256sums=('8d4b1490e2baad4467c0ded3c423db4472dcbf7b2dd8f8f2a928f54047c678ca'
+            'ff1ae08afb4ab611d7782de8d2ea7398b8d8289e7f45f21b7327317157fa5e46')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  patch -Np1 -i "${srcdir}"/$pkgname-autotune.patch
+}
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+#  ./autogen.sh
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: powertop/repos/community-staging-x86_64/powertop-autotune.patch (from rev 139323, powertop/trunk/powertop-autotune.patch)
===================================================================
--- community-staging-x86_64/powertop-autotune.patch	                        (rev 0)
+++ community-staging-x86_64/powertop-autotune.patch	2015-09-06 19:09:21 UTC (rev 139324)
@@ -0,0 +1,9 @@
+--- a/src/devices/devfreq.cpp
++++ b/src/devices/devfreq.cpp
+@@ -247,6 +247,7 @@ void create_all_devfreq_devices(void)
+ 		fprintf(stderr, "Devfreq not enabled\n");
+ 		is_enabled = false;
+ 		closedir(dir);
++		dir = NULL;
+ 		return;
+ 	}

Copied: powertop/repos/community-staging-x86_64/powertop.changelog (from rev 139323, powertop/trunk/powertop.changelog)
===================================================================
--- community-staging-x86_64/powertop.changelog	                        (rev 0)
+++ community-staging-x86_64/powertop.changelog	2015-09-06 19:09:21 UTC (rev 139324)
@@ -0,0 +1,24 @@
+2015-02-17 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* powertop 2.7-2
+	* FS#43150 fix
+
+2014-11-30 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* powertop 2.7-1
+
+2014-05-29 Jaroslav Lichtblau <svetlemodry at archlinux.org>
+	* powertop 2.6.1-1
+
+2013-03-23 Evangelos Foutras <evangelos at foutrelis.com>
+	* powertop 2.3-1
+
+2013-01-05 Jaroslav Lichtblau (Dragonlord) <svetlemodry at archlinux.org>
+	* powertop 2.2-1
+
+2012-10-28 Jaroslav Lichtblau (Dragonlord) <svetlemodry at archlinux.org>
+	* powertop 2.1.1-1
+
+2012-08-22 Sébastien Luttringer (seblu) <seblu at aur.archlinux.org>
+	* powertop 2.1-1
+
+2012-05-12 Jaroslav Lichtblau (Dragonlord) <svetlemodry at archlinux.org>
+	* powertop 2.0-1



More information about the arch-commits mailing list