Date: Tuesday, April 30, 2013 @ 12:08:43
  Author: spupykin
Revision: 89606

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 89605, fxprocessview/trunk/PKGBUILD)
  fxprocessview/repos/community-staging-i686/build-fix.patch
    (from rev 89605, fxprocessview/trunk/build-fix.patch)
  fxprocessview/repos/community-staging-x86_64/
  fxprocessview/repos/community-staging-x86_64/PKGBUILD
    (from rev 89605, fxprocessview/trunk/PKGBUILD)
  fxprocessview/repos/community-staging-x86_64/build-fix.patch
    (from rev 89605, 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 89605, 
fxprocessview/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD                             (rev 0)
+++ community-staging-i686/PKGBUILD     2013-04-30 10:08:43 UTC (rev 89606)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin <[email protected]>
+# Contributor: Sander Jansen <[email protected]>
+
+pkgname=fxprocessview
+pkgver=0.5.0
+pkgrel=6
+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 
89605, fxprocessview/trunk/build-fix.patch)
===================================================================
--- community-staging-i686/build-fix.patch                              (rev 0)
+++ community-staging-i686/build-fix.patch      2013-04-30 10:08:43 UTC (rev 
89606)
@@ -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 89605, 
fxprocessview/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-30 10:08:43 UTC (rev 89606)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin <[email protected]>
+# Contributor: Sander Jansen <[email protected]>
+
+pkgname=fxprocessview
+pkgver=0.5.0
+pkgrel=6
+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 
89605, fxprocessview/trunk/build-fix.patch)
===================================================================
--- community-staging-x86_64/build-fix.patch                            (rev 0)
+++ community-staging-x86_64/build-fix.patch    2013-04-30 10:08:43 UTC (rev 
89606)
@@ -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){

Reply via email to