[CVS] OpenPKG: openpkg-src/ganttproject/ ganttproject.patch ganttproje...

2009-03-27 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   27-Mar-2009 11:27:27
  Branch: HEAD Handle: 2009032710272700

  Modified files:
openpkg-src/ganttproject
ganttproject.patch ganttproject.spec

  Log:
upgrading package: ganttproject 2.0.7 -> 2.0.9

  Summary:
RevisionChanges Path
1.7 +3  -3  openpkg-src/ganttproject/ganttproject.patch
1.23+2  -2  openpkg-src/ganttproject/ganttproject.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.patch
  
  $ cvs diff -u -r1.6 -r1.7 ganttproject.patch
  --- openpkg-src/ganttproject/ganttproject.patch   23 Jun 2008 06:35:25 
-  1.6
  +++ openpkg-src/ganttproject/ganttproject.patch   27 Mar 2009 10:27:27 
-  1.7
  @@ -1,6 +1,6 @@
   Index: ganttproject.sh
   ganttproject.sh.orig 2008-06-23 03:06:40 +0200
  -+++ ganttproject.sh  2008-06-23 08:21:13 +0200
  +--- ganttproject.sh.orig 2008-12-14 19:34:20 +0100
   ganttproject.sh  2009-03-27 11:22:46 +0100
   @@ -1,34 +1,9 @@
   -#!/bin/bash
   -
  @@ -37,7 +37,7 @@
   -  exit
   -fi
   -
  --$JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE "$@" >$LOG_FILE 2>&1
  +-$JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE -log $LOG_FILE "$@" 
   -
   +java_comma...@l_prefix@/bin/java
   +$JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE $*
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.spec
  
  $ cvs diff -u -r1.22 -r1.23 ganttproject.spec
  --- openpkg-src/ganttproject/ganttproject.spec23 Jun 2008 06:35:25 
-  1.22
  +++ openpkg-src/ganttproject/ganttproject.spec27 Mar 2009 10:27:27 
-  1.23
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Calendar
   License:  GPL
  -Version:  2.0.7
  -Release:  20080623
  +Version:  2.0.9
  +Release:  20090327
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/ganttproject/ganttproject-%{version}.zip
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/ganttproject/ ganttproject.patch ganttproje...

2008-06-22 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   23-Jun-2008 08:35:29
  Branch: HEAD Handle: 2008062307352500

  Modified files:
openpkg-src/ganttproject
ganttproject.patch ganttproject.spec

  Log:
upgrading package: ganttproject 2.0.6 -> 2.0.7

  Summary:
RevisionChanges Path
1.6 +13 -5  openpkg-src/ganttproject/ganttproject.patch
1.22+2  -2  openpkg-src/ganttproject/ganttproject.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.patch
  
  $ cvs diff -u -r1.5 -r1.6 ganttproject.patch
  --- openpkg-src/ganttproject/ganttproject.patch   19 Dec 2007 09:50:49 
-  1.5
  +++ openpkg-src/ganttproject/ganttproject.patch   23 Jun 2008 06:35:25 
-  1.6
  @@ -1,20 +1,22 @@
   Index: ganttproject.sh
   ganttproject.sh.orig 2007-12-17 01:51:22 +0100
  -+++ ganttproject.sh  2007-12-19 10:48:49 +0100
  -@@ -1,27 +1,9 @@
  +--- ganttproject.sh.orig 2008-06-23 03:06:40 +0200
   ganttproject.sh  2008-06-23 08:21:13 +0200
  +@@ -1,34 +1,9 @@
   -#!/bin/bash
   -
   -GP_HOME=.
   -COMMAND_PATH=`echo ${0} | sed -e "s/\(.*\)\/.*$/\1/g"`
   -cd ${COMMAND_PATH}
  +-
   +#!/bin/sh
  - 
  ++  
   [EMAIL PROTECTED]@/libexec/ganttproject
LOCAL_CLASSPATH=$GP_HOME/eclipsito.jar
   -
   -CONFIGURATION_FILE=ganttproject-eclipsito-config.xml
   [EMAIL PROTECTED]@/etc/ganttproject/ganttproject-eclipsito-config.xml
BOOT_CLASS=org.bardsoftware.eclipsito.Boot
  +-LOG_FILE=$HOME/.ganttproject.log
   -
   -if [ -z $JAVA_HOME ]; then
   -  JAVA_COMMAND=`which java`
  @@ -29,7 +31,13 @@
   -  echo "$JAVA_COMMAND is not executable. Please check the permissions."
   -  exit
   -fi
  --$JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE $* >$GP_HOME/ganttproject.log 2>&1
  +-
  +-if [ -e $LOG_FILE ] && [ ! -w $LOG_FILE ]; then
  +-  echo "Log file $LOG_FILE is not writable"
  +-  exit
  +-fi
  +-
  +-$JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE "$@" >$LOG_FILE 2>&1
   -
   [EMAIL PROTECTED]@/bin/java
   +$JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE $*
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.spec
  
  $ cvs diff -u -r1.21 -r1.22 ganttproject.spec
  --- openpkg-src/ganttproject/ganttproject.spec1 Jan 2008 14:54:07 
-   1.21
  +++ openpkg-src/ganttproject/ganttproject.spec23 Jun 2008 06:35:25 
-  1.22
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Calendar
   License:  GPL
  -Version:  2.0.6
  -Release:  20080101
  +Version:  2.0.7
  +Release:  20080623
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/ganttproject/ganttproject-%{version}.zip
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/ganttproject/ ganttproject.patch ganttproje...

2007-12-19 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   19-Dec-2007 10:50:51
  Branch: HEAD Handle: 2007121909504900

  Modified files:
openpkg-src/ganttproject
ganttproject.patch ganttproject.spec

  Log:
upgrading package: ganttproject 2.0.5 -> 2.0.6

  Summary:
RevisionChanges Path
1.5 +10 -8  openpkg-src/ganttproject/ganttproject.patch
1.20+2  -2  openpkg-src/ganttproject/ganttproject.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.patch
  
  $ cvs diff -u -r1.4 -r1.5 ganttproject.patch
  --- openpkg-src/ganttproject/ganttproject.patch   15 Oct 2006 11:11:10 
-  1.4
  +++ openpkg-src/ganttproject/ganttproject.patch   19 Dec 2007 09:50:49 
-  1.5
  @@ -1,13 +1,14 @@
   Index: ganttproject.sh
   ganttproject.sh.orig 2006-06-05 21:19:05 +0200
  -+++ ganttproject.sh  2006-08-06 10:45:39 +0200
  -@@ -1,27 +1,7 @@
  - #!/bin/bash
  +--- ganttproject.sh.orig 2007-12-17 01:51:22 +0100
   ganttproject.sh  2007-12-19 10:48:49 +0100
  +@@ -1,27 +1,9 @@
  +-#!/bin/bash
   -
   -GP_HOME=.
   -COMMAND_PATH=`echo ${0} | sed -e "s/\(.*\)\/.*$/\1/g"`
   -cd ${COMMAND_PATH}
  --
  ++#!/bin/sh
  + 
   [EMAIL PROTECTED]@/libexec/ganttproject
LOCAL_CLASSPATH=$GP_HOME/eclipsito.jar
   -
  @@ -28,7 +29,8 @@
   -  echo "$JAVA_COMMAND is not executable. Please check the permissions."
   -  exit
   -fi
  [EMAIL PROTECTED]@/bin/java
  - $JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE $*
  --
  +-$JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE $* >$GP_HOME/ganttproject.log 2>&1
   -
  [EMAIL PROTECTED]@/bin/java
  ++$JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE $*
  + 
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.spec
  
  $ cvs diff -u -r1.19 -r1.20 ganttproject.spec
  --- openpkg-src/ganttproject/ganttproject.spec8 Oct 2007 06:44:03 
-   1.19
  +++ openpkg-src/ganttproject/ganttproject.spec19 Dec 2007 09:50:49 
-  1.20
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Calendar
   License:  GPL
  -Version:  2.0.5
  -Release:  20071008
  +Version:  2.0.6
  +Release:  20071219
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/ganttproject/ganttproject-%{version}.zip
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/ganttproject/ ganttproject.patch ganttproje...

2006-10-15 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   15-Oct-2006 13:11:10
  Branch: HEAD Handle: 2006101512111000

  Modified files:
openpkg-src/ganttproject
ganttproject.patch ganttproject.spec

  Log:
upgrading package: ganttproject 2.0 -> 2.0.2

  Summary:
RevisionChanges Path
1.4 +7  -5  openpkg-src/ganttproject/ganttproject.patch
1.12+7  -6  openpkg-src/ganttproject/ganttproject.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.patch
  
  $ cvs diff -u -r1.3 -r1.4 ganttproject.patch
  --- openpkg-src/ganttproject/ganttproject.patch   10 Mar 2006 11:19:34 
-  1.3
  +++ openpkg-src/ganttproject/ganttproject.patch   15 Oct 2006 11:11:10 
-  1.4
  @@ -1,15 +1,17 @@
   Index: ganttproject.sh
   ganttproject.sh.orig 2006-02-06 17:31:40 +0100
  -+++ ganttproject.sh  2006-03-10 11:18:39 +0100
  -@@ -1,25 +1,7 @@
  - #!/bin/sh
  +--- ganttproject.sh.orig 2006-06-05 21:19:05 +0200
   ganttproject.sh  2006-08-06 10:45:39 +0200
  +@@ -1,27 +1,7 @@
  + #!/bin/bash
   -
   -GP_HOME=.
  +-COMMAND_PATH=`echo ${0} | sed -e "s/\(.*\)\/.*$/\1/g"`
  +-cd ${COMMAND_PATH}
   -
   [EMAIL PROTECTED]@/libexec/ganttproject
LOCAL_CLASSPATH=$GP_HOME/eclipsito.jar
   -
  --CONFIGURATION_FILE=$GP_HOME/ganttproject-eclipsito-config.xml
  +-CONFIGURATION_FILE=ganttproject-eclipsito-config.xml
   [EMAIL PROTECTED]@/etc/ganttproject/ganttproject-eclipsito-config.xml
BOOT_CLASS=org.bardsoftware.eclipsito.Boot
   -
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.spec
  
  $ cvs diff -u -r1.11 -r1.12 ganttproject.spec
  --- openpkg-src/ganttproject/ganttproject.spec13 Oct 2006 17:28:08 
-  1.11
  +++ openpkg-src/ganttproject/ganttproject.spec15 Oct 2006 11:11:10 
-  1.12
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Finance
   License:  GPL
  -Version:  2.0
  -Release:  20061013
  +Version:  2.0.2
  +Release:  20061015
   
   #   list of sources
   Source0:  
http://switch.dl.sourceforge.net/ganttproject/ganttproject-%{version}.zip
  @@ -77,16 +77,17 @@
   $RPM_BUILD_ROOT%{l_prefix}/libexec/ganttproject
   cp -rp eclipsito.jar plugins \
   $RPM_BUILD_ROOT%{l_prefix}/libexec/ganttproject/
  -%{l_shtool} install -c -m 644 \
  -ganttproject-eclipsito-config.xml \
  -$RPM_BUILD_ROOT%{l_prefix}/etc/ganttproject/
  +touch 
$RPM_BUILD_ROOT%{l_prefix}/etc/ganttproject/ganttproject-eclipsito-config.xml
   %{l_shtool} install -c -m 755 %{l_value -s -a} \
  +-e 's;/bin/bash;%{l_bash};' \
   ganttproject.sh \
   $RPM_BUILD_ROOT%{l_prefix}/bin/ganttproject
   %{l_shtool} install -c -m 644 \
   %{SOURCE gan2svg.xsl} \
   $RPM_BUILD_ROOT%{l_prefix}/libexec/ganttproject/
  -%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
  +%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
  +%{l_files_std} \
  +'%config %{l_prefix}/etc/ganttproject/*'
   
   %files -f files
   
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/ganttproject/ ganttproject.patch ganttproje...

2006-03-10 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   10-Mar-2006 12:19:34
  Branch: HEAD Handle: 2006031011193400

  Modified files:
openpkg-src/ganttproject
ganttproject.patch ganttproject.spec

  Log:
switch to bytecode distribution and upgrade version

  Summary:
RevisionChanges Path
1.3 +32 -13 openpkg-src/ganttproject/ganttproject.patch
1.7 +24 -27 openpkg-src/ganttproject/ganttproject.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.patch
  
  $ cvs diff -u -r1.2 -r1.3 ganttproject.patch
  --- openpkg-src/ganttproject/ganttproject.patch   10 May 2005 18:14:49 
-  1.2
  +++ openpkg-src/ganttproject/ganttproject.patch   10 Mar 2006 11:19:34 
-  1.3
  @@ -1,13 +1,32 @@
  -Index: build.xml
  -diff -Nau build.xml.orig build.xml
   build.xml.orig   2004-12-07 23:12:04.0 +0100
  -+++ build.xml2005-05-10 19:36:04.030015107 +0200
  -@@ -163,6 +163,8 @@
  - debug="${debug}"
  - deprecation="${deprecation}"
  - optimize="${optimize}"
  -+source="${source}"
  -+nowarn="${nowarn}"
  - includeAntRuntime="false">
  - 
  - 
  +Index: ganttproject.sh
  +--- ganttproject.sh.orig 2006-02-06 17:31:40 +0100
   ganttproject.sh  2006-03-10 11:18:39 +0100
  +@@ -1,25 +1,7 @@
  + #!/bin/sh
  +-
  +-GP_HOME=.
  +-
  [EMAIL PROTECTED]@/libexec/ganttproject
  + LOCAL_CLASSPATH=$GP_HOME/eclipsito.jar
  +-
  +-CONFIGURATION_FILE=$GP_HOME/ganttproject-eclipsito-config.xml
  [EMAIL PROTECTED]@/etc/ganttproject/ganttproject-eclipsito-config.xml
  + BOOT_CLASS=org.bardsoftware.eclipsito.Boot
  +-
  +-if [ -z $JAVA_HOME ]; then
  +-  JAVA_COMMAND=`which java`
  +-  if [ "$?" = "1" ]; then
  +-echo "No executable java found. Please set JAVA_HOME variable";
  +-exit;
  +-  fi
  +-else
  +-  JAVA_COMMAND=$JAVA_HOME/bin/java
  +-fi
  +-if [ ! -x $JAVA_COMMAND ]; then
  +-  echo "$JAVA_COMMAND is not executable. Please check the permissions."
  +-  exit
  +-fi
  [EMAIL PROTECTED]@/bin/java
  + $JAVA_COMMAND -Xmx256m -classpath $CLASSPATH:$LOCAL_CLASSPATH $BOOT_CLASS 
$CONFIGURATION_FILE $*
  +-
  +-
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.spec
  
  $ cvs diff -u -r1.6 -r1.7 ganttproject.spec
  --- openpkg-src/ganttproject/ganttproject.spec1 Jan 2006 13:13:44 
-   1.6
  +++ openpkg-src/ganttproject/ganttproject.spec10 Mar 2006 11:19:34 
-  1.7
  @@ -32,24 +32,24 @@
   Class:EVAL
   Group:Development
   License:  GPL
  -Version:  1.10.3
  -Release:  20051114
  +Version:  2.0
  +Release:  20060310
   
   #   list of sources
  -Source0:  
http://osdn.dl.sourceforge.net/ganttproject/ganttproject-%{version}-src.zip
  +Source0:  
http://osdn.dl.sourceforge.net/ganttproject/ganttproject-%{version}.zip
   Source1:  http://svn.weird-birds.org/wbc/gan2svg/gan2svg.xsl
   Patch0:   ganttproject.patch
   
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg >= 20040130, JDK, ant, infozip
  +BuildPreReq:  OpenPKG, openpkg >= 20040130, infozip
   PreReq:   OpenPKG, openpkg >= 20040130, JRE
   AutoReq:  no
   AutoReqProv:  no
   
   %description
  -The ganttproject is a project management tool with a comfortable gui
  +The ganttproject is a project management tool with a comfortable GUI
   and several output options. A typical manager uses ganttproject for
   building project plans and tracking progress. Gantt charts can be
   saved in a variety of formats, due to a flexible theme based XSLT
  @@ -59,36 +59,33 @@
   prog ganttproject = {
   version   = %{version}
   url   = http://prdownloads.sourceforge.net/ganttproject/
  -regex = ganttproject-((?:1\.10\.\d+|2\.\d+(\.\d+)*))-src\.zip
  +regex = ganttproject-(__VER__)\.zip
   }
   
   %prep
  -rm -rf ganttproject-%{version}
  -unzip -qq %{SOURCE0}
  -cd ganttproject-%{version}
  +%setup -c -T
  +(cd .. && unzip -q %{SOURCE0}) || exit $?
   %patch -p0
   
   %build
  -cd ganttproject-%{version}
  -ant -Dsource=1.4 -Dnowarn=on -Ddebug=off -Doptimize=on
   
   %install
  -( cd ganttp

[CVS] OpenPKG: openpkg-src/ganttproject/ ganttproject.patch ganttproje...

2005-05-10 Thread Michael Schloh
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael Schloh
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   10-May-2005 20:14:49
  Branch: HEAD Handle: 2005051019144900

  Modified files:
openpkg-src/ganttproject
ganttproject.patch ganttproject.spec

  Log:
upgrading package: ganttproject 1.10.1 -> 1.10.3

  Summary:
RevisionChanges Path
1.2 +9  -9  openpkg-src/ganttproject/ganttproject.patch
1.2 +3  -3  openpkg-src/ganttproject/ganttproject.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.patch
  
  $ cvs diff -u -r1.1 -r1.2 ganttproject.patch
  --- openpkg-src/ganttproject/ganttproject.patch   9 May 2005 21:50:33 
-   1.1
  +++ openpkg-src/ganttproject/ganttproject.patch   10 May 2005 18:14:49 
-  1.2
  @@ -1,13 +1,13 @@
   Index: build.xml
   diff -Nau build.xml.orig build.xml
   build.xml.orig   2005-05-09 21:20:15.199960632 +0200
  -+++ build.xml2005-05-09 21:20:25.86069 +0200
  -@@ -162,6 +162,8 @@
  - debug="${debug}"

  - deprecation="${deprecation}"

  - optimize="${optimize}"

  +--- build.xml.orig   2004-12-07 23:12:04.0 +0100
   build.xml2005-05-10 19:36:04.030015107 +0200
  +@@ -163,6 +163,8 @@
  + debug="${debug}"
  + deprecation="${deprecation}"
  + optimize="${optimize}"
   +source="${source}"
   +nowarn="${nowarn}"
  - includeAntRuntime="false">

  - 

  - 

  + includeAntRuntime="false">
  + 
  + 
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.spec
  
  $ cvs diff -u -r1.1 -r1.2 ganttproject.spec
  --- openpkg-src/ganttproject/ganttproject.spec9 May 2005 21:50:33 
-   1.1
  +++ openpkg-src/ganttproject/ganttproject.spec10 May 2005 18:14:49 
-  1.2
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Development
   License:  GPL
  -Version:  1.10.1
  -Release:  20050509
  +Version:  1.10.3
  +Release:  20050510
   
   #   list of sources
   Source0:  
http://osdn.dl.sourceforge.net/ganttproject/ganttproject-%{version}-src.zip
  @@ -70,7 +70,7 @@
   
   %build
   cd ganttproject-%{version}
  -ant -Dsource=1.4 -Dnowarn=on -Doptimize=on
  +ant -Dsource=1.4 -Dnowarn=on -Ddebug=off -Doptimize=on
   
   %install
   ( cd ganttproject-%{version}
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/ganttproject/ ganttproject.patch ganttproje...

2005-05-09 Thread Michael Schloh
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael Schloh
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   09-May-2005 23:50:34
  Branch: HEAD Handle: 2005050922503300

  Added files:
openpkg-src/ganttproject
ganttproject.patch ganttproject.spec

  Log:
new package: ganttproject 1.10.1 (Project Planner)

  Summary:
RevisionChanges Path
1.1 +13 -0  openpkg-src/ganttproject/ganttproject.patch
1.1 +98 -0  openpkg-src/ganttproject/ganttproject.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.patch
  
  $ cvs diff -u -r0 -r1.1 ganttproject.patch
  --- /dev/null 2005-05-09 23:45:07 +0200
  +++ ganttproject.patch2005-05-09 23:50:33 +0200
  @@ -0,0 +1,13 @@
  +Index: build.xml
  +diff -Nau build.xml.orig build.xml
  +--- build.xml.orig   2005-05-09 21:20:15.199960632 +0200
   build.xml2005-05-09 21:20:25.86069 +0200
  +@@ -162,6 +162,8 @@
  + debug="${debug}"

  + deprecation="${deprecation}"

  + optimize="${optimize}"

  ++source="${source}"
  ++nowarn="${nowarn}"
  + includeAntRuntime="false">

  + 

  + 

  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/ganttproject/ganttproject.spec
  
  $ cvs diff -u -r0 -r1.1 ganttproject.spec
  --- /dev/null 2005-05-09 23:45:07 +0200
  +++ ganttproject.spec 2005-05-09 23:50:33 +0200
  @@ -0,0 +1,98 @@
  +##
  +##  ganttproject.spec -- OpenPKG RPM Package Specification
  +##  Copyright (c) 2000-2005 OpenPKG Foundation e.V. 
  +##  Copyright (c) 2000-2005 Ralf S. Engelschall 
  +##
  +##  Permission to use, copy, modify, and distribute this software for
  +##  any purpose with or without fee is hereby granted, provided that
  +##  the above copyright notice and this permission notice appear in all
  +##  copies.
  +##
  +##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  +##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  +##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  +##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  +##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  +##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  +##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  +##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  +##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  +##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  +##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  +##  SUCH DAMAGE.
  +##
  +
  +#   package information
  +Name: ganttproject
  +Summary:  Project Planner
  +URL:  http://www.ganttproject.org/
  +Vendor:   Alexandre Thomas
  +Packager: OpenPKG
  +Distribution: OpenPKG
  +Class:EVAL
  +Group:Development
  +License:  GPL
  +Version:  1.10.1
  +Release:  20050509
  +
  +#   list of sources
  +Source0:  
http://osdn.dl.sourceforge.net/ganttproject/ganttproject-%{version}-src.zip
  +Source1:  http://svn.weird-birds.org/wbc/gan2svg/gan2svg.xsl
  +Patch0:   ganttproject.patch
  +
  +#   build information
  +Prefix:   %{l_prefix}
  +BuildRoot:%{l_buildroot}
  +BuildPreReq:  OpenPKG, openpkg >= 20040130, JDK, ant, infozip
  +PreReq:   OpenPKG, openpkg >= 20040130, JRE
  +AutoReq:  no
  +AutoReqProv:  no
  +
  +%description
  +The ganttproject is a project management tool with a comfortable gui
  +and several output options. A typical manager uses ganttproject for
  +building project plans and tracking progress. Gantt charts can be
  +saved in a variety of formats, due to a flexible theme based XSLT
  +processor.
  +
  +%track
  +prog ganttproject = {
  +version   = %{version}
  +url   = http://prdownloads.sourceforge.net/ganttproject/
  +regex = ganttproject-(__VER__)\.tar\.gz
  +}
  +
  +%prep
  +rm -rf ganttproject-%{version}
  +unzip -qq %{SOURCE0}
  +cd ganttproject-%{version}
  +%patch -p0
  +
  +%build
  +cd ganttproject-%{version}
  +ant -Dsource=1.4 -Dnowarn=on -Doptimize=on
  +
  +%install
  +( cd ganttproject-%{version}
  +  rm -rf $RPM_BUILD_ROOT
  +  %{l_shtool