[Frugalware-git] ryuotesting5: Merge branch 'master' of ../current

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=ryuotesting5.git;a=commitdiff;h=a5ce801e931cc0d519fef736c257014bb1f0172a

commit a5ce801e931cc0d519fef736c257014bb1f0172a
Merge: 49d075e 8495bd6
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 01:05:11 2012 -0500

Merge branch 'master' of ../current
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] ryuotesting5: frugalware-1.7-8-x86_64 * add more packages that were removed in current but nothing replaces them.

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=ryuotesting5.git;a=commitdiff;h=0983cee0a3b5a402d3749f51b3415cf24d1e4f78

commit 0983cee0a3b5a402d3749f51b3415cf24d1e4f78
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 01:10:47 2012 -0500

frugalware-1.7-8-x86_64
* add more packages that were removed in current but nothing replaces them.

diff --git a/source/base/frugalware/FrugalBuild 
b/source/base/frugalware/FrugalBuild
index ebff019..4be97ab 100644
--- a/source/base/frugalware/FrugalBuild
+++ b/source/base/frugalware/FrugalBuild
@@ -4,7 +4,7 @@

pkgname=frugalware
pkgver=1.7
-pkgrel=7
+pkgrel=8
pkgdesc=Basic Frugalware Linux filesystem package
url=http://ftp.frugalware.org/pub/other/frugalware/;
depends=()
@@ -19,7 +19,10 @@ signatures=($source.asc)

replaces=(
'dracut-plymouth' 'udev' 'libgudev' 'systemd-gtk' 'systemd-plymouth'
-   'qt' 'qdvdauthor' 'bpck-usb-firmware' 'libplayer' 'libvalhalla'
+   'qt' 'qdvdauthor' 'bpck-usb-firmware' 'libplayer' 'libvalhalla' 'cobra'
+   'flexdock' 'htmlparser' 'jaudiotagger' 'jmf' 'ow-util-ant-tasks' 
'avifile'
+   'substance' 'skinlf' 'qt-docs' 'qdvdauthor-buttons' 'qdvdauthor-masks'
+   'qdvdauthor-transitions'
)
conflicts=(${replaces[@]})
provides=(${provides[@]})
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: import initial draft of PartitionModule

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=08f0861440ce84b44019c35974889f62345f7d55

commit 08f0861440ce84b44019c35974889f62345f7d55
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 01:48:25 2012 -0500

import initial draft of PartitionModule

diff --git a/PartitionModule.cc b/PartitionModule.cc
new file mode 100644
index 000..6bce8b9
--- /dev/null
+++ b/PartitionModule.cc
@@ -0,0 +1,147 @@
+#include Utility.hh
+#include UserInterface.hh
+#include Device.hh
+#include PartitionModule.hh
+
+#ifdef NEWT
+#include newt.h
+#include stdlib.h
+#include sstream
+
+using std::stringstream;
+
+class Item
+{
+
+public:
+  Item() { device = 0, partition = 0, space = false; }
+  ~Item() { }
+  static bool getItems(vector Device * devices,vector Item * 
items,newtComponent listbox);
+  string text;
+  Device *device;
+  Partition *partition;
+  bool space;
+
+};
+
+// FIXME: this function makes assumptions about text alignment padding.
+static string formatPartitionText(Device *device,Partition *part)
+{
+  stringstream buf;
+
+  buf;
+  buf  Partition;
+  buf   ;
+  buf.width(3);
+  buf  part-getNumber();
+  buf.width(0);
+  buf  : ;
+  buf.width(8);
+  buf  part-getPurpose();
+  buf.width(0);
+  buf   type (;
+  buf  device-sectorsToSizeString(part-getSectors());
+  buf  );
+
+  return buf.str();
+}
+
+bool Item::getItems(vector Device * devices,vector Item * 
items,newtComponent listbox)
+{
+  devices = Device::probeAll();
+
+  if(devices.empty())
+return false;
+
+  for( size_t i = 0 ; i  devices.size() ; ++i )
+  {
+Device *device = devices.at(i);
+
+if(device-isDisk())
+{
+  Item *item = new Item();
+
+  item-text = device-getPath() + :  + device-getLabelType() +  label 
( + device-getSizeString() + );
+
+  item-device = device;
+
+  items.push_back(item);
+
+  if(device-getLabelType() != unknown)
+  {
+for( size_t j = 0 ; j  device-getTableSize() ; ++j )
+{
+  Partition *part = device-getPartition(j);
+
+  item = new Item();
+
+  item-text = formatPartitionText(device,part);
+
+  item-partition = part;
+
+  items.push_back(item);
+}
+
+if(device-getUnusedSizeString() != 0.0BiB)
+{
+  item = new Item();
+
+  item-text =   Free Space ( + device-getUnusedSizeString() + );
+
+  item-space = true;
+
+  items.push_back(item);
+}
+  }
+
+  item = new Item();
+
+  items.push_back(item);
+}
+  }
+
+  if(items.empty())
+return false;
+
+  return true;
+}
+#endif
+
+PartitionModule::PartitionModule()
+{
+}
+
+PartitionModule::~PartitionModule()
+{
+}
+
+int PartitionModule::run()
+{
+  const char *title = Partition Setup;
+
+#ifdef NEWT
+  vector Item * items;
+  vector Device * devices;
+  newtComponent i;
+
+  if(!Item::getItems(devices,items,i))
+return 0;
+
+  for( size_t n = 0 ; n  items.size() ; ++n )
+  {
+Item *item = items[n];
+
+printf(%s\n,item-text.c_str());
+  }
+
+#endif
+
+  return 1;
+}
+
+string PartitionModule::getName()
+{
+  return __FILE__;
+}
+
+PartitionModule partition_module;
diff --git a/PartitionModule.hh b/PartitionModule.hh
new file mode 100644
index 000..c9e0f6a
--- /dev/null
+++ b/PartitionModule.hh
@@ -0,0 +1,16 @@
+#pragma once
+
+#include Module.hh
+
+class PartitionModule : public Module
+{
+
+public:
+  PartitionModule();
+  virtual ~PartitionModule();
+  virtual int run();
+  virtual string getName();
+
+};
+
+extern PartitionModule partition_module;
\ No newline at end of file
diff --git a/SConstruct b/SConstruct
index 9d2ed73..22f524f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -42,5 +42,6 @@ env.Program('fwsetup',[
'DosPartitionTable.cc',
'Device.cc',
'UserInterface.cc',
-  'Utility.cc'
+  'Utility.cc',
+  'PartitionModule.cc'
])
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add code to cycling through the module units

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=4e0669e3219b80dafa7a38193939f5e88a167b1f

commit 4e0669e3219b80dafa7a38193939f5e88a167b1f
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 01:57:39 2012 -0500

add code to cycling through the module units

diff --git a/Main.cc b/Main.cc
index 1ceb879..3ed9860 100644
--- a/Main.cc
+++ b/Main.cc
@@ -3,9 +3,21 @@
#include locale.h
#include UserInterface.hh
#include Utility.hh
+#include PartitionModule.hh
+
+static Module edge_guard_module;
+
+static Module modules[] =
+{
+  edge_guard_module,
+  partition_module,
+  edge_guard_module
+};

int main(int argc,char **argv)
{
+  Module *module = modules[1];
+
if(geteuid() != 0)
return EXIT_FAILURE;

@@ -15,5 +27,17 @@ int main(int argc,char **argv)
if(!ui.initialize(argc,argv))
return EXIT_FAILURE;

+  while(module-getName() != )
+  {
+int i = module-run();
+
+if(i  0)
+  --module;
+else if(i  0)
+  ++module;
+else if(i == 0)
+  break;
+  }
+
return EXIT_SUCCESS;
}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] gnometesting: Merge ../current

2012-08-28 Thread Baste
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8a06040a72ac9eee40facf426a70d023946dbe22

commit 8a06040a72ac9eee40facf426a70d023946dbe22
Merge: 73c90a6 1eed23d
Author: Baste ba...@frugalware.org
Date:   Tue Aug 28 08:44:05 2012 +0200

Merge ../current
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: pion-net-4.0.15-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a2309fa1e98440ff8b0eb7a3c82ed898be2bca9f

commit a2309fa1e98440ff8b0eb7a3c82ed898be2bca9f
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 10:59:43 2012 +0200

pion-net-4.0.15-1-x86_64

* Version bump

diff --git a/source/lib-extra/pion-net/FrugalBuild 
b/source/lib-extra/pion-net/FrugalBuild
index d5a8167..c77e6f2 100644
--- a/source/lib-extra/pion-net/FrugalBuild
+++ b/source/lib-extra/pion-net/FrugalBuild
@@ -1,25 +1,30 @@
-# Compiling Time: 2.21 SBU
+# Compiling Time: 1.68 SBU
# Maintainer: kikadf kikadf...@gmail.com

pkgname=pion-net
-pkgver=4.0.13
+pkgver=4.0.15
pkgrel=1
pkgdesc=Pion Network Library is a C++ development library for implementing 
lightweight HTTP interfaces.
url=http://www.pion.org/;
depends=('libboost' 'log4cpp' 'openssl')
makedepends=('doxygen' 'boost')
-_F_scm_type=git
-_F_scm_url=git://github.com/cloudmeter/pion-core.git
-Finclude scm
groups=('lib-extra')
archs=('i686' 'x86_64')
up2date=lynx -dump $url | sed -n 's/.*Pion \(.*\) Released/\1/p' | head -1
+source=(https://github.com/cloudmeter/pion-core/tarball/$pkgver)
+sha1sums=('644954a4bd356a2232b8a3fab619888cc61877f8')

build()
{
-   Funpack_scm
+   mv $pkgver $pkgname-$pkgver.tar.gz || Fdie
+   tar -xzf $pkgname-$pkgver.tar.gz || Fdie
+   for i in `ls -d */`; do
+   _F_cd_path=$i
+   done
Fsed '@PION_COMMON_HOME@' 'common' net/Makefile.am
cp -a common net/ || Fdie
+   # gcc4.7 fix
+   Fsed 'erase(std' 'this-erase(std' 
net/common/include/pion/PluginManager.hpp
cd net || Fdie
Fbuild
}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: dvdauthor-0.7.1-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a0b5b5c3417cb09cd2fb5cc232d98af67b6c49d9

commit a0b5b5c3417cb09cd2fb5cc232d98af67b6c49d9
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 11:02:34 2012 +0200

dvdauthor-0.7.1-1-x86_64

* Version bump

diff --git a/source/xapps/dvdauthor/FrugalBuild 
b/source/xapps/dvdauthor/FrugalBuild
index 53d85c3..81f7d8c 100644
--- a/source/xapps/dvdauthor/FrugalBuild
+++ b/source/xapps/dvdauthor/FrugalBuild
@@ -4,18 +4,17 @@
# Contributor: BMH1980 bmh1...@frugalware.org

pkgname=dvdauthor
-pkgver=0.7.0
-pkgrel=4
+pkgver=0.7.1
+pkgrel=1
pkgdesc=Will generate a DVD movie from a valid mpeg2 stream
-depends=('libxml2=2.7.8' 'imagemagick=6.6.8_5-3' 'fontconfig=2.8.0' \
+depends=('libxml2=2.8.0' 'imagemagick=6.6.8_5-3' 'fontconfig=2.8.0' \
'libdvdread=4.1.3' 'libtiff' 'libjpeg=8c' 'libsm' \
'libxcb' 'libtool' 'fribidi')
Finclude sourceforge
-license=GPL2
groups=('xapps')
archs=('i686' 'x86_64')
_F_cd_path=$pkgname
-sha1sums=('39501f826ae9cc6b334160ebb9c01ce9c91b31d4')
+sha1sums=('a9636d165bf546e3e2b25b7397c33dbfa2895e6a')


# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: libtorrent-rasterbar-0.16.3-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f53bca6ff96f83be12c7a6a7fb5617d2b660f428

commit f53bca6ff96f83be12c7a6a7fb5617d2b660f428
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 11:22:29 2012 +0200

libtorrent-rasterbar-0.16.3-1-x86_64

* Version bump

diff --git a/source/lib-extra/libtorrent-rasterbar/FrugalBuild 
b/source/lib-extra/libtorrent-rasterbar/FrugalBuild
index 4f53531..39ee7c4 100644
--- a/source/lib-extra/libtorrent-rasterbar/FrugalBuild
+++ b/source/lib-extra/libtorrent-rasterbar/FrugalBuild
@@ -1,11 +1,11 @@
-# Compiling Time: 4.73 SBU
+# Compiling Time: 4.06 SBU
# Maintainer: kikadf kikadf...@gmail.com
# Contributor: Devil505 devil505li...@gmail.com
# Contributor: crazy cr...@frugalware.org

pkgname=libtorrent-rasterbar
-pkgver=0.16.2
-pkgrel=3
+pkgver=0.16.3
+pkgrel=1
pkgdesc=LibTorrent Rasterbar is a BitTorrent library written in C++
_F_googlecode_dirname=libtorrent
Finclude googlecode python
@@ -16,9 +16,7 @@ groups=('lib-extra')
archs=('i686' 'x86_64')
Fconfopts=$Fconfopts --with-libgeoip=system --enable-python-binding \
--enable-statistics --enable-disk-stats --enable-examples
-source=($source fix_disk-stats_build.patch)
-sha1sums=('04da641d21d0867fc103f4f57ffd41b3fce19ead' \
-  'db2bb8e4be381d37aa4e97bf906ddb13b240b699')
+sha1sums=('72788037bdf6a0a4796b4d74e543528cbfe9899b')

subpkgs=(libtorrent-rasterbar-python)
subdescs=('libtorrent-rasterbar python bindings')
diff --git a/source/lib-extra/libtorrent-rasterbar/fix_disk-stats_build.patch 
b/source/lib-extra/libtorrent-rasterbar/fix_disk-stats_build.patch
deleted file mode 100644
index b39ce8e..000
--- a/source/lib-extra/libtorrent-rasterbar/fix_disk-stats_build.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur libtorrent-rasterbar-0.16.2/include/libtorrent/disk_buffer_pool.hpp 
libtorrent-rasterbar-0.16.2.new/include/libtorrent/disk_buffer_pool.hpp
 libtorrent-rasterbar-0.16.2/include/libtorrent/disk_buffer_pool.hpp
2012-05-05 21:36:29.0 +0200
-+++ libtorrent-rasterbar-0.16.2.new/include/libtorrent/disk_buffer_pool.hpp
2012-07-17 21:26:15.0 +0200
-@@ -59,7 +59,7 @@
-   ~disk_buffer_pool();
- #endif
-
--#if defined TORRENT_DEBUG || TORRENT_RELEASE_ASSERTS
-+#if defined TORRENT_DEBUG || TORRENT_RELEASE_ASSERTS || defined 
TORRENT_DISK_STATS
-   bool is_disk_buffer(char* buffer
-   , mutex::scoped_lock l) const;
-   bool is_disk_buffer(char* buffer) const;
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: monothela-0.0.7-2-i686 * Bin

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=34a0b90c0af004ec786f7647c2b0d9c0843a732a

commit 34a0b90c0af004ec786f7647c2b0d9c0843a732a
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 13:38:20 2012 +0200

monothela-0.0.7-2-i686
* Bin

diff --git a/source/gnome-extra/monotheka/FrugalBuild 
b/source/gnome-extra/monotheka/FrugalBuild
deleted file mode 100644
index 02710c4..000
--- a/source/gnome-extra/monotheka/FrugalBuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Compiling time: 0.07 SBU
-# Maintainer: AlexExtreme a...@alex-smith.me.uk
-
-pkgname=monotheka
-pkgver=0.0.7
-pkgrel=2
-pkgdesc=A DivX/DVD library for GNOME
-url=http://monotheka.mdk.org.pl/;
-depends=('gtk2-sharp=2.10.0' 'sqlite2' 'gnome-sharp=2.16.0')
-groups=('gnome-extra')
-options=('scriptlet')
-archs=('i686' 'x86_64')
-up2date=lynx -dump 
'http://forgeftp.novell.com/monotheka/0.1-ALPHA/?C=M;O=D'|grep 
$pkgname-[0-9\.]*\.tar.gz|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'
-source=(http://forgeftp.novell.com/monotheka/0.1-ALPHA/$pkgname-$pkgver.tar.gz 
fix_dependencies.patch)
-sha1sums=('e2496b4025696d1fbad7e78e7a818a87f29608e3' \
- '92019996a9dd0f9984cf157c9639bbd144487331')
-Fconfopts=$Fconfopts --nosleep
-Finclude mono
diff --git a/source/gnome-extra/monotheka/fix_dependencies.patch 
b/source/gnome-extra/monotheka/fix_dependencies.patch
deleted file mode 100644
index 2134081..000
--- a/source/gnome-extra/monotheka/fix_dependencies.patch
+++ /dev/null
@@ -1,131 +0,0 @@
-diff -urN monotheka-0.0.7.orig/MainWindow/boil monotheka-0.0.7/MainWindow/boil
 monotheka-0.0.7.orig/MainWindow/boil   2005-04-15 22:45:09.0 
+0100
-+++ monotheka-0.0.7/MainWindow/boil2006-08-31 08:58:56.0 +0100
-@@ -1,11 +1,11 @@
- NAME=Monotheka
- TYPE=exe
-
--REF_PKG=gtk-sharp \
--gnome-sharp \
--gtkhtml-sharp \
--glade-sharp \
--gconf-sharp
-+REF_PKG=gtk-sharp-2.0 \
-+gnome-sharp-2.0 \
-+gtkhtml-sharp-2.0 \
-+glade-sharp-2.0 \
-+gconf-sharp-2.0
-
- REF_INTERNAL=Util.dll PluginLib.dll MovieDatabase.dll
- DEPENDS=Util MovieDatabase PluginLib
-diff -urN monotheka-0.0.7.orig/monoboil.config monotheka-0.0.7/monoboil.config
 monotheka-0.0.7.orig/monoboil.config   2006-04-01 16:43:40.0 
+0100
-+++ monotheka-0.0.7/monoboil.config2006-08-31 08:58:26.0 +0100
-@@ -1,4 +1,4 @@
- BOIL_SOFTWARE=Monotheka
- BOIL_VERSION=0.0.7
- BOIL_CODENAME=Quickfix
--BOIL_DEPENDENCIES_PKG=mono-1.0.6 gtk-sharp-1.0.4 glade-sharp-1.0.4 
gnome-sharp-1.0.4 gconf-sharp-1.0.4 sqlite-2.8
-+BOIL_DEPENDENCIES_PKG=mono-1.0.6 gtk-sharp-2.0-2.10.0 glade-sharp-2.0-2.10.0 
gnome-sharp-2.0-2.16.0 gconf-sharp-2.0-2.16.0 sqlite-2.8
-diff -urN monotheka-0.0.7.orig/PluginLib/boil monotheka-0.0.7/PluginLib/boil
 monotheka-0.0.7.orig/PluginLib/boil2005-03-25 14:54:20.0 
+
-+++ monotheka-0.0.7/PluginLib/boil 2006-08-31 08:59:10.0 +0100
-@@ -1,6 +1,6 @@
- NAME=PluginLib
- TYPE=library
- REF_INTERNAL=MovieDatabase.dll Util.dll
--REF_PKG=gtk-sharp
-+REF_PKG=gtk-sharp-2.0
- DEPENDS=MovieDatabase
- SOURCES=PluginLib.cs FilmPortal.cs
-diff -urN monotheka-0.0.7.orig/Plugins/AMCImport/boil 
monotheka-0.0.7/Plugins/AMCImport/boil
 monotheka-0.0.7.orig/Plugins/AMCImport/boil2005-07-30 
18:52:36.0 +0100
-+++ monotheka-0.0.7/Plugins/AMCImport/boil 2006-08-31 09:00:06.0 
+0100
-@@ -1,7 +1,7 @@
- NAME=AMCImport
- TYPE=library
- DEPENDS=PluginLib MovieDatabase Util
--REF_PKG=gtk-sharp gnome-sharp glade-sharp
-+REF_PKG=gtk-sharp-2.0 gnome-sharp-2.0 glade-sharp-2.0
- REF_INTERNAL=MovieDatabase.dll PluginLib.dll Util.dll
- SOURCES=AMCImport.cs Importer.cs ToggleList.cs
- RESOURCES=AMCImport.glade
-diff -urN monotheka-0.0.7.orig/Plugins/AVIGet/boil 
monotheka-0.0.7/Plugins/AVIGet/boil
 monotheka-0.0.7.orig/Plugins/AVIGet/boil   2005-03-18 19:03:55.0 
+
-+++ monotheka-0.0.7/Plugins/AVIGet/boil2006-08-31 09:00:54.0 
+0100
-@@ -2,5 +2,5 @@
- TYPE=library
- DEPENDS=PluginLib MovieDatabase Util
- REF_INTERNAL=MovieDatabase.dll PluginLib.dll Util.dll
--REF_PKG=gtk-sharp
-+REF_PKG=gtk-sharp-2.0
- SOURCES=AVIGet.cs RIFFReader.cs
-diff -urN monotheka-0.0.7.orig/Plugins/CSVImport/boil 
monotheka-0.0.7/Plugins/CSVImport/boil
 monotheka-0.0.7.orig/Plugins/CSVImport/boil2005-03-13 
09:46:26.0 +
-+++ monotheka-0.0.7/Plugins/CSVImport/boil 2006-08-31 08:59:41.0 
+0100
-@@ -1,7 +1,7 @@
- NAME=CSVImport
- TYPE=library
- DEPENDS=PluginLib MovieDatabase Util
--REF_PKG=gtk-sharp gnome-sharp glade-sharp
-+REF_PKG=gtk-sharp-2.0 gnome-sharp-2.0 glade-sharp-2.0
- REF_INTERNAL=MovieDatabase.dll PluginLib.dll Util.dll
- SOURCES=CSVImport.cs ToggleList.cs Importer.cs
- RESOURCES=CVSImport.glade
-diff -urN monotheka-0.0.7.orig/Plugins/FilmwebGet/boil 
monotheka-0.0.7/Plugins/FilmwebGet/boil
 monotheka-0.0.7.orig/Plugins/FilmwebGet/boil   2005-03-25 
14:55:42.0 +
-+++ monotheka-0.0.7/Plugins/FilmwebGet/boil

[Frugalware-git] mono: dbus-sharp-0.7.0-3-i686 * Rebuild with latest mono

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=mono.git;a=commitdiff;h=fa370a5478911c498c526d35433a845ac15650e1

commit fa370a5478911c498c526d35433a845ac15650e1
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 13:45:05 2012 +0200

dbus-sharp-0.7.0-3-i686
* Rebuild with latest mono

diff --git a/source/apps-extra/dbus-sharp/FrugalBuild 
b/source/apps-extra/dbus-sharp/FrugalBuild
index 0884c8c..63c062c 100644
--- a/source/apps-extra/dbus-sharp/FrugalBuild
+++ b/source/apps-extra/dbus-sharp/FrugalBuild
@@ -3,7 +3,7 @@

pkgname=dbus-sharp
pkgver=0.7.0
-pkgrel=2
+pkgrel=3
pkgdesc=Managed D-Bus IPC protocol library and CLR binding
url=http://mono.github.com/dbus-sharp/;
depends=('mono')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] mono: galago-sharp-0.5.0-5-i686 * Rebuild with dbus-sharp

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=mono.git;a=commitdiff;h=a554c5c38caccc92d1aa0a4baf1e702bfe290196

commit a554c5c38caccc92d1aa0a4baf1e702bfe290196
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 14:09:06 2012 +0200

galago-sharp-0.5.0-5-i686
* Rebuild with dbus-sharp

diff --git a/source/gnome-extra/galago-sharp/FrugalBuild 
b/source/gnome-extra/galago-sharp/FrugalBuild
index 0f56763..d00a94d 100644
--- a/source/gnome-extra/galago-sharp/FrugalBuild
+++ b/source/gnome-extra/galago-sharp/FrugalBuild
@@ -3,7 +3,7 @@

pkgname=galago-sharp
pkgver=0.5.0
-pkgrel=4
+pkgrel=5
pkgdesc=Galago Desktop Presence Framework - C# Bindings
url=http://www.galago-project.org;
depends=('libgalago' 'gtk2-sharp=2.12.6' 'perl-xml-libxml' 'dbus-sharp=0.7.0')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: gnome-frugalware-1.8.0-1-x86_64 * Version bump

2012-08-28 Thread Baste
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=86b90156b01f5a7fadf9e2031cd94a53796bad66

commit 86b90156b01f5a7fadf9e2031cd94a53796bad66
Author: Baste ba...@frugalware.org
Date:   Tue Aug 28 12:13:43 2012 +0200

gnome-frugalware-1.8.0-1-x86_64
* Version bump

diff --git a/source/gnome/gnome-frugalware/FrugalBuild 
b/source/gnome/gnome-frugalware/FrugalBuild
index 5172b42..2d659fd 100644
--- a/source/gnome/gnome-frugalware/FrugalBuild
+++ b/source/gnome/gnome-frugalware/FrugalBuild
@@ -3,7 +3,7 @@
# Contributor: AlexExtreme a...@alex-smith.me.uk

pkgname=gnome-frugalware
-pkgver=1.7.3
+pkgver=1.8.0
pkgrel=1
pkgdesc=Gnome default theme for Frugalware Linux.
url=http://frugalware.org;
@@ -14,7 +14,7 @@ groups=('gnome' 'gnome-minimal')
archs=('i686' 'x86_64')
up2date=lynx -dump http://ftp.frugalware.org/pub/other/artwork/gnome-theme | 
Flasttar
source=(http://ftp.frugalware.org/pub/other/artwork/gnome-theme/$pkgname-$pkgver.tar.bz2)
-sha1sums=('807a592cb1cfd3497a3b049795a5f48188d9c04c')
+sha1sums=('3c9e3c81e43cb50d66bb00b821a9f1125d5267ae')

subpkgs=('gtk+2-theme-frugalware')
subdescs=('Frugalware GTK+2 theme')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: swig-2.0.8-1-x86_64

2012-08-28 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ba96fad3a49c630f07637aa3ebd03bd173510460

commit ba96fad3a49c630f07637aa3ebd03bd173510460
Author: Miklos Vajna vmik...@frugalware.org
Date:   Tue Aug 28 13:22:29 2012 +0200

swig-2.0.8-1-x86_64

- up to 2.0.8

diff --git a/source/devel-extra/swig/FrugalBuild 
b/source/devel-extra/swig/FrugalBuild
index 8a86c27..0f813c7 100644
--- a/source/devel-extra/swig/FrugalBuild
+++ b/source/devel-extra/swig/FrugalBuild
@@ -3,7 +3,7 @@
# Contributor: Miklos Nemeth de...@frugalware.org

pkgname=swig
-pkgver=2.0.6
+pkgver=2.0.8
pkgrel=1
pkgdesc=SWIG interface compiler
archs=('i686' 'x86_64' 'arm')
@@ -11,7 +11,7 @@ depends=('libstdc++=4.3.0-4' 'pcre=8.30')
groups=('devel-extra')
Finclude sourceforge
url=http://www.swig.org;
-up2date=lynx -dump http://www.swig.org/download.html|grep -m1 '.tar.gz'|sed 
's/.*-\(.*\).t.*/\1/'
-sha1sums=('8e27a735d1f53be2e3d8d8473a3847e89ba89da8')
+up2date=Flasttar http://www.swig.org/download.html;
+sha1sums=('763305da320163903c69c1cdfbf9a942117d9ace')

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: afuse-0.2-2-x86_64

2012-08-28 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f642d06d2e78d6eaf08162ac568147369dced41a

commit f642d06d2e78d6eaf08162ac568147369dced41a
Author: Miklos Vajna vmik...@frugalware.org
Date:   Tue Aug 28 13:23:45 2012 +0200

afuse-0.2-2-x86_64

- bin, dead package

diff --git a/source/network-extra/afuse/CVE-2008-2232.patch 
b/source/network-extra/afuse/CVE-2008-2232.patch
deleted file mode 100644
index 460b1d1..000
--- a/source/network-extra/afuse/CVE-2008-2232.patch
+++ /dev/null
@@ -1,212 +0,0 @@
-diff -ur afuse-0.2.orig/src/afuse.c afuse-0.2/src/afuse.c
 afuse-0.2.orig/src/afuse.c 2008-02-18 17:16:32.0 -0500
-+++ afuse-0.2/src/afuse.c  2008-07-10 21:50:06.0 -0400
-@@ -280,14 +280,19 @@
- }
-
-
--// !!FIXME!! allow escaping of %'s
- // Note: this method strips out quotes and applies them itself as should be 
appropriate
--char *expand_template(const char *template, const char *mount_point, const 
char *root_name)
-+bool run_template(const char *template, const char *mount_point, const char 
*root_name)
- {
-   int len = 0;
-+  int nargs = 1;
-   int i;
--  char *expanded_name;
--  char *expanded_name_start;
-+  char *buf;
-+  char *p;
-+  char **args;
-+  char **arg;
-+  bool quote = false;
-+  pid_t pid;
-+  int status;
-
-   // calculate length
-   for(i = 0; template[i]; i++)
-@@ -295,53 +300,100 @@
-   switch(template[i + 1])
-   {
-   case 'm':
--  len += strlen(mount_point) + 2;
-+  len += strlen(mount_point);
-   i++;
-   break;
-   case 'r':
--  len += strlen(root_name) + 2;
-+  len += strlen(root_name);
-+  i++;
-+  break;
-+  case '%':
-+  len++;
-   i++;
-   break;
-   }
--  } else if(template[i] != '')
-+  } else if(template[i] == ' '  !quote) {
-+  len++;
-+  nargs++;
-+  } else if(template[i] == '')
-+  quote = !quote;
-+  else if(template[i] == '\\'  template[i + 1])
-+  len++, i++;
-+  else
-   len++;
-
--  expanded_name_start = expanded_name = my_malloc(len + 1);
-+  buf = my_malloc(len + 1);
-+  args = my_malloc((nargs + 1) * sizeof(*args));
-+
-+  p = buf;
-+  arg = args;
-+  *arg++ = p;
-
-   for(i = 0; template[i]; i++)
-   if(template[i] == '%') {
--  int j = 0;
-   switch(template[i + 1])
-   {
-   case 'm':
--  *expanded_name++ = '';
--  while(mount_point[j])
--  *expanded_name++ = 
mount_point[j++];
--  *expanded_name++ = '';
-+  strcpy(p, mount_point);
-+  p += strlen(mount_point);
-   i++;
-   break;
-   case 'r':
--  *expanded_name++ = '';
--  while(root_name[j])
--  *expanded_name++ = 
root_name[j++];
--  *expanded_name++ = '';
-+  strcpy(p, root_name);
-+  p += strlen(root_name);
-+  i++;
-+  break;
-+  case '%':
-+  *p++ = '%';
-   i++;
-   break;
-   }
--  } else if(template[i] != '')
--  *expanded_name++ = template[i];
--
--  *expanded_name = '\0';
--
--  return expanded_name_start;
-+  } else if(template[i] == ' '  !quote) {
-+  *p++ = '\0';
-+  *arg++ = p;
-+  } else if(template[i] == '')
-+  quote = !quote;
-+  else if(template[i] == '\\'  template[i + 1])
-+  *p++ = template[++i];
-+  else
-+  *p++ = template[i];
-+
-+  *p = '\0';
-+  *arg = NULL;
-+
-+  pid = fork();
-+   

[Frugalware-git] frugalware-current: ochdownloader-0.8.2-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9c1e6fe1b5b235030eca055e80b2bee5e11c0763

commit 9c1e6fe1b5b235030eca055e80b2bee5e11c0763
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 15:41:07 2012 +0200

ochdownloader-0.8.2-1-x86_64

* Remove package

diff --git a/source/network-extra/ochdownloader/FrugalBuild 
b/source/network-extra/ochdownloader/FrugalBuild
deleted file mode 100644
index ca5675c..000
--- a/source/network-extra/ochdownloader/FrugalBuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Compiling Time: 0 SBU
-# Maintainer: kikadf kikadf...@gmail.com
-
-pkgname=ochdownloader
-pkgver=0.8.2
-pkgrel=1
-pkgdesc=The One Click Hoster Downloader.
-url=http://ochdownloader.com;
-rodepends=('python' 'pyside' 'pycrypto' 'imaging')
-_F_archive_name=ochd
-_F_desktop_name=ochDownloader
-_F_desktop_icon=ochdownload.png
-_F_desktop_categories=Network;FileTransfer;
-groups=('network-extra')
-archs=('i686' 'x86_64')
-up2date=lynx -dump $url/forum/index.php/topic,2.0.html | sed -n 
's|.*v\(.*\)\(:.*\)|\1|p' | head -1
-source=(https://github.com/downloads/nitely/ochDownloader/$_F_archive_name$pkgver.Source.tar.gz)
-sha1sums=('709f16f98edda70fb1b0e10d378b4ca0384a9fc9')
-
-build()
-{
-   _F_cd_path=$(ls | grep nitely)
-   Fcd
-   Fmkdir /usr/share/$pkgname
-   Fcp $_F_cd_path/* /usr/share/$pkgname/
-   Ficon $_F_cd_path/media/misc/ochdownload.png
-   Fwrapper python /usr/share/$pkgname/starter.py $pkgname
-   Fdesktop2
-}
-
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: squish-0.2.0-1-i686 * Change m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b61d851b02f40f9d02c7921432ef82c0b5f072c7

commit b61d851b02f40f9d02c7921432ef82c0b5f072c7
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 17:49:59 2012 +0200

squish-0.2.0-1-i686
* Change m8r (Kooda - Pingax)

diff --git a/source/devel-extra/squish/FrugalBuild 
b/source/devel-extra/squish/FrugalBuild
index 64953c6..c03a0d9 100644
--- a/source/devel-extra/squish/FrugalBuild
+++ b/source/devel-extra/squish/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=squish
pkgver=0.2.0
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: mpdris-0.1.2-2-i686 * CHange m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=99a9d6cfc5bbbebb027b9a107f0a0037e5ecd1f3

commit 99a9d6cfc5bbbebb027b9a107f0a0037e5ecd1f3
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 17:52:24 2012 +0200

mpdris-0.1.2-2-i686
* CHange m8r (Kooda - Pingax)

diff --git a/source/apps-extra/mpdris/FrugalBuild 
b/source/apps-extra/mpdris/FrugalBuild
index 6fb599b..10948c1 100644
--- a/source/apps-extra/mpdris/FrugalBuild
+++ b/source/apps-extra/mpdris/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=mpdris
pkgver=0.1.2
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: fmod-4.42.02-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=16bb55d514900fd82d52f1e51a384a4cfa99476b

commit 16bb55d514900fd82d52f1e51a384a4cfa99476b
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 15:52:23 2012 +0200

fmod-4.42.02-1-x86_64

* Version bump

diff --git a/source/multimedia-extra/fmod/FrugalBuild 
b/source/multimedia-extra/fmod/FrugalBuild
index cc48361..9922db1 100644
--- a/source/multimedia-extra/fmod/FrugalBuild
+++ b/source/multimedia-extra/fmod/FrugalBuild
@@ -3,7 +3,7 @@
# Contributor: Priyank Gosalia priyan...@gmail.com

pkgname=fmod
-pkgver=4.42.00
+pkgver=4.42.02
pkgrel=1
_pkgname='fmodapi'$(echo $pkgver|sed 's/\.//;s/\.//')'linux'
if [ $CARCH == x86_64 ] ; then
@@ -17,9 +17,9 @@ archs=('i686' 'x86_64')
up2date=lynx -dump $url/fmod-downloads.html | grep Downloads | sed 's/.*s 
(//;s/ S.*//'
source=($url/index.php/release/version/$_pkgname.tar.gz)
if [ $CARCH == x86_64 ] ; then
-   sha1sums=('392fa7fe9ff9bade0bfe97bd86607145b0457ab2')
+   sha1sums=('297dde92407cc94ad7f161471b1b3654c10c733c')
else
-   sha1sums=('129ea9cbfc59cd7e8ed41498411e142250e43de3')
+   sha1sums=('519c45a79ddd26a142c8de78af2b5c47414135e2')
fi

build()
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: copas-1.1.6-1-i686 * Change m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e00fd7f870db4193f8a1eb581e17204f6b5cffb7

commit e00fd7f870db4193f8a1eb581e17204f6b5cffb7
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 17:57:04 2012 +0200

copas-1.1.6-1-i686
* Change m8r (Kooda - Pingax)

diff --git a/source/lib-extra/copas/FrugalBuild 
b/source/lib-extra/copas/FrugalBuild
index bf36867..977041d 100644
--- a/source/lib-extra/copas/FrugalBuild
+++ b/source/lib-extra/copas/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=copas
pkgver=1.1.6
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: unetbootin-581-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ea2e5a1dd39da7d0030fa497bcf932353c01d732

commit ea2e5a1dd39da7d0030fa497bcf932353c01d732
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 16:01:40 2012 +0200

unetbootin-581-1-x86_64

* Version bump

diff --git a/source/xapps-extra/unetbootin/FrugalBuild 
b/source/xapps-extra/unetbootin/FrugalBuild
index 67a770f..9e7d3a5 100644
--- a/source/xapps-extra/unetbootin/FrugalBuild
+++ b/source/xapps-extra/unetbootin/FrugalBuild
@@ -1,8 +1,8 @@
-# Compiling Time: 0.21 SBU
+# Compiling Time: 0.30 SBU
# Maintainer: kikadf kikadf...@gmail.com

pkgname=unetbootin
-pkgver=578
+pkgver=581
pkgrel=1
pkgdesc=UNetbootin loads utilities or installs Linux/BSD to a partition or USB 
drive without a CD.
_F_cd_path=/
@@ -11,12 +11,12 @@ _F_desktop_icon=unetbootin_48.png
_F_desktop_categories=System;
_F_sourceforge_sep=-source-
depends=('libqtcore' 'libqtgui' 'libqtnetwork')
-rodepends=('syslinux' '7zip' 'mtools')
+rodepends=('extlinux' 'syslinux' '7zip' 'mtools')
makedepends=('qt4-linguist')
Finclude sourceforge
groups=('xapps-extra')
archs=('i686' 'x86_64')
-sha1sums=('a32e91b11a27b42bf02e11d3f388cf17b223fe66')
+sha1sums=('1985a11d4ec4c25c3ad280ab3cec0c0658a46c81')

build()
{
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: coxpcall-1.13.0-1-i686 * Change m8r (Kooda - Pingax) * Fix up2date

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=720197ae30bcbace38574d4c59e5ee0eab7cfc2e

commit 720197ae30bcbace38574d4c59e5ee0eab7cfc2e
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:03:09 2012 +0200

coxpcall-1.13.0-1-i686
* Change m8r (Kooda - Pingax)
* Fix up2date

diff --git a/source/lib-extra/coxpcall/FrugalBuild 
b/source/lib-extra/coxpcall/FrugalBuild
index c276e90..8576c4c 100644
--- a/source/lib-extra/coxpcall/FrugalBuild
+++ b/source/lib-extra/coxpcall/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pignax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=coxpcall
pkgver=1.13.0
@@ -9,7 +10,7 @@ url=http://coxpcall.luaforge.net/;
depends=('lua')
groups=('lib-extra')
archs=('i686' 'x86_64')
-up2date=(Flasttar http://luaforge.net/frs/?group_id=101;)
+up2date=lynx -dump https://github.com/keplerproject/coxpcall/tags|grep -m1 
.zip|sed 's/.*v\(.*\).zip.*/\1/'|sed 's/_/./g'
source=(http://luaforge.net/frs/download.php/3406/$pkgname-$pkgver.tar.gz;)
sha1sums=('8b3321a9b74305b1347ce2543e998a118ca82701')
Fconfopts=$Fconfopts lua
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: luaexpat-1.1-2-i686 * Change m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=71bbe9ea1bfd261ab06fa349eac59890b7a7426c

commit 71bbe9ea1bfd261ab06fa349eac59890b7a7426c
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:06:39 2012 +0200

luaexpat-1.1-2-i686
* Change m8r (Kooda - Pingax)

diff --git a/source/lib-extra/luaexpat/FrugalBuild 
b/source/lib-extra/luaexpat/FrugalBuild
index 81f2bd5..902b37c 100644
--- a/source/lib-extra/luaexpat/FrugalBuild
+++ b/source/lib-extra/luaexpat/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=luaexpat
pkgver=1.1
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: mucommander-0.9.0-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d06a1f784817e3812286fea25ad22baafabe24cf

commit d06a1f784817e3812286fea25ad22baafabe24cf
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 16:09:35 2012 +0200

mucommander-0.9.0-1-x86_64

* Version bump

diff --git a/source/xapps-extra/mucommander/FrugalBuild 
b/source/xapps-extra/mucommander/FrugalBuild
index 4140283..989b391 100644
--- a/source/xapps-extra/mucommander/FrugalBuild
+++ b/source/xapps-extra/mucommander/FrugalBuild
@@ -3,8 +3,8 @@

pkgname=mucommander
_F_archive_name=muCommander
-pkgver=0.8.5
-_pkgver=${pkgver//./_}
+pkgver=0.9.0
+_ver=${pkgver//./_}
pkgrel=1
pkgdesc=muCommander is a java based, lightweight, cross-platform file manager 
with a dual-pane interface.
url=http://www.mucommander.com/;
@@ -12,18 +12,18 @@ _F_desktop_name=$_F_archive_name
_F_desktop_icon=MuCommander_icon.png
_F_desktop_exec=$pkgname
_F_desktop_categories=FileManager;Utility;
-depends=('openjre')
+rodepends=('openjre')
groups=('xapps-extra')
archs=('i686' 'x86_64')
-source=($urldownload/$pkgname$Fpkgversep$_pkgver.tar.gz \
+source=($urldownload/$pkgname$Fpkgversep$_ver.tar.gz \
http://upload.wikimedia.org/wikipedia/commons/8/8c/MuCommander_icon.png)
up2date=lynx --dump $url | grep 'Current version' | cut -d ' ' -f 9 | cut -d 
'.' -f 1-3
-sha1sums=('aa2687cbb308962faa085b05efe5ff725f7bc8f0' \
+sha1sums=('baca5c5a5bb38fe6287fe48e474cf16890bb132e' \
'f1c0bb3510de228aab589064231cf7612279a64a')

build()
{
-   _srcdir=($_F_archive_name$Fpkgversep$_pkgver)
+   _srcdir=($_F_archive_name$Fpkgversep$_ver)
_pkgdir=($Fprefix/share/$pkgname)
Fwrapper cd /usr/share/mucommander/ mucommander
Fexec echo 'sh ./mucommander.sh $@'  $startdir/pkg/usr/bin/mucommander
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: luafilesystem-1.5.0-1-i686 * Change m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c6a95f6cd088ae4ab93e3c9a03fc82c82f431838

commit c6a95f6cd088ae4ab93e3c9a03fc82c82f431838
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:17:09 2012 +0200

luafilesystem-1.5.0-1-i686
* Change m8r (Kooda - Pingax)

diff --git a/source/lib-extra/luafilesystem/FrugalBuild 
b/source/lib-extra/luafilesystem/FrugalBuild
index 61effcd..498fc9e 100644
--- a/source/lib-extra/luafilesystem/FrugalBuild
+++ b/source/lib-extra/luafilesystem/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0.01 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=luafilesystem
pkgver=1.5.0
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: uget-1.8.2-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=036ed62d5393f80ff2811c3bdf522cc1ac91c5d6

commit 036ed62d5393f80ff2811c3bdf522cc1ac91c5d6
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 16:17:27 2012 +0200

uget-1.8.2-1-x86_64

* Fix up2date

diff --git a/source/xapps-extra/uget/FrugalBuild 
b/source/xapps-extra/uget/FrugalBuild
index 0e34103..07d0647 100644
--- a/source/xapps-extra/uget/FrugalBuild
+++ b/source/xapps-extra/uget/FrugalBuild
@@ -8,6 +8,7 @@ pkgdesc=uget (urlgfe) is a graphical download manager written 
using GtTK3.
url=http://urlget.sourceforge.net/;
_F_sourceforge_dirname=urlget
_F_archive_grepv=developing
+_F_sourceforge_rss_limit=60
options=('scriptlet')
Fconfopts=${Fconfopts} --enable-notify -with-gtk3 --disable-appindicator
_F_gnome_iconcache=y
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: luasec-0.4.1-1-i686 * Change m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d4930cd6c98342c9e389bc9bc549c424f5b34ab5

commit d4930cd6c98342c9e389bc9bc549c424f5b34ab5
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:18:18 2012 +0200

luasec-0.4.1-1-i686
* Change m8r (Kooda - Pingax)

diff --git a/source/lib-extra/luasec/FrugalBuild 
b/source/lib-extra/luasec/FrugalBuild
index 8ba8b1d..2a9cdfe 100644
--- a/source/lib-extra/luasec/FrugalBuild
+++ b/source/lib-extra/luasec/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=luasec
pkgver=0.4.1
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: python-irclib-0.4.8-2-i686 * Change m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f528160881e6a3ff8f926b7ebf2dc9ae26d16bdc

commit f528160881e6a3ff8f926b7ebf2dc9ae26d16bdc
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:19:20 2012 +0200

python-irclib-0.4.8-2-i686
* Change m8r (Kooda - Pingax)

diff --git a/source/lib-extra/python-irclib/FrugalBuild 
b/source/lib-extra/python-irclib/FrugalBuild
index 2e6f7ba..986aa5f 100644
--- a/source/lib-extra/python-irclib/FrugalBuild
+++ b/source/lib-extra/python-irclib/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=python-irclib
pkgver=0.4.8
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: wsapi-1.5-1-i686 * CHange m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fdfd4de27c8916bde2ee15a868045e9b23794ddd

commit fdfd4de27c8916bde2ee15a868045e9b23794ddd
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:20:15 2012 +0200

wsapi-1.5-1-i686
* CHange m8r (Kooda - Pingax)

diff --git a/source/lib-extra/wsapi/FrugalBuild 
b/source/lib-extra/wsapi/FrugalBuild
index 4c979d1..a87be90 100644
--- a/source/lib-extra/wsapi/FrugalBuild
+++ b/source/lib-extra/wsapi/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=wsapi
pkgver=1.5
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: xavante-2.2.1-1-i686 * Change m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aed8501b249ddf7b0d0cfc6732597887a2b8b645

commit aed8501b249ddf7b0d0cfc6732597887a2b8b645
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:20:52 2012 +0200

xavante-2.2.1-1-i686
* Change m8r (Kooda - Pingax)

diff --git a/source/lib-extra/xavante/FrugalBuild 
b/source/lib-extra/xavante/FrugalBuild
index 5b57ba6..58c963e 100644
--- a/source/lib-extra/xavante/FrugalBuild
+++ b/source/lib-extra/xavante/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=xavante
pkgver=2.2.1
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: lazarus-0.9.30.4-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1efcd3a6240f9ba714e7dccdfb8f9d45a972d27a

commit 1efcd3a6240f9ba714e7dccdfb8f9d45a972d27a
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 16:21:46 2012 +0200

lazarus-0.9.30.4-1-x86_64

* Fix up2date

diff --git a/source/xapps-extra/lazarus/FrugalBuild 
b/source/xapps-extra/lazarus/FrugalBuild
index 73b2dd3..7834e8b 100644
--- a/source/xapps-extra/lazarus/FrugalBuild
+++ b/source/xapps-extra/lazarus/FrugalBuild
@@ -10,7 +10,7 @@ depends=('glibc' 'gtk+2=2.24.8' 'libxau' 'libxdmcp' 
'libxext' 'libxdamage' \
'libxml2=2.7.8' 'fpc=2.6.0' 'fpc-src=2.6.0')
groups=('xapps-extra')
_F_sourceforge_ext='-src.tar.bz2'
-_F_sourceforge_rss_limit=80
+_F_sourceforge_rss_limit=160
_F_cd_path=$pkgname
_F_desktop_icon=$pkgname.png
_F_desktop_exec='startlazarus'
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: prosody-0.8.2-3-i686 * Change m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dc32cf77d8de6bf68ff71aa3b1133116d225fdcb

commit dc32cf77d8de6bf68ff71aa3b1133116d225fdcb
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:22:32 2012 +0200

prosody-0.8.2-3-i686
* Change m8r (Kooda - Pingax)

diff --git a/source/network-extra/prosody/FrugalBuild 
b/source/network-extra/prosody/FrugalBuild
index 6bb8d9d..8044bd9 100644
--- a/source/network-extra/prosody/FrugalBuild
+++ b/source/network-extra/prosody/FrugalBuild
@@ -1,5 +1,6 @@
# Compiling Time: 0 SBU
-# Maintainer: Kooda ko...@upyum.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: Kooda ko...@upyum.com

pkgname=prosody
pkgver=0.8.2
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: rings-1.2.3-1-i686 * Change m8r (Kooda - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c529e2ee332e400d9de2abaccde0633166e779d5

commit c529e2ee332e400d9de2abaccde0633166e779d5
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:23:50 2012 +0200

rings-1.2.3-1-i686
* Change m8r (Kooda - Pingax)

diff --git a/source/lib-extra/rings/FrugalBuild 
b/source/lib-extra/rings/FrugalBuild
index 1076f8f..370cd38 100644
--- a/source/lib-extra/rings/FrugalBuild
+++ b/source/lib-extra/rings/FrugalBuild
@@ -1,4 +1,5 @@
# Compiling Time: 0 SBU
+# Maintainer: Pingax pin...@frugalware.fr
# Maintainer: Kooda ko...@upyum.com

pkgname=rings
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: wxsvg-1.1.9-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6f797637756fd401c8e17b65a57933e912982541

commit 6f797637756fd401c8e17b65a57933e912982541
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 16:31:09 2012 +0200

wxsvg-1.1.9-1-x86_64

* Version bump

diff --git a/source/xlib-extra/wxsvg/FrugalBuild 
b/source/xlib-extra/wxsvg/FrugalBuild
index b8680a2..327d25a 100644
--- a/source/xlib-extra/wxsvg/FrugalBuild
+++ b/source/xlib-extra/wxsvg/FrugalBuild
@@ -1,10 +1,10 @@
-# Compiling Time: 1.19 SBU
+# Compiling Time: 0.74 SBU
# Maintainer: kikadf kikadf...@gmail.com
# Contributor: crazy cr...@frugalware.org

pkgname=wxsvg
-pkgver=1.1.8
-pkgrel=2
+pkgver=1.1.9
+pkgrel=1
pkgdesc=wxSVG is C++ library to create, manipulate and render SVG files
_F_sourceforge_ext=.tar.bz2
Finclude sourceforge
@@ -13,7 +13,7 @@ depends=('libart_lgpl' 'libstdc++' 'wxgtk=2.8.12' 
'libxxf86vm' 'expat' \
makedepends=('ffmpeg-compiletime')
groups=('xlib-extra')
archs=('i686' 'x86_64')
-sha1sums=('da680222af9523d8527db7a580626df939eb9c94')
+sha1sums=('a06b05ff8a7490a90e2ad6d087e825484ddedb61')
options=('scriptlet')

___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: sqlalchemy-0.7.8-1-i686 * Version bump * Change m8r (jercel - Pingax)

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d8dc707aa29e49b271cd925d1e99a6f1cc7dff22

commit d8dc707aa29e49b271cd925d1e99a6f1cc7dff22
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:33:49 2012 +0200

sqlalchemy-0.7.8-1-i686
* Version bump
* Change m8r (jercel - Pingax)

diff --git a/source/lib-extra/sqlalchemy/FrugalBuild 
b/source/lib-extra/sqlalchemy/FrugalBuild
index a28a1f4..3c21dce 100644
--- a/source/lib-extra/sqlalchemy/FrugalBuild
+++ b/source/lib-extra/sqlalchemy/FrugalBuild
@@ -1,8 +1,9 @@
# Compiling Time: 0.01 SBU
-# Maintainer: jercel jerce...@gmail.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: jercel jerce...@gmail.com

pkgname=sqlalchemy
-pkgver=0.7.6
+pkgver=0.7.8
pkgrel=1
pkgdesc=A Python-centric SQL toolset, database resource manager and 
object-relational mapper.
url=http://sourceforge.net/projects/sqlalchemy/files/;
@@ -11,7 +12,7 @@ depends=('python')
Finclude sourceforge
groups=('lib-extra')
archs=('i686' 'x86_64')
-sha1sums=('01c7c9dbbb9e6b84710288cfadf22711ba950c1f')
+sha1sums=('3f5de9ca7c9e4c8932be6f197cbe27cf764a65c3')
build()
{
Fcd ${_F_sourceforge_name}-$pkgver
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: ufw-0.33-1-i686 * Version bump * Change m8r

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7cff43cce7bb990307df5cf0f27b64812b35fabe

commit 7cff43cce7bb990307df5cf0f27b64812b35fabe
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 18:40:02 2012 +0200

ufw-0.33-1-i686
* Version bump
* Change m8r

diff --git a/source/network-extra/ufw/FrugalBuild 
b/source/network-extra/ufw/FrugalBuild
index 325ca96..7e87487 100644
--- a/source/network-extra/ufw/FrugalBuild
+++ b/source/network-extra/ufw/FrugalBuild
@@ -1,8 +1,9 @@
# Compiling Time: 0.01 SBU
-# Maintainer: jercel jerce...@gmail.com
+# Maintainer: Pingax pin...@frugalware.fr
+# Contributor: jercel jerce...@gmail.com

pkgname=ufw
-pkgver=0.32
+pkgver=0.33
pkgrel=1
pkgdesc=Uncomplicated Firewall is program for managing a netfilter firewall
url=https://launchpad.net/ufw;
@@ -14,7 +15,7 @@ up2date=wget --no-check-certificate -qO- 
https://launchpad.net/$pkgname/+downlo
backup=(etc/ufw/after.rules etc/ufw/after6.rules etc/ufw/before.rules 
etc/ufw/before6.rules \
etc/ufw/sysctl.conf etc/ufw/ufw.conf)
source=(http://launchpad.net/$pkgname/${pkgver%%.?}/$pkgver/+download/$pkgname-$pkgver.tar.gz
 $pkgname.service)
-sha1sums=('a97e8987be76198714e5dd430ac7115dd6f1c5cc' \
+sha1sums=('532cdb6a017619455657412e2b91b29939005a81' \
'413c1bf01405881b4c86a88dd557f57e5e4e52a2')

_F_systemd_units=(ufw=e)
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: vmware-6.0.5_109488-1-i686 * Remove package

2012-08-28 Thread Pingax
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=928a2c54a461afd02d8ad882e3e433f937f413f2

commit 928a2c54a461afd02d8ad882e3e433f937f413f2
Author: Pingax pin...@frugalware.fr
Date:   Tue Aug 28 19:06:34 2012 +0200

vmware-6.0.5_109488-1-i686
* Remove package

diff --git a/source/xapps-extra/vmware/FrugalBuild 
b/source/xapps-extra/vmware/FrugalBuild
deleted file mode 100644
index c66dd9e..000
--- a/source/xapps-extra/vmware/FrugalBuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Compiling Time: 0.01 SBU
-# Contributor: Miklos Vajna vmik...@frugalware.org
-# Maintainer: Karoly CZOVEK sli...@rei.keni.hu
-
-pkgname=vmware
-pkgver=6.0.5_109488
-anyver=
-pkgrel=1
-license=vmware
-pkgdesc=Emulates a complete PC on your PC without the usual performance 
overhead of most emulators
-url=http://www.vmware.com/download/workstation.html;
-depends=('xorg-server' 'perl' 'pciutils' 'kernel-source')
-groups=('xapps-extra')
-archs=('i686')
-up2date=lynx -dump $url |grep Latest|sed -ne 's/.*: \([^|]*\) |.*Build: 
\(.*\) | .*/\1_\2/; 1 p'
-#source=(http://download2.vmware.com/software/wkst/VMware-workstation-`echo 
$pkgver|sed 's/_/-/'`.tar.gz \
-source=(VMware-workstation-`echo $pkgver|sed 's/_/-/'`.i386.tar.gz \
-
#http://platan.vc.cvut.cz/ftp/pub/vmware/vmware-any-any-update$anyver.tar.gz \
-locations)
-options=('nobuild')
-sha1sums=('6d24d25a6b15811e70a597628aafd8e1f1db5b85' \
-  '70f87c3752207aacb5b74c34f6e835d2cd5a5f87')
-
-# x86_64 sha1sum: b586114292f228d9a84b621bea23bebc4c8d9cc7
-
-build()
-{
-   # You have to download the VMware workstation from 
http://www.vmware.com/products/ws/ manually
-Fcd vmware-distrib
-   [ -n $anyver ]  mv -f ../vmware-any-any-update$anyver/*.tar 
lib/modules/source/
-chmod 755 lib/bin/vmware bin/vmnet-bridge lib/bin/vmware-vmx \
-lib/bin-debug/vmware-vmx
-
-Fmkdir /usr/lib/vmware/bin
-cp -a bin/* $Fdestdir/usr/lib/vmware/bin
-Fmkdir /usr/lib/vmware/lib
-cp -dr lib/* $Fdestdir/usr/lib/vmware/lib
-# delete precompiled modules
-rm -rf $Fdestdir/usr/lib/vmware/lib/modules/binary
-chmod u+s $Fdestdir/usr/lib/vmware/bin/vmware-ping
-chmod u+s $Fdestdir/usr/lib/vmware/lib/bin/vmware-vmx
-Fdocrel doc/open_source_licenses.txt
-Fdocrel doc/EULA
-Fln /usr/share/doc/$pkgname-$pkgver/EULA 
/usr/lib/vmware/lib/share/EULA.txt
-Ffilerel man/man1/vmware.1.gz /usr/man/man/vmware.1.gz
-Fexerel etc/installer.sh /etc/vmware/installer.sh
-Fexerel installer/services.sh /etc/rc.d/rc.vmware
-Fln rc.vmware /etc/rc.d/vmware
-Fln /usr/lib/vmware/bin/vmware /usr/bin/vmware
-Fln lib/share /usr/lib/vmware/share
-Fln ../lib/libcrypto.so.0.9.7/libcrypto.so.0.9.7 
/usr/lib/vmware/lib/bin
-Fln ../lib/libssl.so.0.9.7/libssl.so.0.9.7 /usr/lib/vmware/lib/bin
-chown -R root:root $Fdestdir
-Ffile /etc/vmware/locations
-Frm /etc/vmware/not_configured
-# generate /etc/vmware/locations
-cd $Fdestdir
-echo answer SBINDIR /sbin  etc/vmware/locations
-for i in `find usr/lib/vmware etc/vmware` ; do
-if [ -d $i ] ; then
-echo directory $i  etc/vmware/locations
-else
-echo -n file $i  etc/vmware/locations
-if [ $i == etc/vmware/locations ] ; then
-echo   etc/vmware/locations
-else
-echo -netc/vmware/locations
-find $i -printf %T@  etc/vmware/locations
-echo   etc/vmware/locations
-fi
-fi
-done
-}
diff --git a/source/xapps-extra/vmware/locations 
b/source/xapps-extra/vmware/locations
deleted file mode 100644
index 261ea84..000
--- a/source/xapps-extra/vmware/locations
+++ /dev/null
@@ -1,7 +0,0 @@
-answer BINDIR /usr/lib/vmware/bin
-answer LIBDIR /usr/lib/vmware/lib
-answer MANDIR /usr/lib/vmware/man
-answer DOCDIR /usr/lib/vmware/doc
-answer RUN_CONFIGURATOR no
-answer INITDIR /etc/rc.d
-answer INITSCRIPTSDIR /etc/rc.d
diff --git a/source/xapps-extra/vmware/vmware.install 
b/source/xapps-extra/vmware/vmware.install
deleted file mode 100644
index 6eb0259..000
--- a/source/xapps-extra/vmware/vmware.install
+++ /dev/null
@@ -1,42 +0,0 @@
-post_install()
-{
-echo -n updating /etc/vmware/locations... 
-for i in etc/vmware/._cfg_locations ; do
-if [ -f $i ] ; then
-cat $i  etc/vmware/locations
-rm $i
-fi
-done
-
-   test -f  /etc/vmware/ssl/rui.key  chmod 400 /etc/vmware/ssl/rui.key
-   test -f /etc/vmware/ssl/rui.crt  chmod 444 /etc/vmware/ssl/rui.crt
-
-echo done.
-cat  EOF
-You need to run 

[Frugalware-git] frugalware-current: pyqwt-5.2.0-2-i686

2012-08-28 Thread Melko
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=de156eba892e3aec8e8786f916a5b07247de713a

commit de156eba892e3aec8e8786f916a5b07247de713a
Author: Melko me...@frugalware.org
Date:   Tue Aug 28 17:09:33 2012 +0200

pyqwt-5.2.0-2-i686

* rebuild

diff --git a/source/xlib-extra/pyqwt/FrugalBuild 
b/source/xlib-extra/pyqwt/FrugalBuild
index a943f26..098d95a 100644
--- a/source/xlib-extra/pyqwt/FrugalBuild
+++ b/source/xlib-extra/pyqwt/FrugalBuild
@@ -3,7 +3,7 @@

pkgname=pyqwt
pkgver=5.2.0
-pkgrel=1
+pkgrel=2
pkgdesc=Python bindings for the Qwt C++ class library.
depends=('qwt=5.2.2' 'pyqt4' 'numpy')
groups=('xlib-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: liburcu-0.7.4-1-i686

2012-08-28 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=91cbd1d33c9db945c3443410a3b71405ffa05f2c

commit 91cbd1d33c9db945c3443410a3b71405ffa05f2c
Author: Slown sl...@frugalware.org
Date:   Tue Aug 28 18:58:50 2012 +0100

liburcu-0.7.4-1-i686

* version bump

diff --git a/source/lib-extra/liburcu/FrugalBuild 
b/source/lib-extra/liburcu/FrugalBuild
index cfb5f4f..a4e74e8 100644
--- a/source/lib-extra/liburcu/FrugalBuild
+++ b/source/lib-extra/liburcu/FrugalBuild
@@ -1,9 +1,9 @@
-# Compiling Time: 0.28 SBU
+# Compiling Time: 0.27 SBU
# Maintainer: Slown sl...@frugalware.org

pkgname=liburcu
_F_archive_name=userspace-rcu
-pkgver=0.7.3
+pkgver=0.7.4
pkgrel=1
pkgdesc=LGPLv2.1 userspace RCU (read-copy-update) library
url=http://lttng.org/urcu;
@@ -12,6 +12,6 @@ groups=('lib-extra')
archs=('i686' 'x86_64')
up2date=Flasttar http://lttng.org/files/urcu;
source=(http://lttng.org/files/urcu/$_F_archive_name-$pkgver.tar.bz2)
-sha1sums=('0585e06068f766c42602b32c20baf241258440ba')
+sha1sums=('71919624410850cc3dab66b40da6255594a8c65c')

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: yarock-0.0.58-1-i686

2012-08-28 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7f7a78d3deaf4dc3c546a60fa243b619bd8ab9ea

commit 7f7a78d3deaf4dc3c546a60fa243b619bd8ab9ea
Author: Slown sl...@frugalware.org
Date:   Tue Aug 28 19:14:37 2012 +0100

yarock-0.0.58-1-i686

* version bump

diff --git a/source/xapps-extra/yarock/FrugalBuild 
b/source/xapps-extra/yarock/FrugalBuild
index 2f4fb6c..c78851c 100644
--- a/source/xapps-extra/yarock/FrugalBuild
+++ b/source/xapps-extra/yarock/FrugalBuild
@@ -1,8 +1,8 @@
-# Compiling Time: 1.64 SBU
+# Compiling Time: 1.07 SBU
# Maintainer: Slown sl...@frugalware.org

pkgname=yarock
-pkgver=0.0.57
+pkgver=0.0.58
pkgrel=1
pkgdesc=Yarock is Qt4 Modern Music Player with collection browser based on 
conver art
depends=('libqtnetwork' 'libqtsql' 'taglib' 'phonon')
@@ -15,7 +15,7 @@ _F_launchpad_sep=_
_F_launchpad_ext=_source.tar.gz
Finclude launchpad gnome-scriptlet
_F_cd_path=Yarock_${pkgver}_source
-sha1sums=('1c64f2cacd3efece412d9b07765b623a62550cad')
+sha1sums=('01cf8dff3df509ba86ea02379fcfd5805073f0f7')

_F_desktop_name=YaRock
_F_desktop_exec=YaRock
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: ruby-excon-0.16.2-1-i686

2012-08-28 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d7434f6ce4d8c472d74760e10bf104c05378b106

commit d7434f6ce4d8c472d74760e10bf104c05378b106
Author: Slown sl...@frugalware.org
Date:   Tue Aug 28 19:18:42 2012 +0100

ruby-excon-0.16.2-1-i686

* version bump

diff --git a/source/network-extra/ruby-excon/FrugalBuild 
b/source/network-extra/ruby-excon/FrugalBuild
index 61f710c..8d7d522 100644
--- a/source/network-extra/ruby-excon/FrugalBuild
+++ b/source/network-extra/ruby-excon/FrugalBuild
@@ -1,9 +1,9 @@
-# Compiling Time: 0.03 SBU
+# Compiling Time: 0.02 SBU
# Maintainer: Slown sl...@frugalware.org

pkgname=ruby-excon
-pkgver=0.16.1
-pkgrel=2
+pkgver=0.16.2
+pkgrel=1
pkgdesc=EXtended http(s) CONnections
url=https://github.com/geemus/excon;
depends=()
@@ -11,4 +11,4 @@ groups=('network-extra')
archs=('i686' 'x86_64')
_F_gem_name=${pkgname/ruby-/}
Finclude gem
-sha1sums=('7436bba490a6c0eeb55fb4f21f0eb635d0c29e52')
+sha1sums=('f11638fcc0187e4afbc7549406a69992759cd1d7')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: python-webassets-0.7.1-1-i686

2012-08-28 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f9b4cba50b7ada7d64906405fc9f6fccd7560b6e

commit f9b4cba50b7ada7d64906405fc9f6fccd7560b6e
Author: Slown sl...@frugalware.org
Date:   Tue Aug 28 19:23:10 2012 +0100

python-webassets-0.7.1-1-i686

* new package

diff --git a/source/devel-extra/python-webassets/FrugalBuild 
b/source/devel-extra/python-webassets/FrugalBuild
new file mode 100644
index 000..ad801c3
--- /dev/null
+++ b/source/devel-extra/python-webassets/FrugalBuild
@@ -0,0 +1,15 @@
+# Compiling Time: 0 SBU
+# Maintainer: Slown sl...@frugalware.org
+
+pkgname=python-webassets
+_F_archive_name=${pkgname/python-/}
+pkgver=0.7.1
+pkgrel=1
+pkgdesc=A media asset (CSS, JavaScript) management application and library
+depends=('python')
+makedepends=('python-distribute')
+groups=('devel-extra')
+archs=('i686' 'x86_64')
+_F_pypi_name=${pkgname/python-/}
+Finclude pypi
+sha1sums=('2ef0cdc597ca297c004ca2320f4ec1a0bbd08142')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: lksctp-tools-1.0.11-1-x86_64

2012-08-28 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bad0d4643ee0876cd64342fad3a1f03287b20c0f

commit bad0d4643ee0876cd64342fad3a1f03287b20c0f
Author: kikadf kikadf...@gmail.com
Date:   Tue Aug 28 21:03:47 2012 +0200

lksctp-tools-1.0.11-1-x86_64

* New package

diff --git a/source/network-extra/lksctp-tools/FrugalBuild 
b/source/network-extra/lksctp-tools/FrugalBuild
new file mode 100644
index 000..04a4f1e2
--- /dev/null
+++ b/source/network-extra/lksctp-tools/FrugalBuild
@@ -0,0 +1,16 @@
+# Compiling Time: 0.14 SBU
+# Maintainer: kikadf kikadf...@gmail.com
+
+pkgname=lksctp-tools
+pkgver=1.0.11
+pkgrel=1
+pkgdesc=Stream Control Transmission Protocol (SCTP) is a reliable, 
message-oriented, multihomed transport protocol.
+depends=('glibc')
+_F_sourceforge_dirname=lksctp
+Finclude sourceforge
+groups=('network-extra')
+archs=('i686' 'x86_64')
+sha1sums=('ce62f6ec12205092a93d25118f33617d6fe82bf5')
+
+
+# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: replace text formatting blocks with functions so they can be updated elsewhere

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=172e81da792dda29c95bf5d4f24328a13c1a6f12

commit 172e81da792dda29c95bf5d4f24328a13c1a6f12
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 14:29:48 2012 -0500

replace text formatting blocks with functions so they can be updated elsewhere

diff --git a/PartitionModule.cc b/PartitionModule.cc
index 6bce8b9..1455ba4 100644
--- a/PartitionModule.cc
+++ b/PartitionModule.cc
@@ -24,6 +24,20 @@ public:

};

+static string formatDeviceText(Device *device)
+{
+  stringstream buf;
+
+  buf  device-getPath();
+  buf  : ;
+  buf  device-getLabelType();
+  buf   label (;
+  buf  device-getSizeString();
+  buf  );
+
+  return buf.str();
+}
+
// FIXME: this function makes assumptions about text alignment padding.
static string formatPartitionText(Device *device,Partition *part)
{
@@ -46,6 +60,17 @@ static string formatPartitionText(Device *device,Partition 
*part)
return buf.str();
}

+static string formatSpaceText(Device *device)
+{
+  stringstream buf;
+
+  bufFree space (;
+  buf  device-getUnusedSizeString();
+  buf  );
+
+  return buf.str();
+}
+
bool Item::getItems(vector Device * devices,vector Item * 
items,newtComponent listbox)
{
devices = Device::probeAll();
@@ -61,8 +86,8 @@ bool Item::getItems(vector Device * devices,vector Item 
* items,newtCompon
{
Item *item = new Item();

-  item-text = device-getPath() + :  + device-getLabelType() +  label 
( + device-getSizeString() + );
-
+  item-text = formatDeviceText(device);
+
item-device = device;

items.push_back(item);
@@ -86,7 +111,7 @@ bool Item::getItems(vector Device * devices,vector Item 
* items,newtCompon
{
item = new Item();

-  item-text =   Free Space ( + device-getUnusedSizeString() + );
+  item-text = formatSpaceText(device);

item-space = true;
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: have same return for failure as no remaining free space

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=bfa88a42b4781b9c26d22bffe6b9e969167bb46d

commit bfa88a42b4781b9c26d22bffe6b9e969167bb46d
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 15:06:48 2012 -0500

have same return for failure as no remaining free space

diff --git a/Device.hh b/Device.hh
index f252a36..e509537 100644
--- a/Device.hh
+++ b/Device.hh
@@ -28,7 +28,7 @@ public:
Partition *lastpart = 0;

if(_table == 0)
-  return 0BiB;
+  return 0.0BiB;

usable_sectors = getUsableSectors();
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add newt header. libnewt has some nested enums which are inaccessible unless redeclared.

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=8bb331a689ca34baac8b09df88d64bf0cc3f563f

commit 8bb331a689ca34baac8b09df88d64bf0cc3f563f
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 15:07:20 2012 -0500

add newt header. libnewt has some nested enums which are inaccessible
unless redeclared.

diff --git a/Newt.h b/Newt.h
new file mode 100644
index 000..bc3efdd
--- /dev/null
+++ b/Newt.h
@@ -0,0 +1,17 @@
+#pragma once
+
+#ifdef NEWT
+extern C
+{
+#include newt.h
+
+enum
+{
+  NEWT_EXIT_HOTKEY,
+  NEWT_EXIT_COMPONENT,
+  NEWT_EXIT_FDREADY,
+  NEWT_EXIT_TIMER,
+  NEWT_EXIT_ERROR
+};
+}
+#endif
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add generic UserInterface function for displaying text with only an OK button.

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=769685b9d25c246ae7f61affeda6c2c3df528f1c

commit 769685b9d25c246ae7f61affeda6c2c3df528f1c
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 15:57:13 2012 -0500

add generic UserInterface function for displaying text with only an OK button.

diff --git a/UserInterface.cc b/UserInterface.cc
index 5e87e7b..156fe61 100644
--- a/UserInterface.cc
+++ b/UserInterface.cc
@@ -2,7 +2,7 @@

#ifdef NEWT
#include string.h
-#include newt.h
+#include Newt.h
#endif

UserInterface::UserInterface()
@@ -54,6 +54,57 @@ bool UserInterface::initialize(int argc,char **argv)
return true;
}

+void UserInterface::textDialog(const string title,const string text)
+{
+  const string button_text = OK;
+
+#ifdef NEWT
+  int textbox_width = 0;
+  int textbox_height = 0;
+  int button_width = 0;
+  int button_height = 0;
+  newtComponent textbox = 0;
+  newtComponent button = 0;
+  newtComponent form = 0;
+  struct newtExitStruct es;
+
+  memset(es,0,sizeof(struct newtExitStruct));
+
+  if(!getTextSize(text,textbox_width,textbox_height))
+return;
+
+  if(!getButtonSize(button_text,button_width,button_height))
+return;
+
+  if(newtOpenWindow(_x,_y,_w_width,_w_height,title.c_str()) != 0)
+return;
+
+  textbox = newtTextbox(0,0,textbox_width,textbox_height,0);
+
+  newtTextboxSetText(textbox,text.c_str());
+
+  button = 
newtButton(_w_width-button_width,_w_height-button_height,button_text.c_str());
+
+  form = newtForm(0,0,NEWT_FLAG_NOF12);
+
+  newtFormAddComponents(form,textbox,button,(void *) 0);
+
+  while(true)
+  {
+newtFormRun(form,es);
+
+if(es.reason == NEWT_EXIT_COMPONENT  es.u.co == button)
+  break;
+
+memset(es,0,sizeof(struct newtExitStruct));
+  }
+
+  newtFormDestroy(form);
+
+  newtPopWindow();
+#endif
+}
+
#ifdef NEWT
bool UserInterface::getTextSize(const string text,int width,int height)
{
diff --git a/UserInterface.hh b/UserInterface.hh
index 2ee2982..7c2795c 100644
--- a/UserInterface.hh
+++ b/UserInterface.hh
@@ -17,6 +17,7 @@ public:
int getWindowHeight() { return _w_height; }
int getWindowXOffset() { return _x; }
int getWindowYOffset() { return _y; }
+  void textDialog(const string title,const string text);
#ifdef NEWT
bool getTextSize(const string text,int width,int height);
bool getButtonSize(const string text,int width,int height);
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add some logging to Main

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=d9f674da71c8abb11b09137435ab735526750adf

commit d9f674da71c8abb11b09137435ab735526750adf
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 17:47:57 2012 -0500

add some logging to Main

diff --git a/Main.cc b/Main.cc
index 3ed9860..8ac01f0 100644
--- a/Main.cc
+++ b/Main.cc
@@ -1,10 +1,14 @@
#include stdlib.h
#include unistd.h
#include locale.h
+#include string.h
+#include errno.h
#include UserInterface.hh
#include Utility.hh
#include PartitionModule.hh

+using std::endl;
+
static Module edge_guard_module;

static Module modules[] =
@@ -19,24 +23,44 @@ int main(int argc,char **argv)
Module *module = modules[1];

if(geteuid() != 0)
+  {
+logfile  argv[0]   must be run as root.  endl;
return EXIT_FAILURE;
+  }

if(setlocale(LC_ALL,) == 0)
+  {
+logfile  setlocale:   strerror(errno)  endl;
return EXIT_FAILURE;
+  }

if(!ui.initialize(argc,argv))
+  {
+logfile  User Interface failed to initialize.  endl;
return EXIT_FAILURE;
+  }

while(module-getName() != )
{
+logfile  Starting module '  module-getName()  '.  endl;
+
int i = module-run();

if(i  0)
+{
+  logfile  Going back a module.  endl;
--module;
+}
else if(i  0)
+{
+  logfile  Going forward a module.  endl;
++module;
+}
else if(i == 0)
+{
+  logfile  Module '  module-getName()  ' reported an error.  
endl;
break;
+}
}

return EXIT_SUCCESS;
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add a header for new source design

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=f1eae7902382f237b73c395f69fd980f529c56b3

commit f1eae7902382f237b73c395f69fd980f529c56b3
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 23:24:14 2012 -0500

add a header for new source design

diff --git a/src/local.h b/src/local.h
new file mode 100644
index 000..2ee1f62
--- /dev/null
+++ b/src/local.h
@@ -0,0 +1,7 @@
+#pragma once
+
+#include stdbool.h
+#include stdlib.h
+#include string.h
+
+extern int ui_main(int argc,char **argv);
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add main source file

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=3dddc7773ffc4bfd9f870678dd933b5cfcaaff26

commit 3dddc7773ffc4bfd9f870678dd933b5cfcaaff26
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 23:27:54 2012 -0500

add main source file

diff --git a/src/main.c b/src/main.c
new file mode 100644
index 000..c59cdf2
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,6 @@
+#include local.h
+
+extern int main(int argc,char **argv)
+{
+  return 0;
+}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add initial draft of new UI modulation

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=edc62d6cb47c18ee4bb1653b1550ce321c31b183

commit edc62d6cb47c18ee4bb1653b1550ce321c31b183
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 23:50:13 2012 -0500

add initial draft of new UI modulation

diff --git a/src/ui_newt.c b/src/ui_newt.c
new file mode 100644
index 000..5384c78
--- /dev/null
+++ b/src/ui_newt.c
@@ -0,0 +1,29 @@
+#include newt.h
+#include local.h
+
+extern int ui_main(int argc,char **argv)
+{
+  int w = 0;
+  int h = 0;
+
+  if(newtInit() != 0)
+  {
+printf(_(Could not initialize the NEWT user interface.\n));
+return 1;
+  }
+
+  newtGetScreenSize(w,h);
+
+  if(w  80 || h  24)
+  {
+printf(_(We require a terminal of 80x24 or greater to use the NEWT user 
interface.\n));
+newtFinished();
+return 1;
+  }
+
+  newtCls();
+
+  newtFinished();
+
+  return 0;
+}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: hm forgot header

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=bb998b5344dcf9497e9e8a2f98cb50080b8827ae

commit bb998b5344dcf9497e9e8a2f98cb50080b8827ae
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 23:50:53 2012 -0500

hm forgot header

diff --git a/src/local.h b/src/local.h
index 2ee1f62..46475c1 100644
--- a/src/local.h
+++ b/src/local.h
@@ -2,6 +2,13 @@

#include stdbool.h
#include stdlib.h
+#include stdio.h
#include string.h
+#include unistd.h
+
+#define _(S) S
+#define NEWT_WIDTH  70
+#define NEWT_HEIGHT 21

extern int ui_main(int argc,char **argv);
+extern int main(int argc,char **argv);
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: call UI's main function

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=163df1ee03a1110fe3ba18ad325ff59d335b1a2d

commit 163df1ee03a1110fe3ba18ad325ff59d335b1a2d
Author: James Buren r...@frugalware.org
Date:   Tue Aug 28 23:57:04 2012 -0500

call UI's main function

diff --git a/src/main.c b/src/main.c
index c59cdf2..48533fd 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2,5 +2,5 @@

extern int main(int argc,char **argv)
{
-  return 0;
+  return ui_main(argc,argv);
}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add logfile variable

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=392875872b3c661c78b2d1fcb1b42da5d3d04b04

commit 392875872b3c661c78b2d1fcb1b42da5d3d04b04
Author: James Buren r...@frugalware.org
Date:   Wed Aug 29 00:05:20 2012 -0500

add logfile variable

diff --git a/src/local.h b/src/local.h
index 46475c1..a8564d5 100644
--- a/src/local.h
+++ b/src/local.h
@@ -11,4 +11,5 @@
#define NEWT_HEIGHT 21

extern int ui_main(int argc,char **argv);
+extern FILE *logfile;
extern int main(int argc,char **argv);
diff --git a/src/main.c b/src/main.c
index 48533fd..ace8d03 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,17 @@
#include local.h

+FILE *logfile = 0;
+
extern int main(int argc,char **argv)
{
+  logfile = fopen(fwsetup.log,w);
+
+  if(logfile == 0)
+  {
+perror(main);
+
+return 1;
+  }
+
return ui_main(argc,argv);
}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: redirect newt errors to logfile

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=cf0fe92b7a0d84fffb4234b7975b24b085a50e84

commit cf0fe92b7a0d84fffb4234b7975b24b085a50e84
Author: James Buren r...@frugalware.org
Date:   Wed Aug 29 00:06:07 2012 -0500

redirect newt errors to logfile

diff --git a/src/ui_newt.c b/src/ui_newt.c
index 5384c78..59cf8d2 100644
--- a/src/ui_newt.c
+++ b/src/ui_newt.c
@@ -8,7 +8,7 @@ extern int ui_main(int argc,char **argv)

if(newtInit() != 0)
{
-printf(_(Could not initialize the NEWT user interface.\n));
+fprintf(logfile,_(Could not initialize the NEWT user interface.\n));
return 1;
}

@@ -16,7 +16,7 @@ extern int ui_main(int argc,char **argv)

if(w  80 || h  24)
{
-printf(_(We require a terminal of 80x24 or greater to use the NEWT user 
interface.\n));
+fprintf(logfile,_(We require a terminal of 80x24 or greater to use the 
NEWT user interface.\n));
newtFinished();
return 1;
}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add function for recursing through like mkdir -p

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=4c45029937e0b0aac205675b697e85cd3731157d

commit 4c45029937e0b0aac205675b697e85cd3731157d
Author: James Buren r...@frugalware.org
Date:   Wed Aug 29 00:29:48 2012 -0500

add function for recursing through like mkdir -p

diff --git a/src/local.h b/src/local.h
index a8564d5..23174fb 100644
--- a/src/local.h
+++ b/src/local.h
@@ -5,11 +5,15 @@
#include stdio.h
#include string.h
#include unistd.h
+#include sys/stat.h
+#include errno.h
+#include limits.h

#define _(S) S
#define NEWT_WIDTH  70
#define NEWT_HEIGHT 21

+extern bool mkdir_recurse(const char *path);
extern int ui_main(int argc,char **argv);
extern FILE *logfile;
extern int main(int argc,char **argv);
diff --git a/src/utility.c b/src/utility.c
new file mode 100644
index 000..20a7dd8
--- /dev/null
+++ b/src/utility.c
@@ -0,0 +1,39 @@
+#include local.h
+
+extern bool mkdir_recurse(const char *path)
+{
+  char buf[PATH_MAX] = {0};
+  char *s = buf;
+
+  if(path == 0)
+  {
+errno = EINVAL;
+fprintf(logfile,%s: %s\n,__func__,strerror(errno));
+return false;
+  }
+
+  snprintf(buf,PATH_MAX,%s,path);
+
+  while((s = strchr(s,'/')) != 0)
+  {
+*s = 0;
+
+if(mkdir(buf,0755) == -1  errno != EEXIST)
+{
+  fprintf(logfile,%s: %s\n,__func__,strerror(errno));
+  return false;
+}
+
+*s = '/';
+
+++s;
+  }
+
+  if(mkdir(buf,0755) == -1  errno != EEXIST)
+  {
+fprintf(logfile,%s: %s\n,__func__,strerror(errno));
+return false;
+  }
+
+  return true;
+}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] fwsetup-ng: add initial draft of shared source for pacman package install module

2012-08-28 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwsetup-ng.git;a=commitdiff;h=f0bab294c4413e5627bacea2ef5fe0f5300ebb1e

commit f0bab294c4413e5627bacea2ef5fe0f5300ebb1e
Author: James Buren r...@frugalware.org
Date:   Wed Aug 29 00:43:25 2012 -0500

add initial draft of shared source for pacman package install module

diff --git a/src/install.c b/src/install.c
new file mode 100644
index 000..24383c0
--- /dev/null
+++ b/src/install.c
@@ -0,0 +1,25 @@
+#include pacman.h
+#include local.h
+
+static bool install_setup(void)
+{
+  if(!mkdir_recurse(INSTALL_ROOT /var/cache/pacman-g2/pkg))
+return false;
+
+  if(!mkdir_recurse(INSTALL_ROOT /var/cache/pacman-g2/src))
+return false;
+
+  if(!mkdir_recurse(INSTALL_ROOT /var/lib/pacman-g2/local))
+return false;
+
+  if(!mkdir_recurse(INSTALL_ROOT /var/log))
+return false;
+
+  if(pacman_initialize(INSTALL_ROOT) == -1)
+  {
+fprintf(logfile,%s: %s\n,__func__,pacman_strerror(pm_errno));
+return false;
+  }
+
+  return true;
+}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git