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

Dave Reisner dreisner at archlinux.org
Wed Nov 7 01:25:18 UTC 2012


    Date: Tuesday, November 6, 2012 @ 20:25:17
  Author: dreisner
Revision: 170397

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

Added:
  htop/repos/extra-i686/PKGBUILD
    (from rev 170396, htop/trunk/PKGBUILD)
  htop/repos/extra-x86_64/PKGBUILD
    (from rev 170396, htop/trunk/PKGBUILD)
Deleted:
  htop/repos/extra-i686/ChangeLog
  htop/repos/extra-i686/PKGBUILD
  htop/repos/extra-x86_64/ChangeLog
  htop/repos/extra-x86_64/PKGBUILD

------------------------+
 extra-i686/ChangeLog   |   25 ---------------
 extra-i686/PKGBUILD    |   77 +++++++++++++++++++++++------------------------
 extra-x86_64/ChangeLog |   25 ---------------
 extra-x86_64/PKGBUILD  |   77 +++++++++++++++++++++++------------------------
 4 files changed, 78 insertions(+), 126 deletions(-)

Deleted: extra-i686/ChangeLog
===================================================================
--- extra-i686/ChangeLog	2012-11-07 01:24:59 UTC (rev 170396)
+++ extra-i686/ChangeLog	2012-11-07 01:25:17 UTC (rev 170397)
@@ -1,25 +0,0 @@
-2012-02-19  Angel Velasquez <angvp at archlinux.org>
-	* Version bump to 1.0.1
-
-2011-10-19  Andrea Scarpino <andrea at archlinux.org>
-    * Enable cgroup support (FS#26155)
-    * Add lsof and strace optional depends (FS#25778)
-    * Fix crash when column is less than 40 (closes FS#25823)
-
-2011-05-17  Angel Velasquez <angvp at archlinux.org>
-	* Added patch to fix --sort-key (closes FS#23224)
-
-2009-09-21  Eric Belanger  <eric at archlinux.org>
-
-	* htop 0.8.3-1
-	* Upstream update
-	* Built with vserver and openvz support (close FS#12755)
-
-2008-12-09  Alexander Fehr  <pizzapunk gmail com>
-
-	* htop-0.8.1-1:
-	* New upstream release
-	* New maintainer
-	* Added patch to fix FS#12235
-	* Enabled Unicode support
-	* Added ChangeLog

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2012-11-07 01:24:59 UTC (rev 170396)
+++ extra-i686/PKGBUILD	2012-11-07 01:25:17 UTC (rev 170397)
@@ -1,38 +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=1.0.1
-pkgrel=1
-pkgdesc="Interactive process viewer"
-arch=('i686' 'x86_64')
-url="http://htop.sourceforge.net/"
-license=('GPL')
-depends=('ncurses')
-makedepends=('python2')
-optdepends=('lsof' 'strace')
-options=('!emptydirs')
-changelog=ChangeLog
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('d3b80d905a6bff03f13896870787f901')
-
-build() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-
-	sed -i 's|ncursesw/curses.h|curses.h|' RichString.h RichString.c configure 
-	sed -i 's|python|python2|' scripts/MakeHeader.py
-
-	./configure --prefix=/usr \
-      --enable-unicode \
-      --enable-openvz \
-	  --enable-vserver \
-      --enable-cgroup
-	make 
-}
-
-package() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}" install 
-}

Copied: htop/repos/extra-i686/PKGBUILD (from rev 170396, htop/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2012-11-07 01:25:17 UTC (rev 170397)
@@ -0,0 +1,39 @@
+# $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=1.0.2
+pkgrel=1
+pkgdesc="Interactive process viewer"
+arch=('i686' 'x86_64')
+url="http://htop.sourceforge.net/"
+license=('GPL')
+depends=('ncurses')
+makedepends=('python2')
+optdepends=('lsof: show files opened by a process'
+            'strace: attach to a running process')
+options=('!emptydirs')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('0d01cca8df3349c74569cefebbd9919e')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  sed -i 's|ncursesw/curses.h|curses.h|' RichString.[ch] configure
+  sed -i 's|python|python2|' scripts/MakeHeader.py
+
+  ./configure \
+      --prefix=/usr \
+      --enable-unicode \
+      --enable-openvz \
+      --enable-vserver \
+      --enable-cgroup
+
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/ChangeLog
===================================================================
--- extra-x86_64/ChangeLog	2012-11-07 01:24:59 UTC (rev 170396)
+++ extra-x86_64/ChangeLog	2012-11-07 01:25:17 UTC (rev 170397)
@@ -1,25 +0,0 @@
-2012-02-19  Angel Velasquez <angvp at archlinux.org>
-	* Version bump to 1.0.1
-
-2011-10-19  Andrea Scarpino <andrea at archlinux.org>
-    * Enable cgroup support (FS#26155)
-    * Add lsof and strace optional depends (FS#25778)
-    * Fix crash when column is less than 40 (closes FS#25823)
-
-2011-05-17  Angel Velasquez <angvp at archlinux.org>
-	* Added patch to fix --sort-key (closes FS#23224)
-
-2009-09-21  Eric Belanger  <eric at archlinux.org>
-
-	* htop 0.8.3-1
-	* Upstream update
-	* Built with vserver and openvz support (close FS#12755)
-
-2008-12-09  Alexander Fehr  <pizzapunk gmail com>
-
-	* htop-0.8.1-1:
-	* New upstream release
-	* New maintainer
-	* Added patch to fix FS#12235
-	* Enabled Unicode support
-	* Added ChangeLog

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2012-11-07 01:24:59 UTC (rev 170396)
+++ extra-x86_64/PKGBUILD	2012-11-07 01:25:17 UTC (rev 170397)
@@ -1,38 +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=1.0.1
-pkgrel=1
-pkgdesc="Interactive process viewer"
-arch=('i686' 'x86_64')
-url="http://htop.sourceforge.net/"
-license=('GPL')
-depends=('ncurses')
-makedepends=('python2')
-optdepends=('lsof' 'strace')
-options=('!emptydirs')
-changelog=ChangeLog
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('d3b80d905a6bff03f13896870787f901')
-
-build() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-
-	sed -i 's|ncursesw/curses.h|curses.h|' RichString.h RichString.c configure 
-	sed -i 's|python|python2|' scripts/MakeHeader.py
-
-	./configure --prefix=/usr \
-      --enable-unicode \
-      --enable-openvz \
-	  --enable-vserver \
-      --enable-cgroup
-	make 
-}
-
-package() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}" install 
-}

Copied: htop/repos/extra-x86_64/PKGBUILD (from rev 170396, htop/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2012-11-07 01:25:17 UTC (rev 170397)
@@ -0,0 +1,39 @@
+# $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=1.0.2
+pkgrel=1
+pkgdesc="Interactive process viewer"
+arch=('i686' 'x86_64')
+url="http://htop.sourceforge.net/"
+license=('GPL')
+depends=('ncurses')
+makedepends=('python2')
+optdepends=('lsof: show files opened by a process'
+            'strace: attach to a running process')
+options=('!emptydirs')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('0d01cca8df3349c74569cefebbd9919e')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  sed -i 's|ncursesw/curses.h|curses.h|' RichString.[ch] configure
+  sed -i 's|python|python2|' scripts/MakeHeader.py
+
+  ./configure \
+      --prefix=/usr \
+      --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