[Frugalware-git] cfpm: Pacman.pp * remove

2009-08-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=cfpm.git;a=commitdiff;h=824c73fdfd25c6259c4e3056a3c793ce7295370a

commit 824c73fdfd25c6259c4e3056a3c793ce7295370a
Author: James Buren r...@frugalware.org
Date:   Mon Aug 3 06:34:19 2009 -0500

Pacman.pp
* remove

diff --git a/Pacman.pp b/Pacman.pp
deleted file mode 100644
index 3ff7472..000
--- a/Pacman.pp
+++ /dev/null
@@ -1,345 +0,0 @@
-Unit Pacman;
-
-Interface
-
-Uses CTypes;
-
-{$PACKRECORDS C}
-
-(* Const values *)
-Const
-LibPacman  = 'pacman';
-PM_ROOT= '/';
-PM_DBPATH  = 'var/lib/pacman-g2';
-PM_CACHEDIR= 'var/cache/pacman-g2/pkg';
-PM_LOCK= '/tmp/pacman-g2.lck';
-PM_HOOKSDIR= 'etc/pacman-g2/hooks';
-PM_EXT_PKG = '.fpm';
-PM_EXT_DB  = '.fdb';
-PM_LOG_DEBUG   = $01;
-PM_LOG_ERROR   = $02;
-PM_LOG_WARNING = $04;
-PM_LOG_FLOW1   = $08;
-PM_LOG_FLOW2   = $10;
-PM_LOG_FUNCTION= $20;
-PM_DLFNM_LEN   = 1024;
-PM_TRANS_FLAG_NODEPS   = $0001;
-PM_TRANS_FLAG_FORCE= $0002;
-PM_TRANS_FLAG_NOSAVE   = $0004;
-PM_TRANS_FLAG_FRESHEN  = $0008;
-PM_TRANS_FLAG_CASCADE  = $0010;
-PM_TRANS_FLAG_RECURSE  = $0020;
-PM_TRANS_FLAG_DBONLY   = $0040;
-PM_TRANS_FLAG_DEPENDSONLY  = $0080;
-PM_TRANS_FLAG_ALLDEPS  = $0100;
-PM_TRANS_FLAG_DOWNLOADONLY = $0200;
-PM_TRANS_FLAG_NOSCRIPTLET  = $0400;
-PM_TRANS_FLAG_NOCONFLICTS  = $0800;
-PM_TRANS_FLAG_PRINTURIS= $1000;
-PM_TRANS_FLAG_NOINTEGRITY  = $2000;
-PM_TRANS_FLAG_NOARCH   = $4000;
-PM_PKG_REASON_EXPLICIT = 0;
-PM_PKG_REASON_DEPEND   = 1;
-PM_PKG_WITHOUT_ARCH= 0;
-PM_PKG_WITH_ARCH   = 1;
-PM_OPT_LOGCB   = 1;
-PM_OPT_LOGMASK = 2;
-PM_OPT_USESYSLOG   = 3;
-PM_OPT_ROOT= 4;
-PM_OPT_DBPATH  = 5;
-PM_OPT_CACHEDIR= 6;
-PM_OPT_LOGFILE = 7;
-PM_OPT_LOCALDB = 8;
-PM_OPT_SYNCDB  = 9;
-PM_OPT_NOUPGRADE   = 10;
-PM_OPT_NOEXTRACT   = 11;
-PM_OPT_IGNOREPKG   = 12;
-PM_OPT_UPGRADEDELAY= 13;
-PM_OPT_PROXYHOST   = 14;
-PM_OPT_PROXYPORT   = 15;
-PM_OPT_XFERCOMMAND = 16;
-PM_OPT_NOPASSIVEFTP= 17;
-PM_OPT_DLCB= 18;
-PM_OPT_DLFNM   = 19;
-PM_OPT_DLOFFSET= 20;
-PM_OPT_DLT0= 21;
-PM_OPT_DLT = 22;
-PM_OPT_DLRATE  = 23;
-PM_OPT_DLXFERED1   = 24;
-PM_OPT_DLETA_H = 25;
-PM_OPT_DLETA_M = 26;
-PM_OPT_DLETA_S = 27;
-PM_OPT_HOLDPKG = 28;
-PM_OPT_CHOMP   = 29;
-PM_OPT_NEEDLES = 30;
-PM_OPT_MAXTRIES= 31;
-PM_OPT_OLDDELAY= 32;
-PM_OPT_DLREMAIN= 33;
-PM_OPT_DLHOWMANY   = 34;
-PM_OPT_HOOKSDIR= 35;
-PM_DB_TREENAME = 1;
-PM_DB_FIRSTSERVER  = 2;
-PM_PKG_NAME= 1;
-PM_PKG_VERSION = 2;
-PM_PKG_DESC= 3;
-PM_PKG_GROUPS  = 4;
-PM_PKG_URL = 5;
-PM_PKG_LICENSE = 6;
-PM_PKG_ARCH= 7;
-PM_PKG_BUILDDATE   = 8;
-PM_PKG_BUILDTYPE   = 9;
-PM_PKG_INSTALLDATE = 10;
-PM_PKG_PACKAGER= 11;
-PM_PKG_SIZE= 12;
-PM_PKG_USIZE   = 13;
-PM_PKG_REASON  = 14;
-PM_PKG_MD5SUM  = 15;
-PM_PKG_SHA1SUM = 16;
-PM_PKG_DEPENDS 

[Frugalware-git] cfpm: Test.pas * remove

2009-08-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=cfpm.git;a=commitdiff;h=23ad9607950caaaf2abeae7b7549575aa0d8508f

commit 23ad9607950caaaf2abeae7b7549575aa0d8508f
Author: James Buren r...@frugalware.org
Date:   Mon Aug 3 06:34:33 2009 -0500

Test.pas
* remove

diff --git a/Test.pas b/Test.pas
deleted file mode 100644
index a3e637c..000
--- a/Test.pas
+++ /dev/null
@@ -1,39 +0,0 @@
-Program Test;
-
-Uses Pacman;
-
-Var
-Ret : Integer;
-Db  : PPM_DB;
-Pkg : PPM_PKG;
-PkgName : AnsiString;
-
-Begin
-WriteLn('Initializing pacman, phase 1.');
-Ret := pacman_initialize(PM_ROOT);
-if Ret = 0 then
-WriteLn('Success.');
-WriteLn('Initializing pacman, phase 2.');
-Ret := pacman_initialize(PM_ROOT);
-if Ret = -1 then
-WriteLn('Failure.');
-WriteLn('Registering local database.');
-Db := pacman_db_register('local');
-If Db  Nil Then
-Begin
-WriteLn('Specify a package.');
-Read(PkgName);
-Pkg := pacman_db_readpkg(Db,PChar(PkgName));
-If Pkg  Nil Then
-Begin
-WriteLn('Package Name: ',PChar(pacman_pkg_getinfo(Pkg,PM_PKG_NAME)));
-WriteLn('Package Version: 
',PChar(pacman_pkg_getinfo(Pkg,PM_PKG_VERSION)));
-End
-Else
-WriteLn('Package not found: ',PkgName);
-End
-Else
-WriteLn('Failure.');
-WriteLn('Releasing pacman.');
-pacman_release;
-End.
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] cfpm: Pacman.c * initial draft

2009-08-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=cfpm.git;a=commitdiff;h=c7bad320607f3a1a72baccd7480182e689298ecb

commit c7bad320607f3a1a72baccd7480182e689298ecb
Author: James Buren r...@frugalware.org
Date:   Mon Aug 3 06:35:05 2009 -0500

Pacman.c
* initial draft

diff --git a/Pacman.c b/Pacman.c
new file mode 100644
index 000..2d2f860
--- /dev/null
+++ b/Pacman.c
@@ -0,0 +1,12 @@
+#include pacman.h
+#include stdbool.h
+
+bool pm_init(void) {
+   return !pacman_initialize(PM_ROOT);
+}
+
+bool pm_free(void) {
+   return !pacman_release();
+}
+
+/* -%- indent-width:4; tab-width:4 -%- */
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] cfpm: Pacman.pp * initial draft

2009-08-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=cfpm.git;a=commitdiff;h=a0c0ee83acd81ecdc7b95e86e5e057bafc37bf43

commit a0c0ee83acd81ecdc7b95e86e5e057bafc37bf43
Author: James Buren r...@frugalware.org
Date:   Mon Aug 3 06:39:05 2009 -0500

Pacman.pp
* initial draft

diff --git a/Pacman.pp b/Pacman.pp
new file mode 100644
index 000..cd17410
--- /dev/null
+++ b/Pacman.pp
@@ -0,0 +1,10 @@
+Unit Pacman;
+
+Interface
+Function pm_init : Boolean; Cdecl; External;
+Function pm_free : Boolean; Cdecl; External;
+
+Implementation
+End.
+
+(* -%- lang:pascal -%- *)
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] cfpm: Pacman.c * rename to Pm.c

2009-08-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=cfpm.git;a=commitdiff;h=3f39ea6d1776fdf644813698414461c3f771cb91

commit 3f39ea6d1776fdf644813698414461c3f771cb91
Author: James Buren r...@frugalware.org
Date:   Mon Aug 3 06:49:35 2009 -0500

Pacman.c
* rename to Pm.c

diff --git a/Pacman.c b/Pm.c
similarity index 100%
rename from Pacman.c
rename to Pm.c
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] cfpm: Pacman.pp * add linking commands

2009-08-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=cfpm.git;a=commitdiff;h=f69f6cd3ffcc78c6710cb21f8a90cea752876773

commit f69f6cd3ffcc78c6710cb21f8a90cea752876773
Author: James Buren r...@frugalware.org
Date:   Mon Aug 3 06:51:02 2009 -0500

Pacman.pp
* add linking commands

diff --git a/Pacman.pp b/Pacman.pp
index cd17410..09b3864 100644
--- a/Pacman.pp
+++ b/Pacman.pp
@@ -1,5 +1,9 @@
Unit Pacman;

+{$PackRecords C}
+{$L Pm.o}
+{$LinkLib pacman}
+
Interface
Function pm_init : Boolean; Cdecl; External;
Function pm_free : Boolean; Cdecl; External;
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Newsletter issue 49

2009-08-03 Thread phayz
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=2098cd66369f1c0a2e2208e4b480b58d7de312e2

commit 2098cd66369f1c0a2e2208e4b480b58d7de312e2
Author: Russell Dickenson (phayz) russelldicken...@gmail.com
Date:   Tue Aug 4 08:58:18 2009 +1000

Newsletter issue 49

* release

new file:   images/interviews/exceed_front_door.jpg
new file:   images/newsletter/gufw_screenshot.png
new file:   weeklynews/issue49.html
modified:   xml/news.xml

diff --git a/frugalware/images/interviews/exceed_front_door.jpg 
b/frugalware/images/interviews/exceed_front_door.jpg
new file mode 100755
index 000..bb0a767
Binary files /dev/null and b/frugalware/images/interviews/exceed_front_door.jpg 
differ
diff --git a/frugalware/images/newsletter/gufw_screenshot.png 
b/frugalware/images/newsletter/gufw_screenshot.png
new file mode 100644
index 000..2bf274a
Binary files /dev/null and b/frugalware/images/newsletter/gufw_screenshot.png 
differ
diff --git a/frugalware/weeklynews/issue49.html 
b/frugalware/weeklynews/issue49.html
new file mode 100644
index 000..77ec360
--- /dev/null
+++ b/frugalware/weeklynews/issue49.html
@@ -0,0 +1,449 @@
+  h2Frugalware Linux Newsletter - Issue 49/h2
+
+  h2...to inform...to educate...to entertain/h2
+
+  blockquote
+pThere are three sides of an argument -- your side, my side
+and the right side../p
+  /blockquote
+
+  h2Welcome/h2
+
+  pThe newsletter's aim is to keep you up to date with what's
+  happened recently in the world of the Linux distribution
+  'Frugalware'./p
+
+  pFeatures of this issue include:/p
+
+  ul
+liElentir released fwife 0.5/li
+
+liFrugalware 1.1 release party plans continue/li
+
+liFrugalware's developers are people too - Exceed/li
+
+liFocus On Package(s) - ufw and gufw/li
+  /ul
+
+
+  h2Events/h2
+
+  ul
+li
+  h3Kernel vulnerability/h3
+
+  pThere is a local root exploit for the kernel currently
+  in the 'current' repository - refer a href=
+  http://lists.immunitysec.com/pipermail/dailydave/2009-July/005810.html;
+  here/a for details. The vulnerability, if exploited, could
+  allow a local user to get root privileges. No FSA has been
+  released because:/p
+
+  ol
+li2.6.30 is in -current, not in -stable;/li
+
+lipulseaudio must installed to be vulnerable, but we
+don't have pulseaudio in our official repos./li
+  /ol
+
+  pFor those that are interested, the ID of the vulnerability
+  is CVE-2009-1897 and the fix is a href=
+  
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3c8a9c63d5fd738c261bd0ceece04d9c8357ca13;
+  here/a. If you're running a vulnerable kernel on systems
+  other than Frugalware, you may want to fix this
+  vulnerability. We'll will be waiting until upstream includes
+  the fix in the next 2.6.30.x release./p
+/li
+
+li
+  h3Elentir released fwife 0.5/h3
+
+  pOn 29 July 2009, Elentir released fwife 0.5, which
+  features the following changes:/p
+
+  ul
+liDHCP research on networks;/li
+
+liimproved network configuration plugin;/li
+
+lifixed unexpected reverse dependencies due to locale
+packages;/li
+
+liminor bug fixes (ext4 formatting, ...)./li
+  /ul
+
+  pIf you have the spare time and bandwidth available,
+  strongplease/strong help by downloading a testing fwife.
+  Elentir needs help in finding any bugs which remain. If can
+  help, please go to the fwife development web page a href=
+  http://utopia.toile-libre.org/fwife/cdinstall/;here/a./p
+
+  pIf Elentir is married I hope that his wife understands
+  that he sometimes needs to spend time with his other wife.
+  Note: I realise that this joke only makes sense in English,
+  and I hope you forgive me./p
+/li
+
+li
+  h3rhyhann's patched packages/h3
+
+  pFrugalware user rhyhann recently submitted patches for 13
+  packages. As with all new developers, these patches are being
+  reviewed, but will probably be committed soon. It's always
+  exciting to see new contributions, and rhyhann's are very
+  welcome. Perhaps soon he/she might become an official
+  developer./p
+/li
+
+li
+  h3Frugalware 1.1 release party plans continue/h3
+
+  pIn newsletter issue 44 I announced that plans were
+  underway for the 1.1 release party. Food is always an
+  important part of any successful party, so we're putting a
+  lot of time and effort into the menu. We thought it was
+  important that an international project's release party had
+  an international menu, so a vote was held and the most
+  popular food and drinks were chosen. 1.1's release is
+  scheduled for 1 September 2009 and the menu may change
+  between now and then, but for the moment, here it is:/p
+
+  pstrongEntreé/strong/p
+
+  ul
+lia 

[Frugalware-git] homepage-ng: Newsletter issue 49

2009-08-03 Thread phayz
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=823d3e49cd52e201675bf1e961bcd8170e120b95

commit 823d3e49cd52e201675bf1e961bcd8170e120b95
Author: Russell Dickenson (phayz) russelldicken...@gmail.com
Date:   Tue Aug 4 09:05:22 2009 +1000

Newsletter issue 49

* Corrections to spelling and link

modified:   issue49.html

diff --git a/frugalware/weeklynews/issue49.html 
b/frugalware/weeklynews/issue49.html
index 77ec360..456f456 100644
--- a/frugalware/weeklynews/issue49.html
+++ b/frugalware/weeklynews/issue49.html
@@ -108,7 +108,7 @@
scheduled for 1 September 2009 and the menu may change
between now and then, but for the moment, here it is:/p

-  pstrongEntreé/strong/p
+  pstrongEntrée/strong/p

ul
lia href=http://en.wikipedia.org/wiki/Frog_legs;Frogs'
@@ -244,10 +244,8 @@

dtstrongWhat's the view from your front door?/strong/dt

-dda href=
-http://frugalware.org/images/interviews/exceed_house.jpg;
-img src=http://frugalware.org/images/interviews/exceed_house_t.jpg;
-alt=View from Exceed's house/a/dd
+ddimg 
src=http://frugalware.org/images/interviews/exceed_front_door.jpg;
+alt=View from Exceed's house/dd
/dl

h2Getting To Know You/h2
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] pacman-g2: makepkg: bash4 fix

2009-08-03 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=385c51dec0b356607444e89c608654318f30683b

commit 385c51dec0b356607444e89c608654318f30683b
Author: Miklos Vajna vmik...@frugalware.org
Date:   Mon Aug 3 15:59:17 2009 +0200

makepkg: bash4 fix

diff --git a/scripts/makepkg b/scripts/makepkg
index 0007d96..d601383 100755
--- a/scripts/makepkg
+++ b/scripts/makepkg
@@ -884,7 +884,7 @@ if [ ! -f $BUILDSCRIPT ]; then
exit 1
fi

-source $BUILDSCRIPT
+source ./$BUILDSCRIPT

# check for no-no's
if [ -z $pkgver ]; then
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: news_fr.xml

2009-08-03 Thread Michel Hermier
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=0d22868562d4c6c1da84685484041689f191

commit 0d22868562d4c6c1da84685484041689f191
Author: Michel Hermier herm...@frugalware.org
Date:   Mon Aug 3 20:48:00 2009 +0200

news_fr.xml

* Add lastest news letter entry.

diff --git a/frugalware/xml/news_fr.xml b/frugalware/xml/news_fr.xml
index 8e6e7d0..62d3d37 100644
--- a/frugalware/xml/news_fr.xml
+++ b/frugalware/xml/news_fr.xml
@@ -22,6 +22,25 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --

news
post
+   id141/id
+   titleLettre d'information Frugalware numéro 49/title
+   dateTue, 04 Aug 2009 08:54:38 +1000/date
+   authorphayz/author
+   hidden0/hidden
+   content![CDATA[
+   Cette lettre d'information a pour but de vous tenir 
informé avec ce qu'il s'est passé récemment dans le monde Frugalware.br /
+   Dans ce numéro:
+   ul
+   liElentir a mis à jour fwife 0.5/li
+   liLes plans de la fête pour Frugalware 1.1 
continuent/li
+   liLes développeurs de Frugalware sont des 
personnes également - Exceed/li
+   liDétails sur un(des) paquet(s) - ufw et 
gufw/li
+   /ul
+   Vous pouvez la lire a href=/newsletter/49ici 
(anglais)/a. Nous espérons que vous l'apprécierez!
+   ]]
+   /content
+   /post
+   post
id140/id
titleLettre d'information Frugalware numéro 48/title
dateSun, 19 Jul 2009 22:42:38 +1000/date
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: 1.1rc1 draft

2009-08-03 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=e48e4d8feba3d0e9e6b18b14d502786e017b8d56

commit e48e4d8feba3d0e9e6b18b14d502786e017b8d56
Author: Miklos Vajna vmik...@frugalware.org
Date:   Tue Aug 4 02:13:01 2009 +0200

1.1rc1 draft

diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml
index e84ffdc..52d1957 100644
--- a/frugalware/xml/news.xml
+++ b/frugalware/xml/news.xml
@@ -22,6 +22,37 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --

news
post
+id142/id
+titleFrugalware 1.1rc1 (Getorin) released/title
+dateTue, 04 Aug 2009 01:57:08 +0200/date
+authorMiklos Vajna/author
+hidden1/hidden
+content![CDATA[
+The Frugalware Developer Team is pleased to a 
href=/news/142announce/a the immediate availability of Frugalware 1.1rc1, 
the first release of the upcoming 1.1 stable release.br /
+A short and incomplete list of changes since 1.1pre2:br /
+ul
+liImprovements:
+   ul
+   
liEtoile is now part of the reposithory, see a 
href=http://article.gmane.org/gmane.linux.frugalware.devel/6239;this post/a 
for more details./li
+   
liMajor update on the graphical installer (fwife), see the changelog a 
href=http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=0.4;here/a
 and a 
href=http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=0.5;there/a./li
+   /ul
+/li
+liPackage updates:
+ul
+liLinux kernel 2.6.30.3/li
+liGnuTLS 2.8/li
+liMore than 400 package updates/li
+liMore than 100 new packages/li
+/ul
+/li
+/ul
+   Please refer to the Frugalware 
a 
href=http://ftp.frugalware.org/pub/frugalware/frugalware-testing/ChangeLog.txt;Getorin
 ChangeLog/a for more information.br /
+   Download for i686: See our a 
href=http://frugalware.org/download/frugalware-testing-iso;mirror list/a. 
Don't forget to check the a 
href=http://frugalware.org/download/frugalware-testing-iso/SHA1SUMS;integrity/a
 of the install images before burning!br /
+bNOTE/b: Click a 
href=/docs/install#_choosing_installation_flavorhere/a to read more about 
what media you need for the installation.br /
+]]
+/content
+/post
+post
id141/id
titleFrugalware Newsletter Issue 49/title
dateTue, 04 Aug 2009 08:54:38 +1000/date
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: remove the hidden flag

2009-08-03 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=310da372f9d401fea6b7bbb8ed3b1358164e1005

commit 310da372f9d401fea6b7bbb8ed3b1358164e1005
Author: Miklos Vajna vmik...@frugalware.org
Date:   Tue Aug 4 02:15:56 2009 +0200

remove the hidden flag

diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml
index 52d1957..8f5c0a6 100644
--- a/frugalware/xml/news.xml
+++ b/frugalware/xml/news.xml
@@ -26,14 +26,14 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --
titleFrugalware 1.1rc1 (Getorin) released/title
dateTue, 04 Aug 2009 01:57:08 +0200/date
authorMiklos Vajna/author
-hidden1/hidden
+hidden0/hidden
content![CDATA[
The Frugalware Developer Team is pleased to a href=/news/142announce/a 
the immediate availability of Frugalware 1.1rc1, the first release of the 
upcoming 1.1 stable release.br /
A short and incomplete list of changes since 1.1pre2:br /
ul
liImprovements:
ul
-   
liEtoile is now part of the reposithory, see a 
href=http://article.gmane.org/gmane.linux.frugalware.devel/6239;this post/a 
for more details./li
+   
liEtoile is now part of the repository, see a 
href=http://article.gmane.org/gmane.linux.frugalware.devel/6239;this post/a 
for more details./li
liMajor update on the graphical installer (fwife), see the changelog a 
href=http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=0.4;here/a
 and a 
href=http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=0.5;there/a./li
/ul
/li
diff --git a/frugalware/xml/roadmap.xml b/frugalware/xml/roadmap.xml
index aeb398f..63755ef 100644
--- a/frugalware/xml/roadmap.xml
+++ b/frugalware/xml/roadmap.xml
@@ -35,7 +35,7 @@
prerelease
preversionrc1/preversion
predateAug 4, 2009/predate
-   prestatus0/prestatus
+   prestatus1/prestatus
/prerelease
prerelease
preversionpre2/preversion
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: git-1.6.4-1-i686

2009-08-03 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5ee8914ceb2bcdbf3d9d8a62172dabfe898a4db2

commit 5ee8914ceb2bcdbf3d9d8a62172dabfe898a4db2
Author: Miklos Vajna vmik...@frugalware.org
Date:   Thu Jul 30 23:47:13 2009 +0200

git-1.6.4-1-i686

- version bump

diff --git a/source/devel-extra/git/FrugalBuild 
b/source/devel-extra/git/FrugalBuild
index bea89b8..08e26e1 100644
--- a/source/devel-extra/git/FrugalBuild
+++ b/source/devel-extra/git/FrugalBuild
@@ -8,12 +8,12 @@ USE_DEVEL=${USE_DEVEL:-n}
USE_HTMLMAN=${USE_HTMLMAN:-y}

pkgname=git
-pkgver=1.6.3.3
+pkgver=1.6.4
Fuse $USE_DEVEL  pkgver=1.6.1.87.g1562445
pkgrel=1
pkgdesc=A fast, scalable, distributed revision control system.
url=http://git-scm.com/;
-depends=('curl=7.19.0' 'openssl' 'perl-error')
+depends=('curl=7.19.0' 'gmp' 'perl-error')
backup=(etc/sysconfig/git)
makedepends=('asciidoc' 'docbook-xsl=1.73.0-2' 'docbook-xml' 
'docbook2x=0.8.3-3' 'sgml-common' 'xmlto' 'dblatex')
groups=('devel-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: flashplugin-10.0.32.18-1-i686

2009-08-03 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=33d4d2eb95bfe352edea2a2fb7ad0fdb10c040d6

commit 33d4d2eb95bfe352edea2a2fb7ad0fdb10c040d6
Author: Miklos Vajna vmik...@frugalware.org
Date:   Fri Jul 31 09:44:47 2009 +0200

flashplugin-10.0.32.18-1-i686

- version bump

diff --git a/source/xlib/flashplugin/FrugalBuild 
b/source/xlib/flashplugin/FrugalBuild
index 86ce2e9..dce3b70 100644
--- a/source/xlib/flashplugin/FrugalBuild
+++ b/source/xlib/flashplugin/FrugalBuild
@@ -2,8 +2,8 @@
# Maintainer: Miklos Vajna vmik...@frugalware.org

pkgname=flashplugin
-pkgver=10.0.22.87
-pkgrel=2
+pkgver=10.0.32.18
+pkgrel=1
pkgdesc=Macromedia flash plugin for Netscape/Mozilla (nonfree)
url=http://www.macromedia.com/;
rodepends=('libstdc++' 'libxext' 'libxt' 'gtk+2' 'nss' 'libxau' 'libxdmcp' 
'libice' 'libxml2' 'libxdamage' 'e2fsprogs')
@@ -17,9 +17,9 @@ else
source=(http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-$pkgver.linux-x86_64.so.tar.gz)
fi
if [ $CARCH = i686 ]; then
-   sha1sums=('3429818f585d156cb181f3c7e409547cc2906426')
+   sha1sums=('39b76f15753b2924ca3b5a342d4a7317517109fc')
else
-   sha1sums=('ff6d1d72d9b17b5411dc6fdd4ee6046a8f6676f8')
+   sha1sums=('222d35952ed7ecbbe37f8ad4c01d4c8046c4607e')
fi
options=('noversrc')

@@ -29,12 +29,6 @@ options=('noversrc')

build()
{
-
-   if [ $CARCH = i686 ]; then
-   Fcd install_flash_player_10_linux
-   Fexerel /usr/lib/mozilla/plugins/libflashplayer.so
-   else
-   Fcd .
-   Fexerel /usr/lib/mozilla/plugins/libflashplayer.so
-   fi
+   Fcd .
+   Fexerel /usr/lib/mozilla/plugins/libflashplayer.so
}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: docs: fix file modes again

2009-08-03 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8e94bba565ef6cc9ac3a29bf3724006e7ca87e65

commit 8e94bba565ef6cc9ac3a29bf3724006e7ca87e65
Author: Miklos Vajna vmik...@frugalware.org
Date:   Tue Aug 4 02:25:03 2009 +0200

docs: fix file modes again

diff --git a/docs/index-devel.txt b/docs/index-devel.txt
old mode 100755
new mode 100644
diff --git a/docs/network.txt b/docs/network.txt
old mode 100755
new mode 100644
diff --git a/docs/postinst.txt b/docs/postinst.txt
old mode 100755
new mode 100644
diff --git a/docs/sound.txt b/docs/sound.txt
old mode 100755
new mode 100644
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git