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

Evangelos Foutras foutrelis at archlinux.org
Mon Dec 7 07:08:54 UTC 2015


    Date: Monday, December 7, 2015 @ 08:08:54
  Author: foutrelis
Revision: 149679

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

Added:
  fxprocessview/repos/community-staging-i686/
  fxprocessview/repos/community-staging-i686/PKGBUILD
    (from rev 149678, fxprocessview/trunk/PKGBUILD)
  fxprocessview/repos/community-staging-i686/build-fix.patch
    (from rev 149678, fxprocessview/trunk/build-fix.patch)
  fxprocessview/repos/community-staging-x86_64/
  fxprocessview/repos/community-staging-x86_64/PKGBUILD
    (from rev 149678, fxprocessview/trunk/PKGBUILD)
  fxprocessview/repos/community-staging-x86_64/build-fix.patch
    (from rev 149678, fxprocessview/trunk/build-fix.patch)

------------------------------------------+
 community-staging-i686/PKGBUILD          |   37 ++++++++++++++++++++++++++
 community-staging-i686/build-fix.patch   |   41 +++++++++++++++++++++++++++++
 community-staging-x86_64/PKGBUILD        |   37 ++++++++++++++++++++++++++
 community-staging-x86_64/build-fix.patch |   41 +++++++++++++++++++++++++++++
 4 files changed, 156 insertions(+)

Copied: fxprocessview/repos/community-staging-i686/PKGBUILD (from rev 149678, fxprocessview/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-12-07 07:08:54 UTC (rev 149679)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Sander Jansen <sander at knology.net>
+
+pkgname=fxprocessview
+pkgver=0.5.0
+pkgrel=7
+pkgdesc="Process Viewer"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('fox>=1.4.0')
+makedepends=('glu')
+url="http://code.google.com/p/fxdesktop/"
+source=(http://archlinux-stuff.googlecode.com/files/$pkgname-$pkgver.tar.gz \
+	build-fix.patch)
+md5sums=('5d3cc8d7aec770997c281a743ddfda5a'
+	 '2d2c3d54dcd2404149955f12cccb21a5')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # Override default flags
+  export CFLAGS="-Wall -O2 -pipe"
+  export CXXFLAGS="-Wall -O2 -pipe"
+  # Compile
+  patch -Np1 <../build-fix.patch
+  ./gb
+  # gb does not return valid error code
+  [ -f src/fxprocessview ]
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  # make sure destination exists
+  mkdir -p $pkgdir/usr/bin
+  # Install
+  ./gb install --package-root=$pkgdir/usr
+}

Copied: fxprocessview/repos/community-staging-i686/build-fix.patch (from rev 149678, fxprocessview/trunk/build-fix.patch)
===================================================================
--- community-staging-i686/build-fix.patch	                        (rev 0)
+++ community-staging-i686/build-fix.patch	2015-12-07 07:08:54 UTC (rev 149679)
@@ -0,0 +1,41 @@
+diff -wbBur fxprocessview-0.5.0/src/processlist.cpp fxprocessview-0.5.0.my/src/processlist.cpp
+--- fxprocessview-0.5.0/src/processlist.cpp	2005-07-15 06:39:17.000000000 +0400
++++ fxprocessview-0.5.0.my/src/processlist.cpp	2007-03-07 19:21:34.000000000 +0300
+@@ -696,7 +696,7 @@
+ 
+ long FXProcessList::onCmdUserMode(FXObject* sender,FXSelector,void* ){
+   if (userfilter.empty()){
+-	userfilter=FXFile::getCurrentUserName();
++	userfilter=FXSystem::currentUserName();
+ 	}
+   else {
+  	userfilter="";
+@@ -942,12 +942,17 @@
+ 
+ 
+ 
+-  FXint num_processes = FXFile::listFiles(dirlist,"/proc","[0123456789]*",LIST_MATCH_ALL|LIST_NO_FILES|LIST_NO_PARENT);
++  FXint num_processes = FXDir::listFiles(dirlist,"/proc","[0123456789]*",FXDir::MatchAll | FXDir::NoFiles | FXDir::NoParent);
+   task_total=num_processes;
+   for (FXint i=0;i<num_processes;i++){
+ 
+     /// Check the Owner
+-    owner = FXFile::owner("/proc/" + dirlist[i]);
++    FXStat stat;
++    FXStat::statFile("/proc/" + dirlist[i], stat);
++    owner = FXSystem::userName(stat.user());
++
++//    owner = FXSystem::userName(FXStat::user("/proc/" + dirlist[i]));
++
+     if (!userfilter.empty() && (owner!=userfilter)) continue;
+ 
+     /// Read in Process Stat
+@@ -1027,7 +1032,7 @@
+       }
+ 
+     filename = "/proc/" + dirlist[i] + "/cmdline";
+-    if (FXFile::exists(filename)) {
++    if (FXStat::exists(filename)) {
+       fp = fopen(filename.text(),"r");
+       if (fp) {
+         if (fgets(buffer,80,fp)!=NULL){

Copied: fxprocessview/repos/community-staging-x86_64/PKGBUILD (from rev 149678, fxprocessview/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-12-07 07:08:54 UTC (rev 149679)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Sander Jansen <sander at knology.net>
+
+pkgname=fxprocessview
+pkgver=0.5.0
+pkgrel=7
+pkgdesc="Process Viewer"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('fox>=1.4.0')
+makedepends=('glu')
+url="http://code.google.com/p/fxdesktop/"
+source=(http://archlinux-stuff.googlecode.com/files/$pkgname-$pkgver.tar.gz \
+	build-fix.patch)
+md5sums=('5d3cc8d7aec770997c281a743ddfda5a'
+	 '2d2c3d54dcd2404149955f12cccb21a5')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # Override default flags
+  export CFLAGS="-Wall -O2 -pipe"
+  export CXXFLAGS="-Wall -O2 -pipe"
+  # Compile
+  patch -Np1 <../build-fix.patch
+  ./gb
+  # gb does not return valid error code
+  [ -f src/fxprocessview ]
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  # make sure destination exists
+  mkdir -p $pkgdir/usr/bin
+  # Install
+  ./gb install --package-root=$pkgdir/usr
+}

Copied: fxprocessview/repos/community-staging-x86_64/build-fix.patch (from rev 149678, fxprocessview/trunk/build-fix.patch)
===================================================================
--- community-staging-x86_64/build-fix.patch	                        (rev 0)
+++ community-staging-x86_64/build-fix.patch	2015-12-07 07:08:54 UTC (rev 149679)
@@ -0,0 +1,41 @@
+diff -wbBur fxprocessview-0.5.0/src/processlist.cpp fxprocessview-0.5.0.my/src/processlist.cpp
+--- fxprocessview-0.5.0/src/processlist.cpp	2005-07-15 06:39:17.000000000 +0400
++++ fxprocessview-0.5.0.my/src/processlist.cpp	2007-03-07 19:21:34.000000000 +0300
+@@ -696,7 +696,7 @@
+ 
+ long FXProcessList::onCmdUserMode(FXObject* sender,FXSelector,void* ){
+   if (userfilter.empty()){
+-	userfilter=FXFile::getCurrentUserName();
++	userfilter=FXSystem::currentUserName();
+ 	}
+   else {
+  	userfilter="";
+@@ -942,12 +942,17 @@
+ 
+ 
+ 
+-  FXint num_processes = FXFile::listFiles(dirlist,"/proc","[0123456789]*",LIST_MATCH_ALL|LIST_NO_FILES|LIST_NO_PARENT);
++  FXint num_processes = FXDir::listFiles(dirlist,"/proc","[0123456789]*",FXDir::MatchAll | FXDir::NoFiles | FXDir::NoParent);
+   task_total=num_processes;
+   for (FXint i=0;i<num_processes;i++){
+ 
+     /// Check the Owner
+-    owner = FXFile::owner("/proc/" + dirlist[i]);
++    FXStat stat;
++    FXStat::statFile("/proc/" + dirlist[i], stat);
++    owner = FXSystem::userName(stat.user());
++
++//    owner = FXSystem::userName(FXStat::user("/proc/" + dirlist[i]));
++
+     if (!userfilter.empty() && (owner!=userfilter)) continue;
+ 
+     /// Read in Process Stat
+@@ -1027,7 +1032,7 @@
+       }
+ 
+     filename = "/proc/" + dirlist[i] + "/cmdline";
+-    if (FXFile::exists(filename)) {
++    if (FXStat::exists(filename)) {
+       fp = fopen(filename.text(),"r");
+       if (fp) {
+         if (fgets(buffer,80,fp)!=NULL){



More information about the arch-commits mailing list