From brebs at lunar-linux.org Thu Oct 1 05:57:07 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Thu, 1 Oct 2009 10:57:07 +0700 Subject: [Lunar-commits] firefox: disable system sqlite Message-ID: <20091001040210.EAC679B224@doppio.foo-projects.org> commit abedbdf8f810416cfc06c953661806cae555c5f0 Author: Paul Bredbury Date: Thu Oct 1 10:57:07 2009 +0700 firefox: disable system sqlite Because it's unsupported, and makes firefox crash when doing something as simple as adding a bookmark. Also, validate_source_dir was in wrong position. --- web/firefox/DEPENDS | 8 ++++++-- web/firefox/DETAILS | 2 +- web/firefox/PRE_BUILD | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/web/firefox/DEPENDS b/web/firefox/DEPENDS index 5f7aef2..ee318dd 100644 --- a/web/firefox/DEPENDS +++ b/web/firefox/DEPENDS @@ -6,8 +6,12 @@ depends gtk+-2 depends nss depends curl -optional_depends "sqlite" "" "" \ - "Use system sqlite" +# Firefox crashes with sqlite 3.6.18 when adding new bookmarks: +# https://bugzilla.mozilla.org/show_bug.cgi?id=512940 +# Comment 9: "System SQLite isn't supported by Mozilla (in fact we discourage its use)" +# So, disable the option to use system sqlite - instead, use Mozilla's version +#optional_depends "sqlite" "" "" \ +# "Use system sqlite" optional_depends "flash-plugin-10" "" "" \ "To enable Flash plugin" diff --git a/web/firefox/DETAILS b/web/firefox/DETAILS index 1f0a99a..fa6d17d 100644 --- a/web/firefox/DETAILS +++ b/web/firefox/DETAILS @@ -7,7 +7,7 @@ SOURCE_VFY=sha1:83b2625eb74e81b473ac40ac52505e5fc9a497eb WEB_SITE=http://www.mozilla.org/projects/firefox ENTERED=20030810 - UPDATED=20090909 + UPDATED=20090930 MAINTAINER="tchan at lunar-linux.org" PSAFE=no SHORT="A speedy, full-featured web browser" diff --git a/web/firefox/PRE_BUILD b/web/firefox/PRE_BUILD index ed41125..cc901d0 100644 --- a/web/firefox/PRE_BUILD +++ b/web/firefox/PRE_BUILD @@ -1,5 +1,5 @@ -mk_source_dir && validate_source_dir && +mk_source_dir && cd $SOURCE_DIRECTORY && unpack $SOURCE From stumbles at lunar-linux.org Thu Oct 1 13:42:24 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 07:42:24 -0400 Subject: [Lunar-commits] libssh: Adding to moonbase. This module will be needed by KDE-4.4.0 when it is released (kdebase4-runtime). Message-ID: <20091001115458.AF1AE9B222@doppio.foo-projects.org> commit 6ce8488e4e8a3bee4776f902c9407f88c8ea144d Author: Dennis `stumbles` Veatch Date: Thu Oct 1 07:42:24 2009 -0400 libssh: Adding to moonbase. This module will be needed by KDE-4.4.0 when it is released (kdebase4-runtime). --- libs/libssh/BUILD | 13 +++++++++++++ libs/libssh/DEPENDS | 5 +++++ libs/libssh/DETAILS | 18 ++++++++++++++++++ 3 files changed, 36 insertions(+), 0 deletions(-) diff --git a/libs/libssh/BUILD b/libs/libssh/BUILD new file mode 100644 index 0000000..bab1db4 --- /dev/null +++ b/libs/libssh/BUILD @@ -0,0 +1,13 @@ +( + + OOTB_DIR="$SOURCE_DIRECTORY/$MODULE-build" + + mkdir $OOTB_DIR && + cd $OOTB_DIR && + + cmake $SOURCE_DIRECTORY/ -DCMAKE_INSTALL_PREFIX=$MODULE_PREFIX \ + -DCMAKE_BUILD_TYPE=RELEASE && + + default_make + +) > $C_FIFO 2>&1 diff --git a/libs/libssh/DEPENDS b/libs/libssh/DEPENDS new file mode 100644 index 0000000..a01755e --- /dev/null +++ b/libs/libssh/DEPENDS @@ -0,0 +1,5 @@ +depends cmake + +optional_depends libgcrypt "" "" "for cryptographic support" +optional_depends openssl "" "" "for cryptographics support" +optional_depends zlib "" "" "for data compression support" diff --git a/libs/libssh/DETAILS b/libs/libssh/DETAILS new file mode 100644 index 0000000..1073de7 --- /dev/null +++ b/libs/libssh/DETAILS @@ -0,0 +1,18 @@ + MODULE=libssh + VERSION=0.3.4 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL[0]=http://www.libssh.org/files/ + SOURCE_VFY=sha1:abded99e80706ae8d50f5f25e1a3eed3c909513d + WEB_SITE=http://www.libssh.org/ + ENTERED=20091001 + UPDATED=20091001 + SHORT="library for accessing ssh client services through C libraries calls" + +cat << EOF +The ssh library was designed to be used by programmers needing a working SSH +implementation by the mean of a library. The complete control of the client is +made by the programmer. With libssh, you can remotely execute programs, transfer +files, use a secure and transparent tunnel for your remote programs. With its +Secure FTP implementation, you can play with remote files easily, without +third-party programs others than libcrypto (from openssl). +EOF From stumbles at lunar-linux.org Thu Oct 1 13:56:23 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 07:56:23 -0400 Subject: [Lunar-commits] octave: Bumping this. However, now that we have moved to glibc-2.10.1 it segfaults upon launch. The trouble is, the prior version did the samething. At this point I have not found a work around, patch, etc. Message-ID: <20091001115854.0AA619B222@doppio.foo-projects.org> commit 5d3d3e7cf1e6335e8ab61826431eb007d7c20d08 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 07:56:23 2009 -0400 octave: Bumping this. However, now that we have moved to glibc-2.10.1 it segfaults upon launch. The trouble is, the prior version did the samething. At this point I have not found a work around, patch, etc. --- science/octave/BUILD | 7 ++++--- science/octave/DEPENDS | 10 +++++++--- science/octave/DETAILS | 6 +++--- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/science/octave/BUILD b/science/octave/BUILD index bcb7f2c..ed4adeb 100644 --- a/science/octave/BUILD +++ b/science/octave/BUILD @@ -1,13 +1,14 @@ ( - bad_flags -ffast-math && +# bad_flags -ffast-math && + mkdir -p /usr/share/octave/$VERSION/etc/doc-cache && + ./configure --sysconfdir=/etc \ --prefix=/usr \ --mandir=/usr/share/man \ --localstatedir=/var \ - --enable-shared \ + --enable-shared \ --with-g77 \ - --enable-dl \ --enable-rpath \ $OPTS && diff --git a/science/octave/DEPENDS b/science/octave/DEPENDS index 76f6e17..c6c1909 100644 --- a/science/octave/DEPENDS +++ b/science/octave/DEPENDS @@ -1,4 +1,8 @@ -depends fftw && -depends gnuplot && +depends gnuplot + +optional_depends "readline" "--enable-readline" "--disable-readline" "for readline support" +optional_depends "curl" "--with-curl" "--without-curl" "for curl support" +optional_depends "fftw" "--with-fftw" "--without-fftw" "for system fftw support" +optional_depends "zlib" "--with-zlib" "--without-zlib" "for zlib support" +optional_depends "gperf" "" "" "if you need to recreate oct-gperf.h" -optional_depends "gperf" "" "" "if you need to recreate oct-gperf.h" diff --git a/science/octave/DETAILS b/science/octave/DETAILS index 4ee18cd..b28844b 100644 --- a/science/octave/DETAILS +++ b/science/octave/DETAILS @@ -1,11 +1,11 @@ MODULE=octave - VERSION=3.2.2 + VERSION=3.2.3 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=ftp://ftp.octave.org/pub/octave - SOURCE_VFY=sha1:6508738789e05f00397aa3bfad51fa7d43d55b14 + SOURCE_VFY=sha1:7a188ffd55ac1efb2f480fa2aed94e66d3596f34 WEB_SITE=http://www.octave.org ENTERED=20030604 - UPDATED=20090810 + UPDATED=20090930 MAINTAINER=jmhodges at lunar-linux.org SHORT="Numerical computation suite mostly compatible with MATLAB" PSAFE=no From stumbles at lunar-linux.org Thu Oct 1 14:00:05 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 08:00:05 -0400 Subject: [Lunar-commits] octave: Forgot to undo these. Also, the segfault mentioned earlier is; Message-ID: <20091001120059.B67B49B224@doppio.foo-projects.org> commit c7ecee2bf8e88e502a1b071f1a46d58a34868e8e Author: Dennis `stumbles` Veatch Date: Thu Oct 1 08:00:05 2009 -0400 octave: Forgot to undo these. Also, the segfault mentioned earlier is; octave: symbol lookup error: /usr/lib/octave-3.2.3/liboctave.so: undefined symbol: pthread_mutexattr_init --- science/octave/BUILD | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/science/octave/BUILD b/science/octave/BUILD index ed4adeb..d8ec973 100644 --- a/science/octave/BUILD +++ b/science/octave/BUILD @@ -1,7 +1,6 @@ ( -# bad_flags -ffast-math && - mkdir -p /usr/share/octave/$VERSION/etc/doc-cache && + bad_flags -ffast-math && ./configure --sysconfdir=/etc \ --prefix=/usr \ From stumbles at lunar-linux.org Thu Oct 1 14:04:39 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 08:04:39 -0400 Subject: [Lunar-commits] qtpfsgui: Adding to moonbase. Message-ID: <20091001120455.4DE129B222@doppio.foo-projects.org> commit 78874c3d5fab86b2e9720cf7057924fb09c0acae Author: Dennis `stumbles` Veatch Date: Thu Oct 1 08:04:39 2009 -0400 qtpfsgui: Adding to moonbase. --- qt4-apps/qtpfsgui/BUILD | 11 +++++++++++ qt4-apps/qtpfsgui/DEPENDS | 5 +++++ qt4-apps/qtpfsgui/DETAILS | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 52 insertions(+), 0 deletions(-) diff --git a/qt4-apps/qtpfsgui/BUILD b/qt4-apps/qtpfsgui/BUILD new file mode 100644 index 0000000..0854504 --- /dev/null +++ b/qt4-apps/qtpfsgui/BUILD @@ -0,0 +1,11 @@ +( + + . /etc/profile.d/qt4.rc + + lrelease project.pro && + + qmake PREFIX=/usr && + + default_make + +) > $C_FIFO 2>&1 diff --git a/qt4-apps/qtpfsgui/DEPENDS b/qt4-apps/qtpfsgui/DEPENDS new file mode 100644 index 0000000..1556036 --- /dev/null +++ b/qt4-apps/qtpfsgui/DEPENDS @@ -0,0 +1,5 @@ +depends qt4 +depends exiv2 +depends fftw3 +depends tiff +depends OpenEXR diff --git a/qt4-apps/qtpfsgui/DETAILS b/qt4-apps/qtpfsgui/DETAILS new file mode 100644 index 0000000..cc90bf4 --- /dev/null +++ b/qt4-apps/qtpfsgui/DETAILS @@ -0,0 +1,36 @@ + MODULE=qtpfsgui + VERSION=1.9.3 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL=$SFORGE_URL/$MODULE/$MODULE/$VERSION + SOURCE_VFY=sha1:adf037c54f55be50d931fa484cca169c01d0384d + MODULE_PREFIX=${QT4_PREFIX:-/opt/lunar/qt/4} + WEB_SITE=http://qtpfsgui.sourceforge.net/ + ENTERED=20091001 + UPDATED=20091001 + SHORT="Qt4 based workflow for HDR imaging" + +cat << EOF +Qtpfsgui is an open source graphical user interface application that aims to +provide a workflow for HDR imaging. Supported HDR formats: + + * OpenEXR (extension: exr) + * Radiance RGBE (extension: hdr) + * Tiff formats: 16bit, 32bit (float) and LogLuv (extension: tiff) + * Raw image formats (extension: various) + * PFS native format (extension: pfs) + +Supported LDR formats: + + * JPEG, PNG, PPM, PBM, TIFF(8 bit) + +Supported features: + + * Create an HDR file from a set of images (formats: JPEG, TIFF 8bit and + 16bit, RAW) of the same scene taken at different exposure setting. + * Save and load HDR images. + * Rotate and resize HDR images. + * Tonemap HDR images. + * Copy exif data between sets of images. + * Supports internationalization. + +EOF From stumbles at lunar-linux.org Thu Oct 1 14:08:05 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 08:08:05 -0400 Subject: [Lunar-commits] re2c: Adding to moonbase. Message-ID: <20091001120820.F2D1E9B222@doppio.foo-projects.org> commit 5c92a1a6f538c9f3576cf75e4de0134775607e96 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 08:08:05 2009 -0400 re2c: Adding to moonbase. --- doc-tools/re2c/DETAILS | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/doc-tools/re2c/DETAILS b/doc-tools/re2c/DETAILS new file mode 100644 index 0000000..66c4fc3 --- /dev/null +++ b/doc-tools/re2c/DETAILS @@ -0,0 +1,19 @@ + MODULE=re2c + VERSION=0.13.5 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL=$SFORGE_URL/$MODULE/$VERSION + SOURCE_VFY=sha1:3d334efab53a4a051a2b189b49a849e13523b6c0 + WEB_SITE=http://re2c.sourceforge.net/ + ENTERED=20091001 + UPDATED=20091001 + SHORT="for writing very fast and very flexible scanners" + +cat << EOF +re2c is a tool for writing very fast and very flexible scanners. Unlike any +other such tool, re2c focuses on generating high efficient code for regular +expression matching. As a result this allows a much broader range of use than +any traditional lexer offers. And Last but not least re2c generates warning free +code that is equal to hand-written code in terms of size, speed and quality. + +The above made the PHP team to use re2c in various places. +EOF From tchan at lunar-linux.org Thu Oct 1 15:25:38 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Thu, 1 Oct 2009 08:25:38 -0500 Subject: [Lunar-commits] xzgv: Version bump to 0.9.1 Message-ID: <20091001132553.6B0089B222@doppio.foo-projects.org> commit 56a91d7b17a882362b2c93e79f94d543684adb36 Author: Terry Chan Date: Thu Oct 1 08:25:38 2009 -0500 xzgv: Version bump to 0.9.1 --- graphics/xzgv/BUILD | 7 ++++++- graphics/xzgv/DETAILS | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/graphics/xzgv/BUILD b/graphics/xzgv/BUILD index d7dd566..0c2be33 100644 --- a/graphics/xzgv/BUILD +++ b/graphics/xzgv/BUILD @@ -2,7 +2,12 @@ sedit "s/CFLAGS=-O2 -Wall/CFLAGS=$CFLAGS/" config.mk && sedit "s/PREFIX=\/usr\/local/PREFIX=\/usr/" config.mk && - default_make && + make && + cd doc && + make && + cd .. && + prepare_install && + make install && gather_docs AUTHORS TODO ) > $C_FIFO 2>&1 diff --git a/graphics/xzgv/DETAILS b/graphics/xzgv/DETAILS index 964f231..56cce80 100644 --- a/graphics/xzgv/DETAILS +++ b/graphics/xzgv/DETAILS @@ -1,12 +1,12 @@ MODULE=xzgv - VERSION=0.9 + VERSION=0.9.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/xzgv - SOURCE_VFY=sha1:5d8115c87be3836d9ed35dba777cd1dc48541715 + SOURCE_VFY=sha1:f88df5cc709996806313db73a41d607b3c865827 # WEB_SITE=http://rus.members.beeb.net/xzgv.html WEB_SITE=http://sourceforge.net/projects/xzgv ENTERED=20020516 - UPDATED=20071124 + UPDATED=20091001 MAINTAINER=tchan at lunar-linux.org SHORT="Handy, smaller, image viewer, many formats, thumbnails" cat << EOF From stumbles at lunar-linux.org Thu Oct 1 15:34:35 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 09:34:35 -0400 Subject: [Lunar-commits] teTeX: Adding a patch to fix some glibc-2.10.1 build issues. Thanks to the Message-ID: <20091001133608.B43CE9B222@doppio.foo-projects.org> commit ce3d3aecfd6802e7d34faa834452fa0d7848d15d Author: Dennis `stumbles` Veatch Date: Thu Oct 1 09:34:35 2009 -0400 teTeX: Adding a patch to fix some glibc-2.10.1 build issues. Thanks to the SourceMage folks for the heavy lifting, just modified this a bit to fit our environment. --- doc-tools/teTeX/BUILD | 3 +++ doc-tools/teTeX/DETAILS | 5 ++++- 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/doc-tools/teTeX/BUILD b/doc-tools/teTeX/BUILD index 100e03b..2d9dd2e 100644 --- a/doc-tools/teTeX/BUILD +++ b/doc-tools/teTeX/BUILD @@ -1,6 +1,8 @@ ( + patch_it $SOURCE_CACHE/$SOURCE1 0 && + patch_it $SOURCE_CACHE/$SOURCE2 0 && ./configure --prefix=/usr \ --infodir=/usr/share/info \ @@ -12,6 +14,7 @@ --without-dialog \ --disable-multiplatform \ $OPTS && + default_make ) > $C_FIFO 2>&1 diff --git a/doc-tools/teTeX/DETAILS b/doc-tools/teTeX/DETAILS index d86973f..158d9ef 100644 --- a/doc-tools/teTeX/DETAILS +++ b/doc-tools/teTeX/DETAILS @@ -2,16 +2,19 @@ VERSION=3.0 SOURCE=tetex-src-$VERSION.tar.gz SOURCE1=tetex-2.0.2-flex-unput.patch + SOURCE2=teTeX-glibc-2.10.1.patch SOURCE_DIRECTORY=$BUILD_DIRECTORY/tetex-src-$VERSION SOURCE_URL[0]=ftp://dante.ctan.org/tex-archive/obsolete/systems/unix/teTeX/current/distrib SOURCE_URL[1]=ftp://cam.ctan.org/tex-archive/obsolete/systems/unix/teTeX/current/distrib SOURCE_URL[2]=ftp://tug.ctan.org/tex-archive/obsolete/systems/unix/teTeX/current/distrib SOURCE1_URL=$PATCH_URL + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:7637789f7f4929694aed1b89820f5bad4753e8fc SOURCE1_VFY=sha1:d58a4cc7bcc26e442b75cf92fd83f90a30b095f7 + SOURCE2_VFY=sha1:e2961bc364382f4037fa085734fd29792c5783ae WEB_SITE=http://tug.org/teTeX ENTERED=20010922 - UPDATED=20050209 + UPDATED=20091001 PSAFE=no SHORT="TeX distribution that includes web2c, pdfTeX, e-Tex and more..." From stumbles at lunar-linux.org Thu Oct 1 16:12:06 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 10:12:06 -0400 Subject: [Lunar-commits] qt4: Version bump. This is a bug fix release. Message-ID: <20091001141302.ED7BE9B225@doppio.foo-projects.org> commit 31404488d897035b517be7bfef27bf7116619c68 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 10:12:06 2009 -0400 qt4: Version bump. This is a bug fix release. --- kde4/base/qt4/DEPENDS | 8 ++++---- kde4/base/qt4/DETAILS | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/kde4/base/qt4/DEPENDS b/kde4/base/qt4/DEPENDS index eccc992..cd59245 100644 --- a/kde4/base/qt4/DEPENDS +++ b/kde4/base/qt4/DEPENDS @@ -25,10 +25,10 @@ optional_depends "postgresql" \ "-no-sql-psql" \ "for postgresql database support" -#optional_depends "unixODBC" \ -# "-plugin-sql-odbc" \ -# "-no-sql-odbc" \ -# "for unixODBC support" +optional_depends "unixODBC" \ + "-plugin-sql-odbc" \ + "-no-sql-odbc" \ + "for unixODBC support" optional_depends "freetds" \ "-plugin-sql-tds" \ diff --git a/kde4/base/qt4/DETAILS b/kde4/base/qt4/DETAILS index b03ec3a..5a3a485 100644 --- a/kde4/base/qt4/DETAILS +++ b/kde4/base/qt4/DETAILS @@ -1,14 +1,14 @@ MODULE=qt4 - VERSION=4.5.2 - SOURCE=qt-x11-opensource-src-${VERSION}.tar.bz2 + VERSION=4.5.3 + SOURCE=qt-x11-opensource-src-${VERSION}.tar.gz SOURCE_URL[0]=ftp://ftp.trolltech.com/qt/source SOURCE_URL[1]=http://gd.tuwien.ac.at/hci/qt/source SOURCE_DIRECTORY=$BUILD_DIRECTORY/qt-x11-opensource-src-${VERSION} - SOURCE_VFY=bf2dd175cade15f3f505fe6aac1401bdbfeb4e5b + SOURCE_VFY=78620ffd03c83c4d86f5039ccf7b09e5c709ed25 MODULE_PREFIX=${QT4_PREFIX:-/opt/lunar/qt/4} WEB_SITE=http://www.trolltech.com/qt ENTERED=20020420 - UPDATED=20090625 + UPDATED=20091001 GARBAGE=off FTP_PASSIVE=on MAINTAINER=florin at lunar-linux.org From stumbles at lunar-linux.org Thu Oct 1 17:57:24 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 11:57:24 -0400 Subject: [Lunar-commits] gnokii: Version bump and is PSAFE on x86_64. Message-ID: <20091001155755.123659B222@doppio.foo-projects.org> commit 4b42f783fa8d09e268a8b964e5087075be4dc5a0 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 11:57:24 2009 -0400 gnokii: Version bump and is PSAFE on x86_64. --- utils/gnokii/DETAILS | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/utils/gnokii/DETAILS b/utils/gnokii/DETAILS index 8941781..d7e97cd 100644 --- a/utils/gnokii/DETAILS +++ b/utils/gnokii/DETAILS @@ -1,13 +1,12 @@ MODULE=gnokii - VERSION=0.6.27 + VERSION=0.6.28 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://www.gnokii.org/download/$MODULE - SOURCE_VFY=sha1:a7c6f9fa56bfe01e3c8e719bb8585a24469fe1e7 + SOURCE_VFY=sha1:6f7a101a32284ac6240cd49807e0f2013bf7e39a WEB_SITE=http://www.gnokii.org/index.shtml ENTERED=20050424 - UPDATED=20080531 + UPDATED=20091001 SHORT="Tools and driver for mobile phones under various unices" - PSAFE="no" cat << EOF gnokii provides tools and a user space driver for use with mobile From stumbles at lunar-linux.org Thu Oct 1 18:24:18 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 12:24:18 -0400 Subject: [Lunar-commits] taglib-extras: Version bump. Message-ID: <20091001162540.44A989B222@doppio.foo-projects.org> commit 38977506b367c25a546440f26f858c25a03acf09 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 12:24:18 2009 -0400 taglib-extras: Version bump. --- audio/taglib-extras/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/audio/taglib-extras/DETAILS b/audio/taglib-extras/DETAILS index d4c76f0..f1adc6b 100644 --- a/audio/taglib-extras/DETAILS +++ b/audio/taglib-extras/DETAILS @@ -1,11 +1,11 @@ MODULE=taglib-extras - VERSION=0.1.6 + VERSION=1.0.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://www.kollide.net/~jefferai/ - SOURCE_VFY=sha1:d648e13bf7b86566573cd5f388595e94a9bf2994 + SOURCE_VFY=sha1:58af454ec230d494a75abd0aa78016a969f0c9ce WEB_SITE=http://amarok.kde.org/wiki/Main_Page ENTERED=20090410 - UPDATED=20090902 + UPDATED=20091001 SHORT="taglib-extras handles proprietary file formats" cat << EOF From stumbles at lunar-linux.org Thu Oct 1 18:24:50 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 12:24:50 -0400 Subject: [Lunar-commits] taglib: Seems these are disable by default, and are needed by lastest Message-ID: <20091001162540.4C5E49B224@doppio.foo-projects.org> commit 72d4319059b3438e5800810a82fbe09e1e760336 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 12:24:50 2009 -0400 taglib: Seems these are disable by default, and are needed by lastest Amarok4 (coming soon). --- audio/taglib/BUILD | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/audio/taglib/BUILD b/audio/taglib/BUILD new file mode 100644 index 0000000..eb96754 --- /dev/null +++ b/audio/taglib/BUILD @@ -0,0 +1,7 @@ +( + + OPTS+=" --enable-asf --enable-mp4" + + default_build + +) > $C_FIFO 2>&1 From stumbles at lunar-linux.org Thu Oct 1 19:07:38 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 13:07:38 -0400 Subject: [Lunar-commits] amarok4: Version bump. Message-ID: <20091001170759.D758E9B222@doppio.foo-projects.org> commit 7773f0df521389cea22bae3fd874a4a871dfafa2 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 13:07:38 2009 -0400 amarok4: Version bump. --- kde4/apps/amarok4/DEPENDS | 1 + kde4/apps/amarok4/DETAILS | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/kde4/apps/amarok4/DEPENDS b/kde4/apps/amarok4/DEPENDS index 1292dea..3dd3131 100644 --- a/kde4/apps/amarok4/DEPENDS +++ b/kde4/apps/amarok4/DEPENDS @@ -7,3 +7,4 @@ optional_depends libmtp "" "" "for Media Transfer Protocol support" optional_depends libgpod "" "" "for iPod support" optional_depends libifp "" "" "for iRiver's iFP support" optional_depends loudmouth "" "" "for asynchronous XMPP library support" +optional_depends lastfmlib "" "" "for Lastfm support" diff --git a/kde4/apps/amarok4/DETAILS b/kde4/apps/amarok4/DETAILS index 88b3d91..2c198c5 100644 --- a/kde4/apps/amarok4/DETAILS +++ b/kde4/apps/amarok4/DETAILS @@ -1,13 +1,13 @@ MODULE=amarok4 - VERSION=2.1.1 + VERSION=2.2.0 SOURCE=amarok-${VERSION}.tar.bz2 SOURCE_URL=$KDE_URL/stable/amarok/$VERSION/src SOURCE_DIRECTORY=$BUILD_DIRECTORY/amarok-$VERSION - SOURCE_VFY=sha1:6242afaec5112ea3933885cb6948b19c0209b3c4 + SOURCE_VFY=sha1:7603f991aa92810669e71278f9abc20a2180f97d MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} WEB_SITE=http://amarok.kde.org ENTERED=20080414 - UPDATED=20090618 + UPDATED=20091001 SHORT="KDE-based audio player" cat << EOF From stumbles at lunar-linux.org Thu Oct 1 19:37:30 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 13:37:30 -0400 Subject: [Lunar-commits] liblastfm: Adding to moonbase, and is the correct one to use as an optional_depends Message-ID: <20091001173850.4F0D09B224@doppio.foo-projects.org> commit 2e3f18b777350ca0cbbc884abc49352ee4050c83 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 13:37:30 2009 -0400 liblastfm: Adding to moonbase, and is the correct one to use as an optional_depends for the current Amarok4. This does not conflict with lastfmlib. --- audio/liblastfm/BUILD | 7 +++++++ audio/liblastfm/DEPENDS | 1 + audio/liblastfm/DETAILS | 15 +++++++++++++++ 3 files changed, 23 insertions(+), 0 deletions(-) diff --git a/audio/liblastfm/BUILD b/audio/liblastfm/BUILD new file mode 100644 index 0000000..28b419d --- /dev/null +++ b/audio/liblastfm/BUILD @@ -0,0 +1,7 @@ +( + + . /etc/profile.d/qt4.rc && + + default_build + +) > $C_FIFO 2>&1 diff --git a/audio/liblastfm/DEPENDS b/audio/liblastfm/DEPENDS new file mode 100644 index 0000000..428f269 --- /dev/null +++ b/audio/liblastfm/DEPENDS @@ -0,0 +1 @@ +depends qt4 diff --git a/audio/liblastfm/DETAILS b/audio/liblastfm/DETAILS new file mode 100644 index 0000000..12ca1eb --- /dev/null +++ b/audio/liblastfm/DETAILS @@ -0,0 +1,15 @@ + MODULE=liblastfm + VERSION=0.3.0 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=http://cdn.last.fm/src/ + WEB_SITE=http://github.com/mxcl/liblastfm/tree/master + SOURCE_VFY=sha1:1dabd8d67f4a36aebad29608c6f89b895472c25a + ENTERED=20090910 + UPDATED=20090910 + SHORT="integrate Last.fm services" + +cat << EOF +liblastfm is a collection of libraries to help you integrate Last.fm services +into your rich desktop software. It is officially supported software developed +by Last.fm staff. +EOF From stumbles at lunar-linux.org Thu Oct 1 19:39:18 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 13:39:18 -0400 Subject: [Lunar-commits] amarok4: Adjusting to DEPENDS to reflect the correct liblastfm optional_depends. Message-ID: <20091001173956.84E119B224@doppio.foo-projects.org> commit 07c994142617bc426760b8feaddeabce58cbd2a3 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 13:39:18 2009 -0400 amarok4: Adjusting to DEPENDS to reflect the correct liblastfm optional_depends. --- kde4/apps/amarok4/DEPENDS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kde4/apps/amarok4/DEPENDS b/kde4/apps/amarok4/DEPENDS index 3dd3131..3e28316 100644 --- a/kde4/apps/amarok4/DEPENDS +++ b/kde4/apps/amarok4/DEPENDS @@ -7,4 +7,4 @@ optional_depends libmtp "" "" "for Media Transfer Protocol support" optional_depends libgpod "" "" "for iPod support" optional_depends libifp "" "" "for iRiver's iFP support" optional_depends loudmouth "" "" "for asynchronous XMPP library support" -optional_depends lastfmlib "" "" "for Lastfm support" +optional_depends liblastfm "" "" "for Lastfm support" From stumbles at lunar-linux.org Thu Oct 1 19:45:27 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 13:45:27 -0400 Subject: [Lunar-commits] amarok4: Bah! Message-ID: <20091001174541.C9F8F9B224@doppio.foo-projects.org> commit d5a328e57d4b27016bdcc824b131b2d5ad1f4624 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 13:45:27 2009 -0400 amarok4: Bah! --- kde4/apps/amarok4/DEPENDS | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/kde4/apps/amarok4/DEPENDS b/kde4/apps/amarok4/DEPENDS index 3e28316..11aa1f8 100644 --- a/kde4/apps/amarok4/DEPENDS +++ b/kde4/apps/amarok4/DEPENDS @@ -7,4 +7,6 @@ optional_depends libmtp "" "" "for Media Transfer Protocol support" optional_depends libgpod "" "" "for iPod support" optional_depends libifp "" "" "for iRiver's iFP support" optional_depends loudmouth "" "" "for asynchronous XMPP library support" -optional_depends liblastfm "" "" "for Lastfm support" + +# comment out, causes the make to bombout. +#optional_depends liblastfm "" "" "for Lastfm support" From stumbles at lunar-linux.org Thu Oct 1 20:21:04 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 14:21:04 -0400 Subject: [Lunar-commits] liblastfm: Turns out it does conflict with lastfmlib. So, since the only module I Message-ID: <20091001182328.8B7679B222@doppio.foo-projects.org> commit dc0856c90ec3f940fa9a952a0480ce5507a73a35 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 14:21:04 2009 -0400 liblastfm: Turns out it does conflict with lastfmlib. So, since the only module I know of that uses this is Amarok4, lets shove this into the qt area. --- audio/liblastfm/BUILD | 2 ++ audio/liblastfm/DEPENDS | 3 +++ audio/liblastfm/DETAILS | 1 + 3 files changed, 6 insertions(+), 0 deletions(-) diff --git a/audio/liblastfm/BUILD b/audio/liblastfm/BUILD index 28b419d..d1ebf4c 100644 --- a/audio/liblastfm/BUILD +++ b/audio/liblastfm/BUILD @@ -2,6 +2,8 @@ . /etc/profile.d/qt4.rc && + OPTS+=" --release --prefix $MODULE_PREFIX" && + default_build ) > $C_FIFO 2>&1 diff --git a/audio/liblastfm/DEPENDS b/audio/liblastfm/DEPENDS index 428f269..789fdee 100644 --- a/audio/liblastfm/DEPENDS +++ b/audio/liblastfm/DEPENDS @@ -1 +1,4 @@ depends qt4 +depends ruby +depends fftw3 +depends libsamplerate diff --git a/audio/liblastfm/DETAILS b/audio/liblastfm/DETAILS index 12ca1eb..1603f62 100644 --- a/audio/liblastfm/DETAILS +++ b/audio/liblastfm/DETAILS @@ -3,6 +3,7 @@ SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://cdn.last.fm/src/ WEB_SITE=http://github.com/mxcl/liblastfm/tree/master + MODULE_PREFIX=${QT4_PREFIX:-/opt/lunar/qt/4} SOURCE_VFY=sha1:1dabd8d67f4a36aebad29608c6f89b895472c25a ENTERED=20090910 UPDATED=20090910 From stumbles at lunar-linux.org Thu Oct 1 20:22:40 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 14:22:40 -0400 Subject: [Lunar-commits] amarok4: An adjustment here to reflect a different path location for liblastfm. Message-ID: <20091001182328.9476D9B225@doppio.foo-projects.org> commit 69e9df3f62c9aefeb273cedfcc29cb23bec6556d Author: Dennis `stumbles` Veatch Date: Thu Oct 1 14:22:40 2009 -0400 amarok4: An adjustment here to reflect a different path location for liblastfm. --- kde4/apps/amarok4/BUILD | 3 ++- kde4/apps/amarok4/DEPENDS | 4 +--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/kde4/apps/amarok4/BUILD b/kde4/apps/amarok4/BUILD index 8369489..7562e05 100644 --- a/kde4/apps/amarok4/BUILD +++ b/kde4/apps/amarok4/BUILD @@ -1,7 +1,8 @@ ( source /etc/profile.d/qt4.rc - source /etc/profile.d/kde4.rc + + sedit "s:/opt/local:$QTDIR:g" cmake/modules/FindLibLastFm.cmake && cmake $SOURCE_DIRECTORY/ -DCMAKE_INSTALL_PREFIX=$MODULE_PREFIX \ -DCMAKE_BUILD_TYPE=RELEASE && diff --git a/kde4/apps/amarok4/DEPENDS b/kde4/apps/amarok4/DEPENDS index 11aa1f8..3e28316 100644 --- a/kde4/apps/amarok4/DEPENDS +++ b/kde4/apps/amarok4/DEPENDS @@ -7,6 +7,4 @@ optional_depends libmtp "" "" "for Media Transfer Protocol support" optional_depends libgpod "" "" "for iPod support" optional_depends libifp "" "" "for iRiver's iFP support" optional_depends loudmouth "" "" "for asynchronous XMPP library support" - -# comment out, causes the make to bombout. -#optional_depends liblastfm "" "" "for Lastfm support" +optional_depends liblastfm "" "" "for Lastfm support" From florin at lunar-linux.org Thu Oct 1 18:45:26 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 19:45:26 +0300 Subject: [Lunar-commits] update Message-ID: <20091001193714.3A18B9B222@doppio.foo-projects.org> commit 9e04df6fa8568ea6d4971585376e6a8014dd4de2 Author: Florin Braescu Date: Thu Oct 1 19:45:26 2009 +0300 update --- zlocal/texlive-texmf/DETAILS | 14 ++++++++++++++ zlocal/texlive/BUILD | 5 +++++ zlocal/texlive/DEPENDS | 7 +++++++ zlocal/texlive/DETAILS | 20 ++++++++++++++++++++ 4 files changed, 46 insertions(+), 0 deletions(-) diff --git a/zlocal/texlive-texmf/DETAILS b/zlocal/texlive-texmf/DETAILS new file mode 100644 index 0000000..d5de45d --- /dev/null +++ b/zlocal/texlive-texmf/DETAILS @@ -0,0 +1,14 @@ + MODULE=texlive-texmf + VERSION=20080822 + SOURCE=texlive-$VERSION-texmf.tar.lzma +SOURCE_DIRECTORY=$BUILD_DIRECTORY/texlive-$VERSION-texmf + SOURCE_URL=ftp://tug.org/texlive/historic/2008 + SOURCE_VFY=sha1: + WEB_SITE=http://tug.org/texlive + ENTERED=20090901 + UPDATED=20090901 + PSAFE=no + SHORT="" + +cat << EOF +EOF diff --git a/zlocal/texlive/BUILD b/zlocal/texlive/BUILD new file mode 100644 index 0000000..f53c05f --- /dev/null +++ b/zlocal/texlive/BUILD @@ -0,0 +1,5 @@ +( + + ./Build + +) > $C_FIFO 2>&1 diff --git a/zlocal/texlive/DEPENDS b/zlocal/texlive/DEPENDS new file mode 100644 index 0000000..f555a42 --- /dev/null +++ b/zlocal/texlive/DEPENDS @@ -0,0 +1,7 @@ +depends dialog +depends zlib +depends texinfo +depends bison + +optional_depends "%X" "" "--without-x11" "for GUI support" +optional_depends "libpng" "--with-system-pnglib" "" "for png support" diff --git a/zlocal/texlive/DETAILS b/zlocal/texlive/DETAILS new file mode 100644 index 0000000..87d37b1 --- /dev/null +++ b/zlocal/texlive/DETAILS @@ -0,0 +1,20 @@ + MODULE=texlive + VERSION=20080816 + SOURCE=$MODULE-$VERSION-source.tar.lzma +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION-source + SOURCE_URL[0]=http://ctan.org/get/systems/texlive/Source + SOURCE_URL[1]=ftp://tug.org/texlive/historic/2008 + SOURCE_VFY=sha1:730986c628bd658b5062face9e400f61203d6b8d + WEB_SITE=http://tug.org/texlive + ENTERED=20090901 + UPDATED=20090901 + PSAFE=no + SHORT="" + +cat << EOF +TeX Live is an easy way to get up and running with TeX. It provides +a comprehensive TeX system with binaries for most flavors of Unix, +including GNU/Linux, and also Windows. It includes all the major +TeX-related programs, macro packages, and fonts that are free software, +including support for many languages around the world. +EOF From florin at lunar-linux.org Thu Oct 1 21:35:47 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 22:35:47 +0300 Subject: [Lunar-commits] qemu: version bumped to 0.11.0. Message-ID: <20091001193714.435839B225@doppio.foo-projects.org> commit 84454758af33053f7f836db96f02a14fa3d2dd1d Author: Florin Braescu Date: Thu Oct 1 22:35:47 2009 +0300 qemu: version bumped to 0.11.0. Adds KVM guest debugging support and save, restore and reboot support. For the Xen hypervisor, para-virtualized guest support has been added. Hardware virtualization features added include SR-IOV which allows you to share direct memory access to IO devices among multiple virtual guest machines. --- devel/qemu/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devel/qemu/DETAILS b/devel/qemu/DETAILS index ee182b2..64f0d6c 100644 --- a/devel/qemu/DETAILS +++ b/devel/qemu/DETAILS @@ -1,11 +1,11 @@ MODULE=qemu - VERSION=0.10.6 + VERSION=0.11.0 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://download.savannah.gnu.org/releases/$MODULE - SOURCE_VFY=sha1:9432738ba513e07c981097468945b2e3ad9cb81e + SOURCE_VFY=sha1:95f59ce1293743d9f213d6908029aa2cadfc0d34 WEB_SITE=http://www.nongnu.org/qemu ENTERED=20040318 - UPDATED=20090731 + UPDATED=20091001 SHORT="A fast processor emulator" MAINTAINER=tchan at lunar-linux.org From florin at lunar-linux.org Thu Oct 1 21:44:24 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 22:44:24 +0300 Subject: [Lunar-commits] libmpd: version bumped to 0.19.0. Message-ID: <20091001194455.8C0359B222@doppio.foo-projects.org> commit b2f9119e3d05231261cffe6ddb776c333be62c96 Author: Florin Braescu Date: Thu Oct 1 22:44:24 2009 +0300 libmpd: version bumped to 0.19.0. It depends now on glib-2. --- audio/libmpd/DEPENDS | 1 + audio/libmpd/DETAILS | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/audio/libmpd/DEPENDS b/audio/libmpd/DEPENDS new file mode 100644 index 0000000..7c5f131 --- /dev/null +++ b/audio/libmpd/DEPENDS @@ -0,0 +1 @@ +depends glib-2 diff --git a/audio/libmpd/DETAILS b/audio/libmpd/DETAILS index e5f5067..8cd46d9 100644 --- a/audio/libmpd/DETAILS +++ b/audio/libmpd/DETAILS @@ -1,11 +1,11 @@ MODULE=libmpd - VERSION=0.18.0 + VERSION=0.19.0 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://download.sarine.nl/Programs/gmpc/$VERSION - SOURCE_VFY=sha1:8b4199975d56579437f2381a5549b1e037ea652d + SOURCE_VFY=sha1:64788efedf0147513839bef2a6a9fd74d259c5a3 WEB_SITE=http://gmpc.wikia.com/wiki/Gnome_Music_Player_Client ENTERED=20060421 - UPDATED=20090310 + UPDATED=20091001 SHORT="Abstraction library around libmpdclient" cat << EOF From florin at lunar-linux.org Thu Oct 1 21:45:53 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 22:45:53 +0300 Subject: [Lunar-commits] gmpc: version bumped to 0.19.0. Message-ID: <20091001194646.6F8E79B222@doppio.foo-projects.org> commit db8be7cc737d51476b8e2f791e1d89e442ff3672 Author: Florin Braescu Date: Thu Oct 1 22:45:53 2009 +0300 gmpc: version bumped to 0.19.0. Bugfixes and improvements. --- audio/gmpc/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/audio/gmpc/DETAILS b/audio/gmpc/DETAILS index ef88a12..b7ab653 100644 --- a/audio/gmpc/DETAILS +++ b/audio/gmpc/DETAILS @@ -1,11 +1,11 @@ MODULE=gmpc - VERSION=0.18.0 + VERSION=0.19.0 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://download.sarine.nl/Programs/$MODULE/$VERSION - SOURCE_VFY=sha1:95b4ec3c094fd91007407dfa559d5aef50542d6a + SOURCE_VFY=sha1:a94e49ea909581826a97d13f9ce648e1b17a7160 WEB_SITE=http://gmpc.wikia.com/wiki/Gnome_Music_Player_Client ENTERED=20060421 - UPDATED=20090623 + UPDATED=20091001 SHORT="GTK+-2 based frontend to mpd (music player daemon)" cat << EOF From florin at lunar-linux.org Thu Oct 1 21:52:38 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 22:52:38 +0300 Subject: [Lunar-commits] pixman: version bumped to 0.16.2. Message-ID: <20091001195315.B8C2F9B222@doppio.foo-projects.org> commit f56f82ebee5a8fdfbc52afb351d4b03492b4956c Author: Florin Braescu Date: Thu Oct 1 22:52:38 2009 +0300 pixman: version bumped to 0.16.2. Bugfixes release. --- xorg7/lib/pixman/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/xorg7/lib/pixman/DETAILS b/xorg7/lib/pixman/DETAILS index 386f7af..f3d72dd 100644 --- a/xorg7/lib/pixman/DETAILS +++ b/xorg7/lib/pixman/DETAILS @@ -1,12 +1,12 @@ MODULE=pixman - VERSION=0.16.0 + VERSION=0.16.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$XORG_URL/individual/lib - SOURCE_VFY=sha1:7cf1f2261ba44b3c98cf3d2a32e9fd90b12ca19e + SOURCE_VFY=sha1:387ec30d236a52bc21a45f2d50adad7fca89b667 MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org/ + WEB_SITE=http://www.x.org ENTERED=20070809 - UPDATED=20090829 + UPDATED=20091001 SHORT="Low-level pixel manipulation routine library" cat << EOF From florin at lunar-linux.org Thu Oct 1 21:56:52 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 22:56:52 +0300 Subject: [Lunar-commits] xf86-video-intel: version bumped to 2.9.0. Message-ID: <20091001195809.ED52E9B222@doppio.foo-projects.org> commit 2ebc5f5be77d722382f6ecadd7f569045040b67e Author: Florin Braescu Date: Thu Oct 1 22:56:52 2009 +0300 xf86-video-intel: version bumped to 2.9.0. Support for the B43 chipset. Multiple fixes to make the driver stable for 8xx chipsets, (855GM, 865G, etc.). Add support for BACKLIGHT property when using kernel modesetting (KMS). Other bugfixes. --- xorg7/driver/xf86-video-intel/DETAILS | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-) diff --git a/xorg7/driver/xf86-video-intel/DETAILS b/xorg7/driver/xf86-video-intel/DETAILS index ba41b05..dca6efc 100644 --- a/xorg7/driver/xf86-video-intel/DETAILS +++ b/xorg7/driver/xf86-video-intel/DETAILS @@ -1,15 +1,12 @@ MODULE=xf86-video-intel - VERSION=2.8.0 + VERSION=2.9.0 SOURCE=$MODULE-$VERSION.tar.bz2 -# SOURCE2=$MODULE-$VERSION-modes.patch.bz2 SOURCE_URL=$XORG_URL/individual/driver -# SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:77ea9054e46662d84d5b33a088a48cb175662915 -# SOURCE2_VFY=sha1:4e7b40a2fea20199293c75452edb78d741e11eee + SOURCE_VFY=sha1:62e29344824a5de421178fec568d7ff0688309f8 MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://www.x.org ENTERED=20060124 - UPDATED=20090724 + UPDATED=20091001 SHORT="The X.Org video driver for Intel based cards" cat << EOF From florin at lunar-linux.org Thu Oct 1 22:01:04 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 23:01:04 +0300 Subject: [Lunar-commits] xkeyboard-config: version bumped to 1.7. Message-ID: <20091001200144.8D5AF9B222@doppio.foo-projects.org> commit 52b16045de4a1f614c71b5c4cbd9782d50b7405b Author: Florin Braescu Date: Thu Oct 1 23:01:04 2009 +0300 xkeyboard-config: version bumped to 1.7. Some bugs are fixed (~30), new configuration components added. Updated translations are included. --- xorg7/data/xkeyboard-config/CONFLICTS | 12 ++++++------ xorg7/data/xkeyboard-config/DETAILS | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/xorg7/data/xkeyboard-config/CONFLICTS b/xorg7/data/xkeyboard-config/CONFLICTS index 18646c7..fdf5f3e 100644 --- a/xorg7/data/xkeyboard-config/CONFLICTS +++ b/xorg7/data/xkeyboard-config/CONFLICTS @@ -1,7 +1,7 @@ -conflicts XOrg6 && -conflicts XOrg-test && -conflicts XOrg-fonts-base && -conflicts XOrg-fonts-extra && -conflicts XOrg-drm && -conflicts XOrg-drm-cvs && +conflicts XOrg6 +conflicts XOrg-test +conflicts XOrg-fonts-base +conflicts XOrg-fonts-extra +conflicts XOrg-drm +conflicts XOrg-drm-cvs conflicts xkbdata diff --git a/xorg7/data/xkeyboard-config/DETAILS b/xorg7/data/xkeyboard-config/DETAILS index 0c5fb01..b2522c9 100644 --- a/xorg7/data/xkeyboard-config/DETAILS +++ b/xorg7/data/xkeyboard-config/DETAILS @@ -1,12 +1,12 @@ MODULE=xkeyboard-config - VERSION=1.6 + VERSION=1.7 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://xlibs.freedesktop.org/xkbdesc - SOURCE_VFY=sha1:312f2e142f7d2bea6cabe6fcd8da4fb6c0711396 + SOURCE_VFY=sha1:d6df43bfc0596be04865f2be7c4e794e198358c8 MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org/ + WEB_SITE=http://www.x.org ENTERED=20070329 - UPDATED=20090706 + UPDATED=20091001 SHORT="keyboard data files for the X.Org server" cat << EOF From florin at lunar-linux.org Thu Oct 1 22:04:53 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 23:04:53 +0300 Subject: [Lunar-commits] dmxproto: version bum[ed to 2.3. Message-ID: <20091001200515.2B7079B222@doppio.foo-projects.org> commit 5fda3aedaaf8ed0d4a42470d121aa4bdf15d5c68 Author: Florin Braescu Date: Thu Oct 1 23:04:53 2009 +0300 dmxproto: version bum[ed to 2.3. Just one change, the requirement of xorg-macros 1.3 for the new XORG_DEFAULT_OPTIONS. --- xorg7/proto/dmxproto/CONFLICTS | 10 +++++----- xorg7/proto/dmxproto/DETAILS | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/xorg7/proto/dmxproto/CONFLICTS b/xorg7/proto/dmxproto/CONFLICTS index 5013182..fa885b1 100644 --- a/xorg7/proto/dmxproto/CONFLICTS +++ b/xorg7/proto/dmxproto/CONFLICTS @@ -1,6 +1,6 @@ -conflicts XOrg6 && -conflicts XOrg-test && -conflicts XOrg-fonts-base && -conflicts XOrg-fonts-extra && -conflicts XOrg-drm && +conflicts XOrg6 +conflicts XOrg-test +conflicts XOrg-fonts-base +conflicts XOrg-fonts-extra +conflicts XOrg-drm conflicts XOrg-drm-cvs diff --git a/xorg7/proto/dmxproto/DETAILS b/xorg7/proto/dmxproto/DETAILS index 8ca1caf..50eab8e 100644 --- a/xorg7/proto/dmxproto/DETAILS +++ b/xorg7/proto/dmxproto/DETAILS @@ -1,13 +1,13 @@ MODULE=dmxproto - VERSION=2.2.2 + VERSION=2.3 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/proto/ - SOURCE_VFY=sha1:80c573166ec3b9f17893e2fff84ce0107045faac + SOURCE_URL=$XORG_URL/individual/proto + SOURCE_VFY=sha1:a3636d1b54d7bbf273f28c0d3c44101777047865 MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org/ + WEB_SITE=http://www.x.org ENTERED=20060120 - UPDATED=20060120 - SHORT="the X.Org DMX protocol headers" + UPDATED=20091001 + SHORT="The X.Org DMX protocol headers" cat << EOF dmxproto provides the wire protocol for the DMX extension in X.Org. From florin at lunar-linux.org Thu Oct 1 22:08:26 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 23:08:26 +0300 Subject: [Lunar-commits] xf86dgaproto: version bumped to 2.1. Message-ID: <20091001200854.0A66A9B222@doppio.foo-projects.org> commit d66bd6a991c3e6530cad12da56b774d348a443fc Author: Florin Braescu Date: Thu Oct 1 23:08:26 2009 +0300 xf86dgaproto: version bumped to 2.1. Just one change, the requirement of xorg-macros 1.3 for the new XORG_DEFAULT_OPTIONS. --- xorg7/proto/xf86dgaproto/CONFLICTS | 10 +++++----- xorg7/proto/xf86dgaproto/DETAILS | 14 +++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/xorg7/proto/xf86dgaproto/CONFLICTS b/xorg7/proto/xf86dgaproto/CONFLICTS index 5013182..fa885b1 100644 --- a/xorg7/proto/xf86dgaproto/CONFLICTS +++ b/xorg7/proto/xf86dgaproto/CONFLICTS @@ -1,6 +1,6 @@ -conflicts XOrg6 && -conflicts XOrg-test && -conflicts XOrg-fonts-base && -conflicts XOrg-fonts-extra && -conflicts XOrg-drm && +conflicts XOrg6 +conflicts XOrg-test +conflicts XOrg-fonts-base +conflicts XOrg-fonts-extra +conflicts XOrg-drm conflicts XOrg-drm-cvs diff --git a/xorg7/proto/xf86dgaproto/DETAILS b/xorg7/proto/xf86dgaproto/DETAILS index 434bdf6..92f052d 100644 --- a/xorg7/proto/xf86dgaproto/DETAILS +++ b/xorg7/proto/xf86dgaproto/DETAILS @@ -1,16 +1,16 @@ MODULE=xf86dgaproto - VERSION=2.0.3 + VERSION=2.1 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/proto/ - SOURCE_VFY=sha1:29848f51d906b12025dab55d42a53e8c2f96a3ef + SOURCE_URL=$XORG_URL/individual/proto + SOURCE_VFY=sha1:97a06120e7195c968875e8ba42e82c90ab54948b MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org/ + WEB_SITE=http://www.x.org ENTERED=20060120 - UPDATED=20070910 - SHORT="the X.Org XFree86-DGA protocol headers" + UPDATED=20091001 + SHORT="The X.Org XFree86-DGA protocol headers" cat << EOF xf86dgaproto provides the wire protocol for the XFree86-DGA extension -in X.Org. It provides direct, framebuffer-like, graphics access. +in X.Org. It provides direct, framebuffer-like, graphics access. EOF From florin at lunar-linux.org Thu Oct 1 22:19:55 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 23:19:55 +0300 Subject: [Lunar-commits] xf86vidmodeproto: version bumped to 2.3. Message-ID: <20091001202027.61F219B222@doppio.foo-projects.org> commit 464edcefe56c7532966c1a7a5c09696414541f06 Author: Florin Braescu Date: Thu Oct 1 23:19:55 2009 +0300 xf86vidmodeproto: version bumped to 2.3. Just one change, the requirement of xorg-macros 1.3 for the new XORG_DEFAULT_OPTIONS. --- xorg7/proto/xf86vidmodeproto/CONFLICTS | 10 +++++----- xorg7/proto/xf86vidmodeproto/DETAILS | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/xorg7/proto/xf86vidmodeproto/CONFLICTS b/xorg7/proto/xf86vidmodeproto/CONFLICTS index 5013182..fa885b1 100644 --- a/xorg7/proto/xf86vidmodeproto/CONFLICTS +++ b/xorg7/proto/xf86vidmodeproto/CONFLICTS @@ -1,6 +1,6 @@ -conflicts XOrg6 && -conflicts XOrg-test && -conflicts XOrg-fonts-base && -conflicts XOrg-fonts-extra && -conflicts XOrg-drm && +conflicts XOrg6 +conflicts XOrg-test +conflicts XOrg-fonts-base +conflicts XOrg-fonts-extra +conflicts XOrg-drm conflicts XOrg-drm-cvs diff --git a/xorg7/proto/xf86vidmodeproto/DETAILS b/xorg7/proto/xf86vidmodeproto/DETAILS index a10fb43..bb5db75 100644 --- a/xorg7/proto/xf86vidmodeproto/DETAILS +++ b/xorg7/proto/xf86vidmodeproto/DETAILS @@ -1,17 +1,17 @@ MODULE=xf86vidmodeproto - VERSION=2.2.2 + VERSION=2.3 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/proto/ - SOURCE_VFY=sha1:4a228958879eb06206d13f4f09ec902f837fb8dd + SOURCE_URL=$XORG_URL/individual/proto + SOURCE_VFY=sha1:22d034c2f66985f8541b9ea3421096ceaa006355 MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org/ + WEB_SITE=http://www.x.org ENTERED=20060120 UPDATED=20060120 - SHORT="the X.Org Video Mode protocol headers" + SHORT="The X.Org Video Mode protocol headers" cat << EOF xf86vidmodeproto provides the wire protocol for the XFree86-VidMode -extension in X.Org. It is used to provide access to detailed timings +extension in X.Org. It is used to provide access to detailed timings of video modes currently in use, and provides a means to modify them. EOF From florin at lunar-linux.org Thu Oct 1 22:22:49 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 23:22:49 +0300 Subject: [Lunar-commits] recordproto: version bumped to 1.14. Message-ID: <20091001202312.8438C9B222@doppio.foo-projects.org> commit 9653a44d5092ab3228e2af1474fb010841a5164c Author: Florin Braescu Date: Thu Oct 1 23:22:49 2009 +0300 recordproto: version bumped to 1.14. Just one change, the requirement of xorg-macros 1.3 for the new XORG_DEFAULT_OPTIONS. --- xorg7/proto/recordproto/CONFLICTS | 10 +++++----- xorg7/proto/recordproto/DETAILS | 14 +++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/xorg7/proto/recordproto/CONFLICTS b/xorg7/proto/recordproto/CONFLICTS index 5013182..fa885b1 100644 --- a/xorg7/proto/recordproto/CONFLICTS +++ b/xorg7/proto/recordproto/CONFLICTS @@ -1,6 +1,6 @@ -conflicts XOrg6 && -conflicts XOrg-test && -conflicts XOrg-fonts-base && -conflicts XOrg-fonts-extra && -conflicts XOrg-drm && +conflicts XOrg6 +conflicts XOrg-test +conflicts XOrg-fonts-base +conflicts XOrg-fonts-extra +conflicts XOrg-drm conflicts XOrg-drm-cvs diff --git a/xorg7/proto/recordproto/DETAILS b/xorg7/proto/recordproto/DETAILS index 66e7f5f..8c096cb 100644 --- a/xorg7/proto/recordproto/DETAILS +++ b/xorg7/proto/recordproto/DETAILS @@ -1,15 +1,15 @@ MODULE=recordproto - VERSION=1.13.2 + VERSION=1.14 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/proto/ - SOURCE_VFY=sha1:833ef2bc4b084281f85eeba5d4ba03441bd3a534 + SOURCE_URL=$XORG_URL/individual/proto + SOURCE_VFY=sha1:212928572898ed150366c6026e2694b193ff9f79 MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org/ + WEB_SITE=http://www.x.org ENTERED=20060120 - UPDATED=20060120 - SHORT="the X.Org Record protocol headers" + UPDATED=20091001 + SHORT="The X.Org Record protocol headers" cat << EOF recordproto provides the wire protocol for the Record extension in -X.Org. It is used to record and play back event sequences. +X.Org. It is used to record and play back event sequences. EOF From florin at lunar-linux.org Thu Oct 1 22:25:30 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 23:25:30 +0300 Subject: [Lunar-commits] xineramaproto: version bumped to 1.2. Message-ID: <20091001202555.583C59B222@doppio.foo-projects.org> commit 4689666029ec6a240bd643f7cee854ba4730066d Author: Florin Braescu Date: Thu Oct 1 23:25:30 2009 +0300 xineramaproto: version bumped to 1.2. Require macros 1.3 for XORG_DEFAULT_OPTIONS. --- xorg7/proto/xineramaproto/CONFLICTS | 10 +++++----- xorg7/proto/xineramaproto/DETAILS | 14 +++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/xorg7/proto/xineramaproto/CONFLICTS b/xorg7/proto/xineramaproto/CONFLICTS index 5013182..fa885b1 100644 --- a/xorg7/proto/xineramaproto/CONFLICTS +++ b/xorg7/proto/xineramaproto/CONFLICTS @@ -1,6 +1,6 @@ -conflicts XOrg6 && -conflicts XOrg-test && -conflicts XOrg-fonts-base && -conflicts XOrg-fonts-extra && -conflicts XOrg-drm && +conflicts XOrg6 +conflicts XOrg-test +conflicts XOrg-fonts-base +conflicts XOrg-fonts-extra +conflicts XOrg-drm conflicts XOrg-drm-cvs diff --git a/xorg7/proto/xineramaproto/DETAILS b/xorg7/proto/xineramaproto/DETAILS index a2c058a..6cd90ee 100644 --- a/xorg7/proto/xineramaproto/DETAILS +++ b/xorg7/proto/xineramaproto/DETAILS @@ -1,16 +1,16 @@ MODULE=xineramaproto - VERSION=1.1.2 + VERSION=1.2 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/proto/ - SOURCE_VFY=sha1:d09ef306ffc0d058120051d88dd64776fd0de0d5 + SOURCE_URL=$XORG_URL/individual/proto + SOURCE_VFY=sha1:3c397c9ea38aaae785dd7901f250891dfa7f3249 MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org/ + WEB_SITE=http://www.x.org ENTERED=20060120 - UPDATED=20060120 - SHORT="the X.Org Xinerama protocol headers" + UPDATED=20091001 + SHORT="The X.Org Xinerama protocol headers" cat << EOF xineramaproto provides the wire protocol for the XINERAMA extension in -X.Org. It is used to use and manage a multiple-screen display. +X.Org. It is used to use and manage a multiple-screen display. EOF From florin at lunar-linux.org Thu Oct 1 22:37:18 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 23:37:18 +0300 Subject: [Lunar-commits] qjackctl: version bumped to 0.3.5. Message-ID: <20091001203848.B7A5C9B222@doppio.foo-projects.org> commit 6abd2a7325ed09882b659943f1f10720a00c858a Author: Florin Braescu Date: Thu Oct 1 23:37:18 2009 +0300 qjackctl: version bumped to 0.3.5. Support for UTF-8 client/port names has been added. Only one single patchbay connection is now allowed on exclusive sockets. Automatic crash-dump reports as debugger stack-traces are now enabled on debug builds. Client/port renaming has been fixed. A portaudio device selector is now available. Primitive D-Bus interface slots have been introduced. A command line option to activate a patchbay profile has been added. New tentative support for netjack (slave). Alternate icon sizes are now effective. There are a few other bugfixes. --- qt4-apps/qjackctl/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qt4-apps/qjackctl/DETAILS b/qt4-apps/qjackctl/DETAILS index dd61968..424b9c9 100644 --- a/qt4-apps/qjackctl/DETAILS +++ b/qt4-apps/qjackctl/DETAILS @@ -1,11 +1,11 @@ MODULE=qjackctl - VERSION=0.3.4 + VERSION=0.3.5 SOURCE=$MODULE-$VERSION.tar.gz - SOURCE_URL=$SFORGE_URL/$MODULE/ - SOURCE_VFY=sha1:33aa986c81b0cc6891c9c6cef6366470394d3eb6 + SOURCE_URL=$SFORGE_URL/$MODULE + SOURCE_VFY=sha1:74fa25eab4cbe0ae5194e0f3bf07c95458dd03a7 WEB_SITE=http://qjackctl.sf.net ENTERED=20040111 - UPDATED=20090623 + UPDATED=20091001 SHORT="A Qt application to control the JACK daemon" cat << EOF From florin at lunar-linux.org Thu Oct 1 22:46:02 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 23:46:02 +0300 Subject: [Lunar-commits] lxpanel: version bumped to 0.5.3. Message-ID: <20091001204639.16A389B222@doppio.foo-projects.org> commit e4da82a479153775f85af37fb20e847e01ad4d15 Author: Florin Braescu Date: Thu Oct 1 23:46:02 2009 +0300 lxpanel: version bumped to 0.5.3. Bugfixes and enhacements. --- lxde/lxpanel/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lxde/lxpanel/DETAILS b/lxde/lxpanel/DETAILS index a554059..3ede44c 100644 --- a/lxde/lxpanel/DETAILS +++ b/lxde/lxpanel/DETAILS @@ -1,11 +1,11 @@ MODULE=lxpanel - VERSION=0.4.1 + VERSION=0.5.3 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/lxde - SOURCE_VFY=sha1:e8ee6ed5097304cb82ce2ef5bd12e705b4f6c413 + SOURCE_VFY=sha1:1ef57049b7d6f699178a6796afb19fec86c107f0 WEB_SITE=http://lxde.org ENTERED=20061112 - UPDATED=20090711 + UPDATED=20091001 SHORT="A lightweight X11 desktop panel" cat << EOF From florin at lunar-linux.org Thu Oct 1 22:49:14 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 1 Oct 2009 23:49:14 +0300 Subject: [Lunar-commits] lxterminal: version bumped to 0.1.6. Message-ID: <20091001205005.C766F9B222@doppio.foo-projects.org> commit ff9849778b982a300002b0ee982ffa71450dc174 Author: Florin Braescu Date: Thu Oct 1 23:49:14 2009 +0300 lxterminal: version bumped to 0.1.6. Bugfixes release. --- lxde/lxterminal/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lxde/lxterminal/DETAILS b/lxde/lxterminal/DETAILS index 7cf3d28..d3d82e9 100644 --- a/lxde/lxterminal/DETAILS +++ b/lxde/lxterminal/DETAILS @@ -1,11 +1,11 @@ MODULE=lxterminal - VERSION=0.1.5 + VERSION=0.1.6 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/lxde - SOURCE_VFY=sha1:3daf24f01e520f86aadd8605308b5fc373015b6b + SOURCE_VFY=sha1:f2109f42d72ef43ab293128469dc561c2a4ce09b WEB_SITE=http://lxde.org ENTERED=20090713 - UPDATED=20090713 + UPDATED=20091001 SHORT="A VTE terminal for LXDE" MAINTAINER=florin at lunar-linux.org From zbiggy at lunar-linux.org Thu Oct 1 23:29:28 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Thu, 1 Oct 2009 23:29:28 +0200 Subject: [Lunar-commits] samba: security update Message-ID: <20091001212941.5F9479B222@doppio.foo-projects.org> commit a41da26e4944ba9f4eed7b62bbee3c6826241f9a Author: Zbigniew Luszpinski Date: Thu Oct 1 23:29:28 2009 +0200 samba: security update --- net/samba/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/samba/DETAILS b/net/samba/DETAILS index bce69fd..7a39dc6 100644 --- a/net/samba/DETAILS +++ b/net/samba/DETAILS @@ -1,5 +1,5 @@ MODULE=samba - VERSION=3.3.7 + VERSION=3.3.8 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL[0]=http://us1.samba.org/$MODULE/ftp SOURCE_URL[1]=http://us2.samba.org/$MODULE/ftp @@ -8,10 +8,10 @@ SOURCE_URL[4]=ftp://se.samba.org/pub/$MODULE SOURCE_URL[5]=ftp://de.samba.org/samba.org SOURCE_URL[6]=http://us1.samba.org/$MODULE/ftp/old-versions - SOURCE_VFY=sha1:b69c3591ba6d2145fc0a03d7edc4dda62c28f6b0 + SOURCE_VFY=sha1:8ec485e12227e3d1a1fa63e61605c5e2adb3c43e WEB_SITE=http://www.samba.org ENTERED=20010922 - UPDATED=20090805 + UPDATED=20091001 SHORT="Samba provides file and print services to SMB/CIFS clients" PSAFE=no From zbiggy at lunar-linux.org Thu Oct 1 23:33:47 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Thu, 1 Oct 2009 23:33:47 +0200 Subject: [Lunar-commits] openssh: updated to 5.3p1 Message-ID: <20091001213401.4BC519B222@doppio.foo-projects.org> commit 7ef11047b2ca111b793ca3e7141c6a353e9edc31 Author: Zbigniew Luszpinski Date: Thu Oct 1 23:33:47 2009 +0200 openssh: updated to 5.3p1 --- crypto/openssh/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/openssh/DETAILS b/crypto/openssh/DETAILS index 5763254..696daf8 100644 --- a/crypto/openssh/DETAILS +++ b/crypto/openssh/DETAILS @@ -1,5 +1,5 @@ MODULE=openssh - VERSION=5.2p1 + VERSION=5.3p1 SOURCE=$MODULE-$VERSION.tar.gz # SOURCE2=openssh-heimdal_no_des.patch.gz # SOURCE3=openssh-$VERSION-gsskex-20080404.patch @@ -7,7 +7,7 @@ SOURCE_URL[1]=ftp://ftp3.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable SOURCE_URL[2]=ftp://ftp5.usa.openbsd.org/pub/OpenBSD/OpenSSH/portable SOURCE_URL[3]=ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable - SOURCE_VFY=sha1:8273a0237db98179fbdc412207ff8eb14ff3d6de + SOURCE_VFY=sha1:d411fde2584ef6022187f565360b2c63a05602b5 # SOURCE2_URL=$PATCH_URL # SOURCE2_VFY=sha1:0e2228ba4564980fe0f60235559090ea7ba8c8f8 # SOURCE3_URL[0]=http://www.sxw.org.uk/computing/patches @@ -15,7 +15,7 @@ # SOURCE3_VFY=sha1:41dfe293b3a3c08163cd43926fefabd321f0c37f WEB_SITE=http://www.openssh.com ENTERED=20010922 - UPDATED=20090223 + UPDATED=20091001 SHORT="Client and server for encrypted remote logins and file transfers" cat << EOF From stumbles at lunar-linux.org Thu Oct 1 23:58:48 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 17:58:48 -0400 Subject: [Lunar-commits] alsaplayer: Adding a BUILD/patch to fix a glibc-2.10.1 build problem. Additionally, Message-ID: <20091001220316.DCE759B222@doppio.foo-projects.org> commit e4eac87250916b0e368f6a561e2317ae9e52ea75 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 17:58:48 2009 -0400 alsaplayer: Adding a BUILD/patch to fix a glibc-2.10.1 build problem. Additionally, I incorporated a few other patches from the gentoo folks; http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/alsaplayer/files/ --- audio/alsaplayer/BUILD | 7 +++++++ audio/alsaplayer/DETAILS | 5 ++++- 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/audio/alsaplayer/BUILD b/audio/alsaplayer/BUILD new file mode 100644 index 0000000..b1e4065 --- /dev/null +++ b/audio/alsaplayer/BUILD @@ -0,0 +1,7 @@ +( + + patch_it $SOURCE_CACHE/$SOURCE2 0 && + + default_build + +) > $C_FIFO 2>&1 diff --git a/audio/alsaplayer/DETAILS b/audio/alsaplayer/DETAILS index 4264e45..8e9a778 100644 --- a/audio/alsaplayer/DETAILS +++ b/audio/alsaplayer/DETAILS @@ -1,11 +1,14 @@ MODULE=alsaplayer VERSION=0.99.80 SOURCE=$MODULE-$VERSION.tar.gz + SOURCE2=alsaplayer-consolidated.1.patch SOURCE_URL=http://www.alsaplayer.org/ + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:fdbb4c069de186deb2437ef77b1d5b1188389510 + SOURCE2_VFY=09937cd514102ec50914351249edf0d62f5fdf60 WEB_SITE=http://www.alsaplayer.org ENTERED=20010922 - UPDATED=20071105 + UPDATED=20091001 SHORT="PCM player that makes heavy use of the ALSA" cat << EOF From zbiggy at lunar-linux.org Fri Oct 2 00:39:43 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Fri, 2 Oct 2009 00:39:43 +0200 Subject: [Lunar-commits] aria2: updated to 1.6.0 Message-ID: <20091001232917.E1E699B222@doppio.foo-projects.org> commit 22fc9115954af04d11b329a4db5de84aa776c58b Author: Zbigniew Luszpinski Date: Fri Oct 2 00:39:43 2009 +0200 aria2: updated to 1.6.0 --- zbeta/aria2/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/zbeta/aria2/DETAILS b/zbeta/aria2/DETAILS index d2ce0bb..2afb17a 100644 --- a/zbeta/aria2/DETAILS +++ b/zbeta/aria2/DETAILS @@ -1,11 +1,11 @@ MODULE=aria2 - VERSION=1.5.2 + VERSION=1.6.0 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:888fcfb0770fb7bad54e43bb151373e3ca2e8d18 + SOURCE_VFY=sha1:a481d06a9a61d8604ee4634e833fe9ccb3b5f093 WEB_SITE=http://aria2.sourceforge.net ENTERED=20071024 - UPDATED=20090822 + UPDATED=20090930 SHORT="Commandline downloader" cat << EOF From zbiggy at lunar-linux.org Fri Oct 2 00:40:55 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Fri, 2 Oct 2009 00:40:55 +0200 Subject: [Lunar-commits] iasl: updated to 20090903 Message-ID: <20091001232917.ED23A9B225@doppio.foo-projects.org> commit 4ada72d04be1eab2a4de4e9b9ebe24c257d20960 Author: Zbigniew Luszpinski Date: Fri Oct 2 00:40:55 2009 +0200 iasl: updated to 20090903 --- utils/iasl/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/iasl/DETAILS b/utils/iasl/DETAILS index 5a6d6a5..8202f98 100644 --- a/utils/iasl/DETAILS +++ b/utils/iasl/DETAILS @@ -1,12 +1,12 @@ MODULE=iasl - VERSION=20090730 + VERSION=20090903 SOURCE=acpica-unix-$VERSION.tar.gz SOURCE_DIRECTORY=$BUILD_DIRECTORY/acpica-unix-$VERSION SOURCE_URL=http://www.acpica.org/download/ - SOURCE_VFY=sha1:5f83e9a47356cd756cb7e9b5f0f8b94b03f3abc6 + SOURCE_VFY=sha1:4c11d015dd7f1b9c9805588739275869f9b27d64 WEB_SITE=http://www.acpica.org/ ENTERED=20071004 - UPDATED=20090829 + UPDATED=20090926 MODULE_LICENSE="other" SHORT="Intel ACPI build environment" PSAFE=no From zbiggy at lunar-linux.org Fri Oct 2 01:40:06 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Fri, 2 Oct 2009 01:40:06 +0200 Subject: [Lunar-commits] openldap: updated to 2.4.18 Message-ID: <20091001234023.1EC869B222@doppio.foo-projects.org> commit d0dae06b893436cacef40d30bf7941ac7cdec595 Author: Zbigniew Luszpinski Date: Fri Oct 2 01:40:06 2009 +0200 openldap: updated to 2.4.18 --- utils/openldap/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/openldap/DETAILS b/utils/openldap/DETAILS index 9633958..d38a97b 100644 --- a/utils/openldap/DETAILS +++ b/utils/openldap/DETAILS @@ -1,11 +1,11 @@ MODULE=openldap - VERSION=2.4.17 + VERSION=2.4.18 SOURCE=$MODULE-$VERSION.tgz SOURCE_URL=ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release - SOURCE_VFY=sha1:a6efcf7b680f6c7665574002cac8f2eefd24b79a + SOURCE_VFY=sha1:13adeb6438973d8b2b31e2205a92890396445556 WEB_SITE=http://www.openldap.org ENTERED=20010922 - UPDATED=20090714 + UPDATED=20090926 SHORT="Fully featured open source LDAP software suite" PSAFE=no From zbiggy at lunar-linux.org Fri Oct 2 01:50:18 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Fri, 2 Oct 2009 01:50:18 +0200 Subject: [Lunar-commits] slang: updated to 2.1.4 Message-ID: <20091001235259.354089B222@doppio.foo-projects.org> commit 0a5ebdfb090b657620469fa5ec5b3830814abea8 Author: Zbigniew Luszpinski Date: Fri Oct 2 01:50:18 2009 +0200 slang: updated to 2.1.4 --- libs/slang/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/slang/DETAILS b/libs/slang/DETAILS index 99e719c..ebe858f 100644 --- a/libs/slang/DETAILS +++ b/libs/slang/DETAILS @@ -1,12 +1,12 @@ MODULE=slang - VERSION=2.1.3 + VERSION=2.1.4 SOURCE=slang-$VERSION.tar.bz2 SOURCE_URL[0]=ftp://space.mit.edu/pub/davis/slang/v2.1/ SOURCE_URL[1]=ftp://ftp.plig.org/pub/slang/v2.1/ - SOURCE_VFY=sha1:31fc6162684f69d9dd0377372dfdc336f0c4343a + SOURCE_VFY=sha1:8670420f870f3f5b92e72ec5962aefa52fd546a5 WEB_SITE=http://www.s-lang.org/ ENTERED=20050821 - UPDATED=20071209 + UPDATED=20091001 SHORT="Powerful interpreted language" PSAFE=no From stumbles at lunar-linux.org Fri Oct 2 04:09:24 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 1 Oct 2009 22:09:24 -0400 Subject: [Lunar-commits] clisp: Adding another optional_depends. If/when we switch to texlive and you choose to Message-ID: <20091002021122.BC6949B225@doppio.foo-projects.org> commit c8325c44d4442d3e58eb7836a4bf6e806cc2c758 Author: Dennis `stumbles` Veatch Date: Thu Oct 1 22:09:24 2009 -0400 clisp: Adding another optional_depends. If/when we switch to texlive and you choose to use clisp instead of gcl; clisp needs to be compiled with ffcall, else texlive compile barfs. I have not tried gcl to see if a similar issue will crop up. --- compilers/clisp/DEPENDS | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/compilers/clisp/DEPENDS b/compilers/clisp/DEPENDS index e365bf0..79ec6fd 100644 --- a/compilers/clisp/DEPENDS +++ b/compilers/clisp/DEPENDS @@ -1 +1,2 @@ optional_depends libsigsegv "" "--ignore-absence-of-libsigsegv" "for garbage collection and stack overflow support" +optional_depends ffcall "" "" "for foreign function call support" From florin at lunar-linux.org Fri Oct 2 05:45:12 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 2 Oct 2009 06:45:12 +0300 Subject: [Lunar-commits] gnash: version bumped to 0.8.6. Message-ID: <20091002034535.AC3EB9B222@doppio.foo-projects.org> commit acc82ce04c7bb622f6d203006b7086ad2b4094a1 Author: Florin Braescu Date: Fri Oct 2 06:45:12 2009 +0300 gnash: version bumped to 0.8.6. Bugfixes and improvements. --- zbeta/gnash/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/zbeta/gnash/DETAILS b/zbeta/gnash/DETAILS index 2af5bbb..9baebc6 100644 --- a/zbeta/gnash/DETAILS +++ b/zbeta/gnash/DETAILS @@ -1,11 +1,11 @@ MODULE=gnash - VERSION=0.8.3 + VERSION=0.8.6 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://ftp.gnu.org/gnu/gnash/$VERSION - SOURCE_VFY=sha1:3cd4a0930e772a42b0155295fca292fd94be7c42 + SOURCE_VFY=sha1:11c115f45b3803b157f65f30f1f65d26fea34328 WEB_SITE=http://www.gnu.org/software/gnash ENTERED=20061118 - UPDATED=20080618 + UPDATED=20091001 SHORT="A GNU Flash movie player" cat << EOF From florin at lunar-linux.org Fri Oct 2 05:49:01 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 2 Oct 2009 06:49:01 +0300 Subject: [Lunar-commits] remove them. included by mistake. Message-ID: <20091002034930.A04989B222@doppio.foo-projects.org> commit 54b638e8c8b0f0be012d1f94cfb5752715da80d2 Author: Florin Braescu Date: Fri Oct 2 06:49:01 2009 +0300 remove them. included by mistake. --- zlocal/texlive-texmf/DETAILS | 14 -------------- zlocal/texlive/BUILD | 5 ----- zlocal/texlive/DEPENDS | 7 ------- zlocal/texlive/DETAILS | 20 -------------------- 4 files changed, 0 insertions(+), 46 deletions(-) diff --git a/zlocal/texlive-texmf/DETAILS b/zlocal/texlive-texmf/DETAILS deleted file mode 100644 index d5de45d..0000000 --- a/zlocal/texlive-texmf/DETAILS +++ /dev/null @@ -1,14 +0,0 @@ - MODULE=texlive-texmf - VERSION=20080822 - SOURCE=texlive-$VERSION-texmf.tar.lzma -SOURCE_DIRECTORY=$BUILD_DIRECTORY/texlive-$VERSION-texmf - SOURCE_URL=ftp://tug.org/texlive/historic/2008 - SOURCE_VFY=sha1: - WEB_SITE=http://tug.org/texlive - ENTERED=20090901 - UPDATED=20090901 - PSAFE=no - SHORT="" - -cat << EOF -EOF diff --git a/zlocal/texlive/BUILD b/zlocal/texlive/BUILD deleted file mode 100644 index f53c05f..0000000 --- a/zlocal/texlive/BUILD +++ /dev/null @@ -1,5 +0,0 @@ -( - - ./Build - -) > $C_FIFO 2>&1 diff --git a/zlocal/texlive/DEPENDS b/zlocal/texlive/DEPENDS deleted file mode 100644 index f555a42..0000000 --- a/zlocal/texlive/DEPENDS +++ /dev/null @@ -1,7 +0,0 @@ -depends dialog -depends zlib -depends texinfo -depends bison - -optional_depends "%X" "" "--without-x11" "for GUI support" -optional_depends "libpng" "--with-system-pnglib" "" "for png support" diff --git a/zlocal/texlive/DETAILS b/zlocal/texlive/DETAILS deleted file mode 100644 index 87d37b1..0000000 --- a/zlocal/texlive/DETAILS +++ /dev/null @@ -1,20 +0,0 @@ - MODULE=texlive - VERSION=20080816 - SOURCE=$MODULE-$VERSION-source.tar.lzma -SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION-source - SOURCE_URL[0]=http://ctan.org/get/systems/texlive/Source - SOURCE_URL[1]=ftp://tug.org/texlive/historic/2008 - SOURCE_VFY=sha1:730986c628bd658b5062face9e400f61203d6b8d - WEB_SITE=http://tug.org/texlive - ENTERED=20090901 - UPDATED=20090901 - PSAFE=no - SHORT="" - -cat << EOF -TeX Live is an easy way to get up and running with TeX. It provides -a comprehensive TeX system with binaries for most flavors of Unix, -including GNU/Linux, and also Windows. It includes all the major -TeX-related programs, macro packages, and fonts that are free software, -including support for many languages around the world. -EOF From brebs at lunar-linux.org Fri Oct 2 11:33:54 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Fri, 2 Oct 2009 16:33:54 +0700 Subject: [Lunar-commits] glibc: use .bz2 file Message-ID: <20091002093503.621C79B222@doppio.foo-projects.org> commit 26bddac6e71c1ea2fc3be90a52467b33caa7759d Author: Paul Bredbury Date: Fri Oct 2 16:33:54 2009 +0700 glibc: use .bz2 file So that the extraction from $SOURCE in CONFIGURE works again. Add http://www.mirrorservice.org/ mirror. --- libs/glibc/DETAILS | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libs/glibc/DETAILS b/libs/glibc/DETAILS index dbc1a61..40ea85e 100644 --- a/libs/glibc/DETAILS +++ b/libs/glibc/DETAILS @@ -1,24 +1,27 @@ MODULE=glibc VERSION=2.10.1 - SOURCE=$MODULE-$VERSION.tar.gz + SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE2=$MODULE-libidn-$VERSION.tar.bz2 SOURCE3=$MODULE-$VERSION-no_timezones.patch SOURCE_URL[0]=$GNU_URL/$MODULE SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE + SOURCE_URL[2]=http://www.mirrorservice.org/sites/ftp.gnu.org/gnu/glibc/ SOURCE2_URL[0]=$GNU_URL/$MODULE SOURCE2_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE + SOURCE2_URL[2]=http://www.mirrorservice.org/sites/ftp.gnu.org/gnu/glibc/ SOURCE3_URL=$PATCH_URL - SOURCE_VFY=sha1:e185b1faa54b734f9baba815142e9abf6c02054b + SOURCE_VFY=sha1:cb478cf9d6e2c905a1a4f4a2cae44a320b8dc50b SOURCE2_VFY=sha1:50c1ac0d9ddff6eb83f75aa1c4cb84ba6fffa0cd SOURCE3_VFY=sha1:9163df279f04efcc37a146115534e9fd0f9a19c5 WEB_SITE=http://www.gnu.org/software/libc ENTERED=20010922 UPDATED=20090923 SHORT="C library for use with GNU/Hurd and GNU/Linux" -PSAFE=no + PSAFE=no cat << EOF glibc - Library for use with GNU/Hurd and GNU/Linux. + GNU C Library is one of the most important components of the GNU Hurd and most modern Linux distributions. It is used by almost all C programs and provides the most essential program interface. From florin at lunar-linux.org Fri Oct 2 12:44:03 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 2 Oct 2009 13:44:03 +0300 Subject: [Lunar-commits] smb4k4: a smb4k port to KDE 4.x. Message-ID: <20091002104437.0A5989B228@doppio.foo-projects.org> commit c020feafb035b3bdf7c49c2d4002c19751f12a48 Author: Florin Braescu Date: Fri Oct 2 13:44:03 2009 +0300 smb4k4: a smb4k port to KDE 4.x. --- kde4/utils/smb4k4/BUILD | 13 +++++++++++++ kde4/utils/smb4k4/DEPENDS | 1 + kde4/utils/smb4k4/DETAILS | 30 ++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 0 deletions(-) diff --git a/kde4/utils/smb4k4/BUILD b/kde4/utils/smb4k4/BUILD new file mode 100644 index 0000000..f50be2e --- /dev/null +++ b/kde4/utils/smb4k4/BUILD @@ -0,0 +1,13 @@ +( + + KDE4_BUILD_DIR="$SOURCE_DIRECTORY/kde4-build" + + source /etc/profile.d/qt4.rc && + source /etc/profile.d/kde4.rc && + + cmake $SOURCE_DIRECTORY/ -DCMAKE_INSTALL_PREFIX=$MODULE_PREFIX \ + -DCMAKE_BUILD_TYPE=RELEASE . && + + default_make + +) > $C_FIFO 2>&1 diff --git a/kde4/utils/smb4k4/DEPENDS b/kde4/utils/smb4k4/DEPENDS new file mode 100644 index 0000000..da753ab --- /dev/null +++ b/kde4/utils/smb4k4/DEPENDS @@ -0,0 +1 @@ +depends kdelibs4 \ No newline at end of file diff --git a/kde4/utils/smb4k4/DETAILS b/kde4/utils/smb4k4/DETAILS new file mode 100644 index 0000000..070bd23 --- /dev/null +++ b/kde4/utils/smb4k4/DETAILS @@ -0,0 +1,30 @@ + MODULE=smb4k4 + VERSION=0.10.3 + SOURCE=smb4k-$VERSION.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/smb4k-$VERSION + SOURCE_URL=http://download.berlios.de/smb4k + SOURCE_VFY=sha1:425401dea0534da6f813f04335cde36a8e499355 + MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/} + WEB_SITE=http://smb4k.berlios.de + ENTERED=20091002 + UPDATED=20091002 + SHORT="SMB share browser for KDE" + +cat << EOF +Smb4K is an SMB share browser for KDE4. Its aim is to provide a tool for an +easy access to the SMB shares of your local network neighborhood. + +Features so far: +- Scanning for (active) workgroups, hosts, and shares +- Mounting/unmounting of SMB shares, including unmounting all shares at once +- Access to the files of a mounted SMB share using Konqueror +- Auto-detection of external mounts/unmounts +- Mounting of recently used shares on start-up +- Miscellaneous infos about the SMB shares +- Basic network search +- WINS server support +- Preview of SMB shares +- Selectable look-up method +- Default login +- Translations +EOF From florin at lunar-linux.org Fri Oct 2 13:28:43 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 2 Oct 2009 14:28:43 +0300 Subject: [Lunar-commits] xineramaproto: revert it to 1.1.2 version. Message-ID: <20091002112914.74CBE9B229@doppio.foo-projects.org> commit c3b666694e2c477febb64d1f6ea2b0695cd6de4c Author: Florin Braescu Date: Fri Oct 2 14:28:43 2009 +0300 xineramaproto: revert it to 1.1.2 version. It breaks xorg-server compile. --- xorg7/proto/xineramaproto/DETAILS | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xorg7/proto/xineramaproto/DETAILS b/xorg7/proto/xineramaproto/DETAILS index 6cd90ee..79647d4 100644 --- a/xorg7/proto/xineramaproto/DETAILS +++ b/xorg7/proto/xineramaproto/DETAILS @@ -1,12 +1,12 @@ MODULE=xineramaproto - VERSION=1.2 + VERSION=1.1.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$XORG_URL/individual/proto SOURCE_VFY=sha1:3c397c9ea38aaae785dd7901f250891dfa7f3249 MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://www.x.org ENTERED=20060120 - UPDATED=20091001 + UPDATED=20060120 SHORT="The X.Org Xinerama protocol headers" cat << EOF From florin at lunar-linux.org Fri Oct 2 13:33:41 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 2 Oct 2009 14:33:41 +0300 Subject: [Lunar-commits] xorg-server: version bumped to 1.6.4. Message-ID: <20091002113403.016529B228@doppio.foo-projects.org> commit 2f0ed988c2fcb2eb2ef5eb3d6ef18d5117083886 Author: Florin Braescu Date: Fri Oct 2 14:33:41 2009 +0300 xorg-server: version bumped to 1.6.4. Bugfixes and enhacements. --- xorg7/xorg-server/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xorg7/xorg-server/DETAILS b/xorg7/xorg-server/DETAILS index 5ca447c..1eb485c 100644 --- a/xorg7/xorg-server/DETAILS +++ b/xorg7/xorg-server/DETAILS @@ -1,12 +1,12 @@ MODULE=xorg-server - VERSION=1.6.3 + VERSION=1.6.4 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$XORG_URL/individual/xserver - SOURCE_VFY=sha1:1f28e8723e110e5c1a1adf3bc89325a81a526184 + SOURCE_VFY=sha1:9d37f9c14984568afddf0aa84f8409f895277255 MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://www.x.org ENTERED=20060120 - UPDATED=20090802 + UPDATED=20091002 MAINTAINER=elangelo at lunar-linux.org SHORT="The X.Org X11R7 server for the X Window System" From florin at lunar-linux.org Fri Oct 2 13:39:41 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 2 Oct 2009 14:39:41 +0300 Subject: [Lunar-commits] xineramaproto: fix the sha1sum. Message-ID: <20091002113955.AF45F9B228@doppio.foo-projects.org> commit 4822efb804815fc73fb2ef9e7a68b529b4376971 Author: Florin Braescu Date: Fri Oct 2 14:39:41 2009 +0300 xineramaproto: fix the sha1sum. --- xorg7/proto/xineramaproto/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xorg7/proto/xineramaproto/DETAILS b/xorg7/proto/xineramaproto/DETAILS index 79647d4..5d362b8 100644 --- a/xorg7/proto/xineramaproto/DETAILS +++ b/xorg7/proto/xineramaproto/DETAILS @@ -2,7 +2,7 @@ VERSION=1.1.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$XORG_URL/individual/proto - SOURCE_VFY=sha1:3c397c9ea38aaae785dd7901f250891dfa7f3249 + SOURCE_VFY=sha1:d09ef306ffc0d058120051d88dd64776fd0de0d5 MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://www.x.org ENTERED=20060120 From brebs at lunar-linux.org Fri Oct 2 13:50:20 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Fri, 2 Oct 2009 18:50:20 +0700 Subject: [Lunar-commits] NVIDIA-beta: compile with xf86vidmodeproto 2.3 Message-ID: <20091002115038.88B4D9B228@doppio.foo-projects.org> commit 58899ade39ca1f86df7db3ed11e951bff954e4e0 Author: Paul Bredbury Date: Fri Oct 2 18:50:20 2009 +0700 NVIDIA-beta: compile with xf86vidmodeproto 2.3 --- x11/NVIDIA-beta/BUILD | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/x11/NVIDIA-beta/BUILD b/x11/NVIDIA-beta/BUILD index e3e2693..f04150d 100644 --- a/x11/NVIDIA-beta/BUILD +++ b/x11/NVIDIA-beta/BUILD @@ -44,6 +44,12 @@ cd $SOURCE_DIRECTORY/nvidia-settings-$VERSION && sedit 's/-O -DNDEBUG/-DNDEBUG/' Makefile && sedit '/CFLAGS = -Wall -g/d' src/XF86Config-parser/Makefile && + + # xf86vmode.h has been removed in xf86vidmodeproto 2.3 + if [[ ! -e /usr/include/X11/extensions/xf86vmode.h ]] ; then + sedit "s:#include :#include :" src/libXNVCtrlAttributes/NvCtrlAttributes{,VidMode,Glx}.c + fi && + make clean && make && make install ROOT=$SOURCE_DIRECTORY && From florin at lunar-linux.org Fri Oct 2 13:54:40 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 2 Oct 2009 14:54:40 +0300 Subject: [Lunar-commits] Revert "xf86vidmodeproto: version bumped to 2.3." Message-ID: <20091002115525.992819B228@doppio.foo-projects.org> commit cbede5bd717938ca272f500396980e1cc9e253c7 Author: Florin Braescu Date: Fri Oct 2 14:54:40 2009 +0300 Revert "xf86vidmodeproto: version bumped to 2.3." This reverts commit 464edcefe56c7532966c1a7a5c09696414541f06. xf86vidmodeproto: revert it as it breaks mesa-lib compile. --- xorg7/proto/xf86vidmodeproto/CONFLICTS | 10 +++++----- xorg7/proto/xf86vidmodeproto/DETAILS | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/xorg7/proto/xf86vidmodeproto/CONFLICTS b/xorg7/proto/xf86vidmodeproto/CONFLICTS index fa885b1..5013182 100644 --- a/xorg7/proto/xf86vidmodeproto/CONFLICTS +++ b/xorg7/proto/xf86vidmodeproto/CONFLICTS @@ -1,6 +1,6 @@ -conflicts XOrg6 -conflicts XOrg-test -conflicts XOrg-fonts-base -conflicts XOrg-fonts-extra -conflicts XOrg-drm +conflicts XOrg6 && +conflicts XOrg-test && +conflicts XOrg-fonts-base && +conflicts XOrg-fonts-extra && +conflicts XOrg-drm && conflicts XOrg-drm-cvs diff --git a/xorg7/proto/xf86vidmodeproto/DETAILS b/xorg7/proto/xf86vidmodeproto/DETAILS index bb5db75..a10fb43 100644 --- a/xorg7/proto/xf86vidmodeproto/DETAILS +++ b/xorg7/proto/xf86vidmodeproto/DETAILS @@ -1,17 +1,17 @@ MODULE=xf86vidmodeproto - VERSION=2.3 + VERSION=2.2.2 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/proto - SOURCE_VFY=sha1:22d034c2f66985f8541b9ea3421096ceaa006355 + SOURCE_URL=$XORG_URL/individual/proto/ + SOURCE_VFY=sha1:4a228958879eb06206d13f4f09ec902f837fb8dd MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org + WEB_SITE=http://www.x.org/ ENTERED=20060120 UPDATED=20060120 - SHORT="The X.Org Video Mode protocol headers" + SHORT="the X.Org Video Mode protocol headers" cat << EOF xf86vidmodeproto provides the wire protocol for the XFree86-VidMode -extension in X.Org. It is used to provide access to detailed timings +extension in X.Org. It is used to provide access to detailed timings of video modes currently in use, and provides a means to modify them. EOF From florin at lunar-linux.org Fri Oct 2 15:50:37 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 2 Oct 2009 16:50:37 +0300 Subject: [Lunar-commits] fcron: remove it from the moonbase. it's old and unmaintained. Message-ID: <20091002135107.055BB9B228@doppio.foo-projects.org> commit bebd341ed14b356dbc8c633a0888d7aac3f12f48 Author: Florin Braescu Date: Fri Oct 2 16:50:37 2009 +0300 fcron: remove it from the moonbase. it's old and unmaintained. --- utils/fcron/BUILD | 31 ------------------------------- utils/fcron/CONFLICTS | 3 --- utils/fcron/DEPENDS | 4 ---- utils/fcron/DETAILS | 19 ------------------- utils/fcron/init.d/crond | 15 --------------- utils/fcron/pam.d/fcron | 7 ------- 6 files changed, 0 insertions(+), 79 deletions(-) diff --git a/utils/fcron/BUILD b/utils/fcron/BUILD deleted file mode 100644 index 87fd56f..0000000 --- a/utils/fcron/BUILD +++ /dev/null @@ -1,31 +0,0 @@ -( - - EDITOR=`which $EDITOR 2>/dev/null` || - EDITOR=`which nano` - - add_priv_user fcron:fcron - - sedit "s/-O2/$CFLAGS/" configure - - OPTS="$OPTS --prefix=/usr \ - --sysconfdir=/etc \ - --with-piddir=/var/run \ - --with-answer-all=no \ - --without-sendmail \ - --with-editor=$EDITOR" && - - default_build && - - if [ -e /etc/init.d/fcron.sh ]; then - rm -f /etc/init.d/fcron.sh - rm -f /etc/rc?.d/???fcron.sh - fi - if [ -e /etc/init.d/crond ]; then - rm -f /etc/init.d/crond - rm -f /etc/rc?.d/???crond - fi - - [ -e /etc/fcron.allow ] || cp files/fcron.allow /etc - [ -e /etc/fcron.deny ] || cp files/fcron.deny /etc - -) > $C_FIFO 2>&1 diff --git a/utils/fcron/CONFLICTS b/utils/fcron/CONFLICTS deleted file mode 100644 index b4981ed..0000000 --- a/utils/fcron/CONFLICTS +++ /dev/null @@ -1,3 +0,0 @@ -conflicts hc-cron -conflicts vixie-cron -conflicts cronie diff --git a/utils/fcron/DEPENDS b/utils/fcron/DEPENDS deleted file mode 100644 index 2379fec..0000000 --- a/utils/fcron/DEPENDS +++ /dev/null @@ -1,4 +0,0 @@ -depends chkconfig -depends perl - -optional_depends Linux-PAM "--with-pam=yes" "--with-pam=no" "Use PAM support" diff --git a/utils/fcron/DETAILS b/utils/fcron/DETAILS deleted file mode 100644 index 5185ed1..0000000 --- a/utils/fcron/DETAILS +++ /dev/null @@ -1,19 +0,0 @@ - MODULE=fcron - VERSION=3.0.4 - SOURCE=$MODULE-$VERSION.src.tar.gz - SOURCE_URL=http://fcron.free.fr/archives/ - SOURCE_VFY=sha1:daaa5287be026a425ea5bb56959ad38b1b6d030a - WEB_SITE=http://fcron.free.fr - ENTERED=20010922 - UPDATED=20071109 - SHORT="Superior periodic scheduler" - -cat << EOF -Fcron is a periodical command scheduler which aims at replacing vixie -cron, so it implements most of its functionality. It does not assume -that your system is running either all the time or regularly: you can, -for instance, tell fcron to execute tasks every x hours y minutes of -system uptime or to do a job only once in a specified interval of time. -You can also set a nice value to a job, run it depending on the system -load average, and much more. -EOF diff --git a/utils/fcron/init.d/crond b/utils/fcron/init.d/crond deleted file mode 100755 index 75fbff0..0000000 --- a/utils/fcron/init.d/crond +++ /dev/null @@ -1,15 +0,0 @@ -#! /bin/bash -# -# fcron Start/Stop the cron clock daemon. -# -# chkconfig: 2345 90 60 -# description: cron is a standard UNIX program that runs user-specified \ -# programs at periodic scheduled times. vixie cron adds a \ -# number of features to the basic UNIX cron, including better \ -# security and more powerful configuration options. -# processname: /usr/sbin/fcron -# pidfile: /var/run/fcron.pid - -ARGS="-b" - -. /lib/lsb/init-functions diff --git a/utils/fcron/pam.d/fcron b/utils/fcron/pam.d/fcron deleted file mode 100644 index 0986b8b..0000000 --- a/utils/fcron/pam.d/fcron +++ /dev/null @@ -1,7 +0,0 @@ -# -# The PAM configuration file for the `fcron' service -# -account required pam_unix.so -auth required pam_unix.so nullok -auth required pam_env.so -session required pam_unix.so From florin at lunar-linux.org Sat Oct 3 22:47:23 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sat, 3 Oct 2009 23:47:23 +0300 Subject: [Lunar-commits] Revert "dmxproto: version bum[ed to 2.3." Message-ID: <20091003204921.0EEB39B229@doppio.foo-projects.org> commit 1283f6c7d884e2be557ff1da27f1c564008c4636 Author: Florin Braescu Date: Sat Oct 3 23:47:23 2009 +0300 Revert "dmxproto: version bum[ed to 2.3." This reverts commit 5fda3aedaaf8ed0d4a42470d121aa4bdf15d5c68. dmxproto: revert it to 2.2.2 version it breaks libdmx compile. --- xorg7/proto/dmxproto/CONFLICTS | 10 +++++----- xorg7/proto/dmxproto/DETAILS | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/xorg7/proto/dmxproto/CONFLICTS b/xorg7/proto/dmxproto/CONFLICTS index fa885b1..5013182 100644 --- a/xorg7/proto/dmxproto/CONFLICTS +++ b/xorg7/proto/dmxproto/CONFLICTS @@ -1,6 +1,6 @@ -conflicts XOrg6 -conflicts XOrg-test -conflicts XOrg-fonts-base -conflicts XOrg-fonts-extra -conflicts XOrg-drm +conflicts XOrg6 && +conflicts XOrg-test && +conflicts XOrg-fonts-base && +conflicts XOrg-fonts-extra && +conflicts XOrg-drm && conflicts XOrg-drm-cvs diff --git a/xorg7/proto/dmxproto/DETAILS b/xorg7/proto/dmxproto/DETAILS index 50eab8e..8ca1caf 100644 --- a/xorg7/proto/dmxproto/DETAILS +++ b/xorg7/proto/dmxproto/DETAILS @@ -1,13 +1,13 @@ MODULE=dmxproto - VERSION=2.3 + VERSION=2.2.2 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/proto - SOURCE_VFY=sha1:a3636d1b54d7bbf273f28c0d3c44101777047865 + SOURCE_URL=$XORG_URL/individual/proto/ + SOURCE_VFY=sha1:80c573166ec3b9f17893e2fff84ce0107045faac MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org + WEB_SITE=http://www.x.org/ ENTERED=20060120 - UPDATED=20091001 - SHORT="The X.Org DMX protocol headers" + UPDATED=20060120 + SHORT="the X.Org DMX protocol headers" cat << EOF dmxproto provides the wire protocol for the DMX extension in X.Org. From florin at lunar-linux.org Sat Oct 3 22:49:54 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sat, 3 Oct 2009 23:49:54 +0300 Subject: [Lunar-commits] Revert "xf86dgaproto: version bumped to 2.1." Message-ID: <20091003205029.290FF9B229@doppio.foo-projects.org> commit 7665a6db21e753ce53772f02b16acf72a18e01cc Author: Florin Braescu Date: Sat Oct 3 23:49:54 2009 +0300 Revert "xf86dgaproto: version bumped to 2.1." This reverts commit d66bd6a991c3e6530cad12da56b774d348a443fc. xf86dgaproto:: revert it to 2.1 version. it breaks some compiles. --- xorg7/proto/xf86dgaproto/CONFLICTS | 10 +++++----- xorg7/proto/xf86dgaproto/DETAILS | 14 +++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/xorg7/proto/xf86dgaproto/CONFLICTS b/xorg7/proto/xf86dgaproto/CONFLICTS index fa885b1..5013182 100644 --- a/xorg7/proto/xf86dgaproto/CONFLICTS +++ b/xorg7/proto/xf86dgaproto/CONFLICTS @@ -1,6 +1,6 @@ -conflicts XOrg6 -conflicts XOrg-test -conflicts XOrg-fonts-base -conflicts XOrg-fonts-extra -conflicts XOrg-drm +conflicts XOrg6 && +conflicts XOrg-test && +conflicts XOrg-fonts-base && +conflicts XOrg-fonts-extra && +conflicts XOrg-drm && conflicts XOrg-drm-cvs diff --git a/xorg7/proto/xf86dgaproto/DETAILS b/xorg7/proto/xf86dgaproto/DETAILS index 92f052d..434bdf6 100644 --- a/xorg7/proto/xf86dgaproto/DETAILS +++ b/xorg7/proto/xf86dgaproto/DETAILS @@ -1,16 +1,16 @@ MODULE=xf86dgaproto - VERSION=2.1 + VERSION=2.0.3 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/proto - SOURCE_VFY=sha1:97a06120e7195c968875e8ba42e82c90ab54948b + SOURCE_URL=$XORG_URL/individual/proto/ + SOURCE_VFY=sha1:29848f51d906b12025dab55d42a53e8c2f96a3ef MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org + WEB_SITE=http://www.x.org/ ENTERED=20060120 - UPDATED=20091001 - SHORT="The X.Org XFree86-DGA protocol headers" + UPDATED=20070910 + SHORT="the X.Org XFree86-DGA protocol headers" cat << EOF xf86dgaproto provides the wire protocol for the XFree86-DGA extension -in X.Org. It provides direct, framebuffer-like, graphics access. +in X.Org. It provides direct, framebuffer-like, graphics access. EOF From florin at lunar-linux.org Sat Oct 3 23:09:04 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 4 Oct 2009 00:09:04 +0300 Subject: [Lunar-commits] Revert "recordproto: version bumped to 1.14." Message-ID: <20091003210935.26F1D9B229@doppio.foo-projects.org> commit 7e51e0ed6f461cc3aea8f54ed6cc09286115c139 Author: Florin Braescu Date: Sun Oct 4 00:09:04 2009 +0300 Revert "recordproto: version bumped to 1.14." This reverts commit 9653a44d5092ab3228e2af1474fb010841a5164c. recordproto: revert it because it breaks libXtst compile. --- xorg7/proto/recordproto/CONFLICTS | 10 +++++----- xorg7/proto/recordproto/DETAILS | 14 +++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/xorg7/proto/recordproto/CONFLICTS b/xorg7/proto/recordproto/CONFLICTS index fa885b1..5013182 100644 --- a/xorg7/proto/recordproto/CONFLICTS +++ b/xorg7/proto/recordproto/CONFLICTS @@ -1,6 +1,6 @@ -conflicts XOrg6 -conflicts XOrg-test -conflicts XOrg-fonts-base -conflicts XOrg-fonts-extra -conflicts XOrg-drm +conflicts XOrg6 && +conflicts XOrg-test && +conflicts XOrg-fonts-base && +conflicts XOrg-fonts-extra && +conflicts XOrg-drm && conflicts XOrg-drm-cvs diff --git a/xorg7/proto/recordproto/DETAILS b/xorg7/proto/recordproto/DETAILS index 8c096cb..66e7f5f 100644 --- a/xorg7/proto/recordproto/DETAILS +++ b/xorg7/proto/recordproto/DETAILS @@ -1,15 +1,15 @@ MODULE=recordproto - VERSION=1.14 + VERSION=1.13.2 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/proto - SOURCE_VFY=sha1:212928572898ed150366c6026e2694b193ff9f79 + SOURCE_URL=$XORG_URL/individual/proto/ + SOURCE_VFY=sha1:833ef2bc4b084281f85eeba5d4ba03441bd3a534 MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org + WEB_SITE=http://www.x.org/ ENTERED=20060120 - UPDATED=20091001 - SHORT="The X.Org Record protocol headers" + UPDATED=20060120 + SHORT="the X.Org Record protocol headers" cat << EOF recordproto provides the wire protocol for the Record extension in -X.Org. It is used to record and play back event sequences. +X.Org. It is used to record and play back event sequences. EOF From stumbles at lunar-linux.org Sun Oct 4 00:39:20 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sat, 3 Oct 2009 18:39:20 -0400 Subject: [Lunar-commits] konversation4: Version bump. Message-ID: <20091003223939.74C299B22A@doppio.foo-projects.org> commit aefe46fd9ae9d7443adccb397f79de0579128b3e Author: Dennis `stumbles` Veatch Date: Sat Oct 3 18:39:20 2009 -0400 konversation4: Version bump. --- zbeta/konversation4/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/zbeta/konversation4/DETAILS b/zbeta/konversation4/DETAILS index ee604fd..8b9032c 100644 --- a/zbeta/konversation4/DETAILS +++ b/zbeta/konversation4/DETAILS @@ -1,13 +1,13 @@ MODULE=konversation4 - VERSION=1.2-beta1 + VERSION=1.2-rc1 SOURCE=konversation-$VERSION.tar.bz2 - SOURCE_URL=http://download.berlios.de/konversation/ + SOURCE_URL=$KDE_URL/unstable/konversation/$VERSION/src SOURCE_DIRECTORY=$BUILD_DIRECTORY/konversation-$VERSION - SOURCE_VFY=sha1:b4937d8da42677b4f067c31e312cae5f5fe0b599 + SOURCE_VFY=sha1:3c0a251e78b7b824623e106f4e1050c2f82ca213 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://konversation.kde.org/ ENTERED=20090329 - UPDATED=20090922 + UPDATED=20091003 SHORT="a kde4 irc chat program" cat << EOF From florin at lunar-linux.org Sun Oct 4 03:04:09 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 4 Oct 2009 04:04:09 +0300 Subject: [Lunar-commits] sdparm: version bumped to 1.04. Message-ID: <20091004010501.DFB9C9B229@doppio.foo-projects.org> commit 38e7b01fd4df40e200ddb89052abb726c983e798 Author: Florin Braescu Date: Sun Oct 4 04:04:09 2009 +0300 sdparm: version bumped to 1.04. SCSI mode and VPD page changes in draft standards from www.t10.org up until September 2009 are tracked. One significant change for block devices is the addition of thin provisioning support. --- utils/sdparm/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/sdparm/DETAILS b/utils/sdparm/DETAILS index ad89826..5dd6786 100644 --- a/utils/sdparm/DETAILS +++ b/utils/sdparm/DETAILS @@ -1,11 +1,11 @@ MODULE=sdparm - VERSION=1.03 + VERSION=1.04 SOURCE=$MODULE-$VERSION.tgz SOURCE_URL=http://sg.danny.cz/sg/p - SOURCE_VFY=sha1:008046bde7ee918110af33e052f2705af1c940ce + SOURCE_VFY=sha1:ac90855693c6991905ce1ce3c49f28ac49d533d4 WEB_SITE=http://sg.danny.cz/sg/sdparm.html ENTERED=20060320 - UPDATED=20080707 + UPDATED=20091004 SHORT="An utility to access/tune Linux's SCSI drives" cat << EOF From florin at lunar-linux.org Sun Oct 4 03:23:20 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 4 Oct 2009 04:23:20 +0300 Subject: [Lunar-commits] mpd: version bumped to 0.15.4. Message-ID: <20091004012353.6B3D69B229@doppio.foo-projects.org> commit 8cbd446ddd80e5d29fb6e7f6e7b4a9927cfff154 Author: Florin Braescu Date: Sun Oct 4 04:23:20 2009 +0300 mpd: version bumped to 0.15.4. Ogg Vorbis issues, and a few other minor issues. --- audio/mpd/DEPENDS | 8 +++++++- audio/mpd/DETAILS | 10 +++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/audio/mpd/DEPENDS b/audio/mpd/DEPENDS index 5c66f5b..2bee64d 100644 --- a/audio/mpd/DEPENDS +++ b/audio/mpd/DEPENDS @@ -1,5 +1,4 @@ depends zlib -depends docbook-4.2 optional_depends "libao" "--enable-ao" "--disable-ao" "to enable libao support" optional_depends "alsa-lib" "--enable-alsa" "--disable-alsa" "to enable ALSA support" @@ -9,4 +8,11 @@ optional_depends "flac" "--enable-flac" "--disable-flac" "to optional_depends "faad" "--enable-aac" "--disable-aac" "to enable AAC support" optional_depends "audiofile" "--enable-audiofile" "--disable-audiofile" "to enable audiofile support" optional_depends "libmikmod" "--enable-mikmod" "--disable-mikmod" "to enable MOD support" +optional_depends "libmad" "--enable-mad" "--disable-mad" "to enable MAD support" optional_depends "wildmidi" "--enable-wildmidi" "--disable-wildmidi" "to enable midi support" +optional_depends "sqlite" "--enable-sqlite" "--disable-sqlite" "to enable SQLite support" +optional_depends "curl" "--enable-curl" "--disable-curl" "to enable curl support" +optional_depends "lastfmlib" "--enable-lastfm" "--disable-lastfm" "to enable last.fm radio support" +optional_depends "libmms" "--enable-mms" "--disable-mms" "to enable MMS protocol support" +optional_depends "ffmpeg" "--enable-ffmpeg" "--disable-ffmpeg" "to enable FFMPEG support" +optional_depends "docbook-4.2" "--enable-documentation" "" "to enable documentation build" diff --git a/audio/mpd/DETAILS b/audio/mpd/DETAILS index 2f44ab4..0c52848 100644 --- a/audio/mpd/DETAILS +++ b/audio/mpd/DETAILS @@ -1,11 +1,11 @@ MODULE=mpd - VERSION=0.15.3 + VERSION=0.15.4 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$SFORGE_URL/musicpd/ - SOURCE_VFY=sha1:f53f984d8ffcc58d83268f30afb11b8342118d22 - WEB_SITE=http://musicpd.org/ + SOURCE_URL=$SFORGE_URL/musicpd + SOURCE_VFY=sha1:4bcc52f67d2cc78394f4e7780135a47da3480eb8 + WEB_SITE=http://musicpd.org ENTERED=20060421 - UPDATED=20090830 + UPDATED=20091004 SHORT="Music player daemon" cat << EOF From florin at lunar-linux.org Sun Oct 4 03:34:37 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 4 Oct 2009 04:34:37 +0300 Subject: [Lunar-commits] apache2: version bumped to 2.2.14. Message-ID: <20091004013522.4CB549B229@doppio.foo-projects.org> commit 5be81fb0c6b411b5545d02ab810fd583fe15b7f1 Author: Florin Braescu Date: Sun Oct 4 04:34:37 2009 +0300 apache2: version bumped to 2.2.14. Security release with many bugfixes. --- web/apache2/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/apache2/DETAILS b/web/apache2/DETAILS index 9be3929..a6d9586 100644 --- a/web/apache2/DETAILS +++ b/web/apache2/DETAILS @@ -1,13 +1,13 @@ MODULE=apache2 - VERSION=2.2.13 + VERSION=2.2.14 BASENAME=httpd SOURCE=$BASENAME-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$BASENAME-$VERSION SOURCE_URL=http://www.apache.org/dist/$BASENAME - SOURCE_VFY=sha1:44d85da1b8e6c579d4514cfefbea00b284717b69 + SOURCE_VFY=sha1:eacd04c87b489231ae708c84a77dc8e9ee176fd2 WEB_SITE=http://www.apache.org ENTERED=20020710 - UPDATED=20090809 + UPDATED=20091004 SHORT="A popular HTTP server" cat << EOF From florin at lunar-linux.org Sun Oct 4 04:07:48 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 4 Oct 2009 05:07:48 +0300 Subject: [Lunar-commits] eclipse-bin: version bumped to 3.5.1. Message-ID: <20091004020816.03F969B229@doppio.foo-projects.org> commit aa5e6a5b038c25d9f581bc68d189bb11c16a44ae Author: Florin Braescu Date: Sun Oct 4 05:07:48 2009 +0300 eclipse-bin: version bumped to 3.5.1. --- eclipse/eclipse-bin/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eclipse/eclipse-bin/DETAILS b/eclipse/eclipse-bin/DETAILS index 057c3aa..1220a9d 100644 --- a/eclipse/eclipse-bin/DETAILS +++ b/eclipse/eclipse-bin/DETAILS @@ -1,15 +1,15 @@ MODULE=eclipse-bin - VERSION=3.5 - EXTRA=R-$VERSION-200906111540 + VERSION=3.5.1 + EXTRA=R-$VERSION-200909170800 SOURCE=eclipse-SDK-$VERSION-linux-gtk.tar.gz SOURCE_DIRECTORY=$BUILD_DIRECTORY/eclipse SOURCE_URL[0]=http://download.eclipse.org/eclipse/downloads/drops/$EXTRA SOURCE_URL[1]=http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/$EXTRA SOURCE_URL[2]=ftp://sunsite.cnlab-switch.ch/mirror/eclipse/downloads/drops/$EXTRA - SOURCE_VFY=sha1:005b7e1bceb32e59815ff6af83edb1061829d1fa + SOURCE_VFY=sha1:5502571c527af0052107ac771fef6483856a19cb WEB_SITE=http://eclipse.org ENTERED=20030926 - UPDATED=20090625 + UPDATED=20091004 ARCHIVE=off SHORT="A JAVA IDE for just about everything" From brebs at lunar-linux.org Sun Oct 4 09:11:03 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Sun, 4 Oct 2009 14:11:03 +0700 Subject: [Lunar-commits] xfce4-clipman-plugin: version bump to 1.1.1 Message-ID: <20091004071212.1C2CC9B22A@doppio.foo-projects.org> commit 6155887f0c6d159db9b35a84adf75f99d312451d Author: Paul Bredbury Date: Sun Oct 4 14:11:03 2009 +0700 xfce4-clipman-plugin: version bump to 1.1.1 Added dependency on "unique". --- xfce4/goodies/xfce4-clipman-plugin/BUILD | 13 ++++++------- xfce4/goodies/xfce4-clipman-plugin/DEPENDS | 3 +++ xfce4/goodies/xfce4-clipman-plugin/DETAILS | 11 ++++++----- 3 files changed, 15 insertions(+), 12 deletions(-) diff --git a/xfce4/goodies/xfce4-clipman-plugin/BUILD b/xfce4/goodies/xfce4-clipman-plugin/BUILD index 12e8e69..431db77 100644 --- a/xfce4/goodies/xfce4-clipman-plugin/BUILD +++ b/xfce4/goodies/xfce4-clipman-plugin/BUILD @@ -1,13 +1,12 @@ ( - [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc - # make sure proper PKG_CONFIG_PATH is set - export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + # Make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - default_make + OPTS+=" --disable-static" && + + default_build ) > $C_FIFO 2>&1 diff --git a/xfce4/goodies/xfce4-clipman-plugin/DEPENDS b/xfce4/goodies/xfce4-clipman-plugin/DEPENDS index cb293d3..3093a38 100644 --- a/xfce4/goodies/xfce4-clipman-plugin/DEPENDS +++ b/xfce4/goodies/xfce4-clipman-plugin/DEPENDS @@ -1 +1,4 @@ +# Who would *not* want unique? +depends unique + depends xfce4-panel diff --git a/xfce4/goodies/xfce4-clipman-plugin/DETAILS b/xfce4/goodies/xfce4-clipman-plugin/DETAILS index 681cf12..9dfa85c 100644 --- a/xfce4/goodies/xfce4-clipman-plugin/DETAILS +++ b/xfce4/goodies/xfce4-clipman-plugin/DETAILS @@ -1,12 +1,13 @@ MODULE=xfce4-clipman-plugin - VERSION=0.5.99.1 + MAJOR=1.1 + VERSION=1.1.1 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:faa0d1b7ae2af0cd785e555eed680f4f94f9ddbb + SOURCE_URL=http://archive.xfce.org/src/panel-plugins/$MODULE/$MAJOR + SOURCE_VFY=sha1:9c4017087ba21a9460a74df970efda05fdc25b0a MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://goodies.xfce.org/projects/panel-plugins/$MODULE + WEB_SITE=http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin ENTERED=20061124 - UPDATED=20061124 + UPDATED=20091002 SHORT="clipboard plugin for the Xfce panel" cat << EOF From florin at lunar-linux.org Sun Oct 4 10:04:15 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 4 Oct 2009 11:04:15 +0300 Subject: [Lunar-commits] fftw3: version bumped to 3.2.2. Message-ID: <20091004080449.2B0FA9B22A@doppio.foo-projects.org> commit 50ce30e1ebf25d32bf9eaade3b7b831e1ccb3aae Author: Florin Braescu Date: Sun Oct 4 11:04:15 2009 +0300 fftw3: version bumped to 3.2.2. Bugfixes and speed optimizations. --- libs/fftw3/BUILD | 15 +++++++-------- libs/fftw3/DETAILS | 6 +++--- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/libs/fftw3/BUILD b/libs/fftw3/BUILD index d4e6801..fe70593 100644 --- a/libs/fftw3/BUILD +++ b/libs/fftw3/BUILD @@ -3,18 +3,17 @@ # In order to have fftw3 float libs *AND* non-float libs. # We have to do this twice. - ./configure --prefix=/usr \ - --enable-shared \ - --enable-float \ - $OPTS && + ./configure --prefix=/usr \ + --enable-shared \ + --enable-float \ + $OPTS && default_make && - make distclean && - ./configure --prefix=/usr \ - --enable-shared \ - $OPTS && + ./configure --prefix=/usr \ + --enable-shared \ + $OPTS && default_make diff --git a/libs/fftw3/DETAILS b/libs/fftw3/DETAILS index d71eac3..975197f 100644 --- a/libs/fftw3/DETAILS +++ b/libs/fftw3/DETAILS @@ -1,12 +1,12 @@ MODULE=fftw3 - VERSION=3.2.1 + VERSION=3.2.2 SOURCE=fftw-$VERSION.tar.gz SOURCE_DIRECTORY=$BUILD_DIRECTORY/fftw-$VERSION SOURCE_URL=ftp://ftp.fftw.org/pub/fftw - SOURCE_VFY=sha1:690a7cb4fb947a555eaf166cd098a43b61796723 + SOURCE_VFY=sha1:d43b799eedfb9408f62f9f056f5e8a645618467b WEB_SITE=http://www.fftw.org ENTERED=20011207 - UPDATED=20090113 + UPDATED=20091004 SHORT="Fast Fourier Tranform C Library" cat << EOF From florin at lunar-linux.org Sun Oct 4 10:19:15 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 4 Oct 2009 11:19:15 +0300 Subject: [Lunar-commits] ncmpcpp: version bumped to 0.4. Message-ID: <20091004082010.135DD9B229@doppio.foo-projects.org> commit 31df634ece368807bb755ba20e1f7d684f490bdc Author: Florin Braescu Date: Sun Oct 4 11:19:15 2009 +0300 ncmpcpp: version bumped to 0.4. Bumped at Vincent Breitmoser's proposal. Thank You. --- zbeta/ncmpcpp/DEPENDS | 10 ++++++++-- zbeta/ncmpcpp/DETAILS | 9 +++++---- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/zbeta/ncmpcpp/DEPENDS b/zbeta/ncmpcpp/DEPENDS index 8e041ba..187380b 100644 --- a/zbeta/ncmpcpp/DEPENDS +++ b/zbeta/ncmpcpp/DEPENDS @@ -1,3 +1,9 @@ depends ncurses -optional_depends "curl" "--with-curl" "" "to enable lyrics fetching support" -optional_depends "taglib" "--with-taglib" "" "to enable tag editing support" + +optional_depends "curl" "--with-curl" "" "to enable lyrics fetching support" +optional_depends "taglib" "--with-taglib" "" "to enable tag editing support" + +optional_depends "fftw3" \ + "--with-fftw --enable-visualizer" \ + "" \ + "to enable visualizer support" \ No newline at end of file diff --git a/zbeta/ncmpcpp/DETAILS b/zbeta/ncmpcpp/DETAILS index f78af19..2c67a7e 100644 --- a/zbeta/ncmpcpp/DETAILS +++ b/zbeta/ncmpcpp/DETAILS @@ -1,13 +1,14 @@ MODULE=ncmpcpp - VERSION=0.3.1 + VERSION=0.4 SOURCE=${MODULE}-${VERSION}.tar.bz2 - SOURCE_URL=http://unkart.ovh.org/ncmpcpp/ + SOURCE_URL=http://unkart.ovh.org/ncmpcpp SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION - SOURCE_VFY=sha1:ba18f048a4d0c72035444a9a10d4b7e7c0553e06 - WEB_SITE="http://unkart.ovh.org/ncmpcpp/" + SOURCE_VFY=sha1:526faf4b251d395a57689f55feb7771b57550fcc + WEB_SITE=http://unkart.ovh.org/ncmpcpp ENTERED=20090304 UPDATED=20090304 SHORT="curses-based client for mpd" + cat < courier-authlib: version bumped to 0.62.4. Message-ID: <20091004084144.51980F390B@doppio.foo-projects.org> commit 75d23ca4ce859fb782b2db374096a0268d3b3f1d Author: Florin Braescu Date: Sun Oct 4 11:40:49 2009 +0300 courier-authlib: version bumped to 0.62.4. Bumped at the proposal of Christian Riggenbach. Thank You. --- mail/courier-authlib/DEPENDS | 13 +++++++------ mail/courier-authlib/DETAILS | 10 +++++----- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/mail/courier-authlib/DEPENDS b/mail/courier-authlib/DEPENDS index 19fbbad..4ee2500 100644 --- a/mail/courier-authlib/DEPENDS +++ b/mail/courier-authlib/DEPENDS @@ -1,8 +1,9 @@ depends libtool -optional_depends shadow "--with-authshadow" "" "for authshadow support" -optional_depends db "--with-db=db" "" "for db support" -optional_depends gdbm "--with-db=gdbm" "" "for gdbm support" -optional_depends mysql "--with-authmysql" "--without-authmysql" "for mysql authentication support" -optional_depends openldap "--with-authldap" "--without-authldap" "for ldap authentication support" + +optional_depends shadow "--with-authshadow" "" "for authshadow support" +optional_depends db "--with-db=db" "" "for db support" +optional_depends gdbm "--with-db=gdbm" "" "for gdbm support" +optional_depends mysql "--with-authmysql" "--without-authmysql" "for mysql authentication support" +optional_depends openldap "--with-authldap" "--without-authldap" "for ldap authentication support" optional_depends postgresql "--with-auth-pgsql" "--without-authpgsql" "for postgresql authentication support" -optional_depends expect "" "" "for webmail support to change passwords" +optional_depends expect "" "" "for webmail support to change passwords" diff --git a/mail/courier-authlib/DETAILS b/mail/courier-authlib/DETAILS index c76bd21..af1023a 100644 --- a/mail/courier-authlib/DETAILS +++ b/mail/courier-authlib/DETAILS @@ -1,11 +1,11 @@ MODULE=courier-authlib - VERSION=0.59 + VERSION=0.62.4 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$SFORGE_URL/courier/ - SOURCE_VFY=sha1:384bf8e905cb18bd0a4d141dc4455c2ff5849525 - WEB_SITE=http://www.courier-mta.org/authlib/ + SOURCE_URL=$SFORGE_URL/courier + SOURCE_VFY=sha1:3f543ecd03d520fdfa5259d0d0b45a132e50aa99 + WEB_SITE=http://www.courier-mta.org/authlib ENTERED=20020629 - UPDATED=20061231 + UPDATED=20091004 SHORT="Courier authentication library" cat << EOF From florin at lunar-linux.org Sun Oct 4 10:42:22 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 4 Oct 2009 11:42:22 +0300 Subject: [Lunar-commits] courier-imap: version bumped to 4.6.0. Message-ID: <20091004084251.8D5C2F390B@doppio.foo-projects.org> commit 4db5d60716efeafa1d8b3ddbe9c23f94f0fd5194 Author: Florin Braescu Date: Sun Oct 4 11:42:22 2009 +0300 courier-imap: version bumped to 4.6.0. Bumped at the proposal of Christian Riggenbach. Thank You. --- mail/courier-imap/DETAILS | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mail/courier-imap/DETAILS b/mail/courier-imap/DETAILS index cff8c2a..c0b6359 100644 --- a/mail/courier-imap/DETAILS +++ b/mail/courier-imap/DETAILS @@ -1,11 +1,11 @@ MODULE=courier-imap - VERSION=4.1.2 + VERSION=4.6.0 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$SFORGE_URL/courier/ - SOURCE_VFY=sha1:73ed09528f440ef07ba98f59a83172f4f6f4106b - WEB_SITE=http://www.inter7.com/courierimap/ + SOURCE_URL=$SFORGE_URL/courier + SOURCE_VFY=sha1:bec24c374007c3da265e0544891992ce5994d57f + WEB_SITE=http://www.inter7.com/courierimap ENTERED=20020629 - UPDATED=20061231 + UPDATED=20091004 SHORT="Secure IMAP and pop3 server that provides Maildir folders" cat << EOF From florin at lunar-linux.org Sun Oct 4 10:48:25 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 4 Oct 2009 11:48:25 +0300 Subject: [Lunar-commits] smtpclient: add sha1s sum. tweak the description a bit. Message-ID: <20091004084858.BA1F69B229@doppio.foo-projects.org> commit 4e1a4d7ecb3f1ddb6d26efa0bca79c323e989430 Author: Florin Braescu Date: Sun Oct 4 11:48:25 2009 +0300 smtpclient: add sha1s sum. tweak the description a bit. --- mail/smtpclient/DETAILS | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/mail/smtpclient/DETAILS b/mail/smtpclient/DETAILS index 36add6a..a00fa81 100644 --- a/mail/smtpclient/DETAILS +++ b/mail/smtpclient/DETAILS @@ -1,17 +1,18 @@ MODULE=smtpclient VERSION=1.0.1 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://download.lunar-linux.org/lunar/mirrors/ - WEB_SITE=http://www.engelschall.com/sw/smtpclient/ + SOURCE_URL=$MIRRORS_URL + SOURCE_VFY=sha1:946840cd5252dac8095b8fb99042e52aefe29833 + WEB_SITE=http://www.engelschall.com/sw/smtpclient ENTERED=20030713 - UPDATED=20030713 - MAINTAINER=csm at moongroup.com - SHORT="a minimal SMTP client" + UPDATED=20091004 + SHORT="A minimal SMTP client" cat << EOF -This program is a minimal SMTP client that takes an email message body and passes it on to a SMTP server (default is the MTA on the local host). Since it is completely self-supporting, it is especially suitable for use in restricted environments. - -It is used by me to handle private port email with spamassassin and postfix. - -See http://jessen.ch/articles/enidans-spamassassin.shtml for details! +This program is a minimal SMTP client that takes an email message body +and passes it on to a SMTP server (default is the MTA on the local +host). Since it is completely self-supporting, it is especially suitable +for use in restricted environments. +It can be used to handle private port email with spamassassin and +postfix. EOF From stumbles at lunar-linux.org Sun Oct 4 11:58:24 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 4 Oct 2009 05:58:24 -0400 Subject: [Lunar-commits] alienarena: Just a change to a depends. Message-ID: <20091004095853.91B509B229@doppio.foo-projects.org> commit 6b3d4b2a0148fb8d63ad840ba9230dc3bfa3a610 Author: Dennis `stumbles` Veatch Date: Sun Oct 4 05:58:24 2009 -0400 alienarena: Just a change to a depends. --- games/alienarena/DEPENDS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/games/alienarena/DEPENDS b/games/alienarena/DEPENDS index e546142..d70a53e 100644 --- a/games/alienarena/DEPENDS +++ b/games/alienarena/DEPENDS @@ -1,3 +1,3 @@ -depends xf86dga +depends libXxf86dga depends curl depends openal From stumbles at lunar-linux.org Sun Oct 4 12:11:54 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 4 Oct 2009 06:11:54 -0400 Subject: [Lunar-commits] llvm: Adding a patch to fix compilation with current glibc. Message-ID: <20091004101248.488219B229@doppio.foo-projects.org> commit 8153df21695819eeff1e0d18c022a2e654ff4b81 Author: Dennis `stumbles` Veatch Date: Sun Oct 4 06:11:54 2009 -0400 llvm: Adding a patch to fix compilation with current glibc. --- devel/llvm/BUILD | 2 ++ devel/llvm/DETAILS | 5 ++++- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/devel/llvm/BUILD b/devel/llvm/BUILD index be92242..03d61f1 100644 --- a/devel/llvm/BUILD +++ b/devel/llvm/BUILD @@ -1,5 +1,7 @@ ( + patch_it $SOURCE_CACHE/$SOURCE2 0 && + OPTS="$OPTS --enable-optimized --enable-assertions --enable-pic --enable-targets=host-only" default_build && diff --git a/devel/llvm/DETAILS b/devel/llvm/DETAILS index 80da63c..e1fdcb3 100644 --- a/devel/llvm/DETAILS +++ b/devel/llvm/DETAILS @@ -1,12 +1,15 @@ MODULE=llvm VERSION=2.5 SOURCE=$MODULE-$VERSION.tar.gz + SOURCE2=llvm-2.5-signals.1.patch SOURCE_URL=http://www.llvm.org/releases/$VERSION/ + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:67f4bace9e64cc39255583aa837470d9b9de0aa5 + SOURCE2_VFY=sha1:e8907ead244ba397136bbeb25271e18a9dde6dca MODULE_PREFIX=${LLVM_DIR:-/opt/lunar/llvm} WEB_SITE=http://www.llvm.org/ ENTERED=20090128 - UPDATED=20090324 + UPDATED=20091004 SHORT="Low Level Virtual Machine" PSAFE=no From stumbles at lunar-linux.org Sun Oct 4 13:04:16 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 4 Oct 2009 07:04:16 -0400 Subject: [Lunar-commits] openoffice-src: Adding a patch and a sedit to fix some glibc related issues (thanks to the Arch folks). Message-ID: <20091004110552.29499F3B00@doppio.foo-projects.org> commit 84e440eb4a2d212840cb97145daededb2e9810f0 Author: Dennis `stumbles` Veatch Date: Sun Oct 4 07:04:16 2009 -0400 openoffice-src: Adding a patch and a sedit to fix some glibc related issues (thanks to the Arch folks). --- x11-apps/openoffice-src/BUILD | 5 +++++ x11-apps/openoffice-src/BUILD.x86_64 | 5 +++++ x11-apps/openoffice-src/DETAILS | 3 +++ x11-apps/openoffice-src/DETAILS.x86_64 | 3 +++ 4 files changed, 16 insertions(+), 0 deletions(-) diff --git a/x11-apps/openoffice-src/BUILD b/x11-apps/openoffice-src/BUILD index 5f9089e..0285cdb 100644 --- a/x11-apps/openoffice-src/BUILD +++ b/x11-apps/openoffice-src/BUILD @@ -1,5 +1,8 @@ ( +# This sedit is needed for the configure to complete with current db. + sedit "s:seq 1 7:seq 1 8:" configure.in && + cd $SOURCE_DIRECTORY && for file in `find . -name \*.patch -type f -exec grep -l ' $' {} \;`; do sedit 's/ $//' $file; done && cd apache-commons/download && @@ -69,6 +72,8 @@ # Apply mandatory and optional patches patch_it $SOURCE2 0 && +# A glibc related patch. + patch_it $SOURCE_CACHE/$SOURCE8 0 && # As long as OOo-src does not compile against nss it needs its own mozilla # tarball (and it also compiles its own mozilla) diff --git a/x11-apps/openoffice-src/BUILD.x86_64 b/x11-apps/openoffice-src/BUILD.x86_64 index bc3fe66..1ef97f1 100644 --- a/x11-apps/openoffice-src/BUILD.x86_64 +++ b/x11-apps/openoffice-src/BUILD.x86_64 @@ -1,5 +1,8 @@ ( +# This sedit is needed for the configure to complete with current db. + sedit "s:seq 1 7:seq 1 8:" configure.in && + cd $SOURCE_DIRECTORY && for file in `find . -name \*.patch -type f -exec grep -l ' $' {} \;`; do sedit 's/ $//' $file; done && cd apache-commons/download && @@ -69,6 +72,8 @@ # Apply mandatory and optional patches patch_it $SOURCE2 0 && +# A glibc related patch. + patch_it $SOURCE_CACHE/$SOURCE8 0 && # As long as OOo-src does not compile against nss it needs its own mozilla # tarball (and it also compiles its own mozilla) diff --git a/x11-apps/openoffice-src/DETAILS b/x11-apps/openoffice-src/DETAILS index 92777c6..a4faedc 100644 --- a/x11-apps/openoffice-src/DETAILS +++ b/x11-apps/openoffice-src/DETAILS @@ -7,6 +7,7 @@ SOURCE5=OOo_${VERSION}_src_system.tar.bz2 SOURCE6=OOo_${VERSION}_src_extensions.tar.bz2 SOURCE7=OOo_${VERSION}_src_binfilter.tar.bz2 + SOURCE8=soltools-mkdepend-getline.diff SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE2_URL=$PATCH_URL/ @@ -15,6 +16,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE5_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE6_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE7_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ + SOURCE8_URL=$PATCH_URL SOURCE_VFY=sha1:e4e68570d488061e7e2e513e33916ce192dd1348 SOURCE2_VFY=sha1:58c824ef969b017be5fcd7e4290d7681453aa354 SOURCE3_VFY=sha1:bb2a89b95d7626a63a3787208e0abb99ea595d24 @@ -22,6 +24,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE5_VFY=sha1:c8a6348a2259ae8df30a0bc3a72d09280a57988c SOURCE6_VFY=sha1:dba308a76a75320507c0d67a4cf5d2dac3dd01b0 SOURCE7_VFY=sha1:3b4d0d312a1bed9bdb1bbdfb172fa7361533b498 + SOURCE8_VFY=sha1:d2e91ae7c374214dcd59a6fbdd732386a2040855 WEB_SITE=http://www.openoffice.org ENTERED=20030805 UPDATED=20090909 diff --git a/x11-apps/openoffice-src/DETAILS.x86_64 b/x11-apps/openoffice-src/DETAILS.x86_64 index 92777c6..a4faedc 100644 --- a/x11-apps/openoffice-src/DETAILS.x86_64 +++ b/x11-apps/openoffice-src/DETAILS.x86_64 @@ -7,6 +7,7 @@ SOURCE5=OOo_${VERSION}_src_system.tar.bz2 SOURCE6=OOo_${VERSION}_src_extensions.tar.bz2 SOURCE7=OOo_${VERSION}_src_binfilter.tar.bz2 + SOURCE8=soltools-mkdepend-getline.diff SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE2_URL=$PATCH_URL/ @@ -15,6 +16,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE5_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE6_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE7_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ + SOURCE8_URL=$PATCH_URL SOURCE_VFY=sha1:e4e68570d488061e7e2e513e33916ce192dd1348 SOURCE2_VFY=sha1:58c824ef969b017be5fcd7e4290d7681453aa354 SOURCE3_VFY=sha1:bb2a89b95d7626a63a3787208e0abb99ea595d24 @@ -22,6 +24,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE5_VFY=sha1:c8a6348a2259ae8df30a0bc3a72d09280a57988c SOURCE6_VFY=sha1:dba308a76a75320507c0d67a4cf5d2dac3dd01b0 SOURCE7_VFY=sha1:3b4d0d312a1bed9bdb1bbdfb172fa7361533b498 + SOURCE8_VFY=sha1:d2e91ae7c374214dcd59a6fbdd732386a2040855 WEB_SITE=http://www.openoffice.org ENTERED=20030805 UPDATED=20090909 From stumbles at lunar-linux.org Sun Oct 4 13:05:19 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 4 Oct 2009 07:05:19 -0400 Subject: [Lunar-commits] koffice4: Adding a couple of missing optional_depends. Message-ID: <20091004110552.3D3089B229@doppio.foo-projects.org> commit 07c7dcb9fa02924c5009c12a16229a2ec3f95768 Author: Dennis `stumbles` Veatch Date: Sun Oct 4 07:05:19 2009 -0400 koffice4: Adding a couple of missing optional_depends. --- kde4/apps/koffice4/DEPENDS | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/kde4/apps/koffice4/DEPENDS b/kde4/apps/koffice4/DEPENDS index 8da1e24..34e0a94 100644 --- a/kde4/apps/koffice4/DEPENDS +++ b/kde4/apps/koffice4/DEPENDS @@ -11,3 +11,5 @@ optional_depends poppler "" "" "for krita PDF filter support" optional_depends glpk "" "" "for Linear Programming support" optional_depends pstoedit "" "" "for eps import" optional_depends WordNet "" "" "for KThesaurus support" +optional_depends OpenGTL "" "" "for Color Transform support" +optional_depends wv2 "" "" "for word document support" From stumbles at lunar-linux.org Sun Oct 4 14:41:52 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 4 Oct 2009 08:41:52 -0400 Subject: [Lunar-commits] ptlib: It now compiles with unixODBC, adjusting DEPENDS and BUILD accordingly. Message-ID: <20091004124234.B67A89B229@doppio.foo-projects.org> commit 0013952dc4fe890a2be126b3d5a6d9816599bc29 Author: Dennis `stumbles` Veatch Date: Sun Oct 4 08:41:52 2009 -0400 ptlib: It now compiles with unixODBC, adjusting DEPENDS and BUILD accordingly. --- libs/ptlib/BUILD | 2 -- libs/ptlib/DEPENDS | 1 + 2 files changed, 1 insertions(+), 2 deletions(-) diff --git a/libs/ptlib/BUILD b/libs/ptlib/BUILD index 17bb7cc..e733df6 100644 --- a/libs/ptlib/BUILD +++ b/libs/ptlib/BUILD @@ -1,7 +1,5 @@ ( - OPTS="--disable-odbc" - default_build && # Why this does not get install, dunno. Well, other apps look for it during their diff --git a/libs/ptlib/DEPENDS b/libs/ptlib/DEPENDS index defefd7..5d24b71 100644 --- a/libs/ptlib/DEPENDS +++ b/libs/ptlib/DEPENDS @@ -5,3 +5,4 @@ depends alsa-lib optional_depends "libraw1394" "" "" "for raw 1394 access support" optional_depends "libavc1394" "" "" "for AV/C specification support" optional_depends "libdv" "" "" "for Quasar DV codec support" +optional_depends "unixODBC" "--enable-odbc" "--disable-odbc" "for ODBC support" From stumbles at lunar-linux.org Sun Oct 4 14:53:26 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 4 Oct 2009 08:53:26 -0400 Subject: [Lunar-commits] samba: Just a little fleshing out of the DEPENDS and adding a couple of Message-ID: <20091004125402.6C04E9B229@doppio.foo-projects.org> commit 45ba58b399786ff6105a6bbc34acbf7f704e7342 Author: Dennis `stumbles` Veatch Date: Sun Oct 4 08:53:26 2009 -0400 samba: Just a little fleshing out of the DEPENDS and adding a couple of configure questions. --- net/samba/CONFIGURE | 3 +++ net/samba/DEPENDS | 3 ++- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/net/samba/CONFIGURE b/net/samba/CONFIGURE new file mode 100644 index 0000000..7b5b220 --- /dev/null +++ b/net/samba/CONFIGURE @@ -0,0 +1,3 @@ +mquery AUTO_MOUNT "Configure samba with automount?" n "--with-automount" "--without-automount" +mquery DNS_UPDATE "Configure samba to perform DNS updates?" n "--with-dnsupdate" "--without-dnsupdate" + diff --git a/net/samba/DEPENDS b/net/samba/DEPENDS index 51ea9f5..328024d 100644 --- a/net/samba/DEPENDS +++ b/net/samba/DEPENDS @@ -2,4 +2,5 @@ depends chkconfig depends ncurses depends readline -optional_depends "cups" "" "" "CUPS printing support" +optional_depends "cups" "--enable-cups" "--disable-cups" "CUPS printing support" +optional_depends "avahi" "--enable-avahi" "--disable-avahi" "for service discovery support" From zbiggy at lunar-linux.org Sun Oct 4 18:46:27 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Sun, 4 Oct 2009 18:46:27 +0200 Subject: [Lunar-commits] Python: bugfix release 2.6.3 Message-ID: <20091004164643.ACAF29B22A@doppio.foo-projects.org> commit 2fc753c419ca4887d2a3922fa847c685e16040c0 Author: Zbigniew Luszpinski Date: Sun Oct 4 18:46:27 2009 +0200 Python: bugfix release 2.6.3 --- python/Python/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/Python/DETAILS b/python/Python/DETAILS index 7df3163..119c2da 100644 --- a/python/Python/DETAILS +++ b/python/Python/DETAILS @@ -1,15 +1,15 @@ MODULE=Python - VERSION=2.6.2 + VERSION=2.6.3 MAJOR_VERSION=2.6 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE2=$MODULE-compileall.patch.bz2 SOURCE_URL=http://www.python.org/ftp/python/$VERSION - SOURCE_VFY=sha1:125d4ed90f82de1d44f288150bbbda23a6cd27a4 + SOURCE_VFY=sha1:8e598f7f9299da96899bd8c0afd0d1313221f00f SOURCE2_URL=$PATCH_URL SOURCE2_VFY=sha1:9aae8e93899aabc64bbd7f2921ed23f44ec8e6c4 WEB_SITE=http://www.python.org ENTERED=20010922 - UPDATED=20090416 + UPDATED=20091004 PSAFE=no SHORT="Interpreted, interactive, object-oriented programming language" From zbiggy at lunar-linux.org Sun Oct 4 19:23:12 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Sun, 4 Oct 2009 19:23:12 +0200 Subject: [Lunar-commits] lunar-init: fixed: do not fail on ppp network devices Message-ID: <20091004172409.8421C9B22A@doppio.foo-projects.org> commit acbca5d5b6ce3b64da2beed81b11208723943ebe Author: Zbigniew Luszpinski Date: Sun Oct 4 19:23:12 2009 +0200 lunar-init: fixed: do not fail on ppp network devices --- utils/lunar-init/network | 21 +++++++++++++++++++-- 1 files changed, 19 insertions(+), 2 deletions(-) diff --git a/utils/lunar-init/network b/utils/lunar-init/network index d63e481..0ab9c6c 100644 --- a/utils/lunar-init/network +++ b/utils/lunar-init/network @@ -14,6 +14,7 @@ WPA_SUPPLICANT=$(which wpa_supplicant 2> /dev/null) IFCONFIG=$(which ifconfig 2> /dev/null) IWCONFIG=$(which iwconfig 2> /dev/null) ROUTE=$(which route 2> /dev/null) +PPPD=$(which pppd 2> /dev/null) chkresult() { @@ -177,6 +178,16 @@ function device_start() echo -n " ERROR: ifplugd is missing!" fi + elif [ "$MANAGER" == "pppd" ] ; then + if [ -x $PPPD ] ; then + ps -C pppd > /dev/null && + pkill -15 "^pppd$" && + sleep 5 + $PPPD call $1 &> /dev/null + else + echo -n " ERROR: pppd is missing!" + fi + elif [ "$MANAGER" == "manual" ] || [ -z "$MANAGER" ] ; then if [ "$WIRELESS" == "Y" ] && [ -x $IWCONFIG ] ; then if [ ! "x$WIRELESS_MODE" == "x" ] ; then @@ -262,7 +273,7 @@ function device_stop() esac fi - if [ "$MANAGER" == "ifplugd" ] || [ "$MANAGER" == "wpa_supplicant" ]; then + if [ "$MANAGER" == "ifplugd" ] || [ "$MANAGER" == "wpa_supplicant" ] || [ "$MANAGER" == "pppd" ]; then case $MANAGER in ifplugd) $IFPLUGD -r /etc/ifplugd/ifplugd-lunar.action -i $1 -k @@ -273,6 +284,10 @@ function device_stop() kill `ps ax | grep wpa_supplicant | grep "$1" | awk '{print $1}'` sleep 1 ;; + pppd) + pkill -15 "^pppd$" + sleep 1 + ;; esac fi @@ -280,7 +295,9 @@ function device_stop() stop_dhcp $1 fi - $IFCONFIG $1 down + if [ ! "${1:0:3}" == "ppp" ] ; then + $IFCONFIG $1 down + fi if [ -n "$MODULE" ]; then modprobe -r $MODULE From stumbles at lunar-linux.org Sun Oct 4 19:37:11 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 4 Oct 2009 13:37:11 -0400 Subject: [Lunar-commits] openoffice-src: This should be last set of patches to get this monster to install. Message-ID: <20091004173800.870DE9B22C@doppio.foo-projects.org> commit 03d98e0bcb85cdb7b7d77dbc0f1b058fc0380714 Author: Dennis `stumbles` Veatch Date: Sun Oct 4 13:37:11 2009 -0400 openoffice-src: This should be last set of patches to get this monster to install. Thanks to the Arch folks. --- x11-apps/openoffice-src/BUILD | 1 + x11-apps/openoffice-src/BUILD.x86_64 | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/x11-apps/openoffice-src/BUILD b/x11-apps/openoffice-src/BUILD index 0285cdb..2aeffe2 100644 --- a/x11-apps/openoffice-src/BUILD +++ b/x11-apps/openoffice-src/BUILD @@ -74,6 +74,7 @@ patch_it $SOURCE2 0 && # A glibc related patch. patch_it $SOURCE_CACHE/$SOURCE8 0 && + patch -p0 < /home/dveatch/buildfix-sw-printf.diff && # As long as OOo-src does not compile against nss it needs its own mozilla # tarball (and it also compiles its own mozilla) diff --git a/x11-apps/openoffice-src/BUILD.x86_64 b/x11-apps/openoffice-src/BUILD.x86_64 index 1ef97f1..2877ab6 100644 --- a/x11-apps/openoffice-src/BUILD.x86_64 +++ b/x11-apps/openoffice-src/BUILD.x86_64 @@ -74,6 +74,7 @@ patch_it $SOURCE2 0 && # A glibc related patch. patch_it $SOURCE_CACHE/$SOURCE8 0 && + patch -p0 < /home/dveatch/buildfix-sw-printf.diff && # As long as OOo-src does not compile against nss it needs its own mozilla # tarball (and it also compiles its own mozilla) From stumbles at lunar-linux.org Sun Oct 4 19:40:57 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 4 Oct 2009 13:40:57 -0400 Subject: [Lunar-commits] Revert "openoffice-src: This should be last set of patches to get this monster to install." Message-ID: <20091004174117.2F9AA9B22C@doppio.foo-projects.org> commit cca7c4eebf48d2d9b4f47a0f03e42c5f794371d2 Author: Dennis `stumbles` Veatch Date: Sun Oct 4 13:40:57 2009 -0400 Revert "openoffice-src: This should be last set of patches to get this monster to install." This reverts commit 03d98e0bcb85cdb7b7d77dbc0f1b058fc0380714. --- x11-apps/openoffice-src/BUILD | 1 - x11-apps/openoffice-src/BUILD.x86_64 | 1 - 2 files changed, 0 insertions(+), 2 deletions(-) diff --git a/x11-apps/openoffice-src/BUILD b/x11-apps/openoffice-src/BUILD index 2aeffe2..0285cdb 100644 --- a/x11-apps/openoffice-src/BUILD +++ b/x11-apps/openoffice-src/BUILD @@ -74,7 +74,6 @@ patch_it $SOURCE2 0 && # A glibc related patch. patch_it $SOURCE_CACHE/$SOURCE8 0 && - patch -p0 < /home/dveatch/buildfix-sw-printf.diff && # As long as OOo-src does not compile against nss it needs its own mozilla # tarball (and it also compiles its own mozilla) diff --git a/x11-apps/openoffice-src/BUILD.x86_64 b/x11-apps/openoffice-src/BUILD.x86_64 index 2877ab6..1ef97f1 100644 --- a/x11-apps/openoffice-src/BUILD.x86_64 +++ b/x11-apps/openoffice-src/BUILD.x86_64 @@ -74,7 +74,6 @@ patch_it $SOURCE2 0 && # A glibc related patch. patch_it $SOURCE_CACHE/$SOURCE8 0 && - patch -p0 < /home/dveatch/buildfix-sw-printf.diff && # As long as OOo-src does not compile against nss it needs its own mozilla # tarball (and it also compiles its own mozilla) From stumbles at lunar-linux.org Sun Oct 4 19:49:00 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 4 Oct 2009 13:49:00 -0400 Subject: [Lunar-commits] openoffice-src: Another patch, this time its correct. Message-ID: <20091004174928.173B39B22C@doppio.foo-projects.org> commit 292e5a4053e13f406e6e3ce4baefcc03c5ef6e6f Author: Dennis `stumbles` Veatch Date: Sun Oct 4 13:49:00 2009 -0400 openoffice-src: Another patch, this time its correct. --- x11-apps/openoffice-src/BUILD | 2 ++ x11-apps/openoffice-src/BUILD.x86_64 | 2 ++ x11-apps/openoffice-src/DETAILS | 3 +++ x11-apps/openoffice-src/DETAILS.x86_64 | 3 +++ 4 files changed, 10 insertions(+), 0 deletions(-) diff --git a/x11-apps/openoffice-src/BUILD b/x11-apps/openoffice-src/BUILD index 0285cdb..376729d 100644 --- a/x11-apps/openoffice-src/BUILD +++ b/x11-apps/openoffice-src/BUILD @@ -74,6 +74,8 @@ patch_it $SOURCE2 0 && # A glibc related patch. patch_it $SOURCE_CACHE/$SOURCE8 0 && +# Another glibc related patch. + patch_it $SOURCE_CACHE/$SOURCE9 0 && # As long as OOo-src does not compile against nss it needs its own mozilla # tarball (and it also compiles its own mozilla) diff --git a/x11-apps/openoffice-src/BUILD.x86_64 b/x11-apps/openoffice-src/BUILD.x86_64 index 1ef97f1..914d4d3 100644 --- a/x11-apps/openoffice-src/BUILD.x86_64 +++ b/x11-apps/openoffice-src/BUILD.x86_64 @@ -74,6 +74,8 @@ patch_it $SOURCE2 0 && # A glibc related patch. patch_it $SOURCE_CACHE/$SOURCE8 0 && +# Another glibc related patch. + patch_it $SOURCE_CACHE/$SOURCE9 0 && # As long as OOo-src does not compile against nss it needs its own mozilla # tarball (and it also compiles its own mozilla) diff --git a/x11-apps/openoffice-src/DETAILS b/x11-apps/openoffice-src/DETAILS index a4faedc..6e318c7 100644 --- a/x11-apps/openoffice-src/DETAILS +++ b/x11-apps/openoffice-src/DETAILS @@ -8,6 +8,7 @@ SOURCE6=OOo_${VERSION}_src_extensions.tar.bz2 SOURCE7=OOo_${VERSION}_src_binfilter.tar.bz2 SOURCE8=soltools-mkdepend-getline.diff + SOURCE9=buildfix-sw-printf.diff SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE2_URL=$PATCH_URL/ @@ -17,6 +18,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE6_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE7_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE8_URL=$PATCH_URL + SOURCE9_URL=$PATCH_URL SOURCE_VFY=sha1:e4e68570d488061e7e2e513e33916ce192dd1348 SOURCE2_VFY=sha1:58c824ef969b017be5fcd7e4290d7681453aa354 SOURCE3_VFY=sha1:bb2a89b95d7626a63a3787208e0abb99ea595d24 @@ -25,6 +27,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE6_VFY=sha1:dba308a76a75320507c0d67a4cf5d2dac3dd01b0 SOURCE7_VFY=sha1:3b4d0d312a1bed9bdb1bbdfb172fa7361533b498 SOURCE8_VFY=sha1:d2e91ae7c374214dcd59a6fbdd732386a2040855 + SOURCE9_VFY=sha1:768ab295dc5bac786abe00cbb5bf8b2eaa85efe0 WEB_SITE=http://www.openoffice.org ENTERED=20030805 UPDATED=20090909 diff --git a/x11-apps/openoffice-src/DETAILS.x86_64 b/x11-apps/openoffice-src/DETAILS.x86_64 index a4faedc..6e318c7 100644 --- a/x11-apps/openoffice-src/DETAILS.x86_64 +++ b/x11-apps/openoffice-src/DETAILS.x86_64 @@ -8,6 +8,7 @@ SOURCE6=OOo_${VERSION}_src_extensions.tar.bz2 SOURCE7=OOo_${VERSION}_src_binfilter.tar.bz2 SOURCE8=soltools-mkdepend-getline.diff + SOURCE9=buildfix-sw-printf.diff SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE2_URL=$PATCH_URL/ @@ -17,6 +18,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE6_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE7_URL=http://ftp.rz.tu-bs.de/pub/mirror/OpenOffice.org/stable/${VERSION}/ SOURCE8_URL=$PATCH_URL + SOURCE9_URL=$PATCH_URL SOURCE_VFY=sha1:e4e68570d488061e7e2e513e33916ce192dd1348 SOURCE2_VFY=sha1:58c824ef969b017be5fcd7e4290d7681453aa354 SOURCE3_VFY=sha1:bb2a89b95d7626a63a3787208e0abb99ea595d24 @@ -25,6 +27,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_m19 SOURCE6_VFY=sha1:dba308a76a75320507c0d67a4cf5d2dac3dd01b0 SOURCE7_VFY=sha1:3b4d0d312a1bed9bdb1bbdfb172fa7361533b498 SOURCE8_VFY=sha1:d2e91ae7c374214dcd59a6fbdd732386a2040855 + SOURCE9_VFY=sha1:768ab295dc5bac786abe00cbb5bf8b2eaa85efe0 WEB_SITE=http://www.openoffice.org ENTERED=20030805 UPDATED=20090909 From zbiggy at lunar-linux.org Sun Oct 4 21:39:05 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Sun, 4 Oct 2009 21:39:05 +0200 Subject: [Lunar-commits] xine-lib-vdpau: updated to 284 Message-ID: <20091004193917.C52669B22A@doppio.foo-projects.org> commit 59963c8b6804293f3a866e70243611476306227c Author: Zbigniew Luszpinski Date: Sun Oct 4 21:39:05 2009 +0200 xine-lib-vdpau: updated to 284 --- video/xine-lib-vdpau/DETAILS | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/video/xine-lib-vdpau/DETAILS b/video/xine-lib-vdpau/DETAILS index 877a8f1..e0872af 100644 --- a/video/xine-lib-vdpau/DETAILS +++ b/video/xine-lib-vdpau/DETAILS @@ -1,11 +1,11 @@ MODULE=xine-lib-vdpau - VERSION=281 + VERSION=284 SOURCE=$MODULE-$VERSION.tar.lzma SOURCE_URL=$PATCH_URL - SOURCE_VFY=sha1:2133c8da908eb1bfd3c750a1fb94e6eddbc09833 + SOURCE_VFY=sha1:02e0f811c7e288e75443177199811d4b8dacffa8 WEB_SITE=http://www.jusst.de/vdpau/ - ENTERED=20010927 - UPDATED=20090927 + ENTERED=20090927 + UPDATED=20091004 PSAFE=no SHORT="Free video player with VDPAU" @@ -14,5 +14,5 @@ xine is a free video player which plays mpeg-2 and mpeg-1 video, DVDs (unlocked/unencrypted only), video CDs, SVCDs, and AVI files (using Win32 codecs) with synchronized audio and video, and optionally fullscreen using the Xv extensions in Xfree86 4.x. -This xine-lib offers VDPAU acceleration and deinterlacing. +This xine-lib offers VDPAU hardware decoding and postprocessing. EOF From zbiggy at lunar-linux.org Sun Oct 4 21:40:37 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Sun, 4 Oct 2009 21:40:37 +0200 Subject: [Lunar-commits] glib-2: updated to 2.20.5 Message-ID: <20091004194113.089309B22A@doppio.foo-projects.org> commit 18b34bcc33f51c54d2094cdfbdc2d97661371dbf Author: Zbigniew Luszpinski Date: Sun Oct 4 21:40:37 2009 +0200 glib-2: updated to 2.20.5 --- libs/glib-2/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/glib-2/DETAILS b/libs/glib-2/DETAILS index e92c533..212c02b 100644 --- a/libs/glib-2/DETAILS +++ b/libs/glib-2/DETAILS @@ -1,14 +1,14 @@ MODULE=glib-2 MAJOR=2.20 - VERSION=20.4 + VERSION=20.5 SOURCE=$MODULE.$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE.$VERSION SOURCE_URL[0]=$GNOME_URL/sources/glib/$MAJOR/ SOURCE_URL[1]=ftp://ftp.gtk.org/pub/glib/$MAJOR/ - SOURCE_VFY=sha1:a0cee2b75bb485de926fa43b33887adc8f9c19bb + SOURCE_VFY=sha1:19e2b2684d7bc35a73ff94eb7fd15fc70cc6f292 WEB_SITE=http://www.gtk.org/ ENTERED=20020313 - UPDATED=20090719 + UPDATED=20091004 SHORT="A library of useful C routines for trees, hashes, and lists" cat << EOF From zbiggy at lunar-linux.org Sun Oct 4 21:43:32 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Sun, 4 Oct 2009 21:43:32 +0200 Subject: [Lunar-commits] dbus-glib: updated to 0.82 Message-ID: <20091004194336.CFFF19B22A@doppio.foo-projects.org> commit e919fe87c14a4d35ab25a9bffbf2f4b4983fd0c7 Author: Zbigniew Luszpinski Date: Sun Oct 4 21:43:32 2009 +0200 dbus-glib: updated to 0.82 --- devel/dbus-glib/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devel/dbus-glib/DETAILS b/devel/dbus-glib/DETAILS index 644022d..45f36bc 100644 --- a/devel/dbus-glib/DETAILS +++ b/devel/dbus-glib/DETAILS @@ -1,11 +1,11 @@ MODULE=dbus-glib - VERSION=0.80 + VERSION=0.82 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://dbus.freedesktop.org/releases/$MODULE - SOURCE_VFY=sha1:927e43f2d429cff5472ab726882347ec06e53f6b + SOURCE_VFY=sha1:8ad09cf13810382048a685bcafc72f252b2539a8 WEB_SITE=http://www.freedesktop.org/wiki/Software/DBusBindings ENTERED=20061126 - UPDATED=20090514 + UPDATED=20090926 SHORT="glib-2 bindings to DBUS" cat << EOF From florin at lunar-linux.org Mon Oct 5 07:33:39 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 5 Oct 2009 08:33:39 +0300 Subject: [Lunar-commits] iptables: version bum[ed to 1.4.5. Message-ID: <20091005053509.A3A749B22A@doppio.foo-projects.org> commit 3d1fddbfddf620f114fca995b8841735c04bf0d3 Author: Florin Braescu Date: Mon Oct 5 08:33:39 2009 +0300 iptables: version bum[ed to 1.4.5. This release supports all new features of the 2.6.31 kernel. Added a BUILD file in order to make sure the old iptables settings are preserved. --- security/iptables/BUILD | 8 ++++++++ security/iptables/DETAILS | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/security/iptables/BUILD b/security/iptables/BUILD new file mode 100644 index 0000000..3ecbb17 --- /dev/null +++ b/security/iptables/BUILD @@ -0,0 +1,8 @@ +( + + if module_installed iptables; then iptables-save -c > /etc/config.d/iptables.sav; fi + default_build && + cat /etc/config.d/iptables.sav | iptables-restore -c && + rm /etc/config.d/iptables.sav + +) > $C_FIFO 2>&1 diff --git a/security/iptables/DETAILS b/security/iptables/DETAILS index 2286b5c..37d7a35 100644 --- a/security/iptables/DETAILS +++ b/security/iptables/DETAILS @@ -1,11 +1,11 @@ MODULE=iptables - VERSION=1.4.4 + VERSION=1.4.5 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=ftp://ftp.netfilter.org/pub/$MODULE - SOURCE_VFY=sha1:309b22eeb89a6a6abb3c46e03be84de52348f6f7 + SOURCE_VFY=sha1:d1354584a901ffc1bf6c3b3b55a1d0dcee778d21 WEB_SITE=http://www.netfilter.org ENTERED=20010922 - UPDATED=20090617 + UPDATED=20091005 SHORT="Tool to create netfilter rules" PSAFE=no From florin at lunar-linux.org Mon Oct 5 07:40:41 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 5 Oct 2009 08:40:41 +0300 Subject: [Lunar-commits] iptables: a more complete BUILD file. Message-ID: <20091005054139.B0EBF9B22A@doppio.foo-projects.org> commit d71bdccb6193cf8387c2615202b327345593adf9 Author: Florin Braescu Date: Mon Oct 5 08:40:41 2009 +0300 iptables: a more complete BUILD file. --- security/iptables/BUILD | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/security/iptables/BUILD b/security/iptables/BUILD index 3ecbb17..cb3e568 100644 --- a/security/iptables/BUILD +++ b/security/iptables/BUILD @@ -2,7 +2,9 @@ if module_installed iptables; then iptables-save -c > /etc/config.d/iptables.sav; fi default_build && - cat /etc/config.d/iptables.sav | iptables-restore -c && - rm /etc/config.d/iptables.sav + if [ -f /etc/config.d/iptables.sav ]; then + cat /etc/config.d/iptables.sav | iptables-restore -c && + rm /etc/config.d/iptables.sav + fi ) > $C_FIFO 2>&1 From brebs at lunar-linux.org Mon Oct 5 09:30:51 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Mon, 5 Oct 2009 14:30:51 +0700 Subject: [Lunar-commits] openal: version bump to 1.9.563 Message-ID: <20091005073324.90D029B22A@doppio.foo-projects.org> commit 44ec2ec4d6e753c0850a9c5a4fad9513996be35f Author: Paul Bredbury Date: Mon Oct 5 14:30:51 2009 +0700 openal: version bump to 1.9.563 Bug fixes - see http://kcat.strangesoft.net/openal.html --- audio/openal/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/audio/openal/DETAILS b/audio/openal/DETAILS index 41a5fd2..aea24bd 100644 --- a/audio/openal/DETAILS +++ b/audio/openal/DETAILS @@ -1,12 +1,12 @@ MODULE=openal - VERSION=1.8.466 + VERSION=1.9.563 SOURCE=$MODULE-soft-$VERSION.tar.bz2 SOURCE_URL=http://kcat.strangesoft.net/openal-releases/ - SOURCE_VFY=sha1:744f0f0c1d2e377ed0378ce4a53470d4115f2224 + SOURCE_VFY=sha1:69f18499bc9588241ce526e6d21cb1d2aac32471 SOURCE_DIRECTORY=$BUILD_DIRECTORY/openal-soft-$VERSION - WEB_SITE=http://www.openal.org/ + WEB_SITE=http://kcat.strangesoft.net/openal.html ENTERED=20030129 - UPDATED=20090712 + UPDATED=20091003 SHORT="3D Audio Library" cat << EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:56 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:56 -0000 Subject: [Lunar-commits] Revert "worker: version bumped to 2.17.3." Message-ID: <20091005114956.748B29B22D@doppio.foo-projects.org> commit 3290e5f592e7fade8ee85272e0d7d53bc61c7437 Author: Samuel Date: Tue Mar 31 16:42:59 2009 +0200 Revert "worker: version bumped to 2.17.3." This reverts commit 331fb849df32accbb4a58690ab56fa15eb10a726. --- filemanagers/worker/DEPENDS | 1 - filemanagers/worker/DETAILS | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/filemanagers/worker/DEPENDS b/filemanagers/worker/DEPENDS deleted file mode 100644 index 2368fd3..0000000 --- a/filemanagers/worker/DEPENDS +++ /dev/null @@ -1 +0,0 @@ -depends %X diff --git a/filemanagers/worker/DETAILS b/filemanagers/worker/DETAILS index ee121d1..068fdde 100644 --- a/filemanagers/worker/DETAILS +++ b/filemanagers/worker/DETAILS @@ -1,11 +1,11 @@ MODULE=worker - VERSION=2.17.3 + VERSION=2.17.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://www.boomerangsworld.de/$MODULE/downloads - SOURCE_VFY=sha1:0ea63c13d3a4a329d21bcfb808d7073ec2cd7a19 + SOURCE_VFY=sha1:9a98313f2f8e57d7ec919f398f6e91b6da3561cf WEB_SITE=http://www.boomerangsworld.de/worker ENTERED=20020414 - UPDATED=20090313 + UPDATED=20090106 SHORT="A filemanager for X-Window on UNIX" cat << EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:56 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:56 -0000 Subject: [Lunar-commits] qemu: created a CONFIGURE script to configure the archs Message-ID: <20091005114956.56CB89B22B@doppio.foo-projects.org> commit 227d9dabcb09266b67fb55f80f0fce971c62e37d Author: Samuel Date: Wed Mar 11 15:01:07 2009 +0100 qemu: created a CONFIGURE script to configure the archs --- devel/qemu/BUILD | 9 ++++----- devel/qemu/CONFIGURE | 41 +++++++++++++++++++++++++++++++++++++++++ devel/qemu/DEPENDS | 2 +- 3 files changed, 46 insertions(+), 6 deletions(-) diff --git a/devel/qemu/BUILD b/devel/qemu/BUILD index 1a48a20..f519e12 100644 --- a/devel/qemu/BUILD +++ b/devel/qemu/BUILD @@ -1,12 +1,11 @@ ( - unset CFLAGS OPTS+=" --extra-ldflags=-L/usr/X11R6/lib" - OTPS+=" --target-list=i386-softmmu" - if [ ! -e /usr/X11R6/lib/libX11.a ]; then - OPTS+=" --target-list=i386-user,i386-softmmu,arm-user,sparc-user,ppc-user" - fi + for i in $TARGETLIST; do + echo $i; + done && + OPTS+=" --target-list=$(echo $TARGETLIST | sed s/\ /,/g)" ./configure --prefix=/usr \ $OPTS && diff --git a/devel/qemu/CONFIGURE b/devel/qemu/CONFIGURE new file mode 100644 index 0000000..6297a33 --- /dev/null +++ b/devel/qemu/CONFIGURE @@ -0,0 +1,41 @@ +SUPPORTED_TARGETS="i386-softmmu x86_64-softmmu arm-softmmu cris-softmmu m68k-softmmu mips-softmmu mipsel-softmmu mips64-softmmu mips64el-softmmu ppc-softmmu ppcemb-softmmu ppc64-softmmu sh4-softmmu sh4eb-softmmu sparc-softmmu i386-linux-user x86_64-linux-user alpha-linux-user arm-linux-user armeb-linux-user cris-linux-user m68k-linux-user mips-linux-user mipsel-linux-user ppc-linux-user ppc64-linux-user ppc64abi32-linux-user sh4-linux-user sh4eb-linux-user sparc-linux-user sparc64-linux-user sparc32plus-linux-user" + + +make_targets_checklist() { + for target in $SUPPORTED_TARGETS; do + title=$target + echo "\"$target\" \"$title\" \"off\" " + done +} + +select_targets() { + BACKTITLE="Qemu Target Configuration" + TITLE="Target Selection" + HELP="Select targes you want to build" + make_targets_checklist | xargs \ + dialog --backtitle "$BACKTITLE" \ + --title "$TITLE" \ + --stdout \ + --separate-output \ + --checklist "$HELP" \ + 0 0 0 +} + +if ! grep -q CONFIGURED $MODULE_CONFIG; then + if grep -q "TARGETLIST=" $MODULE_CONFIG; then + message "Selecting targets is optional" + fi + + if query "Would you like to select drivers? (if not selected, all locales will be installed)" y; then + unpack_localedata + + TARGETLIST=`select_targets` + TEMP=`grep -v "TARGETLIST=" $MODULE_CONFIG` + echo "$TEMP" > $MODULE_CONFIG + echo "TARGETLIST=\"$TARGETLIST\"" >> $MODULE_CONFIG + + fi + + echo "OPTS=\"\$OPTS $OPTS\"" >> $MODULE_CONFIG + echo "CONFIGURED=y" >> $MODULE_CONFIG +fi diff --git a/devel/qemu/DEPENDS b/devel/qemu/DEPENDS index 87c9e00..54eede1 100644 --- a/devel/qemu/DEPENDS +++ b/devel/qemu/DEPENDS @@ -1,3 +1,3 @@ depends autoconf -optional_depends SDL "" "" "for gui qemu support" +optional_depends SDL "" "--disable-sdl --disable-gfx-check" "for gui qemu support" optional_depends alsa-lib "" "" "for ALSA sound support" From samuel.verstraete at gmail.com Mon Oct 5 13:49:56 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:56 -0000 Subject: [Lunar-commits] midori-git: change depends Message-ID: <20091005114956.5FB849B22C@doppio.foo-projects.org> commit a1fdf15efc48cd8a77233a29f19864d11b88c48a Author: Samuel Date: Wed Mar 11 15:09:11 2009 +0100 midori-git: change depends --- zbeta/midori-git/DEPENDS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/zbeta/midori-git/DEPENDS b/zbeta/midori-git/DEPENDS index bd7000d..35cddaa 100644 --- a/zbeta/midori-git/DEPENDS +++ b/zbeta/midori-git/DEPENDS @@ -1,4 +1,4 @@ depends libsexy -depends WebKit +depends webkit optional_depends unique "" "" "for single instance midori" From samuel.verstraete at gmail.com Mon Oct 5 13:49:56 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:56 -0000 Subject: [Lunar-commits] Revert "Revert "Merge branch 'master' of ssh://lunar-linux.org/var/git/lunar/moonbase"" Message-ID: <20091005114956.A7A069B22B@doppio.foo-projects.org> commit bb94a51b9d1e1d241c6d93b6f3abcbaed33a2dfa Author: Samuel Date: Tue Mar 31 16:44:54 2009 +0200 Revert "Revert "Merge branch 'master' of ssh://lunar-linux.org/var/git/lunar/moonbase"" This reverts commit 54c9b60be0f142bf0d937a56ddee69a1410cdcba. Conflicts: zbeta/midori-git/DEPENDS --- app-themes/rezlooks/DETAILS | 12 +++++ audio/consonance/BUILD | 5 ++ audio/consonance/DEPENDS | 2 + audio/exaile/DETAILS | 8 ++-- crypto/openssh/DEPENDS | 10 ++-- distributed/distcc/plugin.d/optimize-distcc.plugin | 6 +- games/ultimatestunts/DETAILS | 11 ++++ gnome2/desktop/libsoup/DEPENDS | 1 + graphics/SDL_image/DETAILS | 3 +- graphics/enblend/BUILD | 7 +++ graphics/libpano12/CONFLICTS | 1 - graphics/libpano12/DEPENDS | 3 - graphics/libpano12/DETAILS | 22 --------- kernel/linux-2.6/BUILD | 1 - net/libproxy/DETAILS | 15 ++++++ python/cssutils/BUILD | 7 +++ python/cssutils/DEPENDS | 1 + python/cssutils/DETAILS | 14 ++++++ utils/cpupowerd/BUILD | 8 +++ utils/cpupowerd/DETAILS | 18 +++++++ video/HandBrake/BUILD | 17 +++++++ video/HandBrake/DEPENDS | 1 + video/HandBrake/DETAILS | 20 ++++++++ video/elisa-plugins-bad/BUILD | 9 ++++ video/elisa-plugins-bad/DEPENDS | 8 +++ video/elisa-plugins-bad/DETAILS | 17 +++++++ video/elisa-plugins-good/BUILD | 7 +++ video/elisa-plugins-good/DEPENDS | 7 +++ video/elisa-plugins-good/DETAILS | 14 ++++++ video/elisa-plugins-ugly/BUILD | 7 +++ video/elisa-plugins-ugly/DEPENDS | 7 +++ video/elisa-plugins-ugly/DETAILS | 14 ++++++ video/elisa/BUILD | 7 +++ video/elisa/DEPENDS | 11 ++++ video/elisa/DETAILS | 14 ++++++ video/mplayerplug-in/DEPENDS | 2 +- web/xulrunner/POST_REMOVE | 3 +- wifi/iw/DEPENDS | 1 + wifi/iw/DETAILS | 13 +++++ wifi/wicd/BUILD | 8 +++ wifi/wicd/DEPENDS | 2 + wifi/wicd/DETAILS | 13 +++++ wifi/wicd/init.d/wicd | 13 +++++ x11-utils/virtualbox/BUILD | 1 - x11/fglrx/DEPENDS | 1 + x11/fglrx/DETAILS | 1 + x11/fglrx/DETAILS.x86_64 | 1 + xfce4/apps/Terminal/BUILD | 14 ++++++ xfce4/apps/Terminal/DETAILS | 11 ++-- xfce4/apps/mousepad/BUILD | 2 +- xfce4/apps/mousepad/DETAILS | 18 +++++-- xfce4/apps/orage/BUILD | 2 +- xfce4/apps/orage/DEPENDS | 1 + xfce4/apps/orage/DETAILS | 13 +++-- xfce4/apps/ristretto/BUILD | 6 ++ xfce4/apps/ristretto/DETAILS | 8 ++-- xfce4/apps/squeeze/BUILD | 2 +- xfce4/apps/squeeze/DETAILS | 10 ++-- xfce4/apps/xarchiver/DETAILS | 10 ++-- xfce4/apps/xfburn/BUILD | 14 ++++++ xfce4/apps/xfburn/DETAILS | 21 ++++----- xfce4/apps/xfce4-appfinder/BUILD | 2 +- xfce4/apps/xfce4-appfinder/DETAILS | 10 ++-- xfce4/apps/xfce4-mixer/BUILD | 2 +- xfce4/apps/xfce4-mixer/DEPENDS | 1 + xfce4/apps/xfce4-mixer/DETAILS | 11 ++-- xfce4/apps/xfmedia/BUILD | 2 +- xfce4/apps/xfmedia/DETAILS | 10 ++-- xfce4/apps/xfprint/BUILD | 4 +- xfce4/apps/xfprint/DETAILS | 10 ++-- xfce4/core/Thunar/BUILD | 2 +- xfce4/core/Thunar/DETAILS | 11 ++-- xfce4/core/exo/BUILD | 13 +++++ xfce4/core/exo/DETAILS | 11 ++-- xfce4/core/libxfce4menu/BUILD | 10 ++++ xfce4/core/libxfce4menu/DETAILS | 23 ++++----- xfce4/core/libxfce4util/BUILD | 2 +- xfce4/core/libxfce4util/DEPENDS | 2 + xfce4/core/libxfce4util/DETAILS | 10 ++-- xfce4/core/libxfce4util/POST_INSTALL | 10 ---- xfce4/core/libxfce4util/profile.d/xfce4.rc | 4 -- xfce4/core/libxfcegui4/BUILD | 3 +- xfce4/core/libxfcegui4/DEPENDS | 11 ++-- xfce4/core/libxfcegui4/DETAILS | 10 ++-- xfce4/core/xfce-utils/BUILD | 2 +- xfce4/core/xfce-utils/DEPENDS | 3 +- xfce4/core/xfce-utils/DETAILS | 10 ++-- xfce4/core/xfce4-dev-tools/BUILD | 2 +- xfce4/core/xfce4-dev-tools/DETAILS | 12 ++-- xfce4/core/xfce4-dev-tools/POST_INSTALL | 10 ++++ xfce4/core/xfce4-dev-tools/profile.d/xfce4.rc | 4 ++ xfce4/core/xfce4-panel/BUILD | 2 +- xfce4/core/xfce4-panel/DEPENDS | 1 + xfce4/core/xfce4-panel/DETAILS | 10 ++-- xfce4/core/xfce4-session/BUILD | 4 +- xfce4/core/xfce4-session/DETAILS | 11 ++-- xfce4/core/xfce4-settings/BUILD | 14 ++++++ xfce4/core/xfce4-settings/DEPENDS | 1 + xfce4/core/xfce4-settings/DETAILS | 16 +++--- xfce4/core/xfconf/BUILD | 14 ++++++ xfce4/core/xfconf/DETAILS | 23 ++++----- xfce4/core/xfdesktop/BUILD | 2 +- xfce4/core/xfdesktop/DEPENDS | 3 +- xfce4/core/xfdesktop/DETAILS | 10 ++-- xfce4/core/xfwm4/BUILD | 2 +- xfce4/core/xfwm4/DEPENDS | 3 +- xfce4/core/xfwm4/DETAILS | 10 ++-- xfce4/goodies/xfce4-taskmanager/BUILD | 2 +- xfce4/goodies/xfce4-taskmanager/DEPENDS | 2 +- xfce4/goodies/xfce4-taskmanager/DETAILS | 8 ++-- xfce4/goodies/xfce4-xkb-plugin/BUILD | 2 +- xfce4/goodies/xfce4-xkb-plugin/DETAILS | 10 ++-- xfce4/xfce4/DEPENDS | 1 + xfce4/xfce4/DETAILS | 4 +- xorg7/driver/xf86-video-ati/DETAILS | 4 +- xorg7/driver/xf86-video-mach64/BUILD | 6 ++ xorg7/driver/xf86-video-mach64/CONFLICTS | 6 ++ xorg7/driver/xf86-video-mach64/DEPENDS | 2 + xorg7/driver/xf86-video-mach64/DETAILS | 18 +++++++ xorg7/xorg-server/BUILD | 15 +++--- xorg7/xorg-server/CONFIGURE | 2 +- xorg7/xorg-server/PRE_BUILD | 3 - zbeta/WebKit/BUILD | 12 +++++ zbeta/WebKit/DEPENDS | 17 +++++++ zbeta/airconfig-svn/BUILD | 2 +- zbeta/arora-git/BUILD | 11 ++++ zbeta/arora-git/DEPENDS | 1 + zbeta/arora-git/DETAILS | 10 ++++ zbeta/e17/eina-svn/profile.d/e17-cvs.rc | 4 ++ zbeta/e17/emphasis-svn/BUILD | 11 ++++ zbeta/e17/emphasis-svn/DEPENDS | 5 ++ zbeta/e17/emphasis-svn/DETAILS | 14 ++++++ zbeta/e17/enhance-svn/BUILD | 11 ++++ zbeta/e17/enhance-svn/DEPENDS | 1 + zbeta/e17/enhance-svn/DETAILS | 14 ++++++ zbeta/e17/enna-svn/BUILD | 11 ++++ zbeta/e17/enna-svn/DEPENDS | 28 +++++++++++ zbeta/e17/enna-svn/DETAILS | 14 ++++++ zbeta/e17/equate-cvs/BUILD | 13 +++++ zbeta/e17/equate-cvs/DEPENDS | 1 + zbeta/e17/equate-cvs/DETAILS | 18 +++++++ zbeta/emphasis-svn/BUILD | 11 ---- zbeta/emphasis-svn/DEPENDS | 5 -- zbeta/emphasis-svn/DETAILS | 14 ------ zbeta/enhance-svn/BUILD | 11 ---- zbeta/enhance-svn/DEPENDS | 1 - zbeta/enhance-svn/DETAILS | 14 ------ zbeta/enna-svn/BUILD | 11 ---- zbeta/enna-svn/DEPENDS | 28 ----------- zbeta/enna-svn/DETAILS | 14 ------ zbeta/epiphany-svn/BUILD | 21 ++++++++ zbeta/epiphany-svn/CONFIGURE | 5 ++ zbeta/epiphany-svn/DEPENDS | 9 ++++ zbeta/epiphany-svn/DETAILS | 15 ++++++ zbeta/equate-cvs/BUILD | 13 ----- zbeta/equate-cvs/DEPENDS | 1 - zbeta/equate-cvs/DETAILS | 18 ------- zbeta/ffmpeg-svn/DETAILS | 2 +- zbeta/midori-git/BUILD | 13 +++++ zbeta/midori-git/DEPENDS | 4 ++ zbeta/midori-git/DETAILS | 20 ++++++++ zbeta/mplayer/BUILD | 47 ++++++++++++++++++ zbeta/mplayer/CONFIGURE | 2 + zbeta/mplayer/DEPENDS | 17 +++++++ zbeta/mplayer/DETAILS | 50 ++++++++++++++++++++ zbeta/mplayer/POST_INSTALL | 3 + zbeta/mplayer/PRE_BUILD | 12 +++++ zbeta/pigment-python/DEPENDS | 3 + zbeta/pigment-python/DETAILS | 13 +++++ zbeta/pigment/DEPENDS | 4 ++ zbeta/pigment/DETAILS | 15 ++++++ zbeta/xf86-video-mach64/BUILD | 6 -- zbeta/xf86-video-mach64/CONFLICTS | 6 -- zbeta/xf86-video-mach64/DEPENDS | 2 - zbeta/xf86-video-mach64/DETAILS | 18 ------- zlocal/README | 9 ---- 176 files changed, 1126 insertions(+), 443 deletions(-) diff --git a/app-themes/rezlooks/DETAILS b/app-themes/rezlooks/DETAILS new file mode 100644 index 0000000..471d0d8 --- /dev/null +++ b/app-themes/rezlooks/DETAILS @@ -0,0 +1,12 @@ +MODULE=rezlooks +VERSION=0.6 +SOURCE=$MODULE-$VERSION.tar.gz +SOURCE_URL=http://foo-projects.org/~elangelo/ +SOURCE_VFY=sha1:629768c8a05f65771cf4a4f780ae773b37cb8aae +ENTERED=20081220 +UPDATED=20081220 +SHORT=gtk engine +cat << EOF +A simple gtk theme + +EOF diff --git a/audio/consonance/BUILD b/audio/consonance/BUILD new file mode 100644 index 0000000..d0fcbc8 --- /dev/null +++ b/audio/consonance/BUILD @@ -0,0 +1,5 @@ +( + default_build + install -m644 $SOURCE_DIRECTORY/data/consonance.png /usr/share/pixmaps + +) > $C_FIFO 2>&1 diff --git a/audio/consonance/DEPENDS b/audio/consonance/DEPENDS index 5c881bb..d9c654c 100644 --- a/audio/consonance/DEPENDS +++ b/audio/consonance/DEPENDS @@ -2,3 +2,5 @@ depends libmad depends libogg depends flac depends libsndfile +depends taglib +depends libnotify diff --git a/audio/exaile/DETAILS b/audio/exaile/DETAILS index 85bfadf..cd67c41 100644 --- a/audio/exaile/DETAILS +++ b/audio/exaile/DETAILS @@ -1,12 +1,12 @@ MODULE=exaile - VERSION=0.2.13 + VERSION=0.2.14 SOURCE=${MODULE}_${VERSION}.tar.gz -SOURCE_DIRECTORY=$BUILD_DIRECTORY/${MODULE}_${VERSION} +SOURCE_DIRECTORY=$BUILD_DIRECTORY/${MODULE}-${VERSION} SOURCE_URL=http://exaile.org/files/ - SOURCE_VFY=sha1:8cc754c55333dad750d27e45a4e16f53c1f1522c + SOURCE_VFY=sha1:3442867ae6f5116f87eb2488da73cf6d23442f52 WEB_SITE=http://exaile.org/ ENTERED=20061212 - UPDATED=20080626 + UPDATED=20081027 SHORT="GTK+ media player aiming to be similar to KDE's AmaroK" cat << EOF diff --git a/crypto/openssh/DEPENDS b/crypto/openssh/DEPENDS index a511f0b..8da819f 100644 --- a/crypto/openssh/DEPENDS +++ b/crypto/openssh/DEPENDS @@ -3,17 +3,17 @@ depends openssl && depends coreutils && depends psmisc && -optional_depends "tcp_wrappers" \ - "--with-tcp-wrappers" \ - "" \ - "for an optional method of controlling ssh access." && +optional_depends "tcp_wrappers" \ + "--with-tcp-wrappers" \ + "" \ + "for an optional method of controlling ssh access." && optional_depends "Linux-PAM" \ "--with-pam" \ "--without-pam" \ "for Linux PAM support" && -optional_depends heimdal \ +optional_depends "heimdal" \ "--with-kerberos5=/usr" \ "" \ "Heimdal Kerberos5/GSSAPI Support" diff --git a/distributed/distcc/plugin.d/optimize-distcc.plugin b/distributed/distcc/plugin.d/optimize-distcc.plugin index df2f075..74f3cd9 100644 --- a/distributed/distcc/plugin.d/optimize-distcc.plugin +++ b/distributed/distcc/plugin.d/optimize-distcc.plugin @@ -19,7 +19,7 @@ plugin_distcc_optimize() export DISTCC_ALLOW verbose_msg "CC_EXT=\"$CC_EXT\"" verbose_msg "CXX_EXT=\"$CXX_EXT\"" - verbose_msg "DISTCC_HOSTS=\"$DISTCC_HOSTS\"" + verbose_msg "DISTCC_POTENTIAL_HOSTS=\"$DISTCC_POTENTIAL_HOSTS\"" verbose_msg "DISTCC_ALLOW=\"$DISTCC_ALLOW\"" fi return 2 @@ -51,7 +51,7 @@ plugin_distcc_optimize_menu() debug_msg "save_optimizations($@)" cat > /etc/lunar/local/optimizations.DISTCC < $C_FIFO 2>&1 diff --git a/graphics/libpano12/CONFLICTS b/graphics/libpano12/CONFLICTS deleted file mode 100644 index bd39616..0000000 --- a/graphics/libpano12/CONFLICTS +++ /dev/null @@ -1 +0,0 @@ -conflicts libpano13 diff --git a/graphics/libpano12/DEPENDS b/graphics/libpano12/DEPENDS deleted file mode 100644 index becfb99..0000000 --- a/graphics/libpano12/DEPENDS +++ /dev/null @@ -1,3 +0,0 @@ -depends jpeg && -depends libpng && -depends tiff diff --git a/graphics/libpano12/DETAILS b/graphics/libpano12/DETAILS deleted file mode 100644 index 8ff9c3d..0000000 --- a/graphics/libpano12/DETAILS +++ /dev/null @@ -1,22 +0,0 @@ - MODULE=libpano12 - VERSION=2.8.4 - SOURCE=$MODULE-$VERSION.tar.gz - SOURCE_URL=$SFORGE_URL/panotools/ - SOURCE_VFY=sha1:90584b1629103344b23d25a729cc35f4b5639228 - WEB_SITE=http://panotools.sourceforge.net - MAINTAINER=perldude at lunar-linux.org - ENTERED=20060720 - UPDATED=20060720 - SHORT="The cross-platform library behind Panorama Tools and many other GUI photo stitchers" - -cat << EOF -This is the backend library used by many applications. Also included are: - - * PTOptimizer, a utility for optimising control points. - * panoinfo a utility for querying the library version. - * PTmender a replacement for PTStitcher. - * PTblender implements just the colour and brightness correction of PTmender. - * PTtiff2psd Converts a set of TIFF files into a PSD file. - * PTuncrop Converts 'cropped TIFF' files into 'normal' TIFF files. -EOF - diff --git a/kernel/linux-2.6/BUILD b/kernel/linux-2.6/BUILD index d41ddb7..90260aa 100644 --- a/kernel/linux-2.6/BUILD +++ b/kernel/linux-2.6/BUILD @@ -1,5 +1,4 @@ ( - while if [ "$CONFIG_KERNEL" == "y" ]; then if [ "$PREFER_XCONFIG" == "y" -a -n "$DISPLAY" ]; then diff --git a/net/libproxy/DETAILS b/net/libproxy/DETAILS new file mode 100644 index 0000000..2c3b91d --- /dev/null +++ b/net/libproxy/DETAILS @@ -0,0 +1,15 @@ +MODULE=libproxy +VERSION=0.2.3 +SOURCE=$MODULE-$VERSION.tar.gz +SOURCE_URL=http://libproxy.googlecode.com/files +SOURCE_VFY=sha1:2b2b00a179740548035a1145bbae600db9b0a2ce +WEBSITE=http://code.google.com/p/libproxy +ENTERED=20090115 +UPDATED=20090115 +SHORT="provide automatic proxy configuration management" + +cat << EOF +libproxy exists to answer the question: Given a network resource, how +do I reach it? It handles all the details, enabling you to get back to +programming. +EOF diff --git a/python/cssutils/BUILD b/python/cssutils/BUILD new file mode 100644 index 0000000..381ba27 --- /dev/null +++ b/python/cssutils/BUILD @@ -0,0 +1,7 @@ +( + + python setup.py build && + prepare_install && + python setup.py install --root=/ + +) > $C_FIFO 2>&1 diff --git a/python/cssutils/DEPENDS b/python/cssutils/DEPENDS new file mode 100644 index 0000000..7d03d17 --- /dev/null +++ b/python/cssutils/DEPENDS @@ -0,0 +1 @@ +depends Python diff --git a/python/cssutils/DETAILS b/python/cssutils/DETAILS new file mode 100644 index 0000000..8623dc2 --- /dev/null +++ b/python/cssutils/DETAILS @@ -0,0 +1,14 @@ + MODULE=cssutils + VERSION=0.9.5.1 + SOURCE=$MODULE-$VERSION.zip + SOURCE_URL=http://pypi.python.org/packages/source/c/cssutils/ + SOURCE_VFY=sha1:bdf53ff8b0417c064daaa585389e99bed79e6bbf + WEB_SITE=http://cthedot.de/cssutils/ + ENTERED=20081020 + UPDATED=20081020 + SHORT="css parser and library for Python" + +cat << EOF +A Python package to parse and build CSS Cascading Style Sheets. +EOF + diff --git a/utils/cpupowerd/BUILD b/utils/cpupowerd/BUILD new file mode 100644 index 0000000..7182c4f --- /dev/null +++ b/utils/cpupowerd/BUILD @@ -0,0 +1,8 @@ +( + + cd src && + make && + prepare_install && + make install + +) > $C_FIFO 2>&1 diff --git a/utils/cpupowerd/DETAILS b/utils/cpupowerd/DETAILS new file mode 100644 index 0000000..f8d46d7 --- /dev/null +++ b/utils/cpupowerd/DETAILS @@ -0,0 +1,18 @@ + MODULE=cpupowerd + VERSION=0.2.0 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL=$SFORGE_URL/$MODULE/ +#SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION + SOURCE_VFY=sha1:d0285e02fbed2d64de339fc3306dd0ccda2ff9d3 + WEB_SITE=http://cpupowerd.sourceforge.net + ENTERED=20080919 + UPDATED=20081111 + SHORT="A daemon which controls the frequency and voltage of CPUs." + +cat < $C_FIFO 2>&1 + diff --git a/video/HandBrake/DEPENDS b/video/HandBrake/DEPENDS new file mode 100644 index 0000000..05cab96 --- /dev/null +++ b/video/HandBrake/DEPENDS @@ -0,0 +1 @@ +depends gtkhtml3 diff --git a/video/HandBrake/DETAILS b/video/HandBrake/DETAILS new file mode 100644 index 0000000..a2bfbfc --- /dev/null +++ b/video/HandBrake/DETAILS @@ -0,0 +1,20 @@ + MODULE=HandBrake + VERSION=0.9.3 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL=http://download.m0k.org/handbrake/releases + SOURCE_VFY=sha1:f52389b1226bf81ba58bca67f3a1aa468cfee624 + SOURCE1=HandBrakeContrib.tar.bz2 + SOURCE1_URL=http://foo-projects.org/~elangelo/ + SOURCE1_VFY=sha1:2db049571427b65cd3e89245adef51a0e0466433 + PSAFE=no + ENTERED=20080104 + UPDATED=20080104 + SHORT="friendly video recoder with retarded devs" + +cat << EOF +HandBrake is an open-source GPL-licensed, multiplatform, multithreaded DVD to +MPEG-4 converter. +This module only install HandBrakeCLI. If you want the gtk interface, install +HandBrakeGTK. +EOF + diff --git a/video/elisa-plugins-bad/BUILD b/video/elisa-plugins-bad/BUILD new file mode 100644 index 0000000..3184644 --- /dev/null +++ b/video/elisa-plugins-bad/BUILD @@ -0,0 +1,9 @@ +( + +patch_it $SOURCE1 1 && + +python setup.py build && +prepare_install && +python setup.py install + +) > $C_FIFO 2>&1 diff --git a/video/elisa-plugins-bad/DEPENDS b/video/elisa-plugins-bad/DEPENDS new file mode 100644 index 0000000..b907bc8 --- /dev/null +++ b/video/elisa-plugins-bad/DEPENDS @@ -0,0 +1,8 @@ +depends Python +depends setuptools +depends pigment-python +depends Twisted +depends pysqlite +depends pyopenssl +depends pycairo +depends pil diff --git a/video/elisa-plugins-bad/DETAILS b/video/elisa-plugins-bad/DETAILS new file mode 100644 index 0000000..81e7ad6 --- /dev/null +++ b/video/elisa-plugins-bad/DETAILS @@ -0,0 +1,17 @@ +MODULE=elisa-plugins-bad +VERSION=0.5.15 +SOURCE=$MODULE-$VERSION.tar.gz +SOURCE_URL=http://elisa.fluendo.com/download/elisa/ +SOURCE_VFY=sha1:0d8041d27e90d66143c77dcab51387a8e25fb254 +SOURCE1=elisa-plugins-bad-0.5.15-fix-PIL.patch +SOURCE1_URL=$PATCH_URL/ +SOUECE1_VFY=5e2fecde20813388f4293a1badbc50f4bdf00e94 +WEBSITE=http://elisa.fluendo.com +ENTERED=20081007 +UPDATED=20081007 +SHORT="media center software" + +cat<< EOF +Elisa is an open source cross-platform media center connecting the +Internet to an all-in-one media player. +EOF diff --git a/video/elisa-plugins-good/BUILD b/video/elisa-plugins-good/BUILD new file mode 100644 index 0000000..dfd9c3f --- /dev/null +++ b/video/elisa-plugins-good/BUILD @@ -0,0 +1,7 @@ +( + +python setup.py build && +prepare_install && +python setup.py install + +) > $C_FIFO 2>&1 diff --git a/video/elisa-plugins-good/DEPENDS b/video/elisa-plugins-good/DEPENDS new file mode 100644 index 0000000..07c149f --- /dev/null +++ b/video/elisa-plugins-good/DEPENDS @@ -0,0 +1,7 @@ +depends Python +depends setuptools +depends pigment-python +depends Twisted +depends pysqlite +depends pyopenssl +depends pycairo diff --git a/video/elisa-plugins-good/DETAILS b/video/elisa-plugins-good/DETAILS new file mode 100644 index 0000000..e13aba9 --- /dev/null +++ b/video/elisa-plugins-good/DETAILS @@ -0,0 +1,14 @@ +MODULE=elisa-plugins-good + VERSION=0.5.15 +SOURCE=$MODULE-$VERSION.tar.gz +SOURCE_URL=http://elisa.fluendo.com/download/elisa/ +SOURCE_VFY=sha1:4b525c979d35f5e2f2a637207ef4c681d908bb4a +WEBSITE=http://elisa.fluendo.com +ENTERED=20081007 +UPDATED=20081007 +SHORT="media center software" + +cat<< EOF +Elisa is an open source cross-platform media center connecting the +Internet to an all-in-one media player. +EOF diff --git a/video/elisa-plugins-ugly/BUILD b/video/elisa-plugins-ugly/BUILD new file mode 100644 index 0000000..dfd9c3f --- /dev/null +++ b/video/elisa-plugins-ugly/BUILD @@ -0,0 +1,7 @@ +( + +python setup.py build && +prepare_install && +python setup.py install + +) > $C_FIFO 2>&1 diff --git a/video/elisa-plugins-ugly/DEPENDS b/video/elisa-plugins-ugly/DEPENDS new file mode 100644 index 0000000..07c149f --- /dev/null +++ b/video/elisa-plugins-ugly/DEPENDS @@ -0,0 +1,7 @@ +depends Python +depends setuptools +depends pigment-python +depends Twisted +depends pysqlite +depends pyopenssl +depends pycairo diff --git a/video/elisa-plugins-ugly/DETAILS b/video/elisa-plugins-ugly/DETAILS new file mode 100644 index 0000000..08a29c2 --- /dev/null +++ b/video/elisa-plugins-ugly/DETAILS @@ -0,0 +1,14 @@ +MODULE=elisa-plugins-ugly +VERSION=0.5.15 +SOURCE=$MODULE-$VERSION.tar.gz +SOURCE_URL=http://elisa.fluendo.com/download/elisa/ +SOURCE_VFY=sha1:c6519a57cd7731ae20e03a35e1858603fd007c2f +WEBSITE=http://elisa.fluendo.com +ENTERED=20081007 +UPDATED=20081007 +SHORT="media center software" + +cat<< EOF +Elisa is an open source cross-platform media center connecting the +Internet to an all-in-one media player. +EOF diff --git a/video/elisa/BUILD b/video/elisa/BUILD new file mode 100644 index 0000000..dfd9c3f --- /dev/null +++ b/video/elisa/BUILD @@ -0,0 +1,7 @@ +( + +python setup.py build && +prepare_install && +python setup.py install + +) > $C_FIFO 2>&1 diff --git a/video/elisa/DEPENDS b/video/elisa/DEPENDS new file mode 100644 index 0000000..cc8e5af --- /dev/null +++ b/video/elisa/DEPENDS @@ -0,0 +1,11 @@ +depends Python +depends setuptools +depends pigment-python +depends Twisted +depends pysqlite +depends pyopenssl +depends pycairo +depends cssutils +depends elisa-plugins-good +depends elisa-plugins-bad +depends elisa-plugins-ugly diff --git a/video/elisa/DETAILS b/video/elisa/DETAILS new file mode 100644 index 0000000..2c4418c --- /dev/null +++ b/video/elisa/DETAILS @@ -0,0 +1,14 @@ +MODULE=elisa +VERSION=0.5.15 +SOURCE=$MODULE-$VERSION.tar.gz +SOURCE_URL=http://elisa.fluendo.com/download/elisa/ +SOURCE_VFY=sha1:a4715e7d4dfc7d3f1eb3810d3024df463c68aef2 +WEBSITE=http://elisa.fluendo.com +ENTERED=20081007 +UPDATED=20081007 +SHORT="media center software" + +cat<< EOF +Elisa is an open source cross-platform media center connecting the +Internet to an all-in-one media player. +EOF diff --git a/video/mplayerplug-in/DEPENDS b/video/mplayerplug-in/DEPENDS index a507e3b..8de0aaf 100644 --- a/video/mplayerplug-in/DEPENDS +++ b/video/mplayerplug-in/DEPENDS @@ -1 +1 @@ -depends MPlayer +depends mplayer diff --git a/web/xulrunner/POST_REMOVE b/web/xulrunner/POST_REMOVE index 90f0d62..5b625da 100644 --- a/web/xulrunner/POST_REMOVE +++ b/web/xulrunner/POST_REMOVE @@ -1,2 +1 @@ -rm -rf /usr/include/xulrunner-* -rm -rf /usr/lib/xulrunner-* +#ld_remove /usr/lib/xulrnner diff --git a/wifi/iw/DEPENDS b/wifi/iw/DEPENDS new file mode 100644 index 0000000..1efc679 --- /dev/null +++ b/wifi/iw/DEPENDS @@ -0,0 +1 @@ +depends libnl diff --git a/wifi/iw/DETAILS b/wifi/iw/DETAILS new file mode 100644 index 0000000..1f3ac89 --- /dev/null +++ b/wifi/iw/DETAILS @@ -0,0 +1,13 @@ + MODULE=iw + VERSION=0.9.7 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=http://wireless.kernel.org/download/iw/ + SOURCE_VFY=sha1:51430d14792419d8fa158c333f5a2d7a57628541 + WEB_SITE=http://wireless.kernel.org + ENTERED=20081216 + UPDATED=20081216 + SHORT="show/manipulate wireless devices and their configuration" + +cat < $C_FIFO 2>&1 diff --git a/wifi/wicd/DEPENDS b/wifi/wicd/DEPENDS new file mode 100644 index 0000000..b767cb4 --- /dev/null +++ b/wifi/wicd/DEPENDS @@ -0,0 +1,2 @@ +depends pygtk +depends wpa_supplicant diff --git a/wifi/wicd/DETAILS b/wifi/wicd/DETAILS new file mode 100644 index 0000000..fde8c9c --- /dev/null +++ b/wifi/wicd/DETAILS @@ -0,0 +1,13 @@ + MODULE=wicd + VERSION=1.5.9 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL=$SFORGE_URL/$MODULE + SOURCE_VFY=sha1:e8a03ab4d6d699576c954a962eb5b2392e623f51 + WEBSITE=http://wicd.sourceforge.net + ENTERED=20090309 + UPDATED=20090309 + SHORT="wireless/wired internet connection daemon" + +cat << EOF +wireless/wired interenet connection daemon +EOF diff --git a/wifi/wicd/init.d/wicd b/wifi/wicd/init.d/wicd new file mode 100755 index 0000000..c2fd136 --- /dev/null +++ b/wifi/wicd/init.d/wicd @@ -0,0 +1,13 @@ +#!/bin/bash +# +# Startup script for wicd +# +# chkconfig: 345 99 01 +# +# description: wicd wireless/wired internet connection daemon +# +# processname: wicd +# pidfile: /var/run/wicd/wicd.pid +# + +. /lib/lsb/init-functions $1 diff --git a/x11-utils/virtualbox/BUILD b/x11-utils/virtualbox/BUILD index 1300fdf..2487fb0 100644 --- a/x11-utils/virtualbox/BUILD +++ b/x11-utils/virtualbox/BUILD @@ -1,5 +1,4 @@ ( - #lets disable qt3 sedit s at WITH_QT3=1 at WITH_QT3=0@ configure && diff --git a/x11/fglrx/DEPENDS b/x11/fglrx/DEPENDS index b6c17f4..55fc75c 100644 --- a/x11/fglrx/DEPENDS +++ b/x11/fglrx/DEPENDS @@ -1 +1,2 @@ depends libstdc++5 +depends xrandr diff --git a/x11/fglrx/DETAILS b/x11/fglrx/DETAILS index 261cdac..9f44316 100644 --- a/x11/fglrx/DETAILS +++ b/x11/fglrx/DETAILS @@ -8,6 +8,7 @@ UPDATED=20090222 LICENSE="proprietary" SHORT="Proprietary X.org driver for the AMD ATI Radeon GPUs" + cat << EOF Proprietary X.Org driver for AMD ATI Radeon GPUs: 9500 and later (also mobility) diff --git a/x11/fglrx/DETAILS.x86_64 b/x11/fglrx/DETAILS.x86_64 index 287bf04..1d9e391 100644 --- a/x11/fglrx/DETAILS.x86_64 +++ b/x11/fglrx/DETAILS.x86_64 @@ -8,6 +8,7 @@ UPDATED=20090222 LICENSE="proprietary" SHORT="Proprietary X.org driver for the AMD ATI Radeon GPUs" + cat << EOF Proprietary X.Org driver for the AMD ATI Radeon GPUs: 9500 and later (also mobility) diff --git a/xfce4/apps/Terminal/BUILD b/xfce4/apps/Terminal/BUILD new file mode 100644 index 0000000..3a073f3 --- /dev/null +++ b/xfce4/apps/Terminal/BUILD @@ -0,0 +1,14 @@ + +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/apps/Terminal/DETAILS b/xfce4/apps/Terminal/DETAILS index e50faaf..6f8e2cd 100644 --- a/xfce4/apps/Terminal/DETAILS +++ b/xfce4/apps/Terminal/DETAILS @@ -1,12 +1,13 @@ MODULE=Terminal - VERSION=0.2.10 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-4.6.0/src/ - SOURCE_VFY=sha1:c0f0c3cb9a924e98449e29e17ec8aecef1ee6c32 + MOD=terminal + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MOD/trunk:$MOD MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.os-cillation.com/ ENTERED=20040930 - UPDATED=20090227 + UPDATED=20071207 SHORT="vte based/gtk+-2 lightweight X-terminal" cat << EOF diff --git a/xfce4/apps/mousepad/BUILD b/xfce4/apps/mousepad/BUILD index 725cd2f..908d260 100644 --- a/xfce4/apps/mousepad/BUILD +++ b/xfce4/apps/mousepad/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/apps/mousepad/DETAILS b/xfce4/apps/mousepad/DETAILS index d622f36..f7cb2ce 100644 --- a/xfce4/apps/mousepad/DETAILS +++ b/xfce4/apps/mousepad/DETAILS @@ -1,13 +1,19 @@ MODULE=mousepad - VERSION=0.2.16 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-4.6.0/src/ - SOURCE_VFY=sha1:4e63033e0a71578f3ec9a0d2e6a505efd0424ef9 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + #SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MOD + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/branches/nick_0_3:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://erikharrison.net/ + WEB_SITE=http://www.xfce.org ENTERED=20050218 - UPDATED=20090227 + UPDATED=20071207 SHORT="Lighweight xfce text editor" cat << EOF Mousepad is an Xfce port of leafpad, the minimal gtk+-2 text editor. + +the svn branch is the one from Nick Schermer, slightly more advanced +than the trunk branch +If you want the trunk version, uncomment the other sourceurl, comment +the nick sourceurl and delete /var/spool/lunar/mousepad-svn*.tar.bz2 EOF diff --git a/xfce4/apps/orage/BUILD b/xfce4/apps/orage/BUILD index 4486026..8d3380a 100644 --- a/xfce4/apps/orage/BUILD +++ b/xfce4/apps/orage/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && default_make diff --git a/xfce4/apps/orage/DEPENDS b/xfce4/apps/orage/DEPENDS index 500db30..ee5884e 100644 --- a/xfce4/apps/orage/DEPENDS +++ b/xfce4/apps/orage/DEPENDS @@ -1 +1,2 @@ +depends xfconf depends libxfcegui4 diff --git a/xfce4/apps/orage/DETAILS b/xfce4/apps/orage/DETAILS index 24c7a9a..c5c2552 100644 --- a/xfce4/apps/orage/DETAILS +++ b/xfce4/apps/orage/DETAILS @@ -1,14 +1,15 @@ MODULE=orage - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:99839642fcb76d9583ced2752e5505ce12196c17 + MOD=xfcalendar + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MOD/trunk:$MOD MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20031222 - UPDATED=20090227 + UPDATED=20071207 SHORT="Calendar utility for Xfce4" cat << EOF -xfcalendar -- Small calendar utility for the Xfce4 Desktop Environment. +orage -- Small calendar utility for the Xfce4 Desktop Environment. EOF diff --git a/xfce4/apps/ristretto/BUILD b/xfce4/apps/ristretto/BUILD index 1776fd6..204ab3d 100644 --- a/xfce4/apps/ristretto/BUILD +++ b/xfce4/apps/ristretto/BUILD @@ -6,4 +6,10 @@ default_build + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make + ) > $C_FIFO 2>&1 diff --git a/xfce4/apps/ristretto/DETAILS b/xfce4/apps/ristretto/DETAILS index 995f126..3eeea5f 100644 --- a/xfce4/apps/ristretto/DETAILS +++ b/xfce4/apps/ristretto/DETAILS @@ -1,8 +1,8 @@ MODULE=ristretto - VERSION=0.0.16 - SOURCE=$MODULE-$VERSION.tar.gz - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:9aa17a466cdbb0f0ea1a1e5f7f162e5d767f9095 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/goodies/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://goodies.xfce.org/projects/applications/ristretto ENTERED=20070826 diff --git a/xfce4/apps/squeeze/BUILD b/xfce4/apps/squeeze/BUILD index 725cd2f..908d260 100644 --- a/xfce4/apps/squeeze/BUILD +++ b/xfce4/apps/squeeze/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/apps/squeeze/DETAILS b/xfce4/apps/squeeze/DETAILS index 05c1a86..d806b6a 100644 --- a/xfce4/apps/squeeze/DETAILS +++ b/xfce4/apps/squeeze/DETAILS @@ -1,12 +1,12 @@ MODULE=squeeze - VERSION=0.2.2 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://squeeze.xfce.org/downloads/ - SOURCE_VFY=sha1:d19e218387e646594e93dee29f4c9d91c4b0b2da + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://squeeze.xfce.org ENTERED=20070129 - UPDATED=20080104 + UPDATED=20071207 SHORT="Archive manager" cat << EOF diff --git a/xfce4/apps/xarchiver/DETAILS b/xfce4/apps/xarchiver/DETAILS index f88d146..3166aad 100644 --- a/xfce4/apps/xarchiver/DETAILS +++ b/xfce4/apps/xarchiver/DETAILS @@ -1,12 +1,12 @@ MODULE=xarchiver - VERSION=0.4.6 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$SFORGE_URL/$MODULE/ - SOURCE_VFY=sha1:db80abdebf3396ded3cf8d2224e88c987a2d9c32 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://xarchiver.xfce.org/ ENTERED=20060407 - UPDATED=20070106 + UPDATED=20071207 SHORT="simple archive manager" cat << EOF diff --git a/xfce4/apps/xfburn/BUILD b/xfce4/apps/xfburn/BUILD new file mode 100644 index 0000000..3a073f3 --- /dev/null +++ b/xfce4/apps/xfburn/BUILD @@ -0,0 +1,14 @@ + +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/apps/xfburn/DETAILS b/xfce4/apps/xfburn/DETAILS index f6c1786..4fcee28 100644 --- a/xfce4/apps/xfburn/DETAILS +++ b/xfce4/apps/xfburn/DETAILS @@ -1,14 +1,11 @@ MODULE=xfburn - VERSION=0.4.1 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE - SOURCE_VFY=sha1:7086fcdb2fa2c1b634cf64a9eef704656e774c26 - MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://goodies.xfce.org/projects/applications/xfburn - ENTERED=20090227 - UPDATED=20090227 - SHORT="Cd burning application for Xfce" + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/goodies/$MODULE/trunk:$MODULE + WEB_SITE=http://www.xfce.org + ENTERED=20051012 + UPDATED=20071207 + SHORT="The long awaited burn application for Xfce" cat << EOF -Cd burning application for Xfce -EOF - +The long awaited burn application for Xfce diff --git a/xfce4/apps/xfce4-appfinder/BUILD b/xfce4/apps/xfce4-appfinder/BUILD index 12e8e69..15f96e8 100644 --- a/xfce4/apps/xfce4-appfinder/BUILD +++ b/xfce4/apps/xfce4-appfinder/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/apps/xfce4-appfinder/DETAILS b/xfce4/apps/xfce4-appfinder/DETAILS index 716268f..1384841 100644 --- a/xfce4/apps/xfce4-appfinder/DETAILS +++ b/xfce4/apps/xfce4-appfinder/DETAILS @@ -1,12 +1,12 @@ MODULE=xfce4-appfinder - VERSION=4.4.2 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:1ed442bca3fc8bc4c4f14aad0ec1573fbf4bd061 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20041003 - UPDATED=20071204 + UPDATED=20071207 SHORT="Easy search available applications" cat << EOF A tool to quickly locate and use applications available programs. diff --git a/xfce4/apps/xfce4-mixer/BUILD b/xfce4/apps/xfce4-mixer/BUILD index 12e8e69..15f96e8 100644 --- a/xfce4/apps/xfce4-mixer/BUILD +++ b/xfce4/apps/xfce4-mixer/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/apps/xfce4-mixer/DEPENDS b/xfce4/apps/xfce4-mixer/DEPENDS index ea491bb..cd380ed 100644 --- a/xfce4/apps/xfce4-mixer/DEPENDS +++ b/xfce4/apps/xfce4-mixer/DEPENDS @@ -1,2 +1,3 @@ depends xfce4-panel depends gst-plugins-base +optional_depends alsa-lib "--with-sound=alsa" "--with-sound=oss" "to use alsa instead of oss" diff --git a/xfce4/apps/xfce4-mixer/DETAILS b/xfce4/apps/xfce4-mixer/DETAILS index 28362f6..327df05 100644 --- a/xfce4/apps/xfce4-mixer/DETAILS +++ b/xfce4/apps/xfce4-mixer/DETAILS @@ -1,13 +1,14 @@ MODULE=xfce4-mixer - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:ebcbc2cefbd6f0a24c339d61bdb138e2bbe1335c + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 - UPDATED=20090227 + UPDATED=20071207 SHORT="Volume control and mixer for the Xfce4 panel" + cat << EOF xfce4-mixer -- Volume control plugin and mixer for the Xfce4 panel. EOF diff --git a/xfce4/apps/xfmedia/BUILD b/xfce4/apps/xfmedia/BUILD index 5550ba1..95cd8a2 100644 --- a/xfce4/apps/xfmedia/BUILD +++ b/xfce4/apps/xfmedia/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/apps/xfmedia/DETAILS b/xfce4/apps/xfmedia/DETAILS index 8c678ea..76c661f 100644 --- a/xfce4/apps/xfmedia/DETAILS +++ b/xfce4/apps/xfmedia/DETAILS @@ -1,12 +1,12 @@ MODULE=xfmedia - VERSION=0.9.2 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://spuriousinterrupt.org/projects/xfmedia/files/ - SOURCE_VFY=sha1:cb8d39f2a4ee6a6164f722162fa45004770a7605 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://spuriousinterrupt.org/projects/xfmedia ENTERED=20041029 - UPDATED=20061124 + UPDATED=20071207 SHORT="Xfce media player" cat << EOF Xfce media player. Uses Xine to play video streams! Still in development. diff --git a/xfce4/apps/xfprint/BUILD b/xfce4/apps/xfprint/BUILD index 12e8e69..95cd8a2 100644 --- a/xfce4/apps/xfprint/BUILD +++ b/xfce4/apps/xfprint/BUILD @@ -4,8 +4,8 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ $OPTS && default_make diff --git a/xfce4/apps/xfprint/DETAILS b/xfce4/apps/xfprint/DETAILS index 8a5aaef..2d607ff 100644 --- a/xfce4/apps/xfprint/DETAILS +++ b/xfce4/apps/xfprint/DETAILS @@ -1,12 +1,12 @@ MODULE=xfprint - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:28bd6c8ff46eb0193647d1cd1a13d970a18e599b + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 - UPDATED=20090227 + UPDATED=20071207 SHORT="Printer dialog for Xfce4" cat << EOF diff --git a/xfce4/core/Thunar/BUILD b/xfce4/core/Thunar/BUILD index 12e8e69..15f96e8 100644 --- a/xfce4/core/Thunar/BUILD +++ b/xfce4/core/Thunar/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/core/Thunar/DETAILS b/xfce4/core/Thunar/DETAILS index c7c9a08..4a9d2ec 100644 --- a/xfce4/core/Thunar/DETAILS +++ b/xfce4/core/Thunar/DETAILS @@ -1,12 +1,13 @@ MODULE=Thunar - VERSION=1.0.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-4.6.0/src/ - SOURCE_VFY=sha1:581594eb4bfe4db49244773ee3abeaaf136a0e0f + MOD=thunar + VERSION="svn-`date +%Y%U`" + SOURCE=$MOD.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MOD + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MOD/trunk:$MOD MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://thunar.xfce.org/ ENTERED=20060407 - UPDATED=20090223 + UPDATED=20071207 SHORT="File manager for xfce" cat << EOF diff --git a/xfce4/core/exo/BUILD b/xfce4/core/exo/BUILD new file mode 100644 index 0000000..15f96e8 --- /dev/null +++ b/xfce4/core/exo/BUILD @@ -0,0 +1,13 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/exo/DETAILS b/xfce4/core/exo/DETAILS index f1a1347..5a0fbec 100644 --- a/xfce4/core/exo/DETAILS +++ b/xfce4/core/exo/DETAILS @@ -1,12 +1,13 @@ MODULE=exo - VERSION=0.3.100 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-4.6.0/src/ - SOURCE_VFY=sha1:987262654d23e0da359d434cc29f0b64ad06a733 + MOD=libexo + VERSION="svn-`date +%Y%U`" + SOURCE=$MOD.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MOD + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MOD/trunk:$MOD MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://libexo.os-cillation.com/ ENTERED=20040930 - UPDATED=20090227 + UPDATED=20071207 SHORT="the Xfce extension library" cat << EOF libexo is a library for Xfce that contain additional widgets and a diff --git a/xfce4/core/libxfce4menu/BUILD b/xfce4/core/libxfce4menu/BUILD new file mode 100644 index 0000000..37dd2af --- /dev/null +++ b/xfce4/core/libxfce4menu/BUILD @@ -0,0 +1,10 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/libxfce4menu/DETAILS b/xfce4/core/libxfce4menu/DETAILS index c00cdea..cc684f8 100644 --- a/xfce4/core/libxfce4menu/DETAILS +++ b/xfce4/core/libxfce4menu/DETAILS @@ -1,15 +1,12 @@ - MODULE=libxfce4menu - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:4143eae2871ee072b9805a1f506c7f10525f2f28 - MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://www.xfce.org - ENTERED=20090227 - UPDATED=20090227 - SHORT="menu library for Xfce" - + MODULE=libxfce4menu + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + MODULE_PREFIX=${XFCE4_PREFIX:-/usr} + WEB_SITE=http://www.xfce.org/ + ENTERED=20030715 + UPDATED=20071207 + SHORT="the menu library for Xfce4" cat << EOF -menu library for Xfce EOF - diff --git a/xfce4/core/libxfce4util/BUILD b/xfce4/core/libxfce4util/BUILD index 94d8102..37dd2af 100644 --- a/xfce4/core/libxfce4util/BUILD +++ b/xfce4/core/libxfce4util/BUILD @@ -1,7 +1,7 @@ ( [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/core/libxfce4util/DEPENDS b/xfce4/core/libxfce4util/DEPENDS index 87c9410..f0a56ab 100644 --- a/xfce4/core/libxfce4util/DEPENDS +++ b/xfce4/core/libxfce4util/DEPENDS @@ -1 +1,3 @@ depends glib-2 +depends xfce4-dev-tools +depends gtk-doc diff --git a/xfce4/core/libxfce4util/DETAILS b/xfce4/core/libxfce4util/DETAILS index be2f4fd..31122a4 100644 --- a/xfce4/core/libxfce4util/DETAILS +++ b/xfce4/core/libxfce4util/DETAILS @@ -1,12 +1,12 @@ MODULE=libxfce4util - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:b4d17be26f965ac0f898b53c691a992efe54b195 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org/ ENTERED=20030715 - UPDATED=20090227 + UPDATED=20071207 SHORT="a utility library for Xfce4" cat << EOF diff --git a/xfce4/core/libxfce4util/POST_INSTALL b/xfce4/core/libxfce4util/POST_INSTALL deleted file mode 100644 index 7c16f06..0000000 --- a/xfce4/core/libxfce4util/POST_INSTALL +++ /dev/null @@ -1,10 +0,0 @@ -if [ -n "$XFCE4_PREFIX" ]; then - sedit "s?/usr?$XFCE4_PREFIX?" /etc/profile.d/xfce4.rc -fi - -XFCE4LIBDIR=${XFCE4_PREFIX:-/usr}/lib -if ! grep -q "$XFCE4LIBDIR" /etc/ld.so.conf ; then - echo "$XFCE4LIBDIR" >> /etc/ld.so.conf - ldconfig -fi - diff --git a/xfce4/core/libxfce4util/profile.d/xfce4.rc b/xfce4/core/libxfce4util/profile.d/xfce4.rc deleted file mode 100755 index 031e535..0000000 --- a/xfce4/core/libxfce4util/profile.d/xfce4.rc +++ /dev/null @@ -1,4 +0,0 @@ -PATH=$PATH:/usr/bin -PKG_CONFIG_PATH=/usr/lib/pkgconfig:$PKG_CONFIG_PATH - -export PATH PKG_CONFIG_PATH diff --git a/xfce4/core/libxfcegui4/BUILD b/xfce4/core/libxfcegui4/BUILD index b695eac..0847398 100644 --- a/xfce4/core/libxfcegui4/BUILD +++ b/xfce4/core/libxfcegui4/BUILD @@ -4,9 +4,10 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ --enable-xinerama \ + --enable-libglade \ $OPTS && default_make diff --git a/xfce4/core/libxfcegui4/DEPENDS b/xfce4/core/libxfcegui4/DEPENDS index 2a855c9..fe37ef9 100644 --- a/xfce4/core/libxfcegui4/DEPENDS +++ b/xfce4/core/libxfcegui4/DEPENDS @@ -1,8 +1,9 @@ -depends gtk+-2 -depends libxml2 -depends libxfce4util -depends xfconf -depends libglade +depends gtk+-2 +depends libxml2 +depends libxfce4util +depends libglade +depends xfconf +depends libglade # not real depends, but we really want them depends gtk-xfce-engine diff --git a/xfce4/core/libxfcegui4/DETAILS b/xfce4/core/libxfcegui4/DETAILS index 8204469..0f0568e 100644 --- a/xfce4/core/libxfcegui4/DETAILS +++ b/xfce4/core/libxfcegui4/DETAILS @@ -1,12 +1,12 @@ MODULE=libxfcegui4 - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:d8a3e86f90ad026c4a9fa369c9c3f6d4f3f6fd06 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 - UPDATED=20090227 + UPDATED=20071207 SHORT="Widget library for Xfce4" cat << EOF diff --git a/xfce4/core/xfce-utils/BUILD b/xfce4/core/xfce-utils/BUILD index 12e8e69..15f96e8 100644 --- a/xfce4/core/xfce-utils/BUILD +++ b/xfce4/core/xfce-utils/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/core/xfce-utils/DEPENDS b/xfce4/core/xfce-utils/DEPENDS index c5f480e..f17975c 100644 --- a/xfce4/core/xfce-utils/DEPENDS +++ b/xfce4/core/xfce-utils/DEPENDS @@ -1,3 +1,4 @@ +depends xfconf +depends libxfcegui4 depends xfce4-dev-tools depends libxfce4util -depends libxfcegui4 diff --git a/xfce4/core/xfce-utils/DETAILS b/xfce4/core/xfce-utils/DETAILS index 5545cbb..345026d 100644 --- a/xfce4/core/xfce-utils/DETAILS +++ b/xfce4/core/xfce-utils/DETAILS @@ -1,12 +1,12 @@ MODULE=xfce-utils - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:2ca9480f9a12ab4e584e27bc3d9e99ec1fab1041 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 - UPDATED=20090227 + UPDATED=20071207 SHORT="Essential utilities for Xfce4" cat << EOF diff --git a/xfce4/core/xfce4-dev-tools/BUILD b/xfce4/core/xfce4-dev-tools/BUILD index 94d8102..37dd2af 100644 --- a/xfce4/core/xfce4-dev-tools/BUILD +++ b/xfce4/core/xfce4-dev-tools/BUILD @@ -1,7 +1,7 @@ ( [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/core/xfce4-dev-tools/DETAILS b/xfce4/core/xfce4-dev-tools/DETAILS index 798ee1a..7a5acd0 100644 --- a/xfce4/core/xfce4-dev-tools/DETAILS +++ b/xfce4/core/xfce4-dev-tools/DETAILS @@ -1,13 +1,13 @@ MODULE=xfce4-dev-tools - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:a5a5cbc9e5f84f4939e53e3327c51f4b749c38a2 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org/ ENTERED=20030715 - UPDATED=20090227 - SHORT="developer tools for Xfce4" + UPDATED=20071207 + SHORT="a utility library for Xfce4" cat << EOF The Xfce development tools are a collection of tools and macros for Xfce developers and people that want to build Xfce from SVN. In addition diff --git a/xfce4/core/xfce4-dev-tools/POST_INSTALL b/xfce4/core/xfce4-dev-tools/POST_INSTALL new file mode 100644 index 0000000..7c16f06 --- /dev/null +++ b/xfce4/core/xfce4-dev-tools/POST_INSTALL @@ -0,0 +1,10 @@ +if [ -n "$XFCE4_PREFIX" ]; then + sedit "s?/usr?$XFCE4_PREFIX?" /etc/profile.d/xfce4.rc +fi + +XFCE4LIBDIR=${XFCE4_PREFIX:-/usr}/lib +if ! grep -q "$XFCE4LIBDIR" /etc/ld.so.conf ; then + echo "$XFCE4LIBDIR" >> /etc/ld.so.conf + ldconfig +fi + diff --git a/xfce4/core/xfce4-dev-tools/profile.d/xfce4.rc b/xfce4/core/xfce4-dev-tools/profile.d/xfce4.rc new file mode 100755 index 0000000..031e535 --- /dev/null +++ b/xfce4/core/xfce4-dev-tools/profile.d/xfce4.rc @@ -0,0 +1,4 @@ +PATH=$PATH:/usr/bin +PKG_CONFIG_PATH=/usr/lib/pkgconfig:$PKG_CONFIG_PATH + +export PATH PKG_CONFIG_PATH diff --git a/xfce4/core/xfce4-panel/BUILD b/xfce4/core/xfce4-panel/BUILD index 12e8e69..15f96e8 100644 --- a/xfce4/core/xfce4-panel/BUILD +++ b/xfce4/core/xfce4-panel/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/core/xfce4-panel/DEPENDS b/xfce4/core/xfce4-panel/DEPENDS index 0016747..dccab87 100644 --- a/xfce4/core/xfce4-panel/DEPENDS +++ b/xfce4/core/xfce4-panel/DEPENDS @@ -1 +1,2 @@ +depends exo depends libxfce4util diff --git a/xfce4/core/xfce4-panel/DETAILS b/xfce4/core/xfce4-panel/DETAILS index 14fbcf6..fced832 100644 --- a/xfce4/core/xfce4-panel/DETAILS +++ b/xfce4/core/xfce4-panel/DETAILS @@ -1,12 +1,12 @@ MODULE=xfce4-panel - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:d63849e76cd65eefde01ac5a23a96df66d8a39db + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 - UPDATED=20090227 + UPDATED=20071207 SHORT="Xfce4 panel" cat << EOF diff --git a/xfce4/core/xfce4-session/BUILD b/xfce4/core/xfce4-session/BUILD index bbfe5e0..61b5f10 100644 --- a/xfce4/core/xfce4-session/BUILD +++ b/xfce4/core/xfce4-session/BUILD @@ -1,4 +1,6 @@ ( + +# patch_it $SOURCE2 1 && [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set @@ -6,7 +8,7 @@ PATH="$PATH:/usr/X11/bin" - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/core/xfce4-session/DETAILS b/xfce4/core/xfce4-session/DETAILS index 8c002c7..06b1aa9 100644 --- a/xfce4/core/xfce4-session/DETAILS +++ b/xfce4/core/xfce4-session/DETAILS @@ -1,13 +1,14 @@ MODULE=xfce4-session - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:3865e36b691802d74b3e86aaa4a3bb2ceff838da + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 + #SOURCE2=fast_xfce.patch +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + #SOURCE2_URL=http://merlin.ugent.be/lunar/patches MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 UPDATED=20090227 - PSAFE=no SHORT="Session manager for Xfce4" cat << EOF diff --git a/xfce4/core/xfce4-settings/BUILD b/xfce4/core/xfce4-settings/BUILD new file mode 100644 index 0000000..5e5fa3e --- /dev/null +++ b/xfce4/core/xfce4-settings/BUILD @@ -0,0 +1,14 @@ +( + + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/xfce4-settings/DEPENDS b/xfce4/core/xfce4-settings/DEPENDS index 19165eb..0cc56b4 100644 --- a/xfce4/core/xfce4-settings/DEPENDS +++ b/xfce4/core/xfce4-settings/DEPENDS @@ -1,3 +1,4 @@ +depends libxfcegui4 depends exo depends gnome-icon-theme optional_depends libxklavier "" "" "to enable the keyboard layout switcher" diff --git a/xfce4/core/xfce4-settings/DETAILS b/xfce4/core/xfce4-settings/DETAILS index 1a03039..4c1c61c 100644 --- a/xfce4/core/xfce4-settings/DETAILS +++ b/xfce4/core/xfce4-settings/DETAILS @@ -1,14 +1,14 @@ MODULE=xfce4-settings - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:76b256aa77269e0b2b056a806106a0313629d1b6 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org - ENTERED=20090227 - UPDATED=20090227 - SHORT="Xfce settings manager" + ENTERED=20080705 + UPDATED=20080705 + SHORT="Something that does something" cat << EOF +Something that does that other thing EOF - diff --git a/xfce4/core/xfconf/BUILD b/xfce4/core/xfconf/BUILD new file mode 100644 index 0000000..5e5fa3e --- /dev/null +++ b/xfce4/core/xfconf/BUILD @@ -0,0 +1,14 @@ +( + + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/xfconf/DETAILS b/xfce4/core/xfconf/DETAILS index f4d51af..17f98c6 100644 --- a/xfce4/core/xfconf/DETAILS +++ b/xfce4/core/xfconf/DETAILS @@ -1,15 +1,14 @@ - MODULE=xfconf - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:89aece9debe9ddd71493c1e4c99be2009562cba0 - MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://www.xfce.org - ENTERED=20090227 - UPDATED=20090227 - SHORT="configuration system for Xfce" + MODULE=xfconf + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + MODULE_PREFIX=${XFCE4_PREFIX:-/usr} + WEB_SITE=http://www.xfce.org + ENTERED=20080626 + UPDATED=20080626 + SHORT="Something that does something" cat << EOF -configuration storage system for Xfce +Something that does that other thing EOF - diff --git a/xfce4/core/xfdesktop/BUILD b/xfce4/core/xfdesktop/BUILD index 12e8e69..15f96e8 100644 --- a/xfce4/core/xfdesktop/BUILD +++ b/xfce4/core/xfdesktop/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/core/xfdesktop/DEPENDS b/xfce4/core/xfdesktop/DEPENDS index b28b83a..ec6d557 100644 --- a/xfce4/core/xfdesktop/DEPENDS +++ b/xfce4/core/xfdesktop/DEPENDS @@ -1,4 +1,5 @@ depends xfce4-panel -depends libxml2 depends libxfce4menu +depends libxml2 +depends xfconf optional_depends Thunar "" "" "for desktop file icon support" diff --git a/xfce4/core/xfdesktop/DETAILS b/xfce4/core/xfdesktop/DETAILS index 2a162f5..9acac98 100644 --- a/xfce4/core/xfdesktop/DETAILS +++ b/xfce4/core/xfdesktop/DETAILS @@ -1,12 +1,12 @@ MODULE=xfdesktop - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:11bd5312e13c78db125ffee1494c33e35e33d15a + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 - UPDATED=20090227 + UPDATED=20071207 SHORT="Desktop manager for Xfce4" cat << EOF diff --git a/xfce4/core/xfwm4/BUILD b/xfce4/core/xfwm4/BUILD index e736288..6dbe632 100644 --- a/xfce4/core/xfwm4/BUILD +++ b/xfce4/core/xfwm4/BUILD @@ -5,7 +5,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/core/xfwm4/DEPENDS b/xfce4/core/xfwm4/DEPENDS index 9973ceb..2c346ab 100644 --- a/xfce4/core/xfwm4/DEPENDS +++ b/xfce4/core/xfwm4/DEPENDS @@ -1,5 +1,6 @@ +depends xfconf depends libwnck +depends exo depends libxfce4util depends libxfcegui4 -depends xfconf depends startup-notification diff --git a/xfce4/core/xfwm4/DETAILS b/xfce4/core/xfwm4/DETAILS index b0f7e33..fab5d6e 100644 --- a/xfce4/core/xfwm4/DETAILS +++ b/xfce4/core/xfwm4/DETAILS @@ -1,12 +1,12 @@ MODULE=xfwm4 - VERSION=4.6.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src/ - SOURCE_VFY=sha1:da4b81c35759ff69ab7862b702db10bb0ee2af7e + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 - UPDATED=20090227 + UPDATED=20071207 SHORT="Window manager for Xfce4" cat << EOF diff --git a/xfce4/goodies/xfce4-taskmanager/BUILD b/xfce4/goodies/xfce4-taskmanager/BUILD index 12e8e69..15f96e8 100644 --- a/xfce4/goodies/xfce4-taskmanager/BUILD +++ b/xfce4/goodies/xfce4-taskmanager/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/goodies/xfce4-taskmanager/DEPENDS b/xfce4/goodies/xfce4-taskmanager/DEPENDS index 741aa15..5834a03 100644 --- a/xfce4/goodies/xfce4-taskmanager/DEPENDS +++ b/xfce4/goodies/xfce4-taskmanager/DEPENDS @@ -1,2 +1,2 @@ -depends libxfcegui4 && +depends libxfcegui4 depends libxfce4util diff --git a/xfce4/goodies/xfce4-taskmanager/DETAILS b/xfce4/goodies/xfce4-taskmanager/DETAILS index 6cbe982..ebe5f99 100644 --- a/xfce4/goodies/xfce4-taskmanager/DETAILS +++ b/xfce4/goodies/xfce4-taskmanager/DETAILS @@ -1,12 +1,12 @@ MODULE=xfce4-taskmanager - VERSION=0.3.2 + VERSION="svn-`date +%Y%U`" SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:a7cce962550f8c3669c3709db9f7f3a0c18c534d +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/goodies/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20061124 - UPDATED=20070123 + UPDATED=20071207 SHORT="taskmanager for the Xfce Desktop Environment" cat << EOF diff --git a/xfce4/goodies/xfce4-xkb-plugin/BUILD b/xfce4/goodies/xfce4-xkb-plugin/BUILD index 12e8e69..15f96e8 100644 --- a/xfce4/goodies/xfce4-xkb-plugin/BUILD +++ b/xfce4/goodies/xfce4-xkb-plugin/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/goodies/xfce4-xkb-plugin/DETAILS b/xfce4/goodies/xfce4-xkb-plugin/DETAILS index ba04156..313889a 100644 --- a/xfce4/goodies/xfce4-xkb-plugin/DETAILS +++ b/xfce4/goodies/xfce4-xkb-plugin/DETAILS @@ -1,12 +1,12 @@ MODULE=xfce4-xkb-plugin - VERSION=0.4.3 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:962f1fdc6b373fa5d8a886aaaa4d0fbb45c44234 + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/goodies/$MODULE/trunk:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20061124 - UPDATED=20070123 + UPDATED=20081015 SHORT="keyboard layout switcher" cat << EOF diff --git a/xfce4/xfce4/DEPENDS b/xfce4/xfce4/DEPENDS index e1af4e4..7ca6ca9 100644 --- a/xfce4/xfce4/DEPENDS +++ b/xfce4/xfce4/DEPENDS @@ -6,5 +6,6 @@ depends xfce4-panel depends xfdesktop depends xfce4-session depends xfce4-icon-theme + optional_depends Thunar "" "" "For the new xfce4 filemanager" optional_depends Terminal "" "" "For the new xfce4 xterm" diff --git a/xfce4/xfce4/DETAILS b/xfce4/xfce4/DETAILS index 6516356..05ed871 100644 --- a/xfce4/xfce4/DETAILS +++ b/xfce4/xfce4/DETAILS @@ -1,11 +1,11 @@ MODULE=xfce4 - VERSION=4.6.0 + VERSION="svn-`date +%Y%U`" SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${MODULE} WEB_SITE=http://www.xfce.org MAINTAINER=jasper at lunar-linux.org MODULE_PREFIX=${XFCE4_PREFIX:-/usr} ENTERED=20030715 - UPDATED=20090227 + UPDATED=20071207 SHORT="lightweight desktop environment based on GTK2" PROFILE=yes diff --git a/xorg7/driver/xf86-video-ati/DETAILS b/xorg7/driver/xf86-video-ati/DETAILS index 78de090..c463b34 100644 --- a/xorg7/driver/xf86-video-ati/DETAILS +++ b/xorg7/driver/xf86-video-ati/DETAILS @@ -1,8 +1,8 @@ MODULE=xf86-video-ati - VERSION=6.11.0 + VERSION=6.12.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$XORG_URL/individual/driver/ - SOURCE_VFY=sha1:fbcba3a7c495e0d08e3a43a05c3277666206ff7b + SOURCE_VFY=sha1:946095af982eedbdcb21ab2e664d70477211ff2c MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://www.x.org/ ENTERED=20060124 diff --git a/xorg7/driver/xf86-video-mach64/BUILD b/xorg7/driver/xf86-video-mach64/BUILD new file mode 100644 index 0000000..cfe3408 --- /dev/null +++ b/xorg7/driver/xf86-video-mach64/BUILD @@ -0,0 +1,6 @@ +( + . /etc/profile.d/x11r7.rc && + + default_build + +) > $C_FIFO 2>&1 diff --git a/xorg7/driver/xf86-video-mach64/CONFLICTS b/xorg7/driver/xf86-video-mach64/CONFLICTS new file mode 100644 index 0000000..5013182 --- /dev/null +++ b/xorg7/driver/xf86-video-mach64/CONFLICTS @@ -0,0 +1,6 @@ +conflicts XOrg6 && +conflicts XOrg-test && +conflicts XOrg-fonts-base && +conflicts XOrg-fonts-extra && +conflicts XOrg-drm && +conflicts XOrg-drm-cvs diff --git a/xorg7/driver/xf86-video-mach64/DEPENDS b/xorg7/driver/xf86-video-mach64/DEPENDS new file mode 100644 index 0000000..514f37d --- /dev/null +++ b/xorg7/driver/xf86-video-mach64/DEPENDS @@ -0,0 +1,2 @@ +depends xorg-server +depends mesa-lib diff --git a/xorg7/driver/xf86-video-mach64/DETAILS b/xorg7/driver/xf86-video-mach64/DETAILS new file mode 100644 index 0000000..9510d35 --- /dev/null +++ b/xorg7/driver/xf86-video-mach64/DETAILS @@ -0,0 +1,18 @@ + MODULE=xf86-video-mach64 + VERSION=6.8.0 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=$XORG_URL/individual/driver/ + SOURCE_VFY=sha1:0f130aca927ede0fd3ed7876c52817a5ef9215bb + MODULE_PREFIX=${X11R7_PREFIX:-/usr} + WEB_SITE=http://www.x.org/ + ENTERED=20080918 + UPDATED=20080918 + SHORT="the X.Org video driver for older ATI/Mach64 based cards" + +cat << EOF +xf86-video-mach64 provides the X.Org video drivers for older the +older ATI/Mach64 based video cards. + +This driver does not support newer ATI Rage or Radeon cards: see +the xf86-video-ati and xf86-video-radeonhd modules. +EOF diff --git a/xorg7/xorg-server/BUILD b/xorg7/xorg-server/BUILD index 3538870..74b518c 100644 --- a/xorg7/xorg-server/BUILD +++ b/xorg7/xorg-server/BUILD @@ -8,20 +8,19 @@ rm -f /usr/share/X11/xkb/compiled fi && -# if [[ "$USE_NVIDIA" = "y" ]]; then -# OPTS="$OPTS --disable-glx --disable-glx-tlx" -# fi && + if [[ "$USE_NVIDIA" = "y" ]]; then + OPTS="$OPTS --disable-glx --disable-glx-tlx" + fi && OPTS+=" --enable-composite --enable-aiglx --enable-xorgcfg \ --with-dri-driver-path=${MODULE_PREFIX}/lib/dri" && - #--with-mesa-source=${SOURCE_DIRECTORY}/Mesa-${MESA_VERSION} \ - default_build && + default_build # This should not be needed, check in next release if still needed. - rm -fr /usr/share/X11/xkb/compiled && - mkdir -p /var/lib/xkb && - ln -sf /var/lib/xkb /usr/share/X11/xkb/compiled + # rm -fr /usr/share/X11/xkb/compiled && + # mkdir -p /var/lib/xkb && + # ln -sf /var/lib/xkb /usr/share/X11/xkb/compiled ) > $C_FIFO 2>&1 diff --git a/xorg7/xorg-server/CONFIGURE b/xorg7/xorg-server/CONFIGURE index 7bf847c..659c2db 100644 --- a/xorg7/xorg-server/CONFIGURE +++ b/xorg7/xorg-server/CONFIGURE @@ -1 +1 @@ -#mquery USE_NVIDIA "Do you intend to use the NVIDIA binary driver?" n +mquery USE_NVIDIA "Do you intend to use the NVIDIA binary driver?" n diff --git a/xorg7/xorg-server/PRE_BUILD b/xorg7/xorg-server/PRE_BUILD deleted file mode 100644 index 3185795..0000000 --- a/xorg7/xorg-server/PRE_BUILD +++ /dev/null @@ -1,3 +0,0 @@ -default_pre_build && -cd $SOURCE_DIRECTORY -#unpack $SOURCE2 diff --git a/zbeta/WebKit/BUILD b/zbeta/WebKit/BUILD new file mode 100644 index 0000000..c653306 --- /dev/null +++ b/zbeta/WebKit/BUILD @@ -0,0 +1,12 @@ +( + + bad_flags linker && + + OPTS="$OPTS --enable-svg-experimental --enable-svg --enable-svg-animation \ + --disable-svg-filters --enable-svg-fonts --enable-svg-foreign-object \ + --enable-svg-as-image --enable-svg-use-element" + + + default_cvs_build + +) > $C_FIFO 2>&1 diff --git a/zbeta/WebKit/DEPENDS b/zbeta/WebKit/DEPENDS new file mode 100644 index 0000000..e766997 --- /dev/null +++ b/zbeta/WebKit/DEPENDS @@ -0,0 +1,17 @@ +depends gtk+-2 +depends icu4c +depends gperf +depends libxslt +depends sqlite +depends jpeg +depends libpng +depends freetype2 + +optional_depends libproxy "" "" "if you don't want GConf" +optional_depends GConf "" "--without-gnome" "GConf" + +optional_depends gst-plugins-good "--enable-video" "" "Enable video support?" + +depends libsoup + +#optional_depends curl "--with-http-backend=curl" "" "Build with curl http backend? (Say N if you said Y to libsoup)" diff --git a/zbeta/airconfig-svn/BUILD b/zbeta/airconfig-svn/BUILD index e96291e..e62f919 100644 --- a/zbeta/airconfig-svn/BUILD +++ b/zbeta/airconfig-svn/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - OPTS="$OPTS --disable-gtk-doc" + OPTS="$OPTS --disable-gtk-doc --prefix=/usr --enable-debug=yes" touch INSTALL && diff --git a/zbeta/arora-git/BUILD b/zbeta/arora-git/BUILD new file mode 100644 index 0000000..3e2bfa8 --- /dev/null +++ b/zbeta/arora-git/BUILD @@ -0,0 +1,11 @@ +( + + . /etc/profile.d/qt4.rc + + qmake && + + default_make && + + install -m0755 $SOURCE_DIRECTORY/arora /usr/bin/ + +) > $C_FIFO 2>&1 diff --git a/zbeta/arora-git/DEPENDS b/zbeta/arora-git/DEPENDS new file mode 100644 index 0000000..428f269 --- /dev/null +++ b/zbeta/arora-git/DEPENDS @@ -0,0 +1 @@ +depends qt4 diff --git a/zbeta/arora-git/DETAILS b/zbeta/arora-git/DETAILS new file mode 100644 index 0000000..a53a63c --- /dev/null +++ b/zbeta/arora-git/DETAILS @@ -0,0 +1,10 @@ + MODULE=arora-git + VERSION=beta + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=git://github.com/icefox/arora.git + WEB_SITE=http://code.google.com/p/arora/ + ENTERED=20080519 + UPDATED=20080519 + SHORT="" +cat << EOF +EOF diff --git a/zbeta/e17/eina-svn/profile.d/e17-cvs.rc b/zbeta/e17/eina-svn/profile.d/e17-cvs.rc new file mode 100644 index 0000000..26a04cd --- /dev/null +++ b/zbeta/e17/eina-svn/profile.d/e17-cvs.rc @@ -0,0 +1,4 @@ +PATH=${PATH}:/opt/lunar/enlightenment/bin +PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/opt/lunar/enlightenment/lib/pkgconfig + +export PATH PKG_CONFIG_PATH diff --git a/zbeta/e17/emphasis-svn/BUILD b/zbeta/e17/emphasis-svn/BUILD new file mode 100644 index 0000000..46c8c34 --- /dev/null +++ b/zbeta/e17/emphasis-svn/BUILD @@ -0,0 +1,11 @@ +( + export PATH=$MODULE_PREFIX/bin:$PATH + export CPPFLAGS="$CPPFLAGS -I$MODULE_PREFIX/include" + export LDFLAGS="$LDFLAGS -L$MODULE_PREFIX/lib" + export USER=nobody + + OPTS="$OPTS --with-profile=FAST_PC" + + default_cvs_build + +) > $C_FIFO 2>&1 diff --git a/zbeta/e17/emphasis-svn/DEPENDS b/zbeta/e17/emphasis-svn/DEPENDS new file mode 100644 index 0000000..5448d7e --- /dev/null +++ b/zbeta/e17/emphasis-svn/DEPENDS @@ -0,0 +1,5 @@ +depends ecore-svn +depends etk-svn +depends enhance-svn +depends libmpd +depends libxml diff --git a/zbeta/e17/emphasis-svn/DETAILS b/zbeta/e17/emphasis-svn/DETAILS new file mode 100644 index 0000000..2c32ba6 --- /dev/null +++ b/zbeta/e17/emphasis-svn/DETAILS @@ -0,0 +1,14 @@ + MODULE=emphasis-svn + VERSION=beta + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=svn+http://svn.enlightenment.org/svn/e/trunk/emphasis +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION + WEB_SITE="http://emphasis.tuxfamily.org" + ENTERED=20081103 + UPDATED=`date -u +%Y%m%d` + MODULE_PREFIX=${E17_PREFIX:-/opt/lunar/enlightenment} + SHORT="e mpd client" + +cat < $C_FIFO 2>&1 diff --git a/zbeta/e17/enhance-svn/DEPENDS b/zbeta/e17/enhance-svn/DEPENDS new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/zbeta/e17/enhance-svn/DEPENDS @@ -0,0 +1 @@ + diff --git a/zbeta/e17/enhance-svn/DETAILS b/zbeta/e17/enhance-svn/DETAILS new file mode 100644 index 0000000..d3a757e --- /dev/null +++ b/zbeta/e17/enhance-svn/DETAILS @@ -0,0 +1,14 @@ + MODULE=enhance-svn + VERSION=beta + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=svn+http://svn.enlightenment.org/svn/e/trunk/enhance +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION + WEB_SITE="http://enlightenment.org" + ENTERED=20081103 + UPDATED=`date -u +%Y%m%d` + MODULE_PREFIX=${E17_PREFIX:-/opt/lunar/enlightenment} + SHORT="glade stuff" + +cat < $C_FIFO 2>&1 diff --git a/zbeta/e17/enna-svn/DEPENDS b/zbeta/e17/enna-svn/DEPENDS new file mode 100644 index 0000000..a5729e5 --- /dev/null +++ b/zbeta/e17/enna-svn/DEPENDS @@ -0,0 +1,28 @@ +optional_depends "curl" \ + "--enable-libcurl" \ + "--disable-libcurl" \ + "for curl support" + +optional_depends "libxml2" \ + "--enable-libxml2" \ + "--disable-libxml2" \ + "for libxml2 support" + +optional_depends "emotion-svn" \ + "--enable-emotion-backend" \ + "--disable-emotion-backend" \ + "for optional playback with Emotion" + +optional_depends "libplayer-hg" \ + "--enable-libplayer-backend" \ + "--disable-libplayer-backend" \ + "for the libplayer A/V backend" + +optional_depends "lirc" \ + "" \ + "" \ + "for LIRC support" + + +# Just a reminder for Light Media Scanner to be eventually included one day :-) +# optional_depends "liblms" diff --git a/zbeta/e17/enna-svn/DETAILS b/zbeta/e17/enna-svn/DETAILS new file mode 100644 index 0000000..8b9f07a --- /dev/null +++ b/zbeta/e17/enna-svn/DETAILS @@ -0,0 +1,14 @@ + MODULE=enna-svn + VERSION=beta + SOURCE=$MODULE.tar.bz2 + SOURCE_URL=svn+http://svn.enlightenment.org/svn/e/trunk/MISC/enna +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + WEB_SITE="http://exchange.enlightenment.org/application/show/164" + ENTERED=20081103 + UPDATED=`date -u +%Y%m%d` + MODULE_PREFIX=${E17_PREFIX:-/opt/lunar/enlightenment} + SHORT="multimedia-center-thingy for E" +cat < $C_FIFO 2>&1 diff --git a/zbeta/e17/equate-cvs/DEPENDS b/zbeta/e17/equate-cvs/DEPENDS new file mode 100644 index 0000000..e23f6e8 --- /dev/null +++ b/zbeta/e17/equate-cvs/DEPENDS @@ -0,0 +1 @@ +depends ewl-cvs diff --git a/zbeta/e17/equate-cvs/DETAILS b/zbeta/e17/equate-cvs/DETAILS new file mode 100644 index 0000000..06453e8 --- /dev/null +++ b/zbeta/e17/equate-cvs/DETAILS @@ -0,0 +1,18 @@ + MODULE=equate-cvs + VERSION=beta + SOURCE=$MODULE-$VERSION.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/equate + SOURCE_URL=cvs://:pserver:anonymous at cvs.sourceforge.net:/cvsroot/enlightenment:misc/equate + WEB_SITE=http://andy.elcock.org/Software/Equate.xml + ENTERED=20041224 + UPDATED=`date -u +%Y%m%d` + MODULE_PREFIX=${E17_PREFIX:-/opt/lunar/enlightenment} + SHORT="A themeable ewl based calculator" + +cat << EOF +Equate - an E Calculator +I decided (with the agreement of some of the crew from #edevelop) that +it would be cool to write a simple app to demonstrate EWL (one of the +E Foundation Libraries) and that a calculator would be a cool app to +write. +EOF diff --git a/zbeta/emphasis-svn/BUILD b/zbeta/emphasis-svn/BUILD deleted file mode 100644 index 46c8c34..0000000 --- a/zbeta/emphasis-svn/BUILD +++ /dev/null @@ -1,11 +0,0 @@ -( - export PATH=$MODULE_PREFIX/bin:$PATH - export CPPFLAGS="$CPPFLAGS -I$MODULE_PREFIX/include" - export LDFLAGS="$LDFLAGS -L$MODULE_PREFIX/lib" - export USER=nobody - - OPTS="$OPTS --with-profile=FAST_PC" - - default_cvs_build - -) > $C_FIFO 2>&1 diff --git a/zbeta/emphasis-svn/DEPENDS b/zbeta/emphasis-svn/DEPENDS deleted file mode 100644 index 5448d7e..0000000 --- a/zbeta/emphasis-svn/DEPENDS +++ /dev/null @@ -1,5 +0,0 @@ -depends ecore-svn -depends etk-svn -depends enhance-svn -depends libmpd -depends libxml diff --git a/zbeta/emphasis-svn/DETAILS b/zbeta/emphasis-svn/DETAILS deleted file mode 100644 index 2c32ba6..0000000 --- a/zbeta/emphasis-svn/DETAILS +++ /dev/null @@ -1,14 +0,0 @@ - MODULE=emphasis-svn - VERSION=beta - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=svn+http://svn.enlightenment.org/svn/e/trunk/emphasis -SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION - WEB_SITE="http://emphasis.tuxfamily.org" - ENTERED=20081103 - UPDATED=`date -u +%Y%m%d` - MODULE_PREFIX=${E17_PREFIX:-/opt/lunar/enlightenment} - SHORT="e mpd client" - -cat < $C_FIFO 2>&1 diff --git a/zbeta/enhance-svn/DEPENDS b/zbeta/enhance-svn/DEPENDS deleted file mode 100644 index 8b13789..0000000 --- a/zbeta/enhance-svn/DEPENDS +++ /dev/null @@ -1 +0,0 @@ - diff --git a/zbeta/enhance-svn/DETAILS b/zbeta/enhance-svn/DETAILS deleted file mode 100644 index d3a757e..0000000 --- a/zbeta/enhance-svn/DETAILS +++ /dev/null @@ -1,14 +0,0 @@ - MODULE=enhance-svn - VERSION=beta - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=svn+http://svn.enlightenment.org/svn/e/trunk/enhance -SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION - WEB_SITE="http://enlightenment.org" - ENTERED=20081103 - UPDATED=`date -u +%Y%m%d` - MODULE_PREFIX=${E17_PREFIX:-/opt/lunar/enlightenment} - SHORT="glade stuff" - -cat < $C_FIFO 2>&1 diff --git a/zbeta/enna-svn/DEPENDS b/zbeta/enna-svn/DEPENDS deleted file mode 100644 index a5729e5..0000000 --- a/zbeta/enna-svn/DEPENDS +++ /dev/null @@ -1,28 +0,0 @@ -optional_depends "curl" \ - "--enable-libcurl" \ - "--disable-libcurl" \ - "for curl support" - -optional_depends "libxml2" \ - "--enable-libxml2" \ - "--disable-libxml2" \ - "for libxml2 support" - -optional_depends "emotion-svn" \ - "--enable-emotion-backend" \ - "--disable-emotion-backend" \ - "for optional playback with Emotion" - -optional_depends "libplayer-hg" \ - "--enable-libplayer-backend" \ - "--disable-libplayer-backend" \ - "for the libplayer A/V backend" - -optional_depends "lirc" \ - "" \ - "" \ - "for LIRC support" - - -# Just a reminder for Light Media Scanner to be eventually included one day :-) -# optional_depends "liblms" diff --git a/zbeta/enna-svn/DETAILS b/zbeta/enna-svn/DETAILS deleted file mode 100644 index 8b9f07a..0000000 --- a/zbeta/enna-svn/DETAILS +++ /dev/null @@ -1,14 +0,0 @@ - MODULE=enna-svn - VERSION=beta - SOURCE=$MODULE.tar.bz2 - SOURCE_URL=svn+http://svn.enlightenment.org/svn/e/trunk/MISC/enna -SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - WEB_SITE="http://exchange.enlightenment.org/application/show/164" - ENTERED=20081103 - UPDATED=`date -u +%Y%m%d` - MODULE_PREFIX=${E17_PREFIX:-/opt/lunar/enlightenment} - SHORT="multimedia-center-thingy for E" -cat < $C_FIFO 2>&1 diff --git a/zbeta/epiphany-svn/CONFIGURE b/zbeta/epiphany-svn/CONFIGURE new file mode 100644 index 0000000..d5047a3 --- /dev/null +++ b/zbeta/epiphany-svn/CONFIGURE @@ -0,0 +1,5 @@ +mquery DESKTOP_PLUGIN "Enable the desktop file plugin" y +mquery ZEROCONF_BOOKMARKS "Enable zeroconf bookmarks support" y +mquery CERTIFICATE_MANAGER "Enable certificate manager" y + +#mquery ENABLE_CGID "Enable cgid ?" y --enable-cgid --enable-cgi diff --git a/zbeta/epiphany-svn/DEPENDS b/zbeta/epiphany-svn/DEPENDS new file mode 100644 index 0000000..0db4f60 --- /dev/null +++ b/zbeta/epiphany-svn/DEPENDS @@ -0,0 +1,9 @@ +depends libgnomeui +depends libgnomeprintui +depends iso-codes +depends WebKit + +optional_depends "Python" "--enable-python" "" "to enable Python support" + +optional_depends "enchant" "--enable-spell-checker" "" \ + "to enable spell checing" diff --git a/zbeta/epiphany-svn/DETAILS b/zbeta/epiphany-svn/DETAILS new file mode 100644 index 0000000..b2a1150 --- /dev/null +++ b/zbeta/epiphany-svn/DETAILS @@ -0,0 +1,15 @@ + MODULE=epiphany-svn + VERSION=beta + SOURCE=$MODULE-$VERSION.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION + SOURCE_URL=svn://svn.gnome.org/svn/epiphany/trunk/ + WEB_SITE=http://live.gnome.org/Epiphany + ENTERED=20080128 + UPDATED=`date -u +%Y%m01` + SHORT="GNOME Web browser." + +cat << EOF +Epiphany is a GNOME Web browser that can use different rendering +engines. It is fast, has a light interface, and is fully +standards-compliant. +EOF diff --git a/zbeta/equate-cvs/BUILD b/zbeta/equate-cvs/BUILD deleted file mode 100644 index 0f96211..0000000 --- a/zbeta/equate-cvs/BUILD +++ /dev/null @@ -1,13 +0,0 @@ -( - - export PATH=$MODULE_PREFIX/bin:$PATH - export CPPFLAGS="$CPPFLAGS -I$MODULE_PREFIX/include" - export LDFLAGS="$LDFLAGS -L$MODULE_PREFIX/lib" - export USER=nobody - - # This file needs to exists or Makefile.in will not be created. - touch ChangeLog - - default_cvs_build - -) > $C_FIFO 2>&1 diff --git a/zbeta/equate-cvs/DEPENDS b/zbeta/equate-cvs/DEPENDS deleted file mode 100644 index e23f6e8..0000000 --- a/zbeta/equate-cvs/DEPENDS +++ /dev/null @@ -1 +0,0 @@ -depends ewl-cvs diff --git a/zbeta/equate-cvs/DETAILS b/zbeta/equate-cvs/DETAILS deleted file mode 100644 index 06453e8..0000000 --- a/zbeta/equate-cvs/DETAILS +++ /dev/null @@ -1,18 +0,0 @@ - MODULE=equate-cvs - VERSION=beta - SOURCE=$MODULE-$VERSION.tar.bz2 -SOURCE_DIRECTORY=$BUILD_DIRECTORY/equate - SOURCE_URL=cvs://:pserver:anonymous at cvs.sourceforge.net:/cvsroot/enlightenment:misc/equate - WEB_SITE=http://andy.elcock.org/Software/Equate.xml - ENTERED=20041224 - UPDATED=`date -u +%Y%m%d` - MODULE_PREFIX=${E17_PREFIX:-/opt/lunar/enlightenment} - SHORT="A themeable ewl based calculator" - -cat << EOF -Equate - an E Calculator -I decided (with the agreement of some of the crew from #edevelop) that -it would be cool to write a simple app to demonstrate EWL (one of the -E Foundation Libraries) and that a calculator would be a cool app to -write. -EOF diff --git a/zbeta/ffmpeg-svn/DETAILS b/zbeta/ffmpeg-svn/DETAILS index bc842f3..6f29b4b 100644 --- a/zbeta/ffmpeg-svn/DETAILS +++ b/zbeta/ffmpeg-svn/DETAILS @@ -1,6 +1,6 @@ MODULE=ffmpeg-svn MOD=ffmpeg - VERSION=beta + VERSION=svn-"`date +%Y%U`" SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=svn://svn.mplayerhq.hu/$MOD/trunk:$MOD diff --git a/zbeta/midori-git/BUILD b/zbeta/midori-git/BUILD new file mode 100644 index 0000000..d65f68e --- /dev/null +++ b/zbeta/midori-git/BUILD @@ -0,0 +1,13 @@ +( + +# default_cvs_config && +# ./configure --prefix=/usr && +# default_cvs_build + ./waf configure --prefix=/usr && + ./waf build && + prepare_install && + ./waf install + + +) > $C_FIFO 2>&1 + diff --git a/zbeta/midori-git/DEPENDS b/zbeta/midori-git/DEPENDS index 35cddaa..8744523 100644 --- a/zbeta/midori-git/DEPENDS +++ b/zbeta/midori-git/DEPENDS @@ -1,4 +1,8 @@ depends libsexy +<<<<<<< HEAD:zbeta/midori-git/DEPENDS depends webkit +======= +depends WebKit +>>>>>>> 54c9b60... Revert "Merge branch 'master' of ssh://lunar-linux.org/var/git/lunar/moonbase":zbeta/midori-git/DEPENDS optional_depends unique "" "" "for single instance midori" diff --git a/zbeta/midori-git/DETAILS b/zbeta/midori-git/DETAILS new file mode 100644 index 0000000..321bae2 --- /dev/null +++ b/zbeta/midori-git/DETAILS @@ -0,0 +1,20 @@ + MODULE=midori-git + VERSION="git-`date +%U`" + SOURCE=$MODULE.tar.bz2 + SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=git+http://software.twotoasts.de/media/midori.git + WEBSITE=http://software.twotoasts.de/?page=midori + ENTERED=20080429 + UPDATED=20080429 + PSAFE=no + SHORT="lightweight WebKit/Gtk+-2 based browser" + +cat << EOF +Midori is a lightweight web browser. + * Full integration with GTK+2 + * Fast rendering with WebKit + * Tabs, windows, and session management + * Bookmarks are stored with XBEL + * Searchbox based on OpenSearch + * User scripts and user styles support +EOF diff --git a/zbeta/mplayer/BUILD b/zbeta/mplayer/BUILD new file mode 100644 index 0000000..a62a2b2 --- /dev/null +++ b/zbeta/mplayer/BUILD @@ -0,0 +1,47 @@ +( + +#patch_it $SOURCE7 0 && +#patch_it $SOURCE8 0 && +#patch_it $SOURCE9 0 && +#patch_it $SOURCE10 0 && + + # using CFLAGS other than MPlayers autodetected will break + bad_flags compiler + + if [ $MENCODER == "n" ] ; then + OPTS=$OPTS" --disable-mencoder" + fi + + if [ $OSD == "y" ] ; then + OPTS=$OPTS" --enable-menu" + fi + + cd $SOURCE_DIRECTORY && + + ./configure --prefix=/usr \ + --confdir=/etc \ + --mandir=/usr/share/man \ + --codecsdir=/usr/lib/win32 \ + --enable-linux-devfs \ + --enable-largefiles \ + --confdir=/etc/mplayer \ + --datadir=/usr/share/mplayer \ + $OPTS && + + default_make && + + gather_docs etc/* && + install -d /usr/share/mplayer/Skin && + install -d /etc/mplayer && + install -m644 etc/codecs.conf /usr/share/mplayer/ && + install -m644 etc/example.conf /etc/mplayer/mplayer.conf && + install -m644 etc/input.conf /etc/mplayer/ && + + cp -a Skin/Blue /usr/share/mplayer/Skin/ && + ln -sf /usr/share/mplayer/Skin/Blue /usr/share/mplayer/Skin/default && + + cp -a fonts /usr/share/mplayer/ && + rm -rf /usr/share/mplayer/font && + ln -sf fonts/font-arial-iso-8859-1/font-arial-18-iso-8859-1 /usr/share/mplayer/font + +) > $C_FIFO 2>&1 diff --git a/zbeta/mplayer/CONFIGURE b/zbeta/mplayer/CONFIGURE new file mode 100644 index 0000000..a4d0e7b --- /dev/null +++ b/zbeta/mplayer/CONFIGURE @@ -0,0 +1,2 @@ + mquery MENCODER "Enable building of MEncoder ?" y + mquery OSD "Enable OSD support? " y diff --git a/zbeta/mplayer/DEPENDS b/zbeta/mplayer/DEPENDS new file mode 100644 index 0000000..6a3a21c --- /dev/null +++ b/zbeta/mplayer/DEPENDS @@ -0,0 +1,17 @@ +depends freetype2 +depends unzip +depends MPlayer-essentials +optional_depends libdvdread "" "" "To read DVDs" +optional_depends SDL "--enable-sdl" "" "to use SDL to output video signal" +optional_depends alsa-utils "" "" "for ALSA sound support" +optional_depends libvorbis "" "" "to use ogg audio format" +optional_depends libmatroska "" "" "for matroska audio/video container format support" +optional_depends faad "" "" "for external FAAD2 (MPA/AAC) support" +optional_depends libtheora "--enable-theora" "--disable-theora" "for OGG/Theora Video Playback" +optional_depends libXvMC "--enable-xvmc --with-xvmclib=XvMCW" "" "for hardware XvMC acceleration" +optional_depends gtk+-2 "--enable-gui" "--disable-gui" "for MPlayer GTK gui support" +optional_depends MPlayer-all "" "" "to install more foreign codecs" +optional_depends libggi "--enable-ggi" "--disable-ggi" "General Graphics Interface support" +optional_depends libggiwmh "--enable-ggiwmh" "--disable-ggiwmh" "GGI extension support" +optional_depends amrnb "" "--disable-libamr_nb" "AMR narrowband support" +optional_depends amrwb "" "--disable-libamr_wb" "AMR wideband support" diff --git a/zbeta/mplayer/DETAILS b/zbeta/mplayer/DETAILS new file mode 100644 index 0000000..835d6f9 --- /dev/null +++ b/zbeta/mplayer/DETAILS @@ -0,0 +1,50 @@ + MODULE=mplayer + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 + SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE2=font-arial-iso-8859-1.tar.bz2 + SOURCE3=font-arial-iso-8859-2.tar.bz2 + SOURCE4=font-arial-cp1250.tar.bz2 + SOURCE5=font-arial-iso-8859-7.tar.bz2 + SOURCE6=Blue-1.7.tar.bz2 + #SOURCE7=stream_cddb_fix_20080120.diff + ##SOURCE8=url_fix_20080120.diff + #SOURCE9=demux_mov_fix_20080129.diff + #SOURCE10=demux_audio_fix_20080129.diff + SOURCE_URL[0]=svn://svn.mplayerhq.hu/$MODULE/trunk:$MODULE + SOURCE2_URL[0]=ftp://ftp1.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE2_URL[1]=ftp://ftp2.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE3_URL[0]=ftp://ftp1.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE3_URL[1]=ftp://ftp2.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE4_URL[0]=ftp://ftp1.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE4_URL[1]=ftp://ftp2.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE5_URL[0]=ftp://ftp1.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE5_URL[1]=ftp://ftp2.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE6_URL[0]=ftp://ftp1.mplayerhq.hu/MPlayer/skins/ + #SOURCE7_URL=http://www.mplayerhq.hu/MPlayer/patches/ + #SOURCE8_URL=http://www.mplayerhq.hu/MPlayer/patches/ + # SOURCE9_URL=http://www.mplayerhq.hu/MPlayer/patches/ + # SOURCE10_URL=http://www.mplayerhq.hu/MPlayer/patches/ + SOURCE2_VFY=sha1:152c40bf20de34aa8802d7f80d34d673b0b67212 + SOURCE3_VFY=sha1:7b99bbe0e9ba89a57eccbea8f93c453c4f268181 + SOURCE4_VFY=sha1:ccf11dce5d0fb72fd3af97f788b7471cd0cd0b68 + SOURCE5_VFY=sha1:2a3fa8cf54ec3ed4dfa1a0e72f2d207c13507b9d + SOURCE6_VFY=sha1:45e5ee7a5541a5f1cfd2678a6c9b5911ca473cb9 + # SOURCE7_VFY=sha1:8d901c7a88fa120ed26492e741e1ae0fbe57e12d + # SOURCE8_VFY=sha1:1e92ded6f27bf07601fa318e24ec468fe225ffe5 + # SOURCE9_VFY=sha1:a17d82baff58e8cc569365341503273956fd26c8 + # SOURCE10_VFY=sha1:e25ba7d8d696d9c6365f105134ba723404adb4e1 + WEB_SITE=http://www.mplayerhq.hu + ENTERED=20010922 + UPDATED=20080409 + PSAFE=no + SHORT="A movie and animation player" + +cat << EOF +MPlayer is a movie and animation player based on the 0.90pre5 version of +MPEGplayer and the Avifile library. It uses mpeg2dec/libmpeg2 for MPEG +decoding. The supported file formats are: MPEG 1/2 (MPG, DAT, BIN, VOB) +and AVI (Mpeg/PCM/AC3/DivX/MS-ADPCM/aLaw audio and MPEG4/DivX/Indeo/CVID +video codecs). It supports hardware YUV colorspace conversion and +scaling via mga_vid/syncfb devices or the X11 Xv extension. +EOF diff --git a/zbeta/mplayer/POST_INSTALL b/zbeta/mplayer/POST_INSTALL new file mode 100644 index 0000000..3f3af25 --- /dev/null +++ b/zbeta/mplayer/POST_INSTALL @@ -0,0 +1,3 @@ +# Recompile mplayerplug-in + +if module_installed mplayerplug-in; then lin -c mplayerplug-in; fi diff --git a/zbeta/mplayer/PRE_BUILD b/zbeta/mplayer/PRE_BUILD new file mode 100644 index 0000000..6b20dfe --- /dev/null +++ b/zbeta/mplayer/PRE_BUILD @@ -0,0 +1,12 @@ +default_pre_build && + +mkdir $SOURCE_DIRECTORY/Skin && +cd $SOURCE_DIRECTORY/Skin && +unpack $SOURCE6 && + +mkdir $SOURCE_DIRECTORY/fonts && +cd $SOURCE_DIRECTORY/fonts && +unpack $SOURCE2 && +unpack $SOURCE3 && +unpack $SOURCE4 && +unpack $SOURCE5 diff --git a/zbeta/pigment-python/DEPENDS b/zbeta/pigment-python/DEPENDS new file mode 100644 index 0000000..7a625f2 --- /dev/null +++ b/zbeta/pigment-python/DEPENDS @@ -0,0 +1,3 @@ +depends pigment +depends pygobject +depends gst-python diff --git a/zbeta/pigment-python/DETAILS b/zbeta/pigment-python/DETAILS new file mode 100644 index 0000000..a89af01 --- /dev/null +++ b/zbeta/pigment-python/DETAILS @@ -0,0 +1,13 @@ + MODULE=pigment-python + VERSION=0.3.8 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL=http://elisa.fluendo.com/static/download/pigment/ + SOURCE_VFY=sha1:871ed17d32aed39ecf974cca9246c919af9e9b0e + WEBSITE=https://code.fluendo.com/pigment/trac + ENTERED=20081007 + UPDATED=20081007 + SHORT="python bindings for pigment" + +cat << EOF +python bindings for pigment +EOF diff --git a/zbeta/pigment/DEPENDS b/zbeta/pigment/DEPENDS new file mode 100644 index 0000000..90695e9 --- /dev/null +++ b/zbeta/pigment/DEPENDS @@ -0,0 +1,4 @@ +depends gstreamer-10 +depends gst-plugins-base +depends gtk-doc +depends cairo diff --git a/zbeta/pigment/DETAILS b/zbeta/pigment/DETAILS new file mode 100644 index 0000000..5748e7c --- /dev/null +++ b/zbeta/pigment/DETAILS @@ -0,0 +1,15 @@ + MODULE=pigment + VERSION=0.3.11 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=http://elisa.fluendo.com/static/download/pigment/ + SOURCE_VFY=sha1:de26ed65201b4eac1e2b806c945a7a9199d9c5c9 + WEBSITE=https://code.fluendo.com/pigment/trac + ENTERED=20081007 + UPDATED=20081007 + SHORT="3D scene graph library" + +cat << EOF +Pigment is a 3D scene graph library designed to easily create rich +application user interfaces. +EOF + diff --git a/zbeta/xf86-video-mach64/BUILD b/zbeta/xf86-video-mach64/BUILD deleted file mode 100644 index cfe3408..0000000 --- a/zbeta/xf86-video-mach64/BUILD +++ /dev/null @@ -1,6 +0,0 @@ -( - . /etc/profile.d/x11r7.rc && - - default_build - -) > $C_FIFO 2>&1 diff --git a/zbeta/xf86-video-mach64/CONFLICTS b/zbeta/xf86-video-mach64/CONFLICTS deleted file mode 100644 index 5013182..0000000 --- a/zbeta/xf86-video-mach64/CONFLICTS +++ /dev/null @@ -1,6 +0,0 @@ -conflicts XOrg6 && -conflicts XOrg-test && -conflicts XOrg-fonts-base && -conflicts XOrg-fonts-extra && -conflicts XOrg-drm && -conflicts XOrg-drm-cvs diff --git a/zbeta/xf86-video-mach64/DEPENDS b/zbeta/xf86-video-mach64/DEPENDS deleted file mode 100644 index 514f37d..0000000 --- a/zbeta/xf86-video-mach64/DEPENDS +++ /dev/null @@ -1,2 +0,0 @@ -depends xorg-server -depends mesa-lib diff --git a/zbeta/xf86-video-mach64/DETAILS b/zbeta/xf86-video-mach64/DETAILS deleted file mode 100644 index 9510d35..0000000 --- a/zbeta/xf86-video-mach64/DETAILS +++ /dev/null @@ -1,18 +0,0 @@ - MODULE=xf86-video-mach64 - VERSION=6.8.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$XORG_URL/individual/driver/ - SOURCE_VFY=sha1:0f130aca927ede0fd3ed7876c52817a5ef9215bb - MODULE_PREFIX=${X11R7_PREFIX:-/usr} - WEB_SITE=http://www.x.org/ - ENTERED=20080918 - UPDATED=20080918 - SHORT="the X.Org video driver for older ATI/Mach64 based cards" - -cat << EOF -xf86-video-mach64 provides the X.Org video drivers for older the -older ATI/Mach64 based video cards. - -This driver does not support newer ATI Rage or Radeon cards: see -the xf86-video-ati and xf86-video-radeonhd modules. -EOF diff --git a/zlocal/README b/zlocal/README index f040170..e69de29 100644 --- a/zlocal/README +++ b/zlocal/README @@ -1,9 +0,0 @@ - -moonbase/zlocal: - -This directory is a placeholder for new and custom modules. Put -modules you are testing, designing or something else in this -directory to keep them apart from the automatically updated -modules in moonbase. No module will ever be automatically inserted -into this directory or removed. - From samuel.verstraete at gmail.com Mon Oct 5 13:49:57 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:57 -0000 Subject: [Lunar-commits] mpfr and gcc: version bump Message-ID: <20091005114956.B9B159B22C@doppio.foo-projects.org> commit 2757202fc282c092806ae8785fab8887696b0485 Author: Samuel Date: Wed Apr 1 07:20:26 2009 +0200 mpfr and gcc: version bump --- compilers/gcc/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compilers/gcc/DETAILS b/compilers/gcc/DETAILS index 91ae188..10d2e9a 100644 --- a/compilers/gcc/DETAILS +++ b/compilers/gcc/DETAILS @@ -1,13 +1,13 @@ MODULE=gcc - VERSION=4.2.4 + VERSION=4.3.3 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=$GNU_URL/gcc/$MODULE-$VERSION SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/gcc/$MODULE-$VERSION SOURCE_URL[2]=http://www.online-mirror.org/gcc/$MODULE-$VERSION - SOURCE_VFY=sha1:bb20efc7750fe0d6172c5945572bf036fe59d3dd + SOURCE_VFY=sha1:e378b7a0cb0f7dbf6436f4efb5756e29a90fdc1c WEB_SITE=http://gcc.gnu.org ENTERED=20020628 - UPDATED=20080523 + UPDATED=20090331 PSAFE=no SHORT="GNU compiler collection" From samuel.verstraete at gmail.com Mon Oct 5 13:49:57 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:57 -0000 Subject: [Lunar-commits] binutils: version bump Message-ID: <20091005114956.D2F219B22E@doppio.foo-projects.org> commit 8f09853aebc3b49ea3cfc1e204ac7e7a934f7195 Author: Samuel Date: Wed Apr 1 07:20:56 2009 +0200 binutils: version bump --- devel/binutils/BUILD | 2 +- devel/binutils/DETAILS | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/devel/binutils/BUILD b/devel/binutils/BUILD index 3a1ccd0..a64f316 100644 --- a/devel/binutils/BUILD +++ b/devel/binutils/BUILD @@ -1,6 +1,6 @@ ( - patch_it $SOURCE_CACHE/$SOURCE2 0 && +# patch_it $SOURCE_CACHE/$SOURCE2 0 && #Somehow I believe this might/should be logged as a bug to the glibc guys... sedit 's/^all: all-redirect/all: all-redirect $(MKDOC)/' \ diff --git a/devel/binutils/DETAILS b/devel/binutils/DETAILS index 562b8c2..8b9749c 100644 --- a/devel/binutils/DETAILS +++ b/devel/binutils/DETAILS @@ -1,15 +1,15 @@ MODULE=binutils - VERSION=2.18 + VERSION=2.19 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE2=binutils-2.18-makeinfo.patch + #SOURCE2=binutils-2.18-makeinfo.patch SOURCE_URL[0]=$GNU_URL/$MODULE/ SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ - SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:fdec92e9dfc6c32155869f3910f47041c78e2277 - SOURCE2_VFY=sha1:f42e425f7651f8d80838514e4cc34917bde8f6b3 +# SOURCE2_URL=$PATCH_URL + SOURCE_VFY=sha1:a150b97ec47996bf8f01d6bc14d41587faa4bbff +# SOURCE2_VFY=sha1:f42e425f7651f8d80838514e4cc34917bde8f6b3 WEB_SITE=http://sources.redhat.com/binutils ENTERED=20010922 - UPDATED=20071121 + UPDATED=20090401 SHORT="essential collection of binary utilities." cat << EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:57 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:57 -0000 Subject: [Lunar-commits] mesa-lib: version bump, 7.4 Message-ID: <20091005114956.EC1839B22D@doppio.foo-projects.org> commit f9530bc7e6ba832dd2296c8b59a3ebf5145deb71 Author: Samuel Date: Wed Apr 1 07:21:08 2009 +0200 mesa-lib: version bump, 7.4 --- xorg7/mesa-lib/BUILD | 2 +- xorg7/mesa-lib/CONFIGURE | 6 +----- xorg7/mesa-lib/DETAILS | 10 +++++----- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/xorg7/mesa-lib/BUILD b/xorg7/mesa-lib/BUILD index 58a78dd..cd7e7a9 100644 --- a/xorg7/mesa-lib/BUILD +++ b/xorg7/mesa-lib/BUILD @@ -8,7 +8,7 @@ make && make install - install -v -m644 include/GLView.h /usr/include/ && +# install -v -m644 include/GLView.h /usr/include/ && install -v -m755 progs/xdemos/glxinfo progs/xdemos/glxgears /usr/bin ) > $C_FIFO 2>&1 diff --git a/xorg7/mesa-lib/CONFIGURE b/xorg7/mesa-lib/CONFIGURE index 2d1a6ad..f4bb4d2 100644 --- a/xorg7/mesa-lib/CONFIGURE +++ b/xorg7/mesa-lib/CONFIGURE @@ -2,10 +2,6 @@ SUPPORTED_DRIVERS="i810 i915 i965 mach64 mga r128 r200 r300 radeon s3v savage si make_drivers_checklist() { - # Execute the modified supported locales file to get a list of - # supported variables in the $SUPPORTED_LOCALES variable - # . $SUPPORTED_DRIVERS && - # For each locale, extract name, title and charmap information for driver in $SUPPORTED_DRIVERS; do title=$driver @@ -32,7 +28,7 @@ if ! grep -q CONFIGURED $MODULE_CONFIG; then message "Selecting drivers is optional" fi - if query "Would you like to select drivers? (if not selected, all locales will be installed)" y; then + if query "Would you like to select drivers? (if not selected, all drivers will be installed)" y; then unpack_localedata MESADRIVER=`select_drivers` diff --git a/xorg7/mesa-lib/DETAILS b/xorg7/mesa-lib/DETAILS index 57ba101..8677788 100644 --- a/xorg7/mesa-lib/DETAILS +++ b/xorg7/mesa-lib/DETAILS @@ -1,5 +1,5 @@ MODULE=mesa-lib - VERSION=7.2 + VERSION=7.4 SOURCE=MesaLib-$VERSION.tar.bz2 SOURCE2=MesaDemos-$VERSION.tar.bz2 SOURCE3=MesaGLUT-$VERSION.tar.bz2 @@ -7,12 +7,12 @@ SOURCE_URL=$SFORGE_URL/mesa3d/ SOURCE2_URL=$SFORGE_URL/mesa3d/ SOURCE3_URL=$SFORGE_URL/mesa3d/ - SOURCE_VFY=sha1:a6dce814cc56a562890ab79cf4e205f62459a29c - SOURCE2_VFY=sha1:3d7b9b3ee84ed3637849f7598faf3d60c5a2a9fd - SOURCE3_VFY=sha1:2d969fc8214622b93bcc594c36e56bb573678d05 + SOURCE_VFY=sha1:66b5fe185e63706ee2a76e247fd982fdf13972e2 + SOURCE2_VFY=sha1:d57c792e05fe5347ff8600f8aab078fe047a4035 + SOURCE3_VFY=sha1:91a405b23b0b848325cc11fbffc0f62008d2a9a7 WEB_SITE=http://www.mesa3d.org ENTERED=20060215 - UPDATED=20080921 + UPDATED=20090331 PSAFE="no" SHORT="Mesa 3D library" From samuel.verstraete at gmail.com Mon Oct 5 13:49:57 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:57 -0000 Subject: [Lunar-commits] dri2proto: version bump 1.99.3 Message-ID: <20091005114957.12AE09B22B@doppio.foo-projects.org> commit 946be7f2b390cfbf2eb4f26dd512896b1004eaee Author: Samuel Date: Wed Apr 1 07:21:25 2009 +0200 dri2proto: version bump 1.99.3 --- xorg7/proto/dri2proto/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xorg7/proto/dri2proto/DETAILS b/xorg7/proto/dri2proto/DETAILS index 8144981..a9475d1 100644 --- a/xorg7/proto/dri2proto/DETAILS +++ b/xorg7/proto/dri2proto/DETAILS @@ -1,12 +1,12 @@ MODULE=dri2proto - VERSION=1.1 + VERSION=1.99.3 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$XORG_URL/individual/proto - SOURCE_VFY=sha1:6429338a703561c02c0aa7516d1d981e7a2bf005 + SOURCE_VFY=sha1:0be97cbc1440df50cd950b4b5f36e5fcb44a4ab7 MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://www.x.org ENTERED=20080909 - UPDATED=20080909 + UPDATED=20090331 SHORT="Protocol headers" cat << EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:57 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:57 -0000 Subject: [Lunar-commits] monodevelop-vala: new module Message-ID: <20091005114957.2F1B89B22C@doppio.foo-projects.org> commit 5556c67bc3dee1add29df701bb14429e9db8ead4 Author: Samuel Date: Sat Apr 11 11:12:57 2009 +0200 monodevelop-vala: new module --- zbeta/midori-git/DEPENDS | 4 ---- zbeta/monodevelop-vala/DETAILS | 13 +++++++++++++ 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/zbeta/midori-git/DEPENDS b/zbeta/midori-git/DEPENDS index 8744523..35cddaa 100644 --- a/zbeta/midori-git/DEPENDS +++ b/zbeta/midori-git/DEPENDS @@ -1,8 +1,4 @@ depends libsexy -<<<<<<< HEAD:zbeta/midori-git/DEPENDS depends webkit -======= -depends WebKit ->>>>>>> 54c9b60... Revert "Merge branch 'master' of ssh://lunar-linux.org/var/git/lunar/moonbase":zbeta/midori-git/DEPENDS optional_depends unique "" "" "for single instance midori" diff --git a/zbeta/monodevelop-vala/DETAILS b/zbeta/monodevelop-vala/DETAILS new file mode 100644 index 0000000..fec94a2 --- /dev/null +++ b/zbeta/monodevelop-vala/DETAILS @@ -0,0 +1,13 @@ + MODULE=monodevelop-vala + VERSION=2.0 + SOURCE=$MODULE-$VERSION.tar.bz2 +#SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION + SOURCE_URL=http://ftp.novell.com/pub/mono/sources/monodevelop-vala/ + SOURCE_VFY=sha1:246447e141971dad80a0914e11165fdc3c6c9c5d + WEB_SITE=http://www.gtk.org + ENTERED=20090409 + UPDATED=20090409 + SHORT="" + +cat << EOF +EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:57 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:57 -0000 Subject: [Lunar-commits] Thunar: SVN! Message-ID: <20091005114957.487159B22E@doppio.foo-projects.org> commit 44c24862ec855b6f26fa68562468012137f90ec9 Author: Samuel Date: Tue Apr 21 13:16:40 2009 +0200 Thunar: SVN! --- xfce4/core/Thunar/DETAILS | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/xfce4/core/Thunar/DETAILS b/xfce4/core/Thunar/DETAILS index c7c9a08..4a9d2ec 100644 --- a/xfce4/core/Thunar/DETAILS +++ b/xfce4/core/Thunar/DETAILS @@ -1,12 +1,13 @@ MODULE=Thunar - VERSION=1.0.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-4.6.0/src/ - SOURCE_VFY=sha1:581594eb4bfe4db49244773ee3abeaaf136a0e0f + MOD=thunar + VERSION="svn-`date +%Y%U`" + SOURCE=$MOD.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MOD + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MOD/trunk:$MOD MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://thunar.xfce.org/ ENTERED=20060407 - UPDATED=20090223 + UPDATED=20071207 SHORT="File manager for xfce" cat << EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:57 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:57 -0000 Subject: [Lunar-commits] consonance: SVN! Message-ID: <20091005114957.577039B22F@doppio.foo-projects.org> commit d7b6f8f776233fb67855ba7bb74993404a6c2893 Author: Samuel Date: Tue Apr 21 13:18:21 2009 +0200 consonance: SVN! --- audio/consonance/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/audio/consonance/DETAILS b/audio/consonance/DETAILS index 641d93f..778c2a4 100644 --- a/audio/consonance/DETAILS +++ b/audio/consonance/DETAILS @@ -1,9 +1,9 @@ MODULE=consonance - VERSION=0.4.1 - SOURCE=$MODULE-$VERSION.tar.gz - SOURCE_URL=$SFORGE_URL/$MODULE + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+https://consonance.svn.sourceforge.net/svnroot/consonance/trunk:consonance WEB_SITE=http://consonance.sourceforge.net/ - SOURCE_VFY=sha1:bb04185043677d024de11fcaa55bf00b295be0f0 ENTERED=20080805 UPDATED=20090307 SHORT="lightweight music manager" From samuel.verstraete at gmail.com Mon Oct 5 13:49:58 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:58 -0000 Subject: [Lunar-commits] exaile: SVN! Message-ID: <20091005114957.805589B22D@doppio.foo-projects.org> commit c662eb11cbfeeef6aa5c808e0bc7b0a738234fff Author: Samuel Date: Tue Apr 21 13:19:15 2009 +0200 exaile: SVN! --- audio/exaile/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/audio/exaile/DETAILS b/audio/exaile/DETAILS index 85bfadf..cd67c41 100644 --- a/audio/exaile/DETAILS +++ b/audio/exaile/DETAILS @@ -1,12 +1,12 @@ MODULE=exaile - VERSION=0.2.13 + VERSION=0.2.14 SOURCE=${MODULE}_${VERSION}.tar.gz -SOURCE_DIRECTORY=$BUILD_DIRECTORY/${MODULE}_${VERSION} +SOURCE_DIRECTORY=$BUILD_DIRECTORY/${MODULE}-${VERSION} SOURCE_URL=http://exaile.org/files/ - SOURCE_VFY=sha1:8cc754c55333dad750d27e45a4e16f53c1f1522c + SOURCE_VFY=sha1:3442867ae6f5116f87eb2488da73cf6d23442f52 WEB_SITE=http://exaile.org/ ENTERED=20061212 - UPDATED=20080626 + UPDATED=20081027 SHORT="GTK+ media player aiming to be similar to KDE's AmaroK" cat << EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:58 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:58 -0000 Subject: [Lunar-commits] exo: SVN! Message-ID: <20091005114957.B1AE99B22B@doppio.foo-projects.org> commit c08410932e6dea425fe32d5483c821bfa34a2825 Author: Samuel Date: Tue Apr 21 13:33:29 2009 +0200 exo: SVN! --- xfce4/core/exo/DETAILS | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/xfce4/core/exo/DETAILS b/xfce4/core/exo/DETAILS index f1a1347..52c53ff 100644 --- a/xfce4/core/exo/DETAILS +++ b/xfce4/core/exo/DETAILS @@ -1,12 +1,13 @@ MODULE=exo - VERSION=0.3.100 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-4.6.0/src/ - SOURCE_VFY=sha1:987262654d23e0da359d434cc29f0b64ad06a733 + MOD=libexo + VERSION="svn-`date +%U`" + SOURCE=$MOD.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MOD + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MOD/trunk:$MOD MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://libexo.os-cillation.com/ ENTERED=20040930 - UPDATED=20090227 + UPDATED=20071207 SHORT="the Xfce extension library" cat << EOF libexo is a library for Xfce that contain additional widgets and a From samuel.verstraete at gmail.com Mon Oct 5 13:49:58 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:58 -0000 Subject: [Lunar-commits] binutils: 2.19 Message-ID: <20091005114957.D1B059B22C@doppio.foo-projects.org> commit ea33ea68c96ad8fa0121df000e16ebf0188baaa2 Author: Samuel Date: Tue Apr 21 13:33:54 2009 +0200 binutils: 2.19 --- devel/binutils/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devel/binutils/DETAILS b/devel/binutils/DETAILS index 562b8c2..2641824 100644 --- a/devel/binutils/DETAILS +++ b/devel/binutils/DETAILS @@ -1,15 +1,15 @@ MODULE=binutils - VERSION=2.18 + VERSION=2.19 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE2=binutils-2.18-makeinfo.patch SOURCE_URL[0]=$GNU_URL/$MODULE/ SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:fdec92e9dfc6c32155869f3910f47041c78e2277 + SOURCE_VFY=sha1:a150b97ec47996bf8f01d6bc14d41587faa4bbff SOURCE2_VFY=sha1:f42e425f7651f8d80838514e4cc34917bde8f6b3 WEB_SITE=http://sources.redhat.com/binutils ENTERED=20010922 - UPDATED=20071121 + UPDATED=20090421 SHORT="essential collection of binary utilities." cat << EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:59 2009 From: samuel.verstraete at gmail.com (samuel verstraete) Date: Mon, 05 Oct 2009 11:49:59 -0000 Subject: [Lunar-commits] gdm-old: gdm 2.20.10 for Xfce users that do not like gnome Message-ID: <20091005114958.331DC9B22F@doppio.foo-projects.org> commit 3ed321d23fdedbe48e711691f0289ae10e486e0c Author: samuel verstraete Date: Tue Apr 21 14:03:30 2009 +0200 gdm-old: gdm 2.20.10 for Xfce users that do not like gnome --- zbeta/gdm-old/BUILD | 45 ++++++++++++++++++++++ zbeta/gdm-old/DEPENDS | 2 + zbeta/gdm-old/DETAILS | 50 +++++++++++++++++++++++++ zbeta/gdm-old/Default | 27 +++++++++++++ zbeta/gdm-old/POST_INSTALL | 5 ++ zbeta/gdm-old/Sessions/gnome.desktop | 68 ++++++++++++++++++++++++++++++++++ zbeta/gdm-old/gnomerc | 13 ++++++ zbeta/gdm-old/init.d/gdm | 27 +++++++++++++ zbeta/gdm-old/pam.d/gdm | 14 +++++++ zbeta/gdm-old/pam.d/gdm-autologin | 13 ++++++ 10 files changed, 264 insertions(+), 0 deletions(-) diff --git a/zbeta/gdm-old/BUILD b/zbeta/gdm-old/BUILD new file mode 100644 index 0000000..98cdea6 --- /dev/null +++ b/zbeta/gdm-old/BUILD @@ -0,0 +1,45 @@ +( + + sedit 's:GDM_KEY_HALT "daemon/DefaultPath:GDM_KEY_HALT "daemon/HaltCommand:' daemon/gdm.h + + add_priv_user gdm:gdm + + if module_installed Linux-PAM; then SCHEME="pam" + elif module_installed shadow; then SCHEME="shadow" + else SCHEME="auto" + fi + + OPTS="$OPTS --enable-authentication-scheme=$SCHEME" + + LDFLAGS="$LDFLAGS -L/usr/X11R6/lib" + + ./configure --build=$BUILD \ + --prefix=${GNOME210_PREFIX:-/usr} \ + --with-xinerama=yes \ + --sysconfdir=/etc/X11 \ + --localstatedir=/var \ + --infodir=${GNOME210_PREFIX:-/usr}/share/info \ + --mandir=${GNOME210_PREFIX:-/usr}/share/man \ + $OPTS && + + sedit 's#$(LINK)#$(LINK) $(LIBS)#' daemon/Makefile && + make && + prepare_install && + make install && + + mkdir -p /var/gdm && + chown -R gdm:gdm /var/gdm && + chmod 750 /var/gdm && + + # This has to be a DIRECTORY, not a FILE + if [ -e "/etc/X11/gdm/Sessions" ]; then + rm -fr /etc/X11/gdm/Sessions || true + fi + + mkdir -p /etc/X11/gdm/Sessions/ && + install --mode=644 $SCRIPT_DIRECTORY/gnomerc /etc/X11/gdm/gnomerc && + install --mode=755 $SCRIPT_DIRECTORY/Sessions/gnome.desktop /etc/X11/dm/Sessions && + install --mode=755 $SCRIPT_DIRECTORY/Default /etc/X11/gdm/PreSession/ && + install --mode=755 $SCRIPT_DIRECTORY/Default /etc/X11/gdm/Sessions/ + +) > $C_FIFO 2>&1 diff --git a/zbeta/gdm-old/DEPENDS b/zbeta/gdm-old/DEPENDS new file mode 100644 index 0000000..7a8a2dd --- /dev/null +++ b/zbeta/gdm-old/DEPENDS @@ -0,0 +1,2 @@ +depends librsvg +depends gnome-doc-utils diff --git a/zbeta/gdm-old/DETAILS b/zbeta/gdm-old/DETAILS new file mode 100644 index 0000000..0f61f85 --- /dev/null +++ b/zbeta/gdm-old/DETAILS @@ -0,0 +1,50 @@ + MODULE=gdm-old + MOD=gdm + VERSION=2.20.10 + MAJOR=2.20 + SOURCE=$MOD-$VERSION.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MOD-$VERSION + SOURCE_URL=$GNOME_URL/sources/$MOD/$MAJOR/ + SOURCE_VFY=sha1:42e9e52184393352f005f1735843a30f764aef18 + WEB_SITE=http://www.gnome.org/projects/gdm/ + ENTERED=20020716 + UPDATED=20080710 + SHORT="the Gnome Display Manager" + +cat << EOF +The Gnome Display Manager is a re-implementation of the well known xdm +program. gdm 2.5 implements all significant features required for +managing local and remote displays. + +gdm daemon: + o X Authentication + o Default and per-display initialization scripts + o Pre and post session scripts + o Pluggable Authentication Modules + o XDMCP + o TCP Wrappers for access control + o Autologin for single user workstations + o Timed login for kiosks and public terminals + +gdmlogin: + o Logo image + o Background image/color + o Halt and reboot + o Iconified login window + o Session selection support + o Language selection support + o GNOME session selection support + o Face browser + o Background program support + o Xinerama support + +gdmchooser: + o Visual host browser + o Customizable icons + +gdmconfig: + o GUI way to configure everything about GDM + +Most features can be turned on and off in the configuration file by +the sysadmin. +EOF diff --git a/zbeta/gdm-old/Default b/zbeta/gdm-old/Default new file mode 100644 index 0000000..f91d3ab --- /dev/null +++ b/zbeta/gdm-old/Default @@ -0,0 +1,27 @@ +#!/bin/sh +# +# Note that any setup should come before the sessreg command as +# that must be 'exec'ed for the pid to be correct (sessreg uses the parent +# pid) +# +# Note that output goes into the .xsession-errors file for easy debugging +# +XSETROOT=`which xsetroot 2>/dev/null` +if [ x$XSETROOT != x ] ; then + $XSETROOT -cursor_name left_ptr -solid "#363047" +fi + + +SESSREG=`which sessreg 2>/dev/null` +if [ x$SESSREG != x ] ; then + # some output for easy debugging + echo "$0: Registering your session with wtmp and utmp" + echo "$0: running: $SESSREG -a -w /var/log/wtmp -u /var/run/utmp -x \"$X_SERVERS\" -h \"$REMOTE_HOST\" -l $DISPLAY $USER" + + exec $SESSREG -a -w /var/log/wtmp -u /var/run/utmp -x "$X_SERVERS" -h "$REMOTE_HOST" -l $DISPLAY $USER + # this is not reached +fi + +# some output for easy debugging +echo "$0: could not find the sessreg utility, cannot update wtmp and utmp" +exit 0 diff --git a/zbeta/gdm-old/POST_INSTALL b/zbeta/gdm-old/POST_INSTALL new file mode 100644 index 0000000..f393d4a --- /dev/null +++ b/zbeta/gdm-old/POST_INSTALL @@ -0,0 +1,5 @@ + +if module_installed gnome-session; then lin -c gnome-session; fi +if module_installed gnome-desktop; then lin -c gnome-desktop; fi + + diff --git a/zbeta/gdm-old/Sessions/gnome.desktop b/zbeta/gdm-old/Sessions/gnome.desktop new file mode 100644 index 0000000..6777c17 --- /dev/null +++ b/zbeta/gdm-old/Sessions/gnome.desktop @@ -0,0 +1,68 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=GNOME +Name[az]=GNOME +Name[be]=GNOME +Name[ca]=GNOME +Name[cs]=GNOME +Name[cy]=GNOME +Name[da]=Gnome +Name[de]=GNOME +Name[el]=GNOME +Name[es]=GNOME +Name[et]=GNOME +Name[fi]=Gnome +Name[fr]=GNOME +Name[he]=GNOME +Name[hu]=GNOME +Name[it]=GNOME +Name[ko]=?????? +Name[ms]=GNOME +Name[nl]=GNOME +Name[no]=GNOME +Name[pl]=GNOME +Name[pt]=GNOME +Name[pt_BR]=GNOME +Name[ru]=GNOME +Name[sk]=GNOME +Name[sl]=GNOME +Name[sq]=GNOME +Name[sr]=???????? +Name[sr at Latn]=Gnom +Name[sv]=GNOME +Name[uk]=GNOME +Name[zh_CN]=GNOME +Name[zh_TW]=GNOME +Comment=This session logs you into GNOME +Comment[az]=Bu iclas sizi GNOME'a daxil ed??c??k +Comment[be]=?????????? ?????????? ?????????????? ?????? ?? GNOME +Comment[ca]=Aquesta sessi?? entra en GNOME +Comment[cs]=Toto sezen?? v??s p??ihl??s?? do GNOME +Comment[cy]=Mae'r sesiwn hwn yn eich mewngofnodi i GNOME +Comment[da]=Denne session logger dig p?? Gnome +Comment[de]=Diese Sitzung meldet Sie an GNOME an +Comment[el]=???????? ?? ???????????????? ?????? ?????????????? ?????? GNOME +Comment[es]=Con esta sesi??n accede a GNOME +Comment[fi]=T??m?? istunto kirjaa sis????n Gnomeen +Comment[fr]=Cette session vous connectera dans GNOME +Comment[he]=?????????? ?????????? ???? ?????????? ???????? ?? GNOME +Comment[ko]=GNOME???????????? ?????????????????? +Comment[ms]=Sesi ini akan log anda ke GNOME +Comment[nl]=Deze sessie meldt u aan bij GNOME +Comment[no]=Denne sesjonen logger deg inn til GNOME +Comment[pl]=Sesja logowania do GNOME +Comment[pt]=Esta sess??o inicia-o no GNOME +Comment[pt_BR]=Logar no ambiente GNOME +Comment[sk]=Toto sedenie v??s prihl??si do prostredia GNOME +Comment[sl]=Ta seja vas prijavi v GNOMe +Comment[sq]=Kjo seanc?? do t'ju fus?? n?? GNOME +Comment[sr]=?????? ???????????? ?????? ???????????????????? ???? ?????????? +Comment[sr at Latn]=Ova sesija vas prijavljuje na Gnoma +Comment[sv]=Denna session loggar in dig i GNOME +Comment[uk]=?????????? ???????????? ?? ???????????????????? GNOME +Comment[zh_CN]=???????????????????????? GNOME +Comment[zh_TW]=???????????????????????????????????? GNOME ?????? +Exec=/usr/bin/gnome-session +# no icon yet, only the top three are currently used +Icon= +Type=Application diff --git a/zbeta/gdm-old/gnomerc b/zbeta/gdm-old/gnomerc new file mode 100644 index 0000000..1fd5585 --- /dev/null +++ b/zbeta/gdm-old/gnomerc @@ -0,0 +1,13 @@ +startssh= +sshagent=/usr/bin/ssh-agent +gnomesession=/usr/bin/gnome-session + +if [ -x $sshagent -a -z "$SSH_AUTH_SOCK" ]; then + startssh=yes +fi + +if [ -n "$startssh" ]; then + exec $sshagent -- $gnomesession +else + exec $gnomesession +fi diff --git a/zbeta/gdm-old/init.d/gdm b/zbeta/gdm-old/init.d/gdm new file mode 100644 index 0000000..32922f5 --- /dev/null +++ b/zbeta/gdm-old/init.d/gdm @@ -0,0 +1,27 @@ +#!/bin/bash + +# chkconfig: 5 95 05 +# description: gdm is gnome's version of the xdm graphical login manager +# processname: /usr/sbin/gdm +# sigreload: HUP + +. /lib/lsb/init-functions $1 + +stop() { + kill `cat /var/run/gdm.pid` + evaluate_retval +} + +status() { + if [ -f /var/run/gdm.pid ]; then + if ps -p `cat /var/run/gdm.pid` > /dev/null; then + echo "gdm is running with Process ID $(cat /var/run/gdm.pid)" + else + echo "gdm is not running but /var/run/gdm.pid exists" + return 1 + fi + else + echo "gdm is not running" + fi +} + diff --git a/zbeta/gdm-old/pam.d/gdm b/zbeta/gdm-old/pam.d/gdm new file mode 100644 index 0000000..47f0938 --- /dev/null +++ b/zbeta/gdm-old/pam.d/gdm @@ -0,0 +1,14 @@ +#%PAM-1.0 +# +# The PAM configuration file for the `gdm' service +# +auth required pam_env.so +auth include system-auth +account required pam_nologin.so +account include system-auth +password include system-auth +session include system-auth +session required pam_loginuid.so +session optional pam_console.so + + diff --git a/zbeta/gdm-old/pam.d/gdm-autologin b/zbeta/gdm-old/pam.d/gdm-autologin new file mode 100644 index 0000000..a4b0dab --- /dev/null +++ b/zbeta/gdm-old/pam.d/gdm-autologin @@ -0,0 +1,13 @@ +#%PAM-1.0 +# +# The PAM configuration file for the `gdm-autologin' service +# +auth required pam_env.so +auth required pam_permit.so +account required pam_nologin.so +account include system-auth +password include system-auth +session include system-auth +session required pam_loginuid.so +session optional pam_console.so + From samuel.verstraete at gmail.com Mon Oct 5 13:49:59 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:59 -0000 Subject: [Lunar-commits] mousepad: SVN! Message-ID: <20091005114958.137249B22E@doppio.foo-projects.org> commit 1d3f4a336829fac79f7f6bc3acfa09e72139c59f Author: Samuel Date: Tue Apr 21 13:36:43 2009 +0200 mousepad: SVN! --- xfce4/apps/mousepad/DETAILS | 18 ++++++++++++------ 1 files changed, 12 insertions(+), 6 deletions(-) diff --git a/xfce4/apps/mousepad/DETAILS b/xfce4/apps/mousepad/DETAILS index d622f36..454c03d 100644 --- a/xfce4/apps/mousepad/DETAILS +++ b/xfce4/apps/mousepad/DETAILS @@ -1,13 +1,19 @@ MODULE=mousepad - VERSION=0.2.16 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-4.6.0/src/ - SOURCE_VFY=sha1:4e63033e0a71578f3ec9a0d2e6a505efd0424ef9 + VERSION="svn-`date +%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + #SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MOD + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/branches/nick_0_3:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://erikharrison.net/ + WEB_SITE=http://www.xfce.org ENTERED=20050218 - UPDATED=20090227 + UPDATED=20071207 SHORT="Lighweight xfce text editor" cat << EOF Mousepad is an Xfce port of leafpad, the minimal gtk+-2 text editor. + +the svn branch is the one from Nick Schermer, slightly more advanced +than the trunk branch +If you want the trunk version, uncomment the other sourceurl, comment +the nick sourceurl and delete /var/spool/lunar/mousepad-svn*.tar.bz2 EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:59 2009 From: samuel.verstraete at gmail.com (samuel verstraete) Date: Mon, 05 Oct 2009 11:49:59 -0000 Subject: [Lunar-commits] ristretto: switch to git branch Message-ID: <20091005114958.6F9689B2CA@doppio.foo-projects.org> commit 0526ab994d36761de252799301d046a3c2f7098b Author: samuel verstraete Date: Sun May 3 20:03:55 2009 +0200 ristretto: switch to git branch --- xfce4/apps/ristretto/DETAILS | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/xfce4/apps/ristretto/DETAILS b/xfce4/apps/ristretto/DETAILS index edbb0e0..e08ea8a 100644 --- a/xfce4/apps/ristretto/DETAILS +++ b/xfce4/apps/ristretto/DETAILS @@ -1,12 +1,13 @@ MODULE=ristretto - VERSION="svn-`date +%Y%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/goodies/$MODULE/trunk:$MODULE + SOURCE_URL=git://git.xfce.org/stephan/$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://goodies.xfce.org/projects/applications/ristretto ENTERED=20070826 - UPDATED=20090420 + UPDATED=20090428 + PSAFE=no SHORT="fast and lightweight picture-viewer" cat << EOF From elangelo at lunar-linux.org Mon Oct 5 13:49:59 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:49:59 -0000 Subject: [Lunar-commits] fixes Message-ID: <20091005114958.A49AE9B232@doppio.foo-projects.org> commit b2d0643cd97aaf622a471fffcea882b7a282f334 Author: Samuel Verstraete Date: Tue May 12 13:35:57 2009 +0200 fixes --- devel/binutils/BUILD | 10 +++++----- devel/binutils/DETAILS | 2 +- gnome2/desktop/libsoup/DEPENDS | 2 ++ xfce4/core/Thunar/BUILD | 2 +- xfce4/core/exo/BUILD | 14 ++++++++++++++ xfce4/core/libxfcegui4/BUILD | 2 +- xfce4/core/xfce4-settings/BUILD | 14 ++++++++++++++ xfce4/core/xfconf/BUILD | 14 ++++++++++++++ 8 files changed, 52 insertions(+), 8 deletions(-) diff --git a/devel/binutils/BUILD b/devel/binutils/BUILD index 3a1ccd0..b01a5de 100644 --- a/devel/binutils/BUILD +++ b/devel/binutils/BUILD @@ -1,13 +1,13 @@ ( - patch_it $SOURCE_CACHE/$SOURCE2 0 && +# patch_it $SOURCE_CACHE/$SOURCE2 0 && #Somehow I believe this might/should be logged as a bug to the glibc guys... - sedit 's/^all: all-redirect/all: all-redirect $(MKDOC)/' \ - bfd/doc/Makefile.in && +# sedit 's/^all: all-redirect/all: all-redirect $(MKDOC)/' \ +# bfd/doc/Makefile.in && - aclocal && - autoconf && +# aclocal && +# autoconf && OPTS+=" --host=$BUILD" && default_config && diff --git a/devel/binutils/DETAILS b/devel/binutils/DETAILS index 2641824..4a49cab 100644 --- a/devel/binutils/DETAILS +++ b/devel/binutils/DETAILS @@ -1,7 +1,7 @@ MODULE=binutils VERSION=2.19 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE2=binutils-2.18-makeinfo.patch + #SOURCE2=binutils-2.18-makeinfo.patch SOURCE_URL[0]=$GNU_URL/$MODULE/ SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ SOURCE2_URL=$PATCH_URL diff --git a/gnome2/desktop/libsoup/DEPENDS b/gnome2/desktop/libsoup/DEPENDS index bbda9c7..40dfa40 100644 --- a/gnome2/desktop/libsoup/DEPENDS +++ b/gnome2/desktop/libsoup/DEPENDS @@ -2,3 +2,5 @@ depends glib-2 depends gnutls depends sqlite depends libproxy + +optional_depends GConf "" "--without-gnome" "gnome support" diff --git a/xfce4/core/Thunar/BUILD b/xfce4/core/Thunar/BUILD index 12e8e69..15f96e8 100644 --- a/xfce4/core/Thunar/BUILD +++ b/xfce4/core/Thunar/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && diff --git a/xfce4/core/exo/BUILD b/xfce4/core/exo/BUILD new file mode 100644 index 0000000..5ca1695 --- /dev/null +++ b/xfce4/core/exo/BUILD @@ -0,0 +1,14 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + --enable-xinerama \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/libxfcegui4/BUILD b/xfce4/core/libxfcegui4/BUILD index b695eac..5ca1695 100644 --- a/xfce4/core/libxfcegui4/BUILD +++ b/xfce4/core/libxfcegui4/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ --enable-xinerama \ $OPTS && diff --git a/xfce4/core/xfce4-settings/BUILD b/xfce4/core/xfce4-settings/BUILD new file mode 100644 index 0000000..5ca1695 --- /dev/null +++ b/xfce4/core/xfce4-settings/BUILD @@ -0,0 +1,14 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + --enable-xinerama \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/xfconf/BUILD b/xfce4/core/xfconf/BUILD new file mode 100644 index 0000000..5ca1695 --- /dev/null +++ b/xfce4/core/xfconf/BUILD @@ -0,0 +1,14 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + --enable-xinerama \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 From samuel.verstraete at gmail.com Mon Oct 5 13:49:59 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:59 -0000 Subject: [Lunar-commits] monodevelop-database: new version Message-ID: <20091005114958.CB2C29B22C@doppio.foo-projects.org> commit 5a67acc3df7fedece73cff1ab6f82dee939d998f Author: Samuel Date: Tue May 12 15:19:04 2009 +0200 monodevelop-database: new version --- sql/monodevelop-database/DETAILS | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/sql/monodevelop-database/DETAILS b/sql/monodevelop-database/DETAILS index 1c67b6f..db611e8 100644 --- a/sql/monodevelop-database/DETAILS +++ b/sql/monodevelop-database/DETAILS @@ -1,11 +1,12 @@ MODULE=monodevelop-database - VERSION=1.0 + VERSION=2.0 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://go-mono.com/sources/$MODULE/ - SOURCE_VFY=sha1:238fe15bc15118560e99ee6e0d9fc51c36dae645 - WEB_SITE=http://monodevelop.com + SOURCE_VFY=sha1:fd7c7b2de452f13d49f8699a765f0517ffbdaff7 + WEB_SITE=http://monodevelop.com ENTERED=20071220 - UPDATED=20080319 + UPDATED=20090512 + PSAFE=no SHORT="Addin for monodevelop to support database connections" cat << EOF From samuel.verstraete at gmail.com Mon Oct 5 13:49:59 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:49:59 -0000 Subject: [Lunar-commits] fix Message-ID: <20091005114958.EFA9D9B231@doppio.foo-projects.org> commit 15ad2c99f688b92880df95377edc8528c19a7e51 Author: Samuel Date: Tue May 12 15:19:44 2009 +0200 fix --- xfce4/core/exo/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xfce4/core/exo/DETAILS b/xfce4/core/exo/DETAILS index 52c53ff..1f8aa75 100644 --- a/xfce4/core/exo/DETAILS +++ b/xfce4/core/exo/DETAILS @@ -1,6 +1,6 @@ MODULE=exo MOD=libexo - VERSION="svn-`date +%U`" + VERSION="svn-`date +%Y%U`" SOURCE=$MOD.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MOD SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MOD/trunk:$MOD From elangelo at lunar-linux.org Mon Oct 5 13:50:00 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:00 -0000 Subject: [Lunar-commits] consonance changes Message-ID: <20091005114959.4A2E09B22B@doppio.foo-projects.org> commit 00527bd71d5845bf6019936fd1421bc52a94ca17 Author: Samuel Verstraete Date: Tue May 12 21:58:40 2009 +0200 consonance changes --- audio/consonance/DEPENDS | 1 + audio/consonance/DETAILS | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/audio/consonance/DEPENDS b/audio/consonance/DEPENDS index 5c881bb..bbf0b39 100644 --- a/audio/consonance/DEPENDS +++ b/audio/consonance/DEPENDS @@ -2,3 +2,4 @@ depends libmad depends libogg depends flac depends libsndfile +depends libnotify diff --git a/audio/consonance/DETAILS b/audio/consonance/DETAILS index 778c2a4..ed1acf5 100644 --- a/audio/consonance/DETAILS +++ b/audio/consonance/DETAILS @@ -6,6 +6,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE WEB_SITE=http://consonance.sourceforge.net/ ENTERED=20080805 UPDATED=20090307 + PSAFE=no SHORT="lightweight music manager" cat << EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:00 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:00 -0000 Subject: [Lunar-commits] xfce: chages Message-ID: <20091005114959.5FE6D9B22D@doppio.foo-projects.org> commit 287e2b2aa9b7ec26f5da21ffd88cecc0d03320b1 Author: Samuel Verstraete Date: Tue May 12 21:58:57 2009 +0200 xfce: chages --- xfce4/core/xfce4-session/BUILD | 8 ++------ xfce4/core/xfce4-session/DEPENDS | 2 ++ xfce4/core/xfce4-session/DETAILS | 4 +--- xfce4/core/xfconf/DETAILS | 16 ---------------- 4 files changed, 5 insertions(+), 25 deletions(-) diff --git a/xfce4/core/xfce4-session/BUILD b/xfce4/core/xfce4-session/BUILD index 339d297..578930b 100644 --- a/xfce4/core/xfce4-session/BUILD +++ b/xfce4/core/xfce4-session/BUILD @@ -1,16 +1,12 @@ ( - -# patch_it $SOURCE2 1 && [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - PATH="$PATH:/usr/X11/bin" - - ./autogen.sh --build=$BUILD \ + ./autogen.sh --build=$BUILD \ --prefix=${MODULE_PREFIX} \ - $OPTS && + $OPTS && default_make diff --git a/xfce4/core/xfce4-session/DEPENDS b/xfce4/core/xfce4-session/DEPENDS index 1bda173..c9cfb80 100644 --- a/xfce4/core/xfce4-session/DEPENDS +++ b/xfce4/core/xfce4-session/DEPENDS @@ -1,5 +1,7 @@ + depends xfconf depends libxfce4util depends libxfcegui4 optional_depends fortune "" "" "so xfce4-tips can give you the fortune of the day" + diff --git a/xfce4/core/xfce4-session/DETAILS b/xfce4/core/xfce4-session/DETAILS index 06b1aa9..9d9c9e9 100644 --- a/xfce4/core/xfce4-session/DETAILS +++ b/xfce4/core/xfce4-session/DETAILS @@ -1,10 +1,8 @@ MODULE=xfce4-session - VERSION="svn-`date +%Y%U`" + VERSION=svn-`date +%Y%U` SOURCE=$MODULE.tar.bz2 - #SOURCE2=fast_xfce.patch SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE - #SOURCE2_URL=http://merlin.ugent.be/lunar/patches MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 diff --git a/xfce4/core/xfconf/DETAILS b/xfce4/core/xfconf/DETAILS index 5f13920..8e93262 100644 --- a/xfce4/core/xfconf/DETAILS +++ b/xfce4/core/xfconf/DETAILS @@ -1,4 +1,3 @@ -<<<<<<< HEAD:xfce4/core/xfconf/DETAILS MODULE=xfconf VERSION="svn-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 @@ -11,20 +10,5 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE SHORT="Something that does something" cat << EOF -Something that does that other thing -======= - MODULE=xfconf - VERSION=4.6.1 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src - SOURCE_VFY=sha1:6df092942c5c5af5d65a58589fb85e29755a37ee - MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://www.xfce.org - ENTERED=20090227 - UPDATED=20090424 - SHORT="Configuration system for Xfce" - -cat << EOF Configuration storage system for Xfce ->>>>>>> master:xfce4/core/xfconf/DETAILS EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:00 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:00 -0000 Subject: [Lunar-commits] linux-2.6-rc: BLEEDING EDGE Message-ID: <20091005114959.8E0FD9B2C9@doppio.foo-projects.org> commit 126940582dc788127725db77078f79333189f65f Author: Samuel Verstraete Date: Thu May 14 18:18:43 2009 +0200 linux-2.6-rc: BLEEDING EDGE --- kernel/linux-2.6-rc/BUILD | 39 ++++++++++++++++++++++++++++++++++++++ kernel/linux-2.6-rc/CONFIGURE | 11 ++++++++++ kernel/linux-2.6-rc/DEPENDS | 2 + kernel/linux-2.6-rc/DETAILS | 25 ++++++++++++++++++++++++ kernel/linux-2.6-rc/POST_INSTALL | 8 +++++++ kernel/linux-2.6-rc/PRE_BUILD | 32 +++++++++++++++++++++++++++++++ 6 files changed, 117 insertions(+), 0 deletions(-) diff --git a/kernel/linux-2.6-rc/BUILD b/kernel/linux-2.6-rc/BUILD new file mode 100644 index 0000000..88536e6 --- /dev/null +++ b/kernel/linux-2.6-rc/BUILD @@ -0,0 +1,39 @@ +( + + while + if [ "$CONFIG_KERNEL" == "y" ]; then + if [ "$PREFER_XCONFIG" == "y" -a -n "$DISPLAY" ]; then + make xconfig || make menuconfig || make config + elif [ "$PREFER_MENUCONFIG" == "y" ]; then + make menuconfig || make config + else + make config + fi + if ! query "Repeat configuration?" n; then + CONFIG_KERNEL=n + fi + else + false + fi + do + true + done + +) && ( + + # Needed for x86_64 + MYARCH="`arch | grep -qw i.86 && echo i386 || arch`" + + echo | make oldconfig + LD_PRELOAD= cp .config $CONFIG_CACHE/.config.2.6.rc + rm -f arch/${MYARCH}/boot/bzImage + + make ${MAKES:+-j$MAKES} bzImage && + make ${MAKES:+-j$MAKES} modules && + backup_mods_krnl $VERSION && + prepare_install && + make modules_install && + cp arch/${MYARCH}/boot/bzImage /boot/$VERSION-`arch` && + cp System.map /boot/System.map-$VERSION-`arch` + +) > $C_FIFO 2>&1 diff --git a/kernel/linux-2.6-rc/CONFIGURE b/kernel/linux-2.6-rc/CONFIGURE new file mode 100644 index 0000000..8fa5719 --- /dev/null +++ b/kernel/linux-2.6-rc/CONFIGURE @@ -0,0 +1,11 @@ +mquery PREFER_XCONFIG "Do you prefer xconfig over menuconfig?" n + +if [ "`get_module_config PREFER_XCONFIG`" = "y" ]; then + set_module_config "PREFER_MENUCONFIG" "n" ; +else + mquery PREFER_MENUCONFIG "Do you prefer menuconfig over config?" y +fi + +unset_module_config CONFIG_KERNEL +mquery CONFIG_KERNEL "Configure linux kernel?" n + diff --git a/kernel/linux-2.6-rc/DEPENDS b/kernel/linux-2.6-rc/DEPENDS new file mode 100644 index 0000000..5a3371a --- /dev/null +++ b/kernel/linux-2.6-rc/DEPENDS @@ -0,0 +1,2 @@ +depends autoconf +depends module-init-tools diff --git a/kernel/linux-2.6-rc/DETAILS b/kernel/linux-2.6-rc/DETAILS new file mode 100644 index 0000000..96da935 --- /dev/null +++ b/kernel/linux-2.6-rc/DETAILS @@ -0,0 +1,25 @@ + MODULE=linux-2.6-rc + VERSION=2.6.30-rc5 + SOURCE=linux-$VERSION.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION + SOURCE_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6/testing + SOURCE_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6/testing + SOURCE_VFY=sha1:de7e6706b9198dc46be48bf46f051d3b30dd4c76 + WEB_SITE=http://www.kernel.org + ENTERED=20041019 + UPDATED=20090512 + SHORT="The core of a Linux GNU Operating System" + KEEP_SOURCE=on + TMPFS=off + +cat << EOF +This is the stable version of the 2.6.x branch. + +Linux is a clone of the Unix kernel, written from scratch by Linus +Torvalds with assistance from a loosely-knit team of hackers across the +Net. It aims towards POSIX and Single UNIX Specification compliance. It +has all the features you would expect in a modern fully-fledged Unix +kernel, including true multitasking, virtual memory, shared libraries, +demand loading, shared copy-on-write executables, proper memory +management, and TCP/IP networking. +EOF diff --git a/kernel/linux-2.6-rc/POST_INSTALL b/kernel/linux-2.6-rc/POST_INSTALL new file mode 100644 index 0000000..dd6cddc --- /dev/null +++ b/kernel/linux-2.6-rc/POST_INSTALL @@ -0,0 +1,8 @@ +update_bootloader $VERSION-`arch` $VERSION-`arch` + +# Reinstall packages that add their own kernel modules + +lin -c kernel-reqs + +# create /sys +mkdir -p /sys diff --git a/kernel/linux-2.6-rc/PRE_BUILD b/kernel/linux-2.6-rc/PRE_BUILD new file mode 100644 index 0000000..ae8eafd --- /dev/null +++ b/kernel/linux-2.6-rc/PRE_BUILD @@ -0,0 +1,32 @@ +# Bail if we're not running a core with kernel functions + +if [ ! -e $FUNCTIONS/kernel.lunar ] ; then + message "${PROBLEM_COLOR}Bailing out, ${DEFAULT_COLOR}Lunar (or theedge) code version too old" + message "${PROBLEM_COLOR}Update core ${MODULE_COLOR}(lin lunar or lin theedge)${DEFAULT_COLOR} to install this kernel" + exit 1 +fi + +mk_source_dir $SOURCE_DIRECTORY +rm -f /usr/src/linux +ln -sf $SOURCE_DIRECTORY /usr/src/linux +cd $SOURCE_DIRECTORY + +# Check wether we're running an up-to-date tar +if [ `installed_version tar | cut -d. -f2` -ge 15 ]; then + tar xf $SOURCE_CACHE/$SOURCE --no-same-owner \ + --no-same-permissions --strip-components=1 +else + message "${PROBLEM_COLOR}Error:${DEFAULT_COLOR} Please update your tar module" + exit 1 +fi + +# if we have an EXTRA patch, apply it +if [ -n "${SOURCE2}" ]; then + patch_it ${SOURCE2} 1 +fi + +if [ -f $CONFIG_CACHE/.config.2.6.rc ]; then + cp $CONFIG_CACHE/.config.2.6.rc $SOURCE_DIRECTORY/.config; +elif [ -f $CONFIG_CACHE/.config.beta ]; then + cp $CONFIG_CACHE/.config.beta $SOURCE_DIRECTORY/.config; +fi From elangelo at lunar-linux.org Mon Oct 5 13:50:00 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:00 -0000 Subject: [Lunar-commits] mplayer: svn Message-ID: <20091005114959.C66509B22E@doppio.foo-projects.org> commit f2adb09e9978fa6d0e16aac8029f42075ae20b90 Author: Samuel Verstraete Date: Thu May 14 20:10:58 2009 +0200 mplayer: svn --- zbeta/mplayer/BUILD | 48 +++++++++++++++++++++++++++++++++++++++++ zbeta/mplayer/CONFIGURE | 3 ++ zbeta/mplayer/DEPENDS | 18 +++++++++++++++ zbeta/mplayer/DETAILS | 51 ++++++++++++++++++++++++++++++++++++++++++++ zbeta/mplayer/POST_INSTALL | 1 + zbeta/mplayer/PRE_BUILD | 13 +++++++++++ 6 files changed, 134 insertions(+), 0 deletions(-) diff --git a/zbeta/mplayer/BUILD b/zbeta/mplayer/BUILD new file mode 100644 index 0000000..8863686 --- /dev/null +++ b/zbeta/mplayer/BUILD @@ -0,0 +1,48 @@ +( + +#patch_it $SOURCE7 0 && +#patch_it $SOURCE8 0 && +#patch_it $SOURCE9 0 && +#patch_it $SOURCE10 0 && + + # using CFLAGS other than MPlayers autodetected will break + bad_flags compiler + + if [ $MENCODER == "n" ] ; then + OPTS=$OPTS" --disable-mencoder" + fi + + if [ $OSD == "y" ] ; then + OPTS=$OPTS" --enable-menu" + fi + + cd $SOURCE_DIRECTORY && + + ./configure --prefix=/usr \ + --confdir=/etc \ + --mandir=/usr/share/man \ + --codecsdir=/usr/lib/win32 \ + --enable-linux-devfs \ + --enable-largefiles \ + --confdir=/etc/mplayer \ + --datadir=/usr/share/mplayer \ + $OPTS && + + default_make && + + gather_docs etc/* && + install -d /usr/share/mplayer/Skin && + install -d /etc/mplayer && + install -m644 etc/codecs.conf /usr/share/mplayer/ && + install -m644 etc/example.conf /etc/mplayer/mplayer.conf && + install -m644 etc/input.conf /etc/mplayer/ && + + cp -a Skin/Blue /usr/share/mplayer/Skin/ && + ln -sf /usr/share/mplayer/Skin/Blue /usr/share/mplayer/Skin/default && + + cp -a fonts /usr/share/mplayer/ && + rm -rf /usr/share/mplayer/font && + ln -sf fonts/font-arial-iso-8859-1/font-arial-18-iso-8859-1 /usr/share/mplayer/font + +) > $C_FIFO 2>&1 + diff --git a/zbeta/mplayer/CONFIGURE b/zbeta/mplayer/CONFIGURE new file mode 100644 index 0000000..af43a19 --- /dev/null +++ b/zbeta/mplayer/CONFIGURE @@ -0,0 +1,3 @@ +mquery MENCODER "Enable building of MEncoder ?" y +mquery OSD "Enable OSD support? " y + diff --git a/zbeta/mplayer/DEPENDS b/zbeta/mplayer/DEPENDS new file mode 100644 index 0000000..12f3e07 --- /dev/null +++ b/zbeta/mplayer/DEPENDS @@ -0,0 +1,18 @@ +depends freetype2 +depends unzip +depends MPlayer-essentials +optional_depends libdvdread "" "" "To read DVDs" +optional_depends SDL "--enable-sdl" "" "to use SDL to output video signal" +optional_depends alsa-utils "" "" "for ALSA sound support" +optional_depends libvorbis "" "" "to use ogg audio format" +optional_depends libmatroska "" "" "for matroska audio/video container format support" +optional_depends faad "" "" "for external FAAD2 (MPA/AAC) support" +optional_depends libtheora "--enable-theora" "--disable-theora" "for OGG/Theora Video Playback" +optional_depends libXvMC "--enable-xvmc --with-xvmclib=XvMCW" "" "for hardware XvMC acceleration" +optional_depends gtk+-2 "--enable-gui" "--disable-gui" "for MPlayer GTK gui support" +optional_depends MPlayer-all "" "" "to install more foreign codecs" +optional_depends libggi "--enable-ggi" "--disable-ggi" "General Graphics Interface support" +optional_depends libggiwmh "--enable-ggiwmh" "--disable-ggiwmh" "GGI extension support" +optional_depends amrnb "" "--disable-libamr_nb" "AMR narrowband support" +optional_depends amrwb "" "--disable-libamr_wb" "AMR wideband support" + diff --git a/zbeta/mplayer/DETAILS b/zbeta/mplayer/DETAILS new file mode 100644 index 0000000..399d76a --- /dev/null +++ b/zbeta/mplayer/DETAILS @@ -0,0 +1,51 @@ + MODULE=mplayer + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 + SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE2=font-arial-iso-8859-1.tar.bz2 + SOURCE3=font-arial-iso-8859-2.tar.bz2 + SOURCE4=font-arial-cp1250.tar.bz2 + SOURCE5=font-arial-iso-8859-7.tar.bz2 + SOURCE6=Blue-1.7.tar.bz2 + #SOURCE7=stream_cddb_fix_20080120.diff + ##SOURCE8=url_fix_20080120.diff + #SOURCE9=demux_mov_fix_20080129.diff + #SOURCE10=demux_audio_fix_20080129.diff + SOURCE_URL[0]=svn://svn.mplayerhq.hu/$MODULE/trunk:$MODULE + SOURCE2_URL[0]=ftp://ftp1.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE2_URL[1]=ftp://ftp2.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE3_URL[0]=ftp://ftp1.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE3_URL[1]=ftp://ftp2.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE4_URL[0]=ftp://ftp1.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE4_URL[1]=ftp://ftp2.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE5_URL[0]=ftp://ftp1.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE5_URL[1]=ftp://ftp2.mplayerhq.hu/$MODULE/releases/fonts/ + SOURCE6_URL[0]=ftp://ftp1.mplayerhq.hu/MPlayer/skins/ + #SOURCE7_URL=http://www.mplayerhq.hu/MPlayer/patches/ + #SOURCE8_URL=http://www.mplayerhq.hu/MPlayer/patches/ + # SOURCE9_URL=http://www.mplayerhq.hu/MPlayer/patches/ + # SOURCE10_URL=http://www.mplayerhq.hu/MPlayer/patches/ + SOURCE2_VFY=sha1:152c40bf20de34aa8802d7f80d34d673b0b67212 + SOURCE3_VFY=sha1:7b99bbe0e9ba89a57eccbea8f93c453c4f268181 + SOURCE4_VFY=sha1:ccf11dce5d0fb72fd3af97f788b7471cd0cd0b68 + SOURCE5_VFY=sha1:2a3fa8cf54ec3ed4dfa1a0e72f2d207c13507b9d + SOURCE6_VFY=sha1:45e5ee7a5541a5f1cfd2678a6c9b5911ca473cb9 + # SOURCE7_VFY=sha1:8d901c7a88fa120ed26492e741e1ae0fbe57e12d + # SOURCE8_VFY=sha1:1e92ded6f27bf07601fa318e24ec468fe225ffe5 + # SOURCE9_VFY=sha1:a17d82baff58e8cc569365341503273956fd26c8 + # SOURCE10_VFY=sha1:e25ba7d8d696d9c6365f105134ba723404adb4e1 + WEB_SITE=http://www.mplayerhq.hu + ENTERED=20010922 + UPDATED=20080409 + PSAFE=no + SHORT="A movie and animation player" + +cat << EOF +MPlayer is a movie and animation player based on the 0.90pre5 version of +MPEGplayer and the Avifile library. It uses mpeg2dec/libmpeg2 for MPEG +decoding. The supported file formats are: MPEG 1/2 (MPG, DAT, BIN, VOB) +and AVI (Mpeg/PCM/AC3/DivX/MS-ADPCM/aLaw audio and MPEG4/DivX/Indeo/CVID +video codecs). It supports hardware YUV colorspace conversion and +scaling via mga_vid/syncfb devices or the X11 Xv extension. +EOF + diff --git a/zbeta/mplayer/POST_INSTALL b/zbeta/mplayer/POST_INSTALL new file mode 100644 index 0000000..410fa55 --- /dev/null +++ b/zbeta/mplayer/POST_INSTALL @@ -0,0 +1 @@ +if module_installed mplayerplug-in; then lin -c mplayerplug-in; fi diff --git a/zbeta/mplayer/PRE_BUILD b/zbeta/mplayer/PRE_BUILD new file mode 100644 index 0000000..fdb9a44 --- /dev/null +++ b/zbeta/mplayer/PRE_BUILD @@ -0,0 +1,13 @@ +default_pre_build && + +mkdir $SOURCE_DIRECTORY/Skin && +cd $SOURCE_DIRECTORY/Skin && +unpack $SOURCE6 && + +mkdir $SOURCE_DIRECTORY/fonts && +cd $SOURCE_DIRECTORY/fonts && +unpack $SOURCE2 && +unpack $SOURCE3 && +unpack $SOURCE4 && +unpack $SOURCE5 + From samuel.verstraete at gmail.com Mon Oct 5 13:50:00 2009 From: samuel.verstraete at gmail.com (samuel verstraete) Date: Mon, 05 Oct 2009 11:50:00 -0000 Subject: [Lunar-commits] ristretto: updated build Message-ID: <20091005115000.3B2279B22C@doppio.foo-projects.org> commit 73bf6a48f791434c182696b12c60685b1b5888f9 Author: samuel verstraete Date: Sat May 16 08:23:59 2009 +0200 ristretto: updated build --- xfce4/apps/ristretto/BUILD | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/xfce4/apps/ristretto/BUILD b/xfce4/apps/ristretto/BUILD index 1776fd6..15f96e8 100644 --- a/xfce4/apps/ristretto/BUILD +++ b/xfce4/apps/ristretto/BUILD @@ -4,6 +4,10 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - default_build + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make ) > $C_FIFO 2>&1 From samuel.verstraete at gmail.com Mon Oct 5 13:50:00 2009 From: samuel.verstraete at gmail.com (samuel verstraete) Date: Mon, 05 Oct 2009 11:50:00 -0000 Subject: [Lunar-commits] xbmc: new stuff Message-ID: <20091005115000.490789B22D@doppio.foo-projects.org> commit f9b9a4955a2f2f946ed285d7538155899cdc87ae Author: samuel verstraete Date: Sun May 17 11:25:28 2009 +0200 xbmc: new stuff --- video/xbmc/DEPENDS | 9 +++++++++ video/xbmc/DETAILS | 16 ++++++++++++++++ 2 files changed, 25 insertions(+), 0 deletions(-) diff --git a/video/xbmc/DEPENDS b/video/xbmc/DEPENDS new file mode 100644 index 0000000..2a236d7 --- /dev/null +++ b/video/xbmc/DEPENDS @@ -0,0 +1,9 @@ +depends glew +depends fribidi +depends mysql +depends lzo +depends libcdio +depends SDL +depends SDL_image +depends SDL_mixer +depends enca diff --git a/video/xbmc/DETAILS b/video/xbmc/DETAILS new file mode 100644 index 0000000..3d5e7e9 --- /dev/null +++ b/video/xbmc/DETAILS @@ -0,0 +1,16 @@ +#http://heanet.dl.sourceforge.net/sourceforge/xbmc/XBMC_9.04_Babylon-linux-osx-win32.tar.bz2 +MODULE=xbmc +VERSION=9.04 +SOURCE=XBMC_${VERSION}_Babylon-linux-osx-win32.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/XBMC_9.04_Babylon-linux-osx-win32 +SOURCE_URL=$SFORGE_URL/$MODULE +SOURCE_VFY=sha1:097db32fa4ae4ced0c8d101195d040a81a6ca105 +ENTERED=20090517 +UPDATED=20090517 +SHORT="XBMC" + +cat << EOF +XBMC + +EOF + From elangelo at lunar-linux.org Mon Oct 5 13:50:01 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:01 -0000 Subject: [Lunar-commits] linux-2.6-rc: 30-rc7 Message-ID: <20091005115000.AA1C59B22B@doppio.foo-projects.org> commit 14bda61531a54a714726e470a3f2d1a29dd8f7aa Author: Samuel Verstraete Date: Mon May 25 08:29:09 2009 +0200 linux-2.6-rc: 30-rc7 --- kernel/linux-2.6-rc/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/linux-2.6-rc/DETAILS b/kernel/linux-2.6-rc/DETAILS index 96da935..3e3be95 100644 --- a/kernel/linux-2.6-rc/DETAILS +++ b/kernel/linux-2.6-rc/DETAILS @@ -1,13 +1,13 @@ MODULE=linux-2.6-rc - VERSION=2.6.30-rc5 + VERSION=2.6.30-rc7 SOURCE=linux-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6/testing SOURCE_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6/testing - SOURCE_VFY=sha1:de7e6706b9198dc46be48bf46f051d3b30dd4c76 + SOURCE_VFY=sha1:12b781e4cee59f5cb2450197186cafcc997daab6 WEB_SITE=http://www.kernel.org ENTERED=20041019 - UPDATED=20090512 + UPDATED=20090525 SHORT="The core of a Linux GNU Operating System" KEEP_SOURCE=on TMPFS=off From elangelo at lunar-linux.org Mon Oct 5 13:50:01 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:01 -0000 Subject: [Lunar-commits] vde2: virtual distributed network Message-ID: <20091005115000.C8FF09B22E@doppio.foo-projects.org> commit 93095b80f876846bac19cd36adf1ac3b8d9f157c Author: Samuel Verstraete Date: Mon May 25 09:02:24 2009 +0200 vde2: virtual distributed network --- devel/vde2/DETAILS | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/devel/vde2/DETAILS b/devel/vde2/DETAILS new file mode 100644 index 0000000..9b37ed0 --- /dev/null +++ b/devel/vde2/DETAILS @@ -0,0 +1,15 @@ + MODULE=vde2 + VERSION=2.2.2 + SOURCE=${MODULE}-$VERSION.tar.gz + SOURCE_URL=$SFORGE_URL/vde + SOURCE_VFY=sha1:979efc41dd5d0c41f54929159031361e961c6b80 + WEB_SITE=http://kvm.qumranet.com/kvmwiki + ENTERED=20090525 + UPDATED=20090525 + SHORT="virtual distributed ethernet" + +cat << EOF +VDE: Virtual Distributed Ethernet. It creates the abstraction of a +virtual ethernet: a single vde can be accessed by virtual and real +computers +EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:01 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:01 -0000 Subject: [Lunar-commits] linux-2.6-rc Message-ID: <20091005115000.E3FAB9B231@doppio.foo-projects.org> commit 77be9012a26c3ffc98c497fcac3c02e2e22ae488 Author: Samuel Verstraete Date: Sun Jun 7 12:41:13 2009 +0200 linux-2.6-rc --- kernel/linux-2.6-rc/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/linux-2.6-rc/DETAILS b/kernel/linux-2.6-rc/DETAILS index 3e3be95..337f984 100644 --- a/kernel/linux-2.6-rc/DETAILS +++ b/kernel/linux-2.6-rc/DETAILS @@ -1,13 +1,13 @@ MODULE=linux-2.6-rc - VERSION=2.6.30-rc7 + VERSION=2.6.30-rc8 SOURCE=linux-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6/testing SOURCE_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6/testing - SOURCE_VFY=sha1:12b781e4cee59f5cb2450197186cafcc997daab6 + SOURCE_VFY=sha1:bf9c2e93fb584375eba2c17c8255070d38bc5ca9 WEB_SITE=http://www.kernel.org ENTERED=20041019 - UPDATED=20090525 + UPDATED=20090604 SHORT="The core of a Linux GNU Operating System" KEEP_SOURCE=on TMPFS=off From elangelo at lunar-linux.org Mon Oct 5 13:50:02 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:02 -0000 Subject: [Lunar-commits] tumbler: xfce4 stuff Message-ID: <20091005115001.056299B22D@doppio.foo-projects.org> commit 095b72e2f4aede7eab4cdd968c885d9f4ddd374d Author: Samuel Verstraete Date: Mon Jun 8 20:14:06 2009 +0200 tumbler: xfce4 stuff --- xfce4/core/tumbler/BUILD | 9 +++++++++ xfce4/core/tumbler/DETAILS | 16 ++++++++++++++++ 2 files changed, 25 insertions(+), 0 deletions(-) diff --git a/xfce4/core/tumbler/BUILD b/xfce4/core/tumbler/BUILD new file mode 100644 index 0000000..a086dca --- /dev/null +++ b/xfce4/core/tumbler/BUILD @@ -0,0 +1,9 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + default_cvs_build + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/tumbler/DETAILS b/xfce4/core/tumbler/DETAILS new file mode 100644 index 0000000..8860e56 --- /dev/null +++ b/xfce4/core/tumbler/DETAILS @@ -0,0 +1,16 @@ + MODULE=tumbler + VERSION="git-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=git://git.xfce.org/jannis/$MODULE + MODULE_PREFIX=${XFCE4_PREFIX:-/usr} + WEB_SITE=http://goodies.xfce.org/projects/applications/ristretto + ENTERED=20090607 + UPDATED=20090607 + PSAFE=no + SHORT="thumbnailing service" + +cat << EOF +A D-Bus thumbnailing service based on the thumbnail management D-Bus +specification +EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:02 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:02 -0000 Subject: [Lunar-commits] gedit: GEdit Text Editor in desktop file Message-ID: <20091005115001.5D8CD9B22C@doppio.foo-projects.org> commit 412f8c3315ad0e5c1cf9aae8bba0d201e3b17b10 Author: Samuel Verstraete Date: Mon Jun 8 21:05:59 2009 +0200 gedit: GEdit Text Editor in desktop file --- gnome2/desktop/gedit/BUILD | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/gnome2/desktop/gedit/BUILD b/gnome2/desktop/gedit/BUILD index 5d34717..84ec0e3 100644 --- a/gnome2/desktop/gedit/BUILD +++ b/gnome2/desktop/gedit/BUILD @@ -1,5 +1,9 @@ ( + sedit s/Text\ Editor/GEdit\ Text\ Editor/g data/gedit.desktop.in && + sedit s/Text\ Editor/GEdit\ Text\ Editor/g data/gedit.desktop.in.in && + + ./configure --prefix=${GNOME210_PREFIX:-/usr} \ --build=$BUILD \ --sysconfdir=/etc \ From elangelo at lunar-linux.org Mon Oct 5 13:50:02 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:02 -0000 Subject: [Lunar-commits] buildbot: new module Message-ID: <20091005115001.71E2E9B22F@doppio.foo-projects.org> commit 68c7c2268fe879ac1e9189dcb6be7c65dfd3f2ed Author: Samuel Verstraete Date: Sun Jun 21 10:25:54 2009 +0200 buildbot: new module --- devel/buildbot/BUILD | 4 ++++ devel/buildbot/DEPENDS | 1 + devel/buildbot/DETAILS | 13 +++++++++++++ 3 files changed, 18 insertions(+), 0 deletions(-) diff --git a/devel/buildbot/BUILD b/devel/buildbot/BUILD new file mode 100644 index 0000000..3d6b04e --- /dev/null +++ b/devel/buildbot/BUILD @@ -0,0 +1,4 @@ +( + prepare_install && + python ./setup.py install +) > $C_FIFO 2>&1 diff --git a/devel/buildbot/DEPENDS b/devel/buildbot/DEPENDS new file mode 100644 index 0000000..2f6cf73 --- /dev/null +++ b/devel/buildbot/DEPENDS @@ -0,0 +1 @@ +depends Twisted diff --git a/devel/buildbot/DETAILS b/devel/buildbot/DETAILS new file mode 100644 index 0000000..373236d --- /dev/null +++ b/devel/buildbot/DETAILS @@ -0,0 +1,13 @@ + MODULE=buildbot + VERSION=0.7.10p1 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL=$SFORGE_URL/$MODULE + SOURCE_VFY=sha1:799bf66cf4d6f8b9f94c0b167ac14b1198afdb7d + ENTERED=20090616 + UPDATED=20090616 + SHORT="buildbot" + +cat< multipath-tools: mount lvm qemu modules Message-ID: <20091005115001.A9FDF9B233@doppio.foo-projects.org> commit 688ac75c3c70fa368ba1b01d89375843face89ef Author: Samuel Verstraete Date: Sun Jun 21 10:34:10 2009 +0200 multipath-tools: mount lvm qemu modules --- filesys/multipath-tools/DEPENDS | 1 + filesys/multipath-tools/DETAILS | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 0 deletions(-) diff --git a/filesys/multipath-tools/DEPENDS b/filesys/multipath-tools/DEPENDS new file mode 100644 index 0000000..2a67d02 --- /dev/null +++ b/filesys/multipath-tools/DEPENDS @@ -0,0 +1 @@ +depends libaio diff --git a/filesys/multipath-tools/DETAILS b/filesys/multipath-tools/DETAILS new file mode 100644 index 0000000..3971e24 --- /dev/null +++ b/filesys/multipath-tools/DETAILS @@ -0,0 +1,14 @@ + MODULE=multipath-tools + VERSION=0.4.8 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=http://christophe.varoqui.free.fr/multipath-tools + SOURCE_VFY=sha1:aadc7c7ed072c3df2e32c64a2ab1ba7fac850d7a + WEB_SITE=http://christophe.varoqui.free.fr + PSAFE=no + ENTERED=20090611 + UPDATED=20090611 + SHORT="multipath-tools" + +cat << EOF +multipath-tools +EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:02 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:02 -0000 Subject: [Lunar-commits] libaio: depedency of multipath-tools Message-ID: <20091005115001.BABC79B22B@doppio.foo-projects.org> commit 199ef5b83566fbb54a1e005ba51b51cf353611c4 Author: Samuel Verstraete Date: Sun Jun 21 10:35:41 2009 +0200 libaio: depedency of multipath-tools --- libs/libaio/DETAILS | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/libs/libaio/DETAILS b/libs/libaio/DETAILS new file mode 100644 index 0000000..e34ffd7 --- /dev/null +++ b/libs/libaio/DETAILS @@ -0,0 +1,13 @@ + MODULE=libaio + VERSION=0.3.107 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL=http://mirror.internode.on.net/pub/gentoo-portage/distfiles/ + SOURCE_VFY=sha1:769a541744448a6dfc3fd3a3e335afe7aa77ca8e + WEB_SITE=http://www.kernel.org/pub/linux/kernel/people/andrea/libaio/ + ENTERED=20090611 + UPDATED=20090611 + SHORT="libaio" + +cat << EOF +libaio +EOF From elangelo at xfce.org Mon Oct 5 13:50:03 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:03 -0000 Subject: [Lunar-commits] consonance > pragha xfce4-power-manager 0.8.0 Message-ID: <20091005115002.20B529B232@doppio.foo-projects.org> commit 258e4f659febdb8c37f24ac48937749021d4b0b8 Author: Samuel Verstraete Date: Mon Jun 29 20:21:34 2009 +0200 consonance > pragha xfce4-power-manager 0.8.0 --- audio/consonance/DEPENDS | 5 ----- audio/consonance/DETAILS | 20 -------------------- audio/pragha/DEPENDS | 7 +++++++ audio/pragha/DETAILS | 19 +++++++++++++++++++ xfce4/goodies/xfce4-power-manager/DETAILS | 6 +++--- 5 files changed, 29 insertions(+), 28 deletions(-) diff --git a/audio/consonance/DEPENDS b/audio/consonance/DEPENDS deleted file mode 100644 index bbf0b39..0000000 --- a/audio/consonance/DEPENDS +++ /dev/null @@ -1,5 +0,0 @@ -depends libmad -depends libogg -depends flac -depends libsndfile -depends libnotify diff --git a/audio/consonance/DETAILS b/audio/consonance/DETAILS deleted file mode 100644 index 4a9ec1b..0000000 --- a/audio/consonance/DETAILS +++ /dev/null @@ -1,20 +0,0 @@ - MODULE=consonance - #VERSION="svn-`date +%Y%U`" - VERSION=0.5.1 - #SOURCE=$MODULE.tar.bz2 - SOURCE=$MODULE-$VERSION.tar.gz -#SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=$SFORGE_URL/$MODULE -# SOURCE_URL=svn+https://consonance.svn.sourceforge.net/svnroot/consonance/trunk:consonance - WEB_SITE=http://consonance.sourceforge.net/ - SOURCE_VFY=sha1:af3667cf43f5f2eedeac94454f1e5b9de68b5155 - ENTERED=20080805 - #UPDATED=20090307 - UPDATED=20090512 - PSAFE=no - SHORT="lightweight music manager" - -cat << EOF -Consonance is a lightweight GTK+ music manager that aims to be fast, -bloat-free, and light on memory consumption. -EOF diff --git a/audio/pragha/DEPENDS b/audio/pragha/DEPENDS new file mode 100644 index 0000000..2ca8472 --- /dev/null +++ b/audio/pragha/DEPENDS @@ -0,0 +1,7 @@ +depends libmad +depends libogg +depends flac +depends libsndfile +depends libnotify +depends taglib +depends libmodplug diff --git a/audio/pragha/DETAILS b/audio/pragha/DETAILS new file mode 100644 index 0000000..da507a5 --- /dev/null +++ b/audio/pragha/DETAILS @@ -0,0 +1,19 @@ + MODULE=pragha + #VERSION="svn-`date +%Y%U`" + VERSION=0.6.1 + #SOURCE=$MODULE.tar.bz2 + SOURCE=$MODULE-$VERSION.tar.bz2 +#SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=http://dissonance.googlecode.com/files/ +# SOURCE_URL=svn+https://consonance.svn.sourceforge.net/svnroot/consonance/trunk:consonance + WEB_SITE=http://consonance.sourceforge.net/ + SOURCE_VFY=sha1:86ff63f1c57fd457bb7163c1d3cc285d5e2ace2b + ENTERED=20090627 + #UPDATED=20090307 + UPDATED=20090627 + SHORT="lightweight music manager" + +cat << EOF +Consonance is a lightweight GTK+ music manager that aims to be fast, +bloat-free, and light on memory consumption. +EOF diff --git a/xfce4/goodies/xfce4-power-manager/DETAILS b/xfce4/goodies/xfce4-power-manager/DETAILS index 1de7847..f7174ef 100644 --- a/xfce4/goodies/xfce4-power-manager/DETAILS +++ b/xfce4/goodies/xfce4-power-manager/DETAILS @@ -1,12 +1,12 @@ MODULE=xfce4-power-manager - VERSION=0.6.5 + VERSION=0.8.0 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://goodies.xfce.org/releases/$MODULE - SOURCE_VFY=sha1:c44a3106d17816cec2ce0be970d9ac2331c80a75 + SOURCE_VFY=sha1:51012fdf09c3fbf94cf73489915f96838abb15e0 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20090307 - UPDATED=20090405 + UPDATED=20090628 SHORT="A power manager Xfce" cat << EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:03 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:03 -0000 Subject: [Lunar-commits] multipath-tools: kpartx Message-ID: <20091005115001.EFC679B2C9@doppio.foo-projects.org> commit fa9df8fc681e1ed4e314e416c22d8576fe9430d5 Author: Samuel Verstraete Date: Sun Jun 21 10:36:08 2009 +0200 multipath-tools: kpartx --- filesys/multipath-tools/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/filesys/multipath-tools/DETAILS b/filesys/multipath-tools/DETAILS index 3971e24..08d0f1a 100644 --- a/filesys/multipath-tools/DETAILS +++ b/filesys/multipath-tools/DETAILS @@ -10,5 +10,5 @@ SHORT="multipath-tools" cat << EOF -multipath-tools +multipath-tools: kpartx EOF From elangelo at xfce.org Mon Oct 5 13:50:03 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:03 -0000 Subject: [Lunar-commits] linux-2.6-rc Message-ID: <20091005115002.3A3BE9B22D@doppio.foo-projects.org> commit b3e251e2ff1c811e14350e9cd098261d411d43e9 Author: Samuel Verstraete Date: Fri Jul 17 19:43:43 2009 +0200 linux-2.6-rc --- kernel/linux-2.6-rc/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/linux-2.6-rc/DETAILS b/kernel/linux-2.6-rc/DETAILS index 337f984..e15adc3 100644 --- a/kernel/linux-2.6-rc/DETAILS +++ b/kernel/linux-2.6-rc/DETAILS @@ -1,13 +1,13 @@ MODULE=linux-2.6-rc - VERSION=2.6.30-rc8 + VERSION=2.6.31-rc1 SOURCE=linux-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6/testing SOURCE_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6/testing - SOURCE_VFY=sha1:bf9c2e93fb584375eba2c17c8255070d38bc5ca9 + SOURCE_VFY=sha1:61293da307f09aa84022d49fca3769ce7ce37c4d WEB_SITE=http://www.kernel.org ENTERED=20041019 - UPDATED=20090604 + UPDATED=20090715 SHORT="The core of a Linux GNU Operating System" KEEP_SOURCE=on TMPFS=off From elangelo at xfce.org Mon Oct 5 13:50:03 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:03 -0000 Subject: [Lunar-commits] new stuff Message-ID: <20091005115002.72BB09B2C8@doppio.foo-projects.org> commit e3c23abe8dbed7383a28ed049dece399e7d8e28b Author: Samuel Verstraete Date: Fri Jul 17 19:44:17 2009 +0200 new stuff --- devel/gtksourcecompletion/DETAILS | 17 +++++++++++++++++ devel/vtg/DETAILS | 12 ++++++++++++ graphics/rawstudio/DETAILS | 12 ++++++++++++ 3 files changed, 41 insertions(+), 0 deletions(-) diff --git a/devel/gtksourcecompletion/DETAILS b/devel/gtksourcecompletion/DETAILS new file mode 100644 index 0000000..96b8c4d --- /dev/null +++ b/devel/gtksourcecompletion/DETAILS @@ -0,0 +1,17 @@ +MODULE=gtksourcecompletion +VERSION=0.7.0 +SOURCE=$MODULE-$VERSION.tar.gz +#SOURCE_URL=http://cloud.github.com/downloads/chuchiperriman/gtksourcecompletion +SOURCE_URL=$SFORGE_URL/gtksourcecomple +WEBSITE=http://gtksourcecomple.sourceforge.net +ENTERED=20090628 +UPDATED=20090628 +SHORT="library to add autocompletion and calltips support to gtksourceview" +cat << EOF +GtkSourceCompletion is a library to add (auto)completion and calltips +support to GtkSourceView. The library manages all events, the popup +position etc. but it doesn't complete anything, it is the base library. +You can develop providers for GtkSourceCompletion and the library will +use it to show all the proposals, the information for every proposal +etc. +EOF diff --git a/devel/vtg/DETAILS b/devel/vtg/DETAILS new file mode 100644 index 0000000..6906c0c --- /dev/null +++ b/devel/vtg/DETAILS @@ -0,0 +1,12 @@ +MODULE=vtg +VERSION=0.4.1 +SOURCE=$MODULE-$VERSION.tar.bz2 +SOURCE_URL=http://vtg.googlecode.com/files/ +WEBSITE=http://vtg.googlecode.com +ENTERED=20090628 +UPDATED=20090628 +SHORT="Vala Toys for gEdit" +cat << EOF +Experimental collection of plugins for gEdit to make it a better +programmer editor for the Vala language +EOF diff --git a/graphics/rawstudio/DETAILS b/graphics/rawstudio/DETAILS new file mode 100644 index 0000000..ccd2c37 --- /dev/null +++ b/graphics/rawstudio/DETAILS @@ -0,0 +1,12 @@ + MODULE=rawstudio + VERSION=1.2 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL=http://rawstudio.org/download/ + SOURCE_VFY=sha1:9ce96c40e0b8feaf4627c14310646782578d4da1 + WEB_SITE=http://rawstudio.org + ENTERED=20090713 + UPDATED=20090713 + SHORT="" + +cat << EOF +EOF From samuel.verstraete at gmail.com Mon Oct 5 13:50:04 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 05 Oct 2009 11:50:04 -0000 Subject: [Lunar-commits] pragha stuff Message-ID: <20091005115002.B0AAD9B2CC@doppio.foo-projects.org> commit 5644c871dfd4455e0e9c38035e3c9c82d87161ca Author: Samuel Date: Thu Jul 30 18:45:02 2009 +0200 pragha stuff --- audio/pragha/DETAILS | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/audio/pragha/DETAILS b/audio/pragha/DETAILS index da507a5..185f231 100644 --- a/audio/pragha/DETAILS +++ b/audio/pragha/DETAILS @@ -1,16 +1,15 @@ MODULE=pragha #VERSION="svn-`date +%Y%U`" - VERSION=0.6.1 + VERSION=0.6.2 #SOURCE=$MODULE.tar.bz2 SOURCE=$MODULE-$VERSION.tar.bz2 #SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE SOURCE_URL=http://dissonance.googlecode.com/files/ # SOURCE_URL=svn+https://consonance.svn.sourceforge.net/svnroot/consonance/trunk:consonance WEB_SITE=http://consonance.sourceforge.net/ - SOURCE_VFY=sha1:86ff63f1c57fd457bb7163c1d3cc285d5e2ace2b + SOURCE_VFY=sha1:3f3c03d49542ff086eb9eaa6ae7c8331df4786bb ENTERED=20090627 - #UPDATED=20090307 - UPDATED=20090627 + UPDATED=20090702 SHORT="lightweight music manager" cat << EOF From elangelo at xfce.org Mon Oct 5 13:50:04 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:04 -0000 Subject: [Lunar-commits] stuff Message-ID: <20091005115002.9182B9B2CA@doppio.foo-projects.org> commit 58bc8580195879f96e6d0bb290c0dc2800a35a95 Author: Samuel Verstraete Date: Fri Jul 24 16:38:29 2009 +0200 stuff --- kernel/linux-2.6-rc/DETAILS | 6 +++--- xfce4/apps/mousepad/BUILD | 2 +- xorg7/xorg-server/BUILD | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/kernel/linux-2.6-rc/DETAILS b/kernel/linux-2.6-rc/DETAILS index e15adc3..d5cb878 100644 --- a/kernel/linux-2.6-rc/DETAILS +++ b/kernel/linux-2.6-rc/DETAILS @@ -1,13 +1,13 @@ MODULE=linux-2.6-rc - VERSION=2.6.31-rc1 + VERSION=2.6.31-rc4 SOURCE=linux-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6/testing SOURCE_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6/testing - SOURCE_VFY=sha1:61293da307f09aa84022d49fca3769ce7ce37c4d + SOURCE_VFY=sha1:55efea713fa01fdd6acbadd6f4b4dd4f3547b3e9 WEB_SITE=http://www.kernel.org ENTERED=20041019 - UPDATED=20090715 + UPDATED=20090724 SHORT="The core of a Linux GNU Operating System" KEEP_SOURCE=on TMPFS=off diff --git a/xfce4/apps/mousepad/BUILD b/xfce4/apps/mousepad/BUILD index 33863eb..e8dc8a0 100644 --- a/xfce4/apps/mousepad/BUILD +++ b/xfce4/apps/mousepad/BUILD @@ -4,7 +4,7 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - default_cvs_build && +# default_cvs_build && ./configure --build=$BUILD \ --prefix=${MODULE_PREFIX} \ diff --git a/xorg7/xorg-server/BUILD b/xorg7/xorg-server/BUILD index 81f2963..6b4e2af 100644 --- a/xorg7/xorg-server/BUILD +++ b/xorg7/xorg-server/BUILD @@ -13,6 +13,7 @@ fi && OPTS+=" --enable-composite --enable-aiglx \ + --enable-install-libxf86config \ --with-dri-driver-path=${MODULE_PREFIX}/lib/dri" && default_build From elangelo at xfce.org Mon Oct 5 13:50:04 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:04 -0000 Subject: [Lunar-commits] libxfce4ui: graphic lib for xfce Message-ID: <20091005115003.07E489B22C@doppio.foo-projects.org> commit 2714ea31438e2802b18743e2dfd36caa3e0f6c22 Author: Samuel Verstraete Date: Fri Jul 31 08:31:02 2009 +0200 libxfce4ui: graphic lib for xfce --- xfce4/core/libxfce4ui/BUILD | 14 ++++++++++++++ xfce4/core/libxfce4ui/DETAILS | 15 +++++++++++++++ 2 files changed, 29 insertions(+), 0 deletions(-) diff --git a/xfce4/core/libxfce4ui/BUILD b/xfce4/core/libxfce4ui/BUILD new file mode 100644 index 0000000..5ca1695 --- /dev/null +++ b/xfce4/core/libxfce4ui/BUILD @@ -0,0 +1,14 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + --enable-xinerama \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/libxfce4ui/DETAILS b/xfce4/core/libxfce4ui/DETAILS new file mode 100644 index 0000000..777973f --- /dev/null +++ b/xfce4/core/libxfce4ui/DETAILS @@ -0,0 +1,15 @@ + MODULE=libxfce4ui + VERSION="svn-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + MODULE_PREFIX=${XFCE4_PREFIX:-/usr} + WEB_SITE=http://www.xfce.org + ENTERED=20030715 + UPDATED=20071207 + SHORT="Widget library for Xfce4" + +cat << EOF +libxfcegui4 -- Library that provides extra widgets and graphical user +interface functions to the Xfce4 desktop environment. +EOF From elangelo at xfce.org Mon Oct 5 13:50:04 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:04 -0000 Subject: [Lunar-commits] pragha: version bump Message-ID: <20091005115003.205829B22E@doppio.foo-projects.org> commit 7dd76540ce4640b4c5722221e688c1dc619dc47e Author: Samuel Verstraete Date: Fri Jul 31 08:31:24 2009 +0200 pragha: version bump --- audio/pragha/DETAILS | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/audio/pragha/DETAILS b/audio/pragha/DETAILS index da507a5..d0a4008 100644 --- a/audio/pragha/DETAILS +++ b/audio/pragha/DETAILS @@ -1,16 +1,15 @@ MODULE=pragha #VERSION="svn-`date +%Y%U`" - VERSION=0.6.1 + VERSION=0.6.2.2 #SOURCE=$MODULE.tar.bz2 SOURCE=$MODULE-$VERSION.tar.bz2 #SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE SOURCE_URL=http://dissonance.googlecode.com/files/ # SOURCE_URL=svn+https://consonance.svn.sourceforge.net/svnroot/consonance/trunk:consonance WEB_SITE=http://consonance.sourceforge.net/ - SOURCE_VFY=sha1:86ff63f1c57fd457bb7163c1d3cc285d5e2ace2b + SOURCE_VFY=sha1:7e9256d3f10ad22cc52ca32f5f5e1b989082f9a8 ENTERED=20090627 - #UPDATED=20090307 - UPDATED=20090627 + UPDATED=20090731 SHORT="lightweight music manager" cat << EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:04 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:04 -0000 Subject: [Lunar-commits] binutils: 2.19.1 Message-ID: <20091005115003.5BE9E9B232@doppio.foo-projects.org> commit ddc9a8ccbd1d50b95367bc1344dfe85f22235e22 Author: Samuel Verstraete Date: Wed Aug 5 14:49:15 2009 +0200 binutils: 2.19.1 --- devel/binutils/BUILD | 24 ++++++++---------------- devel/binutils/BUILD.sparc64 | 7 ++++--- devel/binutils/DETAILS | 16 +++++++--------- 3 files changed, 19 insertions(+), 28 deletions(-) diff --git a/devel/binutils/BUILD b/devel/binutils/BUILD index b01a5de..3140e0e 100644 --- a/devel/binutils/BUILD +++ b/devel/binutils/BUILD @@ -1,21 +1,13 @@ ( -# patch_it $SOURCE_CACHE/$SOURCE2 0 && - - #Somehow I believe this might/should be logged as a bug to the glibc guys... -# sedit 's/^all: all-redirect/all: all-redirect $(MKDOC)/' \ -# bfd/doc/Makefile.in && - -# aclocal && -# autoconf && - - OPTS+=" --host=$BUILD" && - default_config && - make tooldir=/usr && - prepare_install && - make tooldir=/usr install && - make tooldir=/usr install-info && - mkdir -p $DOCUMENT_DIRECTORY/binutils && + ./configure --host=$BUILD \ + --prefix=/usr && + + make tooldir=/usr && + prepare_install && + make tooldir=/usr install && + make tooldir=/usr install-info && + mkdir -p $DOCUMENT_DIRECTORY/binutils && cp -p binutils/NEWS binutils/ChangeLog $DOCUMENT_DIRECTORY/binutils ) > $C_FIFO 2>&1 diff --git a/devel/binutils/BUILD.sparc64 b/devel/binutils/BUILD.sparc64 index f56658d..c5cabf7 100644 --- a/devel/binutils/BUILD.sparc64 +++ b/devel/binutils/BUILD.sparc64 @@ -4,9 +4,10 @@ sedit 's/^all: all-redirect/all: all-redirect $(MKDOC)/' \ bfd/doc/Makefile.in && - ./configure --host=$BUILD \ - --target=sparc-linux \ - --prefix=/usr && + ./configure --host=$BUILD \ + --target=sparc-linux \ + --prefix=/usr && + make tooldir=/usr && prepare_install && make tooldir=/usr install && diff --git a/devel/binutils/DETAILS b/devel/binutils/DETAILS index 4a49cab..120d5ac 100644 --- a/devel/binutils/DETAILS +++ b/devel/binutils/DETAILS @@ -1,16 +1,14 @@ MODULE=binutils - VERSION=2.19 + VERSION=2.19.1 SOURCE=$MODULE-$VERSION.tar.bz2 - #SOURCE2=binutils-2.18-makeinfo.patch - SOURCE_URL[0]=$GNU_URL/$MODULE/ - SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ - SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:a150b97ec47996bf8f01d6bc14d41587faa4bbff - SOURCE2_VFY=sha1:f42e425f7651f8d80838514e4cc34917bde8f6b3 + SOURCE_URL[0]=$GNU_URL/$MODULE + SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE + SOURCE_VFY=sha1:88c91e36cde93433e4c4c2b2e3417777aad84526 WEB_SITE=http://sources.redhat.com/binutils ENTERED=20010922 - UPDATED=20090421 - SHORT="essential collection of binary utilities." + UPDATED=20090401 + PSAFE=no + SHORT="An essential collection of binary utilities" cat << EOF binutils - Collection of binary utilities From elangelo at lunar-linux.org Mon Oct 5 13:50:04 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:04 -0000 Subject: [Lunar-commits] gcc: 4.4.1 Message-ID: <20091005115003.36A439B231@doppio.foo-projects.org> commit ac302f87b65f4f363dd34afa7cdcd2d32d63968c Author: Samuel Verstraete Date: Wed Aug 5 14:45:34 2009 +0200 gcc: 4.4.1 --- compilers/gcc/BUILD | 15 ++++++--------- compilers/gcc/BUILD.x86_64 | 13 +++++-------- compilers/gcc/CONFIGURE | 12 ++++++------ compilers/gcc/DEPENDS | 3 ++- compilers/gcc/DETAILS | 6 +++--- compilers/gcc/POST_INSTALL | 14 ++++---------- 6 files changed, 26 insertions(+), 37 deletions(-) diff --git a/compilers/gcc/BUILD b/compilers/gcc/BUILD index fe306a7..7fcc411 100644 --- a/compilers/gcc/BUILD +++ b/compilers/gcc/BUILD @@ -3,17 +3,14 @@ mkdir BUILD && cd BUILD && - sedit 's/trap 0/trap "" 0/' ../configure && + #sedit 's/trap 0/trap "" 0/' ../configure && # We use libiberty.a from binutils instead - sedit 's/install_to_$(INSTALL_DEST) //' ../libiberty/Makefile.in && + sedit 's/install_to_$(INSTALL_DEST) //' ../libiberty/Makefile.in && - LANGUAGES="${LANGUAGES:=c++}" && + LANGUAGES="${LANGUAGES:=c++}" && - if in_depends gcc mpfr ; then - LANGUAGES="${LANGUAGES},fortran" - fi - - ../configure --host=$BUILD \ + ../configure --build=$BUILD \ + --host=$BUILD \ --enable-languages=$LANGUAGES \ --prefix=${MODULE_PREFIX} \ --infodir=${MODULE_PREFIX}/share/info \ @@ -25,7 +22,7 @@ --with-gnu-ld \ --with-system-zlib \ --enable-shared \ - $OPTS && + $OPTS && make CFLAGS='-O' LIBCFLAGS='-g -O2' LIBCXXFLAGS='-g -O2 -fno-implicit-templates' bootstrap-lean && prepare_install && diff --git a/compilers/gcc/BUILD.x86_64 b/compilers/gcc/BUILD.x86_64 index 34a04f7..6ed319d 100644 --- a/compilers/gcc/BUILD.x86_64 +++ b/compilers/gcc/BUILD.x86_64 @@ -3,17 +3,14 @@ mkdir BUILD && cd BUILD && - sedit 's/trap 0/trap "" 0/' ../configure && + #sedit 's/trap 0/trap "" 0/' ../configure && # We use libiberty.a from binutils instead - sedit 's/install_to_$(INSTALL_DEST) //' ../libiberty/Makefile.in && + sedit 's/install_to_$(INSTALL_DEST) //' ../libiberty/Makefile.in && - LANGUAGES=${LANGUAGES:=c++} && - - if in_depends gcc mpfr ; then - LANGUAGES="${LANGUAGES},fortran" - fi + LANGUAGES=${LANGUAGES:=c++} && ../configure --host=$BUILD \ + --build=$BUILD \ --enable-languages=$LANGUAGES \ --prefix=${MODULE_PREFIX} \ --infodir=${MODULE_PREFIX}/share/info \ @@ -26,7 +23,7 @@ --with-system-zlib \ --enable-shared \ --disable-multilib \ - $OPTS && + $OPTS && make CFLAGS='-O' LIBCFLAGS='-g -O2' LIBCXXFLAGS='-g -O2 -fno-implicit-templates' bootstrap-lean && prepare_install && diff --git a/compilers/gcc/CONFIGURE b/compilers/gcc/CONFIGURE index 176efa1..79b186a 100644 --- a/compilers/gcc/CONFIGURE +++ b/compilers/gcc/CONFIGURE @@ -9,12 +9,13 @@ if [ -n "$RECONFIGURE" ] ; then OPTIONS=( "java" "Java" "off" "objc" "Objective C" "off" + "fortran" "Fortran" "off" ) - RESULT=`dialog --title "Select additional compiler languages" \ - --stdout \ - --separate-output \ - --checklist "Available additional languages:" \ - 0 0 0 \ + RESULT=`dialog --title "Select additional compiler languages" \ + --stdout \ + --separate-output \ + --checklist "Available additional languages:" \ + 0 0 0 \ "${OPTIONS[@]}"` LANGUAGES="c++,$(echo $RESULT | sed 's/ /,/g')" @@ -29,4 +30,3 @@ if [ -n "$RECONFIGURE" ] ; then fi fi - diff --git a/compilers/gcc/DEPENDS b/compilers/gcc/DEPENDS index 858cf14..ae64c3c 100644 --- a/compilers/gcc/DEPENDS +++ b/compilers/gcc/DEPENDS @@ -1 +1,2 @@ -optional_depends "mpfr" "" "" "to compile fortran support" +depends gmp +depends mpfr diff --git a/compilers/gcc/DETAILS b/compilers/gcc/DETAILS index 91ae188..1174072 100644 --- a/compilers/gcc/DETAILS +++ b/compilers/gcc/DETAILS @@ -1,13 +1,13 @@ MODULE=gcc - VERSION=4.2.4 + VERSION=4.4.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=$GNU_URL/gcc/$MODULE-$VERSION SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/gcc/$MODULE-$VERSION SOURCE_URL[2]=http://www.online-mirror.org/gcc/$MODULE-$VERSION - SOURCE_VFY=sha1:bb20efc7750fe0d6172c5945572bf036fe59d3dd + SOURCE_VFY=sha1:9156ddb7e4cc72288ec31760d6ddc7981123a8a2 WEB_SITE=http://gcc.gnu.org ENTERED=20020628 - UPDATED=20080523 + UPDATED=20090801 PSAFE=no SHORT="GNU compiler collection" diff --git a/compilers/gcc/POST_INSTALL b/compilers/gcc/POST_INSTALL index c3e8185..6179464 100644 --- a/compilers/gcc/POST_INSTALL +++ b/compilers/gcc/POST_INSTALL @@ -1,14 +1,8 @@ -# allow seamless upgrade/downgrade from/to gcc <=> gcc3 -if module_installed gcc3 ; then - remove_module gcc3 -fi - -cd /usr/lib/gcc/$BUILD/$VERSION && -ln -sf /usr/bin/cpp cpp && -cd /lib/ && -ln -sf /usr/bin/cpp cpp && +cd /usr/lib/gcc/$BUILD/$VERSION && +ln -sf /usr/bin/cpp cpp && +cd /lib/ && +ln -sf /usr/bin/cpp cpp && if [ ! -e /usr/bin/cc ] ; then ln -s gcc /usr/bin/cc fi || true - From elangelo at lunar-linux.org Mon Oct 5 13:50:05 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:05 -0000 Subject: [Lunar-commits] glibc: something newer ! Message-ID: <20091005115003.B9DF69B2CB@doppio.foo-projects.org> commit 15e35787f0c34c57ea8453c383823549684eafca Author: Samuel Verstraete Date: Wed Aug 5 14:50:12 2009 +0200 glibc: something newer ! --- libs/glibc/BUILD | 117 ++++++++++++++++++++++---------------------- libs/glibc/BUILD.x86_64 | 123 ++++++++++++++++++++++++----------------------- libs/glibc/CONFIGURE | 8 ++-- libs/glibc/DETAILS | 24 +++++----- libs/glibc/PRE_BUILD | 6 +- 5 files changed, 139 insertions(+), 139 deletions(-) diff --git a/libs/glibc/BUILD b/libs/glibc/BUILD index 24f09d7..492fff8 100644 --- a/libs/glibc/BUILD +++ b/libs/glibc/BUILD @@ -1,72 +1,71 @@ ( - + # This sedit takes care of Bug Report 398 submitted by Striker. sedit "s:/tmp:$SOURCE_DIRECTORY/tmp:g" scripts/test-installation.pl && mkdir -p $SOURCE_DIRECTORY/tmp && - + # There is no other option but nptl - OPTS="$OPTS --enable-add-ons=nptl,libidn --with-__thread --with-tls" - + OPTS+=" --enable-add-ons=nptl,libidn --with-__thread --with-tls" && + if [ -n "$MAKES" ] && [ "$MAKES" -gt 1 ] ; then sedit "s/# PARALLELMFLAGS = -j 4/PARALLELMFLAGS = -j $MAKES/" Makefile.in - fi - - export CC=gcc - + fi && + + export CC=gcc && + # Don't fully strip libc if [[ "$LDFLAGS" == *-s* ]] ; then STRIP=y - fi - unset LDFLAGS - + fi && + unset LDFLAGS && + patch_it $SOURCE3 1 && - + INSTALL_ROOT=$SOURCE_DIRECTORY/glibcroot && mkdir -p $INSTALL_ROOT && - cd $INSTALL_ROOT - - OPTS="$OPTS --with-headers=/usr/include" - - ../configure --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --with-elf \ - --with-gd=no \ - --without-cvs \ - --enable-shared \ - --with-kernel=2.6.23 \ - $OPTS && - + cd $INSTALL_ROOT && + + OPTS+=" --with-headers=/usr/include" && + + ../configure --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-elf \ + --with-gd=no \ + --without-cvs \ + --enable-shared \ + $OPTS && + # explicitly exit here since the following code unsets $? make || exit 1 && - + # Preserve the old glibc temporarily - LD=/lib/ld-linux.so.2 - GLIBC=/lib/libc.so.6 - DL=/lib/libdl.so.2 - M=/lib/libm.so.6 - RT=/lib/librt.so.1 - PTHREAD=/lib/libpthread.so.0 - NSS=/lib/libnss_files.so.2 - UTIL=/lib/libutil.so.1 - NSL=/lib/libnsl.so.1 - CRYPT=/lib/libcrypt.so.1 - + LD=/lib/ld-linux.so.2 && + GLIBC=/lib/libc.so.6 && + DL=/lib/libdl.so.2 && + M=/lib/libm.so.6 && + RT=/lib/librt.so.1 && + PTHREAD=/lib/libpthread.so.0 && + NSS=/lib/libnss_files.so.2 && + UTIL=/lib/libutil.so.1 && + NSL=/lib/libnsl.so.1 && + CRYPT=/lib/libcrypt.so.1 && + case "`arch`" in alpha) - GLIBC=/lib/libc.so.6.1 - DL=/lib/libdl.so.2.1 + GLIBC=/lib/libc.so.6.1 && + DL=/lib/libdl.so.2.1 && M=/lib/libm.so.6.1 ;; ppc) - LD=/lib/ld.so.1 + LD=/lib/ld.so.1 && DL=/lib/libdl.so.2 ;; *) DL=/lib/libdl.so.2 ;; - esac - + esac && + cp $LD /lib/ld-lunar.so && cp $GLIBC /lib/libc-lunar.so && cp $DL /lib/libdl-lunar.so && @@ -77,7 +76,7 @@ cp $UTIL /lib/libutil-lunar.so && cp $NSL /lib/libnsl-lunar.so && cp $CRYPT /lib/libcrypt-lunar.so && - + # Setup links for libraries sln /lib/ld-lunar.so $LD && sln /lib/libc-lunar.so $GLIBC && @@ -89,16 +88,16 @@ sln /lib/libutil-lunar.so $UTIL && sln /lib/libnsl-lunar.so $NSL && sln /lib/libcrypt-lunar.so $CRYPT && - + # clean hack to make sure gnu/stubs.h gets refreshed rm -f /usr/include/gnu/stubs.h && - + # This removes the old glibc prepare_install && - + # And now we install the new make install && - + # Now optionally perform debug symbol stripping only if [ "$STRIP" == "y" ] ; then for FN in ld-$VERSION.so \ @@ -106,37 +105,37 @@ libnss_{compat,files,hesiod,nis,nisplus}-$VERSION.so \ lib{memusage,pcprofile,SegFault,thread_db-1.0}.so ; do strip -S /lib/$FN - done + done && for FN in "/usr/lib/gconv/*.so" ; do strip -S $FN done fi && - + # Added a symlink for ash and others ln -sf /usr/lib/libbsd-compat.a /usr/lib/libbsd.a && - + # Rebuild the ld cache rm -f /etc/ld.so.cache 2>/dev/null && ldconfig && - + # Remove the temporary libc rm /lib/{ld,lib{c,dl,m,rt,pthread,nss_files,util,nsl,crypt}}-lunar.so && - + # Generate locale info if [ -z "$GLIBC_LOCALES" ]; then make localedata/install-locales || exit 1 else devoke_installwatch && for LOCALE in $GLIBC_LOCALES; do - INPUTFILE=$(echo $LOCALE | cut -d/ -f1 | sed -e 's:\..*$::g') - OUTPUTFILE=$(echo $LOCALE | cut -d/ -f1) - CHARMAP=$(echo $LOCALE | cut -d/ -f2) - mkdir -p /usr/lib/locale/$OUTPUTFILE - echo "localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE" + INPUTFILE=$(echo $LOCALE | cut -d/ -f1 | sed -e 's:\..*$::g') && + OUTPUTFILE=$(echo $LOCALE | cut -d/ -f1) && + CHARMAP=$(echo $LOCALE | cut -d/ -f2) && + mkdir -p /usr/lib/locale/$OUTPUTFILE && + echo "localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE" && localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE done invoke_installwatch && touch /usr/lib/locale/locale-archive fi - + ) > $C_FIFO 2>&1 && ldconfig diff --git a/libs/glibc/BUILD.x86_64 b/libs/glibc/BUILD.x86_64 index c61b76c..6720b9e 100644 --- a/libs/glibc/BUILD.x86_64 +++ b/libs/glibc/BUILD.x86_64 @@ -1,60 +1,61 @@ ( - + # This sedit takes care of Bug Report 398 submitted by Striker. sedit "s:/tmp:$SOURCE_DIRECTORY/tmp:g" scripts/test-installation.pl && mkdir -p $SOURCE_DIRECTORY/tmp && - + # There is no other option but nptl - OPTS="$OPTS --enable-add-ons=nptl,libidn --with-__thread --with-tls" - + OPTS+=" --enable-add-ons=nptl,libidn --with-__thread --with-tls" && + if [ -n "$MAKES" ] && [ "$MAKES" -gt 1 ] ; then sedit "s/# PARALLELMFLAGS = -j 4/PARALLELMFLAGS = -j $MAKES/" Makefile.in - fi - - export CC=gcc - + fi && + + export CC=gcc && + # Don't fully strip libc if [[ "$LDFLAGS" == *-s* ]] ; then STRIP=y - fi - unset LDFLAGS - + fi && + unset LDFLAGS && + patch_it $SOURCE3 1 && - + INSTALL_ROOT=$SOURCE_DIRECTORY/glibcroot && mkdir -p $INSTALL_ROOT && - cd $INSTALL_ROOT - - OPTS="$OPTS --with-headers=/usr/include" - - ../configure --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --with-elf \ - --with-gd=no \ - --without-cvs \ - --enable-shared \ - --host=$BUILD \ - --build=$BUILD \ - --with-kernel=2.6.23 \ - $OPTS && - + cd $INSTALL_ROOT && + + OPTS+=" --with-headers=/usr/include" && + + ../configure --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-elf \ + --with-gd=no \ + --without-cvs \ + --enable-shared \ + --host=$BUILD \ + --build=$BUILD \ + $OPTS && + # explicitly exit here since the following code unsets $? - make || exit 1 - + make || exit 1 && + # Preserve the old glibc temporarily - LD=/lib/ld-linux-x86-64.so.2 - GLIBC=/lib/libc.so.6 - DL=/lib/libdl.so.2 - M=/lib/libm.so.6 - RT=/lib/librt.so.1 - PTHREAD=/lib/libpthread.so.0 - NSS=/lib/libnss_files.so.2 - UTIL=/lib/libutil.so.1 - NSL=/lib/libnsl.so.1 - CRYPT=/lib/libcrypt.so.1 - DL=/lib/libdl.so.2 - + LD=/lib/ld-linux.so.2 && + LD=/lib/ld-linux-x86-64.so.2 && + GLIBC=/lib/libc.so.6 && + DL=/lib/libdl.so.2 && + M=/lib/libm.so.6 && + RT=/lib/librt.so.1 && + PTHREAD=/lib/libpthread.so.0 && + NSS=/lib/libnss_files.so.2 && + UTIL=/lib/libutil.so.1 && + NSL=/lib/libnsl.so.1 && + CRYPT=/lib/libcrypt.so.1 && + + DL=/lib/libdl.so.2 && + cp $LD /lib/ld-lunar.so && cp $GLIBC /lib/libc-lunar.so && cp $DL /lib/libdl-lunar.so && @@ -65,7 +66,7 @@ cp $UTIL /lib/libutil-lunar.so && cp $NSL /lib/libnsl-lunar.so && cp $CRYPT /lib/libcrypt-lunar.so && - + # Setup links for libraries sln /lib/ld-lunar.so $LD && sln /lib/libc-lunar.so $GLIBC && @@ -77,16 +78,16 @@ sln /lib/libutil-lunar.so $UTIL && sln /lib/libnsl-lunar.so $NSL && sln /lib/libcrypt-lunar.so $CRYPT && - + # clean hack to make sure gnu/stubs.h gets refreshed - rm -f /usr/include/gnu/stubs.h && - + rm -f /usr/include/gnu/stubs.h && + # This removes the old glibc - prepare_install && - + prepare_install && + # And now we install the new - make install && - + make install && + # Now optionally perform debug symbol stripping only if [ "$STRIP" == "y" ] ; then for FN in ld-$VERSION.so \ @@ -94,37 +95,37 @@ libnss_{compat,files,hesiod,nis,nisplus}-$VERSION.so \ lib{memusage,pcprofile,SegFault,thread_db-1.0}.so ; do strip -S /lib/$FN - done + done && for FN in "/usr/lib/gconv/*.so" ; do strip -S $FN done fi && - + # Added a symlink for ash and others ln -sf /usr/lib/libbsd-compat.a /usr/lib/libbsd.a && - + # Rebuild the ld cache rm -f /etc/ld.so.cache 2>/dev/null && ldconfig && - + # Remove the temporary libc rm /lib/{ld,lib{c,dl,m,rt,pthread,nss_files,util,nsl,crypt}}-lunar.so && - + # Generate locale info if [ -z "$GLIBC_LOCALES" ]; then make localedata/install-locales || exit 1 else devoke_installwatch && for LOCALE in $GLIBC_LOCALES; do - INPUTFILE=$(echo $LOCALE | cut -d/ -f1 | sed -e 's:\..*$::g') - OUTPUTFILE=$(echo $LOCALE | cut -d/ -f1) - CHARMAP=$(echo $LOCALE | cut -d/ -f2) - mkdir -p /usr/lib/locale/$OUTPUTFILE - echo "localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE" + INPUTFILE=$(echo $LOCALE | cut -d/ -f1 | sed -e 's:\..*$::g') && + OUTPUTFILE=$(echo $LOCALE | cut -d/ -f1) && + CHARMAP=$(echo $LOCALE | cut -d/ -f2) && + mkdir -p /usr/lib/locale/$OUTPUTFILE && + echo "localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE" && localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE done invoke_installwatch && touch /usr/lib/locale/locale-archive fi - + ) > $C_FIFO 2>&1 && ldconfig diff --git a/libs/glibc/CONFIGURE b/libs/glibc/CONFIGURE index 9c9ee7f..f871d4c 100644 --- a/libs/glibc/CONFIGURE +++ b/libs/glibc/CONFIGURE @@ -14,9 +14,9 @@ unpack_localedata() { message "Extracting locale data .. this might take a second .." # Extract the localedata directory from the source tarball - tar -C /tmp \ - -T $FILELIST_FILE \ - --strip-components=1 \ + tar -C /tmp \ + -T $FILELIST_FILE \ + --strip-components=1 \ -xjf $SOURCE_CACHE/$SOURCE } @@ -58,7 +58,7 @@ select_locales() { BACKTITLE="Glibc Configuration" TITLE="Locale Selection" HELP="Translated messages are automatically installed, but the locale database that controls other behavior is not. Please select desired locale or locales. If none are selected then all will be installed." - make_locales_checklist | xargs \ + make_locales_checklist | xargs \ dialog --backtitle "$BACKTITLE" \ --title "$TITLE" \ --stdout \ diff --git a/libs/glibc/DETAILS b/libs/glibc/DETAILS index caa7873..164a9ea 100644 --- a/libs/glibc/DETAILS +++ b/libs/glibc/DETAILS @@ -1,20 +1,20 @@ MODULE=glibc - VERSION=2.7 - SOURCE=$MODULE-$VERSION.tar.bz2 + VERSION=2.10.1 + SOURCE=$MODULE-$VERSION.tar.gz SOURCE2=$MODULE-libidn-$VERSION.tar.bz2 - SOURCE3=$MODULE-2.7-no_timezones.patch - SOURCE_URL[0]=$GNU_URL/$MODULE/ - SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ - SOURCE2_URL[0]=$GNU_URL/$MODULE/ - SOURCE2_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ + SOURCE3=$MODULE-$VERSION-no_timezones.patch + SOURCE_URL[0]=$GNU_URL/$MODULE + SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE + SOURCE2_URL[0]=$GNU_URL/$MODULE + SOURCE2_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE SOURCE3_URL=$PATCH_URL - SOURCE_VFY=sha1:ccc70e95db826e4b1fd3b484154402fdc3df88f7 - SOURCE2_VFY=sha1:2338cc9b5795f5e97a19aac6d7d00ab750e81ac3 - SOURCE3_VFY=sha1:b8cbd1725572600db0df32321a771ce0b11894c8 + SOURCE_VFY=sha1:e185b1faa54b734f9baba815142e9abf6c02054b + SOURCE2_VFY=sha1:50c1ac0d9ddff6eb83f75aa1c4cb84ba6fffa0cd + SOURCE3_VFY=sha1:9163df279f04efcc37a146115534e9fd0f9a19c5 WEB_SITE=http://www.gnu.org/software/libc ENTERED=20010922 - UPDATED=20071211 - SHORT="C library for use with GNU/Hurd and GNU/Linux." + UPDATED=20090518 + SHORT="C library for use with GNU/Hurd and GNU/Linux" PSAFE=no cat << EOF diff --git a/libs/glibc/PRE_BUILD b/libs/glibc/PRE_BUILD index c418228..1daa4b3 100644 --- a/libs/glibc/PRE_BUILD +++ b/libs/glibc/PRE_BUILD @@ -1,4 +1,4 @@ -default_pre_build && -cd $SOURCE_DIRECTORY && -unpack $SOURCE2 && +default_pre_build && +cd $SOURCE_DIRECTORY && +unpack $SOURCE2 && mv glibc-libidn-$VERSION libidn From elangelo at lunar-linux.org Mon Oct 5 13:50:05 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:05 -0000 Subject: [Lunar-commits] added the optimization thing Message-ID: <20091005115003.D9DFC9B2C8@doppio.foo-projects.org> commit d98fb3205cbcc4b6f2f2e6181cfe8f2ebe25c4b7 Author: Samuel Verstraete Date: Wed Aug 5 14:50:59 2009 +0200 added the optimization thing --- compilers/gcc/plugin.d/optimize-gcc_4_4.plugin | 526 ++++++++++++++++++++++++ 1 files changed, 526 insertions(+), 0 deletions(-) diff --git a/compilers/gcc/plugin.d/optimize-gcc_4_4.plugin b/compilers/gcc/plugin.d/optimize-gcc_4_4.plugin new file mode 100644 index 0000000..c6bab48 --- /dev/null +++ b/compilers/gcc/plugin.d/optimize-gcc_4_4.plugin @@ -0,0 +1,526 @@ +# +# gcc-4.3.x compiler optimizations plugin +# + +plugin_compiler_gcc_4_4_optimize() +{ + if [ "${LUNAR_COMPILER:-GCC_4_4}" != "GCC_4_4" ]; then + return 2 + fi + + debug_msg "plugin_compiler_gcc_4_4_optimize($@)" + if [ -f /etc/lunar/local/optimizations.GCC_4_4 ]; then + . /etc/lunar/local/optimizations.GCC_4_4 + fi + + # some local macro's + cflags_add() + { + CFLAGS="$CFLAGS $@" + } + + cxxflags_add() + { + CXXFLAGS="$CXXFLAGS $@" + } + + cppflags_add() + { + CPPFLAGS="$CPPFLAGS $@" + } + + c_cxx_flags_add() + { + cflags_add $@ + cxxflags_add $@ + } + + # CFLAGS/CXXFLAGS - base optimization + case $BOPT in + None) c_cxx_flags_add "-O0" ;; + Small) c_cxx_flags_add "-Os" ;; + Fast) c_cxx_flags_add "-O1" ;; + Faster) c_cxx_flags_add "-O2" ;; + Fastest) c_cxx_flags_add "-O3" ;; + esac + + # CFLAGS -march cpu-specific optimization + if [ -n "$CPU" ]; then + c_cxx_flags_add "-march=$CPU" + fi + + # GCC specific extra optimizations + for SP in ${SPD[@]}; do + case $SP in + Speedy) c_cxx_flags_add "-funroll-loops" ;; + Regparm) c_cxx_flags_add "-mregparm=3" ;; + Risky) c_cxx_flags_add "-ffast-math" ;; + Pointers) c_cxx_flags_add "-fomit-frame-pointer" ;; + Siblings) c_cxx_flags_add "-foptimize-sibling-calls" ;; + Profiling) + c_cxx_flags_add "-fprofile-arcs" + set_local_config "KEEP_SOURCE" "on" + ;; + Branching) c_cxx_flags_add "-fbranch-probabilities" ;; + Aliasing) c_cxx_flags_add "-fstrict-aliasing" ;; + Cprop) c_cxx_flags_add "-fno-cprop-registers" ;; + Float) c_cxx_flags_add "-ffloat-store" ;; + Address) c_cxx_flags_add "-fforce-addr" ;; + Align) c_cxx_flags_add "-falign-functions -falign-loops -falign-jumps" ;; + Expensive) c_cxx_flags_add "-fexpensive-optimizations" ;; + Doubles) c_cxx_flags_add "-malign-double" ;; + Tracer) c_cxx_flags_add "-ftracer" ;; + Blocks) c_cxx_flags_add "-freorder-blocks" ;; + esac + done + + # STACK - kind of dangerous - shouldn't we just remove this? + if (( STACK > 0 )) ; then + c_cxx_flags_add "-mpreferred-stack-boundary=$STACK" + cppflags_add "-mpreferred-stack-boundary=$STACK" + fi + + for XTR in ${XTRA[@]}; do + case $XTR in + MMX) c_cxx_flags_add "-mmmx" ;; + SSE) c_cxx_flags_add "-msse" ;; + SSE2) c_cxx_flags_add "-msse2" ;; + SSE3) c_cxx_flags_add "-msse3" ;; + dnow) c_cxx_flags_add "-m3dnow" ;; + Altivec) c_cxx_flags_add "-maltivec" ;; + esac + done + + case $FPM in + x387) c_cxx_flags_add "-mfpmath=387" ;; + SSE) c_cxx_flags_add "-mfpmath=sse" ;; + Both) c_cxx_flags_add "-mfpmath=sse,387" ;; + esac + + for OPT in ${CC_OPTS[@]}; do + case $OPT in + Deprecated) + cxxflags_add "-Wno-deprecated" + ;; + Debug) + c_cxx_flags_add "-g" + ;; + Pipe) + c_cxx_flags_add "-pipe" + ;; + esac + done + + CC=gcc + CXX=g++ + CPP=cpp + + export CFLAGS CXXFLAGS CPPFLAGS + export CC CXX CPP + + verbose_msg "CC=\"$CC\"" + verbose_msg "CXX=\"$CXX\"" + verbose_msg "CPP=\"$CPP\"" + verbose_msg "CFLAGS=\"$CFLAGS\"" + verbose_msg "CXXFLAGS=\"$CXXFLAGS\"" + verbose_msg "CPPFLAGS=\"$CPPFLAGS\"" + + return 2 +} + + +plugin_compiler_gcc_4_4_menu() +{ + # The main code calls this function WITHOUT $1 to find out which + # compiler optimization plugins exist. It then returns the plugin + # identifier which can be saved in $LUNAR_COMPILER as the user's + # choice for COMPILERS + if [ -z "$1" ]; then + echo "GCC_4_4" + echo "GNU C Compiler suite version 4.4.x" + return 2 + elif [ "$1" != "GCC_4_4" ]; then + # we don't display anything when the user selected a + # different menu + return 2 + fi + + # now we are done with determining if we are really the menu + # that the user wants - so we can display it + menu() + { + unset RESULT + if [ "$1" == "checklist" ]; then + RESULT=`$DIALOG --no-cancel --item-help --separate-output --checklist "$2" 0 0 0 "${OPTIONS[@]}"` + if [ $? != 0 ]; then + return 1 + fi + elif [ "$1" == "radiolist" ]; then + RESULT=`$DIALOG --no-cancel --item-help --radiolist "$2" 0 0 0 "${OPTIONS[@]}"` + if [ $? != 0 ]; then + return 1 + fi + fi + RESULT=$(echo $RESULT | sed -e 's:^"::' -e 's:"$::') + return 0 + } + + save_optimizations() + { + debug_msg "save_optimizations($@)" + cat >/etc/lunar/local/optimizations.GCC_4_4 < no gcc 4.2 plugin Message-ID: <20091005115004.056769B230@doppio.foo-projects.org> commit bbf5400f634072167ec9f7a55a7ce38543fb73ad Author: Samuel Verstraete Date: Wed Aug 5 14:51:19 2009 +0200 no gcc 4.2 plugin --- compilers/gcc/plugin.d/optimize-gcc_4_2.plugin | 524 ------------------------ 1 files changed, 0 insertions(+), 524 deletions(-) diff --git a/compilers/gcc/plugin.d/optimize-gcc_4_2.plugin b/compilers/gcc/plugin.d/optimize-gcc_4_2.plugin deleted file mode 100644 index 8220ab2..0000000 --- a/compilers/gcc/plugin.d/optimize-gcc_4_2.plugin +++ /dev/null @@ -1,524 +0,0 @@ -# -# gcc-4.2.x compiler optimizations plugin -# - -plugin_compiler_gcc_4_2_optimize() -{ - if [ "${LUNAR_COMPILER:-GCC_4_2}" != "GCC_4_2" ]; then - return 2 - fi - - debug_msg "plugin_compiler_gcc_4_2_optimize($@)" - if [ -f /etc/lunar/local/optimizations.GCC_4_2 ]; then - . /etc/lunar/local/optimizations.GCC_4_2 - fi - - # some local macro's - cflags_add() - { - CFLAGS="$CFLAGS $@" - } - - cxxflags_add() - { - CXXFLAGS="$CXXFLAGS $@" - } - - cppflags_add() - { - CPPFLAGS="$CPPFLAGS $@" - } - - c_cxx_flags_add() - { - cflags_add $@ - cxxflags_add $@ - } - - # CFLAGS/CXXFLAGS - base optimization - case $BOPT in - None) c_cxx_flags_add "-O0" ;; - Small) c_cxx_flags_add "-Os" ;; - Fast) c_cxx_flags_add "-O1" ;; - Faster) c_cxx_flags_add "-O2" ;; - Fastest) c_cxx_flags_add "-O3" ;; - esac - - # CFLAGS -march cpu-specific optimization - if [ -n "$CPU" ]; then - c_cxx_flags_add "-march=$CPU" - fi - - # GCC specific extra optimizations - for SP in ${SPD[@]}; do - case $SP in - Speedy) c_cxx_flags_add "-funroll-loops" ;; - Regparm) c_cxx_flags_add "-mregparm=3" ;; - Risky) c_cxx_flags_add "-ffast-math" ;; - Pointers) c_cxx_flags_add "-fomit-frame-pointer" ;; - Siblings) c_cxx_flags_add "-foptimize-sibling-calls" ;; - Profiling) - c_cxx_flags_add "-fprofile-arcs" - set_local_config "KEEP_SOURCE" "on" - ;; - Branching) c_cxx_flags_add "-fbranch-probabilities" ;; - Aliasing) c_cxx_flags_add "-fstrict-aliasing" ;; - Cprop) c_cxx_flags_add "-fno-cprop-registers" ;; - Float) c_cxx_flags_add "-ffloat-store" ;; - Address) c_cxx_flags_add "-fforce-addr" ;; - Align) c_cxx_flags_add "-falign-functions -falign-loops -falign-jumps" ;; - Expensive) c_cxx_flags_add "-fexpensive-optimizations" ;; - Doubles) c_cxx_flags_add "-malign-double" ;; - Tracer) c_cxx_flags_add "-ftracer" ;; - Blocks) c_cxx_flags_add "-freorder-blocks" ;; - esac - done - - # STACK - kind of dangerous - shouldn't we just remove this? - if (( STACK > 0 )) ; then - c_cxx_flags_add "-mpreferred-stack-boundary=$STACK" - cppflags_add "-mpreferred-stack-boundary=$STACK" - fi - - for XTR in ${XTRA[@]}; do - case $XTR in - MMX) c_cxx_flags_add "-mmmx" ;; - SSE) c_cxx_flags_add "-msse" ;; - SSE2) c_cxx_flags_add "-msse2" ;; - SSE3) c_cxx_flags_add "-msse3" ;; - dnow) c_cxx_flags_add "-m3dnow" ;; - Altivec) c_cxx_flags_add "-maltivec" ;; - esac - done - - case $FPM in - x387) c_cxx_flags_add "-mfpmath=387" ;; - SSE) c_cxx_flags_add "-mfpmath=sse" ;; - Both) c_cxx_flags_add "-mfpmath=sse,387" ;; - esac - - for OPT in ${CC_OPTS[@]}; do - case $OPT in - Deprecated) - cxxflags_add "-Wno-deprecated" - ;; - Debug) - c_cxx_flags_add "-g" - ;; - Pipe) - c_cxx_flags_add "-pipe" - ;; - esac - done - - CC=gcc - CXX=g++ - CPP=cpp - - export CFLAGS CXXFLAGS CPPFLAGS - export CC CXX CPP - - verbose_msg "CC=\"$CC\"" - verbose_msg "CXX=\"$CXX\"" - verbose_msg "CPP=\"$CPP\"" - verbose_msg "CFLAGS=\"$CFLAGS\"" - verbose_msg "CXXFLAGS=\"$CXXFLAGS\"" - verbose_msg "CPPFLAGS=\"$CPPFLAGS\"" - - return 2 -} - - -plugin_compiler_gcc_4_2_menu() -{ - # The main code calls this function WITHOUT $1 to find out which - # compiler optimization plugins exist. It then returns the plugin - # identifier which can be saved in $LUNAR_COMPILER as the user's - # choice for COMPILERS - if [ -z "$1" ]; then - echo "GCC_4_2" - echo "GNU C Compiler suite version 4.2.x" - return 2 - elif [ "$1" != "GCC_4_2" ]; then - # we don't display anything when the user selected a - # different menu - return 2 - fi - - # now we are done with determining if we are really the menu - # that the user wants - so we can display it - menu() - { - unset RESULT - if [ "$1" == "checklist" ]; then - RESULT=`$DIALOG --no-cancel --item-help --separate-output --checklist "$2" 0 0 0 "${OPTIONS[@]}"` - if [ $? != 0 ]; then - return 1 - fi - elif [ "$1" == "radiolist" ]; then - RESULT=`$DIALOG --no-cancel --item-help --radiolist "$2" 0 0 0 "${OPTIONS[@]}"` - if [ $? != 0 ]; then - return 1 - fi - fi - RESULT=$(echo $RESULT | sed -e 's:^"::' -e 's:"$::') - return 0 - } - - save_optimizations() - { - debug_msg "save_optimizations($@)" - cat >/etc/lunar/local/optimizations.GCC_4_2 < linux-2.6-rc: version Message-ID: <20091005115004.1EF229B2CD@doppio.foo-projects.org> commit f3750a59bdaa9ac7dee3722b2746504a1271707d Author: Samuel Verstraete Date: Thu Aug 6 21:11:26 2009 +0200 linux-2.6-rc: version --- kernel/linux-2.6-rc/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/linux-2.6-rc/DETAILS b/kernel/linux-2.6-rc/DETAILS index d5cb878..5b27a73 100644 --- a/kernel/linux-2.6-rc/DETAILS +++ b/kernel/linux-2.6-rc/DETAILS @@ -1,13 +1,13 @@ MODULE=linux-2.6-rc - VERSION=2.6.31-rc4 + VERSION=2.6.31-rc5 SOURCE=linux-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6/testing SOURCE_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6/testing - SOURCE_VFY=sha1:55efea713fa01fdd6acbadd6f4b4dd4f3547b3e9 + SOURCE_VFY=sha1:01cb56b333d9dbc999bbafeb333911e3ee9d6910 WEB_SITE=http://www.kernel.org ENTERED=20041019 - UPDATED=20090724 + UPDATED=20090802 SHORT="The core of a Linux GNU Operating System" KEEP_SOURCE=on TMPFS=off From elangelo at lunar-linux.org Mon Oct 5 13:50:06 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:06 -0000 Subject: [Lunar-commits] binutils: x86_64 Message-ID: <20091005115004.4677A9B236@doppio.foo-projects.org> commit 673fdaaddf17a27965a230314422121bec160745 Author: Samuel Verstraete Date: Wed Aug 12 22:00:25 2009 +0200 binutils: x86_64 --- devel/binutils/BUILD.x86_64 | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/devel/binutils/BUILD.x86_64 b/devel/binutils/BUILD.x86_64 new file mode 100644 index 0000000..23a6244 --- /dev/null +++ b/devel/binutils/BUILD.x86_64 @@ -0,0 +1,12 @@ +( + + ./configure --prefix=/usr && + + make tooldir=/usr && + prepare_install && + make tooldir=/usr install && + make tooldir=/usr install-info && + mkdir -p $DOCUMENT_DIRECTORY/binutils && + cp -p binutils/NEWS binutils/ChangeLog $DOCUMENT_DIRECTORY/binutils + +) > $C_FIFO 2>&1 From elangelo at lunar-linux.org Mon Oct 5 13:50:06 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:06 -0000 Subject: [Lunar-commits] vde2: fix for gcc 44 Message-ID: <20091005115004.7785E9B2C9@doppio.foo-projects.org> commit 9046851974287437f849d90db0e2bf94aaf629c3 Author: Samuel Verstraete Date: Thu Aug 13 10:24:53 2009 +0200 vde2: fix for gcc 44 --- devel/vde2/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devel/vde2/DETAILS b/devel/vde2/DETAILS index 38e15a2..3fdb7ea 100644 --- a/devel/vde2/DETAILS +++ b/devel/vde2/DETAILS @@ -1,19 +1,19 @@ MODULE=vde2 VERSION=2.2.2 SOURCE=${MODULE}-$VERSION.tar.gz + SOURCE2=vde-${VERSION}-gcc43.patch SOURCE_URL=$SFORGE_URL/vde + SOURCE2_URL=$PATCH_URL/ SOURCE_VFY=sha1:979efc41dd5d0c41f54929159031361e961c6b80 + SOURCE2_URL=sha1:cc22e018d5347cae34f430e2f6075b56c0c797d5 WEB_SITE=http://vde.sourceforge.net ENTERED=20090525 - UPDATED=20090525 + UPDATED=20090813 SHORT="virtual distributed ethernet" cat << EOF VDE: Virtual Distributed Ethernet. It creates the abstraction of a virtual ethernet: a single vde can be accessed by virtual and real computers -<<<<<<< HEAD:devel/vde2/DETAILS -======= more info: http://wiki.virtualsquare.org/index.php/VDE ->>>>>>> master:devel/vde2/DETAILS EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:06 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:06 -0000 Subject: [Lunar-commits] glibc: 2.10.1 Message-ID: <20091005115004.B175A9B22E@doppio.foo-projects.org> commit de0774f7d61a422292ca9a1a178a93c0429f7051 Author: Samuel Verstraete Date: Thu Aug 13 10:27:52 2009 +0200 glibc: 2.10.1 --- devel/vde2/BUILD | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/devel/vde2/BUILD b/devel/vde2/BUILD new file mode 100644 index 0000000..c2abe8c --- /dev/null +++ b/devel/vde2/BUILD @@ -0,0 +1,7 @@ +( + + patch_it $SOURCE2 1 && + + default_build + +) > $C_FIFO 2>&1 From elangelo at lunar-linux.org Mon Oct 5 13:50:06 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:06 -0000 Subject: [Lunar-commits] glibc: something newer ! Message-ID: <20091005115004.D97BA9B22C@doppio.foo-projects.org> commit 986295314e14290bf73e02a8362c12b5ad8d1cf2 Author: Samuel Verstraete Date: Wed Aug 5 14:50:12 2009 +0200 glibc: something newer ! --- libs/glibc/BUILD | 117 ++++++++++++++++++++++---------------------- libs/glibc/BUILD.x86_64 | 123 ++++++++++++++++++++++++----------------------- libs/glibc/CONFIGURE | 8 ++-- libs/glibc/DETAILS | 24 +++++----- libs/glibc/PRE_BUILD | 6 +- 5 files changed, 139 insertions(+), 139 deletions(-) diff --git a/libs/glibc/BUILD b/libs/glibc/BUILD index 24f09d7..492fff8 100644 --- a/libs/glibc/BUILD +++ b/libs/glibc/BUILD @@ -1,72 +1,71 @@ ( - + # This sedit takes care of Bug Report 398 submitted by Striker. sedit "s:/tmp:$SOURCE_DIRECTORY/tmp:g" scripts/test-installation.pl && mkdir -p $SOURCE_DIRECTORY/tmp && - + # There is no other option but nptl - OPTS="$OPTS --enable-add-ons=nptl,libidn --with-__thread --with-tls" - + OPTS+=" --enable-add-ons=nptl,libidn --with-__thread --with-tls" && + if [ -n "$MAKES" ] && [ "$MAKES" -gt 1 ] ; then sedit "s/# PARALLELMFLAGS = -j 4/PARALLELMFLAGS = -j $MAKES/" Makefile.in - fi - - export CC=gcc - + fi && + + export CC=gcc && + # Don't fully strip libc if [[ "$LDFLAGS" == *-s* ]] ; then STRIP=y - fi - unset LDFLAGS - + fi && + unset LDFLAGS && + patch_it $SOURCE3 1 && - + INSTALL_ROOT=$SOURCE_DIRECTORY/glibcroot && mkdir -p $INSTALL_ROOT && - cd $INSTALL_ROOT - - OPTS="$OPTS --with-headers=/usr/include" - - ../configure --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --with-elf \ - --with-gd=no \ - --without-cvs \ - --enable-shared \ - --with-kernel=2.6.23 \ - $OPTS && - + cd $INSTALL_ROOT && + + OPTS+=" --with-headers=/usr/include" && + + ../configure --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-elf \ + --with-gd=no \ + --without-cvs \ + --enable-shared \ + $OPTS && + # explicitly exit here since the following code unsets $? make || exit 1 && - + # Preserve the old glibc temporarily - LD=/lib/ld-linux.so.2 - GLIBC=/lib/libc.so.6 - DL=/lib/libdl.so.2 - M=/lib/libm.so.6 - RT=/lib/librt.so.1 - PTHREAD=/lib/libpthread.so.0 - NSS=/lib/libnss_files.so.2 - UTIL=/lib/libutil.so.1 - NSL=/lib/libnsl.so.1 - CRYPT=/lib/libcrypt.so.1 - + LD=/lib/ld-linux.so.2 && + GLIBC=/lib/libc.so.6 && + DL=/lib/libdl.so.2 && + M=/lib/libm.so.6 && + RT=/lib/librt.so.1 && + PTHREAD=/lib/libpthread.so.0 && + NSS=/lib/libnss_files.so.2 && + UTIL=/lib/libutil.so.1 && + NSL=/lib/libnsl.so.1 && + CRYPT=/lib/libcrypt.so.1 && + case "`arch`" in alpha) - GLIBC=/lib/libc.so.6.1 - DL=/lib/libdl.so.2.1 + GLIBC=/lib/libc.so.6.1 && + DL=/lib/libdl.so.2.1 && M=/lib/libm.so.6.1 ;; ppc) - LD=/lib/ld.so.1 + LD=/lib/ld.so.1 && DL=/lib/libdl.so.2 ;; *) DL=/lib/libdl.so.2 ;; - esac - + esac && + cp $LD /lib/ld-lunar.so && cp $GLIBC /lib/libc-lunar.so && cp $DL /lib/libdl-lunar.so && @@ -77,7 +76,7 @@ cp $UTIL /lib/libutil-lunar.so && cp $NSL /lib/libnsl-lunar.so && cp $CRYPT /lib/libcrypt-lunar.so && - + # Setup links for libraries sln /lib/ld-lunar.so $LD && sln /lib/libc-lunar.so $GLIBC && @@ -89,16 +88,16 @@ sln /lib/libutil-lunar.so $UTIL && sln /lib/libnsl-lunar.so $NSL && sln /lib/libcrypt-lunar.so $CRYPT && - + # clean hack to make sure gnu/stubs.h gets refreshed rm -f /usr/include/gnu/stubs.h && - + # This removes the old glibc prepare_install && - + # And now we install the new make install && - + # Now optionally perform debug symbol stripping only if [ "$STRIP" == "y" ] ; then for FN in ld-$VERSION.so \ @@ -106,37 +105,37 @@ libnss_{compat,files,hesiod,nis,nisplus}-$VERSION.so \ lib{memusage,pcprofile,SegFault,thread_db-1.0}.so ; do strip -S /lib/$FN - done + done && for FN in "/usr/lib/gconv/*.so" ; do strip -S $FN done fi && - + # Added a symlink for ash and others ln -sf /usr/lib/libbsd-compat.a /usr/lib/libbsd.a && - + # Rebuild the ld cache rm -f /etc/ld.so.cache 2>/dev/null && ldconfig && - + # Remove the temporary libc rm /lib/{ld,lib{c,dl,m,rt,pthread,nss_files,util,nsl,crypt}}-lunar.so && - + # Generate locale info if [ -z "$GLIBC_LOCALES" ]; then make localedata/install-locales || exit 1 else devoke_installwatch && for LOCALE in $GLIBC_LOCALES; do - INPUTFILE=$(echo $LOCALE | cut -d/ -f1 | sed -e 's:\..*$::g') - OUTPUTFILE=$(echo $LOCALE | cut -d/ -f1) - CHARMAP=$(echo $LOCALE | cut -d/ -f2) - mkdir -p /usr/lib/locale/$OUTPUTFILE - echo "localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE" + INPUTFILE=$(echo $LOCALE | cut -d/ -f1 | sed -e 's:\..*$::g') && + OUTPUTFILE=$(echo $LOCALE | cut -d/ -f1) && + CHARMAP=$(echo $LOCALE | cut -d/ -f2) && + mkdir -p /usr/lib/locale/$OUTPUTFILE && + echo "localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE" && localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE done invoke_installwatch && touch /usr/lib/locale/locale-archive fi - + ) > $C_FIFO 2>&1 && ldconfig diff --git a/libs/glibc/BUILD.x86_64 b/libs/glibc/BUILD.x86_64 index c61b76c..6720b9e 100644 --- a/libs/glibc/BUILD.x86_64 +++ b/libs/glibc/BUILD.x86_64 @@ -1,60 +1,61 @@ ( - + # This sedit takes care of Bug Report 398 submitted by Striker. sedit "s:/tmp:$SOURCE_DIRECTORY/tmp:g" scripts/test-installation.pl && mkdir -p $SOURCE_DIRECTORY/tmp && - + # There is no other option but nptl - OPTS="$OPTS --enable-add-ons=nptl,libidn --with-__thread --with-tls" - + OPTS+=" --enable-add-ons=nptl,libidn --with-__thread --with-tls" && + if [ -n "$MAKES" ] && [ "$MAKES" -gt 1 ] ; then sedit "s/# PARALLELMFLAGS = -j 4/PARALLELMFLAGS = -j $MAKES/" Makefile.in - fi - - export CC=gcc - + fi && + + export CC=gcc && + # Don't fully strip libc if [[ "$LDFLAGS" == *-s* ]] ; then STRIP=y - fi - unset LDFLAGS - + fi && + unset LDFLAGS && + patch_it $SOURCE3 1 && - + INSTALL_ROOT=$SOURCE_DIRECTORY/glibcroot && mkdir -p $INSTALL_ROOT && - cd $INSTALL_ROOT - - OPTS="$OPTS --with-headers=/usr/include" - - ../configure --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --with-elf \ - --with-gd=no \ - --without-cvs \ - --enable-shared \ - --host=$BUILD \ - --build=$BUILD \ - --with-kernel=2.6.23 \ - $OPTS && - + cd $INSTALL_ROOT && + + OPTS+=" --with-headers=/usr/include" && + + ../configure --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-elf \ + --with-gd=no \ + --without-cvs \ + --enable-shared \ + --host=$BUILD \ + --build=$BUILD \ + $OPTS && + # explicitly exit here since the following code unsets $? - make || exit 1 - + make || exit 1 && + # Preserve the old glibc temporarily - LD=/lib/ld-linux-x86-64.so.2 - GLIBC=/lib/libc.so.6 - DL=/lib/libdl.so.2 - M=/lib/libm.so.6 - RT=/lib/librt.so.1 - PTHREAD=/lib/libpthread.so.0 - NSS=/lib/libnss_files.so.2 - UTIL=/lib/libutil.so.1 - NSL=/lib/libnsl.so.1 - CRYPT=/lib/libcrypt.so.1 - DL=/lib/libdl.so.2 - + LD=/lib/ld-linux.so.2 && + LD=/lib/ld-linux-x86-64.so.2 && + GLIBC=/lib/libc.so.6 && + DL=/lib/libdl.so.2 && + M=/lib/libm.so.6 && + RT=/lib/librt.so.1 && + PTHREAD=/lib/libpthread.so.0 && + NSS=/lib/libnss_files.so.2 && + UTIL=/lib/libutil.so.1 && + NSL=/lib/libnsl.so.1 && + CRYPT=/lib/libcrypt.so.1 && + + DL=/lib/libdl.so.2 && + cp $LD /lib/ld-lunar.so && cp $GLIBC /lib/libc-lunar.so && cp $DL /lib/libdl-lunar.so && @@ -65,7 +66,7 @@ cp $UTIL /lib/libutil-lunar.so && cp $NSL /lib/libnsl-lunar.so && cp $CRYPT /lib/libcrypt-lunar.so && - + # Setup links for libraries sln /lib/ld-lunar.so $LD && sln /lib/libc-lunar.so $GLIBC && @@ -77,16 +78,16 @@ sln /lib/libutil-lunar.so $UTIL && sln /lib/libnsl-lunar.so $NSL && sln /lib/libcrypt-lunar.so $CRYPT && - + # clean hack to make sure gnu/stubs.h gets refreshed - rm -f /usr/include/gnu/stubs.h && - + rm -f /usr/include/gnu/stubs.h && + # This removes the old glibc - prepare_install && - + prepare_install && + # And now we install the new - make install && - + make install && + # Now optionally perform debug symbol stripping only if [ "$STRIP" == "y" ] ; then for FN in ld-$VERSION.so \ @@ -94,37 +95,37 @@ libnss_{compat,files,hesiod,nis,nisplus}-$VERSION.so \ lib{memusage,pcprofile,SegFault,thread_db-1.0}.so ; do strip -S /lib/$FN - done + done && for FN in "/usr/lib/gconv/*.so" ; do strip -S $FN done fi && - + # Added a symlink for ash and others ln -sf /usr/lib/libbsd-compat.a /usr/lib/libbsd.a && - + # Rebuild the ld cache rm -f /etc/ld.so.cache 2>/dev/null && ldconfig && - + # Remove the temporary libc rm /lib/{ld,lib{c,dl,m,rt,pthread,nss_files,util,nsl,crypt}}-lunar.so && - + # Generate locale info if [ -z "$GLIBC_LOCALES" ]; then make localedata/install-locales || exit 1 else devoke_installwatch && for LOCALE in $GLIBC_LOCALES; do - INPUTFILE=$(echo $LOCALE | cut -d/ -f1 | sed -e 's:\..*$::g') - OUTPUTFILE=$(echo $LOCALE | cut -d/ -f1) - CHARMAP=$(echo $LOCALE | cut -d/ -f2) - mkdir -p /usr/lib/locale/$OUTPUTFILE - echo "localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE" + INPUTFILE=$(echo $LOCALE | cut -d/ -f1 | sed -e 's:\..*$::g') && + OUTPUTFILE=$(echo $LOCALE | cut -d/ -f1) && + CHARMAP=$(echo $LOCALE | cut -d/ -f2) && + mkdir -p /usr/lib/locale/$OUTPUTFILE && + echo "localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE" && localedef -i $INPUTFILE -f $CHARMAP $OUTPUTFILE done invoke_installwatch && touch /usr/lib/locale/locale-archive fi - + ) > $C_FIFO 2>&1 && ldconfig diff --git a/libs/glibc/CONFIGURE b/libs/glibc/CONFIGURE index 9c9ee7f..f871d4c 100644 --- a/libs/glibc/CONFIGURE +++ b/libs/glibc/CONFIGURE @@ -14,9 +14,9 @@ unpack_localedata() { message "Extracting locale data .. this might take a second .." # Extract the localedata directory from the source tarball - tar -C /tmp \ - -T $FILELIST_FILE \ - --strip-components=1 \ + tar -C /tmp \ + -T $FILELIST_FILE \ + --strip-components=1 \ -xjf $SOURCE_CACHE/$SOURCE } @@ -58,7 +58,7 @@ select_locales() { BACKTITLE="Glibc Configuration" TITLE="Locale Selection" HELP="Translated messages are automatically installed, but the locale database that controls other behavior is not. Please select desired locale or locales. If none are selected then all will be installed." - make_locales_checklist | xargs \ + make_locales_checklist | xargs \ dialog --backtitle "$BACKTITLE" \ --title "$TITLE" \ --stdout \ diff --git a/libs/glibc/DETAILS b/libs/glibc/DETAILS index caa7873..164a9ea 100644 --- a/libs/glibc/DETAILS +++ b/libs/glibc/DETAILS @@ -1,20 +1,20 @@ MODULE=glibc - VERSION=2.7 - SOURCE=$MODULE-$VERSION.tar.bz2 + VERSION=2.10.1 + SOURCE=$MODULE-$VERSION.tar.gz SOURCE2=$MODULE-libidn-$VERSION.tar.bz2 - SOURCE3=$MODULE-2.7-no_timezones.patch - SOURCE_URL[0]=$GNU_URL/$MODULE/ - SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ - SOURCE2_URL[0]=$GNU_URL/$MODULE/ - SOURCE2_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ + SOURCE3=$MODULE-$VERSION-no_timezones.patch + SOURCE_URL[0]=$GNU_URL/$MODULE + SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE + SOURCE2_URL[0]=$GNU_URL/$MODULE + SOURCE2_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE SOURCE3_URL=$PATCH_URL - SOURCE_VFY=sha1:ccc70e95db826e4b1fd3b484154402fdc3df88f7 - SOURCE2_VFY=sha1:2338cc9b5795f5e97a19aac6d7d00ab750e81ac3 - SOURCE3_VFY=sha1:b8cbd1725572600db0df32321a771ce0b11894c8 + SOURCE_VFY=sha1:e185b1faa54b734f9baba815142e9abf6c02054b + SOURCE2_VFY=sha1:50c1ac0d9ddff6eb83f75aa1c4cb84ba6fffa0cd + SOURCE3_VFY=sha1:9163df279f04efcc37a146115534e9fd0f9a19c5 WEB_SITE=http://www.gnu.org/software/libc ENTERED=20010922 - UPDATED=20071211 - SHORT="C library for use with GNU/Hurd and GNU/Linux." + UPDATED=20090518 + SHORT="C library for use with GNU/Hurd and GNU/Linux" PSAFE=no cat << EOF diff --git a/libs/glibc/PRE_BUILD b/libs/glibc/PRE_BUILD index c418228..1daa4b3 100644 --- a/libs/glibc/PRE_BUILD +++ b/libs/glibc/PRE_BUILD @@ -1,4 +1,4 @@ -default_pre_build && -cd $SOURCE_DIRECTORY && -unpack $SOURCE2 && +default_pre_build && +cd $SOURCE_DIRECTORY && +unpack $SOURCE2 && mv glibc-libidn-$VERSION libidn From elangelo at lunar-linux.org Mon Oct 5 13:50:07 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:07 -0000 Subject: [Lunar-commits] gcc: 4.4.1 Message-ID: <20091005115005.5B4B29B232@doppio.foo-projects.org> commit 0b0ff67b579fe2e751095c5ca374167b09429248 Author: Samuel Verstraete Date: Wed Aug 5 14:45:34 2009 +0200 gcc: 4.4.1 --- compilers/gcc/BUILD | 15 ++++++--------- compilers/gcc/BUILD.x86_64 | 13 +++++-------- compilers/gcc/CONFIGURE | 12 ++++++------ compilers/gcc/DEPENDS | 3 ++- compilers/gcc/DETAILS | 6 +++--- compilers/gcc/POST_INSTALL | 14 ++++---------- 6 files changed, 26 insertions(+), 37 deletions(-) diff --git a/compilers/gcc/BUILD b/compilers/gcc/BUILD index fe306a7..7fcc411 100644 --- a/compilers/gcc/BUILD +++ b/compilers/gcc/BUILD @@ -3,17 +3,14 @@ mkdir BUILD && cd BUILD && - sedit 's/trap 0/trap "" 0/' ../configure && + #sedit 's/trap 0/trap "" 0/' ../configure && # We use libiberty.a from binutils instead - sedit 's/install_to_$(INSTALL_DEST) //' ../libiberty/Makefile.in && + sedit 's/install_to_$(INSTALL_DEST) //' ../libiberty/Makefile.in && - LANGUAGES="${LANGUAGES:=c++}" && + LANGUAGES="${LANGUAGES:=c++}" && - if in_depends gcc mpfr ; then - LANGUAGES="${LANGUAGES},fortran" - fi - - ../configure --host=$BUILD \ + ../configure --build=$BUILD \ + --host=$BUILD \ --enable-languages=$LANGUAGES \ --prefix=${MODULE_PREFIX} \ --infodir=${MODULE_PREFIX}/share/info \ @@ -25,7 +22,7 @@ --with-gnu-ld \ --with-system-zlib \ --enable-shared \ - $OPTS && + $OPTS && make CFLAGS='-O' LIBCFLAGS='-g -O2' LIBCXXFLAGS='-g -O2 -fno-implicit-templates' bootstrap-lean && prepare_install && diff --git a/compilers/gcc/BUILD.x86_64 b/compilers/gcc/BUILD.x86_64 index 34a04f7..6ed319d 100644 --- a/compilers/gcc/BUILD.x86_64 +++ b/compilers/gcc/BUILD.x86_64 @@ -3,17 +3,14 @@ mkdir BUILD && cd BUILD && - sedit 's/trap 0/trap "" 0/' ../configure && + #sedit 's/trap 0/trap "" 0/' ../configure && # We use libiberty.a from binutils instead - sedit 's/install_to_$(INSTALL_DEST) //' ../libiberty/Makefile.in && + sedit 's/install_to_$(INSTALL_DEST) //' ../libiberty/Makefile.in && - LANGUAGES=${LANGUAGES:=c++} && - - if in_depends gcc mpfr ; then - LANGUAGES="${LANGUAGES},fortran" - fi + LANGUAGES=${LANGUAGES:=c++} && ../configure --host=$BUILD \ + --build=$BUILD \ --enable-languages=$LANGUAGES \ --prefix=${MODULE_PREFIX} \ --infodir=${MODULE_PREFIX}/share/info \ @@ -26,7 +23,7 @@ --with-system-zlib \ --enable-shared \ --disable-multilib \ - $OPTS && + $OPTS && make CFLAGS='-O' LIBCFLAGS='-g -O2' LIBCXXFLAGS='-g -O2 -fno-implicit-templates' bootstrap-lean && prepare_install && diff --git a/compilers/gcc/CONFIGURE b/compilers/gcc/CONFIGURE index 176efa1..79b186a 100644 --- a/compilers/gcc/CONFIGURE +++ b/compilers/gcc/CONFIGURE @@ -9,12 +9,13 @@ if [ -n "$RECONFIGURE" ] ; then OPTIONS=( "java" "Java" "off" "objc" "Objective C" "off" + "fortran" "Fortran" "off" ) - RESULT=`dialog --title "Select additional compiler languages" \ - --stdout \ - --separate-output \ - --checklist "Available additional languages:" \ - 0 0 0 \ + RESULT=`dialog --title "Select additional compiler languages" \ + --stdout \ + --separate-output \ + --checklist "Available additional languages:" \ + 0 0 0 \ "${OPTIONS[@]}"` LANGUAGES="c++,$(echo $RESULT | sed 's/ /,/g')" @@ -29,4 +30,3 @@ if [ -n "$RECONFIGURE" ] ; then fi fi - diff --git a/compilers/gcc/DEPENDS b/compilers/gcc/DEPENDS index 858cf14..ae64c3c 100644 --- a/compilers/gcc/DEPENDS +++ b/compilers/gcc/DEPENDS @@ -1 +1,2 @@ -optional_depends "mpfr" "" "" "to compile fortran support" +depends gmp +depends mpfr diff --git a/compilers/gcc/DETAILS b/compilers/gcc/DETAILS index 91ae188..1174072 100644 --- a/compilers/gcc/DETAILS +++ b/compilers/gcc/DETAILS @@ -1,13 +1,13 @@ MODULE=gcc - VERSION=4.2.4 + VERSION=4.4.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=$GNU_URL/gcc/$MODULE-$VERSION SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/gcc/$MODULE-$VERSION SOURCE_URL[2]=http://www.online-mirror.org/gcc/$MODULE-$VERSION - SOURCE_VFY=sha1:bb20efc7750fe0d6172c5945572bf036fe59d3dd + SOURCE_VFY=sha1:9156ddb7e4cc72288ec31760d6ddc7981123a8a2 WEB_SITE=http://gcc.gnu.org ENTERED=20020628 - UPDATED=20080523 + UPDATED=20090801 PSAFE=no SHORT="GNU compiler collection" diff --git a/compilers/gcc/POST_INSTALL b/compilers/gcc/POST_INSTALL index c3e8185..6179464 100644 --- a/compilers/gcc/POST_INSTALL +++ b/compilers/gcc/POST_INSTALL @@ -1,14 +1,8 @@ -# allow seamless upgrade/downgrade from/to gcc <=> gcc3 -if module_installed gcc3 ; then - remove_module gcc3 -fi - -cd /usr/lib/gcc/$BUILD/$VERSION && -ln -sf /usr/bin/cpp cpp && -cd /lib/ && -ln -sf /usr/bin/cpp cpp && +cd /usr/lib/gcc/$BUILD/$VERSION && +ln -sf /usr/bin/cpp cpp && +cd /lib/ && +ln -sf /usr/bin/cpp cpp && if [ ! -e /usr/bin/cc ] ; then ln -s gcc /usr/bin/cc fi || true - From elangelo at lunar-linux.org Mon Oct 5 13:50:07 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:07 -0000 Subject: [Lunar-commits] glibc: 2.10.1 Message-ID: <20091005115005.067909B22D@doppio.foo-projects.org> commit e26450a53e0fcc9a19528ce416f6d0f4324203c3 Author: Samuel Verstraete Date: Thu Aug 13 10:27:52 2009 +0200 glibc: 2.10.1 --- devel/vde2/BUILD | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/devel/vde2/BUILD b/devel/vde2/BUILD new file mode 100644 index 0000000..c2abe8c --- /dev/null +++ b/devel/vde2/BUILD @@ -0,0 +1,7 @@ +( + + patch_it $SOURCE2 1 && + + default_build + +) > $C_FIFO 2>&1 From elangelo at lunar-linux.org Mon Oct 5 13:50:07 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:07 -0000 Subject: [Lunar-commits] no gcc 4.2 plugin Message-ID: <20091005115005.BEA469B2CF@doppio.foo-projects.org> commit 213e2e0d0b25f59db7eee96b7b389524645063d1 Author: Samuel Verstraete Date: Wed Aug 5 14:51:19 2009 +0200 no gcc 4.2 plugin --- compilers/gcc/plugin.d/optimize-gcc_4_2.plugin | 524 ------------------------ 1 files changed, 0 insertions(+), 524 deletions(-) diff --git a/compilers/gcc/plugin.d/optimize-gcc_4_2.plugin b/compilers/gcc/plugin.d/optimize-gcc_4_2.plugin deleted file mode 100644 index 8220ab2..0000000 --- a/compilers/gcc/plugin.d/optimize-gcc_4_2.plugin +++ /dev/null @@ -1,524 +0,0 @@ -# -# gcc-4.2.x compiler optimizations plugin -# - -plugin_compiler_gcc_4_2_optimize() -{ - if [ "${LUNAR_COMPILER:-GCC_4_2}" != "GCC_4_2" ]; then - return 2 - fi - - debug_msg "plugin_compiler_gcc_4_2_optimize($@)" - if [ -f /etc/lunar/local/optimizations.GCC_4_2 ]; then - . /etc/lunar/local/optimizations.GCC_4_2 - fi - - # some local macro's - cflags_add() - { - CFLAGS="$CFLAGS $@" - } - - cxxflags_add() - { - CXXFLAGS="$CXXFLAGS $@" - } - - cppflags_add() - { - CPPFLAGS="$CPPFLAGS $@" - } - - c_cxx_flags_add() - { - cflags_add $@ - cxxflags_add $@ - } - - # CFLAGS/CXXFLAGS - base optimization - case $BOPT in - None) c_cxx_flags_add "-O0" ;; - Small) c_cxx_flags_add "-Os" ;; - Fast) c_cxx_flags_add "-O1" ;; - Faster) c_cxx_flags_add "-O2" ;; - Fastest) c_cxx_flags_add "-O3" ;; - esac - - # CFLAGS -march cpu-specific optimization - if [ -n "$CPU" ]; then - c_cxx_flags_add "-march=$CPU" - fi - - # GCC specific extra optimizations - for SP in ${SPD[@]}; do - case $SP in - Speedy) c_cxx_flags_add "-funroll-loops" ;; - Regparm) c_cxx_flags_add "-mregparm=3" ;; - Risky) c_cxx_flags_add "-ffast-math" ;; - Pointers) c_cxx_flags_add "-fomit-frame-pointer" ;; - Siblings) c_cxx_flags_add "-foptimize-sibling-calls" ;; - Profiling) - c_cxx_flags_add "-fprofile-arcs" - set_local_config "KEEP_SOURCE" "on" - ;; - Branching) c_cxx_flags_add "-fbranch-probabilities" ;; - Aliasing) c_cxx_flags_add "-fstrict-aliasing" ;; - Cprop) c_cxx_flags_add "-fno-cprop-registers" ;; - Float) c_cxx_flags_add "-ffloat-store" ;; - Address) c_cxx_flags_add "-fforce-addr" ;; - Align) c_cxx_flags_add "-falign-functions -falign-loops -falign-jumps" ;; - Expensive) c_cxx_flags_add "-fexpensive-optimizations" ;; - Doubles) c_cxx_flags_add "-malign-double" ;; - Tracer) c_cxx_flags_add "-ftracer" ;; - Blocks) c_cxx_flags_add "-freorder-blocks" ;; - esac - done - - # STACK - kind of dangerous - shouldn't we just remove this? - if (( STACK > 0 )) ; then - c_cxx_flags_add "-mpreferred-stack-boundary=$STACK" - cppflags_add "-mpreferred-stack-boundary=$STACK" - fi - - for XTR in ${XTRA[@]}; do - case $XTR in - MMX) c_cxx_flags_add "-mmmx" ;; - SSE) c_cxx_flags_add "-msse" ;; - SSE2) c_cxx_flags_add "-msse2" ;; - SSE3) c_cxx_flags_add "-msse3" ;; - dnow) c_cxx_flags_add "-m3dnow" ;; - Altivec) c_cxx_flags_add "-maltivec" ;; - esac - done - - case $FPM in - x387) c_cxx_flags_add "-mfpmath=387" ;; - SSE) c_cxx_flags_add "-mfpmath=sse" ;; - Both) c_cxx_flags_add "-mfpmath=sse,387" ;; - esac - - for OPT in ${CC_OPTS[@]}; do - case $OPT in - Deprecated) - cxxflags_add "-Wno-deprecated" - ;; - Debug) - c_cxx_flags_add "-g" - ;; - Pipe) - c_cxx_flags_add "-pipe" - ;; - esac - done - - CC=gcc - CXX=g++ - CPP=cpp - - export CFLAGS CXXFLAGS CPPFLAGS - export CC CXX CPP - - verbose_msg "CC=\"$CC\"" - verbose_msg "CXX=\"$CXX\"" - verbose_msg "CPP=\"$CPP\"" - verbose_msg "CFLAGS=\"$CFLAGS\"" - verbose_msg "CXXFLAGS=\"$CXXFLAGS\"" - verbose_msg "CPPFLAGS=\"$CPPFLAGS\"" - - return 2 -} - - -plugin_compiler_gcc_4_2_menu() -{ - # The main code calls this function WITHOUT $1 to find out which - # compiler optimization plugins exist. It then returns the plugin - # identifier which can be saved in $LUNAR_COMPILER as the user's - # choice for COMPILERS - if [ -z "$1" ]; then - echo "GCC_4_2" - echo "GNU C Compiler suite version 4.2.x" - return 2 - elif [ "$1" != "GCC_4_2" ]; then - # we don't display anything when the user selected a - # different menu - return 2 - fi - - # now we are done with determining if we are really the menu - # that the user wants - so we can display it - menu() - { - unset RESULT - if [ "$1" == "checklist" ]; then - RESULT=`$DIALOG --no-cancel --item-help --separate-output --checklist "$2" 0 0 0 "${OPTIONS[@]}"` - if [ $? != 0 ]; then - return 1 - fi - elif [ "$1" == "radiolist" ]; then - RESULT=`$DIALOG --no-cancel --item-help --radiolist "$2" 0 0 0 "${OPTIONS[@]}"` - if [ $? != 0 ]; then - return 1 - fi - fi - RESULT=$(echo $RESULT | sed -e 's:^"::' -e 's:"$::') - return 0 - } - - save_optimizations() - { - debug_msg "save_optimizations($@)" - cat >/etc/lunar/local/optimizations.GCC_4_2 < added the optimization thing Message-ID: <20091005115005.7145C9B234@doppio.foo-projects.org> commit f593fc3f257686a47b447a1dd1a70fd35ed95787 Author: Samuel Verstraete Date: Wed Aug 5 14:50:59 2009 +0200 added the optimization thing --- compilers/gcc/plugin.d/optimize-gcc_4_4.plugin | 526 ++++++++++++++++++++++++ 1 files changed, 526 insertions(+), 0 deletions(-) diff --git a/compilers/gcc/plugin.d/optimize-gcc_4_4.plugin b/compilers/gcc/plugin.d/optimize-gcc_4_4.plugin new file mode 100644 index 0000000..c6bab48 --- /dev/null +++ b/compilers/gcc/plugin.d/optimize-gcc_4_4.plugin @@ -0,0 +1,526 @@ +# +# gcc-4.3.x compiler optimizations plugin +# + +plugin_compiler_gcc_4_4_optimize() +{ + if [ "${LUNAR_COMPILER:-GCC_4_4}" != "GCC_4_4" ]; then + return 2 + fi + + debug_msg "plugin_compiler_gcc_4_4_optimize($@)" + if [ -f /etc/lunar/local/optimizations.GCC_4_4 ]; then + . /etc/lunar/local/optimizations.GCC_4_4 + fi + + # some local macro's + cflags_add() + { + CFLAGS="$CFLAGS $@" + } + + cxxflags_add() + { + CXXFLAGS="$CXXFLAGS $@" + } + + cppflags_add() + { + CPPFLAGS="$CPPFLAGS $@" + } + + c_cxx_flags_add() + { + cflags_add $@ + cxxflags_add $@ + } + + # CFLAGS/CXXFLAGS - base optimization + case $BOPT in + None) c_cxx_flags_add "-O0" ;; + Small) c_cxx_flags_add "-Os" ;; + Fast) c_cxx_flags_add "-O1" ;; + Faster) c_cxx_flags_add "-O2" ;; + Fastest) c_cxx_flags_add "-O3" ;; + esac + + # CFLAGS -march cpu-specific optimization + if [ -n "$CPU" ]; then + c_cxx_flags_add "-march=$CPU" + fi + + # GCC specific extra optimizations + for SP in ${SPD[@]}; do + case $SP in + Speedy) c_cxx_flags_add "-funroll-loops" ;; + Regparm) c_cxx_flags_add "-mregparm=3" ;; + Risky) c_cxx_flags_add "-ffast-math" ;; + Pointers) c_cxx_flags_add "-fomit-frame-pointer" ;; + Siblings) c_cxx_flags_add "-foptimize-sibling-calls" ;; + Profiling) + c_cxx_flags_add "-fprofile-arcs" + set_local_config "KEEP_SOURCE" "on" + ;; + Branching) c_cxx_flags_add "-fbranch-probabilities" ;; + Aliasing) c_cxx_flags_add "-fstrict-aliasing" ;; + Cprop) c_cxx_flags_add "-fno-cprop-registers" ;; + Float) c_cxx_flags_add "-ffloat-store" ;; + Address) c_cxx_flags_add "-fforce-addr" ;; + Align) c_cxx_flags_add "-falign-functions -falign-loops -falign-jumps" ;; + Expensive) c_cxx_flags_add "-fexpensive-optimizations" ;; + Doubles) c_cxx_flags_add "-malign-double" ;; + Tracer) c_cxx_flags_add "-ftracer" ;; + Blocks) c_cxx_flags_add "-freorder-blocks" ;; + esac + done + + # STACK - kind of dangerous - shouldn't we just remove this? + if (( STACK > 0 )) ; then + c_cxx_flags_add "-mpreferred-stack-boundary=$STACK" + cppflags_add "-mpreferred-stack-boundary=$STACK" + fi + + for XTR in ${XTRA[@]}; do + case $XTR in + MMX) c_cxx_flags_add "-mmmx" ;; + SSE) c_cxx_flags_add "-msse" ;; + SSE2) c_cxx_flags_add "-msse2" ;; + SSE3) c_cxx_flags_add "-msse3" ;; + dnow) c_cxx_flags_add "-m3dnow" ;; + Altivec) c_cxx_flags_add "-maltivec" ;; + esac + done + + case $FPM in + x387) c_cxx_flags_add "-mfpmath=387" ;; + SSE) c_cxx_flags_add "-mfpmath=sse" ;; + Both) c_cxx_flags_add "-mfpmath=sse,387" ;; + esac + + for OPT in ${CC_OPTS[@]}; do + case $OPT in + Deprecated) + cxxflags_add "-Wno-deprecated" + ;; + Debug) + c_cxx_flags_add "-g" + ;; + Pipe) + c_cxx_flags_add "-pipe" + ;; + esac + done + + CC=gcc + CXX=g++ + CPP=cpp + + export CFLAGS CXXFLAGS CPPFLAGS + export CC CXX CPP + + verbose_msg "CC=\"$CC\"" + verbose_msg "CXX=\"$CXX\"" + verbose_msg "CPP=\"$CPP\"" + verbose_msg "CFLAGS=\"$CFLAGS\"" + verbose_msg "CXXFLAGS=\"$CXXFLAGS\"" + verbose_msg "CPPFLAGS=\"$CPPFLAGS\"" + + return 2 +} + + +plugin_compiler_gcc_4_4_menu() +{ + # The main code calls this function WITHOUT $1 to find out which + # compiler optimization plugins exist. It then returns the plugin + # identifier which can be saved in $LUNAR_COMPILER as the user's + # choice for COMPILERS + if [ -z "$1" ]; then + echo "GCC_4_4" + echo "GNU C Compiler suite version 4.4.x" + return 2 + elif [ "$1" != "GCC_4_4" ]; then + # we don't display anything when the user selected a + # different menu + return 2 + fi + + # now we are done with determining if we are really the menu + # that the user wants - so we can display it + menu() + { + unset RESULT + if [ "$1" == "checklist" ]; then + RESULT=`$DIALOG --no-cancel --item-help --separate-output --checklist "$2" 0 0 0 "${OPTIONS[@]}"` + if [ $? != 0 ]; then + return 1 + fi + elif [ "$1" == "radiolist" ]; then + RESULT=`$DIALOG --no-cancel --item-help --radiolist "$2" 0 0 0 "${OPTIONS[@]}"` + if [ $? != 0 ]; then + return 1 + fi + fi + RESULT=$(echo $RESULT | sed -e 's:^"::' -e 's:"$::') + return 0 + } + + save_optimizations() + { + debug_msg "save_optimizations($@)" + cat >/etc/lunar/local/optimizations.GCC_4_4 < binutils: 2.19.1 Message-ID: <20091005115005.DB87C9B2C8@doppio.foo-projects.org> commit 33c3008da91c11eb5d82c89c46dec44d3f00b49a Author: Samuel Verstraete Date: Thu Aug 13 10:34:20 2009 +0200 binutils: 2.19.1 Conflicts: devel/binutils/BUILD devel/binutils/DETAILS --- devel/binutils/BUILD | 24 ++++++++---------------- devel/binutils/BUILD.sparc64 | 7 ++++--- devel/binutils/DETAILS | 15 ++++++--------- 3 files changed, 18 insertions(+), 28 deletions(-) diff --git a/devel/binutils/BUILD b/devel/binutils/BUILD index 3a1ccd0..3140e0e 100644 --- a/devel/binutils/BUILD +++ b/devel/binutils/BUILD @@ -1,21 +1,13 @@ ( - patch_it $SOURCE_CACHE/$SOURCE2 0 && - - #Somehow I believe this might/should be logged as a bug to the glibc guys... - sedit 's/^all: all-redirect/all: all-redirect $(MKDOC)/' \ - bfd/doc/Makefile.in && - - aclocal && - autoconf && - - OPTS+=" --host=$BUILD" && - default_config && - make tooldir=/usr && - prepare_install && - make tooldir=/usr install && - make tooldir=/usr install-info && - mkdir -p $DOCUMENT_DIRECTORY/binutils && + ./configure --host=$BUILD \ + --prefix=/usr && + + make tooldir=/usr && + prepare_install && + make tooldir=/usr install && + make tooldir=/usr install-info && + mkdir -p $DOCUMENT_DIRECTORY/binutils && cp -p binutils/NEWS binutils/ChangeLog $DOCUMENT_DIRECTORY/binutils ) > $C_FIFO 2>&1 diff --git a/devel/binutils/BUILD.sparc64 b/devel/binutils/BUILD.sparc64 index f56658d..c5cabf7 100644 --- a/devel/binutils/BUILD.sparc64 +++ b/devel/binutils/BUILD.sparc64 @@ -4,9 +4,10 @@ sedit 's/^all: all-redirect/all: all-redirect $(MKDOC)/' \ bfd/doc/Makefile.in && - ./configure --host=$BUILD \ - --target=sparc-linux \ - --prefix=/usr && + ./configure --host=$BUILD \ + --target=sparc-linux \ + --prefix=/usr && + make tooldir=/usr && prepare_install && make tooldir=/usr install && diff --git a/devel/binutils/DETAILS b/devel/binutils/DETAILS index 562b8c2..4dac1de 100644 --- a/devel/binutils/DETAILS +++ b/devel/binutils/DETAILS @@ -1,16 +1,13 @@ MODULE=binutils - VERSION=2.18 + VERSION=2.19.1 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE2=binutils-2.18-makeinfo.patch - SOURCE_URL[0]=$GNU_URL/$MODULE/ - SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ - SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:fdec92e9dfc6c32155869f3910f47041c78e2277 - SOURCE2_VFY=sha1:f42e425f7651f8d80838514e4cc34917bde8f6b3 + SOURCE_URL[0]=$GNU_URL/$MODULE + SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE + SOURCE_VFY=sha1:88c91e36cde93433e4c4c2b2e3417777aad84526 WEB_SITE=http://sources.redhat.com/binutils ENTERED=20010922 - UPDATED=20071121 - SHORT="essential collection of binary utilities." + UPDATED=20090401 + SHORT="An essential collection of binary utilities" cat << EOF binutils - Collection of binary utilities From elangelo at lunar-linux.org Mon Oct 5 13:50:07 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:07 -0000 Subject: [Lunar-commits] binutils: x86_64 Message-ID: <20091005115006.025149B230@doppio.foo-projects.org> commit 9e88cff0d1de5f17a329163483c4edae810140c6 Author: Samuel Verstraete Date: Wed Aug 12 22:00:25 2009 +0200 binutils: x86_64 --- devel/binutils/BUILD.x86_64 | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/devel/binutils/BUILD.x86_64 b/devel/binutils/BUILD.x86_64 new file mode 100644 index 0000000..23a6244 --- /dev/null +++ b/devel/binutils/BUILD.x86_64 @@ -0,0 +1,12 @@ +( + + ./configure --prefix=/usr && + + make tooldir=/usr && + prepare_install && + make tooldir=/usr install && + make tooldir=/usr install-info && + mkdir -p $DOCUMENT_DIRECTORY/binutils && + cp -p binutils/NEWS binutils/ChangeLog $DOCUMENT_DIRECTORY/binutils + +) > $C_FIFO 2>&1 From elangelo at lunar-linux.org Mon Oct 5 13:50:08 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:08 -0000 Subject: [Lunar-commits] bison: 2.4.1 Message-ID: <20091005115006.6618D9B231@doppio.foo-projects.org> commit d6ccd353eae6684912bf388955f884812733c7ea Author: Samuel Verstraete Date: Thu Aug 13 10:39:33 2009 +0200 bison: 2.4.1 --- devel/bison/DETAILS | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/devel/bison/DETAILS b/devel/bison/DETAILS index 77984c5..7b33792 100644 --- a/devel/bison/DETAILS +++ b/devel/bison/DETAILS @@ -1,13 +1,13 @@ MODULE=bison - VERSION=2.3 - SOURCE=$MODULE-$VERSION.tar.gz - SOURCE_URL[0]=$GNU_URL/$MODULE/ - SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ + VERSION=2.4.1 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL[0]=$GNU_URL/$MODULE + SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE WEB_SITE=http://www.gnu.org/software/bison/bison.html - SOURCE_VFY=sha1:4df84c2c5971946111ff1982fb830b3c78d7c57e + SOURCE_VFY=sha1:fc96b28ee4a6a914b18cb1eddb68177d94b83361 ENTERED=20010922 - UPDATED=20060608 - SHORT="replacement for the parser generator yacc" + UPDATED=20090618 + SHORT="A replacement for the parser generator yacc" cat << EOF bison - Replacement for the parser generator yacc From elangelo at lunar-linux.org Mon Oct 5 13:50:08 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:08 -0000 Subject: [Lunar-commits] readline: 6.0 Message-ID: <20091005115006.23AC59B2D0@doppio.foo-projects.org> commit 92ce8efc672297215efc380a306bd0b8a2fdc3cd Author: Samuel Verstraete Date: Thu Aug 13 10:36:49 2009 +0200 readline: 6.0 --- libs/readline/BUILD | 22 +++++++++++----------- libs/readline/DETAILS | 12 ++++++------ libs/readline/POST_INSTALL | 4 ++-- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/libs/readline/BUILD b/libs/readline/BUILD index 10dd423..953d42d 100644 --- a/libs/readline/BUILD +++ b/libs/readline/BUILD @@ -1,7 +1,7 @@ ( - OUR_OLD_READLINE_VVV=$(lvu installed readline | perl -pe 's/([0-9]).+/$1/') && - set_module_config OUR_OLD_READLINE_VVV "$OUR_OLD_READLINE_VVV" && + OUR_OLD_READLINE_VVV=$(lvu installed readline | perl -pe 's/([0-9]).+/$1/') && + set_module_config OUR_OLD_READLINE_VVV "$OUR_OLD_READLINE_VVV" && # ************************ WARNING ************************* # DO NOT MESS WITH THE CONFIGURE STUFF here unless you # really know what you're doing! We chose the lib location @@ -9,19 +9,19 @@ # needed at init time! If you move it you could break your # system! - ./configure --libdir=/lib \ - --prefix=/usr \ - --mandir=/usr/share/man \ + ./configure --libdir=/lib \ + --prefix=/usr \ + --mandir=/usr/share/man \ --infodir=/usr/share/info && default_make && if [ ! -e /etc/inputrc ] ; then install $SCRIPT_DIRECTORY/inputrc /etc/ - fi && - # temp hack to help in change over to readline-5.0 from readline-4.x - # can be removed when everyone is over to readline 5.0 - devoke_installwatch && - ln -sf /lib/libreadline.so.5 /lib/libreadline.so.4 && - ln -sf /lib/libhistory.so.5 /lib/libhistory.so.4 && + fi && + # temp hack to help in change over to readline-6.0 from readline-5.x + # can be removed when everyone is over to readline 6.0 + devoke_installwatch && + ln -sf /lib/libreadline.so.6 /lib/libreadline.so.5 && + ln -sf /lib/libhistory.so.6 /lib/libhistory.so.5 && invoke_installwatch ) > $C_FIFO 2>&1 diff --git a/libs/readline/DETAILS b/libs/readline/DETAILS index c58ca2a..54b2623 100644 --- a/libs/readline/DETAILS +++ b/libs/readline/DETAILS @@ -1,13 +1,13 @@ MODULE=readline - VERSION=5.2 + VERSION=6.0 SOURCE=$MODULE-$VERSION.tar.gz - SOURCE_URL[0]=$GNU_URL/$MODULE/ - SOURCE_URL[1]=ftp://ftp.cwru.edu/pub/bash/ - SOURCE_URL[2]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ - SOURCE_VFY=sha1:18f3412c73068509d5f491b7b4535aeaf9522834 + SOURCE_URL[0]=$GNU_URL/$MODULE + SOURCE_URL[1]=ftp://ftp.cwru.edu/pub/bash + SOURCE_URL[2]=ftp://ftp.gnu.org/pub/gnu/$MODULE + SOURCE_VFY=sha1:1e511b091514ef631c539552316787c75ace5262 WEB_SITE=http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html ENTERED=20010922 - UPDATED=20061012 + UPDATED=20090617 SHORT="Lets users edit command lines as they are typed in" cat << EOF diff --git a/libs/readline/POST_INSTALL b/libs/readline/POST_INSTALL index b8e2a28..9755df3 100644 --- a/libs/readline/POST_INSTALL +++ b/libs/readline/POST_INSTALL @@ -11,6 +11,6 @@ if [[ "$OUR_NEW_READLINE_VVV" > "$OUR_OLD_READLINE_VVV" ]]; then fi -rm -f /lib/libreadline.so.4 && -rm -f /lib/libhistory.so.4 && +#rm -f /lib/libreadline.so.5 && +#rm -f /lib/libhistory.so.5 && unset_module_config OUR_OLD_READLINE_VVV From elangelo at lunar-linux.org Mon Oct 5 13:50:08 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:08 -0000 Subject: [Lunar-commits] mousepad build tweak Message-ID: <20091005115006.90FEB9B236@doppio.foo-projects.org> commit c6577de4c6fc1146427d5da45f635be32ec54f0e Author: Samuel Verstraete Date: Thu Aug 13 16:11:46 2009 +0200 mousepad build tweak --- xfce4/apps/mousepad/BUILD | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/xfce4/apps/mousepad/BUILD b/xfce4/apps/mousepad/BUILD index e8dc8a0..fec6c27 100644 --- a/xfce4/apps/mousepad/BUILD +++ b/xfce4/apps/mousepad/BUILD @@ -4,12 +4,12 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && -# default_cvs_build && + default_cvs_build - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && +# ./configure --build=$BUILD \ +# --prefix=${MODULE_PREFIX} \ +# $OPTS && - default_make +# default_make ) > $C_FIFO 2>&1 From elangelo at lunar-linux.org Mon Oct 5 13:50:09 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:09 -0000 Subject: [Lunar-commits] mousepad: MORE Message-ID: <20091005115006.B23AC9B22B@doppio.foo-projects.org> commit 36997a4a6eb6447e84ab75aa0bb51daf8c612069 Author: Samuel Verstraete Date: Thu Aug 13 16:12:04 2009 +0200 mousepad: MORE --- xfce4/apps/mousepad/DETAILS | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xfce4/apps/mousepad/DETAILS b/xfce4/apps/mousepad/DETAILS index ebe6730..9f9e881 100644 --- a/xfce4/apps/mousepad/DETAILS +++ b/xfce4/apps/mousepad/DETAILS @@ -2,8 +2,8 @@ VERSION="svn-`date +%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - #SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MOD - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/branches/nick_0_3:$MODULE + SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MOD + #SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/branches/nick_0_3:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20050218 From elangelo at lunar-linux.org Mon Oct 5 13:50:09 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:09 -0000 Subject: [Lunar-commits] boost: make it build goddmanit! Message-ID: <20091005115006.D7C7D9B22E@doppio.foo-projects.org> commit e01e14b12da930e110b99dbad0fd4920643e13ba Author: Samuel Verstraete Date: Fri Aug 14 14:02:15 2009 +0200 boost: make it build goddmanit! --- libs/boost/BUILD | 32 +++++++++++++++++++++++++++----- libs/boost/DETAILS | 10 +++++++--- 2 files changed, 34 insertions(+), 8 deletions(-) diff --git a/libs/boost/BUILD b/libs/boost/BUILD index 2e5ba8c..36562ed 100644 --- a/libs/boost/BUILD +++ b/libs/boost/BUILD @@ -1,8 +1,25 @@ ( - patch_it $SOURCE_CACHE/$SOURCE2 0 && +# patch_it $SOURCE_CACHE/$SOURCE2 0 && +patch_it $SOURCE_CACHE/$SOURCE2 1 && +patch_it $SOURCE_CACHE/$SOURCE3 1 && +patch_it $SOURCE_CACHE/$SOURCE4 1 && - OPTS="--without-mpi" +#CXXFLAGS+=" -fno-strict-aliasing" +#CPPFLAGS+=" -fno-strict-aliasing" +#cxxflags=-fno-strict-aliasing +# +unset CPP CXX CC CFLAGS CXXFLAGS CPPFLAGS LDFLAGS + + +#echo $CXXFLAGS && +# + +echo "press ENTER to continu" && + +read TTT && + + OPTS+=" --without-mpi" export EXPAT_INCLUDE=/usr/include/ export EXPAT_LIBPATH=/usr/lib/ @@ -12,7 +29,8 @@ HAVE_ICU="0" fi && - bjam -q ${MAKES:+-j$MAKES} \ + #bjam -q ${MAKES:+-j$MAKES} \ + bjam -q \ threading=multi \ runtime-link=shared \ link=shared \ @@ -21,12 +39,16 @@ --prefix=/usr \ --layout=tagged \ --toolset=gcc \ - optimization=speed \ + optimization=off \ -sHAVE_ICU=$HAVE_ICU \ $OPTS && + echo "gonna call prepare_install" && + prepare_install && + echo "prepare_install finished" && + bjam -q ${MAKES:+-j$MAKES} \ threading=multi \ runtime-link=shared \ @@ -39,7 +61,7 @@ --libdir="/usr/lib" \ --layout=tagged \ -sHAVE_ICU=$HAVE_ICU \ - optimization=speed \ + optimization=off \ $OPTS \ install diff --git a/libs/boost/DETAILS b/libs/boost/DETAILS index f7ee8ca..5bdbddb 100644 --- a/libs/boost/DETAILS +++ b/libs/boost/DETAILS @@ -2,15 +2,19 @@ VERSION=1.39.0 VER=_1_39_0 SOURCE=$MODULE$VER.tar.bz2 - SOURCE2=boost-1.38.0-function_template.hpp.patch + #SOURCE2=boost-1.38.0-function_template.hpp.patch + SOURCE2=01_all_1.39.0-tools_wave_cpp.patch + SOURCE3=02_all_1.37.0-function-templates-compile-fix.patch + SOURCE4=07_all_1.35.0-fix_mpi_installation.patch SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE$VER SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE2_URL=$PATCH_URL + #SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:6af42f74ab24ccc51589a025593bad298c8adde8 - SOURCE2_VFY=sha1:23a57903543de6b8f06ca212bb83ff2df0ad7240 + #SOURCE2_VFY=sha1:23a57903543de6b8f06ca212bb83ff2df0ad7240 WEB_SITE=http://www.boost.org ENTERED=20041115 UPDATED=20090813 + PSAFE=no SHORT="A cross-platform supplement to the C++ standard library" cat << EOF From elangelo at xfce.org Mon Oct 5 13:50:09 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:09 -0000 Subject: [Lunar-commits] linux-2.6-rc: versino bump Message-ID: <20091005115007.4E9F49B232@doppio.foo-projects.org> commit 25bda158d563891ebf122078b62391d9f0498473 Author: Samuel Verstraete Date: Mon Sep 7 09:11:01 2009 +0200 linux-2.6-rc: versino bump --- kernel/linux-2.6-rc/DETAILS | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/linux-2.6-rc/DETAILS b/kernel/linux-2.6-rc/DETAILS index 5b27a73..26a6a98 100644 --- a/kernel/linux-2.6-rc/DETAILS +++ b/kernel/linux-2.6-rc/DETAILS @@ -1,10 +1,10 @@ MODULE=linux-2.6-rc - VERSION=2.6.31-rc5 + VERSION=2.6.31-rc7 SOURCE=linux-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6/testing SOURCE_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6/testing - SOURCE_VFY=sha1:01cb56b333d9dbc999bbafeb333911e3ee9d6910 + SOURCE_VFY=sha1:b47c4057013f216b465cef4e9d8c369dd090d0f6 WEB_SITE=http://www.kernel.org ENTERED=20041019 UPDATED=20090802 From elangelo at xfce.org Mon Oct 5 13:50:09 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:09 -0000 Subject: [Lunar-commits] libsoup: 2.27.91 Message-ID: <20091005115007.A99B69B238@doppio.foo-projects.org> commit 586406580a94f22fc2a727c492f0a19ced75f1f5 Author: Samuel Verstraete Date: Mon Sep 7 09:27:10 2009 +0200 libsoup: 2.27.91 --- gnome2/desktop/libsoup/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gnome2/desktop/libsoup/DETAILS b/gnome2/desktop/libsoup/DETAILS index 52529b1..80c8e0d 100644 --- a/gnome2/desktop/libsoup/DETAILS +++ b/gnome2/desktop/libsoup/DETAILS @@ -1,12 +1,12 @@ MODULE=libsoup - VERSION=2.27.4 + VERSION=2.27.91 MAJOR=2.27 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:2eb9dbcfb285feabf79873441f14c229ae0d0e68 + SOURCE_VFY=sha1:642bd9cecf1ea7325c3a8f18be557da203177978 WEB_SITE=http://www.gnome.org/ ENTERED=20030413 - UPDATED=20090714 + UPDATED=20090907 PSAFE=no SHORT="a SOAP implementation in C" From elangelo at xfce.org Mon Oct 5 13:50:09 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:09 -0000 Subject: [Lunar-commits] webkit: 1.1.13 Message-ID: <20091005115007.819019B233@doppio.foo-projects.org> commit 4717095eb4051b519c6c49fed182978e2a6505be Author: Samuel Verstraete Date: Mon Sep 7 09:18:51 2009 +0200 webkit: 1.1.13 --- web/webkit/DETAILS | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/webkit/DETAILS b/web/webkit/DETAILS index 01a5981..f744d22 100644 --- a/web/webkit/DETAILS +++ b/web/webkit/DETAILS @@ -1,8 +1,8 @@ MODULE=webkit - VERSION=1.1.12 + VERSION=1.1.13 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://www.webkitgtk.org/ - SOURCE_VFY=sha1:a06bb5729faae195096991d01089216df110a2c2 + SOURCE_VFY=sha1:d9cecf107ac744785f3e9ab7dfc95781fcf95bda WEB_SITE=http://www.webkit.org ENTERED=20070919 UPDATED=20090805 From elangelo at xfce.org Mon Oct 5 13:50:10 2009 From: elangelo at xfce.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:10 -0000 Subject: [Lunar-commits] hugin: 0.8.0 Message-ID: <20091005115007.D59979B2C7@doppio.foo-projects.org> commit aca5e45b8927ecebf19f4310ca3e2a926432fee5 Author: Samuel Verstraete Date: Mon Sep 7 11:56:14 2009 +0200 hugin: 0.8.0 --- graphics/hugin/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/graphics/hugin/DETAILS b/graphics/hugin/DETAILS index bc48a1d..d48c688 100644 --- a/graphics/hugin/DETAILS +++ b/graphics/hugin/DETAILS @@ -1,13 +1,13 @@ MODULE=hugin - VERSION=0.7.0_rc6 + VERSION=0.8.0 SOURCE=$MODULE-$VERSION.tar.gz -SOURCE_DIRECTORY=$BUILD_DIRECTORY/hugin-0.7.0 +#SOURCE_DIRECTORY=$BUILD_DIRECTORY/hugin-0.7.0 SOURCE_URL=$SFORGE_URL/hugin/ - SOURCE_VFY=sha1:6452ddc4e4d7a67b8e84d0a52a9c536664a62abf + SOURCE_VFY=sha1:698f0a7c4bb25efdf06313d05e3980f20d088ce5 WEB_SITE=http://hugin.sourceforge.net MAINTAINER=perldude at lunar-linux.org ENTERED=20060720 - UPDATED=20081108 + UPDATED=20090907 SHORT="an easy to use cross-platform GUI for Panorama Tools" PSAFE=no From elangelo at lunar-linux.org Mon Oct 5 13:50:10 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:10 -0000 Subject: [Lunar-commits] xfce: switch to git Message-ID: <20091005115008.1A69C9B22C@doppio.foo-projects.org> commit cb9cd8f0946cade9b144703364a0acbdf793bc6b Author: Samuel Verstraete Date: Tue Sep 8 10:19:08 2009 +0200 xfce: switch to git --- xfce4/core/Thunar/DETAILS | 4 ++-- xfce4/core/exo/DETAILS | 9 ++++----- xfce4/core/libxfce4mcs/DETAILS | 4 ++-- xfce4/core/libxfce4menu/DETAILS | 4 ++-- xfce4/core/libxfce4util/DETAILS | 4 ++-- xfce4/core/libxfcegui4/DETAILS | 4 ++-- xfce4/core/xfce-mcs-manager/DETAILS | 4 ++-- xfce4/core/xfce-mcs-plugins/DETAILS | 4 ++-- xfce4/core/xfce-utils/DETAILS | 4 ++-- xfce4/core/xfce4-dev-tools/DETAILS | 4 ++-- xfce4/core/xfce4-panel/DETAILS | 4 ++-- xfce4/core/xfce4-session/DETAILS | 4 ++-- xfce4/core/xfdesktop/DETAILS | 4 ++-- xfce4/core/xfwm4/DETAILS | 4 ++-- 14 files changed, 30 insertions(+), 31 deletions(-) diff --git a/xfce4/core/Thunar/DETAILS b/xfce4/core/Thunar/DETAILS index 45c4403..4279612 100644 --- a/xfce4/core/Thunar/DETAILS +++ b/xfce4/core/Thunar/DETAILS @@ -1,9 +1,9 @@ MODULE=Thunar MOD=thunar - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MOD.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MOD - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MOD/trunk:$MOD + SOURCE_URL=git+http://git.xfce.org/xfce/$MOD:$MOD MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://thunar.xfce.org/ ENTERED=20060407 diff --git a/xfce4/core/exo/DETAILS b/xfce4/core/exo/DETAILS index 52c53ff..cdab76a 100644 --- a/xfce4/core/exo/DETAILS +++ b/xfce4/core/exo/DETAILS @@ -1,9 +1,8 @@ MODULE=exo - MOD=libexo - VERSION="svn-`date +%U`" - SOURCE=$MOD.tar.bz2 -SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MOD - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MOD/trunk:$MOD + VERSION="git-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://libexo.os-cillation.com/ ENTERED=20040930 diff --git a/xfce4/core/libxfce4mcs/DETAILS b/xfce4/core/libxfce4mcs/DETAILS index 480af05..a9fea96 100644 --- a/xfce4/core/libxfce4mcs/DETAILS +++ b/xfce4/core/libxfce4mcs/DETAILS @@ -1,8 +1,8 @@ MODULE=libxfce4mcs - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 diff --git a/xfce4/core/libxfce4menu/DETAILS b/xfce4/core/libxfce4menu/DETAILS index 6d1fc10..ad4c888 100644 --- a/xfce4/core/libxfce4menu/DETAILS +++ b/xfce4/core/libxfce4menu/DETAILS @@ -1,8 +1,8 @@ MODULE=libxfce4menu - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org/ ENTERED=20030715 diff --git a/xfce4/core/libxfce4util/DETAILS b/xfce4/core/libxfce4util/DETAILS index 7d7e4e7..b215341 100644 --- a/xfce4/core/libxfce4util/DETAILS +++ b/xfce4/core/libxfce4util/DETAILS @@ -1,8 +1,8 @@ MODULE=libxfce4util - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org/ ENTERED=20030715 diff --git a/xfce4/core/libxfcegui4/DETAILS b/xfce4/core/libxfcegui4/DETAILS index e4bb669..541a71c 100644 --- a/xfce4/core/libxfcegui4/DETAILS +++ b/xfce4/core/libxfcegui4/DETAILS @@ -1,8 +1,8 @@ MODULE=libxfcegui4 - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=http:vn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=http:vn+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 diff --git a/xfce4/core/xfce-mcs-manager/DETAILS b/xfce4/core/xfce-mcs-manager/DETAILS index eb5127b..56ea367 100644 --- a/xfce4/core/xfce-mcs-manager/DETAILS +++ b/xfce4/core/xfce-mcs-manager/DETAILS @@ -1,8 +1,8 @@ MODULE=xfce-mcs-manager - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 diff --git a/xfce4/core/xfce-mcs-plugins/DETAILS b/xfce4/core/xfce-mcs-plugins/DETAILS index 541533d..a81d6de 100644 --- a/xfce4/core/xfce-mcs-plugins/DETAILS +++ b/xfce4/core/xfce-mcs-plugins/DETAILS @@ -1,8 +1,8 @@ MODULE=xfce-mcs-plugins - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 diff --git a/xfce4/core/xfce-utils/DETAILS b/xfce4/core/xfce-utils/DETAILS index dd26580..9c68513 100644 --- a/xfce4/core/xfce-utils/DETAILS +++ b/xfce4/core/xfce-utils/DETAILS @@ -1,8 +1,8 @@ MODULE=xfce-utils - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 diff --git a/xfce4/core/xfce4-dev-tools/DETAILS b/xfce4/core/xfce4-dev-tools/DETAILS index 83b13d5..1ebc8e5 100644 --- a/xfce4/core/xfce4-dev-tools/DETAILS +++ b/xfce4/core/xfce4-dev-tools/DETAILS @@ -1,8 +1,8 @@ MODULE=xfce4-dev-tools - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org/ ENTERED=20030715 diff --git a/xfce4/core/xfce4-panel/DETAILS b/xfce4/core/xfce4-panel/DETAILS index f8cbb41..8e79ae9 100644 --- a/xfce4/core/xfce4-panel/DETAILS +++ b/xfce4/core/xfce4-panel/DETAILS @@ -1,8 +1,8 @@ MODULE=xfce4-panel - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 diff --git a/xfce4/core/xfce4-session/DETAILS b/xfce4/core/xfce4-session/DETAILS index 97f3c39..2536ffc 100644 --- a/xfce4/core/xfce4-session/DETAILS +++ b/xfce4/core/xfce4-session/DETAILS @@ -1,8 +1,8 @@ MODULE=xfce4-session - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 diff --git a/xfce4/core/xfdesktop/DETAILS b/xfce4/core/xfdesktop/DETAILS index 54a5208..51d6dd9 100644 --- a/xfce4/core/xfdesktop/DETAILS +++ b/xfce4/core/xfdesktop/DETAILS @@ -1,8 +1,8 @@ MODULE=xfdesktop - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 diff --git a/xfce4/core/xfwm4/DETAILS b/xfce4/core/xfwm4/DETAILS index 4f7aa71..e978060 100644 --- a/xfce4/core/xfwm4/DETAILS +++ b/xfce4/core/xfwm4/DETAILS @@ -1,8 +1,8 @@ MODULE=xfwm4 - VERSION="svn-`date +%U`" + VERSION="git-`date +%Y%U`" SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE:$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 From elangelo at lunar-linux.org Mon Oct 5 13:50:10 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:10 -0000 Subject: [Lunar-commits] libxfce4menu: default_cvs_buil Message-ID: <20091005115008.5A0949B22D@doppio.foo-projects.org> commit 8c55b7d3f820b9eead365e3a2ed4d652bc5dded1 Author: Samuel Verstraete Date: Tue Sep 8 10:37:22 2009 +0200 libxfce4menu: default_cvs_buil --- xfce4/core/libxfce4menu/BUILD | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/xfce4/core/libxfce4menu/BUILD b/xfce4/core/libxfce4menu/BUILD new file mode 100644 index 0000000..c59a75a --- /dev/null +++ b/xfce4/core/libxfce4menu/BUILD @@ -0,0 +1,9 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + default_cvs_build + +) > $C_FIFO 2>&1 From elangelo at lunar-linux.org Mon Oct 5 13:50:10 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:10 -0000 Subject: [Lunar-commits] libxfce4ui: new widget library for xfce Message-ID: <20091005115008.4208F9B230@doppio.foo-projects.org> commit 588a5d1ca540ab1837f5ddf295bd3ff07e7ce927 Author: Samuel Verstraete Date: Tue Sep 8 10:19:57 2009 +0200 libxfce4ui: new widget library for xfce --- xfce4/core/libxfce4ui/BUILD | 14 ++++++++++++++ xfce4/core/libxfce4ui/DEPENDS | 7 +++++++ xfce4/core/libxfce4ui/DETAILS | 14 ++++++++++++++ 3 files changed, 35 insertions(+), 0 deletions(-) diff --git a/xfce4/core/libxfce4ui/BUILD b/xfce4/core/libxfce4ui/BUILD new file mode 100644 index 0000000..5ca1695 --- /dev/null +++ b/xfce4/core/libxfce4ui/BUILD @@ -0,0 +1,14 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./autogen.sh --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + --enable-xinerama \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/libxfce4ui/DEPENDS b/xfce4/core/libxfce4ui/DEPENDS new file mode 100644 index 0000000..8d7aad5 --- /dev/null +++ b/xfce4/core/libxfce4ui/DEPENDS @@ -0,0 +1,7 @@ +depends gtk+-2 +depends libxml2 +depends libxfce4util + +# not real depends, but we really want them +depends gtk-xfce-engine +depends xfce4-icon-theme diff --git a/xfce4/core/libxfce4ui/DETAILS b/xfce4/core/libxfce4ui/DETAILS new file mode 100644 index 0000000..8bb3544 --- /dev/null +++ b/xfce4/core/libxfce4ui/DETAILS @@ -0,0 +1,14 @@ + MODULE=libxfce4ui + VERSION="git-`date +%Y%U`" + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=http:vn+http://git.xfce.org/xfce/$MODULE:$MODULE + MODULE_PREFIX=${XFCE4_PREFIX:-/usr} + WEB_SITE=http://www.xfce.org + ENTERED=20090908 + UPDATED=20090908 + SHORT="Widget library for Xfce4" +cat << EOF +libxfcegui4 -- Library that provides extra widgets and graphical user +interface functions to the Xfce4 desktop environment. +EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:11 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:11 -0000 Subject: [Lunar-commits] libsoup: dependency tweak Message-ID: <20091005115008.EA97B9B234@doppio.foo-projects.org> commit 98dd39fd6c0d9460790e590df4051da9602622a7 Author: Samuel Verstraete Date: Tue Sep 8 13:50:36 2009 +0200 libsoup: dependency tweak --- gnome2/desktop/libsoup/DEPENDS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gnome2/desktop/libsoup/DEPENDS b/gnome2/desktop/libsoup/DEPENDS index 40dfa40..0bd2c24 100644 --- a/gnome2/desktop/libsoup/DEPENDS +++ b/gnome2/desktop/libsoup/DEPENDS @@ -3,4 +3,4 @@ depends gnutls depends sqlite depends libproxy -optional_depends GConf "" "--without-gnome" "gnome support" +optional_depends gnome-keyring "" "--without-gnome" "gnome support" From elangelo at lunar-linux.org Mon Oct 5 13:50:11 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:11 -0000 Subject: [Lunar-commits] glib-2: 2.21.3 Message-ID: <20091005115008.9E4CC9B231@doppio.foo-projects.org> commit fcb037183a6d40905e83b6dcdfdf28913dc5708d Author: Samuel Verstraete Date: Tue Sep 8 13:45:22 2009 +0200 glib-2: 2.21.3 --- libs/glib-2/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/glib-2/DETAILS b/libs/glib-2/DETAILS index e92c533..06ad01a 100644 --- a/libs/glib-2/DETAILS +++ b/libs/glib-2/DETAILS @@ -1,14 +1,14 @@ MODULE=glib-2 - MAJOR=2.20 - VERSION=20.4 + MAJOR=2.21 + VERSION=21.3 SOURCE=$MODULE.$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE.$VERSION SOURCE_URL[0]=$GNOME_URL/sources/glib/$MAJOR/ SOURCE_URL[1]=ftp://ftp.gtk.org/pub/glib/$MAJOR/ - SOURCE_VFY=sha1:a0cee2b75bb485de926fa43b33887adc8f9c19bb + SOURCE_VFY=sha1:ffcd13ac97787106ce943396d250cfa593d47345 WEB_SITE=http://www.gtk.org/ ENTERED=20020313 - UPDATED=20090719 + UPDATED=20090908 SHORT="A library of useful C routines for trees, hashes, and lists" cat << EOF From elangelo at lunar-linux.org Mon Oct 5 13:50:11 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:11 -0000 Subject: [Lunar-commits] xfce4 git migration stuff Message-ID: <20091005115009.3401D9B22B@doppio.foo-projects.org> commit 752af38ea449cbfb7d4cd50ff2548842ae1d84e7 Author: Samuel Verstraete Date: Tue Sep 8 16:00:41 2009 +0200 xfce4 git migration stuff --- xfce4/apps/Terminal/DEPENDS | 5 ----- xfce4/apps/Terminal/DETAILS | 19 ------------------- xfce4/apps/terminal/BUILD | 9 +++++++++ xfce4/apps/terminal/DEPENDS | 5 +++++ xfce4/apps/terminal/DETAILS | 19 +++++++++++++++++++ xfce4/apps/xfburn/BUILD | 9 +++++++++ xfce4/apps/xfburn/DETAILS | 12 ++++++------ xfce4/core/libxfce4util/BUILD | 7 +++---- xfce4/core/xfce4-settings/DETAILS | 4 ++-- 9 files changed, 53 insertions(+), 36 deletions(-) diff --git a/xfce4/apps/Terminal/DEPENDS b/xfce4/apps/Terminal/DEPENDS deleted file mode 100644 index 72b544e..0000000 --- a/xfce4/apps/Terminal/DEPENDS +++ /dev/null @@ -1,5 +0,0 @@ -depends XML-Parser -depends exo -depends vte - -optional_depends "dbus-glib" "--enable-dbus" "--disable-dbus" "For DBUS support" diff --git a/xfce4/apps/Terminal/DETAILS b/xfce4/apps/Terminal/DETAILS deleted file mode 100644 index 0f1eaaf..0000000 --- a/xfce4/apps/Terminal/DETAILS +++ /dev/null @@ -1,19 +0,0 @@ - MODULE=Terminal - VERSION=0.4.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/terminal - SOURCE_VFY=sha1:8b52e1841e922a1be28228873bde84eea4c6b456 - MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://www.os-cillation.com - ENTERED=20040930 - UPDATED=20090726 - SHORT="vte based/gtk+-2 lightweight X-terminal" - -cat << EOF -Terminal is a modern terminal emulator for the Unix/Linux desktop - -primarily for the Xfce desktop environment. We developed it because -we saw the need for a lightweight and easy-to-use terminal emulator -in the Xfce desktop environment, that doesn't require the user to -install the GNOME platform, but still provides a worthy alternative -to the GNOME terminal emulator. -EOF diff --git a/xfce4/apps/terminal/BUILD b/xfce4/apps/terminal/BUILD new file mode 100644 index 0000000..c59a75a --- /dev/null +++ b/xfce4/apps/terminal/BUILD @@ -0,0 +1,9 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + default_cvs_build + +) > $C_FIFO 2>&1 diff --git a/xfce4/apps/terminal/DEPENDS b/xfce4/apps/terminal/DEPENDS new file mode 100644 index 0000000..72b544e --- /dev/null +++ b/xfce4/apps/terminal/DEPENDS @@ -0,0 +1,5 @@ +depends XML-Parser +depends exo +depends vte + +optional_depends "dbus-glib" "--enable-dbus" "--disable-dbus" "For DBUS support" diff --git a/xfce4/apps/terminal/DETAILS b/xfce4/apps/terminal/DETAILS new file mode 100644 index 0000000..70228be --- /dev/null +++ b/xfce4/apps/terminal/DETAILS @@ -0,0 +1,19 @@ + MODULE=terminal + VERSION=git-`date +%Y%U` + SOURCE=$MODULE.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=git+http://git.xfce.org/apps/$MODULE + MODULE_PREFIX=${XFCE4_PREFIX:-/usr} + WEB_SITE=http://www.os-cillation.com + ENTERED=20090908 + UPDATED=20090908 + SHORT="vte based/gtk+-2 lightweight X-terminal" + +cat << EOF +Terminal is a modern terminal emulator for the Unix/Linux desktop - +primarily for the Xfce desktop environment. We developed it because +we saw the need for a lightweight and easy-to-use terminal emulator +in the Xfce desktop environment, that doesn't require the user to +install the GNOME platform, but still provides a worthy alternative +to the GNOME terminal emulator. +EOF diff --git a/xfce4/apps/xfburn/BUILD b/xfce4/apps/xfburn/BUILD new file mode 100644 index 0000000..c59a75a --- /dev/null +++ b/xfce4/apps/xfburn/BUILD @@ -0,0 +1,9 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + default_cvs_build + +) > $C_FIFO 2>&1 diff --git a/xfce4/apps/xfburn/DETAILS b/xfce4/apps/xfburn/DETAILS index f6c1786..921345c 100644 --- a/xfce4/apps/xfburn/DETAILS +++ b/xfce4/apps/xfburn/DETAILS @@ -1,12 +1,12 @@ MODULE=xfburn - VERSION=0.4.1 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE - SOURCE_VFY=sha1:7086fcdb2fa2c1b634cf64a9eef704656e774c26 + VERSION=git-`date +%Y%U` + SOURCE=$MODULE.tar.bz2 + SOURCE_URL=git+http://git.xfce.org/apps/$MODULE +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://goodies.xfce.org/projects/applications/xfburn - ENTERED=20090227 - UPDATED=20090227 + ENTERED=20090908 + UPDATED=20090908 SHORT="Cd burning application for Xfce" cat << EOF Cd burning application for Xfce diff --git a/xfce4/core/libxfce4util/BUILD b/xfce4/core/libxfce4util/BUILD index dedae22..c59a75a 100644 --- a/xfce4/core/libxfce4util/BUILD +++ b/xfce4/core/libxfce4util/BUILD @@ -1,10 +1,9 @@ ( [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - default_make + default_cvs_build ) > $C_FIFO 2>&1 diff --git a/xfce4/core/xfce4-settings/DETAILS b/xfce4/core/xfce4-settings/DETAILS index 4c1c61c..6d04f00 100644 --- a/xfce4/core/xfce4-settings/DETAILS +++ b/xfce4/core/xfce4-settings/DETAILS @@ -1,8 +1,8 @@ MODULE=xfce4-settings - VERSION="svn-`date +%Y%U`" + VERSION=git-`date +%Y%U` SOURCE=$MODULE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=svn+http://svn.xfce.org/svn/xfce/$MODULE/trunk:$MODULE + SOURCE_URL=git+http://git.xfce.org/xfce/$MODULE MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20080705 From elangelo at lunar-linux.org Mon Oct 5 13:50:11 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Mon, 05 Oct 2009 11:50:11 -0000 Subject: [Lunar-commits] lots of chagnes Message-ID: <20091005115009.5AD029B22F@doppio.foo-projects.org> commit a62b47df42f41fa8d797999a83ce7829aa9e59f8 Author: Samuel Verstraete Date: Wed Sep 16 20:00:52 2009 +0200 lots of chagnes --- audio/gejengel/DEPENDS | 2 ++ graphics/babl/DETAILS | 12 ++++++------ graphics/gegl/DETAILS | 12 ++++++------ web/webkit/DETAILS | 6 +++--- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/audio/gejengel/DEPENDS b/audio/gejengel/DEPENDS index 988063c..5d10b96 100644 --- a/audio/gejengel/DEPENDS +++ b/audio/gejengel/DEPENDS @@ -1,2 +1,4 @@ depends libsexymm depends ImageMagick + +optional_depends lastfmlib "" "" "scrobble your tracks on Last.fm" diff --git a/graphics/babl/DETAILS b/graphics/babl/DETAILS index 58ccace..52b0452 100644 --- a/graphics/babl/DETAILS +++ b/graphics/babl/DETAILS @@ -1,12 +1,12 @@ MODULE=babl - VERSION=0.0.22 + VERSION=0.1.0 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL[0]=ftp://ftp.gtk.org/pub/babl/0.0/ - SOURCE_URL[1]=ftp://ftp.gimp.org/pub/babl/0.0/ - SOURCE_VFY=sha1:9de50fb5833f41691f50f6e735d6422aad52ea94 - WEB_SITE=http://gegl.org/babl/ + SOURCE_URL[0]=ftp://ftp.gtk.org/pub/babl/0.1/ + SOURCE_URL[1]=ftp://ftp.gimp.org/pub/babl/0.1/ + SOURCE_VFY=sha1:6e95e24c48b8018fefbf8e69ad62f4a4de56640c + WEB_SITE=http://www.gegl.org/babl/ ENTERED=20081017 - UPDATED=20081017 + UPDATED=20090908 SHORT="dynamic, any to any, pixel format translation library" cat << EOF It allows converting between different methods of storing pixels diff --git a/graphics/gegl/DETAILS b/graphics/gegl/DETAILS index 4519c1d..1213b0c 100644 --- a/graphics/gegl/DETAILS +++ b/graphics/gegl/DETAILS @@ -1,12 +1,12 @@ MODULE=gegl - VERSION=0.0.22 + VERSION=0.1.0 SOURCE=${MODULE}-${VERSION}.tar.bz2 - SOURCE_URL[0]=ftp://ftp.gtk.org/pub/gegl/0.0/ - SOURCE_URL[1]=ftp://ftp.gimp.org/pub/gegl/0.0/ - SOURCE_VFY=sha1:de684d4c8d9eaa9b7e283c55c5f779e5bdabee78 - WEB_SITE="http://gegl.org/" + SOURCE_URL[0]=ftp://ftp.gtk.org/pub/gegl/0.1/ + SOURCE_URL[1]=ftp://ftp.gimp.org/pub/gegl/0.1/ + SOURCE_VFY=sha1:ede1789ce318b9afe4ec7dcb42c1065b4f278b64 + WEB_SITE=http://www.gegl.org/ ENTERED=20081016 - UPDATED=20090419 + UPDATED=20090908 SHORT="Generic Graphics Library" cat < loads of changes Message-ID: <20091005115011.576EA9B230@doppio.foo-projects.org> commit f8c8aa282f0f2761f878da7a56f78293d3014207 Author: Samuel Verstraete Date: Thu Oct 1 13:07:53 2009 +0200 loads of changes --- gnome2/desktop/gvfs/DETAILS | 2 +- gnome2/desktop/libsoup/DETAILS | 8 ++++---- gnome2/platform/GConf/DETAILS | 8 ++++---- libs/glib-2/DETAILS | 6 +++--- web/webkit/DETAILS | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/gnome2/desktop/gvfs/DETAILS b/gnome2/desktop/gvfs/DETAILS index 8b817b7..24e5eb9 100644 --- a/gnome2/desktop/gvfs/DETAILS +++ b/gnome2/desktop/gvfs/DETAILS @@ -3,7 +3,7 @@ VERSION=1.4.0 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:cb66e72bf92a22cde07da9875d10d9c9eb81a23c + #SOURCE_VFY=sha1:cb66e72bf92a22cde07da9875d10d9c9eb81a23c WEB_SITE=http://www.gnome.org/ ENTERED=20080312 UPDATED=20090526 diff --git a/gnome2/desktop/libsoup/DETAILS b/gnome2/desktop/libsoup/DETAILS index 80c8e0d..84e1093 100644 --- a/gnome2/desktop/libsoup/DETAILS +++ b/gnome2/desktop/libsoup/DETAILS @@ -1,12 +1,12 @@ MODULE=libsoup - VERSION=2.27.91 - MAJOR=2.27 + VERSION=2.28.0 + MAJOR=2.28 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:642bd9cecf1ea7325c3a8f18be557da203177978 + SOURCE_VFY=sha1:e1b31a0f5195488d362d810c1cb293b289d60064 WEB_SITE=http://www.gnome.org/ ENTERED=20030413 - UPDATED=20090907 + UPDATED=20090930 PSAFE=no SHORT="a SOAP implementation in C" diff --git a/gnome2/platform/GConf/DETAILS b/gnome2/platform/GConf/DETAILS index 713d6e8..c3d39b0 100644 --- a/gnome2/platform/GConf/DETAILS +++ b/gnome2/platform/GConf/DETAILS @@ -1,12 +1,12 @@ MODULE=GConf - VERSION=2.26.2 - MAJOR=2.26 + VERSION=2.28.0 + MAJOR=2.28 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:bf5323d974fa22165de2144100234647fd50ef17 + SOURCE_VFY=sha1:8371d88cc84fd727dfd0f8d413fa20a8bfe814fd WEB_SITE=http://www.gnome.org ENTERED=20080416 - UPDATED=20090516 + UPDATED=20090930 SHORT="A system for storing configuration information" cat << EOF diff --git a/libs/glib-2/DETAILS b/libs/glib-2/DETAILS index 6406fc6..cd65172 100644 --- a/libs/glib-2/DETAILS +++ b/libs/glib-2/DETAILS @@ -1,14 +1,14 @@ MODULE=glib-2 MAJOR=2.22 - VERSION=22.0 + VERSION=22.1 SOURCE=$MODULE.$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE.$VERSION SOURCE_URL[0]=$GNOME_URL/sources/glib/$MAJOR/ SOURCE_URL[1]=ftp://ftp.gtk.org/pub/glib/$MAJOR/ - SOURCE_VFY=sha1:dae057cb116c87ada58fbaae9897c71e9da20d06 + SOURCE_VFY=sha1:2cd487f3ebbfab33a816f382c1d0e9dedd1c02df WEB_SITE=http://www.gtk.org/ ENTERED=20020313 - UPDATED=2009092 + UPDATED=20090930 SHORT="A library of useful C routines for trees, hashes, and lists" cat << EOF diff --git a/web/webkit/DETAILS b/web/webkit/DETAILS index 40075cf..30deeb4 100644 --- a/web/webkit/DETAILS +++ b/web/webkit/DETAILS @@ -1,11 +1,11 @@ MODULE=webkit - VERSION=1.1.14 + VERSION=1.1.15.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://www.webkitgtk.org/ - SOURCE_VFY=sha1:5cbbc11a157a32ace3fefdc11e293b90daa44562 + SOURCE_VFY=sha1:40f77b34c7075c4f3835b3348c354bfcd9dbcecf WEB_SITE=http://www.webkit.org ENTERED=20070919 - UPDATED=20090909 + UPDATED=20090930 SHORT="a gtk+ web rendering engine" cat< xorg-server 1.6.4 Message-ID: <20091005115011.898799B2CE@doppio.foo-projects.org> commit f22105ba1465ca1e075b164b269d10e34a5baef9 Author: Samuel Verstraete Date: Thu Oct 1 13:14:05 2009 +0200 xorg-server 1.6.4 --- xorg7/xorg-server/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xorg7/xorg-server/DETAILS b/xorg7/xorg-server/DETAILS index 5ca447c..570d830 100644 --- a/xorg7/xorg-server/DETAILS +++ b/xorg7/xorg-server/DETAILS @@ -1,12 +1,12 @@ MODULE=xorg-server - VERSION=1.6.3 + VERSION=1.6.4 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$XORG_URL/individual/xserver - SOURCE_VFY=sha1:1f28e8723e110e5c1a1adf3bc89325a81a526184 + SOURCE_VFY=sha1:9d37f9c14984568afddf0aa84f8409f895277255 MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://www.x.org ENTERED=20060120 - UPDATED=20090802 + UPDATED=20091001 MAINTAINER=elangelo at lunar-linux.org SHORT="The X.Org X11R7 server for the X Window System" From elangelo at lunar-linux.org Sun Oct 4 22:35:24 2009 From: elangelo at lunar-linux.org (Samuel Verstraete) Date: Sun, 4 Oct 2009 22:35:24 +0200 Subject: [Lunar-commits] something i forgot to fix Message-ID: <20091005115011.AFF179B231@doppio.foo-projects.org> commit 9a4ca2aa7c48e9bac5c9b337ba95b178c4c04452 Author: Samuel Verstraete Date: Sun Oct 4 22:35:24 2009 +0200 something i forgot to fix --- libs/glibc/DETAILS | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/libs/glibc/DETAILS b/libs/glibc/DETAILS index d597b4c..40ea85e 100644 --- a/libs/glibc/DETAILS +++ b/libs/glibc/DETAILS @@ -17,10 +17,7 @@ ENTERED=20010922 UPDATED=20090923 SHORT="C library for use with GNU/Hurd and GNU/Linux" -<<<<<<< HEAD -======= PSAFE=no ->>>>>>> master cat << EOF glibc - Library for use with GNU/Hurd and GNU/Linux. From samuel.verstraete at gmail.com Mon Oct 5 13:43:07 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 5 Oct 2009 13:43:07 +0200 Subject: [Lunar-commits] xorg-server: reverting to 1.6.3... 1.6.4 is POS Message-ID: <20091005115011.D0E439B232@doppio.foo-projects.org> commit 8ce7ce5b6aa599b4f714376bf7bffc0427db9210 Author: Samuel Date: Mon Oct 5 13:43:07 2009 +0200 xorg-server: reverting to 1.6.3... 1.6.4 is POS --- xorg7/xorg-server/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xorg7/xorg-server/DETAILS b/xorg7/xorg-server/DETAILS index 1eb485c..5a612b9 100644 --- a/xorg7/xorg-server/DETAILS +++ b/xorg7/xorg-server/DETAILS @@ -1,12 +1,12 @@ MODULE=xorg-server - VERSION=1.6.4 + VERSION=1.6.3 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$XORG_URL/individual/xserver - SOURCE_VFY=sha1:9d37f9c14984568afddf0aa84f8409f895277255 + SOURCE_VFY=sha1:1f28e8723e110e5c1a1adf3bc89325a81a526184 MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://www.x.org ENTERED=20060120 - UPDATED=20091002 + UPDATED=20091005 MAINTAINER=elangelo at lunar-linux.org SHORT="The X.Org X11R7 server for the X Window System" From samuel.verstraete at gmail.com Mon Oct 5 14:14:00 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Mon, 5 Oct 2009 14:14:00 +0200 Subject: [Lunar-commits] xorg-server: 1.6.3 (cause 1.6.4 is borked) Message-ID: <20091005121431.B36049B22B@doppio.foo-projects.org> commit ae804c637583ccd856ff9d2668c9222228d3e0d9 Author: Samuel Date: Mon Oct 5 14:14:00 2009 +0200 xorg-server: 1.6.3 (cause 1.6.4 is borked) --- xorg7/xorg-server/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xorg7/xorg-server/DETAILS b/xorg7/xorg-server/DETAILS index 1eb485c..5a612b9 100644 --- a/xorg7/xorg-server/DETAILS +++ b/xorg7/xorg-server/DETAILS @@ -1,12 +1,12 @@ MODULE=xorg-server - VERSION=1.6.4 + VERSION=1.6.3 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$XORG_URL/individual/xserver - SOURCE_VFY=sha1:9d37f9c14984568afddf0aa84f8409f895277255 + SOURCE_VFY=sha1:1f28e8723e110e5c1a1adf3bc89325a81a526184 MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://www.x.org ENTERED=20060120 - UPDATED=20091002 + UPDATED=20091005 MAINTAINER=elangelo at lunar-linux.org SHORT="The X.Org X11R7 server for the X Window System" From zbiggy at lunar-linux.org Mon Oct 5 15:03:07 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Mon, 5 Oct 2009 15:03:07 +0200 Subject: [Lunar-commits] ConsoleKit: updated to 0.4.1 Message-ID: <20091005130334.43BE1F3359@doppio.foo-projects.org> commit e28577c5842b101fd340e97eeb85f577951bf061 Author: Zbigniew Luszpinski Date: Mon Oct 5 15:03:07 2009 +0200 ConsoleKit: updated to 0.4.1 --- security/ConsoleKit/DETAILS | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/security/ConsoleKit/DETAILS b/security/ConsoleKit/DETAILS index 37a8eba..dcc13bc 100644 --- a/security/ConsoleKit/DETAILS +++ b/security/ConsoleKit/DETAILS @@ -1,11 +1,11 @@ MODULE=ConsoleKit - VERSION=0.3.0 + VERSION=0.4.1 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://people.freedesktop.org/~mccann/dist - SOURCE_VFY=sha1:e3b6156622cc14ebca7382a55b8ed15f2f2bad98 - WEB_SITE=http://www.freedesktop.org/wiki/Software/hal + SOURCE_URL=http://www.freedesktop.org/software/ConsoleKit/dist + SOURCE_VFY=sha1:ab2b8643c1e696df4dc79d9ee0323bdc95aaa6a1 + WEB_SITE=http://www.freedesktop.org/wiki/Software/ConsoleKit ENTERED=20071119 - UPDATED=20090118 + UPDATED=20091005 PSAFE=no SHORT="A framework for defining and tracking users" From zbiggy at lunar-linux.org Mon Oct 5 15:05:35 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Mon, 5 Oct 2009 15:05:35 +0200 Subject: [Lunar-commits] small tweak for future udev Message-ID: <20091005130544.A34B6F3359@doppio.foo-projects.org> commit ccdbebf75bcc90f64c830ddc5f947a4284bff332 Author: Zbigniew Luszpinski Date: Mon Oct 5 15:05:35 2009 +0200 small tweak for future udev --- filesys/udev/udev | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/filesys/udev/udev b/filesys/udev/udev index 770f953..38b8d9a 100644 --- a/filesys/udev/udev +++ b/filesys/udev/udev @@ -13,7 +13,7 @@ case "$1" in /sbin/udevadm trigger /sbin/udevadm settle # Wake up again lazy devices - #/sbin/udevadm trigger --retry-failed + #/sbin/udevadm trigger --type=failed #/sbin/udevadm settle || exit 1; ;; From zbiggy at lunar-linux.org Mon Oct 5 16:07:05 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Mon, 5 Oct 2009 16:07:05 +0200 Subject: [Lunar-commits] DeviceKit-power: updated to 010 Message-ID: <20091005140714.C5495F3F74@doppio.foo-projects.org> commit 7b3a0460fc64a4e33e377eadd0266d5426766d2d Author: Zbigniew Luszpinski Date: Mon Oct 5 16:07:05 2009 +0200 DeviceKit-power: updated to 010 --- devel/DeviceKit-power/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devel/DeviceKit-power/DETAILS b/devel/DeviceKit-power/DETAILS index 1a27817..694ab9d 100644 --- a/devel/DeviceKit-power/DETAILS +++ b/devel/DeviceKit-power/DETAILS @@ -1,10 +1,10 @@ MODULE=DeviceKit-power - VERSION=008 + VERSION=010 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://hal.freedesktop.org/releases/ - SOURCE_VFY=sha1:57f3ccb57b54b0eae05ae6070153c85925ba06f0 + SOURCE_VFY=sha1:57066ab1917f48f9cf18e8edf9c81da459c53f14 ENTERED=20090327 - UPDATED=20090615 + UPDATED=20090728 SHORT="enumerates power devices and listens to device events" cat << EOF From zbiggy at lunar-linux.org Mon Oct 5 16:11:40 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Mon, 5 Oct 2009 16:11:40 +0200 Subject: [Lunar-commits] libatasmart: updated to 0.16 Message-ID: <20091005141147.18F75F3F74@doppio.foo-projects.org> commit 13a6a8db14db07aaef615c51a90d08db41a8c64e Author: Zbigniew Luszpinski Date: Mon Oct 5 16:11:40 2009 +0200 libatasmart: updated to 0.16 --- libs/libatasmart/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/libatasmart/DETAILS b/libs/libatasmart/DETAILS index 8497e96..67bf16c 100644 --- a/libs/libatasmart/DETAILS +++ b/libs/libatasmart/DETAILS @@ -1,11 +1,11 @@ MODULE=libatasmart - VERSION=0.14 + VERSION=0.16 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://0pointer.de/public - SOURCE_VFY=sha1:86ff8e704086bdad073ca1853363643f76dba76f + SOURCE_VFY=sha1:6a562b06cf04be0a51198373e1f1656571656f7a WEBSITE=http://www.ohloh.net/p/libatasmart ENTERED=20090514 - UPDATED=20090823 + UPDATED=20091005 SHORT="ATA S.M.A.R.T. Reading and Parsing Library" cat << EOF From zbiggy at lunar-linux.org Mon Oct 5 16:24:51 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Mon, 5 Oct 2009 16:24:51 +0200 Subject: [Lunar-commits] dbus-qt3: updated to 0.8.1 Message-ID: <20091005142458.B3E05F4047@doppio.foo-projects.org> commit 3a6af4d9d6ef637ac4a05f8ea34c331648c71641 Author: Zbigniew Luszpinski Date: Mon Oct 5 16:24:51 2009 +0200 dbus-qt3: updated to 0.8.1 --- devel/dbus-qt3/DEPENDS | 4 ++-- devel/dbus-qt3/DETAILS | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/devel/dbus-qt3/DEPENDS b/devel/dbus-qt3/DEPENDS index 85b11c6..68f3087 100644 --- a/devel/dbus-qt3/DEPENDS +++ b/devel/dbus-qt3/DEPENDS @@ -1,2 +1,2 @@ -depends dbus && -depends qt3 +depends dbus +depends qt3 diff --git a/devel/dbus-qt3/DETAILS b/devel/dbus-qt3/DETAILS index be4ba3e..676a80b 100644 --- a/devel/dbus-qt3/DETAILS +++ b/devel/dbus-qt3/DETAILS @@ -1,12 +1,13 @@ MODULE=dbus-qt3 - VERSION=0.8 - SOURCE=libdbus-1-qt3-$VERSION.tar.gz - SOURCE_URL=http://people.freedesktop.org/~krake/dbus-1-qt3/ + VERSION=0.8.1 + SOURCE=libdbus-1-qt3-$VERSION.tar.bz2 + SOURCE_URL[0]=http://people.freedesktop.org/~krake/dbus-1-qt3 + SOURCE_URL[1]=$PATCH_URL SOURCE_DIRECTORY=$BUILD_DIRECTORY/libdbus-1-qt3-$VERSION - SOURCE_VFY=sha1:5f25a1e63a9e93c2e9f2fb5e9976c0153815c02f + SOURCE_VFY=sha1:1b7a9b15f6c0119be110633094a15ee8897da43b WEB_SITE=http://www.freedesktop.org/wiki/Software/DBusBindings ENTERED=20070326 - UPDATED=20090825 + UPDATED=20090926 SHORT="qt3 bindings to DBUS" cat << EOF From florin at lunar-linux.org Mon Oct 5 20:00:32 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 5 Oct 2009 21:00:32 +0300 Subject: [Lunar-commits] kmymoney2: version bumped to 1.0.2. Message-ID: <20091005180123.545179B22A@doppio.foo-projects.org> commit 499ce26963b697c74bf4e4ce828e93804b27189b Author: Florin Braescu Date: Mon Oct 5 21:00:32 2009 +0300 kmymoney2: version bumped to 1.0.2. Bugfixes release. --- kde3/apps/kmymoney2/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kde3/apps/kmymoney2/DETAILS b/kde3/apps/kmymoney2/DETAILS index c8d3847..cc15611 100644 --- a/kde3/apps/kmymoney2/DETAILS +++ b/kde3/apps/kmymoney2/DETAILS @@ -1,12 +1,12 @@ MODULE=kmymoney2 - VERSION=1.0.1 + VERSION=1.0.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:3a88b76522f2f13e8182428d8cff3459e1769827 + SOURCE_VFY=sha1:21627b93ce082f090d732d56c2381c5f71df5db9 MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/3} WEB_SITE=http://kmymoney2.sourceforge.net ENTERED=20040423 - UPDATED=20090930 + UPDATED=20091005 GARBAGE=off MAINTAINER=florin at lunar-linux.org SHORT="The personal finances manager for KDE" From florin at lunar-linux.org Mon Oct 5 20:09:13 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 5 Oct 2009 21:09:13 +0300 Subject: [Lunar-commits] krename4: version bumped to 4.0.1. Message-ID: <20091005180948.7415DF3465@doppio.foo-projects.org> commit 56023d120488654aa229793228637276259039d8 Author: Florin Braescu Date: Mon Oct 5 21:09:13 2009 +0300 krename4: version bumped to 4.0.1. This release updates the German, Hungarian, and Italian translations. The history of templates is now saved. --- kde4/apps/krename4/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kde4/apps/krename4/DETAILS b/kde4/apps/krename4/DETAILS index b3f9713..d15ddc3 100644 --- a/kde4/apps/krename4/DETAILS +++ b/kde4/apps/krename4/DETAILS @@ -1,13 +1,13 @@ MODULE=krename4 - VERSION=4.0.0 + VERSION=4.0.1 SOURCE=krename-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/krename-$VERSION SOURCE_URL="$SFORGE_URL/krename/KDE4 krename-stable/$VERSION" - SOURCE_VFY=sha1:8fee1aa5e235c78a621680eee007d39f2bafa5c5 + SOURCE_VFY=sha1:b4d2ab43836a43224f69c9767c7ff14fffdea6b7 MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} WEB_SITE=$SFORGE_URL/$MODULE ENTERED=20090923 - UPDATED=20090923 + UPDATED=20091005 MAINTAINER=florin at lunar-linux.org SHORT="A batch renamer for KDE" From brebs at lunar-linux.org Mon Oct 5 22:15:21 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Tue, 6 Oct 2009 03:15:21 +0700 Subject: [Lunar-commits] nexuiz: rename from Nexuiz Message-ID: <20091005202002.C75719B22B@doppio.foo-projects.org> commit ae3c10ca980507edc131c7bc7ede4f18655c712e Author: Paul Bredbury Date: Tue Oct 6 03:15:21 2009 +0700 nexuiz: rename from Nexuiz Renamed for sanity. Version bump to 2.5.2 Removed "-glx" from executable filename. Added docs and desktop entry. Yes, website URLs end with a slash, just like Mozilla and Google do it. --- games/Nexuiz/BUILD | 24 ------------------------ games/Nexuiz/DEPENDS | 9 --------- games/Nexuiz/DETAILS | 50 -------------------------------------------------- games/nexuiz/BUILD | 36 ++++++++++++++++++++++++++++++++++++ games/nexuiz/DEPENDS | 9 +++++++++ games/nexuiz/DETAILS | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 92 insertions(+), 83 deletions(-) diff --git a/games/Nexuiz/BUILD b/games/Nexuiz/BUILD deleted file mode 100644 index 2732013..0000000 --- a/games/Nexuiz/BUILD +++ /dev/null @@ -1,24 +0,0 @@ -( - - cd sources && - unzip enginesource????????.zip && - cd darkplaces && - sedit "s:^OPTIM_RELEASE=.*$:OPTIM_RELEASE=$CFLAGS:" makefile.inc && - - # Use system jpeg, to work with jpeg 7 as well as jpeg 6b - patch_it $SOURCE2 1 && - sedit "1i DP_LINK_TO_LIBJPEG=1" makefile && - sedit "1i DP_PRELOAD_DEPENDENCIES=1" makefile && - - # Look in shared directory automatically - # From http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/nexuiz/ - sedit "s:ifdef DP_.*:DP_FS_BASEDIR=/usr/share/games/$MODULE\n&:" makefile && - - make -f makefile cl-release sv-release && - prepare_install && - mkdir -p /usr/games /usr/share/games/$MODULE && - install -m755 darkplaces-glx /usr/games/nexuiz-glx && - install -m755 darkplaces-dedicated /usr/games/nexuiz-dedicated && - cp -a $SOURCE_DIRECTORY/{data,havoc} /usr/share/games/$MODULE/ - -) > $C_FIFO 2>&1 diff --git a/games/Nexuiz/DEPENDS b/games/Nexuiz/DEPENDS deleted file mode 100644 index 80e7191..0000000 --- a/games/Nexuiz/DEPENDS +++ /dev/null @@ -1,9 +0,0 @@ -depends SDL -depends alsa-lib -depends libmodplug -depends libvorbis -depends jpeg -depends libXxf86vm -depends libXxf86dga -depends libXpm -depends curl diff --git a/games/Nexuiz/DETAILS b/games/Nexuiz/DETAILS deleted file mode 100644 index e7d5f36..0000000 --- a/games/Nexuiz/DETAILS +++ /dev/null @@ -1,50 +0,0 @@ - MODULE=Nexuiz - VERSION=2.5.1 - SOURCE=nexuiz-251.zip - SOURCE2=nexuiz-2.5.1-jpeg.patch.bz2 -SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=$SFORGE_URL/nexuiz - SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:19b098adea29ea3b66a1082a453e403480faa97d - SOURCE2_VFY=sha1:967f84635e079c7e27665ddca7eca050b6b79d77 - WEB_SITE=http://nexuiz.com - ENTERED=20050603 - UPDATED=20090828 - SHORT="Multiplayer Deathmatch" - PSAFE=no - -cat << EOF -Nexuiz has been in development for 3.5 years by a team of amateur -developers lead by Lee Vermeulen. It is a 3d deathmatch game made -entirely over the internet. The purpose of the game is to bring -deathmatch back to the basics, with perfect weapon balancing and fast -paced action, keeping itself away from the current trend of realistic -shooters. It uses HFX textures by Evil Lair, and currently has 17 -maps to frag in. With an advanced UI, the user can select between 15 -different player models to use, with an average of two skins for each, -and can connect to our master server to play people from all over -the world. - -The game's content and source are GPL. Meaning, it is entirely free and -any of it can be used in other free projects, even if modified. This -is a first for any large game project of its type. We hope this will -support the free game community, and encourage more GPL projects. - -Nexuiz is based on the Darkplaces engine. The darkplaces engine is an -advanced Quake1 engine developed mainly by Forest "LordHavoc" Hale, -who has been working with the Quake1 engine for many years. A few of -Darkplaces main features are Quake3bsp support, realtime lighting and -shadowing, new particle effects, advanced menu system, and Md3/Md2 model -support. Because Nexuiz is based on the Quake1 engine, its source code -along with its content is entirely GPL. Nexuiz will also use the Quake1 -game code language, called QuakeC, which makes modding the gameplay -of the game extremely easy. This gamecode will be included with the -release, and will allow anyone to mod it, and because it is entirely -serverside you can use it on your servers even if the clients do not -have your mod. - -Nexuiz will not require a high end system. Video cards such as a -Geforce1 will be able to run Nexuiz, while highend video cards will -be able to take advantage of some features such as realtime lighting -and bumpmapping. -EOF diff --git a/games/nexuiz/BUILD b/games/nexuiz/BUILD new file mode 100644 index 0000000..32ef2a8 --- /dev/null +++ b/games/nexuiz/BUILD @@ -0,0 +1,36 @@ +( + + mv Docs docs && + cd sources && + unzip enginesource????????.zip && + cd darkplaces && + cp ChangeLog $SOURCE_DIRECTORY && + + make \ + CPUOPTIMIZATIONS="${CFLAGS}" \ + DP_LINK_TO_LIBJPEG=1 \ + DP_PRELOAD_DEPENDENCIES=1 \ + DP_FS_BASEDIR=/usr/share/games/$MODULE \ + -f makefile cl-release sv-release && + + prepare_install && + mkdir -p /usr/games /usr/share/games/$MODULE && + install -m755 darkplaces-glx /usr/games/$MODULE && + install -m755 darkplaces-dedicated /usr/games/${MODULE}-dedicated && + cp -a $SOURCE_DIRECTORY/{data,havoc} /usr/share/games/$MODULE/ && + + # Desktop menu entry + cat > ${MODULE}.desktop << EOF && +[Desktop Entry] +Type=Application +Name=Nexuiz +Comment=$SHORT +Exec=$MODULE +Icon=$MODULE +Categories=Game;ActionGame; +EOF + + install -D -m644 ${MODULE}.desktop /usr/share/applications/${MODULE}.desktop && + install -D -m644 ${MODULE}.xpm /usr/share/pixmaps/${MODULE}.xpm + +) > $C_FIFO 2>&1 diff --git a/games/nexuiz/DEPENDS b/games/nexuiz/DEPENDS new file mode 100644 index 0000000..80e7191 --- /dev/null +++ b/games/nexuiz/DEPENDS @@ -0,0 +1,9 @@ +depends SDL +depends alsa-lib +depends libmodplug +depends libvorbis +depends jpeg +depends libXxf86vm +depends libXxf86dga +depends libXpm +depends curl diff --git a/games/nexuiz/DETAILS b/games/nexuiz/DETAILS new file mode 100644 index 0000000..256b73f --- /dev/null +++ b/games/nexuiz/DETAILS @@ -0,0 +1,47 @@ + MODULE=nexuiz + VERSION=2.5.2 + SOURCE=${MODULE}-252.zip +SOURCE_DIRECTORY=$BUILD_DIRECTORY/Nexuiz + SOURCE_URL=$SFORGE_URL/$MODULE + SOURCE_VFY=sha1:887dba855d2082206abfb31285722bd7bb45c661 + WEB_SITE=http://nexuiz.com/ + ENTERED=20050603 + UPDATED=20091003 + SHORT="Multiplayer Deathmatch" + PSAFE=no + +cat << EOF +Nexuiz has been in development for 3.5 years by a team of amateur +developers led by Lee Vermeulen. It is a 3D deathmatch game made +entirely over the internet. The purpose of the game is to bring +deathmatch back to the basics, with perfect weapon balancing and fast- +paced action, keeping itself away from the current trend of realistic +shooters. It uses HFX textures by Evil Lair, and currently has 17 +maps to frag in. With an advanced UI, the user can select between 15 +different player models to use, with an average of two skins for each, +and can connect to our master server to play people from all over +the world. + +The game's content and source are GPL. Meaning, it is entirely free and +any of it can be used in other free projects, even if modified. This +is a first for any large game project of its type. We hope this will +support the free game community, and encourage more GPL projects. + +Nexuiz is based on the Darkplaces engine. The darkplaces engine is an +advanced Quake 1 engine developed mainly by Forest "LordHavoc" Hale, +who has been working with the Quake 1 engine for many years. A few of +Darkplaces' main features are Quake3bsp support, real-time lighting and +shadowing, new particle effects, advanced menu system, and Md3/Md2 model +support. Because Nexuiz is based on the Quake 1 engine, its source code +along with its content is entirely GPL. Nexuiz will also use the Quake 1 +game code language, called QuakeC, which makes modding the gameplay +of the game extremely easy. This gamecode will be included with the +release, and will allow anyone to mod it, and because it is entirely +serverside you can use it on your servers even if the clients do not +have your mod. + +Nexuiz will not require a high-end system. Video cards such as a +Geforce 1 will be able to run Nexuiz, while high-end video cards will +be able to take advantage of some features such as real-time lighting +and bump-mapping. +EOF From brebs at lunar-linux.org Mon Oct 5 22:53:21 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Tue, 6 Oct 2009 03:53:21 +0700 Subject: [Lunar-commits] libungif: clarified DETAILS Message-ID: <20091005205348.AB42D9B22A@doppio.foo-projects.org> commit ad36e6e668a0e9db07b1a1ca41622c90b7651635 Author: Paul Bredbury Date: Tue Oct 6 03:53:21 2009 +0700 libungif: clarified DETAILS --- graphics/libungif/BUILD | 2 +- graphics/libungif/DETAILS | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/graphics/libungif/BUILD b/graphics/libungif/BUILD index 6d37dc9..010c7b6 100644 --- a/graphics/libungif/BUILD +++ b/graphics/libungif/BUILD @@ -1,6 +1,6 @@ ( - export CC="gcc" + export CC="gcc" && ./configure --build=$BUILD \ --prefix=/usr \ diff --git a/graphics/libungif/DETAILS b/graphics/libungif/DETAILS index 9ee7b0c..2ca3dc4 100644 --- a/graphics/libungif/DETAILS +++ b/graphics/libungif/DETAILS @@ -3,14 +3,17 @@ SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/giflib SOURCE_VFY=sha1:af687ffbcfe6afd1d76e33ea8cf27ffb02ed61fc - WEB_SITE=http://sourceforge.net/projects/libungif + # http://sourceforge.net/projects/libungif/ is dead + WEB_SITE=http://giflib.sourceforge.net/ ENTERED=20010922 UPDATED=20060225 - SHORT="lA ibrary for uncompressed GIF images" + SHORT="A library for uncompressed GIF images" cat << EOF libungif is a library for reading and writing gif images. The save functionality uses an uncompressed gif algorithm to avoid the Unisys LZW patent (expired in 2004). This library is based heavily on Eric Raymond's -libgif package and implements a superset of that_library's API. +libgif package and implements a superset of that library's API. + +libungif is a dead project, continued by giflib. EOF From brebs at lunar-linux.org Mon Oct 5 23:35:08 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Tue, 6 Oct 2009 04:35:08 +0700 Subject: [Lunar-commits] xmp: add DEPENDS Message-ID: <20091005213847.0CE299B22B@doppio.foo-projects.org> commit 156653e37eb3d4a795df6de0396713225043e9d5 Author: Paul Bredbury Date: Tue Oct 6 04:35:08 2009 +0700 xmp: add DEPENDS Is not PSAFE. --- audio/xmp/DEPENDS | 3 +++ audio/xmp/DETAILS | 16 +++++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/audio/xmp/DEPENDS b/audio/xmp/DEPENDS new file mode 100644 index 0000000..533964a --- /dev/null +++ b/audio/xmp/DEPENDS @@ -0,0 +1,3 @@ +optional_depends audacious "--enable-audacious-plugin" "" "for audacious plugin" +optional_depends xmms "--enable-xmms-plugin" "" "for xmms plugin" + diff --git a/audio/xmp/DETAILS b/audio/xmp/DETAILS index e701ca4..380d4d1 100644 --- a/audio/xmp/DETAILS +++ b/audio/xmp/DETAILS @@ -1,15 +1,17 @@ MODULE=xmp VERSION=2.7.1 SOURCE=$MODULE-$VERSION.tar.gz - SOURCE_URL=$SFORGE_URL/xmp + SOURCE_URL=$SFORGE_URL/$MODULE SOURCE_VFY=sha1:5dca4747a7008cc16f53910d5c2b10277a21dc84 WEB_SITE=http://xmp.sourceforge.net/ ENTERED=20040302 - UPDATED=20090813 - SHORT="Very powerful module player for over 80 mod formats." + UPDATED=20091003 + SHORT="Very powerful module player for over 80 mod formats" + PSAFE=no + cat << EOF -Xmp plays over 80 mainstream and obscure module formats from Amiga, -Atari, Acorn, Apple IIgs and PC. Xmms plugin included. -Unique feature is playback of FM instruments in S3M files and -AM synth of startrekker mods. +The Extended Module Player is a mod-player for Unix-like systems that +plays over 80 mainstream and obscure module formats from Amiga, Atari, +Acorn, Apple IIgs and PC, including Protracker (MOD), Scream Tracker 3 +(S3M), Fast Tracker II (XM) and Impulse Tracker (IT) files. EOF From brebs at lunar-linux.org Mon Oct 5 23:51:17 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Tue, 6 Oct 2009 04:51:17 +0700 Subject: [Lunar-commits] Terminal: version bump to 0.4.1 Message-ID: <20091005215420.257C09B22B@doppio.foo-projects.org> commit 246abab286802de164f2a4b4ab774bcc93ad22d6 Author: Paul Bredbury Date: Tue Oct 6 04:51:17 2009 +0700 Terminal: version bump to 0.4.1 --- xfce4/apps/Terminal/DETAILS | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/xfce4/apps/Terminal/DETAILS b/xfce4/apps/Terminal/DETAILS index 0f1eaaf..9cbbdad 100644 --- a/xfce4/apps/Terminal/DETAILS +++ b/xfce4/apps/Terminal/DETAILS @@ -1,13 +1,14 @@ MODULE=Terminal - VERSION=0.4.0 + MAJOR=0.4 + VERSION=0.4.1 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/terminal - SOURCE_VFY=sha1:8b52e1841e922a1be28228873bde84eea4c6b456 + SOURCE_URL=http://www.xfce.org/archive/src/apps/terminal/$MAJOR/ + SOURCE_VFY=sha1:abf4d7e0153b1951c40d550b4c2b31e8c4758c70 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://www.os-cillation.com + WEB_SITE=http://www.xfce.org/projects/terminal ENTERED=20040930 - UPDATED=20090726 - SHORT="vte based/gtk+-2 lightweight X-terminal" + UPDATED=20091003 + SHORT="vte-based gtk+-2 lightweight X-terminal" cat << EOF Terminal is a modern terminal emulator for the Unix/Linux desktop - From brebs at lunar-linux.org Tue Oct 6 00:10:14 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Tue, 6 Oct 2009 05:10:14 +0700 Subject: [Lunar-commits] Nexuiz-Maps: rename to nexuiz-maps Message-ID: <20091005221224.8ED139B22B@doppio.foo-projects.org> commit 8f09df4a0dca7bf7bd0234411de7387be5daa282 Author: Paul Bredbury Date: Tue Oct 6 05:10:14 2009 +0700 Nexuiz-Maps: rename to nexuiz-maps To work with the renaming of Nexuiz to nexuiz. Move from zbeta to games category. --- games/nexuiz-maps/BUILD | 6 ++++++ games/nexuiz-maps/DEPENDS | 2 ++ games/nexuiz-maps/DETAILS | 17 +++++++++++++++++ games/nexuiz-maps/PRE_BUILD | 5 +++++ zbeta/Nexuiz-Maps/BUILD | 5 ----- zbeta/Nexuiz-Maps/DEPENDS | 2 -- zbeta/Nexuiz-Maps/DETAILS | 18 ------------------ zbeta/Nexuiz-Maps/PRE_BUILD | 5 ----- 8 files changed, 30 insertions(+), 30 deletions(-) diff --git a/games/nexuiz-maps/BUILD b/games/nexuiz-maps/BUILD new file mode 100644 index 0000000..1ac27c3 --- /dev/null +++ b/games/nexuiz-maps/BUILD @@ -0,0 +1,6 @@ +( + + prepare_install && + cp -r * /usr/share/games/nexuiz/ + +) > $C_FIFO 2>&1 diff --git a/games/nexuiz-maps/DEPENDS b/games/nexuiz-maps/DEPENDS new file mode 100644 index 0000000..3cc8b64 --- /dev/null +++ b/games/nexuiz-maps/DEPENDS @@ -0,0 +1,2 @@ +depends nexuiz + diff --git a/games/nexuiz-maps/DETAILS b/games/nexuiz-maps/DETAILS new file mode 100644 index 0000000..47966ab --- /dev/null +++ b/games/nexuiz-maps/DETAILS @@ -0,0 +1,17 @@ + MODULE=nexuiz-maps + VERSION=r2 + SOURCE=nexmappack_$VERSION.zip +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_URL=$SFORGE_URL/nexuiz + SOURCE_VFY=sha1:9d6780822bd682346e74b83e72fafbad45b1ad38 + WEB_SITE=http://nexuiz.com/ + ENTERED=20050603 + UPDATED=20091003 + SHORT="a map pack for Nexuiz" + +cat << EOF +This is a community map pack compiled by Strahlemann. It includes 35 +maps, and a campaign mode for the user to fight through. The map pack +includes Quake3 communtiy maps, Nexuiz community maps, and some new +maps from Nexuiz developers. Credit is given for all of the authors. +EOF diff --git a/games/nexuiz-maps/PRE_BUILD b/games/nexuiz-maps/PRE_BUILD new file mode 100644 index 0000000..6051aa0 --- /dev/null +++ b/games/nexuiz-maps/PRE_BUILD @@ -0,0 +1,5 @@ +validate_source_dir $SOURCE_DIRECTORY && +mk_source_dir $SOURCE_DIRECTORY && +cd $SOURCE_DIRECTORY && +unpack $SOURCE + diff --git a/zbeta/Nexuiz-Maps/BUILD b/zbeta/Nexuiz-Maps/BUILD deleted file mode 100644 index 020f531..0000000 --- a/zbeta/Nexuiz-Maps/BUILD +++ /dev/null @@ -1,5 +0,0 @@ -( - prepare_install - cp -r * /usr/share/games/Nexuiz/ - -) > $C_FIFO 2>&1 diff --git a/zbeta/Nexuiz-Maps/DEPENDS b/zbeta/Nexuiz-Maps/DEPENDS deleted file mode 100644 index 2413865..0000000 --- a/zbeta/Nexuiz-Maps/DEPENDS +++ /dev/null @@ -1,2 +0,0 @@ -depends Nexuiz - diff --git a/zbeta/Nexuiz-Maps/DETAILS b/zbeta/Nexuiz-Maps/DETAILS deleted file mode 100644 index c825b60..0000000 --- a/zbeta/Nexuiz-Maps/DETAILS +++ /dev/null @@ -1,18 +0,0 @@ - MODULE=Nexuiz-Maps - VERSION=r2 - SOURCE=nexmappack_$VERSION.zip -SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE - SOURCE_URL=$SFORGE_URL/nexuiz - SOURCE_VFY=sha1:9d6780822bd682346e74b83e72fafbad45b1ad38 - WEB_SITE=http://nexuiz.com - ENTERED=20050603 - UPDATED=20070530 - SHORT="a mappack for Nexuiz" - -cat << EOF -This is a community map pack compiled by Strahlemann. It includes 35 -maps, and a campaign mode for the user to fight through. The map pack -includes Quake3 communtiy maps, Nexuiz community maps, and some new -maps from Nexuiz developers. Credit is given for all of the authors. -To install it just unzip the file into your main Nexuiz directory. -EOF diff --git a/zbeta/Nexuiz-Maps/PRE_BUILD b/zbeta/Nexuiz-Maps/PRE_BUILD deleted file mode 100644 index 6051aa0..0000000 --- a/zbeta/Nexuiz-Maps/PRE_BUILD +++ /dev/null @@ -1,5 +0,0 @@ -validate_source_dir $SOURCE_DIRECTORY && -mk_source_dir $SOURCE_DIRECTORY && -cd $SOURCE_DIRECTORY && -unpack $SOURCE - From brebs at lunar-linux.org Tue Oct 6 00:24:06 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Tue, 6 Oct 2009 05:24:06 +0700 Subject: [Lunar-commits] nexuiz: fix file perms Message-ID: <20091005222423.262BC9B22B@doppio.foo-projects.org> commit b9250cb0a90c3409158303544886098c4e5759b9 Author: Paul Bredbury Date: Tue Oct 6 05:24:06 2009 +0700 nexuiz: fix file perms --- games/nexuiz/BUILD | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/games/nexuiz/BUILD b/games/nexuiz/BUILD index 32ef2a8..b8243ce 100644 --- a/games/nexuiz/BUILD +++ b/games/nexuiz/BUILD @@ -1,5 +1,8 @@ ( + # data/common-spog.pk3 was group-writable + chmod 644 data/* havoc/* && + mv Docs docs && cd sources && unzip enginesource????????.zip && From zbiggy at lunar-linux.org Tue Oct 6 01:05:43 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Tue, 6 Oct 2009 01:05:43 +0200 Subject: [Lunar-commits] psi: updated to 0.13 Message-ID: <20091005230620.1917E9B22B@doppio.foo-projects.org> commit c16dd773f321ac359b8972a5f15415833f8bcfbd Author: Zbigniew Luszpinski Date: Tue Oct 6 01:05:43 2009 +0200 psi: updated to 0.13 --- chat/psi/BUILD | 5 ----- chat/psi/DETAILS | 9 +++------ 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/chat/psi/BUILD b/chat/psi/BUILD index 8f7e9d7..2905e84 100644 --- a/chat/psi/BUILD +++ b/chat/psi/BUILD @@ -1,9 +1,4 @@ ( - # qca2-ossl will not compile when openssl 0.9.8i or later is installed. - # This patch is official result of my bugreport to qca2-ossl author - # on 24 September 2008. See that day's ML posts for details. - # Remove this patch on next update. - patch_it $SOURCE2 0 && . /etc/profile.d/qt4.rc # Stupid which which function diff --git a/chat/psi/DETAILS b/chat/psi/DETAILS index d721ee7..6b949b4 100644 --- a/chat/psi/DETAILS +++ b/chat/psi/DETAILS @@ -1,15 +1,12 @@ MODULE=psi - VERSION=0.12.1 + VERSION=0.13 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE2=no-whirlpool.patch SOURCE_URL=$SFORGE_URL/$MODULE/ - SOURCE2_URL=$PATCH_URL/ - SOURCE_VFY=sha1:6fdcea3a072b40333faecc37acdb925f9bf8c5c3 - SOURCE2_VFY=sha1:0068f8637b8d5bd487c76d4f918a417c2ec2244c + SOURCE_VFY=sha1:36d9d058531b29a47f94418b6e8a8b75e5446adf WEB_SITE=http://psi-im.org/ MAINTAINER="ratler at lunar-linux.org" ENTERED=20040212 - UPDATED=20090502 + UPDATED=20091005 SHORT="Psi - an awesome client for the Jabber network." cat << EOF Psi is the premiere Instant Messaging application designed for Microsoft From brebs at lunar-linux.org Tue Oct 6 03:34:43 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Tue, 6 Oct 2009 08:34:43 +0700 Subject: [Lunar-commits] dhcpcd: version bump to 5.1.1 Message-ID: <20091006013646.1F7B59B22A@doppio.foo-projects.org> commit 898939a489cc669637b5a47a7d168768b014849e Author: Paul Bredbury Date: Tue Oct 6 08:34:43 2009 +0700 dhcpcd: version bump to 5.1.1 --- net/dhcpcd/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/dhcpcd/DETAILS b/net/dhcpcd/DETAILS index 581e10f..b27bc9d 100644 --- a/net/dhcpcd/DETAILS +++ b/net/dhcpcd/DETAILS @@ -1,5 +1,5 @@ MODULE=dhcpcd - VERSION=5.1.0 + VERSION=5.1.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=http://roy.marples.name/downloads/dhcpcd SOURCE_URL[1]=http://gd.tuwien.ac.at/opsys/linux/gentoo/distfiles @@ -8,10 +8,10 @@ SOURCE_URL[4]=http://mirror.datapipe.net/gentoo/distfiles SOURCE_URL[5]=http://gentoo.chem.wisc.edu/gentoo/distfiles SOURCE_URL[6]=http://mirror.internode.on.net/pub/gentoo/distfiles - SOURCE_VFY=sha1:4c5c729e1e8fb7ca5fa8a0ab336d9adcbca5c40f + SOURCE_VFY=sha1:4ffb9ce39620809f31f894eff4ce3c78f5ecf75e WEB_SITE=http://roy.marples.name/projects/dhcpcd ENTERED=20011126 - UPDATED=20090907 + UPDATED=20091004 SHORT="DHCP client/daemon that works with @home" cat << EOF From brebs at lunar-linux.org Tue Oct 6 09:13:23 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Tue, 6 Oct 2009 14:13:23 +0700 Subject: [Lunar-commits] xterm: version bump to 249 Message-ID: <20091006071512.CF6EE9B1EA@doppio.foo-projects.org> commit 4cc6e5a86bf6b4e79847623c6ee2d1c8ada75978 Author: Paul Bredbury Date: Tue Oct 6 14:13:23 2009 +0700 xterm: version bump to 249 Bugfixes - see http://invisible-island.net/xterm/xterm.log.html#xterm_249 --- xorg7/extra/xterm/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xorg7/extra/xterm/DETAILS b/xorg7/extra/xterm/DETAILS index 6ed23b0..8390f6d 100644 --- a/xorg7/extra/xterm/DETAILS +++ b/xorg7/extra/xterm/DETAILS @@ -1,12 +1,12 @@ MODULE=xterm - VERSION=247 + VERSION=249 SOURCE=$MODULE-$VERSION.tgz SOURCE_URL=ftp://invisible-island.net/xterm/ - SOURCE_VFY=sha1:71c2110c60480aa3322938950eea1ae5b3eb1bf3 + SOURCE_VFY=sha1:2c3e33ce1ed02085a3f9f692dca1d8bb4f641f89 MODULE_PREFIX=${X11R7_PREFIX:-/usr} WEB_SITE=http://invisible-island.net/xterm/ ENTERED=20060124 - UPDATED=20090831 + UPDATED=20091004 SHORT="the X terminal emulator" cat << EOF From florin at lunar-linux.org Tue Oct 6 10:59:26 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 6 Oct 2009 11:59:26 +0300 Subject: [Lunar-commits] linux-2.6: version bumped to 2.6.31.2. Message-ID: <20091006090027.41FFF9B1EA@doppio.foo-projects.org> commit b533e9521ca7b3015e19e446d74474e446a9451c Author: Florin Braescu Date: Tue Oct 6 11:59:26 2009 +0300 linux-2.6: version bumped to 2.6.31.2. The second pile of patches for 2.6.31 serie. --- kernel/linux-2.6/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/linux-2.6/DETAILS b/kernel/linux-2.6/DETAILS index fc4f5c6..f0be635 100644 --- a/kernel/linux-2.6/DETAILS +++ b/kernel/linux-2.6/DETAILS @@ -1,5 +1,5 @@ MODULE=linux-2.6 - VERSION=2.6.31.1 + VERSION=2.6.31.2 BASE=$(echo $VERSION | cut -d. -f1,2,3) SOURCE=linux-${BASE}.tar.bz2 SOURCE2=patch-${VERSION}.bz2 @@ -9,10 +9,10 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE2_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6 SOURCE2_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6 SOURCE_VFY=sha1:c6e0e6b473ba2b80d164e37cfabf294e783c03d9 - SOURCE2_VFY=sha1:87d0780c525c5a74a0c4da18a5a8adf1db3bd9ab + SOURCE2_VFY=sha1:10f07fd406d771b8f0288cef1d1a1b95998d729d WEB_SITE=http://www.kernel.org ENTERED=20041019 - UPDATED=20090925 + UPDATED=20091006 SHORT="The core of a Linux GNU Operating System" KEEP_SOURCE=on TMPFS=off From florin at lunar-linux.org Tue Oct 6 18:58:58 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 6 Oct 2009 19:58:58 +0300 Subject: [Lunar-commits] gstramer-10: version bumped to 0.10.25. Message-ID: <20091006170741.C9D289B1EA@doppio.foo-projects.org> commit f9548502ddb3ecf35d171251c4d46f25176d9cf5 Author: Florin Braescu Date: Tue Oct 6 19:58:58 2009 +0300 gstramer-10: version bumped to 0.10.25. Changes: * Improve the byte-reader API * GObject introspection support * Improve clock accuracy on win32 * Optimisations in capabilities checking * Optimisations and fixes in the basetransform base class * new 64-bit scaling utility function variants * Various bug-fixes and improvements. --- audio/gstreamer-10/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/audio/gstreamer-10/DETAILS b/audio/gstreamer-10/DETAILS index 37d9aa9..c4a6f18 100644 --- a/audio/gstreamer-10/DETAILS +++ b/audio/gstreamer-10/DETAILS @@ -1,13 +1,13 @@ MODULE=gstreamer-10 RMODULE=gstreamer - VERSION=0.10.24 + VERSION=0.10.25 SOURCE=$RMODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$RMODULE-$VERSION SOURCE_URL=http://gstreamer.freedesktop.org/src/$RMODULE - SOURCE_VFY=sha1:bb93174f1c19560e119092a16e8acc3a905b6bb4 + SOURCE_VFY=sha1:e3cda2dcac9dbbfc2e61ba79fcd3bff1313dc7f4 WEB_SITE=http://gstreamer.freedesktop.org ENTERED=20060311 - UPDATED=20090805 + UPDATED=20091006 SHORT="A multimedia (video and audio) framework (the 0.10.x version)" cat << EOF From florin at lunar-linux.org Tue Oct 6 19:00:47 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 6 Oct 2009 20:00:47 +0300 Subject: [Lunar-commits] gst-plugins-base: version bumped to 0.10.25. Message-ID: <20091006170741.D4D9CF449D@doppio.foo-projects.org> commit c3b93e58105ccd39e3047a418ebed98c77840bf6 Author: Florin Braescu Date: Tue Oct 6 20:00:47 2009 +0300 gst-plugins-base: version bumped to 0.10.25. Changes: * Add per-stream volume controls * Theora 1.0 and Y444 and Y42B format support * Improve audio capture timing * GObject introspection support * Improve audio output startup * RTSP improvements * Use pango-cairo instead of pangoft2 * Allow cdda://(device#)?track URI scheme in cddabasesrc * Support interlaced content in videoscale and ffmpegcolorspacee * Many other bug fixes and improvements --- audio/gst-plugins-base/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/audio/gst-plugins-base/DETAILS b/audio/gst-plugins-base/DETAILS index 02bfcd6..5d066c1 100644 --- a/audio/gst-plugins-base/DETAILS +++ b/audio/gst-plugins-base/DETAILS @@ -1,11 +1,11 @@ MODULE=gst-plugins-base - VERSION=0.10.24 + VERSION=0.10.25 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://gstreamer.freedesktop.org/src/$MODULE - SOURCE_VFY=sha1:01abe0839303923671e79d8448ebfabda5bce799 + SOURCE_VFY=sha1:6057e6552c936f3dbe9ba01269bc0bcf8469ae0a WEB_SITE=http://gstreamer.freedesktop.org/modules/gst-plugins-base.html ENTERED=20060311 - UPDATED=20090805 + UPDATED=20091006 SHORT="The base set of plugins for Gstreamer 0.10.x" cat << EOF From florin at lunar-linux.org Tue Oct 6 19:07:59 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 6 Oct 2009 20:07:59 +0300 Subject: [Lunar-commits] fetchmail: version bumped to 6.3.12. Message-ID: <20091006170850.4678BF449E@doppio.foo-projects.org> commit 0e63137516f535600fc652f62fcdff1a56e0c838 Author: Florin Braescu Date: Tue Oct 6 20:07:59 2009 +0300 fetchmail: version bumped to 6.3.12. Bugfixes, including security related and translations updates. --- mail/fetchmail/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mail/fetchmail/DETAILS b/mail/fetchmail/DETAILS index b963715..9d68bff 100644 --- a/mail/fetchmail/DETAILS +++ b/mail/fetchmail/DETAILS @@ -1,12 +1,12 @@ MODULE=fetchmail - VERSION=6.3.11 + VERSION=6.3.12 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=http://download.berlios.de/$MODULE SOURCE_URL[1]=http://download2.berlios.de/$MODULE - SOURCE_VFY=sha1:e769bcb81b393a55e02ec4bf7e94a52cf0c8ef8f + SOURCE_VFY=sha1:754aa752c4d9926d621597eefcbd3136496bd15f WEB_SITE=http://fetchmail.berlios.de ENTERED=20010922 - UPDATED=20090806 + UPDATED=20091006 SHORT="A powerful MTA that's easy to configure" cat << EOF From florin at lunar-linux.org Tue Oct 6 19:14:26 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 6 Oct 2009 20:14:26 +0300 Subject: [Lunar-commits] dovecot: version bumped to 1.2.6 Message-ID: <20091006171451.9EB5EF453B@doppio.foo-projects.org> commit 66db33efeda10bcfb4270da4fc61f31ac1188d3f Author: Florin Braescu Date: Tue Oct 6 20:14:26 2009 +0300 dovecot: version bumped to 1.2.6 Changes: * Upgraded to Unicode 5.2.0 + Added authtest utility for doing passdb and userdb lookups. + login: ssl_security string now also shows the used compression. - quota: Don't crash with non-Maildir++ quota backend. - imap proxy: Fixed crashing with some specific password characters. - dovecot --exec-mail was broken. - Avoid assert-crashing when two processes try to create index at the same time. --- mail/dovecot/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mail/dovecot/DETAILS b/mail/dovecot/DETAILS index dcd1f9b..d508ac1 100644 --- a/mail/dovecot/DETAILS +++ b/mail/dovecot/DETAILS @@ -1,12 +1,12 @@ MODULE=dovecot - VERSION=1.2.5 + VERSION=1.2.6 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://www.dovecot.org/releases/1.2 - SOURCE_VFY=sha1:b490a26af34d92491fd7e97204b085c407f691c9 + SOURCE_VFY=sha1:02ede3936123252d542da90488a2d189fa39979c WEB_SITE=http://www.dovecot.org ENTERED=20041204 - UPDATED=20090914 - SHORT="A small, fast and secure (SSL) Maildir capable imap daemon" + UPDATED=20091006 + SHORT="A small, fast and secure (SSL) Maildir capable imap daemon" cat << EOF Dovecot is an IMAP and POP3 server for Linux/UNIX-like systems, From florin at lunar-linux.org Tue Oct 6 19:32:38 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 6 Oct 2009 20:32:38 +0300 Subject: [Lunar-commits] syslinux: version bumped to 3.83. Message-ID: <20091006173324.1A246F454F@doppio.foo-projects.org> commit c36771e3880123f719f0e49c9a25a10e74301a1e Author: Florin Braescu Date: Tue Oct 6 20:32:38 2009 +0300 syslinux: version bumped to 3.83. This release adds some minor new features, including the ability to add overrides to DHCP options in the pxelinux binary, a new version of the Hardware Detection Tool, and some fixes to the Gfxboot module. It also includes some additional workarounds for broken BIOSes. --- utils/syslinux/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/syslinux/DETAILS b/utils/syslinux/DETAILS index 0652460..c73ee82 100644 --- a/utils/syslinux/DETAILS +++ b/utils/syslinux/DETAILS @@ -1,12 +1,12 @@ MODULE=syslinux - VERSION=3.82 + VERSION=3.83 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=$KERNEL_URL/pub/linux/utils/boot/$MODULE SOURCE_URL[1]=ftp://ftp.kernel.org/pub/linux/utils/boot/$MODULE - SOURCE_VFY=sha1:e949b13e0ef016ec39f7dafacac722936756f41b + SOURCE_VFY=sha1:0dbbdd5a36362ce0e3284d9f4047a355d527d5d0 WEB_SITE=http://syslinux.zytor.com ENTERED=20010922 - UPDATED=20090610 + UPDATED=20091006 MAINTAINER=tchan at lunar-linux.org PSAFE=no SHORT="bootloader for Linux that works on FAT and ISO9660 filesystems" From florin at lunar-linux.org Tue Oct 6 19:42:38 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 6 Oct 2009 20:42:38 +0300 Subject: [Lunar-commits] virtualbox: version bumped to 3.0.8. Message-ID: <20091006174314.7B5279B1EA@doppio.foo-projects.org> commit cce915526d05f004053508795c0958b00ed2f6a3 Author: Florin Braescu Date: Tue Oct 6 20:42:38 2009 +0300 virtualbox: version bumped to 3.0.8. A security vulnerability which allowed the execution of commands with root privileges was fixed. Many other bugfixes were made. --- x11-utils/virtualbox/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-utils/virtualbox/DETAILS b/x11-utils/virtualbox/DETAILS index 6d94c1c..5f072da 100644 --- a/x11-utils/virtualbox/DETAILS +++ b/x11-utils/virtualbox/DETAILS @@ -1,14 +1,14 @@ MODULE=virtualbox - BASE_VERSION=3.0.6 + BASE_VERSION=3.0.8 VERSION=$BASE_VERSION SOURCE=VirtualBox-${VERSION}-OSE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/VirtualBox-$BASE_VERSION\_OSE SOURCE_URL=http://download.virtualbox.org/$MODULE/$BASE_VERSION - SOURCE_VFY=sha1:403d23fcb8c0f209e6ea8ab9233f8607b923afdf + SOURCE_VFY=sha1:07c16657046f1b5a5562ad2b9041f982ad9dded7 MODULE_PREFIX=${VIRTUALBOX_PREFIX:-/usr/lib/virtualbox/} WEB_SITE=http://virtualbox.org ENTERED=20071004 - UPDATED=20090910 + UPDATED=20091006 SHORT="Full virtualizer for x86 hardware" cat << EOF From florin at lunar-linux.org Tue Oct 6 19:44:37 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 6 Oct 2009 20:44:37 +0300 Subject: [Lunar-commits] openldap: version bumped to 2.4.19. Message-ID: <20091006174507.6D50E9B1EA@doppio.foo-projects.org> commit 2f6c9b00cff4f24e80ee7cf7833af3ae3ed5b7e6 Author: Florin Braescu Date: Tue Oct 6 20:44:37 2009 +0300 openldap: version bumped to 2.4.19. Minor bugs in the command line tools were fixed. There were also several more significant fixes and enhancements. --- utils/openldap/DETAILS | 6 +++--- x11-utils/virtualbox/DEPENDS | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/utils/openldap/DETAILS b/utils/openldap/DETAILS index d38a97b..2dab34e 100644 --- a/utils/openldap/DETAILS +++ b/utils/openldap/DETAILS @@ -1,11 +1,11 @@ MODULE=openldap - VERSION=2.4.18 + VERSION=2.4.19 SOURCE=$MODULE-$VERSION.tgz SOURCE_URL=ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release - SOURCE_VFY=sha1:13adeb6438973d8b2b31e2205a92890396445556 + SOURCE_VFY=sha1:4a78acae0dd6d51d22ff50eef77912e59b31779a WEB_SITE=http://www.openldap.org ENTERED=20010922 - UPDATED=20090926 + UPDATED=20091006 SHORT="Fully featured open source LDAP software suite" PSAFE=no diff --git a/x11-utils/virtualbox/DEPENDS b/x11-utils/virtualbox/DEPENDS index d81683e..985d88d 100644 --- a/x11-utils/virtualbox/DEPENDS +++ b/x11-utils/virtualbox/DEPENDS @@ -8,4 +8,5 @@ depends libIDL depends SDL_ttf depends alsa-lib depends libcap + optional_depends pulseaudio "" "--disable-pulse" "For pulseauio backend" From florin at lunar-linux.org Tue Oct 6 19:51:42 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 6 Oct 2009 20:51:42 +0300 Subject: [Lunar-commits] perl: small tweaks. Message-ID: <20091006175153.D4A889B1EA@doppio.foo-projects.org> commit 2a91ff48263d5b28f6c78ce79a577deaff3d4dd8 Author: Florin Braescu Date: Tue Oct 6 20:51:42 2009 +0300 perl: small tweaks. --- perl/perl/BUILD | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git a/perl/perl/BUILD b/perl/perl/BUILD index 88379e2..ea4da70 100644 --- a/perl/perl/BUILD +++ b/perl/perl/BUILD @@ -9,12 +9,12 @@ if [ "$SUIDPERL" == "y" ] ; then OPTS="$OPTS -Dd_dosuid" - fi && + fi && if [ "$CUSTOM" == "y" ] ; then ./Configure -Dprefix=/usr \ -Dscriptdir=/usr/bin \ - -Duseshrplib=true \ + -Duseshrplib=true \ $OPTS \ -Dman1dir=/usr/share/man/man1 \ -Dman3dir=/usr/share/man/man3 -e @@ -22,26 +22,26 @@ ./Configure -Dprefix=/usr \ -Dscriptdir=/usr/bin \ -Duseshrplib=true \ - -Dccdlflags='-rdynamic' \ - -Doptimize="${CFLAGS}" \ + -Dccdlflags='-rdynamic' \ + -Doptimize="${CFLAGS}" \ -Duselargefiles \ - -Ud_csh \ + -Ud_csh \ -Dcf_by='Lunar' \ $OPTS \ -Dman1dir=/usr/share/man/man1 \ - -Dusethreads \ + -Dusethreads \ -Dman3dir=/usr/share/man/man3 -d -e - fi && + fi && - make && + make && - export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$SOURCE_DIRECTORY" && - ldconfig && + export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$SOURCE_DIRECTORY" && + ldconfig && - prepare_install && - make install && + prepare_install && + make install && - strip --strip-unneeded $(which perl) && + strip --strip-unneeded $(which perl) && if [ "$SUIDPERL" == "y" ] ; then strip --strip-unneeded $(which suidperl) From stumbles at lunar-linux.org Tue Oct 6 22:07:51 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Tue, 6 Oct 2009 16:07:51 -0400 Subject: [Lunar-commits] kbluetooth: Version bump. Message-ID: <20091006200826.D75A89B1EA@doppio.foo-projects.org> commit 4737c281e66af2a615b1d6eb98afbb4371624c8e Author: Dennis `stumbles` Veatch Date: Tue Oct 6 16:07:51 2009 -0400 kbluetooth: Version bump. --- kde4/utils/kbluetooth/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kde4/utils/kbluetooth/DETAILS b/kde4/utils/kbluetooth/DETAILS index 367700e..924f539 100644 --- a/kde4/utils/kbluetooth/DETAILS +++ b/kde4/utils/kbluetooth/DETAILS @@ -1,14 +1,14 @@ MODULE=kbluetooth MOD_MAJ=112110 - VERSION=0.4beta1b + VERSION=RC1 SOURCE=$MOD_MAJ-$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://www.kde-apps.org/CONTENT/content-files/ + SOURCE_URL=http://kde-apps.org/CONTENT/content-files/ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION - SOURCE_VFY=sha1:d1a8e044382e838deedbce0e248dd12f927e8296 + SOURCE_VFY=sha1:b1f3900f994bb6289f055797981cf8294258a199 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://techbase.kde.org/Kbluetooth ENTERED=20080816 - UPDATED=20090919 + UPDATED=20091006 SHORT="KDE4 bluetooth GUI" cat << EOF From stumbles at lunar-linux.org Tue Oct 6 22:19:53 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Tue, 6 Oct 2009 16:19:53 -0400 Subject: [Lunar-commits] kde4/base: Version bump. Message-ID: <20091006202016.E356B9B1EA@doppio.foo-projects.org> commit 097e84c58163e2873b22c08b0e09a81f73f76303 Author: Dennis `stumbles` Veatch Date: Tue Oct 6 16:19:53 2009 -0400 kde4/base: Version bump. --- kde4/base/kdeaccessibility4/DETAILS | 6 +++--- kde4/base/kdeadmin4/DETAILS | 6 +++--- kde4/base/kdeartwork4/DETAILS | 6 +++--- kde4/base/kdebase4-runtime/DETAILS | 6 +++--- kde4/base/kdebase4-workspace/DETAILS | 6 +++--- kde4/base/kdebase4/DETAILS | 6 +++--- kde4/base/kdebindings4/DETAILS | 6 +++--- kde4/base/kdeedu4/DETAILS | 6 +++--- kde4/base/kdegames4/DETAILS | 6 +++--- kde4/base/kdegraphics4/DETAILS | 6 +++--- kde4/base/kdelibs4-experimental/DETAILS | 6 +++--- kde4/base/kdelibs4/DETAILS | 6 +++--- kde4/base/kdemultimedia4/DETAILS | 6 +++--- kde4/base/kdenetwork4/DETAILS | 6 +++--- kde4/base/kdepim4-runtime/DETAILS | 8 ++++---- kde4/base/kdepim4/DETAILS | 6 +++--- kde4/base/kdepimlibs4/DETAILS | 6 +++--- kde4/base/kdeplasma4-addons/DETAILS | 6 +++--- kde4/base/kdesdk4/DETAILS | 6 +++--- kde4/base/kdetoys4/DETAILS | 6 +++--- kde4/base/kdeutils4/DETAILS | 6 +++--- kde4/base/kdewebdev4/DETAILS | 6 +++--- kde4/base/oxygen-icons/DETAILS | 6 +++--- 23 files changed, 70 insertions(+), 70 deletions(-) diff --git a/kde4/base/kdeaccessibility4/DETAILS b/kde4/base/kdeaccessibility4/DETAILS index c70366c..ddad4d3 100644 --- a/kde4/base/kdeaccessibility4/DETAILS +++ b/kde4/base/kdeaccessibility4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdeaccessibility4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdeaccessibility-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdeaccessibility-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:bc9c56beb161ddf6c1474d356360ec75db0733bc + SOURCE_VFY=sha1:f6aa2d3cfa74cb2808e02bd67aec8d58cd61ef30 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="" cat << EOF EOF diff --git a/kde4/base/kdeadmin4/DETAILS b/kde4/base/kdeadmin4/DETAILS index 182407a..be41421 100644 --- a/kde4/base/kdeadmin4/DETAILS +++ b/kde4/base/kdeadmin4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdeadmin4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdeadmin-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdeadmin-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:032933e521004046a46a7a3c01b5a03b2d6e75d4 + SOURCE_VFY=sha1:fc8978e921f1849b45b269d688b6baf2978555ab MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="" cat << EOF EOF diff --git a/kde4/base/kdeartwork4/DETAILS b/kde4/base/kdeartwork4/DETAILS index 12cc606..5223183 100644 --- a/kde4/base/kdeartwork4/DETAILS +++ b/kde4/base/kdeartwork4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdeartwork4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdeartwork-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdeartwork-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src - SOURCE_VFY=sha1:9db5c69723bdc9f203e4f854d505c0f87a6dda0d + SOURCE_VFY=sha1:c199fae3f37b1a86e46ca2ee7a176d34bf034c5d MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="" cat << EOF diff --git a/kde4/base/kdebase4-runtime/DETAILS b/kde4/base/kdebase4-runtime/DETAILS index c8216c6..fdadf42 100644 --- a/kde4/base/kdebase4-runtime/DETAILS +++ b/kde4/base/kdebase4-runtime/DETAILS @@ -1,14 +1,14 @@ MODULE=kdebase4-runtime MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdebase-runtime-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdebase-runtime-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:4cb7a4ed093bacf01d5ecff1cbc60a8934dea59c + SOURCE_VFY=sha1:33bb1da691d1ab75d1fbe5bcac38f105cddab709 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="compenents KDE expects to be available at runtime" cat << EOF diff --git a/kde4/base/kdebase4-workspace/DETAILS b/kde4/base/kdebase4-workspace/DETAILS index ccdbbaa..094a512 100644 --- a/kde4/base/kdebase4-workspace/DETAILS +++ b/kde4/base/kdebase4-workspace/DETAILS @@ -1,14 +1,14 @@ MODULE=kdebase4-workspace MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdebase-workspace-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdebase-workspace-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:c21a6e8028aa993878cccccb26b2611b3337eac9 + SOURCE_VFY=sha1:3a07f3e64abd324e0b8a3aeab1ae2c13e75ea026 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="This package is what is the desktop" #PSAFE=no cat << EOF diff --git a/kde4/base/kdebase4/DETAILS b/kde4/base/kdebase4/DETAILS index f4a3a16..9163af4 100644 --- a/kde4/base/kdebase4/DETAILS +++ b/kde4/base/kdebase4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdebase4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdebase-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdebase-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:005681277615a0a3ec737bdd07989763fa1ae781 + SOURCE_VFY=sha1:c9c65dc596c8c48974fbe4099f340371de147fa8 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="mandatory package for KDE" cat << EOF diff --git a/kde4/base/kdebindings4/DETAILS b/kde4/base/kdebindings4/DETAILS index 7872208..1b8ceac 100644 --- a/kde4/base/kdebindings4/DETAILS +++ b/kde4/base/kdebindings4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdebindings4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdebindings-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdebindings-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:bb414b1ab28b51d9bbbfaa2d9c8474b27c325c32 + SOURCE_VFY=sha1:72416301dce5362535bd3c09ffd6d2f884409fc4 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="bindings for other lanquages" cat << EOF diff --git a/kde4/base/kdeedu4/DETAILS b/kde4/base/kdeedu4/DETAILS index 0968305..84bfb1a 100644 --- a/kde4/base/kdeedu4/DETAILS +++ b/kde4/base/kdeedu4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdeedu4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdeedu-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdeedu-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src - SOURCE_VFY=sha1:6326cff7779dfadc1b18a3a6bbe7b0750fb7ceaf + SOURCE_VFY=sha1:df274f08242b1dedbfecc5a1d2ce452dcfbb5735 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071027 - UPDATED=20090901 + UPDATED=20091006 SHORT="education based applications for KDE" cat << EOF diff --git a/kde4/base/kdegames4/DETAILS b/kde4/base/kdegames4/DETAILS index 01af55b..8883d6c 100644 --- a/kde4/base/kdegames4/DETAILS +++ b/kde4/base/kdegames4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdegames4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdegames-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdegames-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:576255ce66a0c089e0840bd90ea89d5705872bc8 + SOURCE_VFY=sha1:cc3eee96fdd3aabb7230a675b877fde98a04e35d MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="a compilation of various default games shipped with KDE" cat << EOF diff --git a/kde4/base/kdegraphics4/DETAILS b/kde4/base/kdegraphics4/DETAILS index 96cb675..1b077b9 100644 --- a/kde4/base/kdegraphics4/DETAILS +++ b/kde4/base/kdegraphics4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdegraphics4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdegraphics-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdegraphics-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:d57d9007b95607c0ee925cc963d7e14798fc69f9 + SOURCE_VFY=sha1:142fccc4f6f7d1f059f79e0fc9fd6694ed3a7b0e MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="graphic applications for KDE" cat << EOF diff --git a/kde4/base/kdelibs4-experimental/DETAILS b/kde4/base/kdelibs4-experimental/DETAILS index 37f5e08..3f9095a 100644 --- a/kde4/base/kdelibs4-experimental/DETAILS +++ b/kde4/base/kdelibs4-experimental/DETAILS @@ -1,14 +1,14 @@ MODULE=kdelibs4-experimental MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdelibs-experimental-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdelibs-experimental-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:7d560817a186c4b7099d321ee4a58705962a59d3 + SOURCE_VFY=sha1:79e34cff9fdcca8fc0e06a0bf524b08abf815705 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20090805 - UPDATED=20090901 + UPDATED=20091006 SHORT="provides libknotificationitem" cat << EOF Provides libknotificationitem and interfaces with dbus. diff --git a/kde4/base/kdelibs4/DETAILS b/kde4/base/kdelibs4/DETAILS index 29a4749..fc2d47c 100644 --- a/kde4/base/kdelibs4/DETAILS +++ b/kde4/base/kdelibs4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdelibs4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdelibs-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdelibs-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:511532852caca9302c643fded4013ef1f57d5433 + SOURCE_VFY=sha1:37f8dd8275bffbcb0e01f9f133a20856329dfa0c MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="central libraries for developement and execution of KDE" cat << EOF diff --git a/kde4/base/kdemultimedia4/DETAILS b/kde4/base/kdemultimedia4/DETAILS index 833a6b7..d2f1292 100644 --- a/kde4/base/kdemultimedia4/DETAILS +++ b/kde4/base/kdemultimedia4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdemultimedia4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdemultimedia-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdemultimedia-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:ef50f869f1a6cdf91fe7808f095fccbd9463a7dd + SOURCE_VFY=sha1:22fe17528685799e03f1caf583c7e7b021f2ddd7 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="multimedia applications for KDE" cat << EOF diff --git a/kde4/base/kdenetwork4/DETAILS b/kde4/base/kdenetwork4/DETAILS index ff7bd6d..b17bc74 100644 --- a/kde4/base/kdenetwork4/DETAILS +++ b/kde4/base/kdenetwork4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdenetwork4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdenetwork-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdenetwork-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src - SOURCE_VFY=sha1:57194b5f89b37329e562951c491fa18029c0b431 + SOURCE_VFY=sha1:7b384e11b551c9d1113cc39d318ca1b9d7712864 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="Network tools for KDE" cat << EOF diff --git a/kde4/base/kdepim4-runtime/DETAILS b/kde4/base/kdepim4-runtime/DETAILS index 8db450a..0198465 100644 --- a/kde4/base/kdepim4-runtime/DETAILS +++ b/kde4/base/kdepim4-runtime/DETAILS @@ -1,14 +1,14 @@ MODULE=kdepim4-runtime MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdepim-runtime-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdepim-runtime-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:c39b0fc1d3721fb8c6074ba6a174ad8716c6c604 + SOURCE_VFY=sha1:2061f4b2845728a97aef6b64f679cbb8f3a50d91 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org - ENTERED=20090901 - UPDATED=20090901 + ENTERED=20091006 + UPDATED=20091006 SHORT="akonadi support for kdepim" cat << EOF diff --git a/kde4/base/kdepim4/DETAILS b/kde4/base/kdepim4/DETAILS index 6aaff61..b59078f 100644 --- a/kde4/base/kdepim4/DETAILS +++ b/kde4/base/kdepim4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdepim4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdepim-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdepim-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:6fd0309dbd911e2667ec1c08d1f10f2626a54534 + SOURCE_VFY=sha1:0de9c7f1c4544f7520128016a6e06f10e6ed1173 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="libraries central to KDE PIM application" cat << EOF diff --git a/kde4/base/kdepimlibs4/DETAILS b/kde4/base/kdepimlibs4/DETAILS index 893d92b..56a0ea6 100644 --- a/kde4/base/kdepimlibs4/DETAILS +++ b/kde4/base/kdepimlibs4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdepimlibs4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdepimlibs-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdepimlibs-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:f4b04b21a6aa3accc530bc6c32cf0d820c611265 + SOURCE_VFY=sha1:1d48b9619e04da121e6233bfb081377afa7c327a MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="libraries central to KDE PIM application" cat << EOF diff --git a/kde4/base/kdeplasma4-addons/DETAILS b/kde4/base/kdeplasma4-addons/DETAILS index d936e11..91fa486 100644 --- a/kde4/base/kdeplasma4-addons/DETAILS +++ b/kde4/base/kdeplasma4-addons/DETAILS @@ -1,14 +1,14 @@ MODULE=kdeplasma4-addons MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdeplasma-addons-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdeplasma-addons-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:83421181dd3a80c4ac0ff5bab111b7f71f6a1192 + SOURCE_VFY=sha1:ecbb3ebe64eccf41a567bdf98e741b14a05536f4 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20080716 - UPDATED=20090901 + UPDATED=20091006 SHORT="mandatory package for KDE" cat << EOF diff --git a/kde4/base/kdesdk4/DETAILS b/kde4/base/kdesdk4/DETAILS index 389c499..a4858ca 100644 --- a/kde4/base/kdesdk4/DETAILS +++ b/kde4/base/kdesdk4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdesdk4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdesdk-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdesdk-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:ded236a12002b824f97856ce5dc882161ed437d2 + SOURCE_VFY=sha1:eabd284791cd4315b743389bddb13848c47bf287 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="applications and tools for development" cat << EOF diff --git a/kde4/base/kdetoys4/DETAILS b/kde4/base/kdetoys4/DETAILS index 89b3f21..6b15b54 100644 --- a/kde4/base/kdetoys4/DETAILS +++ b/kde4/base/kdetoys4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdetoys4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdetoys-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdetoys-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:31a60deafef34a02fb7de5339eed1c750a456d3b + SOURCE_VFY=sha1:7557b1c808a6378beb450d16293cb743c34a1fb7 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="KDE toys" cat << EOF diff --git a/kde4/base/kdeutils4/DETAILS b/kde4/base/kdeutils4/DETAILS index da5b83f..68004d8 100644 --- a/kde4/base/kdeutils4/DETAILS +++ b/kde4/base/kdeutils4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdeutils4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdeutils-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdeutils-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:9743636306cfb137241b6c87f5944e6bf91870fe + SOURCE_VFY=sha1:16a4193d847e67abce215056c6eab2cbb348a1c8 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="utilities for KDE" cat << EOF diff --git a/kde4/base/kdewebdev4/DETAILS b/kde4/base/kdewebdev4/DETAILS index 3f5ca4a..3702589 100644 --- a/kde4/base/kdewebdev4/DETAILS +++ b/kde4/base/kdewebdev4/DETAILS @@ -1,14 +1,14 @@ MODULE=kdewebdev4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=kdewebdev-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdewebdev-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:28580c6f283fa7a6405f6a4415ebe9a4167f0992 + SOURCE_VFY=sha1:e44a2e311bad8adc18ac4cc7dfd9942839a2dab3 MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20071026 - UPDATED=20090901 + UPDATED=20091006 SHORT="applications for web development" cat << EOF diff --git a/kde4/base/oxygen-icons/DETAILS b/kde4/base/oxygen-icons/DETAILS index f4aaa8c..9e0885d 100644 --- a/kde4/base/oxygen-icons/DETAILS +++ b/kde4/base/oxygen-icons/DETAILS @@ -1,13 +1,13 @@ MODULE=oxygen-icons MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$KDE_URL/stable/$VERSION/src/ - SOURCE_VFY=sha1:75a82d2e80d946333f63e32db56767c3ed17ba33 + SOURCE_VFY=sha1:8257c799ac8e5a3b284c0048b6ce821e1e25647c MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.kde.org ENTERED=20090805 - UPDATED=20090901 + UPDATED=20091006 SHORT="oxygen-icons" cat << EOF From stumbles at lunar-linux.org Tue Oct 6 22:20:33 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Tue, 6 Oct 2009 16:20:33 -0400 Subject: [Lunar-commits] kde4: Bumping the profile. Message-ID: <20091006202048.CB0439B1EA@doppio.foo-projects.org> commit 6e6bb9e615b8e24ec3b667a20af10e2d56663be8 Author: Dennis `stumbles` Veatch Date: Tue Oct 6 16:20:33 2009 -0400 kde4: Bumping the profile. --- profiles/kde4/DETAILS | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/profiles/kde4/DETAILS b/profiles/kde4/DETAILS index 7821cde..371c7f2 100644 --- a/profiles/kde4/DETAILS +++ b/profiles/kde4/DETAILS @@ -1,9 +1,9 @@ MODULE=kde4 MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 WEB_SITE=http://www.kde.org/ ENTERED=20080201 - UPDATED=20090901 + UPDATED=20091006 PROFILE=yes SHORT="powerful graphical desktop environment" From stumbles at lunar-linux.org Tue Oct 6 22:38:54 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Tue, 6 Oct 2009 16:38:54 -0400 Subject: [Lunar-commits] kde-l10n: Version bump. Message-ID: <20091006203924.D45209B1EA@doppio.foo-projects.org> commit 7d79635d82958caa95bf831a4f5788241814dd56 Author: Dennis `stumbles` Veatch Date: Tue Oct 6 16:38:54 2009 -0400 kde-l10n: Version bump. --- kde4/kde-l10n/kde-l10n-ar/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-bg/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-bn_IN/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-ca/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-cs/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-csb/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-da/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-de/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-el/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-en_GB/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-es/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-et/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-eu/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-fi/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-fr/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-fy/BUILD | 16 ++++++++++++++++ kde4/kde-l10n/kde-l10n-fy/DEPENDS | 1 + kde4/kde-l10n/kde-l10n-fy/DETAILS | 17 +++++++++++++++++ kde4/kde-l10n/kde-l10n-ga/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-gl/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-gu/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-he/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-hi/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-hne/DETAILS | 8 ++++---- kde4/kde-l10n/kde-l10n-hr/DETAILS | 8 ++++---- kde4/kde-l10n/kde-l10n-hu/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-is/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-it/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-ja/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-kk/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-km/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-kn/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-ko/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-ku/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-lt/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-lv/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-mai/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-mk/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-ml/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-mr/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-nb/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-nds/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-nl/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-nn/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-pa/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-pl/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-pt/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-pt_BR/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-ro/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-ru/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-sk/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-sl/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-sr/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-sv/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-tg/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-th/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-tr/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-uk/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-wa/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-zh_CN/DETAILS | 6 +++--- kde4/kde-l10n/kde-l10n-zh_TW/DETAILS | 6 +++--- 61 files changed, 210 insertions(+), 176 deletions(-) diff --git a/kde4/kde-l10n/kde-l10n-ar/DETAILS b/kde4/kde-l10n/kde-l10n-ar/DETAILS index eb67b14..52034be 100644 --- a/kde4/kde-l10n/kde-l10n-ar/DETAILS +++ b/kde4/kde-l10n/kde-l10n-ar/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-ar MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:291ba52112c13242b893f8cae91bf0c95ca6d89c + SOURCE_VFY=sha1:876155eab6715931d2e745f76ab6927eb5b151d1 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-bg/DETAILS b/kde4/kde-l10n/kde-l10n-bg/DETAILS index 98b0b8d..8ee7acf 100644 --- a/kde4/kde-l10n/kde-l10n-bg/DETAILS +++ b/kde4/kde-l10n/kde-l10n-bg/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-bg MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:df88f358c79dd9529d2a8a5852be8d2eead85b96 + SOURCE_VFY=sha1:1ec87c72838b7558fbb56e6aff2fd237b011ea70 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-bn_IN/DETAILS b/kde4/kde-l10n/kde-l10n-bn_IN/DETAILS index 6b426a7..a5b6e97 100644 --- a/kde4/kde-l10n/kde-l10n-bn_IN/DETAILS +++ b/kde4/kde-l10n/kde-l10n-bn_IN/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-bn_IN MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:a6be9bd15036a7a99efdd08425d6af902595d90e + SOURCE_VFY=sha1:b0d1e91608b7c38beb1939fa2e2bc81ccae9b972 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-ca/DETAILS b/kde4/kde-l10n/kde-l10n-ca/DETAILS index 971fcc3..ad7d78b 100644 --- a/kde4/kde-l10n/kde-l10n-ca/DETAILS +++ b/kde4/kde-l10n/kde-l10n-ca/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-ca MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:678911282f52164707f551b8ada7279656a7bd41 + SOURCE_VFY=sha1:bde4d18055d9f0d68836555dac0333581a02c123 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-cs/DETAILS b/kde4/kde-l10n/kde-l10n-cs/DETAILS index 12e0378..a08fb01 100644 --- a/kde4/kde-l10n/kde-l10n-cs/DETAILS +++ b/kde4/kde-l10n/kde-l10n-cs/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-cs MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:204902f733603a3dfae4e3e3944403fd4437206a + SOURCE_VFY=sha1:e570818a86df6c0340ee99f4eca761cf87af81a4 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080205 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-csb/DETAILS b/kde4/kde-l10n/kde-l10n-csb/DETAILS index 4d0ffac..133395b 100644 --- a/kde4/kde-l10n/kde-l10n-csb/DETAILS +++ b/kde4/kde-l10n/kde-l10n-csb/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-csb MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:b5711d3d419667e2e5b73d217eb66fb63c36e6c3 + SOURCE_VFY=sha1:a0dc1d061f498eb3a8e2ccd57a00da2cadfd38cc WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-da/DETAILS b/kde4/kde-l10n/kde-l10n-da/DETAILS index 9856e69..cedfd0f 100644 --- a/kde4/kde-l10n/kde-l10n-da/DETAILS +++ b/kde4/kde-l10n/kde-l10n-da/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-da MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:86d07b011b2c18ec0b9c84cae7f58aec5a385f47 + SOURCE_VFY=sha1:a224d3c1f319c5a152cab63009a7b7c02810b3ad WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080205 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-de/DETAILS b/kde4/kde-l10n/kde-l10n-de/DETAILS index 8dba9ae..a264270 100644 --- a/kde4/kde-l10n/kde-l10n-de/DETAILS +++ b/kde4/kde-l10n/kde-l10n-de/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-de MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:862ce30f6c28be3891659c7e44c406430483bdc5 + SOURCE_VFY=sha1:aa393d26e92670efb4167644720ba2aae6ca41cc WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-el/DETAILS b/kde4/kde-l10n/kde-l10n-el/DETAILS index 56fbb37..0617437 100644 --- a/kde4/kde-l10n/kde-l10n-el/DETAILS +++ b/kde4/kde-l10n/kde-l10n-el/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-el MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:2422e7fd7b8a6da99e909e7dc303dd0040c0a28b + SOURCE_VFY=sha1:868af36d16bab7fffe79bc763e1dd806db541512 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-en_GB/DETAILS b/kde4/kde-l10n/kde-l10n-en_GB/DETAILS index d5e32c3..7e804ba 100644 --- a/kde4/kde-l10n/kde-l10n-en_GB/DETAILS +++ b/kde4/kde-l10n/kde-l10n-en_GB/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-en_GB MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:e8373c53b310215b73417417c0403a1662a5dbd1 + SOURCE_VFY=sha1:45fc26b7a30ac618571acf72501bd1a99f212cbf WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20071028 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="kde-i18n-* contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-es/DETAILS b/kde4/kde-l10n/kde-l10n-es/DETAILS index 30f49cd..8c11589 100644 --- a/kde4/kde-l10n/kde-l10n-es/DETAILS +++ b/kde4/kde-l10n/kde-l10n-es/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-es MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:baaeeaf906d96f9fcee942865d96dbe103058257 + SOURCE_VFY=sha1:5726f7a33ebfa39826c40c5c4cb90ece90411d18 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-et/DETAILS b/kde4/kde-l10n/kde-l10n-et/DETAILS index e3f03b1..414e234 100644 --- a/kde4/kde-l10n/kde-l10n-et/DETAILS +++ b/kde4/kde-l10n/kde-l10n-et/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-et MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:b2196745b16916d07c48a7e0623a20757a63eb41 + SOURCE_VFY=sha1:aea9fbbae3856135d2466d8eb31b6b2e79b78f7b WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-eu/DETAILS b/kde4/kde-l10n/kde-l10n-eu/DETAILS index 3952605..b3052c8 100644 --- a/kde4/kde-l10n/kde-l10n-eu/DETAILS +++ b/kde4/kde-l10n/kde-l10n-eu/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-eu MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:aeaf22378a37145a0f6d26575be4a71b87dc3bb7 + SOURCE_VFY=sha1:844e6c375a64905dbdd4f81a1a54245a5f27b348 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-fi/DETAILS b/kde4/kde-l10n/kde-l10n-fi/DETAILS index af74007..dfb813d 100644 --- a/kde4/kde-l10n/kde-l10n-fi/DETAILS +++ b/kde4/kde-l10n/kde-l10n-fi/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-fi MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:4372d26b1ca1b95860ebe821603532d802a95ff7 + SOURCE_VFY=sha1:310ea04bc135ab0f42210178e1b65ba275b03231 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-fr/DETAILS b/kde4/kde-l10n/kde-l10n-fr/DETAILS index 060b639..820e0b0 100644 --- a/kde4/kde-l10n/kde-l10n-fr/DETAILS +++ b/kde4/kde-l10n/kde-l10n-fr/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-fr MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:1f70f37087a1db941eba7692059af58ce558e133 + SOURCE_VFY=sha1:baefca3b03e818cba08819b15de80e519ec00eb0 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-fy/BUILD b/kde4/kde-l10n/kde-l10n-fy/BUILD new file mode 100644 index 0000000..0cc56ec --- /dev/null +++ b/kde4/kde-l10n/kde-l10n-fy/BUILD @@ -0,0 +1,16 @@ +( + + KDE4_BUILD_DIR="$SOURCE_DIRECTORY/kde4-build" + + source /etc/profile.d/qt4.rc && + source /etc/profile.d/kde4.rc && + + mkdir $KDE4_BUILD_DIR && + cd $KDE4_BUILD_DIR && + + cmake $SOURCE_DIRECTORY/ -DCMAKE_INSTALL_PREFIX=$MODULE_PREFIX \ + -DCMAKE_BUILD_TYPE=RELEASE && + + default_make + +) > $C_FIFO 2>&1 diff --git a/kde4/kde-l10n/kde-l10n-fy/DEPENDS b/kde4/kde-l10n/kde-l10n-fy/DEPENDS new file mode 100644 index 0000000..529d780 --- /dev/null +++ b/kde4/kde-l10n/kde-l10n-fy/DEPENDS @@ -0,0 +1 @@ +depends kdebase4 diff --git a/kde4/kde-l10n/kde-l10n-fy/DETAILS b/kde4/kde-l10n/kde-l10n-fy/DETAILS new file mode 100644 index 0000000..1d65f43 --- /dev/null +++ b/kde4/kde-l10n/kde-l10n-fy/DETAILS @@ -0,0 +1,17 @@ + MODULE=kde-l10n-fy + MAJOR=4.3 + VERSION=${MAJOR}.2 + SOURCE=$MODULE-$VERSION.tar.bz2 +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION + SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ + SOURCE_VFY=sha1:3e41bc935264abdbb4689d037252716d059382df + WEB_SITE=http://www.kde.org + MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} + ENTERED=20091006 + UPDATED=20091006 + MAINTAINER=stumbles at lunar-linux.org + SHORT="contains translated KDE messages" + +cat << EOF +kde-l10n-* contains translated KDE messages. +EOF diff --git a/kde4/kde-l10n/kde-l10n-ga/DETAILS b/kde4/kde-l10n/kde-l10n-ga/DETAILS index cd6b0d9..24b87ea 100644 --- a/kde4/kde-l10n/kde-l10n-ga/DETAILS +++ b/kde4/kde-l10n/kde-l10n-ga/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-ga MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:a6a07e762f558e0472cd5fd4631c6004d669b267 + SOURCE_VFY=sha1:e8c3b5f04c7ef4d30ef4aa3932b71bc4437885af WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-gl/DETAILS b/kde4/kde-l10n/kde-l10n-gl/DETAILS index 2d95dd0..6f7186a 100644 --- a/kde4/kde-l10n/kde-l10n-gl/DETAILS +++ b/kde4/kde-l10n/kde-l10n-gl/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-gl MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:8e3aeea73f416bf96a43cfd6b21576ba8a27ddd5 + SOURCE_VFY=sha1:6c7e22b68c95f526eb1bbaab2f203772f6e3ddc6 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-gu/DETAILS b/kde4/kde-l10n/kde-l10n-gu/DETAILS index a5be941..2655d33 100644 --- a/kde4/kde-l10n/kde-l10n-gu/DETAILS +++ b/kde4/kde-l10n/kde-l10n-gu/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-gu MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:1f0ece60c6ab5b6846d3446674713dcad0b40a4b + SOURCE_VFY=sha1:a6e99ff6fc9eaefcee4d27b274a8a558e3a15a90 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-he/DETAILS b/kde4/kde-l10n/kde-l10n-he/DETAILS index 017d677..2e76ee2 100644 --- a/kde4/kde-l10n/kde-l10n-he/DETAILS +++ b/kde4/kde-l10n/kde-l10n-he/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-he MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:a3b99916680b9b96f2570c6e623378fad1cd5709 + SOURCE_VFY=sha1:db822810ad4f7f6e85381de3cc1c388868f6601f WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-hi/DETAILS b/kde4/kde-l10n/kde-l10n-hi/DETAILS index 75fec7b..c89461f 100644 --- a/kde4/kde-l10n/kde-l10n-hi/DETAILS +++ b/kde4/kde-l10n/kde-l10n-hi/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-hi MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:9ca314931027112de5b33ea878b4fe86b489ceee + SOURCE_VFY=sha1:a4124f7bee7435ec645585a1bf4e764efa544c61 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-hne/DETAILS b/kde4/kde-l10n/kde-l10n-hne/DETAILS index 442dedf..2e4dc76 100644 --- a/kde4/kde-l10n/kde-l10n-hne/DETAILS +++ b/kde4/kde-l10n/kde-l10n-hne/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-hne MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:ee5e6f1bb0323a7f81d3893a348b24ce4ab06501 + SOURCE_VFY=sha1:bdb889c04b9e94e6aa7789ef944a91273b4f415b WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} - ENTERED=20090902 - UPDATED=20090902 + ENTERED=20091006 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-hr/DETAILS b/kde4/kde-l10n/kde-l10n-hr/DETAILS index 2613fa3..0132cfd 100644 --- a/kde4/kde-l10n/kde-l10n-hr/DETAILS +++ b/kde4/kde-l10n/kde-l10n-hr/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-hr MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:2236fb2270b732af0333b83893699350ac73c8fe + SOURCE_VFY=sha1:c9dec1942673cc0cb10551271baedd367d8caef6 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} - ENTERED=20090902 - UPDATED=20090902 + ENTERED=20091006 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-hu/DETAILS b/kde4/kde-l10n/kde-l10n-hu/DETAILS index 08be83b..44c692b 100644 --- a/kde4/kde-l10n/kde-l10n-hu/DETAILS +++ b/kde4/kde-l10n/kde-l10n-hu/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-hu MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:5fd97655b54e12a9822b1705e0907a41e639e60b + SOURCE_VFY=sha1:74758130d616594b5cdd3ece2270eabb0f5158ca WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-is/DETAILS b/kde4/kde-l10n/kde-l10n-is/DETAILS index 33116f4..c75418a 100644 --- a/kde4/kde-l10n/kde-l10n-is/DETAILS +++ b/kde4/kde-l10n/kde-l10n-is/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-is MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:31769dbd79f03f9fdb80a475e7ab862c3bf9e09b + SOURCE_VFY=sha1:86ef4464acd7fb478ce89e3073e321131763cd98 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-it/DETAILS b/kde4/kde-l10n/kde-l10n-it/DETAILS index 2a82816..a99fc79 100644 --- a/kde4/kde-l10n/kde-l10n-it/DETAILS +++ b/kde4/kde-l10n/kde-l10n-it/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-it MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:68381bf50723e33689b90bfde1fa56f4f5a989af + SOURCE_VFY=sha1:eb1d6ffd503135d2767892158839e21e370c8c80 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-ja/DETAILS b/kde4/kde-l10n/kde-l10n-ja/DETAILS index 5e69800..14bd384 100644 --- a/kde4/kde-l10n/kde-l10n-ja/DETAILS +++ b/kde4/kde-l10n/kde-l10n-ja/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-ja MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:b03906170e86efafa523402001158f64f5172df1 + SOURCE_VFY=sha1:b778b89f2f77c7fef1dc6891cf35228f69af2fef WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-kk/DETAILS b/kde4/kde-l10n/kde-l10n-kk/DETAILS index 8f78c4b..7672e07 100644 --- a/kde4/kde-l10n/kde-l10n-kk/DETAILS +++ b/kde4/kde-l10n/kde-l10n-kk/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-kk MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:774832229d036846abe4f42122ab24fe541ae810 + SOURCE_VFY=sha1:0fd65db42d1e3cead815d3cb3ca11ddfaa5aee6e WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080205 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-km/DETAILS b/kde4/kde-l10n/kde-l10n-km/DETAILS index cfbfe1c..6e40d1a 100644 --- a/kde4/kde-l10n/kde-l10n-km/DETAILS +++ b/kde4/kde-l10n/kde-l10n-km/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-km MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:d1b0926cf4309f09326a0b10f170a06beb18345f + SOURCE_VFY=sha1:62473438e065ed441102f669fcba3749631b15d5 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-kn/DETAILS b/kde4/kde-l10n/kde-l10n-kn/DETAILS index 7d8f67a..ff5574e 100644 --- a/kde4/kde-l10n/kde-l10n-kn/DETAILS +++ b/kde4/kde-l10n/kde-l10n-kn/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-kn MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:6807a732d5158b0583fe50b40cb2d115394c1e40 + SOURCE_VFY=sha1:abee94229b6e7d7c06640381073173b1d48d11e5 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-ko/DETAILS b/kde4/kde-l10n/kde-l10n-ko/DETAILS index f05d6fe..9636ea3 100644 --- a/kde4/kde-l10n/kde-l10n-ko/DETAILS +++ b/kde4/kde-l10n/kde-l10n-ko/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-ko MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:3d99831fc6ee8bb1aaf6531a72d6baed96ff57ba + SOURCE_VFY=sha1:2e4256bf4adf71417469dda533231579726fbfc5 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-ku/DETAILS b/kde4/kde-l10n/kde-l10n-ku/DETAILS index 7e1dc92..d466f09 100644 --- a/kde4/kde-l10n/kde-l10n-ku/DETAILS +++ b/kde4/kde-l10n/kde-l10n-ku/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-ku MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:540f7ed8fb10c6f1552228464c3c87d9c67c6f06 + SOURCE_VFY=sha1:a9f79e77bc3e788b1430e091ff904e94f7653254 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080811 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-lt/DETAILS b/kde4/kde-l10n/kde-l10n-lt/DETAILS index 0540d27..3926025 100644 --- a/kde4/kde-l10n/kde-l10n-lt/DETAILS +++ b/kde4/kde-l10n/kde-l10n-lt/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-lt MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:bf8904905814bdac21a50aec8755a8a4bf0264aa + SOURCE_VFY=sha1:9649e687214b162d1ed1bb1046185c9c6f13965e WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080811 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-lv/DETAILS b/kde4/kde-l10n/kde-l10n-lv/DETAILS index dada4a7..60d5579 100644 --- a/kde4/kde-l10n/kde-l10n-lv/DETAILS +++ b/kde4/kde-l10n/kde-l10n-lv/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-lv MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:88efac89d758c1d18f0a7b3f374c72fbebbc549e + SOURCE_VFY=sha1:95e5c6eff776a1ef81851c81bcf76f07f7f8cce8 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-mai/DETAILS b/kde4/kde-l10n/kde-l10n-mai/DETAILS index 2e8e18c..afa836f 100644 --- a/kde4/kde-l10n/kde-l10n-mai/DETAILS +++ b/kde4/kde-l10n/kde-l10n-mai/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-mai MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:d55e02fd442fbfac7f5a17e0669d6ad13ac8dadc + SOURCE_VFY=sha1:aa8afefc37561f1999473d435ef89f91edb6a056 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-mk/DETAILS b/kde4/kde-l10n/kde-l10n-mk/DETAILS index 0fdfb3f..9926471 100644 --- a/kde4/kde-l10n/kde-l10n-mk/DETAILS +++ b/kde4/kde-l10n/kde-l10n-mk/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-mk MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:5c13415431f6733d5d7f7d222437640cffd1a865 + SOURCE_VFY=sha1:48e2bf96c6c3c8a4c87f55afb563cb9cbc57d396 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-ml/DETAILS b/kde4/kde-l10n/kde-l10n-ml/DETAILS index 7595f63..ae2f0e0 100644 --- a/kde4/kde-l10n/kde-l10n-ml/DETAILS +++ b/kde4/kde-l10n/kde-l10n-ml/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-ml MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:060322230a22683e5ec638102b219d53191dd3e7 + SOURCE_VFY=sha1:8e597b091d2db951714094c7550907aeb566b292 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080811 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-mr/DETAILS b/kde4/kde-l10n/kde-l10n-mr/DETAILS index 94e0730..9cb1cd6 100644 --- a/kde4/kde-l10n/kde-l10n-mr/DETAILS +++ b/kde4/kde-l10n/kde-l10n-mr/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-mr MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:1782e58f0167b7b7ae995af292170a4b6db760ab + SOURCE_VFY=sha1:749d484070a4a3db863a2bd646160017cd8c737c WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-nb/DETAILS b/kde4/kde-l10n/kde-l10n-nb/DETAILS index 9d72638..8100d18 100644 --- a/kde4/kde-l10n/kde-l10n-nb/DETAILS +++ b/kde4/kde-l10n/kde-l10n-nb/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-nb MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:4e2ce15fbb52980375f72a00e180216985a6f410 + SOURCE_VFY=sha1:e93ac3f027f7f944db74cb2b924b665cb0dd61d6 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-nds/DETAILS b/kde4/kde-l10n/kde-l10n-nds/DETAILS index b8d9798..248e49b 100644 --- a/kde4/kde-l10n/kde-l10n-nds/DETAILS +++ b/kde4/kde-l10n/kde-l10n-nds/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-nds MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:22d28e2c01f71df4208222f8056a46f0c23c2345 + SOURCE_VFY=sha1:ee34ea690fb5ba613b5db378f7dc74d5d1ab973b WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-nl/DETAILS b/kde4/kde-l10n/kde-l10n-nl/DETAILS index f7636bb..b07bdb9 100644 --- a/kde4/kde-l10n/kde-l10n-nl/DETAILS +++ b/kde4/kde-l10n/kde-l10n-nl/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-nl MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:b3d1a714dc4ed767c0a3cc9fbce0512757a3656e + SOURCE_VFY=sha1:4d0eb15547ecaafc717337f9ac91472fb277bb27 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-nn/DETAILS b/kde4/kde-l10n/kde-l10n-nn/DETAILS index 56757a2..35c3cf8 100644 --- a/kde4/kde-l10n/kde-l10n-nn/DETAILS +++ b/kde4/kde-l10n/kde-l10n-nn/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-nn MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:8463579f4feae363835e2d97784d38ceb33b6895 + SOURCE_VFY=sha1:f436d23bca7f6e7e3a7c84630c7120e1137ebdda WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-pa/DETAILS b/kde4/kde-l10n/kde-l10n-pa/DETAILS index 7034bd7..73d38b0 100644 --- a/kde4/kde-l10n/kde-l10n-pa/DETAILS +++ b/kde4/kde-l10n/kde-l10n-pa/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-pa MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:449bcf5e2128fdf25515731f0c0523be30a5ed0d + SOURCE_VFY=sha1:75a8bc98ae79631c3001726495e1b2ac3b44a24a WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-pl/DETAILS b/kde4/kde-l10n/kde-l10n-pl/DETAILS index c8f5c78..2531645 100644 --- a/kde4/kde-l10n/kde-l10n-pl/DETAILS +++ b/kde4/kde-l10n/kde-l10n-pl/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-pl MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:af781696ecc3c75ff2f2988fb08abd7b882bacef + SOURCE_VFY=sha1:d8f5b8e78a46a5c4a9c92a9d661e96fe4ced62af WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-pt/DETAILS b/kde4/kde-l10n/kde-l10n-pt/DETAILS index ab5ff4e..726e5e8 100644 --- a/kde4/kde-l10n/kde-l10n-pt/DETAILS +++ b/kde4/kde-l10n/kde-l10n-pt/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-pt MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:70b660efee0300c9b9b2a52256485b9a94b0a643 + SOURCE_VFY=sha1:4089ae50a96fa702149520fc576ca614588c4275 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-pt_BR/DETAILS b/kde4/kde-l10n/kde-l10n-pt_BR/DETAILS index d015385..69e316a 100644 --- a/kde4/kde-l10n/kde-l10n-pt_BR/DETAILS +++ b/kde4/kde-l10n/kde-l10n-pt_BR/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-pt_BR MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:009e4d0ae3931f051de6016d3ca816bd7855f0e6 + SOURCE_VFY=sha1:1c4bf1ee375980cb9b3482d2f95ac33326b711a0 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-ro/DETAILS b/kde4/kde-l10n/kde-l10n-ro/DETAILS index bc802d9..85ad112 100644 --- a/kde4/kde-l10n/kde-l10n-ro/DETAILS +++ b/kde4/kde-l10n/kde-l10n-ro/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-ro MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:a25a6b36ca412a26d0e74b7b20217f1f1f2b844b + SOURCE_VFY=sha1:18411208b5eeb2fb90de7067b35f748455993a96 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-ru/DETAILS b/kde4/kde-l10n/kde-l10n-ru/DETAILS index 39a16cc..cf47212 100644 --- a/kde4/kde-l10n/kde-l10n-ru/DETAILS +++ b/kde4/kde-l10n/kde-l10n-ru/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-ru MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:9cedccb639ec2eada6ab2b96da30e03e19330f28 + SOURCE_VFY=sha1:9fe2c01b5750f3369fc08cd7e1fe4463de9603c6 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-sk/DETAILS b/kde4/kde-l10n/kde-l10n-sk/DETAILS index bd21c1e..f382f25 100644 --- a/kde4/kde-l10n/kde-l10n-sk/DETAILS +++ b/kde4/kde-l10n/kde-l10n-sk/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-sk MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:eaa3f24cc9da8193dd651baa6ffbb89a109f12f0 + SOURCE_VFY=sha1:e9394aa6ec55bf680f3b1dc7a8518d92c148b399 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-sl/DETAILS b/kde4/kde-l10n/kde-l10n-sl/DETAILS index 92fa412..b866db7 100644 --- a/kde4/kde-l10n/kde-l10n-sl/DETAILS +++ b/kde4/kde-l10n/kde-l10n-sl/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-sl MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:bec62ed170ba6b8144058ead5bdf849ae14f6288 + SOURCE_VFY=sha1:f7490224c41eafb8968683592938c545bc07581e WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-sr/DETAILS b/kde4/kde-l10n/kde-l10n-sr/DETAILS index 8bdbb1f..5a56f4d 100644 --- a/kde4/kde-l10n/kde-l10n-sr/DETAILS +++ b/kde4/kde-l10n/kde-l10n-sr/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-sr MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:cd1960d131ce0d6e79629c00106c0e42df074d55 + SOURCE_VFY=sha1:ed905c467dec2eb3c27bc93733cfe11f01cc6719 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080811 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-sv/DETAILS b/kde4/kde-l10n/kde-l10n-sv/DETAILS index d03b749..2104dec 100644 --- a/kde4/kde-l10n/kde-l10n-sv/DETAILS +++ b/kde4/kde-l10n/kde-l10n-sv/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-sv MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:31aab305ef6aaf0b41864cb268c90ec3abf2d24a + SOURCE_VFY=sha1:24faecdbce5982b5a0a2df876091476720870645 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-tg/DETAILS b/kde4/kde-l10n/kde-l10n-tg/DETAILS index ddc1633..b4dd0dc 100644 --- a/kde4/kde-l10n/kde-l10n-tg/DETAILS +++ b/kde4/kde-l10n/kde-l10n-tg/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-tg MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:1dd82ee730e99c30d6ea232e977f9685f25cbb81 + SOURCE_VFY=sha1:b6bc648db23b2484957f0eba8d51834cac45cc56 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20090127 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-th/DETAILS b/kde4/kde-l10n/kde-l10n-th/DETAILS index f8bcb19..40b0ed0 100644 --- a/kde4/kde-l10n/kde-l10n-th/DETAILS +++ b/kde4/kde-l10n/kde-l10n-th/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-th MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:3fdcdad21300c062bea96d81209896be47900030 + SOURCE_VFY=sha1:6d5f545e36f6a316de9a72b79c4c80ce2d3c1f51 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-tr/DETAILS b/kde4/kde-l10n/kde-l10n-tr/DETAILS index e1e03f1..d55be6d 100644 --- a/kde4/kde-l10n/kde-l10n-tr/DETAILS +++ b/kde4/kde-l10n/kde-l10n-tr/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-tr MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:8358733ae4e7712e3bd1e4424573ed449f77ef75 + SOURCE_VFY=sha1:cc8bfb917076197df58eb1dfd666ee35c21271cd WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-uk/DETAILS b/kde4/kde-l10n/kde-l10n-uk/DETAILS index 42844f9..9567a7f 100644 --- a/kde4/kde-l10n/kde-l10n-uk/DETAILS +++ b/kde4/kde-l10n/kde-l10n-uk/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-uk MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:3268a4a5b16bbf4d90b5d7723a1da0bcf012bb2a + SOURCE_VFY=sha1:5a8f27bbc7960f3982a197b046d1b5cc6e8fe8f0 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-wa/DETAILS b/kde4/kde-l10n/kde-l10n-wa/DETAILS index e5b7501..0b3b548 100644 --- a/kde4/kde-l10n/kde-l10n-wa/DETAILS +++ b/kde4/kde-l10n/kde-l10n-wa/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-wa MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:779c0e86b015bae352783899f9d955eb59bc7ac7 + SOURCE_VFY=sha1:0b01665d65d727310eb83850c13954ddedceece5 WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-zh_CN/DETAILS b/kde4/kde-l10n/kde-l10n-zh_CN/DETAILS index 77780ed..d98813d 100644 --- a/kde4/kde-l10n/kde-l10n-zh_CN/DETAILS +++ b/kde4/kde-l10n/kde-l10n-zh_CN/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-zh_CN MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:a2c72b191ff14283ce3307f5621807defffcebcd + SOURCE_VFY=sha1:f9aed0d16c9ee0fcea89b9598aec32d25815fc0d WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" diff --git a/kde4/kde-l10n/kde-l10n-zh_TW/DETAILS b/kde4/kde-l10n/kde-l10n-zh_TW/DETAILS index 7ecbfc6..e050ef7 100644 --- a/kde4/kde-l10n/kde-l10n-zh_TW/DETAILS +++ b/kde4/kde-l10n/kde-l10n-zh_TW/DETAILS @@ -1,14 +1,14 @@ MODULE=kde-l10n-zh_TW MAJOR=4.3 - VERSION=${MAJOR}.1 + VERSION=${MAJOR}.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$KDE_URL/stable/$VERSION/src/kde-l10n/ - SOURCE_VFY=sha1:4ad4102bc8a9bddd86042c1a3fa298d657f40015 + SOURCE_VFY=sha1:aa1c52821acfe69ffa9b66cb2d44a1edf75808aa WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080103 - UPDATED=20090902 + UPDATED=20091006 MAINTAINER=stumbles at lunar-linux.org SHORT="contains translated KDE messages" From brebs at lunar-linux.org Tue Oct 6 23:13:56 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Wed, 7 Oct 2009 04:13:56 +0700 Subject: [Lunar-commits] makebootfat: new module Message-ID: <20091006211423.C7F179B1EA@doppio.foo-projects.org> commit b1b8e88da76e0192030fddd32c9d959b2829a6e0 Author: Paul Bredbury Date: Wed Oct 7 04:13:56 2009 +0700 makebootfat: new module --- filesys/makebootfat/BUILD | 26 ++++++++++++++++++++++++++ filesys/makebootfat/DEPENDS | 3 +++ filesys/makebootfat/DETAILS | 23 +++++++++++++++++++++++ 3 files changed, 52 insertions(+), 0 deletions(-) diff --git a/filesys/makebootfat/BUILD b/filesys/makebootfat/BUILD new file mode 100644 index 0000000..09f2cd2 --- /dev/null +++ b/filesys/makebootfat/BUILD @@ -0,0 +1,26 @@ +( + + default_build && + + mkdir -p /usr/share/$MODULE/old/ && + + # These files are outdated, but install them anyway + install -m644 mbrfat.bin /usr/share/$MODULE/old/ && + install -m644 test/ldlinux.bss /usr/share/$MODULE/old/ && + install -m644 test/ldlinux.sys /usr/share/$MODULE/old/ && + + # Let's make this less painful for users + # http://brierwooddesign.com/2008/11/29/making-a-bootable-dos-usb-stick-with-freedos + # http://blog.flameeyes.eu/2008/08/30/updating-a-bios-without-floppies-windows-or-cds + bsdtar -xf $SOURCE_CACHE/$SOURCE2 && + unzip freedos/packages/src_base/kernels.zip source/ukernel/boot/fat{12,16,32lba}.bin && + + install -m644 source/ukernel/boot/fat12.bin /usr/share/$MODULE/ && + install -m644 source/ukernel/boot/fat16.bin /usr/share/$MODULE/ && + install -m644 source/ukernel/boot/fat32lba.bin /usr/share/$MODULE/ && + install -m644 freedos/setup/odin/command.com /usr/share/$MODULE/ && + install -m644 freedos/setup/odin/kernel.sys /usr/share/$MODULE/ && + + gather_docs HISTORY + +) > $C_FIFO 2>&1 diff --git a/filesys/makebootfat/DEPENDS b/filesys/makebootfat/DEPENDS new file mode 100644 index 0000000..ede62d5 --- /dev/null +++ b/filesys/makebootfat/DEPENDS @@ -0,0 +1,3 @@ +depends libarchive +depends syslinux +depends unzip diff --git a/filesys/makebootfat/DETAILS b/filesys/makebootfat/DETAILS new file mode 100644 index 0000000..933eb70 --- /dev/null +++ b/filesys/makebootfat/DETAILS @@ -0,0 +1,23 @@ + MODULE=makebootfat + VERSION=1.4 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE2=fdbasews.iso + SOURCE_URL=$SFORGE_URL/advancemame + SOURCE2_URL[0]=http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.0/ + SOURCE2_URL[1]=http://ftp.usf.edu/pub/freedos/files/distributions/1.0/ + SOURCE2_URL[2]=http://freedos.bbnx.net/files/distributions/1.0/ + SOURCE_VFY=sha1:a60173de1a223a75e6fa781eac126c3b431993e5 + SOURCE2_VFY=sha1:2b371a27941fa05f432dd964e0f6e81fd0308137 + WEB_SITE=http://advancemame.sourceforge.net/boot-readme.html + ENTERED=20091004 + UPDATED=20091004 + SHORT="command-line utility to create bootable FAT filesystems" + +cat << EOF +makebootfat creates a bootable FAT filesystem and populates it with +files and boot tools. + +Sample command: + +makebootfat -o usb -v -E 255 -1 /usr/share/makebootfat/fat12.bin -2 /usr/share/makebootfat/fat16.bin -3 /usr/share/makebootfat/fat32lba.bin -m /usr/share/syslinux/mbr.bin -c /usr/share/makebootfat/kernel.sys -c /usr/share/makebootfat/command.com image +EOF From brebs at lunar-linux.org Wed Oct 7 10:12:10 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Wed, 7 Oct 2009 15:12:10 +0700 Subject: [Lunar-commits] MPlayer: add optional dep on libbs2b Message-ID: <20091007081234.DD98F9B1EA@doppio.foo-projects.org> commit c2c5af5aba52b18336e054c3c7ec6cf0dab41118 Author: Paul Bredbury Date: Wed Oct 7 15:12:10 2009 +0700 MPlayer: add optional dep on libbs2b --- video/MPlayer/DEPENDS | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/video/MPlayer/DEPENDS b/video/MPlayer/DEPENDS index 301b9b8..236252c 100644 --- a/video/MPlayer/DEPENDS +++ b/video/MPlayer/DEPENDS @@ -21,3 +21,4 @@ optional_depends mpeg2dec "" "" "for mpeg- optional_depends live555 "" "--disable-live" "for RTP/RTCP, RTSP, SIP support" # MPlayer needs to use x264 *via* ffmpeg optional_depends ffmpeg "" "--disable-x264" "use ffmpeg (with e.g. x264-snapshot)" +optional_depends libbs2b "" "--disable-libbs2b" "for better sound via headphones" From stumbles at lunar-linux.org Wed Oct 7 13:09:45 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 7 Oct 2009 07:09:45 -0400 Subject: [Lunar-commits] eigen: Version bump. Message-ID: <20091007111012.261579B1EA@doppio.foo-projects.org> commit 428cc2e843e8d9046e9774cc661eb99b814fb5ff Author: Dennis `stumbles` Veatch Date: Wed Oct 7 07:09:45 2009 -0400 eigen: Version bump. --- libs/eigen/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/eigen/DETAILS b/libs/eigen/DETAILS index 899c134..b8e46f6 100644 --- a/libs/eigen/DETAILS +++ b/libs/eigen/DETAILS @@ -1,12 +1,12 @@ MODULE=eigen - VERSION=2.0.4 + VERSION=2.0.6 SOURCE=$VERSION.tar.bz2 SOURCE_URL=http://bitbucket.org/eigen/eigen2/get/ SOURCE_DIRECTORY=$BUILD_DIRECTORY/eigen2 - SOURCE_VFY=sha1:49436b6a2336fa11a6a287d489aa53b2bd760565 + SOURCE_VFY=sha1:610f9a984681585b8c001aa4adb4f054971f07f9 WEB_SITE=http://eigen.tuxfamily.org ENTERED=20080112 - UPDATED=20090805 + UPDATED=20091007 SHORT="linear algebra libraries focused on the simple mathematical needs" cat << EOF From florin at lunar-linux.org Wed Oct 7 17:54:04 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 7 Oct 2009 18:54:04 +0300 Subject: [Lunar-commits] freetype2: version bumped to 2.3.10. Message-ID: <20091007155443.5ADEA9B1EA@doppio.foo-projects.org> commit 879c97f3724492063fa8b968b72197d04ab0a872 Author: Florin Braescu Date: Wed Oct 7 18:54:04 2009 +0300 freetype2: version bumped to 2.3.10. Mostly bugfixes release. --- graphics/freetype2/BUILD | 2 -- graphics/freetype2/DETAILS | 9 +++------ 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/graphics/freetype2/BUILD b/graphics/freetype2/BUILD index acfc6e5..112f11b 100644 --- a/graphics/freetype2/BUILD +++ b/graphics/freetype2/BUILD @@ -1,7 +1,5 @@ ( - patch_it $SOURCE_CACHE/$SOURCE2 1 && - if [ $BYTECODE == "y" ] ; then sed -i -r 's:.*(#.*BYTE.*) .*:\1:' \ include/freetype/config/ftoption.h diff --git a/graphics/freetype2/DETAILS b/graphics/freetype2/DETAILS index efd0802..89fa6b8 100644 --- a/graphics/freetype2/DETAILS +++ b/graphics/freetype2/DETAILS @@ -1,16 +1,13 @@ MODULE=freetype2 - VERSION=2.3.9 + VERSION=2.3.10 SOURCE=freetype-$VERSION.tar.bz2 - SOURCE2=freetype-$VERSION-CVE-2009-0946.patch.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/freetype-$VERSION SOURCE_URL[0]=$SFORGE_URL/freetype SOURCE_URL[1]=http://savannah.nongnu.org/download/freetype - SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:db08969cb5053879ff9e973fe6dd2c52c7ea2d4e - SOURCE2_VFY=sha1:97242a82606d81b0744a3ce2f2211716ab258386 + SOURCE_VFY=sha1:3d0e083c7788bab949a7ed9dc9923411ec040d19 WEB_SITE=http://www.freetype.org ENTERED=20010922 - UPDATED=20090508 + UPDATED=20091007 SHORT="A free, quality, portable font engine" cat << EOF From zbiggy at lunar-linux.org Wed Oct 7 21:27:04 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Wed, 7 Oct 2009 21:27:04 +0200 Subject: [Lunar-commits] gzip: updated to 1.3.13 Message-ID: <20091007192729.A81FC9B1EA@doppio.foo-projects.org> commit d91592bd9d5f54945cf0f98ab2247f1c8bfd2f98 Author: Zbigniew Luszpinski Date: Wed Oct 7 21:27:04 2009 +0200 gzip: updated to 1.3.13 --- archive/gzip/BUILD | 12 ------------ archive/gzip/DEPENDS | 2 ++ archive/gzip/DETAILS | 8 ++++---- archive/gzip/POST_REMOVE | 1 - archive/gzip/PRE_BUILD | 8 ++++++++ 5 files changed, 14 insertions(+), 17 deletions(-) diff --git a/archive/gzip/BUILD b/archive/gzip/BUILD index 026a9a8..0180ad0 100644 --- a/archive/gzip/BUILD +++ b/archive/gzip/BUILD @@ -1,17 +1,5 @@ ( -#This group of sedits are for glibc-2.7 - sedit "s:if (futimens:if (gz_futimens:" gzip.c - sedit "s:int futimens:int gz_futimens:" lib/utimens.h - sedit "s:futimens (int fd:gz_futimens (int fd:" lib/utimens.c - sedit "s:return futimens (-1:return gz_futimens (-1:" lib/utimens.c - - VR=`lvu version glibc | cut -d. -f2` && - - if [ $VR = 6 ]; then - sedit "s/futimens/gl_&/" $(grep -lr futimens *) - fi && - ./configure --build=$BUILD \ --prefix=/usr \ --bindir=/bin \ diff --git a/archive/gzip/DEPENDS b/archive/gzip/DEPENDS new file mode 100644 index 0000000..b07a0d0 --- /dev/null +++ b/archive/gzip/DEPENDS @@ -0,0 +1,2 @@ +# Workaround for missing xz +depends xz diff --git a/archive/gzip/DETAILS b/archive/gzip/DETAILS index 6209414..676f3e2 100644 --- a/archive/gzip/DETAILS +++ b/archive/gzip/DETAILS @@ -1,12 +1,12 @@ MODULE=gzip - VERSION=1.3.12 - SOURCE=$MODULE-$VERSION.tar.gz + VERSION=1.3.13 + SOURCE=$MODULE-$VERSION.tar.xz SOURCE_URL[0]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ SOURCE_URL[1]=http://www.funet.fi/pub/gnu/alpha/gnu/$MODULE/ - SOURCE_VFY=sha1:264e82876f201d9576626fbb1e0e9fe458efe9b9 + SOURCE_VFY=sha1:4085728fe589cd97944fd60b0255626386a7efb3 WEB_SITE=http://www.gzip.org ENTERED=20010922 - UPDATED=20070414 + UPDATED=20091007 SHORT="Compression utility designed to replace compress" cat << EOF gzip - Compresses and decompresses files diff --git a/archive/gzip/POST_REMOVE b/archive/gzip/POST_REMOVE index 8666320..090cc0d 100644 --- a/archive/gzip/POST_REMOVE +++ b/archive/gzip/POST_REMOVE @@ -1,2 +1 @@ install-info --delete gzip --info-dir /usr/info - diff --git a/archive/gzip/PRE_BUILD b/archive/gzip/PRE_BUILD new file mode 100644 index 0000000..19f01d2 --- /dev/null +++ b/archive/gzip/PRE_BUILD @@ -0,0 +1,8 @@ +( +# Workaround for missing xz depacker + cd $BUILD_DIRECTORY && + rm -rf $SOURCE_DIRECTORY && + tar -xJpvf $SOURCE_CACHE/$SOURCE && + cd $SOURCE_DIRECTORY + +) From brebs at lunar-linux.org Wed Oct 7 23:16:31 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Thu, 8 Oct 2009 04:16:31 +0700 Subject: [Lunar-commits] gzip: use standard method in PRE_BUILD Message-ID: <20091007211753.A58F19B1EA@doppio.foo-projects.org> commit 78236e47751db0bdabcf4cb55143118d097ddcf0 Author: Paul Bredbury Date: Thu Oct 8 04:16:31 2009 +0700 gzip: use standard method in PRE_BUILD No need for brackets. Use standard functions validate_source_dir and mk_source_dir. --- archive/gzip/PRE_BUILD | 12 +++++------- 1 files changed, 5 insertions(+), 7 deletions(-) diff --git a/archive/gzip/PRE_BUILD b/archive/gzip/PRE_BUILD index 19f01d2..a0d258b 100644 --- a/archive/gzip/PRE_BUILD +++ b/archive/gzip/PRE_BUILD @@ -1,8 +1,6 @@ -( # Workaround for missing xz depacker - cd $BUILD_DIRECTORY && - rm -rf $SOURCE_DIRECTORY && - tar -xJpvf $SOURCE_CACHE/$SOURCE && - cd $SOURCE_DIRECTORY - -) +validate_source_dir $SOURCE_DIRECTORY && +mk_source_dir $SOURCE_DIRECTORY && +cd $BUILD_DIRECTORY && +tar -xJpvf $SOURCE_CACHE/$SOURCE && +cd $SOURCE_DIRECTORY From brebs at lunar-linux.org Wed Oct 7 23:52:08 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Thu, 8 Oct 2009 04:52:08 +0700 Subject: [Lunar-commits] virtualbox: install desktop entry Message-ID: <20091007220919.AE790F39E2@doppio.foo-projects.org> commit 637a55239d93410d2f150e68d1154bcb44053bb0 Author: Paul Bredbury Date: Thu Oct 8 04:52:08 2009 +0700 virtualbox: install desktop entry Error-handling was incomplete. --- x11-utils/virtualbox/BUILD | 12 ++++++------ x11-utils/virtualbox/DETAILS | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/x11-utils/virtualbox/BUILD b/x11-utils/virtualbox/BUILD index 1300fdf..320e4b5 100644 --- a/x11-utils/virtualbox/BUILD +++ b/x11-utils/virtualbox/BUILD @@ -1,20 +1,20 @@ ( - #lets disable qt3 + # Disable qt3 sedit s at WITH_QT3=1 at WITH_QT3=0@ configure && # We need the qt4 paths . /etc/profile.d/qt4.rc && # Build VirtualBox - # Disable hardending so normal users can run it + # Disable hardening, so normal users can run it OPTS+=" --disable-hardening" && OPTS+=" --with-qt4-dir=$QTDIR" && ./configure $OPTS && source ./env.sh && kmk && - #Build source package for kernel module + # Build source package for kernel module pushd out/linux.x86/release/bin/ && message "Building ${MODULE_COLOR}virtualbox-module-${VERSION_COLOR}${VERSION}${DEFAULT_COLOR}." && message "This may take a while..." && @@ -40,9 +40,9 @@ mkdir -p /etc/vbox && echo "INSTALL_DIR=$MODULE_PREFIX" > /etc/vbox/vbox.cfg && - #Install .desktop entry and icon - install /usr/lib/virtualbox/VirtualBox.desktop /usr/share/applications/ - install /usr/lib/virtualbox/VBox.png /usr/share/icons/hicolor/32x32/apps/ + # Install .desktop entry and icon + install -D -m644 /usr/lib/virtualbox/virtualbox.desktop /usr/share/applications/virtualbox.desktop && + install -D -m644 /usr/lib/virtualbox/VBox.png /usr/share/icons/hicolor/32x32/apps/VBox.png && # Create the vboxusers group groupadd -f vboxusers diff --git a/x11-utils/virtualbox/DETAILS b/x11-utils/virtualbox/DETAILS index 5f072da..380b9cf 100644 --- a/x11-utils/virtualbox/DETAILS +++ b/x11-utils/virtualbox/DETAILS @@ -8,7 +8,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/VirtualBox-$BASE_VERSION\_OSE MODULE_PREFIX=${VIRTUALBOX_PREFIX:-/usr/lib/virtualbox/} WEB_SITE=http://virtualbox.org ENTERED=20071004 - UPDATED=20091006 + UPDATED=20091007 SHORT="Full virtualizer for x86 hardware" cat << EOF From florin at lunar-linux.org Thu Oct 8 18:47:09 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 8 Oct 2009 19:47:09 +0300 Subject: [Lunar-commits] gdb: version bumped to 7.0. Message-ID: <20091008164747.A8E4F9B1EA@doppio.foo-projects.org> commit afddc0518295a9a74fa1730b4f899cb2027de67f Author: Florin Braescu Date: Thu Oct 8 19:47:09 2009 +0300 gdb: version bumped to 7.0. Bugfixes and enhacements. --- devel/gdb/DETAILS | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/devel/gdb/DETAILS b/devel/gdb/DETAILS index 4fb8a41..b556f52 100644 --- a/devel/gdb/DETAILS +++ b/devel/gdb/DETAILS @@ -1,14 +1,14 @@ MODULE=gdb - VERSION=6.8 + VERSION=7.0 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL[0]=$GNU_URL/$MODULE/ - SOURCE_URL[1]=http://planetmirror.com/pub/sourceware/$MODULE/releases/ - SOURCE_URL[2]=ftp://ftp.gnu.org/gnu/$MODULE/ - SOURCE_URL[3]=http://www.gnu.org/software/$MODULE/ - SOURCE_VFY=sha1:ba1394d59dd84a1dd3a83322bd82c799596f0bcf - WEB_SITE=http://www.gnu.org/software/gdb/ + SOURCE_URL[0]=$GNU_URL/$MODULE + SOURCE_URL[1]=http://planetmirror.com/pub/sourceware/$MODULE/releases + SOURCE_URL[2]=ftp://ftp.gnu.org/gnu/$MODULE + SOURCE_URL[3]=http://www.gnu.org/software/$MODULE + SOURCE_VFY=sha1:8aed621b7ddb8c82b6ff213b56c028787db90582 + WEB_SITE=http://www.gnu.org/software/gdb ENTERED=20011023 - UPDATED=20090212 + UPDATED=20091008 PSAFE=no SHORT="GNU Debugger used for debugging" From florin at lunar-linux.org Thu Oct 8 19:08:52 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 8 Oct 2009 20:08:52 +0300 Subject: [Lunar-commits] linphone: version bumped to 3.2.1. Message-ID: <20091008170928.BE46E9B1EA@doppio.foo-projects.org> commit c22ac945b7c733e43d0c0743937ad9d7a3d73ced Author: Florin Braescu Date: Thu Oct 8 20:08:52 2009 +0300 linphone: version bumped to 3.2.1. This version improves the mute button look and feel, updates translations, and fixes a few bugs. --- chat/linphone/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chat/linphone/DETAILS b/chat/linphone/DETAILS index 34c8206..54edf29 100644 --- a/chat/linphone/DETAILS +++ b/chat/linphone/DETAILS @@ -1,11 +1,11 @@ MODULE=linphone - VERSION=3.2.0 + VERSION=3.2.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://download.savannah.gnu.org/releases/linphone/stable/sources - SOURCE_VFY=sha1:064bd8f740a576ad023121502bea5da5803275d1 + SOURCE_VFY=sha1:ff5434372465ccfd059de1a26f4712f30f5f9ed7 WEB_SITE=http://www.linphone.org/index.php/eng ENTERED=20051009 - UPDATED=20090918 + UPDATED=20091008 SHORT="A full featured audio SIP phone" cat << EOF From brebs at lunar-linux.org Thu Oct 8 20:04:58 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Fri, 9 Oct 2009 01:04:58 +0700 Subject: [Lunar-commits] vavoom: fix startup error Message-ID: <20091008180513.716219B1EA@doppio.foo-projects.org> commit 85146f18be868bb2c4214f636850cb372633185d Author: Paul Bredbury Date: Fri Oct 9 01:04:58 2009 +0700 vavoom: fix startup error --- games/vavoom/BUILD | 7 ++++--- games/vavoom/DETAILS | 7 ++++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/games/vavoom/BUILD b/games/vavoom/BUILD index 8d25a0b..0f9cd44 100644 --- a/games/vavoom/BUILD +++ b/games/vavoom/BUILD @@ -1,13 +1,14 @@ ( + # Fix "division by 0" startup error with gcc 4.4 + patch_it $SOURCE_CACHE/$SOURCE2 1 && + # Set default basedir to shared dir, rather than current dir sedit "s:fl_basedir = \".\":fl_basedir = \"/usr/share/games/vavoom\":" source/files.cpp && # BINDIR and DATADIR are relative to CMAKE_INSTALL_PREFIX cmake . -DCMAKE_INSTALL_PREFIX="/usr" -DWITH_ALLEGRO=N -DBINDIR=games -DDATADIR="share/games/vavoom" -DENABLE_WRAPPERS=OFF && - default_build && - - echo "Run with e.g.: vavoom -opengl -openal -doom" + default_build ) > $C_FIFO 2>&1 diff --git a/games/vavoom/DETAILS b/games/vavoom/DETAILS index 3ab5376..85151c3 100644 --- a/games/vavoom/DETAILS +++ b/games/vavoom/DETAILS @@ -1,15 +1,20 @@ MODULE=vavoom VERSION=1.30 SOURCE=${MODULE}-${VERSION}.tar.bz2 + SOURCE2=vavoom-1.30-gcc44-fix.patch.bz2 SOURCE_URL=$SFORGE_URL/$MODULE + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:53135df66631eb3fd6efce618569916518eaa943 + SOURCE2_VFY=sha1:25f2fe6460e7c7e8e8098949ded4f272c706381c WEB_SITE=http://www.vavoom-engine.com/ ENTERED=20090727 - UPDATED=20090727 + UPDATED=20091007 SHORT="Advanced source port for Doom/Heretic/Hexen/Strife" PSAFE=no cat << EOF Vavoom is a source port based on sources of Doom, Heretic, Hexen, and a little bit from Quake. Supported platforms are DOS, Windows and Linux. + +Run with e.g.: vavoom -opengl -openal -doom EOF From florin at lunar-linux.org Thu Oct 8 21:45:38 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 8 Oct 2009 22:45:38 +0300 Subject: [Lunar-commits] fvwm: version bumped to 2.5.28. Message-ID: <20091008201614.600E89B1EA@doppio.foo-projects.org> commit 14026dca6dd2fd4c3ba19539b689ead321c7a64e Author: Florin Braescu Date: Thu Oct 8 22:45:38 2009 +0300 fvwm: version bumped to 2.5.28. New features: New differentiated options for SnapAttraction when snapping against screen edges: "None", "ScreenWindows", "ScreenIcons", "ScreenAll" New option to the BugOpts command: TransliterateUtf8. Bug fixes. --- x11-wm/fvwm/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-wm/fvwm/DETAILS b/x11-wm/fvwm/DETAILS index aaf1c8c..08b20f1 100644 --- a/x11-wm/fvwm/DETAILS +++ b/x11-wm/fvwm/DETAILS @@ -1,11 +1,11 @@ MODULE=fvwm - VERSION=2.5.27 + VERSION=2.5.28 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=ftp://ftp.fvwm.org/pub/fvwm/version-2 - SOURCE_VFY=sha1:52a3300c5f13468fa61205477a07f0e5d4767a6b + SOURCE_VFY=sha1:26b83b88656faa3d21ab55544269954e534abe08 WEB_SITE=http://www.fvwm.org ENTERED=20010922 - UPDATED=20090225 + UPDATED=20091008 SHORT="Multiple large virtual desktop X11 windows manager" cat << EOF From brebs at lunar-linux.org Thu Oct 8 22:33:47 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Fri, 9 Oct 2009 03:33:47 +0700 Subject: [Lunar-commits] alienarena: version bump to 20091006 (7.31) Message-ID: <20091008203733.052BC9B1EA@doppio.foo-projects.org> commit f9a07c0bee72568e3ee359ced450507b327173c0 Author: Paul Bredbury Date: Fri Oct 9 03:33:47 2009 +0700 alienarena: version bump to 20091006 (7.31) Fixed description, adding warning about NVIDIA-beta. --- games/alienarena/BUILD | 1 - games/alienarena/DETAILS | 36 ++++++++++++++++-------------------- 2 files changed, 16 insertions(+), 21 deletions(-) diff --git a/games/alienarena/BUILD b/games/alienarena/BUILD index 16e293d..3ea4b27 100644 --- a/games/alienarena/BUILD +++ b/games/alienarena/BUILD @@ -11,7 +11,6 @@ # Lunar isn't multilib sedit "s:lib64:lib:" Makefile && - # Using ARCH=unknown, to prevent Makefile from setting -march flag make \ PREFIX=/usr WITH_DATADIR=yes WITH_LIBDIR=yes ARCH="$CPU" \ DATADIR="$DATADIR" \ diff --git a/games/alienarena/DETAILS b/games/alienarena/DETAILS index 8e749b2..8fdbf61 100644 --- a/games/alienarena/DETAILS +++ b/games/alienarena/DETAILS @@ -1,30 +1,26 @@ MODULE=alienarena - MOD=2009 - VERSION=20090616 + VERSION=20091006 + VER=7_31 OS=linux - SOURCE=$MODULE$MOD-$OS$VERSION.zip -SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE$MOD + SOURCE=$MODULE-$OS$VERSION.zip +SOURCE_DIRECTORY=$BUILD_DIRECTORY/${MODULE}${VER} SOURCE_URL=http://icculus.org/alienarena/Files/ - SOURCE_VFY=sha1:e3ec358f1e2eac4662bfe7524c53a0e023388816 - WEB_SITE=http://red.planetarena.org + SOURCE_VFY=sha1:6b2f5cf564f0534c0c8d5293e27a55833d4bdbf5 + WEB_SITE=http://red.planetarena.org/ ENTERED=20080606 - UPDATED=20090830 + UPDATED=20091007 SHORT="FPS freeware online deathmatch game" cat << EOF -With over 30 levels, seven modes of play, loads of mutators, built-in bots, -11 player characters, 9 weapons(with alt-fire modes), the game has an endless -supply of replayability. +With over 30 levels, seven modes of play, loads of mutators, built-in +bots, 11 player characters, 9 weapons (with alt-fire modes), the game +has an endless supply of replayability. -Using the CRX engine, which is based on the Id GPL source code, AA2K7 now -includes modern effects such as real-time vertex lighting and shadows, -lensflares, light blooms, reflective water, textured particles, stainmaps, 32 -bit color, shaders, fog, and much more. +Using the CRX engine, which is based on the Id GPL source code, AA +now includes modern effects such as real-time vertex lighting and +shadows, lensflares, light blooms, reflective water, textured +particles, stainmaps, 32-bit color, shaders, fog, and much more. -Built into the game is an easy-to-use server browser which allows the user to -query information about each server. CRX features rewards systems, as well as -colored player names, winner podiums, and weapons stats. The best thing about -the CRX engine however, is its netcode and speed. Even on a modest system, -you will get excellent framerates, and movement is still extremely smooth and -fast, even on high-ping servers. +Has a "signal 11" startup error with NVIDIA-beta 190.36, so use e.g. +NVIDIA 185.18.36 instead. EOF From brebs at lunar-linux.org Fri Oct 9 00:01:06 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Fri, 9 Oct 2009 05:01:06 +0700 Subject: [Lunar-commits] Terminal: version bump to 0.4.2 Message-ID: <20091008220206.0B74B9B1EA@doppio.foo-projects.org> commit dc3ae7ac4b1c3d595600b4b76095cf8f1202f24f Author: Paul Bredbury Date: Fri Oct 9 05:01:06 2009 +0700 Terminal: version bump to 0.4.2 Fixes broken background image when compositing is disabled (bug #5645). --- xfce4/apps/Terminal/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xfce4/apps/Terminal/DETAILS b/xfce4/apps/Terminal/DETAILS index 9cbbdad..d7eec8c 100644 --- a/xfce4/apps/Terminal/DETAILS +++ b/xfce4/apps/Terminal/DETAILS @@ -1,13 +1,13 @@ MODULE=Terminal MAJOR=0.4 - VERSION=0.4.1 + VERSION=0.4.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://www.xfce.org/archive/src/apps/terminal/$MAJOR/ - SOURCE_VFY=sha1:abf4d7e0153b1951c40d550b4c2b31e8c4758c70 + SOURCE_VFY=sha1:bf4510e331284d7f68ba193fe1d6f2e57b7815bb MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org/projects/terminal ENTERED=20040930 - UPDATED=20091003 + UPDATED=20091005 SHORT="vte-based gtk+-2 lightweight X-terminal" cat << EOF From stumbles at lunar-linux.org Fri Oct 9 00:26:18 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 8 Oct 2009 18:26:18 -0400 Subject: [Lunar-commits] Falcon: Version bump. Message-ID: <20091008222639.7D1419B1EA@doppio.foo-projects.org> commit 270a7d0aa6ddc37f428924bcf538553889ed535c Author: Dennis `stumbles` Veatch Date: Thu Oct 8 18:26:18 2009 -0400 Falcon: Version bump. --- compilers/Falcon/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compilers/Falcon/DETAILS b/compilers/Falcon/DETAILS index fbe2451..7236375 100644 --- a/compilers/Falcon/DETAILS +++ b/compilers/Falcon/DETAILS @@ -1,11 +1,11 @@ MODULE=Falcon - VERSION=0.9.4 + VERSION=0.9.4.2 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://www.falconpl.org/project_dl/_official_rel/ - SOURCE_VFY=sha1:e689bd24d36f136429ee7d2c03b23c1b5a78ea1a + SOURCE_VFY=sha1:732e8ff844e7be4823c2e2653dda3c64953d0897 WEB_SITE=http://www.falconpl.org/index.ftd?page_id=Home ENTERED=20090815 - UPDATED=20090815 + UPDATED=20091008 SHORT="Falcon Programming Language" cat << EOF From stumbles at lunar-linux.org Fri Oct 9 03:12:19 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 8 Oct 2009 21:12:19 -0400 Subject: [Lunar-commits] mlt: Version bump. Message-ID: <20091009011251.3EA669B1EA@doppio.foo-projects.org> commit 76a8afc990e695e2bb5bad20bd08be57a4b62de4 Author: Dennis `stumbles` Veatch Date: Thu Oct 8 21:12:19 2009 -0400 mlt: Version bump. --- video/mlt/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/video/mlt/DETAILS b/video/mlt/DETAILS index 564f34b..33905d5 100644 --- a/video/mlt/DETAILS +++ b/video/mlt/DETAILS @@ -1,11 +1,11 @@ MODULE=mlt - VERSION=0.4.4 + VERSION=0.4.6 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:0883bffcae30d556e1dbc6a500ee92a8b69f110b + SOURCE_VFY=sha1:978da7b578bc919c4cecda708b563b02ab31aa9c WEB_SITE=http://www.mltframework.org/twiki/bin/view/MLT ENTERED=20071106 - UPDATED=20090702 + UPDATED=20091008 SHORT="open source multimedia framework" cat << EOF From stumbles at lunar-linux.org Fri Oct 9 03:12:33 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 8 Oct 2009 21:12:33 -0400 Subject: [Lunar-commits] kdenlive4: Version bump. Message-ID: <20091009011251.4BD489B1ED@doppio.foo-projects.org> commit 2ff75b747addad4fb22cc3c3863fbdf45b3b17ab Author: Dennis `stumbles` Veatch Date: Thu Oct 8 21:12:33 2009 -0400 kdenlive4: Version bump. --- kde4/apps/kdenlive4/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kde4/apps/kdenlive4/DETAILS b/kde4/apps/kdenlive4/DETAILS index bc84927..2cf65da 100644 --- a/kde4/apps/kdenlive4/DETAILS +++ b/kde4/apps/kdenlive4/DETAILS @@ -1,13 +1,13 @@ MODULE=kdenlive4 - VERSION=0.7.5 + VERSION=0.7.6 SOURCE=kdenlive-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/kdenlive SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdenlive-$VERSION - SOURCE_VFY=sha1:798f311fdf9d9a32a47e3f2e586b5cb31e8e9e8b + SOURCE_VFY=sha1:3f68fe190ac72852ecbadb0d3665efdd6fdf1221 MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} WEB_SITE=http://kdenlive.sourceforge.net ENTERED=20081201 - UPDATED=20090702 + UPDATED=20091008 SHORT="A non-linear video editing application for KDE4" cat << EOF From zbiggy at lunar-linux.org Fri Oct 9 04:33:29 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Fri, 9 Oct 2009 04:33:29 +0200 Subject: [Lunar-commits] xz: unpack plugin Message-ID: <20091009023446.F1A5FF39A2@doppio.foo-projects.org> commit 9ef6e3d3c94bffa9fca81891445c36c29a90fb1a Author: Zbigniew Luszpinski Date: Fri Oct 9 04:33:29 2009 +0200 xz: unpack plugin --- archive/xz/DETAILS | 6 +- archive/xz/plugin.d/unpack-xz.plugin | 70 ++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 3 deletions(-) diff --git a/archive/xz/DETAILS b/archive/xz/DETAILS index 75720c3..122259c 100644 --- a/archive/xz/DETAILS +++ b/archive/xz/DETAILS @@ -1,11 +1,11 @@ MODULE=xz VERSION=4.999.9beta - SOURCE=$MODULE-$VERSION.tar.gz + SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=http://tukaani.org/xz/ - SOURCE_VFY=sha1:9627de3997ddcdb02f8d327e84b2cf1941ecd230 + SOURCE_VFY=sha1:67cd2598b5149da9b3c126f3483fd632e06b3d48 WEB_SITE=http://tukaani.org/xz/ ENTERED=20090224 - UPDATED=20090902 + UPDATED=20091009 SHORT="Utils for XZ archive format" cat << EOF XZ Utils (new name for the improved format/tools) is the successor to lzma. diff --git a/archive/xz/plugin.d/unpack-xz.plugin b/archive/xz/plugin.d/unpack-xz.plugin new file mode 100644 index 0000000..2b0aab2 --- /dev/null +++ b/archive/xz/plugin.d/unpack-xz.plugin @@ -0,0 +1,70 @@ +#!/bin/bash +#################################################################### +# # +# unpack-xz.plugin - generic plugin that unpacks: # +# tar.xz, tar.lzma, xz and lzma files # +# # +#################################################################### +# # +# Copyright 2009 by Zbigniew Luszpinski zbiggy(a)o2,pl under GPLv2 # +# # +# Parts of code of this plugin are "borrowed" from # +# unpack-*.plugin by Auke Kok # +#################################################################### + + +plugin_unpack_xz() { + case $1 in + *.tar.xz) + if [ ! -x /bin/tar ]; then + message "${PROBLEM_COLOR}! Cannot unpack tar.xz file without ${MODULE_COLOR}tar${DEFAULT_COLOR}${PROBLEM_COLOR} installed${DEFAULT_COLOR}"; + exit 1 + fi + if [ ! -x /usr/bin/xz ]; then + message "${PROBLEM_COLOR}! Cannot unpack tar.xz file without ${MODULE_COLOR}xz${DEFAULT_COLOR}${PROBLEM_COLOR} installed${DEFAULT_COLOR}"; + exit 1 + fi + debug_msg "Unpacking xz file \"$1\"" + tar Jxf $1 --no-same-owner --no-same-permissions || return 1 + ;; + *.tar.lzma) + if [ ! -x /bin/tar ]; then + message "${PROBLEM_COLOR}! Cannot unpack tar.lzma file without ${MODULE_COLOR}tar${DEFAULT_COLOR}${PROBLEM_COLOR} installed${DEFAULT_COLOR}"; + exit 1 + fi + if [ ! -x /usr/bin/xz ]; then + message "${PROBLEM_COLOR}! Cannot unpack tar.lzma file without ${MODULE_COLOR}xz${DEFAULT_COLOR}${PROBLEM_COLOR} installed${DEFAULT_COLOR}"; + exit 1 + fi + debug_msg "Unpacking xz file \"$1\"" + tar Jxf $1 --no-same-owner --no-same-permissions || return 1 + ;; + *.xz) + if [ ! -x /usr/bin/xz ]; then + message "${PROBLEM_COLOR}! Cannot unpack xz file without ${MODULE_COLOR}xz${DEFAULT_COLOR}${PROBLEM_COLOR} installed${DEFAULT_COLOR}"; + exit 1 + fi + debug_msg "Unpacking xz file \"$1\"" + cp $1 . || return 1 + xz $1 || return 1 + ;; + *.lzma) + if [ ! -x /usr/bin/xz ]; then + message "${PROBLEM_COLOR}! Cannot unpack lzma file without ${MODULE_COLOR}xz${DEFAULT_COLOR}${PROBLEM_COLOR} installed${DEFAULT_COLOR}"; + exit 1 + fi + debug_msg "Unpacking xz file \"$1\"" + cp $1 . || return 1 + xz $1 || return 1 + ;; + *) + # fallback: we don't know what to do! + return 2 + ;; + esac + # return success! + return 0 +} + + +plugin_register SOURCE_UNPACK plugin_unpack_xz From zbiggy at lunar-linux.org Fri Oct 9 04:40:29 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Fri, 9 Oct 2009 04:40:29 +0200 Subject: [Lunar-commits] lunar: added xz dependency all future modules from gnu.org will use xz. Some other sites also uses lzma. More xz or lzma archives means smaller ISO image and shorted downloads. Also much faster decompression time when compared to bz2. Message-ID: <20091009024400.F37EDF3B3D@doppio.foo-projects.org> commit 0e711c92688d77506fad83c88f7056ef585415f1 Author: Zbigniew Luszpinski Date: Fri Oct 9 04:40:29 2009 +0200 lunar: added xz dependency all future modules from gnu.org will use xz. Some other sites also uses lzma. More xz or lzma archives means smaller ISO image and shorted downloads. Also much faster decompression time when compared to bz2. --- utils/lunar/DEPENDS | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/utils/lunar/DEPENDS b/utils/lunar/DEPENDS index 6bb616d..a7c3686 100644 --- a/utils/lunar/DEPENDS +++ b/utils/lunar/DEPENDS @@ -21,6 +21,7 @@ depends util-linux depends patch depends net-tools depends diffstat +depends xz optional_depends "nano" "" "" "for a ultra-small editor" optional_depends "lunaric-sound" "" "" "to have lunar signal events with sound" From zbiggy at lunar-linux.org Fri Oct 9 04:47:02 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Fri, 9 Oct 2009 04:47:02 +0200 Subject: [Lunar-commits] xine-lib-vdpau: lzma handled by plugin now Message-ID: <20091009024723.02E92F3B3D@doppio.foo-projects.org> commit 967fae7d1bbd73ac7abeb912282e48da981dc394 Author: Zbigniew Luszpinski Date: Fri Oct 9 04:47:02 2009 +0200 xine-lib-vdpau: lzma handled by plugin now --- video/xine-lib-vdpau/DEPENDS | 1 - video/xine-lib-vdpau/PRE_BUILD | 8 -------- 2 files changed, 0 insertions(+), 9 deletions(-) diff --git a/video/xine-lib-vdpau/DEPENDS b/video/xine-lib-vdpau/DEPENDS index 8c391f3..3b9b494 100644 --- a/video/xine-lib-vdpau/DEPENDS +++ b/video/xine-lib-vdpau/DEPENDS @@ -1,4 +1,3 @@ -depends xz depends %X depends %VDPAUDEVICE diff --git a/video/xine-lib-vdpau/PRE_BUILD b/video/xine-lib-vdpau/PRE_BUILD deleted file mode 100644 index ba3a8b1..0000000 --- a/video/xine-lib-vdpau/PRE_BUILD +++ /dev/null @@ -1,8 +0,0 @@ -( - - cd $BUILD_DIRECTORY && - rm -rf $SOURCE_DIRECTORY && - tar -xJpvf $SOURCE_CACHE/$SOURCE && - cd $SOURCE_DIRECTORY - -) From zbiggy at lunar-linux.org Fri Oct 9 04:53:26 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Fri, 9 Oct 2009 04:53:26 +0200 Subject: [Lunar-commits] gzip: removed xz dependency workaround Message-ID: <20091009025343.567BC9B1EA@doppio.foo-projects.org> commit 486299f94cd97435e4da9bd91e6d161be58ca0ee Author: Zbigniew Luszpinski Date: Fri Oct 9 04:53:26 2009 +0200 gzip: removed xz dependency workaround --- archive/gzip/DEPENDS | 2 -- archive/gzip/PRE_BUILD | 6 ------ 2 files changed, 0 insertions(+), 8 deletions(-) diff --git a/archive/gzip/DEPENDS b/archive/gzip/DEPENDS deleted file mode 100644 index b07a0d0..0000000 --- a/archive/gzip/DEPENDS +++ /dev/null @@ -1,2 +0,0 @@ -# Workaround for missing xz -depends xz diff --git a/archive/gzip/PRE_BUILD b/archive/gzip/PRE_BUILD deleted file mode 100644 index a0d258b..0000000 --- a/archive/gzip/PRE_BUILD +++ /dev/null @@ -1,6 +0,0 @@ -# Workaround for missing xz depacker -validate_source_dir $SOURCE_DIRECTORY && -mk_source_dir $SOURCE_DIRECTORY && -cd $BUILD_DIRECTORY && -tar -xJpvf $SOURCE_CACHE/$SOURCE && -cd $SOURCE_DIRECTORY From florin at lunar-linux.org Fri Oct 9 08:44:22 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 9 Oct 2009 09:44:22 +0300 Subject: [Lunar-commits] mlt: remove an uneeded compile param. Message-ID: <20091009065321.749259B1EA@doppio.foo-projects.org> commit 707dd1d699f2a62947f495bf21ad587921a98ed9 Author: Florin Braescu Date: Fri Oct 9 09:44:22 2009 +0300 mlt: remove an uneeded compile param. --- video/mlt/BUILD | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/video/mlt/BUILD b/video/mlt/BUILD index 7df095d..e0e0552 100644 --- a/video/mlt/BUILD +++ b/video/mlt/BUILD @@ -1,6 +1,6 @@ ( - OPTS+=" --enable-gpl --avformat-swscale --cpu=$CPU" + OPTS+=" --enable-gpl --avformat-swscale" default_build From florin at lunar-linux.org Fri Oct 9 09:13:43 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 9 Oct 2009 10:13:43 +0300 Subject: [Lunar-commits] libisofs: version bumped to 0.6.24. Message-ID: <20091009071510.5832F9B1EA@doppio.foo-projects.org> commit e778c6a28b94bee15e5383cdf3ccf5801578f415 Author: Florin Braescu Date: Fri Oct 9 10:13:43 2009 +0300 libisofs: version bumped to 0.6.24. This release fixes a bug that could cause the loss of blanks in filenames when a new session was added to an ISO image. With names shorter than 251 characters, this happened only to trailing blanks. --- cd/libisofs/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cd/libisofs/DETAILS b/cd/libisofs/DETAILS index 280cc22..b7e1119 100644 --- a/cd/libisofs/DETAILS +++ b/cd/libisofs/DETAILS @@ -1,12 +1,12 @@ MODULE=libisofs - VERSION=0.6.22 + VERSION=0.6.24 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL[0]=http://files.libburnia-project.org/releases SOURCE_URL[1]=http://scdbackup.sourceforge.net - SOURCE_VFY=sha1:2d0237d8a0b2c98da23e9ac64713145eef581ee5 + SOURCE_VFY=sha1:128ac46cc734b8dd1d0cd1e4b618c2336b53a2e1 WEB_SITE=http://libburnia-project.org ENTERED=20061203 - UPDATED=20090903 + UPDATED=20091009 SHORT="Library for writing optical media" cat << EOF From brebs at lunar-linux.org Fri Oct 9 10:44:19 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Fri, 9 Oct 2009 15:44:19 +0700 Subject: [Lunar-commits] mesa-lib: build all drivers if none are selected Message-ID: <20091009084512.366369B1EA@doppio.foo-projects.org> commit 29c2cd6ab1adeb8ed6f9bb2cb1161229a5f0fe25 Author: Paul Bredbury Date: Fri Oct 9 15:44:19 2009 +0700 mesa-lib: build all drivers if none are selected Fixed the logic in BUILD. --- xorg7/mesa-lib/BUILD | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/xorg7/mesa-lib/BUILD b/xorg7/mesa-lib/BUILD index 609139a..94f63e5 100644 --- a/xorg7/mesa-lib/BUILD +++ b/xorg7/mesa-lib/BUILD @@ -1,7 +1,10 @@ ( - OPTS+=" --with-dri-drivers=" && - OPTS+=$(echo $MESADRIVER | sed s/\ /,/g) && + if [[ -n $MESADRIVER ]] ; then + # Build selected drivers only, rather than the default of all of them + OPTS+=" --with-dri-drivers=" && + OPTS+=$(echo $MESADRIVER | sed s/\ /,/g) + fi # Excludes glew headers, and prevents need for /usr/include/GL/gl{,u,ut}.h rm -r progs/{demos,samples} && From brebs at lunar-linux.org Fri Oct 9 10:47:28 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Fri, 9 Oct 2009 15:47:28 +0700 Subject: [Lunar-commits] mesa-lib: missed an ampersand Message-ID: <20091009084806.785DA9B1EA@doppio.foo-projects.org> commit 2c4034fd8e07e0701f0b4002a238914b1294f96d Author: Paul Bredbury Date: Fri Oct 9 15:47:28 2009 +0700 mesa-lib: missed an ampersand Don't want to mess up error-handling, do we :) --- xorg7/mesa-lib/BUILD | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xorg7/mesa-lib/BUILD b/xorg7/mesa-lib/BUILD index 94f63e5..8538312 100644 --- a/xorg7/mesa-lib/BUILD +++ b/xorg7/mesa-lib/BUILD @@ -4,7 +4,7 @@ # Build selected drivers only, rather than the default of all of them OPTS+=" --with-dri-drivers=" && OPTS+=$(echo $MESADRIVER | sed s/\ /,/g) - fi + fi && # Excludes glew headers, and prevents need for /usr/include/GL/gl{,u,ut}.h rm -r progs/{demos,samples} && From zbiggy at lunar-linux.org Fri Oct 9 12:43:16 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Fri, 9 Oct 2009 12:43:16 +0200 Subject: [Lunar-commits] linux-2.6: updated to 2.6.31.3 added temp support for AMD K10 Message-ID: <20091009104334.7B5489B1EA@doppio.foo-projects.org> commit 5d7f4d9b727af2f928fb66c3d3c9d66dd826a234 Author: Zbigniew Luszpinski Date: Fri Oct 9 12:43:16 2009 +0200 linux-2.6: updated to 2.6.31.3 added temp support for AMD K10 --- kernel/linux-2.6/DETAILS | 9 ++++++--- kernel/linux-2.6/PRE_BUILD | 5 +++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/kernel/linux-2.6/DETAILS b/kernel/linux-2.6/DETAILS index f0be635..958e92c 100644 --- a/kernel/linux-2.6/DETAILS +++ b/kernel/linux-2.6/DETAILS @@ -1,18 +1,21 @@ MODULE=linux-2.6 - VERSION=2.6.31.2 + VERSION=2.6.31.3 BASE=$(echo $VERSION | cut -d. -f1,2,3) SOURCE=linux-${BASE}.tar.bz2 SOURCE2=patch-${VERSION}.bz2 + SOURCE3=k10temp.patch SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6 SOURCE_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6 SOURCE2_URL[0]=$KERNEL_URL/pub/linux/kernel/v2.6 SOURCE2_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6 + SOURCE3_URL[0]=$PATCH_URL SOURCE_VFY=sha1:c6e0e6b473ba2b80d164e37cfabf294e783c03d9 - SOURCE2_VFY=sha1:10f07fd406d771b8f0288cef1d1a1b95998d729d + SOURCE2_VFY=sha1:d23b4dd2bb361506ec6e8067055b3de4a58e4f35 + SOURCE3_VFY=sha1:aace1a887fab63ea6530533a4e87c6bb1721dc24 WEB_SITE=http://www.kernel.org ENTERED=20041019 - UPDATED=20091006 + UPDATED=20091008 SHORT="The core of a Linux GNU Operating System" KEEP_SOURCE=on TMPFS=off diff --git a/kernel/linux-2.6/PRE_BUILD b/kernel/linux-2.6/PRE_BUILD index 23715b2..784cad3 100644 --- a/kernel/linux-2.6/PRE_BUILD +++ b/kernel/linux-2.6/PRE_BUILD @@ -25,6 +25,11 @@ if [ -n "${SOURCE2}" ]; then patch_it ${SOURCE2} 1 fi +# add temperature sensor for AMD K10 family +if [ -n "`grep Phenom /proc/cpuinfo`" ]; then + patch_it $SOURCE3 0 +fi + if [ -f $CONFIG_CACHE/.config.2.6.stable ]; then cp $CONFIG_CACHE/.config.2.6.stable $SOURCE_DIRECTORY/.config; elif [ -f $CONFIG_CACHE/.config.beta ]; then From brebs at lunar-linux.org Fri Oct 9 13:40:21 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Fri, 9 Oct 2009 18:40:21 +0700 Subject: [Lunar-commits] mesa-lib: always build swrast driver Message-ID: <20091009114135.2E8579B1EA@doppio.foo-projects.org> commit a8cab1f734e29b3c952494a922bb5cb8c0c8b184 Author: Paul Bredbury Date: Fri Oct 9 18:40:21 2009 +0700 mesa-lib: always build swrast driver As a fall-back, for when a driver has missing functions. --- xorg7/mesa-lib/BUILD | 3 ++- xorg7/mesa-lib/CONFIGURE | 3 ++- xorg7/mesa-lib/DETAILS | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/xorg7/mesa-lib/BUILD b/xorg7/mesa-lib/BUILD index 8538312..5982cb9 100644 --- a/xorg7/mesa-lib/BUILD +++ b/xorg7/mesa-lib/BUILD @@ -2,7 +2,8 @@ if [[ -n $MESADRIVER ]] ; then # Build selected drivers only, rather than the default of all of them - OPTS+=" --with-dri-drivers=" && + # Ensure that swrast is included, as a fall-back + OPTS+=" --with-dri-drivers=swrast," && OPTS+=$(echo $MESADRIVER | sed s/\ /,/g) fi && diff --git a/xorg7/mesa-lib/CONFIGURE b/xorg7/mesa-lib/CONFIGURE index e10c977..a10e961 100644 --- a/xorg7/mesa-lib/CONFIGURE +++ b/xorg7/mesa-lib/CONFIGURE @@ -1,4 +1,5 @@ -SUPPORTED_DRIVERS="i810 i915 i965 mach64 mga r128 r200 r300 radeon s3v savage sis swrast tdfx trident unichrome" +# swrast is always included, in BUILD +SUPPORTED_DRIVERS="i810 i915 i965 mach64 mga r128 r200 r300 radeon s3v savage sis tdfx trident unichrome" make_drivers_checklist() { diff --git a/xorg7/mesa-lib/DETAILS b/xorg7/mesa-lib/DETAILS index fcca72e..b0b914b 100644 --- a/xorg7/mesa-lib/DETAILS +++ b/xorg7/mesa-lib/DETAILS @@ -12,7 +12,7 @@ SOURCE3_VFY=sha1:0740e3c31a0e001f3820b17791f9aae663ec35eb WEB_SITE=http://www.mesa3d.org/ ENTERED=20060215 - UPDATED=20090929 + UPDATED=20091007 SHORT="Mesa 3D library" cat << EOF From tchan at lunar-linux.org Fri Oct 9 15:37:50 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 08:37:50 -0500 Subject: [Lunar-commits] atk: Version bump to stable 1.28.0 Message-ID: <20091009144851.0DD9D9B1EA@doppio.foo-projects.org> commit b5ba9086818d6a5be5c9ab60b2487f062c7c7e70 Author: Terry Chan Date: Fri Oct 9 08:37:50 2009 -0500 atk: Version bump to stable 1.28.0 --- libs/atk/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/atk/DETAILS b/libs/atk/DETAILS index 4b3d6f4..40fe422 100644 --- a/libs/atk/DETAILS +++ b/libs/atk/DETAILS @@ -1,12 +1,12 @@ MODULE=atk - MAJOR=1.26 - VERSION=1.26.0 + MAJOR=1.28 + VERSION=1.28.0 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:c31ae32fc7304430cdd45e7e85c7fda788e39471 + SOURCE_VFY=sha1:4cf9c171f5b305453396501b4c29a68ab3a9ec89 WEB_SITE=http://www.gtk.org ENTERED=20020313 - UPDATED=20090319 + UPDATED=20091009 SHORT="A library of useful C routines required for gtk+2" cat << EOF From tchan at lunar-linux.org Fri Oct 9 15:38:20 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 08:38:20 -0500 Subject: [Lunar-commits] pango: Version bump to stable series 1.26.x Message-ID: <20091009144851.1C52E9B1ED@doppio.foo-projects.org> commit 913dffee0599f718322856f88c180ce929dc0afd Author: Terry Chan Date: Fri Oct 9 08:38:20 2009 -0500 pango: Version bump to stable series 1.26.x --- libs/pango/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/pango/DETAILS b/libs/pango/DETAILS index f54e23f..e981b10 100644 --- a/libs/pango/DETAILS +++ b/libs/pango/DETAILS @@ -1,12 +1,12 @@ MODULE=pango - MAJOR=1.25 - VERSION=1.25.5 + MAJOR=1.26 + VERSION=1.26.0 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:097445f2d9395330e7a9cc9f5209736ae220115b + SOURCE_VFY=sha1:567f9ace5a8384b3a59dbf95304dc8b1a271d5b6 WEB_SITE=http://www.pango.org/ ENTERED=20020313 - UPDATED=20090901 + UPDATED=20091009 SHORT="A library for text layout and rendering" cat << EOF From tchan at lunar-linux.org Fri Oct 9 15:48:20 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 08:48:20 -0500 Subject: [Lunar-commits] glib-2: Version bump to stable series 2.22.x Message-ID: <20091009144851.2D0409B1F0@doppio.foo-projects.org> commit 876d1360f9708c8a172e59707485f19e8f2c9b97 Author: Terry Chan Date: Fri Oct 9 08:48:20 2009 -0500 glib-2: Version bump to stable series 2.22.x --- libs/glib-2/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/glib-2/DETAILS b/libs/glib-2/DETAILS index 212c02b..e832095 100644 --- a/libs/glib-2/DETAILS +++ b/libs/glib-2/DETAILS @@ -1,14 +1,14 @@ MODULE=glib-2 - MAJOR=2.20 - VERSION=20.5 + MAJOR=2.22 + VERSION=22.2 SOURCE=$MODULE.$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE.$VERSION SOURCE_URL[0]=$GNOME_URL/sources/glib/$MAJOR/ SOURCE_URL[1]=ftp://ftp.gtk.org/pub/glib/$MAJOR/ - SOURCE_VFY=sha1:19e2b2684d7bc35a73ff94eb7fd15fc70cc6f292 + SOURCE_VFY=sha1:bdd9c4b930e81203ea69fe83876cb6c82bdc5a38 WEB_SITE=http://www.gtk.org/ ENTERED=20020313 - UPDATED=20091004 + UPDATED=20091009 SHORT="A library of useful C routines for trees, hashes, and lists" cat << EOF From tchan at lunar-linux.org Fri Oct 9 15:49:31 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 08:49:31 -0500 Subject: [Lunar-commits] libsoup: Version bump to stable series 2.28.x Message-ID: <20091009144851.3AC9B9B1F1@doppio.foo-projects.org> commit cce01f0307ca9538e122f666f89403226b694087 Author: Terry Chan Date: Fri Oct 9 08:49:31 2009 -0500 libsoup: Version bump to stable series 2.28.x --- gnome2/desktop/libsoup/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnome2/desktop/libsoup/DETAILS b/gnome2/desktop/libsoup/DETAILS index 52529b1..b7407ab 100644 --- a/gnome2/desktop/libsoup/DETAILS +++ b/gnome2/desktop/libsoup/DETAILS @@ -1,12 +1,12 @@ MODULE=libsoup - VERSION=2.27.4 - MAJOR=2.27 + VERSION=2.28.0 + MAJOR=2.28 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:2eb9dbcfb285feabf79873441f14c229ae0d0e68 + SOURCE_VFY=sha1:e1b31a0f5195488d362d810c1cb293b289d60064 WEB_SITE=http://www.gnome.org/ ENTERED=20030413 - UPDATED=20090714 + UPDATED=20091009 PSAFE=no SHORT="a SOAP implementation in C" From tchan at lunar-linux.org Fri Oct 9 16:01:32 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 09:01:32 -0500 Subject: [Lunar-commits] evlolution-data-server: Version bump to stable series 2.28.x Message-ID: <20091009144851.5502E9B1F3@doppio.foo-projects.org> commit dfacdf0b53df5dfd394e6a49164044763054bf42 Author: Terry Chan Date: Fri Oct 9 09:01:32 2009 -0500 evlolution-data-server: Version bump to stable series 2.28.x --- gnome2/desktop/evolution-data-server/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnome2/desktop/evolution-data-server/DETAILS b/gnome2/desktop/evolution-data-server/DETAILS index 78b8c9e..ab685c0 100644 --- a/gnome2/desktop/evolution-data-server/DETAILS +++ b/gnome2/desktop/evolution-data-server/DETAILS @@ -1,12 +1,12 @@ MODULE=evolution-data-server - VERSION=2.26.3 - MAJOR=2.26 + VERSION=2.28.0 + MAJOR=2.28 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:a9406b748d5a002df9570d17c91066575f2ba408 + SOURCE_VFY=sha1:dc3ffdfb997e7cfd39223d04db4dad50ed38c044 WEB_SITE=http://gnome.org/projects/evolution/ ENTERED=20011109 - UPDATED=20090703 + UPDATED=20091009 SHORT="backend data manager for Evolution" PSAFE=no From tchan at lunar-linux.org Fri Oct 9 16:13:33 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 09:13:33 -0500 Subject: [Lunar-commits] gtkhtml: Version bump to stable 3.28.x series Message-ID: <20091009144851.68ABF9B1EA@doppio.foo-projects.org> commit fabaccccc7faa6369f97443a847ea93d0c47e71a Author: Terry Chan Date: Fri Oct 9 09:13:33 2009 -0500 gtkhtml: Version bump to stable 3.28.x series --- gnome2/desktop/gtkhtml/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnome2/desktop/gtkhtml/DETAILS b/gnome2/desktop/gtkhtml/DETAILS index e34e762..6ed54f2 100644 --- a/gnome2/desktop/gtkhtml/DETAILS +++ b/gnome2/desktop/gtkhtml/DETAILS @@ -1,13 +1,13 @@ MODULE=gtkhtml - VERSION=3.26.3 - MAJOR=3.26 + VERSION=3.28.0 + MAJOR=3.28 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:4b681e763c5801adf8d083ff80ef4332f48935f6 + SOURCE_VFY=sha1:b0abcf98447acf385a108061bb7f80769bc18a0e WEB_SITE=http://www.gnome.org ENTERED=20021118 - UPDATED=20090703 + UPDATED=20091009 SHORT="html rendering/editing library." cat << EOF GtkHTML is a HTML rendering/editing library. It is not designed to be From tchan at lunar-linux.org Fri Oct 9 16:48:23 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 09:48:23 -0500 Subject: [Lunar-commits] evolution: Version bump to stable 2.28.0 Message-ID: <20091009144851.78A7D9B1ED@doppio.foo-projects.org> commit 5af3748c92e8b11e2d983e300e5669e953b0f28e Author: Terry Chan Date: Fri Oct 9 09:48:23 2009 -0500 evolution: Version bump to stable 2.28.0 --- gnome2/desktop/evolution/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnome2/desktop/evolution/DETAILS b/gnome2/desktop/evolution/DETAILS index 58cce02..f893d7e 100644 --- a/gnome2/desktop/evolution/DETAILS +++ b/gnome2/desktop/evolution/DETAILS @@ -1,12 +1,12 @@ MODULE=evolution - MAJOR=2.26 - VERSION=2.26.3 + MAJOR=2.28 + VERSION=2.28.0 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:d0e247ccb903a57a5e6fe23cfb04535ea141e9fb + SOURCE_VFY=sha1:718287f0240d6ca872e068a7e94f23396a42b4ed WEB_SITE=http://gnome.org/projects/evolution/ ENTERED=20011109 - UPDATED=20090702 + UPDATED=20091009 SHORT="email, calendar and notes information management solution." cat << EOF Evolution is the premiere personal and workgroup information From tchan at lunar-linux.org Fri Oct 9 16:49:40 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 09:49:40 -0500 Subject: [Lunar-commits] evolution-exchange: Version bump to stable 2.28.0 Message-ID: <20091009144949.756DC9B1EA@doppio.foo-projects.org> commit 85e056a6f45425261d572139f25659a3cda6680a Author: Terry Chan Date: Fri Oct 9 09:49:40 2009 -0500 evolution-exchange: Version bump to stable 2.28.0 --- gnome2/desktop/evolution-exchange/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnome2/desktop/evolution-exchange/DETAILS b/gnome2/desktop/evolution-exchange/DETAILS index 4d8d723..36beb3a 100644 --- a/gnome2/desktop/evolution-exchange/DETAILS +++ b/gnome2/desktop/evolution-exchange/DETAILS @@ -1,12 +1,12 @@ MODULE=evolution-exchange - VERSION=2.26.3 - MAJOR=2.26 + VERSION=2.28.0 + MAJOR=2.28 SOURCE=${MODULE}-${VERSION}.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:3e0e83774baa503b98bbc0df6f4b9b7accbf4741 + SOURCE_VFY=sha1:5c1f3d6517a802a53e24140243fa025ceb8a754e WEB_SITE=http://www.gnome.org ENTERED=20060317 - UPDATED=20090702 + UPDATED=20091009 SHORT="allows Evolution to talk to Exchange" cat << EOF This is the Ximian Connector for Microsoft Exchange, which adds From florin at lunar-linux.org Fri Oct 9 22:10:07 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 9 Oct 2009 23:10:07 +0300 Subject: [Lunar-commits] rsyslog: bversion bumped to 4.4.2. Message-ID: <20091009201059.AA766F3213@doppio.foo-projects.org> commit 5f0c889c046bc93336ddbbfada4f372ad08f204f Author: Florin Braescu Date: Fri Oct 9 23:10:07 2009 +0300 rsyslog: bversion bumped to 4.4.2. This is a bug-fixing release containing some important fixes. --- utils/rsyslog/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/rsyslog/DETAILS b/utils/rsyslog/DETAILS index e730e33..bb16fde 100644 --- a/utils/rsyslog/DETAILS +++ b/utils/rsyslog/DETAILS @@ -1,18 +1,18 @@ MODULE=rsyslog - VERSION=4.4.1 + VERSION=4.4.2 SOURCE=$MODULE-$VERSION.tar.gz SOURCE2=$MODULE.conf-0.1 SOURCE3=$MODULE.config.d-0.1 SOURCE_URL=http://download.rsyslog.com/rsyslog SOURCE2_URL=$PATCH_URL SOURCE3_URL=$PATCH_URL - SOURCE_VFY=sha1:e670f02b8c3e428f41f927914555194b1b32f7bf + SOURCE_VFY=sha1:312b809a758e2ab2d586299be2fcd3aaafa8ae81 SOURCE2_VFY=sha1:f6313bc51270da062dca6b93b2cb7fa865494dd6 SOURCE3_VFY=sha1:398376384113ff22a75dc80d86f1b7b8197aa080 WEB_SITE=http://www.rsyslog.com MAINTAINER=ratler at lunar-linux.org ENTERED=20080731 - UPDATED=20090903 + UPDATED=20091009 SHORT="An enhanced multi-threaded syslogd" cat < wine: version bumped to 1.1.31. Message-ID: <20091009202241.A92AB9B1EA@doppio.foo-projects.org> commit 528bc49daaa555b4192fb2591d5c2731b82395ff Author: Florin Braescu Date: Fri Oct 9 23:21:48 2009 +0300 wine: version bumped to 1.1.31. Changes: Vastly improved monthcal control. Performance improvements for DIB sections. Several sound driver fixes. Beginning of ActiveX support in JScript. More Direct3D 10 work. More 16-bit dlls split off to separate modules. Support for attachments in MAPI. Various bug fixes. --- utils/wine/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/wine/DETAILS b/utils/wine/DETAILS index 34c8da0..c91b9de 100644 --- a/utils/wine/DETAILS +++ b/utils/wine/DETAILS @@ -1,12 +1,12 @@ MODULE=wine - VERSION=1.1.30 + VERSION=1.1.31 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=$SFORGE_URL/$MODULE SOURCE_URL[1]=http://ibiblio.org/pub/linux/system/emulators/$MODULE - SOURCE_VFY=sha1:8e3e288f077024d67db3c02cec194243d705d2d4 + SOURCE_VFY=sha1:d8b7bdedaa433081e6c43c284b38472741c30618 WEB_SITE=http://www.winehq.com ENTERED=20010925 - UPDATED=20090929 + UPDATED=20091009 SHORT="Runs microsoft windows programs" cat << EOF From tchan at lunar-linux.org Fri Oct 9 22:49:04 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 15:49:04 -0500 Subject: [Lunar-commits] evolution-webcal: Version bump to stable 2.28.x series Message-ID: <20091009204934.AD94F9B1EA@doppio.foo-projects.org> commit d0d48c8ba82ccb4bbe406554bbebaabddd162b6c Author: Terry Chan Date: Fri Oct 9 15:49:04 2009 -0500 evolution-webcal: Version bump to stable 2.28.x series --- gnome2/desktop/evolution-webcal/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnome2/desktop/evolution-webcal/DETAILS b/gnome2/desktop/evolution-webcal/DETAILS index d6499e6..87a83e8 100644 --- a/gnome2/desktop/evolution-webcal/DETAILS +++ b/gnome2/desktop/evolution-webcal/DETAILS @@ -1,12 +1,12 @@ MODULE=evolution-webcal - VERSION=2.26.0 - MAJOR=2.26 + VERSION=2.28.0 + MAJOR=2.28 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$GNOME_URL/sources/$MODULE/$MAJOR/ - SOURCE_VFY=sha1:0253df73d25c8933d1c1299e16f846110b9bf5da + SOURCE_VFY=sha1:3046bb2bae83ad08ac8181d7edc067296b1c1a1a WEB_SITE=http://www.gnome.org ENTERED=20040317 - UPDATED=20090414 + UPDATED=20091009 PSAFE=no SHORT="Handles subscribing to Web calendars for Evolution" cat << EOF From florin at lunar-linux.org Fri Oct 9 23:01:47 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sat, 10 Oct 2009 00:01:47 +0300 Subject: [Lunar-commits] konversation4: version bumped to 1.2. Message-ID: <20091009210414.E66289B1EA@doppio.foo-projects.org> commit 0c338dbdd5cd14a963336d858d3982e413145614 Author: Florin Braescu Date: Sat Oct 10 00:01:47 2009 +0300 konversation4: version bumped to 1.2. Support for SOCKS v5 and HTTP proxies, a redesigned DCC file transfer UI (and several new DCC features, such as support for IPv6 and DCC REJECT), support for UPnP, rewritten and improved support for Blowfish encryption (now supporting DH1080 key exchange and more), a significantly better performing channel list, a rewrite of the channel nickname lists for better performance and battery-friendliness, a new channel join invitation UI, an improved auto-replace feature, expanded media player support, many improvements to the IRC protocol implementation, and many bugfixes. --- kde4/apps/konversation4/BUILD | 16 ++++++++++++++++ kde4/apps/konversation4/DETAILS | 15 +++++++++++++++ zbeta/konversation4/BUILD | 16 ---------------- zbeta/konversation4/DETAILS | 15 --------------- 4 files changed, 31 insertions(+), 31 deletions(-) diff --git a/kde4/apps/konversation4/BUILD b/kde4/apps/konversation4/BUILD new file mode 100644 index 0000000..0cc56ec --- /dev/null +++ b/kde4/apps/konversation4/BUILD @@ -0,0 +1,16 @@ +( + + KDE4_BUILD_DIR="$SOURCE_DIRECTORY/kde4-build" + + source /etc/profile.d/qt4.rc && + source /etc/profile.d/kde4.rc && + + mkdir $KDE4_BUILD_DIR && + cd $KDE4_BUILD_DIR && + + cmake $SOURCE_DIRECTORY/ -DCMAKE_INSTALL_PREFIX=$MODULE_PREFIX \ + -DCMAKE_BUILD_TYPE=RELEASE && + + default_make + +) > $C_FIFO 2>&1 diff --git a/kde4/apps/konversation4/DETAILS b/kde4/apps/konversation4/DETAILS new file mode 100644 index 0000000..f2db268 --- /dev/null +++ b/kde4/apps/konversation4/DETAILS @@ -0,0 +1,15 @@ + MODULE=konversation4 + VERSION=1.2 + SOURCE=konversation-$VERSION.tar.bz2 + SOURCE_URL=$KDE_URL/unstable/konversation/$VERSION/src +SOURCE_DIRECTORY=$BUILD_DIRECTORY/konversation-$VERSION + SOURCE_VFY=sha1:64376d427b628ccde56598cfc9be3d8f31d757fc + MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} + WEB_SITE=http://konversation.kde.org + ENTERED=20090329 + UPDATED=20091009 + SHORT="A kde4 irc chat program" + +cat << EOF +The kde4 of konversation, the irc chat program. +EOF diff --git a/zbeta/konversation4/BUILD b/zbeta/konversation4/BUILD deleted file mode 100644 index 0cc56ec..0000000 --- a/zbeta/konversation4/BUILD +++ /dev/null @@ -1,16 +0,0 @@ -( - - KDE4_BUILD_DIR="$SOURCE_DIRECTORY/kde4-build" - - source /etc/profile.d/qt4.rc && - source /etc/profile.d/kde4.rc && - - mkdir $KDE4_BUILD_DIR && - cd $KDE4_BUILD_DIR && - - cmake $SOURCE_DIRECTORY/ -DCMAKE_INSTALL_PREFIX=$MODULE_PREFIX \ - -DCMAKE_BUILD_TYPE=RELEASE && - - default_make - -) > $C_FIFO 2>&1 diff --git a/zbeta/konversation4/DETAILS b/zbeta/konversation4/DETAILS deleted file mode 100644 index 8b9032c..0000000 --- a/zbeta/konversation4/DETAILS +++ /dev/null @@ -1,15 +0,0 @@ - MODULE=konversation4 - VERSION=1.2-rc1 - SOURCE=konversation-$VERSION.tar.bz2 - SOURCE_URL=$KDE_URL/unstable/konversation/$VERSION/src -SOURCE_DIRECTORY=$BUILD_DIRECTORY/konversation-$VERSION - SOURCE_VFY=sha1:3c0a251e78b7b824623e106f4e1050c2f82ca213 - MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} - WEB_SITE=http://konversation.kde.org/ - ENTERED=20090329 - UPDATED=20091003 - SHORT="a kde4 irc chat program" - -cat << EOF -The kde4 of konversation, the irc chat program. -EOF From stumbles at lunar-linux.org Fri Oct 9 23:27:59 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Fri, 9 Oct 2009 17:27:59 -0400 Subject: [Lunar-commits] konversation4: Fixing download path. Message-ID: <20091009212821.991919B1EA@doppio.foo-projects.org> commit 3ee8e12e3b0ee16f8f136057e8374174ed759e23 Author: Dennis `stumbles` Veatch Date: Fri Oct 9 17:27:59 2009 -0400 konversation4: Fixing download path. --- kde4/apps/konversation4/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kde4/apps/konversation4/DETAILS b/kde4/apps/konversation4/DETAILS index f2db268..e65fc9a 100644 --- a/kde4/apps/konversation4/DETAILS +++ b/kde4/apps/konversation4/DETAILS @@ -1,7 +1,7 @@ MODULE=konversation4 VERSION=1.2 SOURCE=konversation-$VERSION.tar.bz2 - SOURCE_URL=$KDE_URL/unstable/konversation/$VERSION/src + SOURCE_URL=$KDE_URL/stable/konversation/$VERSION/src SOURCE_DIRECTORY=$BUILD_DIRECTORY/konversation-$VERSION SOURCE_VFY=sha1:64376d427b628ccde56598cfc9be3d8f31d757fc MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} From brebs at lunar-linux.org Sat Oct 10 01:01:23 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Sat, 10 Oct 2009 06:01:23 +0700 Subject: [Lunar-commits] evolution: fix compilation Message-ID: <20091009232204.CF6779B1EA@doppio.foo-projects.org> commit 7fd148445913a27edd1c7c32e135f89f5142fe21 Author: Paul Bredbury Date: Sat Oct 10 06:01:23 2009 +0700 evolution: fix compilation --disable-nm is needed if NetworkManager is not installed - which doesn't exist as a Lunar module. --enable-imap4 is an invalid option. --- gnome2/desktop/evolution/BUILD | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/gnome2/desktop/evolution/BUILD b/gnome2/desktop/evolution/BUILD index 68e2e0c..de9adc0 100644 --- a/gnome2/desktop/evolution/BUILD +++ b/gnome2/desktop/evolution/BUILD @@ -1,14 +1,15 @@ ( - OPTS+=" --without-weather" - ./configure --prefix=${GNOME210_PREFIX:-/usr} \ + OPTS+=" --without-weather --disable-nm" && + + ./configure --prefix=${GNOME210_PREFIX:-/usr} \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=${GNOME210_PREFIX:-/usr}/share/man \ --infodir=${GNOME210_PREFIX:-/usr}/share/info \ --enable-nntp=yes \ - --enable-imap4 \ $OPTS && + default_make && if ! grep -q '/usr/lib/bonobo/servers' /etc/bonobo-activation/bonobo-activation-config.xml ; then From zbiggy at lunar-linux.org Sat Oct 10 02:05:19 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Sat, 10 Oct 2009 02:05:19 +0200 Subject: [Lunar-commits] openoffice-src-pl: updated to 3.1.1 Message-ID: <20091010000537.8C9DC9B1EA@doppio.foo-projects.org> commit 024343f982f6f6f98f768cb43f33308e88c91280 Author: Zbigniew Luszpinski Date: Sat Oct 10 02:05:19 2009 +0200 openoffice-src-pl: updated to 3.1.1 --- x11-apps/openoffice-src-pl/DETAILS | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/x11-apps/openoffice-src-pl/DETAILS b/x11-apps/openoffice-src-pl/DETAILS index 2224f02..62877e4 100644 --- a/x11-apps/openoffice-src-pl/DETAILS +++ b/x11-apps/openoffice-src-pl/DETAILS @@ -1,18 +1,18 @@ MODULE=openoffice-src-pl - VERSION=3.1.0 - RELEASE=9399 - MILESTONE=m11 + VERSION=3.1.1 + RELEASE=9420 + MILESTONE=m19 LANGUAGE=pl SOURCE=OOo_${VERSION}_LinuxIntel_langpack_${LANGUAGE}.tar.gz SOURCE2=pl-dict.oxt -SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_${MILESTONE}_native_packed-2_${LANGUAGE}.${RELEASE}/RPMS +SOURCE_DIRECTORY=$BUILD_DIRECTORY/OOO310_${MILESTONE}_native_packed-1_${LANGUAGE}.${RELEASE}/RPMS SOURCE_URL=http://mirror.icis.pcz.pl/OOO/localized/$LANGUAGE/$VERSION/ SOURCE2_URL=http://extensions.services.openoffice.org/files/806/4/ - SOURCE_VFY=sha1:29bba13c9739a7d4bc84022c91578bf5db67b32f + SOURCE_VFY=sha1:9cbb2a2b20060fd3e329c4d1f549675ba7564d9f SOURCE2_VFY=sha1:d5704efc735f5492284e8b9cd2ea717a700033c3 WEB_SITE=http://www.openoffice.org ENTERED=20080706 - UPDATED=20090520 + UPDATED=20091009 SHORT="OpenOffice.org Office - Polish localization" cat << EOF OpenOffice.org Office Suite - Polish localization pack for: From tchan at lunar-linux.org Sat Oct 10 05:09:11 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 22:09:11 -0500 Subject: [Lunar-commits] bzr: Version bump to 2.0.0 Message-ID: <20091010031046.EB5A09B1ED@doppio.foo-projects.org> commit 9d3a831d13900a1a513e3b49ff6d93cea3d56a1c Author: Terry Chan Date: Fri Oct 9 22:09:11 2009 -0500 bzr: Version bump to 2.0.0 --- devel/bzr/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devel/bzr/DETAILS b/devel/bzr/DETAILS index 4c647e3..2e16e70 100644 --- a/devel/bzr/DETAILS +++ b/devel/bzr/DETAILS @@ -1,12 +1,12 @@ MODULE=bzr - VERSION=1.18 - MAJOR=1.18 + VERSION=2.0.0 + MAJOR=2.0 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://launchpad.net/bzr/$MAJOR/$VERSION/+download - SOURCE_VFY=sha1:0e738c089ad769eeea6f67befd3de93a402200a7 + SOURCE_VFY=sha1:ed71f73229c1327e09ab2f26cd3870fd5570ba6a WEB_SITE=http://bazaar-vcs.org/ ENTERED=20050415 - UPDATED=20090911 + UPDATED=20091009 MAINTAINER=tchan at lunar-linux.org SHORT="next generation distributed version control" From tchan at lunar-linux.org Sat Oct 10 05:09:26 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 22:09:26 -0500 Subject: [Lunar-commits] bzrtools: Version bump to 2.0.1 Message-ID: <20091010031047.00BE09B1F0@doppio.foo-projects.org> commit 7f67236532aef7b5e0d2ae28baae2f7cc9aaa6b6 Author: Terry Chan Date: Fri Oct 9 22:09:26 2009 -0500 bzrtools: Version bump to 2.0.1 --- devel/bzrtools/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devel/bzrtools/DETAILS b/devel/bzrtools/DETAILS index a981ae2..e1b3c18 100644 --- a/devel/bzrtools/DETAILS +++ b/devel/bzrtools/DETAILS @@ -1,13 +1,13 @@ MODULE=bzrtools - VERSION=1.18.0 - MAJOR=1.18 + VERSION=2.0.1 + MAJOR=2.0.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=https://launchpad.net/bzrtools/stable/$MAJOR/+download/ - SOURCE_VFY=sha1:9bdaef12a71a3b00839ba1f35da3ba3f2b4aef30 + SOURCE_VFY=sha1:3f980e50bc8d458e26cbad23ae8c979a56bc4893 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE WEB_SITE=http://bazaar-vcs.org/BzrTools ENTERED=20051018 - UPDATED=20090911 + UPDATED=20091009 MAINTAINER=tchan at lunar-linux.org SHORT="A collection of plugins for bzr" From tchan at lunar-linux.org Sat Oct 10 05:10:00 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 22:10:00 -0500 Subject: [Lunar-commits] busybox: Version bump to 1.15.2 Message-ID: <20091010031047.170B59B1F1@doppio.foo-projects.org> commit f4eaf61458a3aa1d981b24e4e113314da81fafd4 Author: Terry Chan Date: Fri Oct 9 22:10:00 2009 -0500 busybox: Version bump to 1.15.2 --- shells/busybox/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/shells/busybox/DETAILS b/shells/busybox/DETAILS index aac5dc0..59887ca 100644 --- a/shells/busybox/DETAILS +++ b/shells/busybox/DETAILS @@ -1,12 +1,12 @@ MODULE=busybox - VERSION=1.15.1 + VERSION=1.15.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://www.busybox.net/downloads - SOURCE_VFY=sha1:829dfc2d09e40fe90d6f6e9993590c24e5c5017e + SOURCE_VFY=sha1:2f396a4cb35db438a9b4af43df6224f343b8a7ae WEB_SITE=http://www.busybox.net MAINTAINER=tchan at lunar-linux.org ENTERED=20011020 - UPDATED=20090917 + UPDATED=20091009 SHORT="The Swiss Army Knife of Embedded Linux" cat << EOF From tchan at lunar-linux.org Sat Oct 10 05:10:21 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Fri, 9 Oct 2009 22:10:21 -0500 Subject: [Lunar-commits] busybox_static: Version bump to 1.15.2 Message-ID: <20091010031047.288659B1F3@doppio.foo-projects.org> commit fbebd91516a43c5c809688f8a65412c315c17a49 Author: Terry Chan Date: Fri Oct 9 22:10:21 2009 -0500 busybox_static: Version bump to 1.15.2 --- shells/busybox_static/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/shells/busybox_static/DETAILS b/shells/busybox_static/DETAILS index d1c123e..6924e13 100644 --- a/shells/busybox_static/DETAILS +++ b/shells/busybox_static/DETAILS @@ -1,14 +1,14 @@ MODULE=busybox_static - VERSION=1.15.1 + VERSION=1.15.2 SOURCE=busybox-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/busybox-$VERSION SOURCE_URL=http://www.busybox.net/downloads - SOURCE_VFY=sha1:829dfc2d09e40fe90d6f6e9993590c24e5c5017e + SOURCE_VFY=sha1:2f396a4cb35db438a9b4af43df6224f343b8a7ae SHORT="time statically linked rescue shell" WEB_SITE=http://www.busybox.net MAINTAINER=tchan at lunar-linux.org ENTERED=20011020 - UPDATED=20090917 + UPDATED=20091009 cat << EOF BusyBox combines tiny versions of many common UNIX utilities into a From florin at lunar-linux.org Sat Oct 10 19:28:54 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sat, 10 Oct 2009 20:28:54 +0300 Subject: [Lunar-commits] libv4l: version bumped to 0.6.2. Message-ID: <20091010172940.5B2A19B1ED@doppio.foo-projects.org> commit f225aa3c4b11bfd6dac940e183a0761be03a1ed2 Author: Florin Braescu Date: Sat Oct 10 20:28:54 2009 +0300 libv4l: version bumped to 0.6.2. 17 more laptop models were added to the table of upside-down devices. Better distinguishing between devices plugged into the same port was made possible. The software autogain algorithm was improved. Software whitebalance and autogain are now enabled for mr97310a cameras. --- libs/libv4l/BUILD | 4 ++-- libs/libv4l/DETAILS | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/libs/libv4l/BUILD b/libs/libv4l/BUILD index 8ce34f4..7bca3fa 100644 --- a/libs/libv4l/BUILD +++ b/libs/libv4l/BUILD @@ -1,7 +1,7 @@ ( - make PREFIX=/usr && - prepare_install && + make PREFIX=/usr && + prepare_install && make install PREFIX=/usr ) > $C_FIFO 2>&1 diff --git a/libs/libv4l/DETAILS b/libs/libv4l/DETAILS index b3c0c90..ff02aef 100644 --- a/libs/libv4l/DETAILS +++ b/libs/libv4l/DETAILS @@ -1,12 +1,13 @@ MODULE=libv4l - VERSION=0.6.1 + VERSION=0.6.2 SOURCE=$MODULE-$VERSION.tar.gz -SOURCE_URL[0]=http://people.atrpms.net/~hdegoede/ - SOURCE_VFY=sha1:8ce2d9dcf1413b38e6b3a01fcea6b035d1dd3f51 +SOURCE_URL[0]=http://people.fedoraproject.org/~jwrdegoede +SOURCE_URL[1]=http://people.atrpms.net/~hdegoede + SOURCE_VFY=sha1:d9d218d413222be750fec1f6e32a7245e40a12e2 WEB_SITE=http://hansdegoede.livejournal.com/3636.html ENTERED=20090913 - UPDATED=20090917 - SHORT="thin abstraction layer on top of video4linux2 devices" + UPDATED=20091011 + SHORT="A thin abstraction layer on top of video4linux2 devices" cat << EOF libv4l is a collection of libraries that adds a thin abstraction layer on top of From brebs at lunar-linux.org Sat Oct 10 19:28:48 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Sun, 11 Oct 2009 00:28:48 +0700 Subject: [Lunar-commits] microcode: version bump to 20090927 Message-ID: <20091010173349.B538E9B1ED@doppio.foo-projects.org> commit 7026e46fd573e439de170abc027e1527dc010798 Author: Paul Bredbury Date: Sun Oct 11 00:28:48 2009 +0700 microcode: version bump to 20090927 Tidied description. Added validate_source_dir. --- utils/microcode/BUILD | 2 +- utils/microcode/DETAILS | 25 +++++++++---------------- utils/microcode/PRE_BUILD | 1 + 3 files changed, 11 insertions(+), 17 deletions(-) diff --git a/utils/microcode/BUILD b/utils/microcode/BUILD index 436c339..e4ffc18 100644 --- a/utils/microcode/BUILD +++ b/utils/microcode/BUILD @@ -2,7 +2,7 @@ prepare_install && mkdir -p /etc/firmware && - install -m644 $MODULE-$VERSION.dat /etc/firmware && + install -m644 $MODULE-$VERSION.dat /etc/firmware/ && ln -sf /etc/firmware/$MODULE-$VERSION.dat /etc/microcode.dat ) > $C_FIFO 2>&1 diff --git a/utils/microcode/DETAILS b/utils/microcode/DETAILS index b96de08..c5bea9d 100644 --- a/utils/microcode/DETAILS +++ b/utils/microcode/DETAILS @@ -1,26 +1,19 @@ MODULE=microcode - VERSION=20090330 + VERSION=20090927 SOURCE=$MODULE-$VERSION.tgz - SOURCE_URL=http://downloadmirror.intel.com/14303/eng/ + SOURCE_URL=http://downloadmirror.intel.com/18148/eng/ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION - SOURCE_VFY=sha1:79b5db88f52866836d382309891c112eb7703853 + SOURCE_VFY=sha1:2a953487bcf24057626bfdbd24d4a2010e10c7ef WEB_SITE=http://downloadcenter.intel.com/ ENTERED=20070916 UPDATED=20090702 SHORT="Intel microcode - data files" cat < microcode: bump UPDATED for new version Message-ID: <20091010173349.C2A309B1F0@doppio.foo-projects.org> commit 0062bd13ac19f1c0fe8f13b33702d45bfbf6d6eb Author: Paul Bredbury Date: Sun Oct 11 00:32:46 2009 +0700 microcode: bump UPDATED for new version --- utils/microcode/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/utils/microcode/DETAILS b/utils/microcode/DETAILS index c5bea9d..227b593 100644 --- a/utils/microcode/DETAILS +++ b/utils/microcode/DETAILS @@ -6,7 +6,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_VFY=sha1:2a953487bcf24057626bfdbd24d4a2010e10c7ef WEB_SITE=http://downloadcenter.intel.com/ ENTERED=20070916 - UPDATED=20090702 + UPDATED=20091008 SHORT="Intel microcode - data files" cat < gparted: version bumped to 0.4.7. Message-ID: <20091010173933.3C0639B1ED@doppio.foo-projects.org> commit 09bf38d5499c91b93393bdf65c3d3e0bd58f50fe Author: Florin Braescu Date: Sat Oct 10 20:33:35 2009 +0300 gparted: version bumped to 0.4.7. This release of GParted includes some bug fixes, and language translation updates. Key changes include: - Fixed new partition creation size off by one sector. - Improved recognition of dmraid devices. --- x11-utils/gparted/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-utils/gparted/DETAILS b/x11-utils/gparted/DETAILS index 410c45f..86a6a58 100644 --- a/x11-utils/gparted/DETAILS +++ b/x11-utils/gparted/DETAILS @@ -1,11 +1,11 @@ MODULE=gparted - VERSION=0.4.6 + VERSION=0.4.7 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:0968a8138eab24734567466ec191f18f60f7d285 + SOURCE_VFY=sha1:3a4e8b52f0129af003ea4e23b34b66a5686ea996 WEB_SITE=http://gparted.sourceforge.net ENTERED=20050109 - UPDATED=20090809 + UPDATED=20091011 SHORT="A graphical frontend to parted" cat << EOF From florin at lunar-linux.org Sat Oct 10 19:45:07 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sat, 10 Oct 2009 20:45:07 +0300 Subject: [Lunar-commits] ImageMagick: version bumped to 6.5.6-10. Message-ID: <20091010174533.831119B1ED@doppio.foo-projects.org> commit 367706dc4b836a80d55a6110e88b54abb8857f98 Author: Florin Braescu Date: Sat Oct 10 20:45:07 2009 +0300 ImageMagick: version bumped to 6.5.6-10. --- graphics/ImageMagick/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/ImageMagick/DETAILS b/graphics/ImageMagick/DETAILS index 9b67b0b..1e74fe3 100644 --- a/graphics/ImageMagick/DETAILS +++ b/graphics/ImageMagick/DETAILS @@ -3,7 +3,7 @@ # should version bump to x.y.(z-1)-(highest). That version is always # kept on the ftp.imagemagick.org site and should be considered STABLE!!! MODULE=ImageMagick - VERSION=6.5.5-10 + VERSION=6.5.6-10 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=ftp://ftp.imagemagick.org/pub/ImageMagick SOURCE_URL[1]=$SFORGE_URL/imagemagick @@ -20,10 +20,10 @@ SOURCE_URL[12]=http://hpux.connect.org.uk/hppd/hpux/X11/Viewers SOURCE_URL[13]=ftp://ftp.fifi.org/pub/ImageMagick SOURCE_URL[14]=ftp://ftp.rge.com/pub/multimedia/imagemagick - SOURCE_VFY=sha1:12aadbab71e98de549c604389aafb106341f5aed + SOURCE_VFY=sha1:53d732cadf7bc62b4342c103796f8d8f30424d8f WEB_SITE=http://www.imagemagick.org ENTERED=20010922 - UPDATED=20090914 + UPDATED=20091011 PSAFE=no SHORT="Automated and interactive manipulation of images" From florin at lunar-linux.org Sun Oct 11 06:51:21 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 07:51:21 +0300 Subject: [Lunar-commits] freetype2: version bumped to 2.3.11. Message-ID: <20091011045159.AD5629B1F0@doppio.foo-projects.org> commit 08b5c066974ecaa94d6fea3b229ec5f42c2a173a Author: Florin Braescu Date: Sun Oct 11 07:51:21 2009 +0300 freetype2: version bumped to 2.3.11. Bugfixes release. --- graphics/freetype2/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/freetype2/DETAILS b/graphics/freetype2/DETAILS index 89fa6b8..cd54279 100644 --- a/graphics/freetype2/DETAILS +++ b/graphics/freetype2/DETAILS @@ -1,13 +1,13 @@ MODULE=freetype2 - VERSION=2.3.10 + VERSION=2.3.11 SOURCE=freetype-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/freetype-$VERSION SOURCE_URL[0]=$SFORGE_URL/freetype SOURCE_URL[1]=http://savannah.nongnu.org/download/freetype - SOURCE_VFY=sha1:3d0e083c7788bab949a7ed9dc9923411ec040d19 + SOURCE_VFY=sha1:693e1b4e423557975c2b2aca63559bc592533a0e WEB_SITE=http://www.freetype.org ENTERED=20010922 - UPDATED=20091007 + UPDATED=20091011 SHORT="A free, quality, portable font engine" cat << EOF From florin at lunar-linux.org Sun Oct 11 07:56:02 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 08:56:02 +0300 Subject: [Lunar-commits] freetype2: add some patches to improve font rendering. Message-ID: <20091011055645.4EE989B1F0@doppio.foo-projects.org> commit 3ff8571aa00efee5f45bb5196bb9e44f4acd8d75 Author: Florin Braescu Date: Sun Oct 11 08:56:02 2009 +0300 freetype2: add some patches to improve font rendering. --- graphics/freetype2/BUILD | 2 ++ graphics/freetype2/DETAILS | 3 +++ 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/graphics/freetype2/BUILD b/graphics/freetype2/BUILD index 112f11b..acfc6e5 100644 --- a/graphics/freetype2/BUILD +++ b/graphics/freetype2/BUILD @@ -1,5 +1,7 @@ ( + patch_it $SOURCE_CACHE/$SOURCE2 1 && + if [ $BYTECODE == "y" ] ; then sed -i -r 's:.*(#.*BYTE.*) .*:\1:' \ include/freetype/config/ftoption.h diff --git a/graphics/freetype2/DETAILS b/graphics/freetype2/DETAILS index cd54279..23c39c6 100644 --- a/graphics/freetype2/DETAILS +++ b/graphics/freetype2/DETAILS @@ -1,10 +1,13 @@ MODULE=freetype2 VERSION=2.3.11 SOURCE=freetype-$VERSION.tar.bz2 + SOURCE2=freetype-$VERSION-lunar.patch.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/freetype-$VERSION SOURCE_URL[0]=$SFORGE_URL/freetype SOURCE_URL[1]=http://savannah.nongnu.org/download/freetype + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:693e1b4e423557975c2b2aca63559bc592533a0e + SOURCE2_VFY=sha1:7135d66d1495446882ec940041246712aa6145c7 WEB_SITE=http://www.freetype.org ENTERED=20010922 UPDATED=20091011 From florin at lunar-linux.org Sun Oct 11 08:10:09 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 09:10:09 +0300 Subject: [Lunar-commits] xfce4-panel: add two needed depends, exo and libwnck and a patch for better font rendering. Message-ID: <20091011061052.8F5B49B1F0@doppio.foo-projects.org> commit 601379c329b1fa8404f3c83d9c74771f7330567a Author: Florin Braescu Date: Sun Oct 11 09:10:09 2009 +0300 xfce4-panel: add two needed depends, exo and libwnck and a patch for better font rendering. --- xfce4/core/xfce4-panel/BUILD | 2 ++ xfce4/core/xfce4-panel/DEPENDS | 2 ++ xfce4/core/xfce4-panel/DETAILS | 5 ++++- 3 files changed, 8 insertions(+), 1 deletions(-) diff --git a/xfce4/core/xfce4-panel/BUILD b/xfce4/core/xfce4-panel/BUILD index 0a2dd59..4aba94d 100644 --- a/xfce4/core/xfce4-panel/BUILD +++ b/xfce4/core/xfce4-panel/BUILD @@ -1,6 +1,8 @@ ( [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + patch_it $SOURCE_CACHE/$SOURCE2 1 && + # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && diff --git a/xfce4/core/xfce4-panel/DEPENDS b/xfce4/core/xfce4-panel/DEPENDS index 500db30..0a3ef21 100644 --- a/xfce4/core/xfce4-panel/DEPENDS +++ b/xfce4/core/xfce4-panel/DEPENDS @@ -1 +1,3 @@ +depends exo +depends libwnck depends libxfcegui4 diff --git a/xfce4/core/xfce4-panel/DETAILS b/xfce4/core/xfce4-panel/DETAILS index cd8525a..89503d8 100644 --- a/xfce4/core/xfce4-panel/DETAILS +++ b/xfce4/core/xfce4-panel/DETAILS @@ -1,12 +1,15 @@ MODULE=xfce4-panel VERSION=4.6.1 SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE2=$MODULE-$VERSION-cairo.patch.bz2 SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:613c66f6402feba7983a7effb008f091182350d2 + SOURCE2_VFY=sha1:f63c5b1fd72ae732c4a54665ac593fd3ae9d2787 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 - UPDATED=20090424 + UPDATED=20091011 SHORT="Xfce4 panel" cat << EOF From florin at lunar-linux.org Sun Oct 11 08:43:50 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 09:43:50 +0300 Subject: [Lunar-commits] cairo: improve a bit the lcd filter patch. Message-ID: <20091011064411.AB31B9B1F0@doppio.foo-projects.org> commit 677a7ff58ebd00db4e38b68c15bdf667e292e821 Author: Florin Braescu Date: Sun Oct 11 09:43:50 2009 +0300 cairo: improve a bit the lcd filter patch. --- graphics/cairo/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/cairo/DETAILS b/graphics/cairo/DETAILS index 0950c67..6a763b3 100644 --- a/graphics/cairo/DETAILS +++ b/graphics/cairo/DETAILS @@ -1,14 +1,14 @@ MODULE=cairo VERSION=1.8.8 SOURCE=$MODULE-$VERSION.tar.gz - SOURCE2=$MODULE-1.8.0-lcd-filter.patch.bz2 + SOURCE2=$MODULE-$VERSION-lcd-filter.patch.bz2 SOURCE_URL=http://cairographics.org/releases SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:e4b8b219427d1ca3dc95f5f44914dce1ae0c3766 - SOURCE2_VFY=sha1:dca17faf85fa02a5325d11d38161475d42a1b3b2 + SOURCE2_VFY=sha1:378103f0928297c446edea16d4ad84665a6f914a WEB_SITE=http://cairographics.org ENTERED=20040506 - UPDATED=20090617 + UPDATED=20091011 SHORT="A multi-platform 2D vector graphics library" cat << EOF From florin at lunar-linux.org Sun Oct 11 09:04:55 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 10:04:55 +0300 Subject: [Lunar-commits] eric4: version bumped to 4.3.8. Message-ID: <20091011070513.00A289B1F0@doppio.foo-projects.org> commit e4eb3892d13a0091caadc1e6415898cd7ac40de9 Author: Florin Braescu Date: Sun Oct 11 10:04:55 2009 +0300 eric4: version bumped to 4.3.8. Bugfixes release. --- editors/eric4/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/editors/eric4/DETAILS b/editors/eric4/DETAILS index 456b51f..e591757 100644 --- a/editors/eric4/DETAILS +++ b/editors/eric4/DETAILS @@ -1,11 +1,11 @@ MODULE=eric4 - VERSION=4.3.7.1 + VERSION=4.3.8 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/eric-ide - SOURCE_VFY=sha1:158de29ddefedceee7832c9a988d8f1146e5faae + SOURCE_VFY=sha1:e9479c09fba9b82068fa304cd07be13a34a75e26 WEB_SITE=http://www.die-offenbachs.de/detlev/eric ENTERED=20080914 - UPDATED=20090906 + UPDATED=20091011 SHORT="A full featured Python IDE" cat << EOF From florin at lunar-linux.org Sun Oct 11 09:15:06 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 10:15:06 +0300 Subject: [Lunar-commits] libexif: version bumped to 0.6.18. Message-ID: <20091011071614.9C4B09B1F0@doppio.foo-projects.org> commit 9d1b8afe5da9fb124acf7376329e9e7ce20ea18a Author: Florin Braescu Date: Sun Oct 11 10:15:06 2009 +0300 libexif: version bumped to 0.6.18. This release's highlights include greatly expanded API documentation and sample programs, improved support for Pentax, Casio, and Epson MakerNotes, increased stability in the face of corrupted JPEG files, and proper output alignment in UTF-8 locales. EXIF tag fixup is now more eager in the default case, which means that more mandatory tags are added when needed and others are automatically corrected to be of the proper data types. New translations for the da, is, it, lv, pt_BR, and sr locales are also included. --- libs/libexif/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/libexif/DETAILS b/libs/libexif/DETAILS index 964837f..4397e21 100644 --- a/libs/libexif/DETAILS +++ b/libs/libexif/DETAILS @@ -1,14 +1,14 @@ MODULE=libexif - VERSION=0.6.17 + VERSION=0.6.18 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE2=libexif-0.6.16-libexif.pc.in.patch SOURCE_URL=$SFORGE_URL/$MODULE SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:dbb8a0e977768b76e26d66693c63ea25768ee648 + SOURCE_VFY=sha1:b0b2b9ec9fcbe5aee235a98f8269545ca36490ac SOURCE2_VFY=sha1:b2dd1b9a6d1e11933a12638187c6c6b08aa99d22 WEB_SITE=http://sourceforge.net/projects/libexif ENTERED=20030108 - UPDATED=20081119 + UPDATED=20091011 SHORT="A library for parsing, editing, and saving EXIF data" cat << EOF From florin at lunar-linux.org Sun Oct 11 16:14:09 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 17:14:09 +0300 Subject: [Lunar-commits] mousepad: fix the compilation. Message-ID: <20091011141431.83A699B1F0@doppio.foo-projects.org> commit 8fcaea06765322db2ebe8a41943d60a6ceee672f Author: Florin Braescu Date: Sun Oct 11 17:14:09 2009 +0300 mousepad: fix the compilation. --- xfce4/apps/mousepad/BUILD | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/xfce4/apps/mousepad/BUILD b/xfce4/apps/mousepad/BUILD index 33863eb..4702d71 100644 --- a/xfce4/apps/mousepad/BUILD +++ b/xfce4/apps/mousepad/BUILD @@ -1,11 +1,10 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - - default_cvs_build && - + ./configure --build=$BUILD \ --prefix=${MODULE_PREFIX} \ $OPTS && From florin at lunar-linux.org Sun Oct 11 16:42:24 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 17:42:24 +0300 Subject: [Lunar-commits] xfce4-power-manager: fix the sha1 sum. Message-ID: <20091011144248.794FC9B1F0@doppio.foo-projects.org> commit 2d5da2c70f3e55aa50d1df9e3964e8fb95886c29 Author: Florin Braescu Date: Sun Oct 11 17:42:24 2009 +0300 xfce4-power-manager: fix the sha1 sum. --- xfce4/goodies/xfce4-power-manager/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xfce4/goodies/xfce4-power-manager/DETAILS b/xfce4/goodies/xfce4-power-manager/DETAILS index 1de7847..3e0f4d9 100644 --- a/xfce4/goodies/xfce4-power-manager/DETAILS +++ b/xfce4/goodies/xfce4-power-manager/DETAILS @@ -2,7 +2,7 @@ VERSION=0.6.5 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://goodies.xfce.org/releases/$MODULE - SOURCE_VFY=sha1:c44a3106d17816cec2ce0be970d9ac2331c80a75 + SOURCE_VFY=sha1:c7023147dcdca10be8d36ceb5b67a8bbd2f630f7 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20090307 From florin at lunar-linux.org Sun Oct 11 16:53:11 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 17:53:11 +0300 Subject: [Lunar-commits] xfce4-xfapplet-plugin: add ORBit2 needed dependency. Message-ID: <20091011145345.153EE9B1F0@doppio.foo-projects.org> commit 000ce80fa4812b0440bf0db2b26a37d68bade8b2 Author: Florin Braescu Date: Sun Oct 11 17:53:11 2009 +0300 xfce4-xfapplet-plugin: add ORBit2 needed dependency. --- xfce4/goodies/xfce4-xfapplet-plugin/DEPENDS | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/xfce4/goodies/xfce4-xfapplet-plugin/DEPENDS b/xfce4/goodies/xfce4-xfapplet-plugin/DEPENDS index cb293d3..5057374 100644 --- a/xfce4/goodies/xfce4-xfapplet-plugin/DEPENDS +++ b/xfce4/goodies/xfce4-xfapplet-plugin/DEPENDS @@ -1 +1,2 @@ depends xfce4-panel +depends ORBit2 From florin at lunar-linux.org Sun Oct 11 16:58:34 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 17:58:34 +0300 Subject: [Lunar-commits] xfce4-xkb-plugin: added the needed librsvg depend. Message-ID: <20091011145900.4888D9B1F0@doppio.foo-projects.org> commit 0f3937ba037705dedb91bccbc059b57251f82f66 Author: Florin Braescu Date: Sun Oct 11 17:58:34 2009 +0300 xfce4-xkb-plugin: added the needed librsvg depend. --- xfce4/goodies/xfce4-xkb-plugin/DEPENDS | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/xfce4/goodies/xfce4-xkb-plugin/DEPENDS b/xfce4/goodies/xfce4-xkb-plugin/DEPENDS index 48fc1ce..6610659 100644 --- a/xfce4/goodies/xfce4-xkb-plugin/DEPENDS +++ b/xfce4/goodies/xfce4-xkb-plugin/DEPENDS @@ -1,2 +1,3 @@ depends xfce4-panel depends libxklavier +depends librsvg \ No newline at end of file From florin at lunar-linux.org Sun Oct 11 18:45:41 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 19:45:41 +0300 Subject: [Lunar-commits] xfburn: version bumped to 0.4.2. Message-ID: <20091011164624.F1E27F3C13@doppio.foo-projects.org> commit e27aa666412c91b64e8a09c20669863d476e70d2 Author: Florin Braescu Date: Sun Oct 11 19:45:41 2009 +0300 xfburn: version bumped to 0.4.2. Changes: - Internal updates in preparation for better handling of disc detection - Handle drag and drop of filenames with spaces from thunar - Insert dragged file dropped on top of another file instead of crashing - Properly detect the available space on an audio CD - Track ownership of tracks in compositions correctly - Resample audio files with gstreamer if necessary - Show symbolic links in the file browser - Implement the "show hidden files" option. --- xfce4/apps/xfburn/DEPENDS | 4 ++++ xfce4/apps/xfburn/DETAILS | 10 ++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/xfce4/apps/xfburn/DEPENDS b/xfce4/apps/xfburn/DEPENDS index abd6b82..b715db6 100644 --- a/xfce4/apps/xfburn/DEPENDS +++ b/xfce4/apps/xfburn/DEPENDS @@ -2,3 +2,7 @@ depends libisofs depends libxfcegui4 depends exo depends Thunar + +optional_depends "gstreamer-10" "" "" "for gstreamer support" +optional_depends "dbus" "" "" "for D-BUS support" +optional_depends "hal" "" "" "for HAL support" diff --git a/xfce4/apps/xfburn/DETAILS b/xfce4/apps/xfburn/DETAILS index f6c1786..cac2953 100644 --- a/xfce4/apps/xfburn/DETAILS +++ b/xfce4/apps/xfburn/DETAILS @@ -1,13 +1,15 @@ MODULE=xfburn - VERSION=0.4.1 + VERSION=0.4.2 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE - SOURCE_VFY=sha1:7086fcdb2fa2c1b634cf64a9eef704656e774c26 + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://mocha.xfce.org/archive/src/apps/xfburn/0.4 + SOURCE_VFY=sha1:dbc1731b8c690b0b29d3567b8e1cd93646b0c7e7 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://goodies.xfce.org/projects/applications/xfburn ENTERED=20090227 - UPDATED=20090227 + UPDATED=20091011 SHORT="Cd burning application for Xfce" + cat << EOF Cd burning application for Xfce EOF From brebs at lunar-linux.org Sun Oct 11 18:51:05 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Sun, 11 Oct 2009 23:51:05 +0700 Subject: [Lunar-commits] exo: version bump to 0.3.104 Message-ID: <20091011165438.17F8CF3C48@doppio.foo-projects.org> commit 60cd20d1cffcb5143de6aa574ee0a15a392af69a Author: Paul Bredbury Date: Sun Oct 11 23:51:05 2009 +0700 exo: version bump to 0.3.104 --- xfce4/core/exo/BUILD | 7 +++++++ xfce4/core/exo/DETAILS | 11 ++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/xfce4/core/exo/BUILD b/xfce4/core/exo/BUILD new file mode 100644 index 0000000..f06db4c --- /dev/null +++ b/xfce4/core/exo/BUILD @@ -0,0 +1,7 @@ +( + + OPTS+=" --disable-static" && + + default_build + +) > $C_FIFO 2>&1 diff --git a/xfce4/core/exo/DETAILS b/xfce4/core/exo/DETAILS index 5a46a97..0831a2f 100644 --- a/xfce4/core/exo/DETAILS +++ b/xfce4/core/exo/DETAILS @@ -1,12 +1,13 @@ MODULE=exo - VERSION=0.3.102 + VERSION=0.3.104 + MAJOR=$(echo $VERSION | cut -d. -f1,2) SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://archive.xfce.org/src/xfce/exo/0.3/ - SOURCE_VFY=sha1:ef85488a713911d1afeea5ddd8d70943f2c5a323 + SOURCE_URL=http://archive.xfce.org/src/xfce/exo/$MAJOR/ + SOURCE_VFY=sha1:ddd49dc4efd32697c195f2790c8459b5f2b7e624 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://libexo.os-cillation.com + WEB_SITE=http://www.os-cillation.de/en/open-source-projekte/libexo/ ENTERED=20040930 - UPDATED=20090821 + UPDATED=20091008 SHORT="the Xfce extension library" cat << EOF From florin at lunar-linux.org Sun Oct 11 19:00:32 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 20:00:32 +0300 Subject: [Lunar-commits] gigolo, xfce4-power-manager, xfce4-taskmanager: move them from goodies to apps dir of xfce4. Message-ID: <20091011170207.6A5B3F3C59@doppio.foo-projects.org> commit d0e032907037876f5e384617ae0c41d026c7d519 Author: Florin Braescu Date: Sun Oct 11 20:00:32 2009 +0300 gigolo, xfce4-power-manager, xfce4-taskmanager: move them from goodies to apps dir of xfce4. --- xfce4/apps/gigolo/BUILD | 7 +++++++ xfce4/apps/gigolo/DEPENDS | 1 + xfce4/apps/gigolo/DETAILS | 16 ++++++++++++++++ xfce4/apps/xfce4-power-manager/BUILD | 13 +++++++++++++ xfce4/apps/xfce4-power-manager/DEPENDS | 2 ++ xfce4/apps/xfce4-power-manager/DETAILS | 13 +++++++++++++ xfce4/apps/xfce4-taskmanager/BUILD | 13 +++++++++++++ xfce4/apps/xfce4-taskmanager/DEPENDS | 2 ++ xfce4/apps/xfce4-taskmanager/DETAILS | 15 +++++++++++++++ xfce4/goodies/gigolo/BUILD | 7 ------- xfce4/goodies/gigolo/DEPENDS | 1 - xfce4/goodies/gigolo/DETAILS | 16 ---------------- xfce4/goodies/xfce4-power-manager/BUILD | 13 ------------- xfce4/goodies/xfce4-power-manager/DEPENDS | 2 -- xfce4/goodies/xfce4-power-manager/DETAILS | 13 ------------- xfce4/goodies/xfce4-taskmanager/BUILD | 13 ------------- xfce4/goodies/xfce4-taskmanager/DEPENDS | 2 -- xfce4/goodies/xfce4-taskmanager/DETAILS | 15 --------------- 18 files changed, 82 insertions(+), 82 deletions(-) diff --git a/xfce4/apps/gigolo/BUILD b/xfce4/apps/gigolo/BUILD new file mode 100644 index 0000000..627c8d7 --- /dev/null +++ b/xfce4/apps/gigolo/BUILD @@ -0,0 +1,7 @@ +( + ./waf configure --prefix=/usr && + ./waf build && + prepare_install && + ./waf install + +) > $C_FIFO 2>&1 diff --git a/xfce4/apps/gigolo/DEPENDS b/xfce4/apps/gigolo/DEPENDS new file mode 100644 index 0000000..df6e870 --- /dev/null +++ b/xfce4/apps/gigolo/DEPENDS @@ -0,0 +1 @@ +depends gvfs diff --git a/xfce4/apps/gigolo/DETAILS b/xfce4/apps/gigolo/DETAILS new file mode 100644 index 0000000..691b541 --- /dev/null +++ b/xfce4/apps/gigolo/DETAILS @@ -0,0 +1,16 @@ + MODULE=gigolo + VERSION=0.3.2 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=http://files.uvena.de/gigolo + SOURCE_VFY=sha1:68f1e9c88a48a6680e43b71179ce97fb52084c54 + WEBSITE=http://www.uvena.de/gigolo + ENTERED=20090329 + UPDATED=20090427 + SHORT="frontend to manage connections to remote filesystems" + +cat << EOF +Gigolo is a frontend to easily manage connections to remote filesystems +using GIO/GVfs. It allows you to quickly connect/mount a remote +filesystem and manage bookmarks of such. +About the name: It mounts what it is told to. +EOF diff --git a/xfce4/apps/xfce4-power-manager/BUILD b/xfce4/apps/xfce4-power-manager/BUILD new file mode 100644 index 0000000..12e8e69 --- /dev/null +++ b/xfce4/apps/xfce4-power-manager/BUILD @@ -0,0 +1,13 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/apps/xfce4-power-manager/DEPENDS b/xfce4/apps/xfce4-power-manager/DEPENDS new file mode 100644 index 0000000..1024491 --- /dev/null +++ b/xfce4/apps/xfce4-power-manager/DEPENDS @@ -0,0 +1,2 @@ +depends xfce4-panel +depends pm-utils diff --git a/xfce4/apps/xfce4-power-manager/DETAILS b/xfce4/apps/xfce4-power-manager/DETAILS new file mode 100644 index 0000000..3e0f4d9 --- /dev/null +++ b/xfce4/apps/xfce4-power-manager/DETAILS @@ -0,0 +1,13 @@ + MODULE=xfce4-power-manager + VERSION=0.6.5 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=http://goodies.xfce.org/releases/$MODULE + SOURCE_VFY=sha1:c7023147dcdca10be8d36ceb5b67a8bbd2f630f7 + MODULE_PREFIX=${XFCE4_PREFIX:-/usr} + WEB_SITE=http://www.xfce.org + ENTERED=20090307 + UPDATED=20090405 + SHORT="A power manager Xfce" + +cat << EOF +EOF diff --git a/xfce4/apps/xfce4-taskmanager/BUILD b/xfce4/apps/xfce4-taskmanager/BUILD new file mode 100644 index 0000000..0a2dd59 --- /dev/null +++ b/xfce4/apps/xfce4-taskmanager/BUILD @@ -0,0 +1,13 @@ +( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc + + # make sure proper PKG_CONFIG_PATH is set + export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && + + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && + + default_make + +) > $C_FIFO 2>&1 diff --git a/xfce4/apps/xfce4-taskmanager/DEPENDS b/xfce4/apps/xfce4-taskmanager/DEPENDS new file mode 100644 index 0000000..5834a03 --- /dev/null +++ b/xfce4/apps/xfce4-taskmanager/DEPENDS @@ -0,0 +1,2 @@ +depends libxfcegui4 +depends libxfce4util diff --git a/xfce4/apps/xfce4-taskmanager/DETAILS b/xfce4/apps/xfce4-taskmanager/DETAILS new file mode 100644 index 0000000..20d84f1 --- /dev/null +++ b/xfce4/apps/xfce4-taskmanager/DETAILS @@ -0,0 +1,15 @@ + MODULE=xfce4-taskmanager + VERSION=0.4.1 + SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE_URL=http://goodies.xfce.org/releases/$MODULE + SOURCE_VFY=sha1:e93824f9e9a369f6353f4b22251ff7f18468dbd4 + MODULE_PREFIX=${XFCE4_PREFIX:-/usr} + WEB_SITE=http://www.xfce.org + ENTERED=20061124 + UPDATED=20090420 + SHORT="A task manager for the XFCE" + +cat << EOF +Xfce4-taskmanager is a simple taskmanager for the Xfce Desktop +Environment. +EOF diff --git a/xfce4/goodies/gigolo/BUILD b/xfce4/goodies/gigolo/BUILD deleted file mode 100644 index 627c8d7..0000000 --- a/xfce4/goodies/gigolo/BUILD +++ /dev/null @@ -1,7 +0,0 @@ -( - ./waf configure --prefix=/usr && - ./waf build && - prepare_install && - ./waf install - -) > $C_FIFO 2>&1 diff --git a/xfce4/goodies/gigolo/DEPENDS b/xfce4/goodies/gigolo/DEPENDS deleted file mode 100644 index df6e870..0000000 --- a/xfce4/goodies/gigolo/DEPENDS +++ /dev/null @@ -1 +0,0 @@ -depends gvfs diff --git a/xfce4/goodies/gigolo/DETAILS b/xfce4/goodies/gigolo/DETAILS deleted file mode 100644 index 691b541..0000000 --- a/xfce4/goodies/gigolo/DETAILS +++ /dev/null @@ -1,16 +0,0 @@ - MODULE=gigolo - VERSION=0.3.2 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://files.uvena.de/gigolo - SOURCE_VFY=sha1:68f1e9c88a48a6680e43b71179ce97fb52084c54 - WEBSITE=http://www.uvena.de/gigolo - ENTERED=20090329 - UPDATED=20090427 - SHORT="frontend to manage connections to remote filesystems" - -cat << EOF -Gigolo is a frontend to easily manage connections to remote filesystems -using GIO/GVfs. It allows you to quickly connect/mount a remote -filesystem and manage bookmarks of such. -About the name: It mounts what it is told to. -EOF diff --git a/xfce4/goodies/xfce4-power-manager/BUILD b/xfce4/goodies/xfce4-power-manager/BUILD deleted file mode 100644 index 12e8e69..0000000 --- a/xfce4/goodies/xfce4-power-manager/BUILD +++ /dev/null @@ -1,13 +0,0 @@ -( - [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc - - # make sure proper PKG_CONFIG_PATH is set - export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && - - default_make - -) > $C_FIFO 2>&1 diff --git a/xfce4/goodies/xfce4-power-manager/DEPENDS b/xfce4/goodies/xfce4-power-manager/DEPENDS deleted file mode 100644 index 1024491..0000000 --- a/xfce4/goodies/xfce4-power-manager/DEPENDS +++ /dev/null @@ -1,2 +0,0 @@ -depends xfce4-panel -depends pm-utils diff --git a/xfce4/goodies/xfce4-power-manager/DETAILS b/xfce4/goodies/xfce4-power-manager/DETAILS deleted file mode 100644 index 3e0f4d9..0000000 --- a/xfce4/goodies/xfce4-power-manager/DETAILS +++ /dev/null @@ -1,13 +0,0 @@ - MODULE=xfce4-power-manager - VERSION=0.6.5 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE - SOURCE_VFY=sha1:c7023147dcdca10be8d36ceb5b67a8bbd2f630f7 - MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://www.xfce.org - ENTERED=20090307 - UPDATED=20090405 - SHORT="A power manager Xfce" - -cat << EOF -EOF diff --git a/xfce4/goodies/xfce4-taskmanager/BUILD b/xfce4/goodies/xfce4-taskmanager/BUILD deleted file mode 100644 index 0a2dd59..0000000 --- a/xfce4/goodies/xfce4-taskmanager/BUILD +++ /dev/null @@ -1,13 +0,0 @@ -( - [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc - - # make sure proper PKG_CONFIG_PATH is set - export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && - - default_make - -) > $C_FIFO 2>&1 diff --git a/xfce4/goodies/xfce4-taskmanager/DEPENDS b/xfce4/goodies/xfce4-taskmanager/DEPENDS deleted file mode 100644 index 5834a03..0000000 --- a/xfce4/goodies/xfce4-taskmanager/DEPENDS +++ /dev/null @@ -1,2 +0,0 @@ -depends libxfcegui4 -depends libxfce4util diff --git a/xfce4/goodies/xfce4-taskmanager/DETAILS b/xfce4/goodies/xfce4-taskmanager/DETAILS deleted file mode 100644 index 20d84f1..0000000 --- a/xfce4/goodies/xfce4-taskmanager/DETAILS +++ /dev/null @@ -1,15 +0,0 @@ - MODULE=xfce4-taskmanager - VERSION=0.4.1 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE - SOURCE_VFY=sha1:e93824f9e9a369f6353f4b22251ff7f18468dbd4 - MODULE_PREFIX=${XFCE4_PREFIX:-/usr} - WEB_SITE=http://www.xfce.org - ENTERED=20061124 - UPDATED=20090420 - SHORT="A task manager for the XFCE" - -cat << EOF -Xfce4-taskmanager is a simple taskmanager for the Xfce Desktop -Environment. -EOF From florin at lunar-linux.org Sun Oct 11 19:31:05 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 20:31:05 +0300 Subject: [Lunar-commits] xfce4-cpugraph-plugin: version bumped to 0.4.0. Message-ID: <20091011173141.AD443F3D6B@doppio.foo-projects.org> commit 97799ffb8044988c36937ac311e38064378af2f3 Author: Florin Braescu Date: Sun Oct 11 20:31:05 2009 +0300 xfce4-cpugraph-plugin: version bumped to 0.4.0. Changes: - Cleanup/Refactoring all code - Split in several file - Add one cpu bar graph activity for each cpu core - Remove fire and frequency color mode - Remove time scalling view mode - Remove *BSD code - Add a new view mode : the grid - Add an associate customizable command. --- xfce4/goodies/xfce4-cpugraph-plugin/DETAILS | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/xfce4/goodies/xfce4-cpugraph-plugin/DETAILS b/xfce4/goodies/xfce4-cpugraph-plugin/DETAILS index 6101ff6..871992a 100644 --- a/xfce4/goodies/xfce4-cpugraph-plugin/DETAILS +++ b/xfce4/goodies/xfce4-cpugraph-plugin/DETAILS @@ -1,12 +1,14 @@ MODULE=xfce4-cpugraph-plugin - VERSION=0.3.0 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:d869625350d6c0ae4bef3203f03bbc409773494f + VERSION=0.4.0 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://mocha.xfce.org/archives/src/panel-plugins/xfce4-cpugraph-plugin/0.4 + SOURCE_VFY=sha1:a4edf76119b053a5d7aa3c04a272d0dda31e2f71 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20061124 - UPDATED=20061124 + UPDATED=20091011 SHORT="" + cat << EOF EOF From tchan at lunar-linux.org Sun Oct 11 19:39:54 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Sun, 11 Oct 2009 12:39:54 -0500 Subject: [Lunar-commits] gzip: KEEP the source as tar.gz NOT tar.xz This is really stupid to require the xz module to be able to unpack the GZIP source code. Everyone has gzip on their box from the Lunar ISO. Do NOT change this module over to tar.xz. This means you! Message-ID: <20091011174201.78DA3F3E25@doppio.foo-projects.org> commit 7ca5e78a4e8347e4b6b995b76a63966e22c53d94 Author: Terry Chan Date: Sun Oct 11 12:39:54 2009 -0500 gzip: KEEP the source as tar.gz NOT tar.xz This is really stupid to require the xz module to be able to unpack the GZIP source code. Everyone has gzip on their box from the Lunar ISO. Do NOT change this module over to tar.xz. This means you! --- archive/gzip/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/archive/gzip/DETAILS b/archive/gzip/DETAILS index 676f3e2..bb14491 100644 --- a/archive/gzip/DETAILS +++ b/archive/gzip/DETAILS @@ -1,12 +1,12 @@ MODULE=gzip VERSION=1.3.13 - SOURCE=$MODULE-$VERSION.tar.xz + SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL[0]=ftp://ftp.gnu.org/pub/gnu/$MODULE/ SOURCE_URL[1]=http://www.funet.fi/pub/gnu/alpha/gnu/$MODULE/ - SOURCE_VFY=sha1:4085728fe589cd97944fd60b0255626386a7efb3 + SOURCE_VFY=sha1:7b8cc01af1ba90cb4b5854b6c0510999823174cf WEB_SITE=http://www.gzip.org ENTERED=20010922 - UPDATED=20091007 + UPDATED=20091011 SHORT="Compression utility designed to replace compress" cat << EOF gzip - Compresses and decompresses files From florin at lunar-linux.org Sun Oct 11 19:44:49 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 20:44:49 +0300 Subject: [Lunar-commits] xfce4-battery-plugin: small tweaks. Message-ID: <20091011174517.CDD4BF3E25@doppio.foo-projects.org> commit 88ce30609b0417d34a217edeee08300cedda32db Author: Florin Braescu Date: Sun Oct 11 20:44:49 2009 +0300 xfce4-battery-plugin: small tweaks. --- xfce4/goodies/xfce4-battery-plugin/BUILD | 7 ++++--- xfce4/goodies/xfce4-cellmodem-plugin/BUILD | 6 +++--- xfce4/goodies/xfce4-cpufreq-plugin/BUILD | 6 +++--- xfce4/goodies/xfce4-cpugraph-plugin/BUILD | 6 +++--- xfce4/goodies/xfce4-datetime-plugin/BUILD | 7 ++++--- 5 files changed, 17 insertions(+), 15 deletions(-) diff --git a/xfce4/goodies/xfce4-battery-plugin/BUILD b/xfce4/goodies/xfce4-battery-plugin/BUILD index 12e8e69..ee3c309 100644 --- a/xfce4/goodies/xfce4-battery-plugin/BUILD +++ b/xfce4/goodies/xfce4-battery-plugin/BUILD @@ -1,12 +1,13 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-cellmodem-plugin/BUILD b/xfce4/goodies/xfce4-cellmodem-plugin/BUILD index 12e8e69..a9262d3 100644 --- a/xfce4/goodies/xfce4-cellmodem-plugin/BUILD +++ b/xfce4/goodies/xfce4-cellmodem-plugin/BUILD @@ -4,9 +4,9 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-cpufreq-plugin/BUILD b/xfce4/goodies/xfce4-cpufreq-plugin/BUILD index 12e8e69..a9262d3 100644 --- a/xfce4/goodies/xfce4-cpufreq-plugin/BUILD +++ b/xfce4/goodies/xfce4-cpufreq-plugin/BUILD @@ -4,9 +4,9 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-cpugraph-plugin/BUILD b/xfce4/goodies/xfce4-cpugraph-plugin/BUILD index 12e8e69..a9262d3 100644 --- a/xfce4/goodies/xfce4-cpugraph-plugin/BUILD +++ b/xfce4/goodies/xfce4-cpugraph-plugin/BUILD @@ -4,9 +4,9 @@ # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-datetime-plugin/BUILD b/xfce4/goodies/xfce4-datetime-plugin/BUILD index 12e8e69..ee3c309 100644 --- a/xfce4/goodies/xfce4-datetime-plugin/BUILD +++ b/xfce4/goodies/xfce4-datetime-plugin/BUILD @@ -1,12 +1,13 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make From florin at lunar-linux.org Sun Oct 11 19:54:53 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 20:54:53 +0300 Subject: [Lunar-commits] xfce4-dict-plugin: version bumped to 0.3.0. Message-ID: <20091011175526.3F0E6F3EDF@doppio.foo-projects.org> commit 756f17f31304e4c8b8cc205e8b7650ccf4cd106c Author: Florin Braescu Date: Sun Oct 11 20:54:53 2009 +0300 xfce4-dict-plugin: version bumped to 0.3.0. Don't use C++-style comments and fix some compiler warnings. When dragging text into the main entry text field, delete the previous text before to not append the dragged text. --- xfce4/goodies/xfce4-dict-plugin/BUILD | 7 ++++--- xfce4/goodies/xfce4-dict-plugin/DETAILS | 11 ++++++----- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/xfce4/goodies/xfce4-dict-plugin/BUILD b/xfce4/goodies/xfce4-dict-plugin/BUILD index 12e8e69..ee3c309 100644 --- a/xfce4/goodies/xfce4-dict-plugin/BUILD +++ b/xfce4/goodies/xfce4-dict-plugin/BUILD @@ -1,12 +1,13 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-dict-plugin/DETAILS b/xfce4/goodies/xfce4-dict-plugin/DETAILS index fe991e6..2e9c1a7 100644 --- a/xfce4/goodies/xfce4-dict-plugin/DETAILS +++ b/xfce4/goodies/xfce4-dict-plugin/DETAILS @@ -1,12 +1,13 @@ MODULE=xfce4-dict-plugin - VERSION=0.2.1 - SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:bfaf060bf8491833640c65096c90e9473479388b + VERSION=0.3.0 + SOURCE=$MODULE-$VERSION.tar.gz + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://mocha.xfce.org/archive/src/panel-plugins/xfce4-dict-plugin/0.3 + SOURCE_VFY=sha1:39f1b52c79fc94f6b0200f80cbee86a3163e8db8 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://goodies.xfce.org/projects/panel-plugins/$MODULE ENTERED=20061124 - UPDATED=20070123 + UPDATED=20091011 SHORT="query a dictionary server for translation or explanation" cat << EOF From florin at lunar-linux.org Sun Oct 11 20:00:59 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 21:00:59 +0300 Subject: [Lunar-commits] xfce4-diskperf-plugin: version bumped to 2.2.0. Message-ID: <20091011180127.66418F3F69@doppio.foo-projects.org> commit 6e7783a9c0ee2ecc2883b5432f82dd01fea74f88 Author: Florin Braescu Date: Sun Oct 11 21:00:59 2009 +0300 xfce4-diskperf-plugin: version bumped to 2.2.0. Bugfixes release. --- xfce4/goodies/xfce4-diskperf-plugin/BUILD | 7 ++++--- xfce4/goodies/xfce4-diskperf-plugin/DETAILS | 13 +++++++------ 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/xfce4/goodies/xfce4-diskperf-plugin/BUILD b/xfce4/goodies/xfce4-diskperf-plugin/BUILD index 12e8e69..ee3c309 100644 --- a/xfce4/goodies/xfce4-diskperf-plugin/BUILD +++ b/xfce4/goodies/xfce4-diskperf-plugin/BUILD @@ -1,12 +1,13 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-diskperf-plugin/DETAILS b/xfce4/goodies/xfce4-diskperf-plugin/DETAILS index e29f94f..2ff3adc 100644 --- a/xfce4/goodies/xfce4-diskperf-plugin/DETAILS +++ b/xfce4/goodies/xfce4-diskperf-plugin/DETAILS @@ -1,15 +1,16 @@ MODULE=xfce4-diskperf-plugin - VERSION=2.1.0 + VERSION=2.2.0 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:66db93af32f4a3ca0ce931fed312b267a3a3dece + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://mocha.xfce.org/archive/src/panel-plugins/xfce4-diskperf-plugin/2.2 + SOURCE_VFY=sha1:d2691727807c56d49ab403d8828da25ad342588b MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20061124 - UPDATED=20070123 - SHORT="disk/partition performance monitor" + UPDATED=20091011 + SHORT="A disk/partition performance monitor" cat << EOF -this plugin displays instant disk/partition performance (bytes +This plugin displays instant disk/partition performance (bytes transfered per second) EOF From florin at lunar-linux.org Sun Oct 11 20:08:38 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 21:08:38 +0300 Subject: [Lunar-commits] xfce4-eyes-plugin: version bumped to 4.4.0. Message-ID: <20091011180909.86B819B1F0@doppio.foo-projects.org> commit 53aaa7cbfb44b525aec55c60d86566d09599e68c Author: Florin Braescu Date: Sun Oct 11 21:08:38 2009 +0300 xfce4-eyes-plugin: version bumped to 4.4.0. Bugfixes and improvements. --- xfce4/goodies/xfce4-eyes-plugin/BUILD | 7 ++++--- xfce4/goodies/xfce4-eyes-plugin/DETAILS | 11 ++++++----- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/xfce4/goodies/xfce4-eyes-plugin/BUILD b/xfce4/goodies/xfce4-eyes-plugin/BUILD index 12e8e69..ee3c309 100644 --- a/xfce4/goodies/xfce4-eyes-plugin/BUILD +++ b/xfce4/goodies/xfce4-eyes-plugin/BUILD @@ -1,12 +1,13 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-eyes-plugin/DETAILS b/xfce4/goodies/xfce4-eyes-plugin/DETAILS index caeb382..819bc18 100644 --- a/xfce4/goodies/xfce4-eyes-plugin/DETAILS +++ b/xfce4/goodies/xfce4-eyes-plugin/DETAILS @@ -1,13 +1,14 @@ MODULE=xfce4-eyes-plugin - VERSION=4.3.99.1 + VERSION=4.4.0 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:9c5dcd3eab98e3b5ce7f3609fea45cf9805cc2c2 + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://mocha.xfce.org/archive/src/panel-plugins/xfce4-eyes-plugin/4.4 + SOURCE_VFY=sha1:c081a1971b55491ab4441ef429ce30cc6a43a70b MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://goodies.xfce.org/projects/panel-plugins/$MODULE ENTERED=20061124 - UPDATED=20061124 - SHORT="the eyes on your Xfce panel" + UPDATED=20091011 + SHORT="The eyes on your Xfce panel" cat << EOF Eyes is a xfce4 panel plugin that adds eyes which watch your every From florin at lunar-linux.org Sun Oct 11 20:15:30 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 21:15:30 +0300 Subject: [Lunar-commits] xfce4-fsguard-plugin: version bunped to 0.4.2. Message-ID: <20091011181603.EEEB09B1F0@doppio.foo-projects.org> commit 49777bc56994d4030362948643643726ae33e793 Author: Florin Braescu Date: Sun Oct 11 21:15:30 2009 +0300 xfce4-fsguard-plugin: version bunped to 0.4.2. Changes: * Reverse the fraction of the progress * Switch "Hide button" with "Display button" * Replace xfce_themed_icon with gtk_icon_theme * Some GUI tweaks in the dialog * Display natural numbers in MB * Replace the label with a checkbox+label for the name * Fix pixbuf size in size-changed callback. --- xfce4/goodies/xfce4-fsguard-plugin/BUILD | 7 ++++--- xfce4/goodies/xfce4-fsguard-plugin/DETAILS | 9 +++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/xfce4/goodies/xfce4-fsguard-plugin/BUILD b/xfce4/goodies/xfce4-fsguard-plugin/BUILD index 12e8e69..ee3c309 100644 --- a/xfce4/goodies/xfce4-fsguard-plugin/BUILD +++ b/xfce4/goodies/xfce4-fsguard-plugin/BUILD @@ -1,12 +1,13 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-fsguard-plugin/DETAILS b/xfce4/goodies/xfce4-fsguard-plugin/DETAILS index 6092763..c9a2ee2 100644 --- a/xfce4/goodies/xfce4-fsguard-plugin/DETAILS +++ b/xfce4/goodies/xfce4-fsguard-plugin/DETAILS @@ -1,12 +1,13 @@ MODULE=xfce4-fsguard-plugin - VERSION=0.3.0 + VERSION=0.4.2 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:63241ada67681eff66f269bfd53d6d6b11a37d4b + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://moche.xfce.org/archive/src/panel-plugins/xfce4-fsguard-plugin/0.4 + SOURCE_VFY=sha1:1c7b4004aad6fe5669112297a46186de4a9e9d0e MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20061124 - UPDATED=20061124 + UPDATED=20091011 SHORT="" cat << EOF EOF From florin at lunar-linux.org Sun Oct 11 20:30:54 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 21:30:54 +0300 Subject: [Lunar-commits] xfce4-genmon-plugin: version bumped to 3.2. Message-ID: <20091011183119.4FA739B1F0@doppio.foo-projects.org> commit 429eef24395651ec320c53ef52d83bf8173d5307 Author: Florin Braescu Date: Sun Oct 11 21:30:54 2009 +0300 xfce4-genmon-plugin: version bumped to 3.2. Bugfixes release. --- xfce4/goodies/xfce4-genmon-plugin/BUILD | 7 ++++--- xfce4/goodies/xfce4-genmon-plugin/DETAILS | 13 +++++++------ 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/xfce4/goodies/xfce4-genmon-plugin/BUILD b/xfce4/goodies/xfce4-genmon-plugin/BUILD index 45f6946..3e8363b 100644 --- a/xfce4/goodies/xfce4-genmon-plugin/BUILD +++ b/xfce4/goodies/xfce4-genmon-plugin/BUILD @@ -1,12 +1,13 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-genmon-plugin/DETAILS b/xfce4/goodies/xfce4-genmon-plugin/DETAILS index a33a1d9..386408f 100644 --- a/xfce4/goodies/xfce4-genmon-plugin/DETAILS +++ b/xfce4/goodies/xfce4-genmon-plugin/DETAILS @@ -1,15 +1,16 @@ MODULE=xfce4-genmon-plugin - VERSION=3.1 + VERSION=3.2 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:afec76670999efd8a17db791451aa26bf62ce58d + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://mocha.xfce.org/archive/psrc/[anel-plugins/xfce4-genmon-plugin/3.2 + SOURCE_VFY=sha1:ea224cdcd08051f080e07a2175c71008963c6dde MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://goodies.xfce.org/projects/panel-plugins/$MODULE ENTERED=20061124 - UPDATED=20070602 - SHORT="script monitor" + UPDATED=20091011 + SHORT="A script monitor" cat << EOF -this plugin cyclically spawns the indicated script/program, captures +This plugin cyclically spawns the indicated script/program, captures its output (stdout) and displays the resulting string into the panel. EOF From florin at lunar-linux.org Sun Oct 11 20:36:26 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 21:36:26 +0300 Subject: [Lunar-commits] xfce4-mount-plugin: version bumped to 0.5.5. Message-ID: <20091011183701.25C279B1F0@doppio.foo-projects.org> commit ae4daf6487821e207d9895dbc34ab1b6bc6cbc73 Author: Florin Braescu Date: Sun Oct 11 21:36:26 2009 +0300 xfce4-mount-plugin: version bumped to 0.5.5. Version 0.5.5 now detects automatically mounted devices. Note that for unmounting them, you might need to setup special commands, like "pmount", or "sudo umount". Also does it automatically map the rather long name "/dev/mapper/logvol1/volume2" to "LVM 1:2". Currently, you cannot disable this behavior, as its is more than strongly recommended. Upon thousands of requests, I might consider adding another switch in the already rather big options dialog. --- xfce4/goodies/xfce4-mount-plugin/BUILD | 7 ++++--- xfce4/goodies/xfce4-mount-plugin/DETAILS | 13 +++++++------ 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/xfce4/goodies/xfce4-mount-plugin/BUILD b/xfce4/goodies/xfce4-mount-plugin/BUILD index 12e8e69..ee3c309 100644 --- a/xfce4/goodies/xfce4-mount-plugin/BUILD +++ b/xfce4/goodies/xfce4-mount-plugin/BUILD @@ -1,12 +1,13 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-mount-plugin/DETAILS b/xfce4/goodies/xfce4-mount-plugin/DETAILS index 7f4d3e0..8abfa90 100644 --- a/xfce4/goodies/xfce4-mount-plugin/DETAILS +++ b/xfce4/goodies/xfce4-mount-plugin/DETAILS @@ -1,14 +1,15 @@ MODULE=xfce4-mount-plugin - VERSION=0.4.8 + VERSION=0.5.5 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:abe5f3200e3a579890c122ccb1435adf25e7ee05 + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://goodies.xfce.org/releases/$MODULE + SOURCE_VFY=sha1:1215093edd37e684542dc14375a1c349eee64a2c MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://goodies.xfce.org/projects/panel-plugins/$MODULE ENTERED=20061124 - UPDATED=20061124 - SHORT="mount/umount utility for the panel" + UPDATED=20091011 + SHORT="A mount/umount utility for the panel" cat << EOF -mount/umount utility for the panel +A mount/umount utility for the panel. EOF From florin at lunar-linux.org Sun Oct 11 20:41:56 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 11 Oct 2009 21:41:56 +0300 Subject: [Lunar-commits] xfce4-mpc-plugin: version bumped to 0.3.3. Message-ID: <20091011184244.3ACA69B1F0@doppio.foo-projects.org> commit 841536637061ab4023af26b8cf0c3993df0cc62b Author: Florin Braescu Date: Sun Oct 11 21:41:56 2009 +0300 xfce4-mpc-plugin: version bumped to 0.3.3. Bugfixes and enhacements. --- xfce4/goodies/xfce4-mpc-plugin/BUILD | 7 ++++--- xfce4/goodies/xfce4-mpc-plugin/DEPENDS | 2 +- xfce4/goodies/xfce4-mpc-plugin/DETAILS | 11 ++++++----- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/xfce4/goodies/xfce4-mpc-plugin/BUILD b/xfce4/goodies/xfce4-mpc-plugin/BUILD index 12e8e69..ee3c309 100644 --- a/xfce4/goodies/xfce4-mpc-plugin/BUILD +++ b/xfce4/goodies/xfce4-mpc-plugin/BUILD @@ -1,12 +1,13 @@ ( + [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && - ./configure --build=$BUILD \ - --prefix=${MODULE_PREFIX} \ - $OPTS && + ./configure --build=$BUILD \ + --prefix=${MODULE_PREFIX} \ + $OPTS && default_make diff --git a/xfce4/goodies/xfce4-mpc-plugin/DEPENDS b/xfce4/goodies/xfce4-mpc-plugin/DEPENDS index 03d3e20..5ff652d 100644 --- a/xfce4/goodies/xfce4-mpc-plugin/DEPENDS +++ b/xfce4/goodies/xfce4-mpc-plugin/DEPENDS @@ -1,2 +1,2 @@ -depends xfce4-panel && +depends xfce4-panel depends mpd diff --git a/xfce4/goodies/xfce4-mpc-plugin/DETAILS b/xfce4/goodies/xfce4-mpc-plugin/DETAILS index 3299377..60b159d 100644 --- a/xfce4/goodies/xfce4-mpc-plugin/DETAILS +++ b/xfce4/goodies/xfce4-mpc-plugin/DETAILS @@ -1,13 +1,14 @@ MODULE=xfce4-mpc-plugin - VERSION=0.3.0 + VERSION=0.3.3 SOURCE=$MODULE-$VERSION.tar.gz - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE/ - SOURCE_VFY=sha1:76cab106db982ceaf779f5ac6cd6c5dc93004e10 + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://mocha.xfce.org/archive/src/panel-plugins/xfce4-mpc-plugin/0.3 + SOURCE_VFY=sha1:e79e403f6b4e3dfd16f80dfe02ab554294eda961 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20061124 - UPDATED=20070123 - SHORT="simple client Xfce plugin for Music Player Daemon" + UPDATED=20091011 + SHORT="A simple client Xfce plugin for Music Player Daemon" cat << EOF This is a simple client plugin for Music Player Daemon. From stumbles at lunar-linux.org Mon Oct 12 01:44:33 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sun, 11 Oct 2009 19:44:33 -0400 Subject: [Lunar-commits] webkit: Version bump. Message-ID: <20091011234500.E654A9B1F0@doppio.foo-projects.org> commit f8a02afb7a9ca367782567150603b26774f69bab Author: Dennis `stumbles` Veatch Date: Sun Oct 11 19:44:33 2009 -0400 webkit: Version bump. --- web/webkit/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web/webkit/DETAILS b/web/webkit/DETAILS index 01a5981..fbb90d2 100644 --- a/web/webkit/DETAILS +++ b/web/webkit/DETAILS @@ -1,14 +1,14 @@ MODULE=webkit - VERSION=1.1.12 + VERSION=1.1.15.2 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://www.webkitgtk.org/ - SOURCE_VFY=sha1:a06bb5729faae195096991d01089216df110a2c2 + SOURCE_VFY=sha1:ebf0fd805dd8397ae11701341806cd78002baa18 WEB_SITE=http://www.webkit.org ENTERED=20070919 - UPDATED=20090805 + UPDATED=20091011 SHORT="a gtk+ web rendering engine" -cat< git: Version bump to 1.6.5 Message-ID: <20091012001041.D98F29B1F0@doppio.foo-projects.org> commit 2336d57f0080cf299a65a23e9251d36fa4fcbfe2 Author: Terry Chan Date: Sun Oct 11 19:10:32 2009 -0500 git: Version bump to 1.6.5 --- devel/git/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devel/git/DETAILS b/devel/git/DETAILS index a81fa1c..97cd9c4 100644 --- a/devel/git/DETAILS +++ b/devel/git/DETAILS @@ -1,17 +1,17 @@ MODULE=git - VERSION=1.6.4.4 + VERSION=1.6.5 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE2=$MODULE-manpages-$VERSION.tar.bz2 SOURCE3=$MODULE-makefile-install-8.patch SOURCE_URL=$KERNEL_URL/pub/software/scm/git SOURCE2_URL=$KERNEL_URL/pub/software/scm/git SOURCE3_URL=$PATCH_URL - SOURCE_VFY=sha1:da66a6323cc0842b19e3dbc5bb8ee5a59975037f - SOURCE2_VFY=sha1:39b76f19751995ba3f093cac0b47900e22a5dbd2 + SOURCE_VFY=sha1:8047b6ea66bd0651c4f103febcba8eedfc034677 + SOURCE2_VFY=sha1:ebc5d4edf9bb1541774b9224dd0609a22ba64862 SOURCE3_VFY=sha1:647b27f4474b89c3003eeb35856cfaaf76bf8ce8 WEB_SITE=http://git-scm.com ENTERED=20050707 - UPDATED=20090917 + UPDATED=20091011 SHORT="Fast version control system" PSAFE=no From florin at lunar-linux.org Mon Oct 12 06:50:18 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 12 Oct 2009 07:50:18 +0300 Subject: [Lunar-commits] xfce4-panel: remove the cairo patch as it gives problems. Message-ID: <20091012045047.890659B1F0@doppio.foo-projects.org> commit a4aff1facdb7078ff2a421c79d31cd2d86552ab4 Author: Florin Braescu Date: Mon Oct 12 07:50:18 2009 +0300 xfce4-panel: remove the cairo patch as it gives problems. --- xfce4/core/xfce4-panel/BUILD | 2 -- xfce4/core/xfce4-panel/DETAILS | 5 +---- 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/xfce4/core/xfce4-panel/BUILD b/xfce4/core/xfce4-panel/BUILD index 4aba94d..0a2dd59 100644 --- a/xfce4/core/xfce4-panel/BUILD +++ b/xfce4/core/xfce4-panel/BUILD @@ -1,8 +1,6 @@ ( [ -f /etc/profile.d/xfce4.rc ] && . /etc/profile.d/xfce4.rc - patch_it $SOURCE_CACHE/$SOURCE2 1 && - # make sure proper PKG_CONFIG_PATH is set export PKG_CONFIG_PATH="${MODULE_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH}" && diff --git a/xfce4/core/xfce4-panel/DETAILS b/xfce4/core/xfce4-panel/DETAILS index 89503d8..8bc671f 100644 --- a/xfce4/core/xfce4-panel/DETAILS +++ b/xfce4/core/xfce4-panel/DETAILS @@ -1,15 +1,12 @@ MODULE=xfce4-panel VERSION=4.6.1 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE2=$MODULE-$VERSION-cairo.patch.bz2 SOURCE_URL=http://www.xfce.org/archive/xfce-$VERSION/src - SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:613c66f6402feba7983a7effb008f091182350d2 - SOURCE2_VFY=sha1:f63c5b1fd72ae732c4a54665ac593fd3ae9d2787 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20030715 - UPDATED=20091011 + UPDATED=20091012 SHORT="Xfce4 panel" cat << EOF From brebs at lunar-linux.org Mon Oct 12 10:41:03 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Mon, 12 Oct 2009 15:41:03 +0700 Subject: [Lunar-commits] t1utils: compile with glibc 2.10 Message-ID: <20091012084438.6AB3B9B1F0@doppio.foo-projects.org> commit d6a285e0d2a2e464ed4f237b944a76f0f36b4a1e Author: Paul Bredbury Date: Mon Oct 12 15:41:03 2009 +0700 t1utils: compile with glibc 2.10 --- graphics/t1utils/BUILD | 8 ++++++++ graphics/t1utils/DETAILS | 13 ++++++++----- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/graphics/t1utils/BUILD b/graphics/t1utils/BUILD new file mode 100644 index 0000000..869b1a9 --- /dev/null +++ b/graphics/t1utils/BUILD @@ -0,0 +1,8 @@ +( + + # Compile with glibc 2.10 + patch_it $SOURCE_CACHE/$SOURCE2 1 && + + default_build + +) > $C_FIFO 2>&1 diff --git a/graphics/t1utils/DETAILS b/graphics/t1utils/DETAILS index a1d3a55..7164dc1 100644 --- a/graphics/t1utils/DETAILS +++ b/graphics/t1utils/DETAILS @@ -1,8 +1,11 @@ MODULE=t1utils VERSION=1.34 SOURCE=$MODULE-$VERSION.tar.gz + SOURCE2=t1utils-1.34-glibc-2.10.patch.bz2 SOURCE_URL=http://www.lcdf.org/~eddietwo/type/ + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:a5b174a1d132436c410edf514ac74a6f4ae258e2 + SOURCE2_VFY=sha1:e2725de4b7b0f760905260a1d8ab4212e5f1e239 WEB_SITE="http://www.lcdf.org/~eddietwo/type/#t1utils" ENTERED=20070920 UPDATED=20090616 @@ -10,9 +13,9 @@ cat << EOF t1utils is a collection of simple type-1 font manipulation programs. -Together, they allow you to convert between PFA (ASCII) and PFB (binary) -formats, disassemble PFA or PFB files into human-readable form, reassemble -them into PFA or PFB format. Additionally you can extract font resources -from a Macintosh font file (ATM/Laserwriter), or create a Macintosh Type 1 -font file from a PFA or PFB font. +Together, they allow you to convert between PFA (ASCII) and PFB +(binary) formats, disassemble PFA or PFB files into human-readable +form, reassemble them into PFA or PFB format. Additionally you can +extract font resources from a Macintosh font file (ATM/Laserwriter), or +create a Macintosh Type 1 font file from a PFA or PFB font. EOF From brebs at lunar-linux.org Mon Oct 12 10:44:05 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Mon, 12 Oct 2009 15:44:05 +0700 Subject: [Lunar-commits] fontforge: version bump to 20090923 Message-ID: <20091012084438.7BA6F9B1F1@doppio.foo-projects.org> commit bacdfcdd43ebfc99dd6976fa1ec30b513925e28b Author: Paul Bredbury Date: Mon Oct 12 15:44:05 2009 +0700 fontforge: version bump to 20090923 Added BUILD. --- graphics/fontforge/BUILD | 9 +++++++++ graphics/fontforge/DETAILS | 15 ++++++++------- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/graphics/fontforge/BUILD b/graphics/fontforge/BUILD new file mode 100644 index 0000000..b29f3b2 --- /dev/null +++ b/graphics/fontforge/BUILD @@ -0,0 +1,9 @@ +( + + # Options from: + # http://repos.archlinux.org/viewvc.cgi/fontforge/repos/extra-i686/PKGBUILD?view=log + OPTS+=" --with-freetype-src=/usr/include/freetype2 --disable-static --enable-double --enable-type3 --enable-devicetables" && + + default_build + +) > $C_FIFO 2>&1 diff --git a/graphics/fontforge/DETAILS b/graphics/fontforge/DETAILS index 9944534..355ee7c 100644 --- a/graphics/fontforge/DETAILS +++ b/graphics/fontforge/DETAILS @@ -1,16 +1,17 @@ MODULE=fontforge - VERSION=20090622 + VERSION=20090923 SOURCE=$MODULE\_full-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:bc638eeeb4cf2d540773bacc52cc6bac1c6ca76f + SOURCE_VFY=sha1:cccf78ddf074ea5ddc3ce13a988dc17d383eabdd WEB_SITE=http://fontforge.sourceforge.net ENTERED=20070920 - UPDATED=20090806 + UPDATED=20091010 SHORT="An outline font editor" cat << EOF -FontForge -- An outline font editor that lets you create your own postscript, -truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf, FON, -NFNT) fonts, or edit existing ones. Also lets you convert one format to -another. FontForge has support for many macintosh font formats. +FontForge - an outline font editor that lets you create your own +postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and +bitmap (bdf, FON, NFNT) fonts, or edit existing ones. Also lets you +convert one format to another. FontForge has support for many Macintosh +font formats. EOF From florin at lunar-linux.org Mon Oct 12 20:52:35 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 12 Oct 2009 21:52:35 +0300 Subject: [Lunar-commits] cdrtools: version bumped to 2.01.01a66. Message-ID: <20091012185416.9FE679B1F0@doppio.foo-projects.org> commit 895336a987f03c21dbfbf6f371a539859b1e416a Author: Florin Braescu Date: Mon Oct 12 21:52:35 2009 +0300 cdrtools: version bumped to 2.01.01a66. Bugfixes and improvements. --- cd/cdrtools/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cd/cdrtools/DETAILS b/cd/cdrtools/DETAILS index 93ff9d6..bb5d6b2 100644 --- a/cd/cdrtools/DETAILS +++ b/cd/cdrtools/DETAILS @@ -1,14 +1,14 @@ MODULE=cdrtools VERSION=2.01.01 - SOURCE=$MODULE-${VERSION}a65.tar.bz2 + SOURCE=$MODULE-${VERSION}a66.tar.bz2 SOURCE2=$MODULE-$VERSION-open_rdwr-v2.patch.bz2 SOURCE_URL=ftp://ftp.berlios.de/pub/cdrecord/alpha SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:20f8a43197e2223eda7ff6b41a8ea47808de7fef + SOURCE_VFY=sha1:caef4828b7cea14e68a11388d011dc97b70219a7 SOURCE2_VFY=sha1:a8794b14306b291f1451f53eda4c00d86b5a4408 WEB_SITE=http://cdrecord.berlios.de/old/private/cdrecord.html ENTERED=20010922 - UPDATED=20090916 + UPDATED=20091012 SHORT="cdrtools creates home-burned CDs with a CD-R/CD-RW recorder" cat << EOF From florin at lunar-linux.org Mon Oct 12 20:55:36 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 12 Oct 2009 21:55:36 +0300 Subject: [Lunar-commits] warzone2100: version bumped to 2.2.4. Message-ID: <20091012185604.641AE9B1F0@doppio.foo-projects.org> commit 6ba1661ee55d2fec445d6834d0d9462f3a3faba3 Author: Florin Braescu Date: Mon Oct 12 21:55:36 2009 +0300 warzone2100: version bumped to 2.2.4. Bugfixes release. --- games/warzone2100/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/games/warzone2100/DETAILS b/games/warzone2100/DETAILS index 2d8ecbd..fda24a3 100644 --- a/games/warzone2100/DETAILS +++ b/games/warzone2100/DETAILS @@ -1,11 +1,11 @@ MODULE=warzone2100 - VERSION=2.2.2 + VERSION=2.2.4 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:d61bd1a87f0a6c1184c640987f759b1ac702b9e1 + SOURCE_VFY=sha1:264ed777f86c2f8c87985800066192593db5ea15 WEB_SITE=http://wz2100.net ENTERED=20090606 - UPDATED=20090901 + UPDATED=20091012 MAINTAINER=florin at lunar-linux.org SHORT="3D realtime strategy game" From stumbles at lunar-linux.org Tue Oct 13 13:39:30 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Tue, 13 Oct 2009 07:39:30 -0400 Subject: [Lunar-commits] frescobaldi: Version bump. Message-ID: <20091013113957.2B0D29B1F1@doppio.foo-projects.org> commit e11f0e182bf717a7e507d2ef40a24b3bd7352bde Author: Dennis `stumbles` Veatch Date: Tue Oct 13 07:39:30 2009 -0400 frescobaldi: Version bump. --- kde4/apps/frescobaldi/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kde4/apps/frescobaldi/DETAILS b/kde4/apps/frescobaldi/DETAILS index a76faf1..0159ce1 100644 --- a/kde4/apps/frescobaldi/DETAILS +++ b/kde4/apps/frescobaldi/DETAILS @@ -1,12 +1,12 @@ MODULE=frescobaldi - VERSION=0.7.14 + VERSION=0.7.15 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://lilykde.googlecode.com/files/ - SOURCE_VFY=sha1:e768bfb602fd397ced63d0995c81c474a3dfed16 + SOURCE_VFY=sha1:891304899f7f732c9d7e42a16479cfb35c7b476a MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://www.frescobaldi.org/ ENTERED=20090307 - UPDATED=20090913 + UPDATED=20091013 SHORT="LilyPond sheet music editor" cat << EOF Frescobaldi is a LilyPond sheet music editor for KDE4. It aims to be powerful, From stumbles at lunar-linux.org Tue Oct 13 13:37:53 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Tue, 13 Oct 2009 07:37:53 -0400 Subject: [Lunar-commits] lilypond: Adding a patch to fix a make failure on relocate.cc. Taken from and Message-ID: <20091013113957.1E2079B1F0@doppio.foo-projects.org> commit b5cbfe8c4bb22157a7a3b43e98baedb208108c6b Author: Dennis `stumbles` Veatch Date: Tue Oct 13 07:37:53 2009 -0400 lilypond: Adding a patch to fix a make failure on relocate.cc. Taken from and modified; http://launchpadlibrarian.net/32749555/ftbfs.diff --- printer/lilypond/BUILD | 2 ++ printer/lilypond/DETAILS | 5 ++++- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/printer/lilypond/BUILD b/printer/lilypond/BUILD index d90b993..6d2ab5e 100644 --- a/printer/lilypond/BUILD +++ b/printer/lilypond/BUILD @@ -1,5 +1,7 @@ ( + patch_it $SOURCE_CACHE/$SOURCE2 0 && + OPTS="$OPTS --disable-documentation" default_build diff --git a/printer/lilypond/DETAILS b/printer/lilypond/DETAILS index e4a8101..cf71fca 100644 --- a/printer/lilypond/DETAILS +++ b/printer/lilypond/DETAILS @@ -2,11 +2,14 @@ VERSION=2.12.2 MAJ_VER=v2.12 SOURCE=$MODULE-$VERSION.tar.gz + SOURCE2=lilypond-relocate.cc.1.patch SOURCE_URL=http://download.linuxaudio.org/lilypond/sources/$MAJ_VER/ + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:92afe4ef926d966e7855f64ae93ee762f1fa5178 + SOURCE2_VFY=sha:90e536195ecc715edecb9731b37d637367147e41 WEB_SITE=http://lilypond.org/web/ ENTERED=20070920 - UPDATED=20090307 + UPDATED=20091013 SHORT="music notation for everyone" cat << EOF From stumbles at lunar-linux.org Tue Oct 13 15:23:08 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Tue, 13 Oct 2009 09:23:08 -0400 Subject: [Lunar-commits] alliance: Adding some sed's needed since our recent gcc/glibc bump. Message-ID: <20091013132352.C3CEB9B1F0@doppio.foo-projects.org> commit 0d9ed574ce7198fefcb3fbf167010410778baf46 Author: Dennis `stumbles` Veatch Date: Tue Oct 13 09:23:08 2009 -0400 alliance: Adding some sed's needed since our recent gcc/glibc bump. --- science/alliance/BUILD | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/science/alliance/BUILD b/science/alliance/BUILD index a7dd55e..d05d675 100644 --- a/science/alliance/BUILD +++ b/science/alliance/BUILD @@ -1,8 +1,15 @@ ( - ALLIANCE_TOP=/opt/lunar/alliance - ./configure --prefix=$ALLIANCE_TOP && - default_make +# Adds some missing includes that are related to our recenct gcc/glibc bump. + sed -i "27i #include " ocp/src/placer/Ocp.cpp ocp/src/placer/PPlacement.h && + sed -i "28i #include " ocp/src/placer/Ocp.cpp ocp/src/placer/PPlacement.h && + sed -i "29i #include " ocp/src/placer/Ocp.cpp ocp/src/placer/PPlacement.h && + + ALLIANCE_TOP=/opt/lunar/alliance + + ./configure --prefix=$ALLIANCE_TOP && + + default_make ) > $C_FIFO From florin at lunar-linux.org Tue Oct 13 15:39:59 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 13 Oct 2009 16:39:59 +0300 Subject: [Lunar-commits] phpMyAdmin: version bumped to 3.2.2.1. Message-ID: <20091013134031.2510A9B1F0@doppio.foo-projects.org> commit a4cd0d343edc5cd432462725481370d3aede907e Author: Florin Braescu Date: Tue Oct 13 16:39:59 2009 +0300 phpMyAdmin: version bumped to 3.2.2.1. Security release. --- sql/phpMyAdmin/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sql/phpMyAdmin/DETAILS b/sql/phpMyAdmin/DETAILS index 4999a88..e6e444e 100644 --- a/sql/phpMyAdmin/DETAILS +++ b/sql/phpMyAdmin/DETAILS @@ -1,13 +1,13 @@ MODULE=phpMyAdmin - VERSION=3.2.2 + VERSION=3.2.2.1 RELEASE=$VERSION-all-languages SOURCE=$MODULE-$RELEASE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$RELEASE SOURCE_URL=$SFORGE_URL/phpmyadmin - SOURCE_VFY=sha1:271af738ac2798540fc395745c3a6fe5d5fc9f4e + SOURCE_VFY=sha1:71bdc795147b54c219f87fa63e7430779cef786b WEB_SITE=http://www.phpmyadmin.net/home_page ENTERED=20040912 - UPDATED=20090914 + UPDATED=20091013 SHORT="A php web interface to administrate MySQL tables" cat << EOF From florin at lunar-linux.org Tue Oct 13 16:11:24 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 13 Oct 2009 17:11:24 +0300 Subject: [Lunar-commits] linux-2.6: version bumped to 2.6.31.4. Message-ID: <20091013141236.A48C49B1F0@doppio.foo-projects.org> commit fb8f8ce0113b25db96bb46250862900284855403 Author: Florin Braescu Date: Tue Oct 13 17:11:24 2009 +0300 linux-2.6: version bumped to 2.6.31.4. The 4-th serie of patches for 2.6.31 kernel version. --- kernel/linux-2.6/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/linux-2.6/DETAILS b/kernel/linux-2.6/DETAILS index 958e92c..c4b848e 100644 --- a/kernel/linux-2.6/DETAILS +++ b/kernel/linux-2.6/DETAILS @@ -1,5 +1,5 @@ MODULE=linux-2.6 - VERSION=2.6.31.3 + VERSION=2.6.31.4 BASE=$(echo $VERSION | cut -d. -f1,2,3) SOURCE=linux-${BASE}.tar.bz2 SOURCE2=patch-${VERSION}.bz2 @@ -11,11 +11,11 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE2_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6 SOURCE3_URL[0]=$PATCH_URL SOURCE_VFY=sha1:c6e0e6b473ba2b80d164e37cfabf294e783c03d9 - SOURCE2_VFY=sha1:d23b4dd2bb361506ec6e8067055b3de4a58e4f35 + SOURCE2_VFY=sha1:093c8be6b7b856620f510e4d9c696f5a19b8b3d0 SOURCE3_VFY=sha1:aace1a887fab63ea6530533a4e87c6bb1721dc24 WEB_SITE=http://www.kernel.org ENTERED=20041019 - UPDATED=20091008 + UPDATED=20091013 SHORT="The core of a Linux GNU Operating System" KEEP_SOURCE=on TMPFS=off From florin at lunar-linux.org Tue Oct 13 19:28:20 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 13 Oct 2009 20:28:20 +0300 Subject: [Lunar-commits] libburn: version bumped to 0.7.2. Message-ID: <20091013172928.5206F9B1F0@doppio.foo-projects.org> commit 4bbb925bf2a53ffb988b8e0acfd91a8a92e62aea Author: Florin Braescu Date: Tue Oct 13 20:28:20 2009 +0300 libburn: version bumped to 0.7.2. This release of libburn fixes a bug with simulated CD TAO multi-track sessions. It can retrieve media product information and can process track input which was prepared for CD-ROM XA Mode 2 Form 1. cdrskin now performs the option -minfo. --- cd/libburn/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cd/libburn/DETAILS b/cd/libburn/DETAILS index 05775b5..44f2b14 100644 --- a/cd/libburn/DETAILS +++ b/cd/libburn/DETAILS @@ -1,11 +1,11 @@ MODULE=libburn - VERSION=0.7.0 + VERSION=0.7.2 SOURCE=$MODULE-$VERSION.pl00.tar.gz SOURCE_URL=http://files.libburnia-project.org/releases - SOURCE_VFY=sha1:1594ca2ce23176fe65471c3c14008cf8e4312bed + SOURCE_VFY=sha1:7f2b0bdb7d3089f5796c761da4824c8087a4d675 WEB_SITE=http://libburnia-project.org ENTERED=20061203 - UPDATED=20090829 + UPDATED=20091013 SHORT="Library for writing optical media" cat << EOF From florin at lunar-linux.org Tue Oct 13 20:48:47 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 13 Oct 2009 21:48:47 +0300 Subject: [Lunar-commits] xine-lib: added some optional depends. Message-ID: <20091013184954.8745C9B1F0@doppio.foo-projects.org> commit d2cbcbbeb139c19272cb2cf707c315ae4d7df3f0 Author: Florin Braescu Date: Tue Oct 13 21:48:47 2009 +0300 xine-lib: added some optional depends. --- video/xine-lib/DEPENDS | 55 +++++++++++++++++++++++++++++++++++++---------- 1 files changed, 43 insertions(+), 12 deletions(-) diff --git a/video/xine-lib/DEPENDS b/video/xine-lib/DEPENDS index 661a503..df25ca3 100644 --- a/video/xine-lib/DEPENDS +++ b/video/xine-lib/DEPENDS @@ -1,21 +1,52 @@ depends %X -optional_depends "alsa-utils" \ - "" \ - "--disable-alsa" \ +optional_depends "alsa-utils" \ + "" \ + "--without-alsa" \ "for ALSA sound support" -optional_depends "aalib" \ - "" \ - "--disable-aalib" \ +optional_depends "speex" \ + "" \ + "--without-speex" \ + "for Speex audio decoder" + +optional_depends "vorbis" \ + "" \ + "--without-vorbis" \ + "for Vorbis audio decoder" + +optional_depends "aalib" \ + "" \ + "--disable-aalib" \ "for ascii art library support" -optional_depends "libXvMC" \ - "" \ - "" \ +optional_depends "libmng" \ + "" \ + "--disable-mng" \ + "for mng library support" + +optional_depends "libXvMC" \ + "" \ + "" \ "for hw accelerated playback on supported cards" -optional_depends "libcaca" \ - "" \ - "--disable-caca" \ +optional_depends "libcaca" \ + "" \ + "--without-caca" \ "for text support" + +optional_depends "ImageMagick" \ + "" \ + "--without-imagemagick" \ + "for ImageMagick image decoder" + + +optional_depends "libtheora" \ + "" \ + "--without-theora" \ + "for Theora video decoder" + +optional_depends "SDL" \ + "" \ + "--without-sdl" \ + "for SDL video output" From florin at lunar-linux.org Tue Oct 13 22:38:21 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 13 Oct 2009 23:38:21 +0300 Subject: [Lunar-commits] firefox: avoid the conflict between net/if.h and linux.if.h at compile time. Message-ID: <20091013203919.A636D9B1F0@doppio.foo-projects.org> commit 43cea93db5c492809bbbafdd0cbba26e9ea93819 Author: Florin Braescu Date: Tue Oct 13 23:38:21 2009 +0300 firefox: avoid the conflict between net/if.h and linux.if.h at compile time. --- web/firefox/BUILD | 2 ++ web/firefox/BUILD.x86_64 | 2 ++ 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/web/firefox/BUILD b/web/firefox/BUILD index c736afe..2af4909 100644 --- a/web/firefox/BUILD +++ b/web/firefox/BUILD @@ -25,6 +25,8 @@ cd mozilla-1.9.1 && + echo "ac_add_options --disable-necko-wifi" >> mozconfig + #Add DEPENDS options if in_depends $MODULE dbus ; then diff --git a/web/firefox/BUILD.x86_64 b/web/firefox/BUILD.x86_64 index c736afe..2af4909 100644 --- a/web/firefox/BUILD.x86_64 +++ b/web/firefox/BUILD.x86_64 @@ -25,6 +25,8 @@ cd mozilla-1.9.1 && + echo "ac_add_options --disable-necko-wifi" >> mozconfig + #Add DEPENDS options if in_depends $MODULE dbus ; then From zbiggy at lunar-linux.org Wed Oct 14 04:33:15 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Wed, 14 Oct 2009 04:33:15 +0200 Subject: [Lunar-commits] sysklogd: updated to 1.5 Old version not present anymore. Updated to 1.5. Message-ID: <20091014023504.E34D59B1F8@doppio.foo-projects.org> commit 51c07b8ec065fbd32824c47faa9ddbae984299d6 Author: Zbigniew Luszpinski Date: Wed Oct 14 04:33:15 2009 +0200 sysklogd: updated to 1.5 Old version not present anymore. Updated to 1.5. --- utils/sysklogd/BUILD | 1 + utils/sysklogd/DETAILS | 17 ++++++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/utils/sysklogd/BUILD b/utils/sysklogd/BUILD index 38de4f2..de4c5b1 100644 --- a/utils/sysklogd/BUILD +++ b/utils/sysklogd/BUILD @@ -1,6 +1,7 @@ ( patch_it $SOURCE2 1 && + patch_it $SOURCE3 1 && make MANDIR=/usr/share/man && prepare_install && diff --git a/utils/sysklogd/DETAILS b/utils/sysklogd/DETAILS index 03dc7bd..548ec9e 100644 --- a/utils/sysklogd/DETAILS +++ b/utils/sysklogd/DETAILS @@ -1,14 +1,17 @@ MODULE=sysklogd - VERSION=1.4.1 + VERSION=1.5 SOURCE=$MODULE-$VERSION.tar.gz - SOURCE_URL=http://www.ibiblio.org/pub/Linux/system/daemons/ - SOURCE_VFY=sha1:093775da0e429d0768cf195ceb20fdd6d96aeeea - SOURCE2=sysklogd-1.4.1-fixes-2.patch - SOURCE2_URL=http://www.linuxfromscratch.org/patches/downloads/sysklogd/ - SOURCE2_VFY=sha1:905d17574d6972f494b8ec4cb62bfad1c9f3ff62 + SOURCE_URL=http://www.ibiblio.org/pub/Linux/system/daemons + SOURCE_VFY=sha1:070cce745b023f2ce7ca7d9888af434d6d61c236 + SOURCE2=sysklogd-1.5-disable__syslog_chk-1.patch + SOURCE2_URL=http://www.linuxfromscratch.org/patches/downloads/sysklogd + SOURCE2_VFY=sha1:e72ea3eda5e9668078ca6e5f71842e7c42e48fff + SOURCE3=sysklogd-1.5-priv_sep-1.patch + SOURCE3_URL=http://www.linuxfromscratch.org/patches/downloads/sysklogd + SOURCE3_VFY=sha1:7fa81156820d6da05a8125e4c24fb81a80b70208 WEB_SITE=http://www.ibiblio.org/pub/Linux/system/daemons ENTERED=20010922 - UPDATED=20080614 + UPDATED=20091014 SHORT="sysklogd contains the system and kernel logging daemons." cat << EOF sysklogd From ratler at lunar-linux.org Wed Oct 14 07:32:13 2009 From: ratler at lunar-linux.org (Stefan Wold) Date: Wed, 14 Oct 2009 07:32:13 +0200 Subject: [Lunar-commits] Preparing core tool for bash4, return values may no longer be negative Message-ID: <20091014053346.D10599B1F8@doppio.foo-projects.org> commit e6cf54b01b2c79cb7f80de0685aace4d361b37d3 Author: Stefan Wold Date: Wed Oct 14 07:32:13 2009 +0200 Preparing core tool for bash4, return values may no longer be negative --- lib/lsb/init-functions | 24 ++++++++++++------------ var/lib/lunar/functions/edit.lunar | 2 +- var/lib/lunar/functions/modules.lunar | 6 +++--- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/lib/lsb/init-functions b/lib/lsb/init-functions index 52ce92a..cb1484c 100644 --- a/lib/lsb/init-functions +++ b/lib/lsb/init-functions @@ -128,7 +128,7 @@ pgrep () { if [ -d "/proc/$(cat $PIDFILE)" ] ; then return 0 else - return -1 + return 255 fi else # sleep 1 @@ -137,10 +137,10 @@ pgrep () { if [ -d "/proc/$(cat $PIDFILE)" ] ; then return 0 else - return -1 + return 255 fi else - return -1 + return 255 fi fi fi @@ -149,7 +149,7 @@ pgrep () { pkill () { if [ -z "$SERVPID" ] ; then - return -1 + return 255 else if kill -$SIGSTOP $SERVPID >& /dev/null ; then if [ -f $PIDFILE ] ; then @@ -157,7 +157,7 @@ pkill () { fi return 0 else - return -1 + return 255 fi fi } @@ -165,12 +165,12 @@ pkill () { prload () { if [ ! -f $PIDFILE ] ; then - return -1 + return 255 else if kill -$SIGRELOAD $SERVPID >& /dev/null ; then return 0 else - return -1 + return 255 fi fi } @@ -179,7 +179,7 @@ prload () { mkpid () { if [ ! -e $PIDFILE ] ; then echo -n "[PID] " - /bin/pgrep -o -P 1 "^$PROCESS_BASE$" > $PIDFILE && return 0 || return -1 + /bin/pgrep -o -P 1 "^$PROCESS_BASE$" > $PIDFILE && return 0 || return 255 else return fi @@ -191,10 +191,10 @@ pidok () { if pgrep ; then return 0 else - return -1 + return 255 fi else - return -1 + return 255 fi } @@ -217,10 +217,10 @@ log_warning_msg () { start_process () { if [ ! -z "$RUNAS" ]; then /bin/su $RUNAS -c "$PROCESS_FULL $ARGS" && - return 0 || return -1 + return 0 || return 255 else $PROCESS_FULL $ARGS && - return 0 || return -1 + return 0 || return 255 fi } diff --git a/var/lib/lunar/functions/edit.lunar b/var/lib/lunar/functions/edit.lunar index e51f211..e3d6483 100644 --- a/var/lib/lunar/functions/edit.lunar +++ b/var/lib/lunar/functions/edit.lunar @@ -60,7 +60,7 @@ patch_it () { temp_destroy $TMPFILE1 temp_destroy $TMPFILE2 - return -1 + return 255 } diff --git a/var/lib/lunar/functions/modules.lunar b/var/lib/lunar/functions/modules.lunar index 80870c9..d29ebf1 100644 --- a/var/lib/lunar/functions/modules.lunar +++ b/var/lib/lunar/functions/modules.lunar @@ -238,12 +238,12 @@ run_details() { fi if [[ -z "$WANT_VERSION" ]] ; then - run_module_file $1 DETAILS &> /dev/null || return -1 + run_module_file $1 DETAILS &> /dev/null || return 255 else TMP_DETAILS=$(temp_create "details.version") cat $MOONBASE/$SECTION/$1/DETAILS | sed '/^\s*VERSION=/d' > $TMP_DETAILS VERSION="$WANT_VERSION" - . $TMP_DETAILS &> /dev/null || return -1 + . $TMP_DETAILS &> /dev/null || return 255 temp_destroy $TMP_DETAILS fi SOURCE_DIRECTORY=${SOURCE_DIRECTORY:-$BUILD_DIRECTORY/$1-$VERSION} @@ -564,7 +564,7 @@ module_is_expired() { fi fi # nope... it's not expired - return -1 + return 255 ) } From brebs at lunar-linux.org Wed Oct 14 08:08:46 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Wed, 14 Oct 2009 13:08:46 +0700 Subject: [Lunar-commits] alliance: add missing ampersands Message-ID: <20091014060901.99E219B1F8@doppio.foo-projects.org> commit 225f0ad49ce19a0f8067246a19d8603e89d3e802 Author: Paul Bredbury Date: Wed Oct 14 13:08:46 2009 +0700 alliance: add missing ampersands --- science/alliance/BUILD | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/science/alliance/BUILD b/science/alliance/BUILD index d05d675..e95cc15 100644 --- a/science/alliance/BUILD +++ b/science/alliance/BUILD @@ -1,12 +1,12 @@ ( -# Adds some missing includes that are related to our recenct gcc/glibc bump. + # Adds some missing includes that are related to our recent gcc/glibc bump. sed -i "27i #include " ocp/src/placer/Ocp.cpp ocp/src/placer/PPlacement.h && sed -i "28i #include " ocp/src/placer/Ocp.cpp ocp/src/placer/PPlacement.h && sed -i "29i #include " ocp/src/placer/Ocp.cpp ocp/src/placer/PPlacement.h && - ALLIANCE_TOP=/opt/lunar/alliance + ALLIANCE_TOP=/opt/lunar/alliance && ./configure --prefix=$ALLIANCE_TOP && From samuel.verstraete at gmail.com Wed Oct 14 09:24:01 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Wed, 14 Oct 2009 09:24:01 +0200 Subject: [Lunar-commits] mesa-lib: add a proper way to disable glew Message-ID: <20091014072428.613609B1F8@doppio.foo-projects.org> commit b0a97f8b1434a73f5c62d2a46258b1c2327447d1 Author: Samuel Date: Wed Oct 14 09:24:01 2009 +0200 mesa-lib: add a proper way to disable glew --- xorg7/mesa-lib/BUILD | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/xorg7/mesa-lib/BUILD b/xorg7/mesa-lib/BUILD index 5982cb9..cf6d44a 100644 --- a/xorg7/mesa-lib/BUILD +++ b/xorg7/mesa-lib/BUILD @@ -7,8 +7,7 @@ OPTS+=$(echo $MESADRIVER | sed s/\ /,/g) fi && - # Excludes glew headers, and prevents need for /usr/include/GL/gl{,u,ut}.h - rm -r progs/{demos,samples} && + sedit s at glew@@g configure.ac && ./configure --prefix=/usr $OPTS && prepare_install && @@ -20,9 +19,6 @@ make glxgears glxinfo && cd ../.. && - # Prevent glew headers from being installed - rm include/GL/{glew,glxew,wglew}.h && - make install && install -v -m755 progs/xdemos/glx{gears,info} /usr/bin/ From brebs at lunar-linux.org Wed Oct 14 09:44:18 2009 From: brebs at lunar-linux.org (Paul Bredbury) Date: Wed, 14 Oct 2009 14:44:18 +0700 Subject: [Lunar-commits] playonlinux: version bump to 3.7 Message-ID: <20091014075240.C94679B1FB@doppio.foo-projects.org> commit 8bccb5a49a86b51934c83d81f0d34091077a4492 Author: Paul Bredbury Date: Wed Oct 14 14:44:18 2009 +0700 playonlinux: version bump to 3.7 --- zbeta/playonlinux/DETAILS | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/zbeta/playonlinux/DETAILS b/zbeta/playonlinux/DETAILS index f538806..1e4b497 100644 --- a/zbeta/playonlinux/DETAILS +++ b/zbeta/playonlinux/DETAILS @@ -1,18 +1,19 @@ MODULE=playonlinux - VERSION=3.6 + VERSION=3.7 SOURCE=PlayOnLinux_$VERSION.tar.gz SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE SOURCE_URL=http://www.playonlinux.com/script_files/PlayOnLinux/$VERSION - SOURCE_VFY=sha1:435d43de291ad4fb26945292032a6401ae26c764 + SOURCE_VFY=sha1:e59042648b93eb5edee625fb3f4d5a94908830fd WEB_SITE=http://www.playonlinux.com/ ENTERED=20090828 - UPDATED=20090828 + UPDATED=20091012 SHORT="set of scripts to easily install and use Windows games" cat << EOF PlayOnLinux is a piece of sofware which allows you to easily install and use numerous games and software designed to run with Microsoft's Windows. + Few games are compatible with GNU/Linux at the moment, and it certainly is a factor preventing the migration to this system. PlayOnLinux brings an accessible and efficient solution to this problem, cost-free and From samuel.verstraete at gmail.com Wed Oct 14 11:24:23 2009 From: samuel.verstraete at gmail.com (Samuel) Date: Wed, 14 Oct 2009 11:24:23 +0200 Subject: [Lunar-commits] mesa-lib: grmbl stupid glew headers Message-ID: <20091014092506.3B79E9B1FB@doppio.foo-projects.org> commit de3d319e7d3944dfa58b083fb05f9c774444262a Author: Samuel Date: Wed Oct 14 11:24:23 2009 +0200 mesa-lib: grmbl stupid glew headers --- xorg7/mesa-lib/BUILD | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/xorg7/mesa-lib/BUILD b/xorg7/mesa-lib/BUILD index cf6d44a..0e0d16c 100644 --- a/xorg7/mesa-lib/BUILD +++ b/xorg7/mesa-lib/BUILD @@ -19,6 +19,9 @@ make glxgears glxinfo && cd ../.. && + # Prevent glew headers from being installed + rm include/GL/{glew,glxew,wglew}.h && + make install && install -v -m755 progs/xdemos/glx{gears,info} /usr/bin/ From florin at lunar-linux.org Wed Oct 14 17:23:28 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 14 Oct 2009 18:23:28 +0300 Subject: [Lunar-commits] fsarchiver: version bumped to 0.6.1. Message-ID: <20091014152429.7DD899B1FC@doppio.foo-projects.org> commit 6381de867d0a5e7660913ef04a9433b9981f47ec Author: Florin Braescu Date: Wed Oct 14 18:23:28 2009 +0300 fsarchiver: version bumped to 0.6.1. The OpenSSL implementation of the encryption has been replaced with a libgcrypt implementation to fix licensing issues with the GPL. --- archive/fsarchiver/DEPENDS | 6 +++--- archive/fsarchiver/DETAILS | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/archive/fsarchiver/DEPENDS b/archive/fsarchiver/DEPENDS index e6cefd9..c35aeb5 100644 --- a/archive/fsarchiver/DEPENDS +++ b/archive/fsarchiver/DEPENDS @@ -1,5 +1,5 @@ depends e2fsprogs -optional_depends "xz" "" "--disable-lzma" "for lzma compress format support" -optional_depends "lzo" "" "--disable-lzo" "for lzo compress format support" -optional_depends "openssl" "" "--disable-crypto" "for ssl support" +optional_depends "xz" "" "--disable-lzma" "for lzma compress format support" +optional_depends "lzo" "" "--disable-lzo" "for lzo compress format support" +optional_depends "libgcrypt" "" "--disable-crypto" "for ssl support" diff --git a/archive/fsarchiver/DETAILS b/archive/fsarchiver/DETAILS index b976516..c83eff3 100644 --- a/archive/fsarchiver/DETAILS +++ b/archive/fsarchiver/DETAILS @@ -1,11 +1,11 @@ MODULE=fsarchiver - VERSION=0.5.9 + VERSION=0.6.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:9604943d736654548f24a7d653986e19e5157bcb + SOURCE_VFY=sha1:381cac2486827743587aca6ca42b94f37cae4bcc WEB_SITE=http://www.fsarchiver.org ENTERED=20090925 - UPDATED=20090925 + UPDATED=20091014 SHORT="A file-system archive tool" cat << EOF From florin at lunar-linux.org Thu Oct 15 18:35:45 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 15 Oct 2009 19:35:45 +0300 Subject: [Lunar-commits] sqlite: version bumped to 3.6.19. Message-ID: <20091015163704.B47EA9B1EA@doppio.foo-projects.org> commit 6eaa3ded1a3a58291b737ae1ac60b6b70f8d2076 Author: Florin Braescu Date: Thu Oct 15 19:35:45 2009 +0300 sqlite: version bumped to 3.6.19. Changes: Added support for foreign key constraints. Foreign key constraints are disabled by default. Use the foreign_keys pragma to turn them on. Generalized the IS and IS NOT operators to take arbitrary expressions on their right-hand side. The TCL Interface has been enhanced to use the Non-Recursive Engine (NRE) interface to the TCL interpreter when linked against TCL 8.6 or later. Fix a bug introduced in 3.6.18 that can lead to a segfault when an attempt is made to write on a read-only database. --- sql/sqlite/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sql/sqlite/DETAILS b/sql/sqlite/DETAILS index 0942825..2dd27f8 100644 --- a/sql/sqlite/DETAILS +++ b/sql/sqlite/DETAILS @@ -1,11 +1,11 @@ MODULE=sqlite - VERSION=3.6.18 + VERSION=3.6.19 SOURCE=$MODULE-amalgamation-$VERSION.tar.gz SOURCE_URL=http://www.sqlite.org - SOURCE_VFY=sha1:440752ad048e5ec3394002b866eecb08ef864c3d + SOURCE_VFY=sha1:4cd66b3850774429d385e62c930b360ce705aa11 WEB_SITE=http://www.sqlite.org ENTERED=20011016 - UPDATED=20090912 + UPDATED=20091015 SHORT="An SQL engine in a C library" cat << EOF From florin at lunar-linux.org Thu Oct 15 20:43:23 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 15 Oct 2009 21:43:23 +0300 Subject: [Lunar-commits] gcc: version bumped to 4.4.2. Message-ID: <20091015184407.84F4A9B200@doppio.foo-projects.org> commit 8a0bfcace82a9a4161bcded3d29819c11dcf1bbc Author: Florin Braescu Date: Thu Oct 15 21:43:23 2009 +0300 gcc: version bumped to 4.4.2. Maintenance release. --- compilers/gcc/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compilers/gcc/DETAILS b/compilers/gcc/DETAILS index c8f4f50..a6f29fe 100644 --- a/compilers/gcc/DETAILS +++ b/compilers/gcc/DETAILS @@ -1,13 +1,13 @@ MODULE=gcc - VERSION=4.4.1 + VERSION=4.4.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=$GNU_URL/gcc/$MODULE-$VERSION - SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/gcc/$MODULE-$VERSION + SOURCE_URL[1]=ftp://gcc.gnu.org/pub/gcc/releases/gcc-$VERSION SOURCE_URL[2]=http://www.online-mirror.org/gcc/$MODULE-$VERSION - SOURCE_VFY=sha1:9156ddb7e4cc72288ec31760d6ddc7981123a8a2 + SOURCE_VFY=sha1:6cf7d9204ff3e1a09f4f12b1372cd4129ab7f080 WEB_SITE=http://gcc.gnu.org ENTERED=20020628 - UPDATED=20090923 + UPDATED=20091015 PSAFE=no SHORT="GNU compiler collection" From stumbles at lunar-linux.org Thu Oct 15 23:46:30 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Thu, 15 Oct 2009 17:46:30 -0400 Subject: [Lunar-commits] yafray: Another gcc4 patch and adding a sed. Message-ID: <20091015214710.DDFD69B1EA@doppio.foo-projects.org> commit bc9f4656a197ee4f597ad6d3577e5bde4a639aa6 Author: Dennis `stumbles` Veatch Date: Thu Oct 15 17:46:30 2009 -0400 yafray: Another gcc4 patch and adding a sed. --- graphics/yafray/BUILD | 2 ++ graphics/yafray/DETAILS | 3 +++ 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/graphics/yafray/BUILD b/graphics/yafray/BUILD index 471be22..ffa5a6e 100644 --- a/graphics/yafray/BUILD +++ b/graphics/yafray/BUILD @@ -1,5 +1,7 @@ ( + patch_it $SOURCE_CACHE/$SOURCE2 0 && + sedit 's:char \*ext:const char \*ext:' src/shaders/basictex.cc && sedit "s:/usr/local:/usr:" SConstruct sedit "s:/usr/local:/usr:" linux-settings.py diff --git a/graphics/yafray/DETAILS b/graphics/yafray/DETAILS index 9b1c0ba..1f50e7f 100644 --- a/graphics/yafray/DETAILS +++ b/graphics/yafray/DETAILS @@ -1,8 +1,11 @@ MODULE=yafray VERSION=0.0.9 SOURCE=$MODULE-$VERSION.tar.gz + SOURCE2=yafray-gcc4-patch SOURCE_URL=http://www.yafray.org/sec/2/downloads/ + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:30eaf082f66da4948cc6fb9651b4945914929f74 + SOURCE2_VFY=sha1:4e57230710686ae396afceab2fdaa3378a124f88 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE WEB_SITE=http://www.yafray.org/ ENTERED=20031229 From florin at lunar-linux.org Fri Oct 16 13:25:09 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 16 Oct 2009 14:25:09 +0300 Subject: [Lunar-commits] samba: version bumped to 3.3.9. Message-ID: <20091016112541.BCD7D9B200@doppio.foo-projects.org> commit 0c9069280cd04b68420b428e39ae0f6b7e8b460c Author: Florin Braescu Date: Fri Oct 16 14:25:09 2009 +0300 samba: version bumped to 3.3.9. Bugfixes release. --- net/samba/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/samba/DETAILS b/net/samba/DETAILS index 7a39dc6..dfea7cf 100644 --- a/net/samba/DETAILS +++ b/net/samba/DETAILS @@ -1,5 +1,5 @@ MODULE=samba - VERSION=3.3.8 + VERSION=3.3.9 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL[0]=http://us1.samba.org/$MODULE/ftp SOURCE_URL[1]=http://us2.samba.org/$MODULE/ftp @@ -8,10 +8,10 @@ SOURCE_URL[4]=ftp://se.samba.org/pub/$MODULE SOURCE_URL[5]=ftp://de.samba.org/samba.org SOURCE_URL[6]=http://us1.samba.org/$MODULE/ftp/old-versions - SOURCE_VFY=sha1:8ec485e12227e3d1a1fa63e61605c5e2adb3c43e + SOURCE_VFY=sha1:8e3c89ae614e4bc7575c919aac1bed199c1c0487 WEB_SITE=http://www.samba.org ENTERED=20010922 - UPDATED=20091001 + UPDATED=20091016 SHORT="Samba provides file and print services to SMB/CIFS clients" PSAFE=no From florin at lunar-linux.org Fri Oct 16 13:44:43 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 16 Oct 2009 14:44:43 +0300 Subject: [Lunar-commits] module-init-tools: version bumped to 3.11. Message-ID: <20091016114840.A51E39B200@doppio.foo-projects.org> commit 223ab367b886c836aa5609cf3e3e4d408234f606 Author: Florin Braescu Date: Fri Oct 16 14:44:43 2009 +0300 module-init-tools: version bumped to 3.11. Added docbook-utils as an optional depend. --- kernel/module-init-tools/BUILD | 4 ++++ kernel/module-init-tools/DEPENDS | 1 + kernel/module-init-tools/DETAILS | 9 ++++++--- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/kernel/module-init-tools/BUILD b/kernel/module-init-tools/BUILD index 8eb1025..73bf2c1 100644 --- a/kernel/module-init-tools/BUILD +++ b/kernel/module-init-tools/BUILD @@ -1,6 +1,10 @@ ( bad_flags -malign-double + + if ! [ module_installed docbook-utils ]; then + patch_it $SOURCE_CACHE/$SOURCE2 1 + fi && sedit "s:ln -s :ln -sf :" Makefile.in && diff --git a/kernel/module-init-tools/DEPENDS b/kernel/module-init-tools/DEPENDS new file mode 100644 index 0000000..2cbc478 --- /dev/null +++ b/kernel/module-init-tools/DEPENDS @@ -0,0 +1 @@ +optional_depends "docbook-utils" "" "" "to generate modules.conf.5 man page" diff --git a/kernel/module-init-tools/DETAILS b/kernel/module-init-tools/DETAILS index 14171b6..0cb10f5 100644 --- a/kernel/module-init-tools/DETAILS +++ b/kernel/module-init-tools/DETAILS @@ -1,11 +1,14 @@ MODULE=module-init-tools - VERSION=3.10 + VERSION=3.11 SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE2=${MODULE}_docbook.patch.bz2 SOURCE_URL=${KERNEL_URL}/pub/linux/utils/kernel/$MODULE - SOURCE_VFY=sha1:761c03b9a3171e08215c0e793e1f299681bb1455 + SOURCE2_URL=$PATCH_URL + SOURCE_VFY=sha1:3944445cffdc9c6d6143e94fbfdf6f7a8e3fd3b9 + SOURCE2_VFY=sha1:673fda8d8c4a9d5a88aa25f5e8c56fc60ff8fcee WEB_SITE=http://www.kernel.org ENTERED=20030410 - UPDATED=20090724 + UPDATED=20091016 SHORT="Utilities essential for a modular Linux 2.6.x kernel" cat << EOF From florin at lunar-linux.org Fri Oct 16 13:55:40 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 16 Oct 2009 14:55:40 +0300 Subject: [Lunar-commits] pidgin: version bumped to 2.6.3. Message-ID: <20091016115606.0E01B9B1ED@doppio.foo-projects.org> commit 2585970207efb71b60fd048430edbc61c217b89c Author: Florin Braescu Date: Fri Oct 16 14:55:40 2009 +0300 pidgin: version bumped to 2.6.3. Bugfixes release. --- chat/pidgin/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/chat/pidgin/DETAILS b/chat/pidgin/DETAILS index 064babc..5314dfb 100644 --- a/chat/pidgin/DETAILS +++ b/chat/pidgin/DETAILS @@ -1,11 +1,11 @@ MODULE=pidgin - VERSION=2.6.2 + VERSION=2.6.3 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:730b9bfaf79045f13e5d8dd736b91726bb11d332 - WEB_SITE=http://pidgin.im/ + SOURCE_VFY=sha1:552f3cbfb2cb2026342777efc9102e3511b0b29f + WEB_SITE=http://pidgin.im ENTERED=20070506 - UPDATED=20090921 + UPDATED=20091016 SHORT="A multi-protocol instant messaging application" cat << EOF From stumbles at lunar-linux.org Fri Oct 16 14:25:18 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Fri, 16 Oct 2009 08:25:18 -0400 Subject: [Lunar-commits] blender: Just adding to the BUILD so it will create a desktop icon. Message-ID: <20091016122601.CB1129B1ED@doppio.foo-projects.org> commit 92e45152054f070db666c7650b64959f5377f768 Author: Dennis `stumbles` Veatch Date: Fri Oct 16 08:25:18 2009 -0400 blender: Just adding to the BUILD so it will create a desktop icon. --- graphics/blender/BUILD | 15 ++++++++++++++- 1 files changed, 14 insertions(+), 1 deletions(-) diff --git a/graphics/blender/BUILD b/graphics/blender/BUILD index 5a006ba..8c7033f 100644 --- a/graphics/blender/BUILD +++ b/graphics/blender/BUILD @@ -25,6 +25,19 @@ scons LCGDIR=lib BF_BUILDDIR=build BF_INSTALLDIR=/opt/lunar/blender && install -m 755 -d /usr/share/pixmaps/ && - install -m 644 release/freedesktop/icons/32x32/blender.png /usr/share/pixmaps/ + install -m 644 release/freedesktop/icons/32x32/blender.png /usr/share/pixmaps/ && + + # Desktop menu entry + cat > ${MODULE}.desktop << EOF && +[Desktop Entry] +Type=Application +Name=Blender +Comment=3D modeling, animation and rendering +Exec=/opt/lunar/blender/blender +Icon=/opt/lunar/blender/icons/scalable/blender.svg +Categories=Qt;KDE;Graphics; +EOF + + install -D -m644 ${MODULE}.desktop /usr/share/applications/${MODULE}.desktop ) > $C_FIFO 2>&1 From florin at lunar-linux.org Fri Oct 16 19:33:25 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 16 Oct 2009 20:33:25 +0300 Subject: [Lunar-commits] compiz: version bumped to 0.8.4. Message-ID: <20091016173431.5D3D7F3FDF@doppio.foo-projects.org> commit 6ca232f97e2524775287f2af2903e74907f69b47 Author: Florin Braescu Date: Fri Oct 16 20:33:25 2009 +0300 compiz: version bumped to 0.8.4. This release brings two new plugins, translation updates, many bug fixes, improved stability, and better screen resolution change handling. Also included is additional integration work for KDE 4. --- zbeta/compiz/compiz/DETAILS | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/zbeta/compiz/compiz/DETAILS b/zbeta/compiz/compiz/DETAILS index e7e2bda..2da66fe 100644 --- a/zbeta/compiz/compiz/DETAILS +++ b/zbeta/compiz/compiz/DETAILS @@ -1,12 +1,12 @@ MODULE=compiz - VERSION=0.8.2 + VERSION=0.8.4 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://releases.compiz.org/$VERSION/ - SOURCE_VFY=sha1:7eed677eafe8c9dc75fc4d0db2c40a798abf7770 + SOURCE_URL=http://releases.compiz.org/$VERSION + SOURCE_VFY=sha1:be7911abb8a695423d7e83e5803217985837ee0e WEB_SITE=http://compiz.org ENTERED=20070219 - UPDATED=20090318 - SHORT="compositing window manager" + UPDATED=20091016 + SHORT="A compositing window manager" cat< binutils: version bumped to 2.20. Message-ID: <20091017154528.8A6BD9B200@doppio.foo-projects.org> commit 0fdf29c8b8f086dca14e49b7755747c95bcd8c38 Author: Florin Braescu Date: Sat Oct 17 18:44:33 2009 +0300 binutils: version bumped to 2.20. Bugfixes and improvements. --- devel/binutils/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devel/binutils/DETAILS b/devel/binutils/DETAILS index 8d16e09..d75791d 100644 --- a/devel/binutils/DETAILS +++ b/devel/binutils/DETAILS @@ -1,12 +1,12 @@ MODULE=binutils - VERSION=2.19.1 + VERSION=2.20 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=$GNU_URL/$MODULE SOURCE_URL[1]=ftp://ftp.gnu.org/pub/gnu/$MODULE - SOURCE_VFY=sha1:88c91e36cde93433e4c4c2b2e3417777aad84526 + SOURCE_VFY=sha1:747e7b4d94bce46587236dc5f428e5b412a590dc WEB_SITE=http://sources.redhat.com/binutils ENTERED=20010922 - UPDATED=20090923 + UPDATED=20091017 SHORT="An essential collection of binary utilities" cat << EOF From florin at lunar-linux.org Sat Oct 17 21:49:32 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sat, 17 Oct 2009 22:49:32 +0300 Subject: [Lunar-commits] LiVES: version bumped to 1.1.4. Message-ID: <20091017195041.098799B204@doppio.foo-projects.org> commit 301b831e5e6f7019dae9cabcdc4ef9cec1ad75dc Author: Florin Braescu Date: Sat Oct 17 22:49:32 2009 +0300 LiVES: version bumped to 1.1.4. Changes: Multitrack layouts can now be backed up automatically. Mouse scrolling can be used to switch clips. The custom mjpegtools format allows the selection of aspect ratio. Fading audio out no longer skips the last frame in a selection. Several small memory leaks were fixed. A crash when autoreloading layouts was fixed. The correct filename is set in "File -> Save...". Translations to Finnish, German, Hungarian, Italian, Slovak, and Spanish have been updated. --- video/LiVES/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/video/LiVES/DETAILS b/video/LiVES/DETAILS index 088619d..1c8a7d0 100644 --- a/video/LiVES/DETAILS +++ b/video/LiVES/DETAILS @@ -1,12 +1,12 @@ MODULE=LiVES - VERSION=1.1.3 + VERSION=1.1.4 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/lives-$VERSION SOURCE_URL=http://www.xs4all.nl/~salsaman/lives/current - SOURCE_VFY=sha1:e2f9bcab4c5c20be7c72e323cf239b0a27d687f0 + SOURCE_VFY=sha1:5f8d6d180bd37ec25358a3a652b03527e33a71cb WEB_SITE=http://lives.sourceforge.net ENTERED=20050106 - UPDATED=20090928 + UPDATED=20091017 SHORT="Video Editing System" cat << EOF From zbiggy at lunar-linux.org Sat Oct 17 22:20:19 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Sat, 17 Oct 2009 22:20:19 +0200 Subject: [Lunar-commits] git: updated to 1.6.5.1 Message-ID: <20091017202036.AB2539B203@doppio.foo-projects.org> commit 7c16a041818be2d8d44e979840d0ff830ec23536 Author: Zbigniew Luszpinski Date: Sat Oct 17 22:20:19 2009 +0200 git: updated to 1.6.5.1 --- devel/git/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devel/git/DETAILS b/devel/git/DETAILS index 97cd9c4..5911a5e 100644 --- a/devel/git/DETAILS +++ b/devel/git/DETAILS @@ -1,17 +1,17 @@ MODULE=git - VERSION=1.6.5 + VERSION=1.6.5.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE2=$MODULE-manpages-$VERSION.tar.bz2 SOURCE3=$MODULE-makefile-install-8.patch SOURCE_URL=$KERNEL_URL/pub/software/scm/git SOURCE2_URL=$KERNEL_URL/pub/software/scm/git SOURCE3_URL=$PATCH_URL - SOURCE_VFY=sha1:8047b6ea66bd0651c4f103febcba8eedfc034677 - SOURCE2_VFY=sha1:ebc5d4edf9bb1541774b9224dd0609a22ba64862 + SOURCE_VFY=sha1:c955aa579be9bf5991adf465e6e4a2d6ba173fc1 + SOURCE2_VFY=sha1:e0dc828f2ec4a4ab47ee7f56ba305843e4f7fa8b SOURCE3_VFY=sha1:647b27f4474b89c3003eeb35856cfaaf76bf8ce8 WEB_SITE=http://git-scm.com ENTERED=20050707 - UPDATED=20091011 + UPDATED=20091017 SHORT="Fast version control system" PSAFE=no From florin at lunar-linux.org Sun Oct 18 05:50:54 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 18 Oct 2009 06:50:54 +0300 Subject: [Lunar-commits] openbox: add pango needed depend. Message-ID: <20091018035124.05F629B200@doppio.foo-projects.org> commit 1d34b737f0175cc9ec64d4dce85bae8021e4fd4e Author: Florin Braescu Date: Sun Oct 18 06:50:54 2009 +0300 openbox: add pango needed depend. --- lxde/openbox/DEPENDS | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lxde/openbox/DEPENDS b/lxde/openbox/DEPENDS index 5bc2bae..b37353c 100644 --- a/lxde/openbox/DEPENDS +++ b/lxde/openbox/DEPENDS @@ -1 +1,2 @@ +depends pango depends libxml2 From florin at lunar-linux.org Sun Oct 18 06:00:24 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 18 Oct 2009 07:00:24 +0300 Subject: [Lunar-commits] qpopper: version bumped to 4.0.19. Message-ID: <20091018040052.171049B200@doppio.foo-projects.org> commit 08237114bd559484d9eed01aa6a956a82c33373d Author: Florin Braescu Date: Sun Oct 18 07:00:24 2009 +0300 qpopper: version bumped to 4.0.19. Bugfixes. --- mail/qpopper/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mail/qpopper/DETAILS b/mail/qpopper/DETAILS index dc4c7f9..c1db4aa 100644 --- a/mail/qpopper/DETAILS +++ b/mail/qpopper/DETAILS @@ -1,12 +1,12 @@ MODULE=qpopper - VERSION=4.0.18 + VERSION=4.0.19 SOURCE=$MODULE$VERSION.tar.gz SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE$VERSION SOURCE_URL=ftp://ftp.qualcomm.com/eudora/servers/unix/popper - SOURCE_VFY=sha1:1d9b262d8df00394187431e2a57a909d39208886 + SOURCE_VFY=sha1:39a8e56c87a94673c3695b5f64648a1d581a3ebf WEB_SITE=http://www.eudora.com/qpopper_general ENTERED=20020711 - UPDATED=20090724 + UPDATED=20091018 SHORT="The de facto POP3 server" cat << EOF From florin at lunar-linux.org Mon Oct 19 14:00:09 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 19 Oct 2009 15:00:09 +0300 Subject: [Lunar-commits] vsftpd: version bumped to 2.2.1. Message-ID: <20091019120043.3FC8E9B1F0@doppio.foo-projects.org> commit 5520cc24f2a79243682bcee35a6d384ba6c46a27 Author: Florin Braescu Date: Mon Oct 19 15:00:09 2009 +0300 vsftpd: version bumped to 2.2.1. Bugfixes release. --- ftp/vsftpd/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ftp/vsftpd/DETAILS b/ftp/vsftpd/DETAILS index 7ba829c..5d87761 100644 --- a/ftp/vsftpd/DETAILS +++ b/ftp/vsftpd/DETAILS @@ -1,11 +1,11 @@ MODULE=vsftpd - VERSION=2.2.0 + VERSION=2.2.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=ftp://vsftpd.beasts.org/users/cevans - SOURCE_VFY=sha1:7833b498e7f2c1c278fe7a365519a34d25974c60 + SOURCE_VFY=sha1:ef406c23bfe4ee71aea257b80ebb42cf0021704d WEB_SITE=http://vsftpd.beasts.org ENTERED=20021109 - UPDATED=20090813 + UPDATED=20091019 SHORT="Secure and fast FTP server" USE_WRAPPERS=no From stumbles at lunar-linux.org Mon Oct 19 14:56:01 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Mon, 19 Oct 2009 08:56:01 -0400 Subject: [Lunar-commits] qwtplot3d: Adding to moonbase. Message-ID: <20091019125714.CC5649B1F0@doppio.foo-projects.org> commit d3c82c064d723fad257e0bea19be7e51621cdb07 Author: Dennis `stumbles` Veatch Date: Mon Oct 19 08:56:01 2009 -0400 qwtplot3d: Adding to moonbase. --- qt4-apps/qwtplot3d/BUILD | 24 ++++++++++++++++++++++++ qt4-apps/qwtplot3d/DEPENDS | 2 ++ qt4-apps/qwtplot3d/DETAILS | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 64 insertions(+), 0 deletions(-) diff --git a/qt4-apps/qwtplot3d/BUILD b/qt4-apps/qwtplot3d/BUILD new file mode 100644 index 0000000..e79fccd --- /dev/null +++ b/qt4-apps/qwtplot3d/BUILD @@ -0,0 +1,24 @@ +( + + . /etc/profile.d/qt4.rc && + +# This will need to go on the next version bump. + sed -i "1i #include " src/qwt3d_function.cpp && + + qmake && + make && + prepare_install && + +# No make install, so here we go. + for i in lib/* ; do + [ -d $QTDIR/lib/$MODULE ] || mkdir -p $QTDIR/lib/$MODULE + install -m 644 $i $QTDIR/lib/$MODULE/ + done && +# Just for completeness, lets to also do the headers. + for i in include/* ; do + [ -d $QTDIR/include/$MODULE ] || mkdir -p $QTDIR/include/$MODULE + install -m 644 $i $QTDIR/include/$MODULE/ + done + +) > $C_FIFO 2>&1 + diff --git a/qt4-apps/qwtplot3d/DEPENDS b/qt4-apps/qwtplot3d/DEPENDS new file mode 100644 index 0000000..5cc6bab --- /dev/null +++ b/qt4-apps/qwtplot3d/DEPENDS @@ -0,0 +1,2 @@ +depends qt4 +depends qwt diff --git a/qt4-apps/qwtplot3d/DETAILS b/qt4-apps/qwtplot3d/DETAILS new file mode 100644 index 0000000..2a8c707 --- /dev/null +++ b/qt4-apps/qwtplot3d/DETAILS @@ -0,0 +1,38 @@ + MODULE=qwtplot3d + VERSION=0.2.7 + SOURCE=$MODULE-$VERSION.tgz + SOURCE_URL=$SFORGE_URL/$MODULE/ +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE + SOURCE_VFY=sha1:4463fafb8420a91825e165da7a296aaabd70abea + MODULE_PREFIX=${QT4_PREFIX:-/opt/lunar/qt/4} + WEB_SITE=http://qwtplot3d.sourceforge.net/ + ENTERED=20091019 + UPDATED=20091019 + SHORT="3D-widgets for programmers" + +cat << EOF +QwtPlot3D is not a program, but a feature-rich Qt/OpenGL-based C++ programming +library, providing essentially a bunch of 3D-widgets for programmers. + + Common code base for Qt3 and Qt4 + Specialized widgets for surfaces, graphs etc. + Parametric Surfaces + Lighting (experimental) + User defined visual objects + Scaling, rotating, shifting, zooming of data sets and mathematical + functions ( see Data Input Topics ) + Interactive mouse and keyboard handling + Resolution changing on the fly + Reading from MESH data files :See the 'data' directory and NativeReader documentation for this + Reading from FEM files + Flat (2D) labeling + Wireframe, filled polygons, hidden line + Floor projections (Isolines, Data) + Free configurable (labeling, numbering; linear, log or user-defined transformations) + and autoscalable axes + Free color model + Flat/Gouraud shading + Color legends + Pixmap output (all Qt supported formats) + Vector output (PostScript, EPS and PDF) via gl2ps +EOF From stumbles at lunar-linux.org Mon Oct 19 14:56:52 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Mon, 19 Oct 2009 08:56:52 -0400 Subject: [Lunar-commits] muparser: Adding to moonbase. Message-ID: <20091019125714.DA3C79B1F1@doppio.foo-projects.org> commit 2fb62a03af1fc2fb945a2776077dac27abed3bba Author: Dennis `stumbles` Veatch Date: Mon Oct 19 08:56:52 2009 -0400 muparser: Adding to moonbase. --- libs/muparser/BUILD | 7 +++++++ libs/muparser/DETAILS | 18 ++++++++++++++++++ 2 files changed, 25 insertions(+), 0 deletions(-) diff --git a/libs/muparser/BUILD b/libs/muparser/BUILD new file mode 100644 index 0000000..e1c0368 --- /dev/null +++ b/libs/muparser/BUILD @@ -0,0 +1,7 @@ +( + + OPTS+=" --enable-shared --disable-samples --enable-omf" && + + default_build + +) > $C_FIFO 2>&1 diff --git a/libs/muparser/DETAILS b/libs/muparser/DETAILS new file mode 100644 index 0000000..30deffe --- /dev/null +++ b/libs/muparser/DETAILS @@ -0,0 +1,18 @@ + MODULE=muparser + VERSION=v130 + SOURCE=$MODULE\_$VERSION.tar.gz + SOURCE_URL=$SFORGE_URL/$MODULE/$MODULE/ +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE/ + SOURCE_VFY=sha1:8411b189b05317d836c92b02b267f7be5bc08611 + WEB_SITE=http://muparser.sourceforge.net/ + ENTERED=20091019 + UPDATED=20091019 + SHORT="parsing of mathematical expressions" + +cat << EOF +Many applications require the parsing of mathematical expressions. The main +objective of this library is to provide a fast and easy way of doing this. +muParser is an extensible high performance math parser library written in +C++. It works by transforming a mathematical expression into bytecode and +precalculating constant parts of the expression. +EOF From stumbles at lunar-linux.org Mon Oct 19 15:00:22 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Mon, 19 Oct 2009 09:00:22 -0400 Subject: [Lunar-commits] gl2ps: Adding to moonbase. Message-ID: <20091019130042.A9E059B1F0@doppio.foo-projects.org> commit ec915f3ab5c88bd08fe27f8186e5d1bfddfae880 Author: Dennis `stumbles` Veatch Date: Mon Oct 19 09:00:22 2009 -0400 gl2ps: Adding to moonbase. --- printer/gl2ps/BUILD | 16 ++++++++++++++++ printer/gl2ps/DEPENDS | 3 +++ printer/gl2ps/DETAILS | 27 +++++++++++++++++++++++++++ 3 files changed, 46 insertions(+), 0 deletions(-) diff --git a/printer/gl2ps/BUILD b/printer/gl2ps/BUILD new file mode 100644 index 0000000..de24a0a --- /dev/null +++ b/printer/gl2ps/BUILD @@ -0,0 +1,16 @@ +( + + + OOT_BUILD_DIR="$SOURCE_DIRECTORY/$MODULE-build" && + + . /etc/profile.d/qt4.rc && + + mkdir $OOT_BUILD_DIR && + cd $OOT_BUILD_DIR && + + cmake $SOURCE_DIRECTORY/ -DCMAKE_INSTALL_PREFIX=$MODULE_PREFIX \ + -DCMAKE_BUILD_TYPE=RELEASE && + + default_make + +) > $C_FIFO 2>&1 diff --git a/printer/gl2ps/DEPENDS b/printer/gl2ps/DEPENDS new file mode 100644 index 0000000..5c19c9e --- /dev/null +++ b/printer/gl2ps/DEPENDS @@ -0,0 +1,3 @@ +depends cmake +depends teTeX-texmf +depends qt4 diff --git a/printer/gl2ps/DETAILS b/printer/gl2ps/DETAILS new file mode 100644 index 0000000..0d556bf --- /dev/null +++ b/printer/gl2ps/DETAILS @@ -0,0 +1,27 @@ + MODULE=gl2ps + VERSION=1.3.5 + SOURCE=$MODULE-$VERSION.tgz + SOURCE_URL=http://geuz.org/gl2ps/src/ +SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION-source/ + SOURCE_VFY=sha1:cf2c5220662581f48ef59173c64f41dc47011c6b + WEB_SITE=http://geuz.org/gl2ps/ + ENTERED=20091019 + UPDATED=20091019 + SHORT="OpenGL to PostScript printing library" + +cat << EOF +GL2PS is a C library providing high quality vector output for any OpenGL +application. The main difference between GL2PS and other similar libraries (see +section 7) is the use of sorting algorithms capable of handling intersecting +and stretched polygons, as well as non manifold objects. GL2PS provides advanced +smooth shading and text rendering, culling of invisible primitives, mixed +vector/bitmap output, and much more... + +GL2PS can currently create PostScript (PS), Encapsulated PostScript (EPS), +Portable Document Format (PDF) and Scalable Vector Graphics (SVG) files, as well +as LATEX files for the text fragments. GL2PS also provides limited, experimental +support for Portable LaTeX Graphics (PGF). Adding new vector output formats +should be relatively easy; you can also use the excellent pstoedit program to +transform the PostScript files generated by GL2PS into many other vector formats +such as xfig, cgm, wmf, etc. +EOF From florin at lunar-linux.org Mon Oct 19 17:12:23 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 19 Oct 2009 18:12:23 +0300 Subject: [Lunar-commits] mpd: version bumped to 0.15.5. Message-ID: <20091019151444.4DEB79B1F0@doppio.foo-projects.org> commit c6fa89b5f4e782574491ec058cc03c885ec84267 Author: Florin Braescu Date: Mon Oct 19 18:12:23 2009 +0300 mpd: version bumped to 0.15.5. Bugfixes release. --- audio/mpd/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/audio/mpd/DETAILS b/audio/mpd/DETAILS index 0c52848..ff69166 100644 --- a/audio/mpd/DETAILS +++ b/audio/mpd/DETAILS @@ -1,11 +1,11 @@ MODULE=mpd - VERSION=0.15.4 + VERSION=0.15.5 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/musicpd - SOURCE_VFY=sha1:4bcc52f67d2cc78394f4e7780135a47da3480eb8 + SOURCE_VFY=sha1:11dd020363d0c1ba1aa883d074a6c0e1d9df09fd WEB_SITE=http://musicpd.org ENTERED=20060421 - UPDATED=20091004 + UPDATED=20091019 SHORT="Music player daemon" cat << EOF From florin at lunar-linux.org Mon Oct 19 20:50:18 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 19 Oct 2009 21:50:18 +0300 Subject: [Lunar-commits] xfce4-power-manager: version bumped to 0.8.4. Message-ID: <20091019185108.43C909B1F0@doppio.foo-projects.org> commit d5544775fb8e3248a03098c8b45d0ccb2af59545 Author: Florin Braescu Date: Mon Oct 19 21:50:18 2009 +0300 xfce4-power-manager: version bumped to 0.8.4. --- xfce4/apps/xfce4-power-manager/DETAILS | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/xfce4/apps/xfce4-power-manager/DETAILS b/xfce4/apps/xfce4-power-manager/DETAILS index 3e0f4d9..624b639 100644 --- a/xfce4/apps/xfce4-power-manager/DETAILS +++ b/xfce4/apps/xfce4-power-manager/DETAILS @@ -1,12 +1,13 @@ MODULE=xfce4-power-manager - VERSION=0.6.5 + VERSION=0.8.4 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=http://goodies.xfce.org/releases/$MODULE - SOURCE_VFY=sha1:c7023147dcdca10be8d36ceb5b67a8bbd2f630f7 + SOURCE_URL[0]=http://goodies.xfce.org/releases/$MODULE + SOURCE_URL[1]=http://mocha.xfce.org/archive/src/apps/$MODULE/0.8/ + SOURCE_VFY=sha1:02cdf45e40f974539f678fb177cba12a0b846217 MODULE_PREFIX=${XFCE4_PREFIX:-/usr} WEB_SITE=http://www.xfce.org ENTERED=20090307 - UPDATED=20090405 + UPDATED=20091019 SHORT="A power manager Xfce" cat << EOF From florin at lunar-linux.org Mon Oct 19 21:10:44 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 19 Oct 2009 22:10:44 +0300 Subject: [Lunar-commits] xpdf: add a new security patch. Message-ID: <20091019191113.3F2E49B1F0@doppio.foo-projects.org> commit bdd0889d24d42a1c6d637c60be5f76da9cd7c4b7 Author: Florin Braescu Date: Mon Oct 19 22:10:44 2009 +0300 xpdf: add a new security patch. --- x11-apps/xpdf/BUILD | 1 + x11-apps/xpdf/DETAILS | 5 ++++- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/x11-apps/xpdf/BUILD b/x11-apps/xpdf/BUILD index 06b84d8..84fef96 100644 --- a/x11-apps/xpdf/BUILD +++ b/x11-apps/xpdf/BUILD @@ -3,6 +3,7 @@ patch_it $SOURCE_CACHE/$SOURCE2 1 && patch_it $SOURCE_CACHE/$SOURCE3 1 && patch_it $SOURCE_CACHE/$SOURCE4 1 && + patch_it $SOURCE_CACHE/$SOURCE5 1 && OPTS="$OPTS --with-freetype2-includes=/usr/include/freetype2 \ --sysconfdir=/etc --enable-opi --enable-multithreaded \ diff --git a/x11-apps/xpdf/DETAILS b/x11-apps/xpdf/DETAILS index 1db268f..8a0593d 100644 --- a/x11-apps/xpdf/DETAILS +++ b/x11-apps/xpdf/DETAILS @@ -4,17 +4,20 @@ SOURCE2=xpdf-3.02pl1.patch SOURCE3=xpdf-3.02pl2.patch SOURCE4=xpdf-3.02pl3.patch + SOURCE5=xpdf-3.02pl4.patch SOURCE_URL=ftp://ftp.foolabs.com/pub/xpdf SOURCE2_URL=$PATCH_URL SOURCE3_URL=$PATCH_URL SOURCE4_URL=$PATCH_URL + SOURCE5_URL=$PATCH_URL WEB_SITE=http://www.foolabs.com/xpdf SOURCE_VFY=sha1:f9940698840c8a8045677e8be68ab8580903e20a SOURCE2_VFY=sha1:cd3c8ed6e1fd3606098b85d5cc8a7d1aa305266d SOURCE3_VFY=sha1:d082ebe0d36cad0c04603950216f5c52de1c2593 SOURCE4_VFY=sha1:7b4644d6cc5835a708f4ef34ad5713553c716115 + SOURCE5_VFY=sha1:1eb4da032216ee0890888b26a1a5a6d2467a20b4 ENTERED=20020218 - UPDATED=20090417 + UPDATED=20091019 SHORT="A PDF viewer for X11" cat << EOF From florin at lunar-linux.org Mon Oct 19 21:11:41 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 19 Oct 2009 22:11:41 +0300 Subject: [Lunar-commits] poppler: version bumped to 0.12.1 Message-ID: <20091019191304.5616B9B1F0@doppio.foo-projects.org> commit 4116786cde186ce6068325e95682cb6c261b1d0d Author: Florin Braescu Date: Mon Oct 19 22:11:41 2009 +0300 poppler: version bumped to 0.12.1 Changes: Compilation with some compilers was fixed. A crash on fonts without CharCodeToUnicode was resolved. Reliability for streams with broken Length was improved. A crash when saving files that come from a stream without a name was resolved. The reliability of the save function was improved. An incorrect Length value is now fixed when saving. Security fixes based on xpdf 3.02pl4 were integrated. Several other bugfixes and improvements were made. The build system was enhanced. --- libs/poppler/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/poppler/DETAILS b/libs/poppler/DETAILS index f363592..dfa4614 100644 --- a/libs/poppler/DETAILS +++ b/libs/poppler/DETAILS @@ -1,11 +1,11 @@ MODULE=poppler - VERSION=0.12.0 + VERSION=0.12.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://poppler.freedesktop.org - SOURCE_VFY=sha1:6165cfc46340644e8750ab8a37f3a3d634144106 + SOURCE_VFY=sha1:0c8514f789eaab4e91ba1a841f58f8bee95e4a43 WEB_SITE=http://poppler.freedesktop.org ENTERED=20050918 - UPDATED=20090910 + UPDATED=20091019 SHORT="A PDF rendering library" cat << EOF From florin at lunar-linux.org Mon Oct 19 21:36:03 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 19 Oct 2009 22:36:03 +0300 Subject: [Lunar-commits] pcre: version bumped to 8.00. Message-ID: <20091019193657.276B99B1F0@doppio.foo-projects.org> commit bfbcea3c9f2b3d45b413ec32aa28f3a14da95d6e Author: Florin Braescu Date: Mon Oct 19 22:36:03 2009 +0300 pcre: version bumped to 8.00. Improvements have been made to the partial matching facilities, the "study" facility, and the handling of duplicate subpattern names. Bugs have been fixed. --- libs/pcre/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/pcre/DETAILS b/libs/pcre/DETAILS index 48d7d89..42a5bc8 100644 --- a/libs/pcre/DETAILS +++ b/libs/pcre/DETAILS @@ -1,12 +1,12 @@ MODULE=pcre - VERSION=7.9 + VERSION=8.00 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=ftp://ftp.csx.cam.ac.uk/pub/software/programming/$MODULE SOURCE_URL[1]=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:a4a34f71313ac042455355c01ad851791971a7fa + SOURCE_VFY=sha1:43ff361017905ab8f56e97d8d7fa8fb466f4c0c4 WEB_SITE=http://www.pcre.org ENTERED=20010922 - UPDATED=20090412 + UPDATED=20091019 SHORT="Perl compatible regular expression library" cat << EOF From tchan at lunar-linux.org Mon Oct 19 23:52:55 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Mon, 19 Oct 2009 16:52:55 -0500 Subject: [Lunar-commits] bzr: Version bump to 2.0.1 Message-ID: <20091019215324.E8D409B1F0@doppio.foo-projects.org> commit 59ff01b1db626e0c76da533e23febb86b40e7ee2 Author: Terry Chan Date: Mon Oct 19 16:52:55 2009 -0500 bzr: Version bump to 2.0.1 --- devel/bzr/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devel/bzr/DETAILS b/devel/bzr/DETAILS index 2e16e70..eeee9e5 100644 --- a/devel/bzr/DETAILS +++ b/devel/bzr/DETAILS @@ -1,12 +1,12 @@ MODULE=bzr - VERSION=2.0.0 + VERSION=2.0.1 MAJOR=2.0 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://launchpad.net/bzr/$MAJOR/$VERSION/+download - SOURCE_VFY=sha1:ed71f73229c1327e09ab2f26cd3870fd5570ba6a + SOURCE_VFY=sha1:e19c05e052290746de54f65254e056e39ba5e018 WEB_SITE=http://bazaar-vcs.org/ ENTERED=20050415 - UPDATED=20091009 + UPDATED=20091019 MAINTAINER=tchan at lunar-linux.org SHORT="next generation distributed version control" From ratler at lunar-linux.org Tue Oct 20 20:00:42 2009 From: ratler at lunar-linux.org (Stefan Wold) Date: Tue, 20 Oct 2009 20:00:42 +0200 Subject: [Lunar-commits] libfwbuilder, fwbuilder: Version bump to 3.0.7 Message-ID: <20091020180050.481A2F3601@doppio.foo-projects.org> commit f64f6f93a4446efb3ba272f6e332f0e16403853f Author: Stefan Wold Date: Tue Oct 20 20:00:42 2009 +0200 libfwbuilder, fwbuilder: Version bump to 3.0.7 --- libs/libfwbuilder/DETAILS | 6 +++--- security/fwbuilder/DETAILS | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/libfwbuilder/DETAILS b/libs/libfwbuilder/DETAILS index dd81d9d..cc58a72 100644 --- a/libs/libfwbuilder/DETAILS +++ b/libs/libfwbuilder/DETAILS @@ -1,12 +1,12 @@ MODULE=libfwbuilder - VERSION=3.0.6 + VERSION=3.0.7 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/fwbuilder/ - SOURCE_VFY=sha1:d76ef78bf0169e2f9c4cccdfe82ef05e091e31cc + SOURCE_VFY=sha1:d923541e52d1919eaa56575bdea6ab01e81ab36a WEB_SITE=http://www.fwbuilder.org/ MAINTAINER=ratler at lunar-linux.org ENTERED=20040730 - UPDATED=20090829 + UPDATED=20091020 SHORT="Library for fwbuilder" cat << EOF diff --git a/security/fwbuilder/DETAILS b/security/fwbuilder/DETAILS index 2059d2c..943f1f1 100644 --- a/security/fwbuilder/DETAILS +++ b/security/fwbuilder/DETAILS @@ -1,12 +1,12 @@ MODULE=fwbuilder - VERSION=3.0.6 + VERSION=3.0.7 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/fwbuilder/ - SOURCE_VFY=sha1:c1c4cf069ba35cbc1a377ba1b3572fab7e53ab97 + SOURCE_VFY=sha1:c08411bcf5b686ef86e1da6f0954d8685bf49d61 WEB_SITE=http://www.fwbuilder.org/ MAINTAINER=ratler at lunar-linux.org ENTERED=20040730 - UPDATED=20090829 + UPDATED=20091020 SHORT="A firewall configuration and management tool" cat << EOF From florin at lunar-linux.org Tue Oct 20 21:48:03 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 20 Oct 2009 22:48:03 +0300 Subject: [Lunar-commits] ktorrent4: version bumped to 3.2.5. Message-ID: <20091020194832.D9234F4213@doppio.foo-projects.org> commit 6aa3ec63c49e3dd896d3965d9a5dd46b8068df17 Author: Florin Braescu Date: Tue Oct 20 22:48:03 2009 +0300 ktorrent4: version bumped to 3.2.5. Bugfixes. --- kde4/extragear/ktorrent4/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kde4/extragear/ktorrent4/DETAILS b/kde4/extragear/ktorrent4/DETAILS index e773978..e8305c8 100644 --- a/kde4/extragear/ktorrent4/DETAILS +++ b/kde4/extragear/ktorrent4/DETAILS @@ -1,14 +1,14 @@ MODULE=ktorrent4 - MAJOR=3.2.4 + MAJOR=3.2.5 VERSION=${MAJOR} SOURCE=ktorrent-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/ktorrent-$VERSION SOURCE_URL=http://ktorrent.org/downloads/$VERSION - SOURCE_VFY=sha1:29a3a82e18796ebee99a5f399ee55ad8f40776ae + SOURCE_VFY=sha1:429fff36c63bea502a9d0746b36995446f3859fd WEB_SITE=http://www.kde.org MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} ENTERED=20080111 - UPDATED=20090927 + UPDATED=20091020 SHORT="BitTorrent client for KDE" cat << EOF From zbiggy at lunar-linux.org Wed Oct 21 02:27:08 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Wed, 21 Oct 2009 02:27:08 +0200 Subject: [Lunar-commits] aria2: updated to 1.6.2 Message-ID: <20091021002725.7793C9B1F0@doppio.foo-projects.org> commit b5d35de5a02c33a588a9b20a8a76d73bc38a74c5 Author: Zbigniew Luszpinski Date: Wed Oct 21 02:27:08 2009 +0200 aria2: updated to 1.6.2 --- zbeta/aria2/DETAILS | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/zbeta/aria2/DETAILS b/zbeta/aria2/DETAILS index 2afb17a..d99769b 100644 --- a/zbeta/aria2/DETAILS +++ b/zbeta/aria2/DETAILS @@ -1,11 +1,13 @@ MODULE=aria2 - VERSION=1.6.0 + VERSION=1.6.2 SOURCE=$MODULE-$VERSION.tar.bz2 + XZSOURCE=$MODULE-$VERSION.tar.xz SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:a481d06a9a61d8604ee4634e833fe9ccb3b5f093 + SOURCE_VFY=sha1:63255ddcd12021a2e4828694bf2e8ce9ee2b21a5 + XZSOURCE_VFY=sha1:a61cfe292bb040b95cd1660e13058a20a0c2c8ff WEB_SITE=http://aria2.sourceforge.net ENTERED=20071024 - UPDATED=20090930 + UPDATED=20091021 SHORT="Commandline downloader" cat << EOF From dagbrown at lart.ca Wed Oct 21 04:06:47 2009 From: dagbrown at lart.ca (Dave Brown) Date: Wed, 21 Oct 2009 11:06:47 +0900 Subject: [Lunar-commits] gem version bump to 1.3.5. Message-ID: <20091021020702.1D72B9B1F0@doppio.foo-projects.org> commit a0a62eab6e53cb8f181bb9eba6958ce2410b0d2c Author: Dave Brown Date: Wed Oct 21 11:06:47 2009 +0900 gem version bump to 1.3.5. --- devel/rubygems/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devel/rubygems/DETAILS b/devel/rubygems/DETAILS index a593997..cdb669f 100644 --- a/devel/rubygems/DETAILS +++ b/devel/rubygems/DETAILS @@ -1,11 +1,11 @@ MODULE=rubygems - VERSION=1.3.1 + VERSION=1.3.5 SOURCE=$MODULE-$VERSION.tgz - SOURCE_URL=http://rubyforge.org/frs/download.php/45905/ - SOURCE_VFY=sha1:a21ae466146bffb28ece05cddbdced0b908ca74f + SOURCE_URL=http://rubyforge.org/frs/download.php/60718/ + SOURCE_VFY=sha1:8545f25d00c757a310b879a2580e56d6012fc981 WEB_SITE=http://rubygems.rubyforge.org ENTERED=20050412 - UPDATED=20081224 + UPDATED=20091021 SHORT="Package management framework for the Ruby programming language." cat << EOF From dagbrown at lart.ca Wed Oct 21 04:09:02 2009 From: dagbrown at lart.ca (Dave Brown) Date: Wed, 21 Oct 2009 11:09:02 +0900 Subject: [Lunar-commits] gurgitate-mail: version bump to 1.10.1. Message-ID: <20091021020922.3723C9B1F0@doppio.foo-projects.org> commit 28bf0591618ffaa89a9ca0881a192c7fc9fc3324 Author: Dave Brown Date: Wed Oct 21 11:09:02 2009 +0900 gurgitate-mail: version bump to 1.10.1. --- mail/gurgitate-mail/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mail/gurgitate-mail/DETAILS b/mail/gurgitate-mail/DETAILS index c6df657..756ef0a 100644 --- a/mail/gurgitate-mail/DETAILS +++ b/mail/gurgitate-mail/DETAILS @@ -1,12 +1,12 @@ MODULE=gurgitate-mail - VERSION=1.10.0 + VERSION=1.10.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE SOURCE_URL=http://lart.ca/software/$MODULE/ - SOURCE_VFY=sha1:87eb3e4937646b418833bbc14f2d72310d896f87 + SOURCE_VFY=sha1:ab1b31130178bea2143fb80d5b9665112c9ccfee WEB_SITE=http://gurgitate-mail.lart.ca/wiki/show/HomePage ENTERED=20050922 - UPDATED=20080210 + UPDATED=20091021 SHORT="A highly-configurable mail delivery agent" cat << EOF From florin at lunar-linux.org Wed Oct 21 10:43:33 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 21 Oct 2009 11:43:33 +0300 Subject: [Lunar-commits] module-init-tools: version bumped to 3.11.1. Message-ID: <20091021084507.6BA9D9B1F0@doppio.foo-projects.org> commit fca8fe9c86259f0f6b54edec0f048cf6aa15f30e Author: Florin Braescu Date: Wed Oct 21 11:43:33 2009 +0300 module-init-tools: version bumped to 3.11.1. Bugfixes. --- kernel/module-init-tools/BUILD | 8 ++++---- kernel/module-init-tools/DETAILS | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/kernel/module-init-tools/BUILD b/kernel/module-init-tools/BUILD index 73bf2c1..d65734f 100644 --- a/kernel/module-init-tools/BUILD +++ b/kernel/module-init-tools/BUILD @@ -2,19 +2,19 @@ bad_flags -malign-double - if ! [ module_installed docbook-utils ]; then + if ![ module_installed docbook-utils ]; then patch_it $SOURCE_CACHE/$SOURCE2 1 fi && - + sedit "s:ln -s :ln -sf :" Makefile.in && ./configure --build=$BUILD \ --mandir=/usr/share/man \ --prefix=/lib/module-init-tools/ \ - ac_cv_prog_DOCBOOKTOMAN=yes && + ac_cv_prog_DOCBOOKTOMAN=yes && mkdir -p /etc/modprobe.d && default_make - + ) > $C_FIFO 2>&1 diff --git a/kernel/module-init-tools/DETAILS b/kernel/module-init-tools/DETAILS index 0cb10f5..178a04b 100644 --- a/kernel/module-init-tools/DETAILS +++ b/kernel/module-init-tools/DETAILS @@ -1,14 +1,14 @@ MODULE=module-init-tools - VERSION=3.11 + VERSION=3.11.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE2=${MODULE}_docbook.patch.bz2 SOURCE_URL=${KERNEL_URL}/pub/linux/utils/kernel/$MODULE SOURCE2_URL=$PATCH_URL - SOURCE_VFY=sha1:3944445cffdc9c6d6143e94fbfdf6f7a8e3fd3b9 + SOURCE_VFY=sha1:1be5f6be71fb9ea7790c9736114bbbf14e43c32e SOURCE2_VFY=sha1:673fda8d8c4a9d5a88aa25f5e8c56fc60ff8fcee WEB_SITE=http://www.kernel.org ENTERED=20030410 - UPDATED=20091016 + UPDATED=20091021 SHORT="Utilities essential for a modular Linux 2.6.x kernel" cat << EOF From florin at lunar-linux.org Wed Oct 21 10:52:28 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 21 Oct 2009 11:52:28 +0300 Subject: [Lunar-commits] proftpd: version bumped to 1.3.2b. Message-ID: <20091021085311.586999B1F0@doppio.foo-projects.org> commit c8a3c84f0c09d997507e769d986a980949dfd602 Author: Florin Braescu Date: Wed Oct 21 11:52:28 2009 +0300 proftpd: version bumped to 1.3.2b. Bugfixes release. --- ftp/proftpd/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ftp/proftpd/DETAILS b/ftp/proftpd/DETAILS index ff303e8..c4df75d 100644 --- a/ftp/proftpd/DETAILS +++ b/ftp/proftpd/DETAILS @@ -1,11 +1,11 @@ MODULE=proftpd - VERSION=1.3.2a + VERSION=1.3.2b SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=ftp://ftp.proftpd.org/distrib/source - SOURCE_VFY=sha1:a1972d656091963b60194949ca347cc704abf3ec + SOURCE_VFY=sha1:facd51ff9c35fa8bf2959d2829da1304a63c646a WEB_SITE=http://www.proftpd.org ENTERED=20011112 - UPDATED=20090701 + UPDATED=20091021 SHORT="A ftp server" cat << EOF From stumbles at lunar-linux.org Wed Oct 21 15:07:38 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 09:07:38 -0400 Subject: [Lunar-commits] R: Version bump. Message-ID: <20091021130753.8E19C9B1F0@doppio.foo-projects.org> commit 7ab862f735a2770a15c0d40b93bbf60be94b953c Author: Dennis `stumbles` Veatch Date: Wed Oct 21 09:07:38 2009 -0400 R: Version bump. --- science/R/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/science/R/DETAILS b/science/R/DETAILS index 2bfb6f4..03e66be 100644 --- a/science/R/DETAILS +++ b/science/R/DETAILS @@ -1,11 +1,11 @@ MODULE=R - VERSION=2.9.1 + VERSION=2.9.2 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://cran.r-project.org/src/base/R-2 - SOURCE_VFY=sha1:59bcc4e775db5c681aefbfafe9fc357bc99e1fad + SOURCE_VFY=sha1:3934743b67a57691db724606c575e38a35ecb590 WEB_SITE=http://www.r-project.org ENTERED=20021010 - UPDATED=20090807 + UPDATED=20091021 MAINTAINER=stumbles at lunar-linux.org SHORT="Language and environment for statistical computing and graphics" PSAFE=no From stumbles at lunar-linux.org Wed Oct 21 16:14:33 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 10:14:33 -0400 Subject: [Lunar-commits] fltk: Version bump. Yes I know it is rc1 but the website says it is stable. Message-ID: <20091021141551.CF269F2CEC@doppio.foo-projects.org> commit d49a2e028bd29b47ddd15b9bcc5f442ae6b01e31 Author: Dennis `stumbles` Veatch Date: Wed Oct 21 10:14:33 2009 -0400 fltk: Version bump. Yes I know it is rc1 but the website says it is stable. Gets around this make failure I just had; filename_list.cxx: In function 'int fl_filename_list(const char*, dirent***, int (*)(dirent**, dirent**))': filename_list.cxx:70: error: invalid conversion from 'int (*)(const void*, const void*)' to 'int (*)(const dirent**, const dirent**)' filename_list.cxx:70: error: initializing argument 4 of 'int scandir(const char*, dirent***, int (*)(const dirent*), int (*)(const dirent**, const dirent**))' make[1]: *** [filename_list.o] Error 1 --- libs/fltk/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/fltk/DETAILS b/libs/fltk/DETAILS index 4d57c79..1772d83 100644 --- a/libs/fltk/DETAILS +++ b/libs/fltk/DETAILS @@ -1,12 +1,12 @@ MODULE=fltk - VERSION=1.1.9 + VERSION=1.1.10rc1 SOURCE=$MODULE-$VERSION-source.tar.bz2 SOURCE_URL[0]=http://ftp.easysw.com/pub/$MODULE/$VERSION SOURCE_URL[1]=ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/$MODULE/$VERSION - SOURCE_VFY=sha1:6f21903dc53c829ec71e8e49655eb19e624c8247 + SOURCE_VFY=sha1:fb57990e02be2e5cd15fc6a250d88f6eb77d584b WEB_SITE=http://www.fltk.org ENTERED=20011129 - UPDATED=20080508 + UPDATED=20091021 MAINTAINER=tchan at lunar-linux.org GARBAGE=off SHORT="fast light graphical toolkit for X11" From stumbles at lunar-linux.org Wed Oct 21 16:17:22 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 10:17:22 -0400 Subject: [Lunar-commits] kdelibs4: Add a missing optional_depends. Message-ID: <20091021141757.77D8AF2CEC@doppio.foo-projects.org> commit 5050a4125f54f9a783f1fdf4af51fd83605e7a2c Author: Dennis `stumbles` Veatch Date: Wed Oct 21 10:17:22 2009 -0400 kdelibs4: Add a missing optional_depends. --- kde4/base/kdelibs4/DEPENDS | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/kde4/base/kdelibs4/DEPENDS b/kde4/base/kdelibs4/DEPENDS index 62b6a29..c556d3b 100644 --- a/kde4/base/kdelibs4/DEPENDS +++ b/kde4/base/kdelibs4/DEPENDS @@ -17,3 +17,4 @@ optional_depends "OpenEXR" "" "" "for high dynamic-range image support" optional_depends "attr" "" "" "for Access Control List support" optional_depends "heimdal" "" "" "for Generic Security Services support" optional_depends "xz" "" "" "for lzma compression/decompression support" +optional_depends "avahi" "" "" "for zeroconfig support" From florin at lunar-linux.org Wed Oct 21 18:31:59 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 21 Oct 2009 19:31:59 +0300 Subject: [Lunar-commits] SDL: version bumped to 1.2.14. Message-ID: <20091021163230.B97AB9B1F0@doppio.foo-projects.org> commit b41615703d5a9d6f1bd1b6cd9c5d3cee292a109b Author: Florin Braescu Date: Wed Oct 21 19:31:59 2009 +0300 SDL: version bumped to 1.2.14. Changes: Added cast macros for correct usage with C++: SDL_reinterpret_cast(type, expression) SDL_static_cast(type, expression) Added SDL_VIDEO_FULLSCREEN_DISPLAY as a preferred synonym for SDL_VIDEO_FULLSCREEN_HEAD on X11. Added SDL_DISABLE_LOCK_KEYS environment variable to enable normal up/down events for Caps-Lock and Num-Lock keys. --- graphics/SDL/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/SDL/DETAILS b/graphics/SDL/DETAILS index 603d1dc..222888c 100644 --- a/graphics/SDL/DETAILS +++ b/graphics/SDL/DETAILS @@ -1,12 +1,12 @@ MODULE=SDL - VERSION=1.2.13 + VERSION=1.2.14 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL[0]=$SFORGE_URL/libsdl SOURCE_URL[1]=http://www.libsdl.org/release - SOURCE_VFY=sha1:51fcaa3e1d5c01fd813ea08688780f86b19cf539 + SOURCE_VFY=sha1:ba625b4b404589b97e92d7acd165992debe576dd WEB_SITE=http://www.libsdl.org ENTERED=20010922 - UPDATED=20090830 + UPDATED=20091021 SHORT="A portable game library for low-level access to hardware" cat << EOF From stumbles at lunar-linux.org Wed Oct 21 18:33:06 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 12:33:06 -0400 Subject: [Lunar-commits] lensfun: Adding a sedit due to the recent gcc/glibc bump. Message-ID: <20091021163342.DCB439B1F0@doppio.foo-projects.org> commit 654c0f8e19f6f53c9986e206c2a0aedbf0189e7b Author: Dennis `stumbles` Veatch Date: Wed Oct 21 12:33:06 2009 -0400 lensfun: Adding a sedit due to the recent gcc/glibc bump. --- graphics/lensfun/BUILD | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/graphics/lensfun/BUILD b/graphics/lensfun/BUILD index 2ac30f5..79208c9 100644 --- a/graphics/lensfun/BUILD +++ b/graphics/lensfun/BUILD @@ -1,5 +1,8 @@ ( +# Just another gcc/glibc adjustment. + sedit "s:eol = strchr (var, 0);:eol = (char *)strchr (var, 0);:" tools/makedep/cppsetup.cpp && + ./configure --prefix=/usr \ $OPTS && # it has some outdated document tags and this fixes some of them From florin at lunar-linux.org Wed Oct 21 18:38:52 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 21 Oct 2009 19:38:52 +0300 Subject: [Lunar-commits] SDL_image: version bumped to 1.2.8. Message-ID: <20091021164114.B03F09B1F0@doppio.foo-projects.org> commit 7a0bb7e34bd73af279436748072e753cf09f61b7 Author: Florin Braescu Date: Wed Oct 21 19:38:52 2009 +0300 SDL_image: version bumped to 1.2.8. Changes: * Added support for uncompressed PCX files * Added IMG_Init()/IMG_Quit() to prevent constantly loading and unloading DLLs * Added support for ICO and CUR image files * Added ImageIO loading infrastructure for Mac OS X * Added UIImage loading infrastructure for iPhone / iPod Touch --- graphics/SDL_image/DEPENDS | 6 +++--- graphics/SDL_image/DETAILS | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/graphics/SDL_image/DEPENDS b/graphics/SDL_image/DEPENDS index 214b0ef..930ef61 100644 --- a/graphics/SDL_image/DEPENDS +++ b/graphics/SDL_image/DEPENDS @@ -1,5 +1,5 @@ -depends libpng && -depends SDL && -depends jpeg && +depends libpng +depends SDL +depends jpeg optional_depends "tiff" "--enable-tif" "--disable-tiff" "support TIFF images" diff --git a/graphics/SDL_image/DETAILS b/graphics/SDL_image/DETAILS index a4ef90f..b0c640b 100644 --- a/graphics/SDL_image/DETAILS +++ b/graphics/SDL_image/DETAILS @@ -1,12 +1,12 @@ MODULE=SDL_image - VERSION=1.2.7 + VERSION=1.2.8 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL[0]=$SFORGE_URL/libsdl SOURCE_URL[1]=http://www.libsdl.org/projects/$MODULE/release - SOURCE_VFY=sha1:0cffd05e41014651e7114d7fea309c9f37ef2d8a + SOURCE_VFY=sha1:ce9f208b57e4bb5e677c79b6a241f86f5430dda4 WEB_SITE=http://www.libsdl.org/projects/$MODULE ENTERED=20010922 - UPDATED=20081220 + UPDATED=20091021 SHORT="A simple library to load images as SDL surfaces" cat << EOF From florin at lunar-linux.org Wed Oct 21 18:46:48 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 21 Oct 2009 19:46:48 +0300 Subject: [Lunar-commits] SDL_mixer: version bumped to 1.2.9. Message-ID: <20091021164729.113BC9B1F0@doppio.foo-projects.org> commit bacab4a0b5eef592f1724932f81272f7d8965632 Author: Florin Braescu Date: Wed Oct 21 19:46:48 2009 +0300 SDL_mixer: version bumped to 1.2.9. Changes: * Reset channel volumes after a fade out interrupts a fade in. * Fixed crash race condition with position audio functions * Fixed stereo panning in 8-bit mode * Added /usr/share/timidity to the default timidity.cfg locations * MOD support uses libmikmod and is dynamically loaded by default * Added TIMIDITY_CFG environment variable to fully locate timidity.cfg * Implemented seamless looping for music playback * ID3 files are now recognized as MP3 format * Added decoder enumeration API: Mix_GetNumChunkDecoders(), Mix_GetChunkDecoder(), Mix_GetNumMusicDecoders(), Mix_GetMusicDecoder() * Added support for FLAC audio both as chunks and streaming * Added support for streaming WAV files with Mix_LoadMUS_RW() * Fixed crash caused by not resetting position_channels --- audio/SDL_mixer/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/audio/SDL_mixer/DETAILS b/audio/SDL_mixer/DETAILS index 9bad799..4b48479 100644 --- a/audio/SDL_mixer/DETAILS +++ b/audio/SDL_mixer/DETAILS @@ -1,16 +1,16 @@ MODULE=SDL_mixer - VERSION=1.2.8 + VERSION=1.2.9 SOURCE=$MODULE-$VERSION.tar.gz SOURCE2=timidity.tar.gz SOURCE_URL[0]=$SFORGE_URL/libsdl SOURCE_URL[1]=http://www.libsdl.org/projects/$MODULE/release SOURCE2_URL=http://www.libsdl.org/projects/$MODULE/timidity - SOURCE_VFY=sha1:7fa56d378f9ca53434f9470aeb2997ad84a348c6 + SOURCE_VFY=sha1:33c43d868ec7a30de1a44a6ac05e5419b5ff53df SOURCE2_VFY=sha1:36445b1e1d52e01447a8afd329940116e55c28d0 WEB_SITE=http://www.libsdl.org/projects/$MODULE ENTERED=20010922 - UPDATED=20070821 - SHORT="an SDL based, multi-channel audio mixer library" + UPDATED=20091021 + SHORT="A SDL based, multi-channel audio mixer library" cat << EOF SDL_mixer is a sample multi-channel audio mixer library. It supports any From stumbles at lunar-linux.org Wed Oct 21 19:10:47 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 13:10:47 -0400 Subject: [Lunar-commits] libnl2: A slight change in the build process. Message-ID: <20091021171113.B74E29B1F0@doppio.foo-projects.org> commit 20176882ab753c3b005fa6ec763774f9c2b42018 Author: Dennis `stumbles` Veatch Date: Wed Oct 21 13:10:47 2009 -0400 libnl2: A slight change in the build process. --- zbeta/libnl2/BUILD | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/zbeta/libnl2/BUILD b/zbeta/libnl2/BUILD index aabc170..5ac6f8f 100644 --- a/zbeta/libnl2/BUILD +++ b/zbeta/libnl2/BUILD @@ -1,6 +1,6 @@ ( - autoreconf && + ./autogen.sh && default_build From zbiggy at lunar-linux.org Wed Oct 21 19:39:04 2009 From: zbiggy at lunar-linux.org (Zbigniew Luszpinski) Date: Wed, 21 Oct 2009 19:39:04 +0200 Subject: [Lunar-commits] aria2: removed XZ SRC and XZ VFY Message-ID: <20091021173920.E024B9B1F0@doppio.foo-projects.org> commit 8569ab16d2fd2114030d3b6e8add0ba23381b522 Author: Zbigniew Luszpinski Date: Wed Oct 21 19:39:04 2009 +0200 aria2: removed XZ SRC and XZ VFY --- zbeta/aria2/DETAILS | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/zbeta/aria2/DETAILS b/zbeta/aria2/DETAILS index d99769b..ca7f4da 100644 --- a/zbeta/aria2/DETAILS +++ b/zbeta/aria2/DETAILS @@ -1,10 +1,8 @@ MODULE=aria2 VERSION=1.6.2 - SOURCE=$MODULE-$VERSION.tar.bz2 - XZSOURCE=$MODULE-$VERSION.tar.xz + SOURCE=$MODULE-$VERSION.tar.xz SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:63255ddcd12021a2e4828694bf2e8ce9ee2b21a5 - XZSOURCE_VFY=sha1:a61cfe292bb040b95cd1660e13058a20a0c2c8ff + SOURCE_VFY=sha1:a61cfe292bb040b95cd1660e13058a20a0c2c8ff WEB_SITE=http://aria2.sourceforge.net ENTERED=20071024 UPDATED=20091021 From stumbles at lunar-linux.org Wed Oct 21 20:50:02 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 14:50:02 -0400 Subject: [Lunar-commits] google-gadgets-for-linux: Version bump, and need this BUILD. Message-ID: <20091021185036.D27C69B1F0@doppio.foo-projects.org> commit bfe9bf8521fb77b4b5a9aafac0971a4fd401edca Author: Dennis `stumbles` Veatch Date: Wed Oct 21 14:50:02 2009 -0400 google-gadgets-for-linux: Version bump, and need this BUILD. --- web/google-gadgets-for-linux/BUILD | 7 +++++++ web/google-gadgets-for-linux/DETAILS | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/web/google-gadgets-for-linux/BUILD b/web/google-gadgets-for-linux/BUILD new file mode 100644 index 0000000..ace59d6 --- /dev/null +++ b/web/google-gadgets-for-linux/BUILD @@ -0,0 +1,7 @@ +( + + OPTS+=" --disable-werror" + + default_build + +) > $C_FIFO 2>&1 diff --git a/web/google-gadgets-for-linux/DETAILS b/web/google-gadgets-for-linux/DETAILS index 73eb2e7..9c29422 100644 --- a/web/google-gadgets-for-linux/DETAILS +++ b/web/google-gadgets-for-linux/DETAILS @@ -1,11 +1,11 @@ MODULE=google-gadgets-for-linux - VERSION=0.11.0 + VERSION=0.11.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://google-gadgets-for-linux.googlecode.com/files/ - SOURCE_VFY=sha1:68342edf0cc168c32c424f8bbb59f84863aca5c4 + SOURCE_VFY=sha1:f33be5c7bd8dde1103766c27cab638fe52b7b36a WEB_SITE=http://code.google.com/p/google-gadgets-for-linux/ ENTERED=20090125 - UPDATED=20090610 + UPDATED=20091021 SHORT="google desktop gadgets" cat << EOF From stumbles at lunar-linux.org Wed Oct 21 20:51:06 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 14:51:06 -0400 Subject: [Lunar-commits] google-gadgets-for-linux: Erk.... not PSAFE. Message-ID: <20091021185135.22F189B1F0@doppio.foo-projects.org> commit 7cd1a131cd5705be9733dd1eb9897f0c89ce2d5c Author: Dennis `stumbles` Veatch Date: Wed Oct 21 14:51:06 2009 -0400 google-gadgets-for-linux: Erk.... not PSAFE. --- web/google-gadgets-for-linux/DETAILS | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/web/google-gadgets-for-linux/DETAILS b/web/google-gadgets-for-linux/DETAILS index 9c29422..67307f2 100644 --- a/web/google-gadgets-for-linux/DETAILS +++ b/web/google-gadgets-for-linux/DETAILS @@ -8,6 +8,7 @@ UPDATED=20091021 SHORT="google desktop gadgets" +PSAFE=no cat << EOF Google Gadgets for Linux provides a platform for running desktop gadgets under Linux, catering to the unique needs of Linux users. It's compatible with the From stumbles at lunar-linux.org Wed Oct 21 21:36:57 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 15:36:57 -0400 Subject: [Lunar-commits] erlang: VErsion bump. Message-ID: <20091021193710.34EEE9B1ED@doppio.foo-projects.org> commit 27717ee44872e551280c317a43baf48f2d9928d3 Author: Dennis `stumbles` Veatch Date: Wed Oct 21 15:36:57 2009 -0400 erlang: VErsion bump. --- libs/erlang/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/erlang/DETAILS b/libs/erlang/DETAILS index a349a6e..3a881b8 100644 --- a/libs/erlang/DETAILS +++ b/libs/erlang/DETAILS @@ -1,12 +1,12 @@ MODULE=erlang - VERSION=R13B01 + VERSION=R13B02-1 SOURCE=otp_src_${VERSION}.tar.gz SOURCE_DIRECTORY=$BUILD_DIRECTORY/otp_src_${VERSION} SOURCE_URL=http://www.erlang.org/download - SOURCE_VFY=sha1:29d0e06dd351f31c70112454f8187e70ee75ca03 + SOURCE_VFY=sha1:943715019f479cc48e160cfbfc2ddf60aa921185 WEB_SITE=http://www.erlang.org ENTERED=20021120 - UPDATED=20090825 + UPDATED=20091021 SHORT="General-purpose programming language and runtime environment" PSAFE=no From stumbles at lunar-linux.org Thu Oct 22 00:17:03 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 18:17:03 -0400 Subject: [Lunar-commits] cln: Version bump. Message-ID: <20091021221719.899599B1ED@doppio.foo-projects.org> commit 01e6e455faafd20cadda80e15a857cb3f3f38260 Author: Dennis `stumbles` Veatch Date: Wed Oct 21 18:17:03 2009 -0400 cln: Version bump. --- science/cln/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/science/cln/DETAILS b/science/cln/DETAILS index 0b0562d..0d270a9 100644 --- a/science/cln/DETAILS +++ b/science/cln/DETAILS @@ -1,14 +1,14 @@ MODULE=cln - VERSION=1.2.2 + VERSION=1.3.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=http://www.ginac.de/CLN/ SOURCE_URL[1]=ftp://ftpthep.physik.uni-mainz.de/pub/gnu/ - SOURCE_VFY=sha1:2d2a5d3e383a3043c5bf68299a466685ef4ec8ec + SOURCE_VFY=sha1:351506da9bd7b0b3cefd3a5424823797fb589acc WEB_SITE=http://www.ginac.de/CLN/ ENTERED=20060420 - UPDATED=20090206 - SHORT="C++ library for efficient computations with all kinds of numbers in arbitrary precision" + UPDATED=20091021 MAINTAINER=jannis at lunar-linux.org + SHORT="C++ library for efficient computations with all kinds of numbers in arbitrary precision" cat << EOF C++ library for efficient computations with all kinds of numbers in arbitrary precision From stumbles at lunar-linux.org Thu Oct 22 00:45:03 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 18:45:03 -0400 Subject: [Lunar-commits] libqalculate: Adding a sed to insert a missing include. Message-ID: <20091021224549.6648B9B1ED@doppio.foo-projects.org> commit 9a9106e9e4cc476cde444dc186b43756605c751a Author: Dennis `stumbles` Veatch Date: Wed Oct 21 18:45:03 2009 -0400 libqalculate: Adding a sed to insert a missing include. --- science/libqalculate/BUILD | 3 +++ science/libqalculate/DETAILS | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/science/libqalculate/BUILD b/science/libqalculate/BUILD index f324295..b06c00b 100644 --- a/science/libqalculate/BUILD +++ b/science/libqalculate/BUILD @@ -1,6 +1,9 @@ ( patch_it $SOURCE_CACHE/$SOURCE2 0 && + + sed -i "11i #include " libqalculate/Number.cc && + autoconf && default_build diff --git a/science/libqalculate/DETAILS b/science/libqalculate/DETAILS index 6d553f1..686fb50 100644 --- a/science/libqalculate/DETAILS +++ b/science/libqalculate/DETAILS @@ -8,9 +8,9 @@ SOURCE2_VFY=sha1:5546b0656a67fd3e3e7aec02d349b7f44da2478b WEB_SITE=http://qalculate.sf.net ENTERED=20060420 - UPDATED=20071202 - SHORT="Qalculate base library" + UPDATED=20091021 MAINTAINER=jannis at lunar-linux.org + SHORT="Qalculate base library" cat << EOF Qalculate! is a multi-purpose desktop calculator for GNU/Linux. It is From stumbles at lunar-linux.org Thu Oct 22 00:50:14 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 18:50:14 -0400 Subject: [Lunar-commits] alienarena: Version bump taking care of and adding; Message-ID: <20091021225107.841F49B1ED@doppio.foo-projects.org> commit 19f8dc1b0e8154309d0ff47b509c6a0c4bacfd6f Author: Dennis `stumbles` Veatch Date: Wed Oct 21 18:50:14 2009 -0400 alienarena: Version bump taking care of and adding; Fixed critical bug when using Nvidia 191.xx drivers Dynamic world shadows using shadowmaps New map, dm-zion2k9 Splash damage now triggers hit indicator sound New spawn effects --- games/alienarena/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/games/alienarena/DETAILS b/games/alienarena/DETAILS index 8fdbf61..8b7906c 100644 --- a/games/alienarena/DETAILS +++ b/games/alienarena/DETAILS @@ -1,14 +1,14 @@ MODULE=alienarena - VERSION=20091006 - VER=7_31 + VERSION=20091016 + VER=7_32 OS=linux SOURCE=$MODULE-$OS$VERSION.zip SOURCE_DIRECTORY=$BUILD_DIRECTORY/${MODULE}${VER} SOURCE_URL=http://icculus.org/alienarena/Files/ - SOURCE_VFY=sha1:6b2f5cf564f0534c0c8d5293e27a55833d4bdbf5 + SOURCE_VFY=sha1:9dcfaf4e9d8a6437adfd2091c9b60ac90d317135 WEB_SITE=http://red.planetarena.org/ ENTERED=20080606 - UPDATED=20091007 + UPDATED=20091021 SHORT="FPS freeware online deathmatch game" cat << EOF From stumbles at lunar-linux.org Thu Oct 22 01:04:50 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 21 Oct 2009 19:04:50 -0400 Subject: [Lunar-commits] xplanet: Another gcc/glibc twiddle. Message-ID: <20091021230523.090749B1ED@doppio.foo-projects.org> commit 4f337027c68506c509236047c303304a759fd3c2 Author: Dennis `stumbles` Veatch Date: Wed Oct 21 19:04:50 2009 -0400 xplanet: Another gcc/glibc twiddle. --- x11/xplanet/BUILD | 2 ++ x11/xplanet/DETAILS | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/x11/xplanet/BUILD b/x11/xplanet/BUILD index 6119b82..58eddf4 100644 --- a/x11/xplanet/BUILD +++ b/x11/xplanet/BUILD @@ -1,5 +1,7 @@ ( + sed -i "1i #include " src/Separation.cpp src/Satellite.cpp && + if module_installed xscreensaver; then OPTS="$OPTS --with-xscreensaver" fi && diff --git a/x11/xplanet/DETAILS b/x11/xplanet/DETAILS index 376a88c..437969d 100644 --- a/x11/xplanet/DETAILS +++ b/x11/xplanet/DETAILS @@ -5,7 +5,7 @@ SOURCE_VFY=sha1:c3810c303af8f0cb40520112d9cd1f24fa8b42b5 WEB_SITE=http://xplanet.sourceforge.net ENTERED=20020608 - UPDATED=20090513 + UPDATED=20091021 SHORT="Xplanet renders an image of a planet into the X root window" cat << EOF From florin at lunar-linux.org Thu Oct 22 08:22:47 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 22 Oct 2009 09:22:47 +0300 Subject: [Lunar-commits] subversion: version bumped to 1.6.6. Message-ID: <20091022062315.C94F09B1F1@doppio.foo-projects.org> commit d3a1f55cff413b28ebf3f9dd5c7938f66c925b07 Author: Florin Braescu Date: Thu Oct 22 09:22:47 2009 +0300 subversion: version bumped to 1.6.6. Bugfixes release. --- devel/subversion/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/devel/subversion/DETAILS b/devel/subversion/DETAILS index 0766872..de20e11 100644 --- a/devel/subversion/DETAILS +++ b/devel/subversion/DETAILS @@ -1,11 +1,11 @@ MODULE=subversion - VERSION=1.6.5 + VERSION=1.6.6 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://subversion.tigris.org/downloads - SOURCE_VFY=sha1:c575c5facf972e501049ad47a9be05c5cf228388 + SOURCE_VFY=sha1:01b03d04660fa5d1f76c742b0f8a38bf1ca1a507 WEB_SITE=http://subversion.tigris.org ENTERED=20030126 - UPDATED=20090822 + UPDATED=20091022 PSAFE=no SHORT="A free/open-source version control system" From florin at lunar-linux.org Thu Oct 22 20:35:36 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 22 Oct 2009 21:35:36 +0300 Subject: [Lunar-commits] pdfedit: version bumped to 0.4.3. Message-ID: <20091022183617.64E5F9B210@doppio.foo-projects.org> commit 5f5596ffe877782f8f3fa407384b56b3e11e09f6 Author: Florin Braescu Date: Thu Oct 22 21:35:36 2009 +0300 pdfedit: version bumped to 0.4.3. Bugfixes and enhacements. --- printer/pdfedit/DETAILS | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/printer/pdfedit/DETAILS b/printer/pdfedit/DETAILS index e5b6e01..eb2a612 100644 --- a/printer/pdfedit/DETAILS +++ b/printer/pdfedit/DETAILS @@ -1,17 +1,18 @@ MODULE=pdfedit - VERSION=0.3.2 + VERSION=0.4.3 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:d3954c6ede18d2d5b3e25c4b399aa9f36b36b32e + SOURCE_VFY=sha1:ae3fcdba0560bde0ca3c21596eb7fb96c15f3a60 WEB_SITE=http://pdfedit.petricek.net/pdfedit.index_e MODULE_PREFIX=${QT3_PREFIX:-/opt/lunar/qt/3} ENTERED=20071213 - UPDATED=20071213 + UPDATED=20091022 SHORT="manipulate PDF documents" PSAFE=no + cat << EOF Free (and open source) editor for manipulating PDF documents. GUI version + -commandline interface. Scripting is used to a great extent in editor and +commandline interface. Scripting is used to a great extent in editor and almost anything can be scripted, it is possible to create own scripts or plugins. EOF From florin at lunar-linux.org Thu Oct 22 21:14:33 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 22 Oct 2009 22:14:33 +0300 Subject: [Lunar-commits] strace: version bumped to 4.5.19. Message-ID: <20091022191531.4CA9F9B211@doppio.foo-projects.org> commit 2f7e01f8f316034f0b5e0da7eb5029b6a55b865e Author: Florin Braescu Date: Thu Oct 22 22:14:33 2009 +0300 strace: version bumped to 4.5.19. Bugfixes and enhacements. --- devel/strace/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devel/strace/DETAILS b/devel/strace/DETAILS index d70a04e..f46578f 100644 --- a/devel/strace/DETAILS +++ b/devel/strace/DETAILS @@ -1,11 +1,11 @@ MODULE=strace - VERSION=4.5.18 + VERSION=4.5.19 SOURCE=$MODULE-$VERSION.tar.bz2 - SOURCE_URL=$SFORGE_URL/$MODULE/ - SOURCE_VFY=sha1:50081a7201dc240299396f088abe53c07de98e4c + SOURCE_URL=$SFORGE_URL/$MODULE + SOURCE_VFY=sha1:5554c2fd8ffae5c1e2b289b2024aa85a0889c989 WEB_SITE=http://strace.sourceforge.net ENTERED=20010922 - UPDATED=20090829 + UPDATED=20091022 SHORT="System call tracing utility (like trace, truss, etc)" cat << EOF From florin at lunar-linux.org Thu Oct 22 21:16:33 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Thu, 22 Oct 2009 22:16:33 +0300 Subject: [Lunar-commits] ClanLib: version bumped to 2.1.0. Message-ID: <20091022191723.AE1EE9B211@doppio.foo-projects.org> commit d2a1ce3059e5ca0070ea9daa12b3cbf71494d44f Author: Florin Braescu Date: Thu Oct 22 22:16:33 2009 +0300 ClanLib: version bumped to 2.1.0. The biggest change is to the clanSound internals, making it more reliable and faster. Bugfixes. --- libs/ClanLib/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/ClanLib/DETAILS b/libs/ClanLib/DETAILS index c97e47b..1b54331 100644 --- a/libs/ClanLib/DETAILS +++ b/libs/ClanLib/DETAILS @@ -1,12 +1,12 @@ MODULE=ClanLib - VERSION=2.0.4 + VERSION=2.1.0 SOURCE=$MODULE-$VERSION.tgz SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION SOURCE_URL=http://www.clanlib.org/download/releases-2.0 - SOURCE_VFY=sha1:319e2cae447d3e8ed9907ba20e4af4855ccb54d2 + SOURCE_VFY=sha1:ce54a10c18e2d5dbb4098f308894a3914c0ff354 WEB_SITE=http://clanlib.org ENTERED=20011105 - UPDATED=20090918 + UPDATED=20091022 SHORT="Multi-Platform game development library" cat << EOF From florin at lunar-linux.org Fri Oct 23 04:42:21 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 23 Oct 2009 05:42:21 +0300 Subject: [Lunar-commits] snort: version bumped to 2.8.5.1. Message-ID: <20091023024322.CE9FF9B210@doppio.foo-projects.org> commit be74fe9ce1ef11c42aebcf75c9c477467c4004c4 Author: Florin Braescu Date: Fri Oct 23 05:42:21 2009 +0300 snort: version bumped to 2.8.5.1. Bugfixes release. --- security/snort/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/security/snort/DETAILS b/security/snort/DETAILS index 39c3bfd..2cdc4db 100644 --- a/security/snort/DETAILS +++ b/security/snort/DETAILS @@ -1,16 +1,16 @@ MODULE=snort - VERSION=2.8.5 + VERSION=2.8.5.1 MAJOR=2.8 SOURCE=$MODULE-$VERSION.tar.gz SOURCE2=snortrules-snapshot-$MAJOR.tar.gz SOURCE_URL=http://dl.snort.org/snort-current SOURCE2_URL[0]=$MIRROR_URL SOURCE2_URL[1]=http://dl.snort.org/reg-rules - SOURCE_VFY=sha1:28b153a6529962da5976b5ccbddfa11b001ab2bd + SOURCE_VFY=sha1:b971052cdd4b3527a0603854953103fe9ad8a45b SOURCE2_VFY=sha1:e53fa49b59732d523394ecb7e291d90ac76d8b8a WEB_SITE=http://www.snort.org ENTERED=20011022 - UPDATED=20090917 + UPDATED=20091023 SHORT="Lightweight network intrustion detection program" cat << EOF From florin at lunar-linux.org Fri Oct 23 04:52:10 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 23 Oct 2009 05:52:10 +0300 Subject: [Lunar-commits] linux-2.6: version bumped to 2.6.31.5. Message-ID: <20091023025326.271839B210@doppio.foo-projects.org> commit 39f916bc9e4c1b4518d472ecbef89b93cee93ee7 Author: Florin Braescu Date: Fri Oct 23 05:52:10 2009 +0300 linux-2.6: version bumped to 2.6.31.5. The 5-th serie of patches for 2.6.31 Linux kernel. --- kernel/linux-2.6/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/linux-2.6/DETAILS b/kernel/linux-2.6/DETAILS index c4b848e..ed1f9fc 100644 --- a/kernel/linux-2.6/DETAILS +++ b/kernel/linux-2.6/DETAILS @@ -1,5 +1,5 @@ MODULE=linux-2.6 - VERSION=2.6.31.4 + VERSION=2.6.31.5 BASE=$(echo $VERSION | cut -d. -f1,2,3) SOURCE=linux-${BASE}.tar.bz2 SOURCE2=patch-${VERSION}.bz2 @@ -11,11 +11,11 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/linux-$VERSION SOURCE2_URL[1]=http://www.kernel.org/pub/linux/kernel/v2.6 SOURCE3_URL[0]=$PATCH_URL SOURCE_VFY=sha1:c6e0e6b473ba2b80d164e37cfabf294e783c03d9 - SOURCE2_VFY=sha1:093c8be6b7b856620f510e4d9c696f5a19b8b3d0 + SOURCE2_VFY=sha1:3b0773213e551b5d8f7895cc7715903614ac94ca SOURCE3_VFY=sha1:aace1a887fab63ea6530533a4e87c6bb1721dc24 WEB_SITE=http://www.kernel.org ENTERED=20041019 - UPDATED=20091013 + UPDATED=20091023 SHORT="The core of a Linux GNU Operating System" KEEP_SOURCE=on TMPFS=off From stumbles at lunar-linux.org Fri Oct 23 14:53:50 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Fri, 23 Oct 2009 08:53:50 -0400 Subject: [Lunar-commits] live555: Version bump. Message-ID: <20091023125409.449829B241@doppio.foo-projects.org> commit fab2966125cba78ee79fd6da6538528e3a0f63b3 Author: Dennis `stumbles` Veatch Date: Fri Oct 23 08:53:50 2009 -0400 live555: Version bump. --- net/live555/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/live555/DETAILS b/net/live555/DETAILS index 110c1af..15662cc 100644 --- a/net/live555/DETAILS +++ b/net/live555/DETAILS @@ -1,12 +1,12 @@ MODULE=live555 - VERSION=2009.09.21 + VERSION=2009.09.28 SOURCE=live.$VERSION.tar.gz SOURCE_URL=http://www.live555.com/liveMedia/public/ SOURCE_DIRECTORY=$BUILD_DIRECTORY/live - SOURCE_VFY=sha1:f68548aad1b7f4622845232e9c9f297ae2e14dbb + SOURCE_VFY=sha1:e5657206976f592e3fd1fda9cfe77b5712498784 WEB_SITE=http://www.live555.com/liveMedia/#config-unix ENTERED=20090311 - UPDATED=20090922 + UPDATED=20091023 SHORT="libraries for multimedia streaming RTP/RTCP, RTSP, SIP" cat << EOF From florin at lunar-linux.org Fri Oct 23 18:55:39 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 23 Oct 2009 19:55:39 +0300 Subject: [Lunar-commits] mldonkey: version bumped to 3.0.1. Message-ID: <20091023165630.D8D899B2DB@doppio.foo-projects.org> commit 1bc5e4f237f3037e4eba55184b08e882274bcc70 Author: Florin Braescu Date: Fri Oct 23 19:55:39 2009 +0300 mldonkey: version bumped to 3.0.1. Changes: An urgent security related bug was fixed. Support for Ocaml 3.11.1 has been added. Some problems with parsing Bittorrent files were fixed. --- ftp/mldonkey/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ftp/mldonkey/DETAILS b/ftp/mldonkey/DETAILS index 4a7bccf..c3e0127 100644 --- a/ftp/mldonkey/DETAILS +++ b/ftp/mldonkey/DETAILS @@ -1,11 +1,11 @@ MODULE=mldonkey - VERSION=3.0.0 + VERSION=3.0.1 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:8d3f1808578bb145655050c0224f512afe0266b5 + SOURCE_VFY=sha1:f538245be05e6fc667dd596c1136fd0f64d845b8 WEB_SITE=http://savannah.nongnu.org/projects/$MODULE ENTERED=20040418 - UPDATED=20090301 + UPDATED=20091023 SHORT="A file sharing client" cat << EOF From florin at lunar-linux.org Fri Oct 23 20:44:56 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 23 Oct 2009 21:44:56 +0300 Subject: [Lunar-commits] pure-ftpd: version bumped to 1.0.23. Message-ID: <20091023184608.CC06AF36C1@doppio.foo-projects.org> commit 6e667a821d2f12d645be8b00e3c4a1bbe167922c Author: Florin Braescu Date: Fri Oct 23 21:44:56 2009 +0300 pure-ftpd: version bumped to 1.0.23. Changes: LDAP authentication through binding is now possible in addition to passwords. Transfers now handle every kind of disconnection. Virtual quotas are much more reliable and uploads are interrupted as soon as quotas are exceeded. Atomic uploads are only used when necessary. Conformance with RFCs was enhanced and compatibility with FTP clients was improved. SSL performance, compatibility, and commands support were improved. Support for building a FTPS (implicit SSL/TLS) server was added. A bunch of bug fixes and optimizations were made. --- ftp/pure-ftpd/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ftp/pure-ftpd/DETAILS b/ftp/pure-ftpd/DETAILS index 28b43e7..c0c7e35 100644 --- a/ftp/pure-ftpd/DETAILS +++ b/ftp/pure-ftpd/DETAILS @@ -1,13 +1,13 @@ MODULE=pure-ftpd - VERSION=1.0.22 + VERSION=1.0.23 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=ftp://ftp.pureftpd.org/pub/$MODULE/releases SOURCE_URL[1]=$SFORGE_URL/pureftpd SOURCE_URL[2]=http://sunsite.rediris.es/sites/ftp.fr.pureftpd.org/pub/$MODULE/releases - SOURCE_VFY=sha1:e8ec561e977cd205f875265ddc56f1284fe4d70e + SOURCE_VFY=sha1:ca5fd52bce5b489724c9e0e2a43b72c37602fa29 WEB_SITE=http://www.pureftpd.org ENTERED=20010922 - UPDATED=20090427 + UPDATED=20091023 SHORT="An efficient, lightweight, and secure FTP server" cat << EOF From stumbles at lunar-linux.org Fri Oct 23 20:50:21 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Fri, 23 Oct 2009 14:50:21 -0400 Subject: [Lunar-commits] PyQt4: Version bump. Message-ID: <20091023185052.E7C30F38CF@doppio.foo-projects.org> commit 65eb580ba63311cce20c014f26be98575303c282 Author: Dennis `stumbles` Veatch Date: Fri Oct 23 14:50:21 2009 -0400 PyQt4: Version bump. --- python/PyQt4/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/PyQt4/DETAILS b/python/PyQt4/DETAILS index 9ade7ae..7231b76 100644 --- a/python/PyQt4/DETAILS +++ b/python/PyQt4/DETAILS @@ -1,14 +1,14 @@ MODULE=PyQt4 EXTRA=x11-gpl - VERSION=4.6 + VERSION=4.6.1 SOURCE=PyQt-$EXTRA-$VERSION.tar.gz SOURCE_DIRECTORY=$BUILD_DIRECTORY/PyQt-$EXTRA-$VERSION SOURCE_URL=http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4 - SOURCE_VFY=sha1:0bee923e68b5134b9bcc13078ffc3da744a150e5 + SOURCE_VFY=sha1:a1ef956ff2f3fbdada98032c1332d77a2fc89f37 MODULE_PREFIX=${QT4_PREFIX:-/opt/lunar/qt/4} WEB_SITE=http://www.riverbankcomputing.co.uk/news ENTERED=20080102 - UPDATED=20090928 + UPDATED=20091023 SHORT="A set of Python bindings for the Qt 4.x toolkit" cat << EOF From stumbles at lunar-linux.org Fri Oct 23 20:50:35 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Fri, 23 Oct 2009 14:50:35 -0400 Subject: [Lunar-commits] sip: Version bump. Message-ID: <20091023185053.005EDF38AE@doppio.foo-projects.org> commit 42fe80bc351e4fe2b6ff9d993814fdec0b46eee1 Author: Dennis `stumbles` Veatch Date: Fri Oct 23 14:50:35 2009 -0400 sip: Version bump. --- python/sip/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/sip/DETAILS b/python/sip/DETAILS index fb7bab3..d5417dc 100644 --- a/python/sip/DETAILS +++ b/python/sip/DETAILS @@ -1,11 +1,11 @@ MODULE=sip - VERSION=4.9 + VERSION=4.9.1 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://www.riverbankcomputing.com/static/Downloads/sip4 - SOURCE_VFY=sha1:5c9e0aa55d664e2a35295b031df950d0a4fe9529 + SOURCE_VFY=sha1:097b85511ce082d526fce8279fe48fa991f7cdf6 WEB_SITE=http://www.riverbankcomputing.co.uk/software/sip/intro ENTERED=20020520 - UPDATED=20090928 + UPDATED=20091023 SHORT="Create Python bindings for C++ libraries" cat << EOF From florin at lunar-linux.org Fri Oct 23 22:19:25 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 23 Oct 2009 23:19:25 +0300 Subject: [Lunar-commits] ncdu: version bumped to 1.6. Message-ID: <20091023202005.AA38B9B2DB@doppio.foo-projects.org> commit d152cb2eb5f580972e6f438c25e1128934b80288 Author: Florin Braescu Date: Fri Oct 23 23:19:25 2009 +0300 ncdu: version bumped to 1.6. This release adds hard link detection, VIM keybindings, improved support for non-ASCII characters in filenames, and fixes for several bugs. --- utils/ncdu/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/ncdu/DETAILS b/utils/ncdu/DETAILS index 4208130..35ed7d0 100644 --- a/utils/ncdu/DETAILS +++ b/utils/ncdu/DETAILS @@ -1,11 +1,11 @@ MODULE=ncdu - VERSION=1.5 + VERSION=1.6 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://dev.yorhel.nl/download - SOURCE_VFY=sha1:355c6837acb372edb02fe8fb81bdef1ab20656c6 + SOURCE_VFY=sha1:8de9954c119045ed01e447aac9a5def4de1a56fb WEB_SITE=http://dev.yorhel.nl/$MODULE ENTERED=20070724 - UPDATED=20090505 + UPDATED=20091023 SHORT="A ncurses based 'du' equivalent" cat << EOF From florin at lunar-linux.org Sat Oct 24 05:56:49 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sat, 24 Oct 2009 06:56:49 +0300 Subject: [Lunar-commits] xfsprogs: version bumped to 3.0.5. Message-ID: <20091024035810.73EDB9B2ED@doppio.foo-projects.org> commit 3d2a58173fe7f11e44c90b6e6f998b7277dd5014 Author: Florin Braescu Date: Sat Oct 24 06:56:49 2009 +0300 xfsprogs: version bumped to 3.0.5. New version number advises of availability of lpath_to_handle(), as well as significant performance-related changes to xfs_repair. --- filesys/xfsprogs/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/filesys/xfsprogs/DETAILS b/filesys/xfsprogs/DETAILS index b154f32..7344dbb 100644 --- a/filesys/xfsprogs/DETAILS +++ b/filesys/xfsprogs/DETAILS @@ -1,13 +1,13 @@ MODULE=xfsprogs - VERSION=3.0.3 + VERSION=3.0.5 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL[0]=ftp://oss.sgi.com/projects/xfs/cmd_tars SOURCE_URL[1]=ftp://ftp.silug.org/pub/xfs/cmd_tars SOURCE_URL[2]=ftp://sunsite.dk/mirrors/xfs/cmd_tars - SOURCE_VFY=sha1:621653d73227c5c273f0dd8972998b4c8dad3eb1 + SOURCE_VFY=sha1:f39ef8ecb5f22bf5855b46b033f121654103f545 WEB_SITE=http://oss.sgi.com/projects/xfs ENTERED=20020110 - UPDATED=20090831 + UPDATED=20091024 PSAFE=no SHORT="Required utilities for the XFS file system" From stumbles at lunar-linux.org Sat Oct 24 13:32:00 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Sat, 24 Oct 2009 07:32:00 -0400 Subject: [Lunar-commits] avogadro: Version bump. Message-ID: <20091024113233.579059B2FF@doppio.foo-projects.org> commit d4057f5824c795f77e49d3e430fe0e2b6dc3c014 Author: Dennis `stumbles` Veatch Date: Sat Oct 24 07:32:00 2009 -0400 avogadro: Version bump. --- science/avogadro/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/science/avogadro/DETAILS b/science/avogadro/DETAILS index decf064..8c590b9 100644 --- a/science/avogadro/DETAILS +++ b/science/avogadro/DETAILS @@ -1,12 +1,12 @@ MODULE=avogadro - VERSION=0.9.8 + VERSION=1.0.0 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:78de2419a93af9427a0d31fc0f022a47e924b490 + SOURCE_VFY=sha1:9d7f2acfd15de5db68572a6221c67d5fc9e7b8e1 MODULE_PREFIX=${AVO_INSTALL_DIR:-/opt/lunar/avogadro} WEB_SITE=http://avogadro.openmolecules.net/wiki/Main_Page ENTERED=20090411 - UPDATED=20090926 + UPDATED=20091024 SHORT="an advanced molecular editor" cat << EOF From tchan at lunar-linux.org Sat Oct 24 23:36:18 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Sat, 24 Oct 2009 16:36:18 -0500 Subject: [Lunar-commits] xine-lib: Removed the optional_depends for vorbis -- Module does NOT exist Message-ID: <20091024213626.CC2C29B2DB@doppio.foo-projects.org> commit b744e558ff764c48dc80f8a5d85689e1834394db Author: Terry Chan Date: Sat Oct 24 16:36:18 2009 -0500 xine-lib: Removed the optional_depends for vorbis -- Module does NOT exist --- video/xine-lib/DEPENDS | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/video/xine-lib/DEPENDS b/video/xine-lib/DEPENDS index df25ca3..c198262 100644 --- a/video/xine-lib/DEPENDS +++ b/video/xine-lib/DEPENDS @@ -10,11 +10,6 @@ optional_depends "speex" \ "--without-speex" \ "for Speex audio decoder" -optional_depends "vorbis" \ - "" \ - "--without-vorbis" \ - "for Vorbis audio decoder" - optional_depends "aalib" \ "" \ "--disable-aalib" \ From florin at lunar-linux.org Sun Oct 25 15:06:07 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sun, 25 Oct 2009 16:06:07 +0200 Subject: [Lunar-commits] wine: version bumped to 1.1.32. Message-ID: <20091025140653.2C57CF35F6@doppio.foo-projects.org> commit 1780565158296ba47bcf46a66698eb4222127aa5 Author: Florin Braescu Date: Sun Oct 25 16:06:07 2009 +0200 wine: version bumped to 1.1.32. Changes: Many crypto fixes, particularly on 64-bit. Improved DVD access on Mac OS. Several common controls improvements. Various HTML support improvements. More DIB optimizations. Various bug fixes. --- utils/wine/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/wine/DETAILS b/utils/wine/DETAILS index c91b9de..31b6f90 100644 --- a/utils/wine/DETAILS +++ b/utils/wine/DETAILS @@ -1,12 +1,12 @@ MODULE=wine - VERSION=1.1.31 + VERSION=1.1.32 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=$SFORGE_URL/$MODULE SOURCE_URL[1]=http://ibiblio.org/pub/linux/system/emulators/$MODULE - SOURCE_VFY=sha1:d8b7bdedaa433081e6c43c284b38472741c30618 + SOURCE_VFY=sha1:cd33d221c636f0d960cdc00cd7ab392f2a76e459 WEB_SITE=http://www.winehq.com ENTERED=20010925 - UPDATED=20091009 + UPDATED=20091025 SHORT="Runs microsoft windows programs" cat << EOF From florin at lunar-linux.org Mon Oct 26 05:13:25 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 26 Oct 2009 06:13:25 +0200 Subject: [Lunar-commits] timezone-data: bump the tzdata version to 2009o. Message-ID: <20091026041416.D99B69B34F@doppio.foo-projects.org> commit 01b2f7d5eb054e635455af04e16c4af577f356c5 Author: Florin Braescu Date: Mon Oct 26 06:13:25 2009 +0200 timezone-data: bump the tzdata version to 2009o. --- utils/timezone-data/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/timezone-data/DETAILS b/utils/timezone-data/DETAILS index d0b6340..9bc7ce3 100644 --- a/utils/timezone-data/DETAILS +++ b/utils/timezone-data/DETAILS @@ -1,5 +1,5 @@ MODULE=timezone-data - VERSION=2009m + VERSION=2009o DATA_VERSION=$VERSION CODE_VERSION=2009k SOURCE=tzdata${DATA_VERSION}.tar.gz @@ -10,12 +10,12 @@ SOURCE2_URL[0]=$MIRROR_URL SOURCE2_URL[1]=ftp://elsie.nci.nih.gov/pub SOURCE3_URL[0]=$PATCH_URL - SOURCE_VFY=sha1:350a69ada2418ba91c9f0886d02604504c64515f + SOURCE_VFY=sha1:a573011879eb5946ecd641779e3331112909f0c6 SOURCE2_VFY=sha1:91af66846aaec13de2de610433d31151bb890b7d SOURCE3_VFY=sha1:9f3234708c0baa44d5aeb132871cb473d37f9dbe WEB_SITE=ftp://elsie.nci.nih.gov/pub ENTERED=20070203 - UPDATED=20090914 + UPDATED=20091026 SHORT="timezone data and utilities" cat << EOF From florin at lunar-linux.org Mon Oct 26 05:27:25 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 26 Oct 2009 06:27:25 +0200 Subject: [Lunar-commits] lighttpd: version bumped to 1.4.24. Message-ID: <20091026042755.E31F69B34F@doppio.foo-projects.org> commit 96911105c52603d48dfa1c3e2dc2e4fae274c27b Author: Florin Braescu Date: Mon Oct 26 06:27:25 2009 +0200 lighttpd: version bumped to 1.4.24. Many bugfixes. --- web/lighttpd/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/lighttpd/DETAILS b/web/lighttpd/DETAILS index 63f1c8e..0cba640 100644 --- a/web/lighttpd/DETAILS +++ b/web/lighttpd/DETAILS @@ -1,11 +1,11 @@ MODULE=lighttpd - VERSION=1.4.23 + VERSION=1.4.24 SOURCE=$MODULE-$VERSION.tar.bz2 WEB_SITE=http://www.lighttpd.net SOURCE_URL=$WEB_SITE/download - SOURCE_VFY=sha1:a07b7bfdbf882ebe645cc140f4a658c46725224e + SOURCE_VFY=sha1:7a2f53d4af25d4b0b94cb7b3900c5600dcda1b00 ENTERED=20060416 - UPDATED=20090620 + UPDATED=20091026 SHORT="A small httpd with some really good marketing" cat << EOF From florin at lunar-linux.org Mon Oct 26 05:40:52 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 26 Oct 2009 06:40:52 +0200 Subject: [Lunar-commits] pure-ftpd: version bumped to 1.0.24. Message-ID: <20091026044115.0D1CF9B34D@doppio.foo-projects.org> commit a3c488c05c5670a77975883dbccc7cd79928a1c0 Author: Florin Braescu Date: Mon Oct 26 06:40:52 2009 +0200 pure-ftpd: version bumped to 1.0.24. Bugfix release. --- ftp/pure-ftpd/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ftp/pure-ftpd/DETAILS b/ftp/pure-ftpd/DETAILS index c0c7e35..cfefaf4 100644 --- a/ftp/pure-ftpd/DETAILS +++ b/ftp/pure-ftpd/DETAILS @@ -1,13 +1,13 @@ MODULE=pure-ftpd - VERSION=1.0.23 + VERSION=1.0.24 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL[0]=ftp://ftp.pureftpd.org/pub/$MODULE/releases SOURCE_URL[1]=$SFORGE_URL/pureftpd SOURCE_URL[2]=http://sunsite.rediris.es/sites/ftp.fr.pureftpd.org/pub/$MODULE/releases - SOURCE_VFY=sha1:ca5fd52bce5b489724c9e0e2a43b72c37602fa29 + SOURCE_VFY=sha1:bf8d04d19a83d2bec214eaa38095a070d549d978 WEB_SITE=http://www.pureftpd.org ENTERED=20010922 - UPDATED=20091023 + UPDATED=20091026 SHORT="An efficient, lightweight, and secure FTP server" cat << EOF From florin at lunar-linux.org Mon Oct 26 06:00:07 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 26 Oct 2009 07:00:07 +0200 Subject: [Lunar-commits] gambas2: version bumpeed to 2.17.0. Message-ID: <20091026050058.0F5CB9B2DB@doppio.foo-projects.org> commit 65b19fe08e6f43f6e3c5db9a757417251d8442e1 Author: Florin Braescu Date: Mon Oct 26 07:00:07 2009 +0200 gambas2: version bumpeed to 2.17.0. Changes: Gambas now runs on the ARM architecture. It was translated into Greek. There is a new implementation of event handling in gb.gtk, so that it now behaves the same way as in gb.qt. Saving and renaming tables having indexes now works correctly in the database manager. --- kde3/apps/gambas2/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kde3/apps/gambas2/DETAILS b/kde3/apps/gambas2/DETAILS index dac52c7..91fceef 100644 --- a/kde3/apps/gambas2/DETAILS +++ b/kde3/apps/gambas2/DETAILS @@ -1,12 +1,12 @@ MODULE=gambas2 - VERSION=2.16.0 + VERSION=2.17.0 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=$SFORGE_URL/gambas - SOURCE_VFY=sha1:e19bb06ede9601cf2d62df45eb9914f173435ce6 + SOURCE_VFY=sha1:230bb89bfdcc7a877f7de796c53f22000b961987 MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/3} WEB_SITE=http://gambas.sourceforge.net ENTERED=20070603 - UPDATED=20090910 + UPDATED=20091026 SHORT="A graphical IDE inspired by Visual Basic for KDE" cat << EOF From florin at lunar-linux.org Mon Oct 26 06:04:22 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Mon, 26 Oct 2009 07:04:22 +0200 Subject: [Lunar-commits] libv4l: version bumped to 0.6.3. Message-ID: <20091026050506.769C19B2DB@doppio.foo-projects.org> commit 2eeb0bbe77b01a4dcf849ae5757b300928b47df7 Author: Florin Braescu Date: Mon Oct 26 07:04:22 2009 +0200 libv4l: version bumped to 0.6.3. Four more laptop models were added to the table of upside-down devices. mr97310a decompression was improved. Support was added for decompressing yuv420 planar JPEG, which is required for w9968cf based cameras. Support was added for STV0680 raw bayer data. This helps to obsolete the w9968cf and stv680 v4l1 drivers. --- libs/libv4l/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/libv4l/DETAILS b/libs/libv4l/DETAILS index ff02aef..6eb2554 100644 --- a/libs/libv4l/DETAILS +++ b/libs/libv4l/DETAILS @@ -1,12 +1,12 @@ MODULE=libv4l - VERSION=0.6.2 + VERSION=0.6.3 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL[0]=http://people.fedoraproject.org/~jwrdegoede SOURCE_URL[1]=http://people.atrpms.net/~hdegoede - SOURCE_VFY=sha1:d9d218d413222be750fec1f6e32a7245e40a12e2 + SOURCE_VFY=sha1:a7074ee181b75ef09dc580ee14b3eaf99e19817f WEB_SITE=http://hansdegoede.livejournal.com/3636.html ENTERED=20090913 - UPDATED=20091011 + UPDATED=20091026 SHORT="A thin abstraction layer on top of video4linux2 devices" cat << EOF From ratler at lunar-linux.org Mon Oct 26 07:26:34 2009 From: ratler at lunar-linux.org (Stefan Wold) Date: Mon, 26 Oct 2009 07:26:34 +0100 Subject: [Lunar-commits] readline: Fixes several prompt and bash related issues Message-ID: <20091026062932.027BE9B2DB@doppio.foo-projects.org> commit 8f043015ac6b41e3b2acf214a38b71de5d5db58d Author: Stefan Wold Date: Mon Oct 26 07:26:34 2009 +0100 readline: Fixes several prompt and bash related issues Offical patches that fix these issues: * FIX: If a SIGWINCH arrives while bash is performing redisplay, multi-line prompts are displayed incorrectly due to the display code being called recursively. * FIX: When not in a locale supporting multibyte characters, readline will occasionally not erase characters between the cursor position and the end of the line when killing text backwards. * FIX: If the prompt length exactly matches the screen width, and the prompt ends with invisible characters, readline positions the cursor incorrectly. * FIX: There are occasional cursor positioning errors when using readline's horizontal scroll mode. Patch: --- libs/readline/BUILD | 4 ++++ libs/readline/DETAILS | 18 +++++++++++++++++- 2 files changed, 21 insertions(+), 1 deletions(-) diff --git a/libs/readline/BUILD b/libs/readline/BUILD index c08b33d..bbcfeab 100644 --- a/libs/readline/BUILD +++ b/libs/readline/BUILD @@ -1,4 +1,8 @@ ( + patch_it $SOURCE2 0 && + patch_it $SOURCE3 0 && + patch_it $SOURCE4 0 && + patch_it $SOURCE5 0 && # Real and working fix for readline 5 to 6 upgrade # Especially workaround issue when you would like to lin again readline 6 after lining readline 6 already diff --git a/libs/readline/DETAILS b/libs/readline/DETAILS index ace9df4..86e96b7 100644 --- a/libs/readline/DETAILS +++ b/libs/readline/DETAILS @@ -1,13 +1,29 @@ MODULE=readline VERSION=6.0 SOURCE=$MODULE-$VERSION.tar.gz + SOURCE2=readline60-001 + SOURCE3=readline60-002 + SOURCE4=readline60-003 + SOURCE5=readline60-004 SOURCE_URL[0]=$GNU_URL/$MODULE SOURCE_URL[1]=ftp://ftp.cwru.edu/pub/bash SOURCE_URL[2]=ftp://ftp.gnu.org/pub/gnu/$MODULE + SOURCE2_URL[0]=$GNU_URL/$MODULE/readline-6.0-patches + SOURCE2_URL[1]=ftp://ftp.cwru.edu/pub/bash/readline-6.0-patches + SOURCE3_URL[0]=$GNU_URL/$MODULE/readline-6.0-patches + SOURCE3_URL[1]=ftp://ftp.cwru.edu/pub/bash/readline-6.0-patches + SOURCE4_URL[0]=$GNU_URL/$MODULE/readline-6.0-patches + SOURCE4_URL[1]=ftp://ftp.cwru.edu/pub/bash/readline-6.0-patches + SOURCE5_URL[0]=$GNU_URL/$MODULE/readline-6.0-patches + SOURCE5_URL[1]=ftp://ftp.cwru.edu/pub/bash/readline-6.0-patches SOURCE_VFY=sha1:1e511b091514ef631c539552316787c75ace5262 + SOURCE2_VFY=sha1:32bba5b3ecf00d461c0a365505501f76ff7a96a5 + SOURCE3_VFY=sha1:8e6f714e087ef9579814055cba2f9142b0b31b33 + SOURCE4_VFY=sha1:f1ffdd3ad847272ce37de17494bca1a895ad1a02 + SOURCE5_VFY=sha1:4fb45252521e063776bef3aecd874a524fc9c4f8 WEB_SITE=http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html ENTERED=20010922 - UPDATED=20090923 + UPDATED=20091026 SHORT="Lets users edit command lines as they are typed in" cat << EOF From ratler at lunar-linux.org Mon Oct 26 07:44:48 2009 From: ratler at lunar-linux.org (Stefan Wold) Date: Mon, 26 Oct 2009 07:44:48 +0100 Subject: [Lunar-commits] rxvt-unicode: Fix build issue with glibc 2.10. Fixed improper use of color patch. Message-ID: <20091026064542.B927A9B34E@doppio.foo-projects.org> commit 60a329d2f77658f50d3c8ca5476d771363ff48e6 Author: Stefan Wold Date: Mon Oct 26 07:44:48 2009 +0100 rxvt-unicode: Fix build issue with glibc 2.10. Fixed improper use of color patch. --- terminal/rxvt-unicode/BUILD | 8 +++++++- terminal/rxvt-unicode/CONFIGURE | 2 +- terminal/rxvt-unicode/DETAILS | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/terminal/rxvt-unicode/BUILD b/terminal/rxvt-unicode/BUILD index 1f947d5..6afebba 100644 --- a/terminal/rxvt-unicode/BUILD +++ b/terminal/rxvt-unicode/BUILD @@ -1,7 +1,13 @@ ( - patch_it doc/urxvt-8.2-256color.patch 1 + patch_it $SOURCE2 1 && + + if [ "$USE_XTERM_COL" == "y" ]; then + patch_it doc/urxvt-8.2-256color.patch 1 && + ./autogen.sh + fi && default_build && chmod 644 README* Changes INSTALL ) > $C_FIFO 2>&1 + diff --git a/terminal/rxvt-unicode/CONFIGURE b/terminal/rxvt-unicode/CONFIGURE index 30ad4c5..e1ac821 100644 --- a/terminal/rxvt-unicode/CONFIGURE +++ b/terminal/rxvt-unicode/CONFIGURE @@ -2,4 +2,4 @@ mquery USE_ISO14755 "Enable extended ISO 14755 modes?" y "--enable-iso14755" "-- mquery USE_TRANS "Enable transparent backgrounds?" y "--enable-transparency" "--disable-transparency" mquery USE_FADING "Enable color fading when off focus?" y "--enable-fading" "--disable-fading" mquery USE_PERL "Enable embedded perl interpreter?" y "--enable-perl" "--disable-perl" -mquery USE_XTERM_COL "Enable 256 color support (experimental)?" y "--enable-xterm-colors" "" +mquery USE_XTERM_COL "Enable 256 color support (experimental)?" n "--enable-xterm-colors" "" diff --git a/terminal/rxvt-unicode/DETAILS b/terminal/rxvt-unicode/DETAILS index 90decd6..4d9b37d 100644 --- a/terminal/rxvt-unicode/DETAILS +++ b/terminal/rxvt-unicode/DETAILS @@ -1,12 +1,15 @@ MODULE=rxvt-unicode VERSION=9.06 SOURCE=$MODULE-$VERSION.tar.bz2 + SOURCE2=rxvt-unicode-9.06-glibc-2.10.patch SOURCE_URL[0]=http://dist.schmorp.de/rxvt-unicode/ SOURCE_URL[1]=http://dist.schmorp.de/rxvt-unicode/Attic/ + SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:df623ebdad001de534781721f8298ba1add0df2c + SOURCE2_VFY=sha1:ff9f4e9a9bbb0547bc4aac113e6a8108affdb6e8 WEB_SITE=http://software.schmorp.de/pkg/rxvt-unicode.html ENTERED=20070203 - UPDATED=20081230 + UPDATED=20091026 SHORT="rxvt-unicode is a clone of rxvt" cat << EOF From tchan at lunar-linux.org Mon Oct 26 20:20:05 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Mon, 26 Oct 2009 14:20:05 -0500 Subject: [Lunar-commits] timezone-data: Version bump to 2009p Message-ID: <20091026192014.035CD9B2DB@doppio.foo-projects.org> commit 77011c2d51f754e8f931ec020b7ffb9dbeebf421 Author: Terry Chan Date: Mon Oct 26 14:20:05 2009 -0500 timezone-data: Version bump to 2009p --- utils/timezone-data/DETAILS | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/timezone-data/DETAILS b/utils/timezone-data/DETAILS index 9bc7ce3..aaab72c 100644 --- a/utils/timezone-data/DETAILS +++ b/utils/timezone-data/DETAILS @@ -1,5 +1,5 @@ MODULE=timezone-data - VERSION=2009o + VERSION=2009p DATA_VERSION=$VERSION CODE_VERSION=2009k SOURCE=tzdata${DATA_VERSION}.tar.gz @@ -10,7 +10,7 @@ SOURCE2_URL[0]=$MIRROR_URL SOURCE2_URL[1]=ftp://elsie.nci.nih.gov/pub SOURCE3_URL[0]=$PATCH_URL - SOURCE_VFY=sha1:a573011879eb5946ecd641779e3331112909f0c6 + SOURCE_VFY=sha1:2fe3219c9e59b7a6bd161fc340e18e27d3bcb473 SOURCE2_VFY=sha1:91af66846aaec13de2de610433d31151bb890b7d SOURCE3_VFY=sha1:9f3234708c0baa44d5aeb132871cb473d37f9dbe WEB_SITE=ftp://elsie.nci.nih.gov/pub From tchan at lunar-linux.org Mon Oct 26 20:32:13 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Mon, 26 Oct 2009 14:32:13 -0500 Subject: [Lunar-commits] git: Version bump to 1.6.5.2 Message-ID: <20091026193219.8F3589B34C@doppio.foo-projects.org> commit c615ea88382dfef944f9e9acadcf5f310803b47e Author: Terry Chan Date: Mon Oct 26 14:32:13 2009 -0500 git: Version bump to 1.6.5.2 --- devel/git/DETAILS | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/devel/git/DETAILS b/devel/git/DETAILS index 5911a5e..2f984b5 100644 --- a/devel/git/DETAILS +++ b/devel/git/DETAILS @@ -1,17 +1,17 @@ MODULE=git - VERSION=1.6.5.1 + VERSION=1.6.5.2 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE2=$MODULE-manpages-$VERSION.tar.bz2 SOURCE3=$MODULE-makefile-install-8.patch SOURCE_URL=$KERNEL_URL/pub/software/scm/git SOURCE2_URL=$KERNEL_URL/pub/software/scm/git SOURCE3_URL=$PATCH_URL - SOURCE_VFY=sha1:c955aa579be9bf5991adf465e6e4a2d6ba173fc1 - SOURCE2_VFY=sha1:e0dc828f2ec4a4ab47ee7f56ba305843e4f7fa8b + SOURCE_VFY=sha1:d31d3054a595e811069b86ceeac56760cae4a835 + SOURCE2_VFY=sha1:9af56df0a9479bc0d761c4b9e9817fb82eeaf73f SOURCE3_VFY=sha1:647b27f4474b89c3003eeb35856cfaaf76bf8ce8 WEB_SITE=http://git-scm.com ENTERED=20050707 - UPDATED=20091017 + UPDATED=20091026 SHORT="Fast version control system" PSAFE=no From stumbles at lunar-linux.org Tue Oct 27 01:33:32 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Mon, 26 Oct 2009 20:33:32 -0400 Subject: [Lunar-commits] llvm: Version bump and the patch is not needed. Message-ID: <20091027003439.B5E5F9B363@doppio.foo-projects.org> commit 61986863fdd8f545bb65fd55b0d7832e75256912 Author: Dennis `stumbles` Veatch Date: Mon Oct 26 20:33:32 2009 -0400 llvm: Version bump and the patch is not needed. --- devel/llvm/BUILD | 1 - devel/llvm/DETAILS | 7 ++----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/devel/llvm/BUILD b/devel/llvm/BUILD index 03d61f1..7bd23af 100644 --- a/devel/llvm/BUILD +++ b/devel/llvm/BUILD @@ -1,6 +1,5 @@ ( - patch_it $SOURCE_CACHE/$SOURCE2 0 && OPTS="$OPTS --enable-optimized --enable-assertions --enable-pic --enable-targets=host-only" diff --git a/devel/llvm/DETAILS b/devel/llvm/DETAILS index e1fdcb3..346343d 100644 --- a/devel/llvm/DETAILS +++ b/devel/llvm/DETAILS @@ -1,15 +1,12 @@ MODULE=llvm - VERSION=2.5 + VERSION=2.6 SOURCE=$MODULE-$VERSION.tar.gz - SOURCE2=llvm-2.5-signals.1.patch SOURCE_URL=http://www.llvm.org/releases/$VERSION/ - SOURCE2_URL=$PATCH_URL SOURCE_VFY=sha1:67f4bace9e64cc39255583aa837470d9b9de0aa5 - SOURCE2_VFY=sha1:e8907ead244ba397136bbeb25271e18a9dde6dca MODULE_PREFIX=${LLVM_DIR:-/opt/lunar/llvm} WEB_SITE=http://www.llvm.org/ ENTERED=20090128 - UPDATED=20091004 + UPDATED=20091026 SHORT="Low Level Virtual Machine" PSAFE=no From stumbles at lunar-linux.org Tue Oct 27 01:34:08 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Mon, 26 Oct 2009 20:34:08 -0400 Subject: [Lunar-commits] OpenGTL: Version bump. Message-ID: <20091027003439.C3ACB9B364@doppio.foo-projects.org> commit fc52f376e0ab39e25a79b6912b1d6dd099420226 Author: Dennis `stumbles` Veatch Date: Mon Oct 26 20:34:08 2009 -0400 OpenGTL: Version bump. --- libs/OpenGTL/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/OpenGTL/DETAILS b/libs/OpenGTL/DETAILS index b8ddf7c..adcde91 100644 --- a/libs/OpenGTL/DETAILS +++ b/libs/OpenGTL/DETAILS @@ -1,11 +1,11 @@ MODULE=OpenGTL - VERSION=0.9.9 + VERSION=0.9.11 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://www.opengtl.org/download/ - SOURCE_VFY=sha1:150e95f048dc030b58c65fa3dfb110b1ef90c081 + SOURCE_VFY=sha1:78b8a05ce428c07ddd5277ab1a63630e51e0aa76 WEB_SITE=http://opengtl.org/ ENTERED=20090128 - UPDATED=20090609 + UPDATED=20091026 SHORT="Graphics Transformation Languages" cat << EOF From florin at lunar-linux.org Tue Oct 27 17:43:28 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 27 Oct 2009 18:43:28 +0200 Subject: [Lunar-commits] tellico2: fix the install path. Message-ID: <20091027164412.D34149B1FC@doppio.foo-projects.org> commit 0f6ee2f8e22a08370a9e1d714628b30c8c9e8b0f Author: Florin Braescu Date: Tue Oct 27 18:43:28 2009 +0200 tellico2: fix the install path. --- kde4/extragear/tellico2/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kde4/extragear/tellico2/DETAILS b/kde4/extragear/tellico2/DETAILS index 4c883dc..8ba3ca8 100644 --- a/kde4/extragear/tellico2/DETAILS +++ b/kde4/extragear/tellico2/DETAILS @@ -4,7 +4,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/tellico-$VERSION SOURCE_URL=http://tellico-project.org/files SOURCE_VFY=sha1:af60c25e652d894716022aeec8a3b05da056cbb9 - MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} + MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://tellico-project.org ENTERED=20090921 UPDATED=20090921 From florin at lunar-linux.org Tue Oct 27 17:44:43 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 27 Oct 2009 18:44:43 +0200 Subject: [Lunar-commits] krename4: fix the install path. Message-ID: <20091027164500.279899B1FC@doppio.foo-projects.org> commit 20a0f5d047efd34b1b10736cc4da4a107458f5d0 Author: Florin Braescu Date: Tue Oct 27 18:44:43 2009 +0200 krename4: fix the install path. --- kde4/apps/krename4/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kde4/apps/krename4/DETAILS b/kde4/apps/krename4/DETAILS index d15ddc3..4244a81 100644 --- a/kde4/apps/krename4/DETAILS +++ b/kde4/apps/krename4/DETAILS @@ -4,7 +4,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/krename-$VERSION SOURCE_URL="$SFORGE_URL/krename/KDE4 krename-stable/$VERSION" SOURCE_VFY=sha1:b4d2ab43836a43224f69c9767c7ff14fffdea6b7 - MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} + MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=$SFORGE_URL/$MODULE ENTERED=20090923 UPDATED=20091005 From florin at lunar-linux.org Tue Oct 27 17:45:50 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 27 Oct 2009 18:45:50 +0200 Subject: [Lunar-commits] kwave4: fix the install path. Message-ID: <20091027164607.B82FF9B200@doppio.foo-projects.org> commit 1a1e4607ab0b94ba4e1a2c6bba5ec93a5371f61a Author: Florin Braescu Date: Tue Oct 27 18:45:50 2009 +0200 kwave4: fix the install path. --- kde4/apps/kwave4/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kde4/apps/kwave4/DETAILS b/kde4/apps/kwave4/DETAILS index 8410857..c52828d 100644 --- a/kde4/apps/kwave4/DETAILS +++ b/kde4/apps/kwave4/DETAILS @@ -4,7 +4,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/kwave-$VERSION SOURCE_URL=$SFORGE_URL/kwave SOURCE_VFY=sha1:5ef1533402c0240ad1f07fe6af7b4a42ea532690 - MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} + MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=$SFORGE_URL/$MODULE ENTERED=20090426 UPDATED=20090928 From florin at lunar-linux.org Tue Oct 27 17:46:56 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 27 Oct 2009 18:46:56 +0200 Subject: [Lunar-commits] kdenlive4: fix the install path. Message-ID: <20091027164711.4B3C79B200@doppio.foo-projects.org> commit 3259cf1486849ee85c4215b7fa28617efb7e9b51 Author: Florin Braescu Date: Tue Oct 27 18:46:56 2009 +0200 kdenlive4: fix the install path. --- kde4/apps/kdenlive4/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kde4/apps/kdenlive4/DETAILS b/kde4/apps/kdenlive4/DETAILS index 2cf65da..ab35c85 100644 --- a/kde4/apps/kdenlive4/DETAILS +++ b/kde4/apps/kdenlive4/DETAILS @@ -4,7 +4,7 @@ SOURCE_URL=$SFORGE_URL/kdenlive SOURCE_DIRECTORY=$BUILD_DIRECTORY/kdenlive-$VERSION SOURCE_VFY=sha1:3f68fe190ac72852ecbadb0d3665efdd6fdf1221 - MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} + MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://kdenlive.sourceforge.net ENTERED=20081201 UPDATED=20091008 From florin at lunar-linux.org Tue Oct 27 17:47:41 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 27 Oct 2009 18:47:41 +0200 Subject: [Lunar-commits] amarok4: fix the install path. Message-ID: <20091027164755.796339B200@doppio.foo-projects.org> commit 0f2fd3ce195296ff35101c63a20b88a050fc22e4 Author: Florin Braescu Date: Tue Oct 27 18:47:41 2009 +0200 amarok4: fix the install path. --- kde4/apps/amarok4/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kde4/apps/amarok4/DETAILS b/kde4/apps/amarok4/DETAILS index 2c198c5..ce4370d 100644 --- a/kde4/apps/amarok4/DETAILS +++ b/kde4/apps/amarok4/DETAILS @@ -4,7 +4,7 @@ SOURCE_URL=$KDE_URL/stable/amarok/$VERSION/src SOURCE_DIRECTORY=$BUILD_DIRECTORY/amarok-$VERSION SOURCE_VFY=sha1:7603f991aa92810669e71278f9abc20a2180f97d - MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} + MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://amarok.kde.org ENTERED=20080414 UPDATED=20091001 From florin at lunar-linux.org Tue Oct 27 17:51:29 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 27 Oct 2009 18:51:29 +0200 Subject: [Lunar-commits] k9copy2: fir the install path. Message-ID: <20091027165143.A222B9B200@doppio.foo-projects.org> commit 5d7cc034a5895972cae5d58b35243289e17c9fb1 Author: Florin Braescu Date: Tue Oct 27 18:51:29 2009 +0200 k9copy2: fir the install path. --- kde4/utils/k9copy2/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kde4/utils/k9copy2/DETAILS b/kde4/utils/k9copy2/DETAILS index ef7769c..0270ea9 100644 --- a/kde4/utils/k9copy2/DETAILS +++ b/kde4/utils/k9copy2/DETAILS @@ -4,7 +4,7 @@ SOURCE_URL=$SFORGE_URL/k9copy/ SOURCE_DIRECTORY=$BUILD_DIRECTORY/k9copy-$VERSION SOURCE_VFY=sha1:db9f4a358922d464b673757f425aab7c5b3e0efb - MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} + MODULE_PREFIX=${KDE4_INSTALL_DIR:-/opt/lunar/kde/4} WEB_SITE=http://k9copy.sourceforge.net/ ENTERED=20080325 UPDATED=20090825 From florin at lunar-linux.org Tue Oct 27 17:52:17 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 27 Oct 2009 18:52:17 +0200 Subject: [Lunar-commits] kipi-plugins4: fix the install path. Message-ID: <20091027165235.663AA9B200@doppio.foo-projects.org> commit 9d7fee6224556abc2b37fdffa394b1a327e16bb3 Author: Florin Braescu Date: Tue Oct 27 18:52:17 2009 +0200 kipi-plugins4: fix the install path. --- kde4/utils/kipi-plugins4/DETAILS | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kde4/utils/kipi-plugins4/DETAILS b/kde4/utils/kipi-plugins4/DETAILS index 5705607..252067a 100644 --- a/kde4/utils/kipi-plugins4/DETAILS +++ b/kde4/utils/kipi-plugins4/DETAILS @@ -4,7 +4,7 @@ SOURCE_URL=$SFORGE_URL/kipi/kipi-plugins/$VERSION SOURCE_DIRECTORY=$BUILD_DIRECTORY/kipi-plugins-$VERSION SOURCE_VFY=sha1:662486cfb4e7079ac6e9b66a9cb01705980e2d38 - MODULE_PREFIX=${KDE_PREFIX:-/opt/lunar/kde/4} + MODULE_PREFIX=${KDE4_INSTALL_PATH:-/opt/lunar/kde/4} WEB_SITE=http://extragear.kde.org/apps/kipi/#releases ENTERED=20090318 UPDATED=20090928 From florin at lunar-linux.org Tue Oct 27 18:01:53 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 27 Oct 2009 19:01:53 +0200 Subject: [Lunar-commits] transmission: version bumped to 1.76. Message-ID: <20091027170219.844229B206@doppio.foo-projects.org> commit 4a4fd50e041cbfd8d7f8e0ed58290a5f087871ae Author: Florin Braescu Date: Tue Oct 27 19:01:53 2009 +0200 transmission: version bumped to 1.76. Bugfixes release. --- distributed/transmission/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/distributed/transmission/DETAILS b/distributed/transmission/DETAILS index 035c23b..76df489 100644 --- a/distributed/transmission/DETAILS +++ b/distributed/transmission/DETAILS @@ -1,11 +1,11 @@ MODULE=transmission - VERSION=1.74 + VERSION=1.76 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://mirrors.m0k.org/transmission/files - SOURCE_VFY=sha1:0a80dadc273cab862d7dc2f5f47c0a06d059589a + SOURCE_VFY=sha1:27528ea9cf92dcaecee38b02940dc3086c63253c WEB_SITE=http://transmissionbt.com ENTERED=20060626 - UPDATED=20090827 + UPDATED=20091027 SHORT="A fast and powerful BitTorrent client" cat << EOF From florin at lunar-linux.org Tue Oct 27 19:18:00 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Tue, 27 Oct 2009 20:18:00 +0200 Subject: [Lunar-commits] libcdio: version bumped to 0.82. Message-ID: <20091027181837.BBF289B1F0@doppio.foo-projects.org> commit 9eed10537fe8eb2ad87c7f292573fa45c901ee1e Author: Florin Braescu Date: Tue Oct 27 20:18:00 2009 +0200 libcdio: version bumped to 0.82. Bugfixes release. --- cd/libcdio/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cd/libcdio/DETAILS b/cd/libcdio/DETAILS index f02059e..10fecac 100644 --- a/cd/libcdio/DETAILS +++ b/cd/libcdio/DETAILS @@ -1,11 +1,11 @@ MODULE=libcdio - VERSION=0.81 + VERSION=0.82 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$GNU_URL/$MODULE - SOURCE_VFY=sha1:f3d9a38d220483563a6c05d0c412d16fbc64a555 + SOURCE_VFY=sha1:b3a87283a373eed816c15584c373ad6d2f95f09a WEB_SITE=http://www.gnu.org/software/vcdimager ENTERED=20040711 - UPDATED=20090130 + UPDATED=20091027 SHORT="GNU Compact Disc Input and Control Library" PSAFE=no From tchan at lunar-linux.org Tue Oct 27 20:21:53 2009 From: tchan at lunar-linux.org (Terry Chan) Date: Tue, 27 Oct 2009 14:21:53 -0500 Subject: [Lunar-commits] zile: Version bump to 2.3.12 Message-ID: <20091027192201.8EEAD9B1FC@doppio.foo-projects.org> commit ef43835185518e23935f726ffa605f42c25b3ee3 Author: Terry Chan Date: Tue Oct 27 14:21:53 2009 -0500 zile: Version bump to 2.3.12 --- editors/zile/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/editors/zile/DETAILS b/editors/zile/DETAILS index 3e9b3ec..f4156f6 100644 --- a/editors/zile/DETAILS +++ b/editors/zile/DETAILS @@ -1,11 +1,11 @@ MODULE=zile - VERSION=2.3.10 + VERSION=2.3.12 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$GNU_URL/zile/ - SOURCE_VFY=sha1:64ad7771b334f7f07cbc6faa45083f70088f2855 + SOURCE_VFY=sha1:4bfb8e3a28659d7368aba23ee3001f20ca047f63 WEB_SITE=http://www.gnu.org/software/zile/ ENTERED=20010922 - UPDATED=20090826 + UPDATED=20091027 SHORT="zile is a small, fast and powerful emacs clone." cat << EOF Zile is a small, fast, and powerful Emacs clone. It is very useful for From stumbles at lunar-linux.org Wed Oct 28 11:03:22 2009 From: stumbles at lunar-linux.org (Dennis `stumbles` Veatch) Date: Wed, 28 Oct 2009 06:03:22 -0400 Subject: [Lunar-commits] firefox: Version bump Message-ID: <20091028100341.41D7C9B1F0@doppio.foo-projects.org> commit 5905798de2fb178bee064d369d4a4803ba1b018b Author: Dennis `stumbles` Veatch Date: Wed Oct 28 06:03:22 2009 -0400 firefox: Version bump --- web/firefox/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/firefox/DETAILS b/web/firefox/DETAILS index fa6d17d..eaaa9a9 100644 --- a/web/firefox/DETAILS +++ b/web/firefox/DETAILS @@ -1,13 +1,13 @@ MODULE=firefox - VERSION=3.5.3 + VERSION=3.5.4 SOURCE=${MODULE}-${VERSION}.source.tar.bz2 SOURCE_URL[0]=ftp://ftp.mozilla.org/pub/firefox/releases/$VERSION/source/ SOURCE_URL[1]=ftp://mozilla.isc.org/pub/mozilla.org/firefox/releases/$VERSION/source SOURCE_URL[2]=ftp://ftp.uni-erlangen.de/pub/mozilla.org/firefox/releases/$VERSION/source - SOURCE_VFY=sha1:83b2625eb74e81b473ac40ac52505e5fc9a497eb + SOURCE_VFY=sha1:ce250208371326d03e72a02d223bc136cd376e5d WEB_SITE=http://www.mozilla.org/projects/firefox ENTERED=20030810 - UPDATED=20090930 + UPDATED=20091028 MAINTAINER="tchan at lunar-linux.org" PSAFE=no SHORT="A speedy, full-featured web browser" From ratler at lunar-linux.org Wed Oct 28 11:50:26 2009 From: ratler at lunar-linux.org (Stefan Wold) Date: Wed, 28 Oct 2009 11:50:26 +0100 Subject: [Lunar-commits] hicolor-icon-theme: Version bump to 0.11 Message-ID: <20091028105031.2C9C29B211@doppio.foo-projects.org> commit 9cc264d0601b95c6b5afb0dd969be8aa20296bcb Author: Stefan Wold Date: Wed Oct 28 11:50:26 2009 +0100 hicolor-icon-theme: Version bump to 0.11 --- app-themes/hicolor-icon-theme/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app-themes/hicolor-icon-theme/DETAILS b/app-themes/hicolor-icon-theme/DETAILS index 4f6e63a..9eadd46 100644 --- a/app-themes/hicolor-icon-theme/DETAILS +++ b/app-themes/hicolor-icon-theme/DETAILS @@ -1,11 +1,11 @@ MODULE=hicolor-icon-theme - VERSION=0.10 + VERSION=0.11 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=http://icon-theme.freedesktop.org/releases/ - SOURCE_VFY=sha1:30a1526cd337ecbd9aaecfff2737884b86c72508 + SOURCE_VFY=sha1:8a870f13254f1704bc2e7bb4fa1258d07ba5cc8e WEB_SITE=http://www.freedesktop.org/software/icon-theme ENTERED=20040115 - UPDATED=20070102 + UPDATED=20091028 SHORT="HiColor Icon-themes" cat << EOF From florin at lunar-linux.org Wed Oct 28 05:55:43 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 28 Oct 2009 06:55:43 +0200 Subject: [Lunar-commits] wireshark: version bumped to 1.2.3. Message-ID: <20091028151506.DB11B9B22A@doppio.foo-projects.org> commit 633738b17ef36c4d231902764f6eca7d550441d5 Author: Florin Braescu Date: Wed Oct 28 06:55:43 2009 +0200 wireshark: version bumped to 1.2.3. Bugfixes release. --- net/wireshark/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/wireshark/DETAILS b/net/wireshark/DETAILS index 4f919d8..a12d494 100644 --- a/net/wireshark/DETAILS +++ b/net/wireshark/DETAILS @@ -1,11 +1,11 @@ MODULE=wireshark - VERSION=1.2.2 + VERSION=1.2.3 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://www.wireshark.org/download/src - SOURCE_VFY=sha1:ad73bf93096344341cd7c99614816555bebdbf45 + SOURCE_VFY=sha1:be69e1ea13cf63742fd71c69c02e658eec109d18 WEB_SITE=http://www.wireshark.org ENTERED=20061104 - UPDATED=20090916 + UPDATED=20091028 SHORT="A network protocol analyzer" cat << EOF From florin at lunar-linux.org Wed Oct 28 16:13:44 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 28 Oct 2009 17:13:44 +0200 Subject: [Lunar-commits] LiVES: version bumped to 1.1.5. Message-ID: <20091028151506.E37979B22B@doppio.foo-projects.org> commit 934d1c01ff552003179b4faec92673b759e0a803 Author: Florin Braescu Date: Wed Oct 28 17:13:44 2009 +0200 LiVES: version bumped to 1.1.5. Changes: Startup problems caused by libvisual and jack were fixed. Memory leaks in pulse audio player and rendered effect previews were squashed. Characters like " and \ in are now handled correctly in string parameters. Set locking with a symlinked executable was fixed. A regression in rt effect to key mapping was fixed. An improved aspect/blocksize algorithm was added. Encoder debugging info is now shown within the application. Multi-core support for the mjpegtools_encoder was added. Updates for Finnish, German, and Spanish translations. --- video/LiVES/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/video/LiVES/DETAILS b/video/LiVES/DETAILS index 1c8a7d0..71ede55 100644 --- a/video/LiVES/DETAILS +++ b/video/LiVES/DETAILS @@ -1,12 +1,12 @@ MODULE=LiVES - VERSION=1.1.4 + VERSION=1.1.5 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/lives-$VERSION SOURCE_URL=http://www.xs4all.nl/~salsaman/lives/current - SOURCE_VFY=sha1:5f8d6d180bd37ec25358a3a652b03527e33a71cb + SOURCE_VFY=sha1:7e73ae96c235415d039553ad567e68162669f6c8 WEB_SITE=http://lives.sourceforge.net ENTERED=20050106 - UPDATED=20091017 + UPDATED=20091028 SHORT="Video Editing System" cat << EOF From florin at lunar-linux.org Wed Oct 28 18:01:05 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 28 Oct 2009 19:01:05 +0200 Subject: [Lunar-commits] opera: version bumped to 10.01. Message-ID: <20091028170133.9AA899B23A@doppio.foo-projects.org> commit 0043edb16359153773dfd322b35cf9410daf4007 Author: Florin Braescu Date: Wed Oct 28 19:01:05 2009 +0200 opera: version bumped to 10.01. --- web/opera/DETAILS | 10 +++++----- web/opera/DETAILS.x86_64 | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/web/opera/DETAILS b/web/opera/DETAILS index 1e0d02d..c5b7589 100644 --- a/web/opera/DETAILS +++ b/web/opera/DETAILS @@ -1,16 +1,16 @@ MODULE=opera - VERSION=10.00 - SUBVERSION=4585 + VERSION=10.01 + SUBVERSION=4682 SOURCE=$MODULE-$VERSION.gcc4-qt4.i386.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION-$SUBVERSION.gcc4-qt4.i386 SOURCE_URL[0]=http://ftp.heanet.ie/pub/opera/linux/${VERSION//\./}/final/en/i386 SOURCE_URL[1]=ftp://ftp.opera.com/pub/opera/linux/${VERSION//\./}/final/en/i386 - SOURCE_VFY=sha1:46314ea5740c1579a723c3e25a6f8a6297a7978f - WEB_SITE=http://www.opera.com/ + SOURCE_VFY=sha1:054adaa2a0806549e62dedd260bb0915a579c41c + WEB_SITE=http://www.opera.com MAINTAINER=ratler at lunar-linux.org LICENSE="proprietary" ENTERED=20051002 - UPDATED=20090901 + UPDATED=20091028 SHORT="The most full-featured Internet browser on the market" GARBAGE=off ARCHIVE=off diff --git a/web/opera/DETAILS.x86_64 b/web/opera/DETAILS.x86_64 index 456f33f..ccd870f 100644 --- a/web/opera/DETAILS.x86_64 +++ b/web/opera/DETAILS.x86_64 @@ -1,16 +1,16 @@ MODULE=opera - VERSION=10.00 - SUBVERSION=4585 + VERSION=10.01 + SUBVERSION=4682 SOURCE=$MODULE-$VERSION.gcc4-qt4.x86_64.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION-$SUBVERSION.gcc4-qt4.x86_64 SOURCE_URL[0]=http://ftp.heanet.ie/pub/opera/linux/${VERSION//\./}/final/en/x86_64 SOURCE_URL[1]=ftp://ftp.opera.com/pub/opera/linux/${VERSION//\./}/final/en/x86_64 - SOURCE_VFY=sha1:1c8c406a9b64706d07cba999c2958ca1112603c4 - WEB_SITE=http://www.opera.com/ + SOURCE_VFY=sha1:06a6cb1be78c5b4f48af34ae660948dab24e95ab + WEB_SITE=http://www.opera.com MAINTAINER=ratler at lunar-linux.org LICENSE="proprietary" ENTERED=20080612 - UPDATED=20090901 + UPDATED=20091028 SHORT="The most full-featured Internet browser on the market" GARBAGE=off ARCHIVE=off From ratler at lunar-linux.org Wed Oct 28 18:40:46 2009 From: ratler at lunar-linux.org (Stefan Wold) Date: Wed, 28 Oct 2009 18:40:46 +0100 Subject: [Lunar-commits] opera-static: Version bump to 10.01 Message-ID: <20091028174049.F311C9B217@doppio.foo-projects.org> commit ea0be5abcdb6701daea0a50659d626384d131151 Author: Stefan Wold Date: Wed Oct 28 18:40:46 2009 +0100 opera-static: Version bump to 10.01 --- web/opera-static/DETAILS | 8 ++++---- web/opera-static/DETAILS.x86_64 | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/web/opera-static/DETAILS b/web/opera-static/DETAILS index 5801bcb..5b62b5e 100644 --- a/web/opera-static/DETAILS +++ b/web/opera-static/DETAILS @@ -1,16 +1,16 @@ MODULE=opera-static - VERSION=10.00 - SUBVERSION=4585 + VERSION=10.01 + SUBVERSION=4682 SOURCE=opera-$VERSION.gcc4-bundled-qt4.i386.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/opera-$VERSION-$SUBVERSION.gcc4-bundled-qt4.i386 SOURCE_URL[0]=http://ftp.heanet.ie/pub/opera/linux/${VERSION//\./}/final/en/i386 SOURCE_URL[1]=ftp://ftp.opera.com/pub/opera/linux/${VERSION//\./}/final/en/i386 - SOURCE_VFY=sha1:1e4b28240a38db924fb09145145b829892e1d4a3 + SOURCE_VFY=sha1:6c24a751d818e60734a88cce7cc94c1a9649ec20 WEB_SITE=http://www.opera.com/ MAINTAINER=ratler at lunar-linux.org LICENSE="proprietary" ENTERED=20051002 - UPDATED=20090901 + UPDATED=20091028 SHORT="The most full-featured Internet browser on the market" GARBAGE=off ARCHIVE=off diff --git a/web/opera-static/DETAILS.x86_64 b/web/opera-static/DETAILS.x86_64 index 5663022..3434c39 100644 --- a/web/opera-static/DETAILS.x86_64 +++ b/web/opera-static/DETAILS.x86_64 @@ -1,16 +1,16 @@ MODULE=opera-static - VERSION=10.00 - SUBVERSION=4585 + VERSION=10.01 + SUBVERSION=4682 SOURCE=opera-$VERSION.gcc4-bundled-qt4.x86_64.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/opera-$VERSION-$SUBVERSION.gcc4-bundled-qt4.x86_64 SOURCE_URL[0]=http://ftp.heanet.ie/pub/opera/linux/${VERSION//\./}/final/en/x86_64 SOURCE_URL[1]=ftp://ftp.opera.com/pub/opera/linux/${VERSION//\./}/final/en/x86_64 - SOURCE_VFY=sha1:6b533adff40ffc78a4ff12f47487c455059a5f82 + SOURCE_VFY=sha1:5345e73aa44a50f51619311264ad5689275dea91 WEB_SITE=http://www.opera.com/ MAINTAINER=ratler at lunar-linux.org LICENSE="proprietary" ENTERED=20090901 - UPDATED=20090901 + UPDATED=20091028 SHORT="The most full-featured Internet browser on the market" GARBAGE=off ARCHIVE=off From florin at lunar-linux.org Wed Oct 28 22:46:01 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Wed, 28 Oct 2009 23:46:01 +0200 Subject: [Lunar-commits] clamav: version bumed to 0.95.3 Message-ID: <20091028214638.4ED069B219@doppio.foo-projects.org> commit 9a55e57316f8def26b3bd024240ee54419c33ceb Author: Florin Braescu Date: Wed Oct 28 23:46:01 2009 +0200 clamav: version bumed to 0.95.3 Bugfixes release. --- security/clamav/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/security/clamav/DETAILS b/security/clamav/DETAILS index 4593c56..d7ee044 100644 --- a/security/clamav/DETAILS +++ b/security/clamav/DETAILS @@ -1,11 +1,11 @@ MODULE=clamav - VERSION=0.95.2 + VERSION=0.95.3 SOURCE=$MODULE-$VERSION.tar.gz SOURCE_URL=$SFORGE_URL/$MODULE - SOURCE_VFY=sha1:7544b39d84f2233b984a9c2ce3ef74d407add483 + SOURCE_VFY=sha1:ab4b1f49d0f24154767d303d6a27b74acf6f4b59 WEB_SITE=http://www.clamav.net ENTERED=20030314 - UPDATED=20090716 + UPDATED=20091028 SHORT="GPL anti-virus toolkit" cat < sun-jre: fix the build. Message-ID: <20091029161106.53C109B2C7@doppio.foo-projects.org> commit 182eca5a72067d29db7780fc5df11b18bb959f5b Author: Florin Braescu Date: Thu Oct 29 18:10:32 2009 +0200 sun-jre: fix the build. --- compilers/sun-jre/BUILD | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/compilers/sun-jre/BUILD b/compilers/sun-jre/BUILD index 2013d81..f9657c4 100644 --- a/compilers/sun-jre/BUILD +++ b/compilers/sun-jre/BUILD @@ -8,7 +8,7 @@ prepare_install && - cp -a $SOURCE_DIRECTORY/jre${FVERSION} /usr/lib && + cp -r $SOURCE_DIRECTORY/jre${FVERSION} /usr/lib && # Some apps only search for java in /usr/java rm -rf /usr/java && From florin at lunar-linux.org Fri Oct 30 19:33:33 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 30 Oct 2009 20:33:33 +0200 Subject: [Lunar-commits] virtualbox: version bumped to 3.0.10. Message-ID: <20091030183441.8E67B9B1F0@doppio.foo-projects.org> commit aa49756cdc37a986e9e5a91166a265a8263b871b Author: Florin Braescu Date: Fri Oct 30 20:33:33 2009 +0200 virtualbox: version bumped to 3.0.10. Maintenance release. --- x11-utils/virtualbox/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-utils/virtualbox/DETAILS b/x11-utils/virtualbox/DETAILS index 380b9cf..52dd649 100644 --- a/x11-utils/virtualbox/DETAILS +++ b/x11-utils/virtualbox/DETAILS @@ -1,14 +1,14 @@ MODULE=virtualbox - BASE_VERSION=3.0.8 + BASE_VERSION=3.0.10 VERSION=$BASE_VERSION SOURCE=VirtualBox-${VERSION}-OSE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/VirtualBox-$BASE_VERSION\_OSE SOURCE_URL=http://download.virtualbox.org/$MODULE/$BASE_VERSION - SOURCE_VFY=sha1:07c16657046f1b5a5562ad2b9041f982ad9dded7 + SOURCE_VFY=sha1:90217b54233a4161b45c393ca1301bfd13d3766e MODULE_PREFIX=${VIRTUALBOX_PREFIX:-/usr/lib/virtualbox/} WEB_SITE=http://virtualbox.org ENTERED=20071004 - UPDATED=20091007 + UPDATED=20091030 SHORT="Full virtualizer for x86 hardware" cat << EOF From florin at lunar-linux.org Fri Oct 30 19:59:28 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Fri, 30 Oct 2009 20:59:28 +0200 Subject: [Lunar-commits] phpMyAdmin: version bumped to 3.2.3. Message-ID: <20091030190011.501489B1F0@doppio.foo-projects.org> commit 94d363ff059b6bea3cc8bda48c7b730682f83f9b Author: Florin Braescu Date: Fri Oct 30 20:59:28 2009 +0200 phpMyAdmin: version bumped to 3.2.3. A problem where comments were stripped from stored procedures was fixed. A problem where renaming a database deleted its triggers was fixed. A problem was fixed where exporting was slow when many databases were present. --- sql/phpMyAdmin/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sql/phpMyAdmin/DETAILS b/sql/phpMyAdmin/DETAILS index e6e444e..1324f16 100644 --- a/sql/phpMyAdmin/DETAILS +++ b/sql/phpMyAdmin/DETAILS @@ -1,13 +1,13 @@ MODULE=phpMyAdmin - VERSION=3.2.2.1 + VERSION=3.2.3 RELEASE=$VERSION-all-languages SOURCE=$MODULE-$RELEASE.tar.bz2 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$RELEASE SOURCE_URL=$SFORGE_URL/phpmyadmin - SOURCE_VFY=sha1:71bdc795147b54c219f87fa63e7430779cef786b + SOURCE_VFY=sha1:d99b1098c7cb3454f95dced25574bde0c7fd78ca WEB_SITE=http://www.phpmyadmin.net/home_page ENTERED=20040912 - UPDATED=20091013 + UPDATED=20091030 SHORT="A php web interface to administrate MySQL tables" cat << EOF From florin at lunar-linux.org Sat Oct 31 20:45:25 2009 From: florin at lunar-linux.org (Florin Braescu) Date: Sat, 31 Oct 2009 21:45:25 +0200 Subject: [Lunar-commits] vlc: version bumped to 1.0.3. Message-ID: <20091031194606.44F6C9B1F0@doppio.foo-projects.org> commit 7f5771def657598fa0f8e038014a08bb79677e25 Author: Florin Braescu Date: Sat Oct 31 21:45:25 2009 +0200 vlc: version bumped to 1.0.3. Changes: * New deinterlacers modules based on yadif and yadif(x2) algorithms didn't work in the packaged version of 1.0.2 * Fix downmixing of particual 4.0 AC-3 audio tracks * x264 has profile-limitter, like: #transcode{vcodec=h264,venc=x264{profile=baseline,level=12}..} * Various fixes. * French, Galician, Korean, Polish, Russian, Romanian, Slovak and Ukrainian updates --- video/vlc/DETAILS | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/video/vlc/DETAILS b/video/vlc/DETAILS index 01c961c..363b726 100644 --- a/video/vlc/DETAILS +++ b/video/vlc/DETAILS @@ -1,11 +1,11 @@ MODULE=vlc - VERSION=1.0.2 + VERSION=1.0.3 SOURCE=$MODULE-$VERSION.tar.bz2 SOURCE_URL=http://www.videolan.org/pub/videolan/$MODULE/$VERSION - SOURCE_VFY=sha1:5207d227f09d16a44823ae4a8b2144b3ce18eefb + SOURCE_VFY=sha1:f16324aa9df159251c1cc29e886d96b6d33154bf WEB_SITE=http://www.videolan.org ENTERED=20011113 - UPDATED=20090920 + UPDATED=20091031 SHORT="Videolan client multimedia player" cat << EOF From ratler at lunar-linux.org Sat Oct 31 22:57:40 2009 From: ratler at lunar-linux.org (Stefan Wold) Date: Sat, 31 Oct 2009 22:57:40 +0100 Subject: [Lunar-commits] rpmunpack: Adding support for lzma compressed rpms Message-ID: <20091031215903.5DA6F9B2DA@doppio.foo-projects.org> commit 9bbee17353237d664ee001024359b0185cb41e7e Author: Stefan Wold Date: Sat Oct 31 22:57:40 2009 +0100 rpmunpack: Adding support for lzma compressed rpms Thanks to Peter de Ridder for supplying a patch. --- archive/rpmunpack/BUILD | 7 ++++--- archive/rpmunpack/DEPENDS | 1 + archive/rpmunpack/DETAILS | 8 ++++++-- archive/rpmunpack/plugin.d/unpack-rpm.plugin | 5 +++-- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/archive/rpmunpack/BUILD b/archive/rpmunpack/BUILD index 9cb84b1..4d4fbfb 100644 --- a/archive/rpmunpack/BUILD +++ b/archive/rpmunpack/BUILD @@ -1,7 +1,8 @@ ( - + cp ${SOURCE_CACHE}/$SOURCE2 rpm2cpio && + patch_it $SOURCE3 1 && make && prepare_install && - install -s rpmunpack /usr/bin - install ${SOURCE_CACHE}/rpm2cpio /usr/bin + install -s rpmunpack /usr/bin && + install rpm2cpio /usr/bin ) > $C_FIFO 2>&1 diff --git a/archive/rpmunpack/DEPENDS b/archive/rpmunpack/DEPENDS index 5abca13..6bb4087 100644 --- a/archive/rpmunpack/DEPENDS +++ b/archive/rpmunpack/DEPENDS @@ -1 +1,2 @@ depends cpio +depends xz diff --git a/archive/rpmunpack/DETAILS b/archive/rpmunpack/DETAILS index a9d7e1f..4b189c1 100644 --- a/archive/rpmunpack/DETAILS +++ b/archive/rpmunpack/DETAILS @@ -2,13 +2,17 @@ VERSION=0 SOURCE=$MODULE.tar.gz SOURCE2=rpm2cpio + SOURCE3=rpmunpack_lzma-1.patch SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE -SOURCE2_DIRECTORY=$BUILD_DIRECTORY SOURCE_URL=http://www.ibiblio.org/pub/Linux/utils/package/ SOURCE2_URL=http://www.iagora.com/~espel/ + SOURCE3_URL=$PATCH_URL + SOURCE_VFY=sha1:2ac43b6727d149c64347faade0827ec0f7a839e2 + SOURCE2_VFY=sha1:eb0175ecaf6f8b5386fed8b51f4edfc1441d7697 + SOURCE3_VFY=sha1:e1a16dda3c48679549ac850aa834db491cfa113e WEB_SITE=unknown ENTERED=20011017 - UPDATED=20040317 + UPDATED=20091031 SHORT="Program to extract an archive from a RPM file" cat << EOF This program converts rpm archives to cpio archives for cpio or afio. diff --git a/archive/rpmunpack/plugin.d/unpack-rpm.plugin b/archive/rpmunpack/plugin.d/unpack-rpm.plugin index 054c723..b02081f 100644 --- a/archive/rpmunpack/plugin.d/unpack-rpm.plugin +++ b/archive/rpmunpack/plugin.d/unpack-rpm.plugin @@ -6,6 +6,7 @@ ############################################################# # # # Copyright 2005 by Auke Kok under GPLv2 # +# Copyright 2009 by Stefan Wold under # # # ############################################################# @@ -13,12 +14,12 @@ plugin_unpack_rpm() { case $1 in *.rpm) - if [ ! -x /usr/bin/rpmunpack ]; then + if [ ! -x /usr/bin/rpm2cpio ]; then message "${PROBLEM_COLOR}! Cannot unpack rpm files without ${MODULE_COLOR}rpmunpack${DEFAULT_COLOR}${PROBLEM_COLOR} installed${DEFAULT_COLOR}"; exit 1 fi debug_msg "Unpacking rpm file \"$1\"" - rpmunpack < $1 | gzip -d | cpio -idm || return 1 + rpm2cpio $1 | cpio -idm || return 1 ;; *) # fallback: we don't know what to do!