[arch-commits] Commit in htop/repos (6 files)

Dave Reisner dreisner at archlinux.org
Sun Mar 13 22:40:46 UTC 2016


    Date: Sunday, March 13, 2016 @ 23:40:46
  Author: dreisner
Revision: 261421

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  htop/repos/extra-i686/PKGBUILD
    (from rev 261420, htop/trunk/PKGBUILD)
  htop/repos/extra-x86_64/PKGBUILD
    (from rev 261420, htop/trunk/PKGBUILD)
Deleted:
  htop/repos/extra-i686/0001-Fix-buffer-reuse.patch
  htop/repos/extra-i686/PKGBUILD
  htop/repos/extra-x86_64/0001-Fix-buffer-reuse.patch
  htop/repos/extra-x86_64/PKGBUILD

------------------------------------------+
 /PKGBUILD                                |   74 +++++++++++++++++++++++++++++
 extra-i686/0001-Fix-buffer-reuse.patch   |   25 ---------
 extra-i686/PKGBUILD                      |   45 -----------------
 extra-x86_64/0001-Fix-buffer-reuse.patch |   25 ---------
 extra-x86_64/PKGBUILD                    |   45 -----------------
 5 files changed, 74 insertions(+), 140 deletions(-)

Deleted: extra-i686/0001-Fix-buffer-reuse.patch
===================================================================
--- extra-i686/0001-Fix-buffer-reuse.patch	2016-03-13 22:39:06 UTC (rev 261420)
+++ extra-i686/0001-Fix-buffer-reuse.patch	2016-03-13 22:40:46 UTC (rev 261421)
@@ -1,25 +0,0 @@
-From 0b70439316b4e4608c0916317ded7e6e56982de6 Mon Sep 17 00:00:00 2001
-From: Hisham <hisham at gobolinux.org>
-Date: Sat, 13 Feb 2016 02:18:28 -0200
-Subject: [PATCH] Fix buffer reuse.
-
----
- linux/LinuxProcessList.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/linux/LinuxProcessList.c b/linux/LinuxProcessList.c
-index 591210e..ec643ab 100644
---- a/linux/LinuxProcessList.c
-+++ b/linux/LinuxProcessList.c
-@@ -446,7 +446,7 @@ static void LinuxProcessList_readOomData(LinuxProcess* process, const char* dirn
- }
- 
- static void setCommand(Process* process, const char* command, int len) {
--   if (process->comm && process->commLen <= len) {
-+   if (process->comm && process->commLen >= len) {
-       strncpy(process->comm, command, len + 1);
-    } else {
-       free(process->comm);
--- 
-2.7.1
-

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2016-03-13 22:39:06 UTC (rev 261420)
+++ extra-i686/PKGBUILD	2016-03-13 22:40:46 UTC (rev 261421)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez <angvp at archlinux.org> 
-# Contributor: Eric Belanger <eric at archlinux.org>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=htop
-pkgver=2.0.0
-pkgrel=2
-pkgdesc="Interactive process viewer"
-arch=('i686' 'x86_64')
-url="http://hisham.hm/htop/"
-license=('GPL')
-depends=('ncurses')
-makedepends=('python')
-optdepends=('lsof: show files opened by a process'
-            'strace: attach to a running process')
-options=('!emptydirs')
-source=("http://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz"
-        "0001-Fix-buffer-reuse.patch")
-md5sums=('06f76c7d644ce8ae611c9feb10439a30'
-         '487c286d714139dca6f27bf5f79a0e1f')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  patch -Np1 <../0001-Fix-buffer-reuse.patch
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
-      --prefix=/usr \
-      --sysconfdir=/etc \
-      --enable-unicode \
-      --enable-openvz \
-      --enable-vserver \
-      --enable-cgroup
-
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}

Copied: htop/repos/extra-i686/PKGBUILD (from rev 261420, htop/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2016-03-13 22:40:46 UTC (rev 261421)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Angel Velasquez <angvp at archlinux.org> 
+# Contributor: Eric Belanger <eric at archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=htop
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="Interactive process viewer"
+arch=('i686' 'x86_64')
+url="http://hisham.hm/htop/"
+license=('GPL')
+depends=('ncurses')
+makedepends=('python')
+optdepends=('lsof: show files opened by a process'
+            'strace: attach to a running process')
+options=('!emptydirs')
+source=("http://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz")
+md5sums=('f75fe92b4defaa80d99109830f34b5e2')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+      --prefix=/usr \
+      --sysconfdir=/etc \
+      --enable-unicode \
+      --enable-openvz \
+      --enable-vserver \
+      --enable-cgroup
+
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/0001-Fix-buffer-reuse.patch
===================================================================
--- extra-x86_64/0001-Fix-buffer-reuse.patch	2016-03-13 22:39:06 UTC (rev 261420)
+++ extra-x86_64/0001-Fix-buffer-reuse.patch	2016-03-13 22:40:46 UTC (rev 261421)
@@ -1,25 +0,0 @@
-From 0b70439316b4e4608c0916317ded7e6e56982de6 Mon Sep 17 00:00:00 2001
-From: Hisham <hisham at gobolinux.org>
-Date: Sat, 13 Feb 2016 02:18:28 -0200
-Subject: [PATCH] Fix buffer reuse.
-
----
- linux/LinuxProcessList.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/linux/LinuxProcessList.c b/linux/LinuxProcessList.c
-index 591210e..ec643ab 100644
---- a/linux/LinuxProcessList.c
-+++ b/linux/LinuxProcessList.c
-@@ -446,7 +446,7 @@ static void LinuxProcessList_readOomData(LinuxProcess* process, const char* dirn
- }
- 
- static void setCommand(Process* process, const char* command, int len) {
--   if (process->comm && process->commLen <= len) {
-+   if (process->comm && process->commLen >= len) {
-       strncpy(process->comm, command, len + 1);
-    } else {
-       free(process->comm);
--- 
-2.7.1
-

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2016-03-13 22:39:06 UTC (rev 261420)
+++ extra-x86_64/PKGBUILD	2016-03-13 22:40:46 UTC (rev 261421)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez <angvp at archlinux.org> 
-# Contributor: Eric Belanger <eric at archlinux.org>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=htop
-pkgver=2.0.0
-pkgrel=2
-pkgdesc="Interactive process viewer"
-arch=('i686' 'x86_64')
-url="http://hisham.hm/htop/"
-license=('GPL')
-depends=('ncurses')
-makedepends=('python')
-optdepends=('lsof: show files opened by a process'
-            'strace: attach to a running process')
-options=('!emptydirs')
-source=("http://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz"
-        "0001-Fix-buffer-reuse.patch")
-md5sums=('06f76c7d644ce8ae611c9feb10439a30'
-         '487c286d714139dca6f27bf5f79a0e1f')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  patch -Np1 <../0001-Fix-buffer-reuse.patch
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
-      --prefix=/usr \
-      --sysconfdir=/etc \
-      --enable-unicode \
-      --enable-openvz \
-      --enable-vserver \
-      --enable-cgroup
-
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}

Copied: htop/repos/extra-x86_64/PKGBUILD (from rev 261420, htop/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2016-03-13 22:40:46 UTC (rev 261421)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Angel Velasquez <angvp at archlinux.org> 
+# Contributor: Eric Belanger <eric at archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=htop
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="Interactive process viewer"
+arch=('i686' 'x86_64')
+url="http://hisham.hm/htop/"
+license=('GPL')
+depends=('ncurses')
+makedepends=('python')
+optdepends=('lsof: show files opened by a process'
+            'strace: attach to a running process')
+options=('!emptydirs')
+source=("http://hisham.hm/$pkgname/releases/$pkgver/$pkgname-$pkgver.tar.gz")
+md5sums=('f75fe92b4defaa80d99109830f34b5e2')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+      --prefix=/usr \
+      --sysconfdir=/etc \
+      --enable-unicode \
+      --enable-openvz \
+      --enable-vserver \
+      --enable-cgroup
+
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}



More information about the arch-commits mailing list