From cvs at kolab.org Thu Jul 2 15:08:38 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 2 Jul 2009 15:08:38 +0200 (CEST) Subject: thomas: server/php/patches hgrc,1.1,NONE Message-ID: <20090702130838.0189060083E@lists.intevation.de> Author: thomas Update of /kolabrepository/server/php/patches In directory doto:/tmp/cvs-serv18293/php/patches Removed Files: hgrc Log Message: removed stray hgrc files --- hgrc DELETED --- From cvs at kolab.org Thu Jul 2 15:08:38 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 2 Jul 2009 15:08:38 +0200 (CEST) Subject: thomas: server/imapd/patches hgrc,1.1,NONE Message-ID: <20090702130838.01DD36018E0@lists.intevation.de> Author: thomas Update of /kolabrepository/server/imapd/patches In directory doto:/tmp/cvs-serv18293/imapd/patches Removed Files: hgrc Log Message: removed stray hgrc files --- hgrc DELETED --- From cvs at kolab.org Thu Jul 2 15:15:46 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 2 Jul 2009 15:15:46 +0200 (CEST) Subject: thomas: server/imapd/patches Makefile,1.1,1.2 Message-ID: <20090702131546.B7C3C6018E0@lists.intevation.de> Author: thomas Update of /kolabrepository/server/imapd/patches In directory doto:/tmp/cvs-serv18479/imapd/patches Modified Files: Makefile Log Message: removed hgrc was needed by 'update' target in Makefile, create it on the fly Index: Makefile =================================================================== RCS file: /kolabrepository/server/imapd/patches/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 23 Apr 2009 21:33:09 -0000 1.1 +++ Makefile 2 Jul 2009 13:15:44 -0000 1.2 @@ -20,7 +20,7 @@ cd tmp && tar xfz $(PN)-$(OLD_VERSION).tar.gz cd tmp/$(PN)-$(OLD_VERSION) && hg init && hg commit --addremove -m "$(PN)-$(OLD_VERSION)" cd tmp && hg clone $(PN)-$(OLD_VERSION) $(PN)-PATCHED - cp hgrc tmp/$(PN)-PATCHED/.hg/ + printf "[extensions]\nhgext.mq =\n" > tmp/$(PN)-PATCHED/.hg/hgrc cd tmp/$(PN)-PATCHED && hg qinit cp $(PN)-$(OLD_VERSION)/series tmp/$(PN)-PATCHED/.hg/patches/ cd $(PN)-$(OLD_VERSION); \ From cvs at kolab.org Thu Jul 2 15:15:46 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 2 Jul 2009 15:15:46 +0200 (CEST) Subject: thomas: server/php/patches Makefile,1.1,1.2 Message-ID: <20090702131546.BD49A6018E2@lists.intevation.de> Author: thomas Update of /kolabrepository/server/php/patches In directory doto:/tmp/cvs-serv18479/php/patches Modified Files: Makefile Log Message: removed hgrc was needed by 'update' target in Makefile, create it on the fly Index: Makefile =================================================================== RCS file: /kolabrepository/server/php/patches/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 18 May 2009 08:43:38 -0000 1.1 +++ Makefile 2 Jul 2009 13:15:44 -0000 1.2 @@ -20,7 +20,7 @@ cd tmp && tar xfj $(PN)-$(OLD_VERSION).tar.bz2 cd tmp/$(PN)-$(OLD_VERSION) && hg init && hg commit --addremove -m "$(PN)-$(OLD_VERSION)" cd tmp && hg clone $(PN)-$(OLD_VERSION) $(PN)-PATCHED - cp hgrc tmp/$(PN)-PATCHED/.hg/ + printf "[extensions]\nhgext.mq =\n" > tmp/$(PN)-PATCHED/.hg/hgrc cd tmp/$(PN)-PATCHED && hg qinit cp $(PN)-$(OLD_VERSION)/series tmp/$(PN)-PATCHED/.hg/patches/ cd $(PN)-$(OLD_VERSION); \ From cvs at kolab.org Wed Jul 8 10:31:20 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 8 Jul 2009 10:31:20 +0200 (CEST) Subject: gunnar: server Base.mk,NONE,1.1 Message-ID: <20090708083120.BED2B600169@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv20462 Added Files: Base.mk Log Message: Add the base makefile here as we can also use it for non-PEAR packages. --- NEW FILE: Base.mk --- # If home is unset this Makefile assumes the Kolab server installation # resides in /kolab. If this is not the case this Makefile must be # called using # # HOME="/mykolabroot" make TARGET # ifeq "x$(HOME)" "x" HOME = /kolab endif # If HOME is set to /root it is likely that somebody is calling this # Makefile as root user. In this case this Makefile assumes that the # Kolab server installation resides in /kolab. # # In the (hopefully) unlikely event that somebody really installed the # Kolab server in /root this Makefile will fail. ifeq "x$(HOME)" "x/root" HOME = /kolab endif # Is this an openpkg system? OPENPKG=$(shell test -e $(HOME)/bin/openpkg && echo YES) ifeq "x$(OPENPKG)" "xYES" # Set the location of the rpm binary ifeq "x$(RPM)" "x" RPM = $(HOME)/bin/openpkg rpm endif # Determine the suffix for binary packages on this system ifeq "x$(PLATTAG)" "x" PLATTAG = $(shell $(RPM) -q --qf="%{ARCH}-%{OS}" openpkg)-$(HOME:/%=%) endif else RPM = PLATTAG = unknown endif # Set the location for rpm source package installations ifeq "x$(KOLABRPMSRC)" "x" KOLABRPMSRC = $(HOME)/RPM/SRC endif # Set the location for rpm packages ifeq "x$(KOLABRPMPKG)" "x" KOLABRPMPKG = $(HOME)/RPM/PKG endif # Set the location for the rpm temporary directory ifeq "x$(KOLABRPMTMP)" "x" KOLABRPMTMP = $(HOME)/RPM/TMP endif From cvs at kolab.org Wed Jul 8 10:31:37 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 8 Jul 2009 10:31:37 +0200 (CEST) Subject: gunnar: server/openldap Makefile, 1.24, 1.25 openldap.patch, 1.1, 1.2 openldap.spec, 1.14, 1.15 Message-ID: <20090708083137.4C888600172@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/openldap In directory doto:/tmp/cvs-serv20497 Modified Files: Makefile openldap.patch openldap.spec Log Message: Update to openldap-2.4.16 Index: Makefile =================================================================== RCS file: /kolabrepository/server/openldap/Makefile,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- Makefile 19 Jan 2009 16:23:53 -0000 1.24 +++ Makefile 8 Jul 2009 08:31:35 -0000 1.25 @@ -1,22 +1,11 @@ +include ../Base.mk + NAME = openldap PACKAGE = $(NAME) VERSION = $(shell grep "^Version:" *.spec | sed -e "s/^Version:\s*\([0-9.]*\).*/\1/") RELEASE = $(shell grep "^Release:" *.spec | sed -e "s/^Release:\s*\([0-9]*\).*/\1/") KOLABRELEASE = $(RELEASE) -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - SOURCE_0=ftp://ftp.openldap.org/pub/openldap/openldap-release/$(NAME)-$(VERSION).tgz EXTRA=fsl.openldap openldap.patch openldap.pc rc.openldap @@ -34,7 +23,7 @@ rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm rm -rf *~ -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec $(EXTRA) +$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec $(EXTRA) test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" @@ -42,3 +31,7 @@ cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec --define 'with_pth no' cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . + +.PHONY: install +install: $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm + $(RPM) -Uhv --force $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm Index: openldap.patch =================================================================== RCS file: /kolabrepository/server/openldap/openldap.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- openldap.patch 24 Apr 2008 15:36:09 -0000 1.1 +++ openldap.patch 8 Jul 2009 08:31:35 -0000 1.2 @@ -1,6 +1,6 @@ Index: include/ac/fdset.h ---- include/ac/fdset.h.orig 2007-01-02 22:43:47 +0100 -+++ include/ac/fdset.h 2007-09-22 19:03:32 +0200 +--- include/ac/fdset.h.orig 2008-02-12 00:26:40 +0100 ++++ include/ac/fdset.h 2008-10-13 11:38:23 +0200 @@ -22,6 +22,13 @@ #ifndef _AC_FDSET_H #define _AC_FDSET_H @@ -15,9 +15,31 @@ #if !defined( OPENLDAP_FD_SETSIZE ) && !defined( FD_SETSIZE ) # define OPENLDAP_FD_SETSIZE 4096 #endif +Index: include/ldap_int_thread.h +--- include/ldap_int_thread.h.orig 2008-02-12 00:26:40 +0100 ++++ include/ldap_int_thread.h 2008-10-13 11:38:23 +0200 +@@ -100,6 +100,7 @@ + * * + ***********************************/ + ++#define _POSIX_PTHREAD_SEMANTICS + #define PTH_SYSCALL_SOFT 1 + #include + +Index: libraries/libldap_r/tpool.c +--- libraries/libldap_r/tpool.c.orig 2008-03-21 01:46:03 +0100 ++++ libraries/libldap_r/tpool.c 2008-10-13 11:38:23 +0200 +@@ -950,6 +950,6 @@ + { + ldap_int_thread_userctx_t *ctx = vctx; + +- return ctx->ltu_id; ++ return ctx != NULL ? ctx->ltu_id : 0; + } + #endif /* LDAP_THREAD_HAVE_TPOOL */ Index: servers/slapd/back-perl/config.c ---- servers/slapd/back-perl/config.c.orig 2007-01-02 22:44:06 +0100 -+++ servers/slapd/back-perl/config.c 2007-09-22 19:13:23 +0200 +--- servers/slapd/back-perl/config.c.orig 2008-02-12 00:26:47 +0100 ++++ servers/slapd/back-perl/config.c 2008-10-13 11:38:23 +0200 @@ -49,6 +49,9 @@ } @@ -28,26 +50,3 @@ snprintf( eval_str, EVAL_BUF_SIZE, "use %s;", argv[1] ); eval_pv( eval_str, 0 ); -Index: servers/slapd/slapd.conf ---- servers/slapd/slapd.conf.orig 2004-06-18 04:49:08 +0200 -+++ servers/slapd/slapd.conf 2007-09-22 19:03:32 +0200 -@@ -65,3 +65,19 @@ - directory %LOCALSTATEDIR%/openldap-data - # Indices to maintain - index objectClass eq -+ -+####################################################################### -+# replication via slurpd(8) -+####################################################################### -+ -+# master server configuration -+#replogfile %LOCALSTATEDIR%/openldap-slurp -+#replica-pidfile %LOCALSTATEDIR%/slurpd.pid -+#replica host=slave.example.com:389 -+# binddn="cn=admin,dc=example,dc=org" -+# bindmethod=simple credentials=secret -+ -+# slave server(s) configuration -+#updatedn "cn=admin,dc=example,dc=org" -+#updateref ldap://master.example.org -+ Index: openldap.spec =================================================================== RCS file: /kolabrepository/server/openldap/openldap.spec,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- openldap.spec 12 Dec 2008 13:59:52 -0000 1.14 +++ openldap.spec 8 Jul 2009 08:31:35 -0000 1.15 @@ -1,7 +1,6 @@ ## ## openldap.spec -- OpenPKG RPM Package Specification -## Copyright (c) 2000-2007 OpenPKG Foundation e.V. -## Copyright (c) 2000-2007 Ralf S. Engelschall +## Copyright (c) 2000-2009 OpenPKG Foundation e.V. ## ## Permission to use, copy, modify, and distribute this software for ## any purpose with or without fee is hereby granted, provided that @@ -27,12 +26,13 @@ Summary: Lightweight Directory Access Protocol (LDAP) Toolkit URL: http://www.openldap.org/ Vendor: OpenLDAP Project -Packager: Intevation GmbH -Distribution: OpenPKG +Packager: OpenPKG Foundation e.V. +Distribution: OpenPKG Community +Class: BASE Group: LDAP License: GPL -Version: 2.3.43 -Release: 20081212 +Version: 2.4.16 +Release: 20090516 # package options %option with_server yes @@ -40,6 +40,7 @@ %option with_crypt yes %option with_overlays yes %option with_pth yes +%option with_pthreads no %option with_sasl no %option with_perl no %option with_odbc no @@ -56,11 +57,15 @@ BuildRoot: %{l_buildroot} BuildPreReq: OpenPKG, openpkg >= 20060823, make, gcc PreReq: OpenPKG, openpkg >= 20060823 -BuildPreReq: readline, openssl, db >= 4.2 -PreReq: readline, openssl, db >= 4.2 +BuildPreReq: openssl, db >= 4.5 +PreReq: openssl, db >= 4.5 %if "%{with_server}" == "yes" && "%{with_fsl}" == "yes" -BuildPreReq: fsl >= 1.2.0 -PreReq: fsl >= 1.2.0 +BuildPreReq: fsl +PreReq: fsl +%endif +%if "%{with_server}" == "yes" && "%{with_pthreads}" == "yes" +BuildPreReq: db::with_pthreads = yes +PreReq: db::with_pthreads = yes %endif %if "%{with_server}" == "yes" && "%{with_pth}" == "yes" BuildPreReq: pth @@ -81,7 +86,7 @@ OpenLDAP is an open source implementation of the Lightweight Directory Access Protocol (LDAP). The suite includes libraries implementing the LDAP protocol plus a stand-alone LDAP server - slapd(8) and a stand-alone LDAP replication server slurpd(8). + slapd(8). %track prog openldap = { @@ -101,6 +106,8 @@ configure %build + cp /dev/null config.cache + # configuration: standard build flags export CC="%{l_cc}" export CFLAGS="%{l_cflags -O} -D_GNU_SOURCE" @@ -112,22 +119,18 @@ ARGS="$ARGS --libexecdir=%{l_prefix}/libexec/openldap" ARGS="$ARGS --localstatedir=%{l_prefix}/var/openldap" ARGS="$ARGS --enable-syslog" - ARGS="$ARGS --with-readline" ARGS="$ARGS --with-tls" ARGS="$ARGS --without-fetch" + ARGS="$ARGS --without-gssapi" ARGS="$ARGS --disable-dynamic" ARGS="$ARGS --disable-shared" %if "%{with_server}" == "yes" ARGS="$ARGS --enable-slapd" - ARGS="$ARGS --enable-slurpd" ARGS="$ARGS --disable-modules" ARGS="$ARGS --enable-local" - ARGS="$ARGS --enable-ldbm" - ARGS="$ARGS --enable-ldbm-api=berkeley" - ARGS="$ARGS --enable-ldbm-type=btree" ARGS="$ARGS --enable-bdb" - ARGS="$ARGS --enable-rewrite" ARGS="$ARGS --enable-hdb" + ARGS="$ARGS --enable-rewrite" ARGS="$ARGS --enable-ldap" ARGS="$ARGS --enable-meta" ARGS="$ARGS --enable-monitor" @@ -137,7 +140,6 @@ ARGS="$ARGS --with-proxycache" %else ARGS="$ARGS --disable-slapd" - ARGS="$ARGS --disable-slurpd" ARGS="$ARGS --disable-modules" %endif @@ -148,12 +150,23 @@ %endif # configuration: force to use GNU pth if enabled -%if "%{with_server}" == "yes" && "%{with_pth}" == "yes" +%if "%{with_server}" == "yes" +%if "%{with_pth}" == "yes" CFLAGS="$CFLAGS `%{l_prefix}/bin/pth-config --cflags`" CPPFLAGS="$CPPFLAGS -I`%{l_prefix}/bin/pth-config --includedir`" LDFLAGS="$LDFLAGS `%{l_prefix}/bin/pth-config --ldflags`" LIBS="`%{l_prefix}/bin/pth-config --libs` $LIBS" ARGS="$ARGS --with-threads=pth" + ( echo "ac_cv_header_sys_devpoll_h=no" + echo "ac_cv_header_sys_epoll_h=no" + ) >>config.cache +%else +%if "%{with_pthreads}" == "yes" + ARGS="$ARGS --with-threads=posix" +%else + ARGS="$ARGS --with-threads=no" +%endif +%endif %endif # configuration: optional overlay support @@ -164,7 +177,7 @@ # configuration: optional SASL support %if "%{with_sasl}" == "yes" ( echo "ac_cv_lib_sasl2_sasl_client_init=yes" - ) >config.cache + ) >>config.cache CPPFLAGS="%{l_cppflags sasl} $CPPFLAGS" ARGS="$ARGS --with-cyrus-sasl --enable-spasswd" %else @@ -221,11 +234,10 @@ $RPM_BUILD_ROOT%{l_prefix}/var/openldap/openldap-data/DB_CONFIG %endif - # post adjustment: enable and correct slurpd.pid (slapd.pid as a precaution, too) + # post adjustment: enable and correct slapd.pid %if "%{with_server}" == "yes" %{l_shtool} subst \ -e 's;^[ #]*\(pidfile \).*$;\1 %{l_prefix}/var/openldap/run/slapd.pid;' \ - -e 's;^[ #]*\(replica-pidfile \).*$;\1 %{l_prefix}/var/openldap/run/slurpd.pid;' \ $RPM_BUILD_ROOT%{l_prefix}/etc/openldap/slapd.conf %endif @@ -275,7 +287,6 @@ rm -f $RPM_BUILD_ROOT%{l_prefix}/include/slapi-plugin.h rm -f $RPM_BUILD_ROOT%{l_prefix}/man/man5/slap* rm -f $RPM_BUILD_ROOT%{l_prefix}/man/man8/slap* - rm -f $RPM_BUILD_ROOT%{l_prefix}/man/man8/slurp* %endif # determine installation files From cvs at kolab.org Wed Jul 8 12:26:08 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 8 Jul 2009 12:26:08 +0200 (CEST) Subject: gunnar: server/kolabd/kolabd kolab2.schema,1.37,1.38 Message-ID: <20090708102608.840B4600167@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolabd/kolabd In directory doto:/tmp/cvs-serv23257/kolabd Modified Files: kolab2.schema Log Message: Fix broken commits on the kolab schema. Index: kolab2.schema =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/kolab2.schema,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- kolab2.schema 22 Jun 2009 13:18:42 -0000 1.37 +++ kolab2.schema 8 Jul 2009 10:26:06 -0000 1.38 @@ -1,7 +1,7 @@ # $Id$ -# (c) 2003-2004 Tassilo Erlewein -# (c) 2003-2009 Martin Konold -# (c) 2003 Achim Frank +# (c) 2003, 2004 Tassilo Erlewein +# (c) 2003-2009 Martin Konold +# (c) 2003 Achim Frank # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: @@ -332,15 +332,6 @@ SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 SINGLE-VALUE ) - -attributetype ( 1.3.6.1.4.1.19414.1.1.1.19 - NAME 'kolabSalutation' - DESC 'Salutation like Mr., Mrs, Herr, Frau)' - EQUALITY caseIgnoreMatch - SUBSTR caseIgnoreSubstringsMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{64} ) - - attributetype ( 1.3.6.1.4.1.19414.1.1.1.20 NAME 'kolabMaritalStatus' DESC 'ledig(0), verh.(1)} DEFAULT ledig' @@ -351,7 +342,7 @@ attributetype ( 1.3.6.1.4.1.19414.1.1.1.21 NAME ( 'homeFacsimileTelephoneNumber' 'homeFaxNumber' ) DESC 'private facsimilie telephone number' - SUP telephoneNumber ) + SYNTAX 1.3.6.1.4.1.1466.115.121.1.50{32} ) attributetype ( 1.3.6.1.4.1.19414.1.1.1.25 NAME 'bylawURI' @@ -395,7 +386,7 @@ attributetype ( 1.3.6.1.4.1.19414.1.1.1.31 NAME 'inLiquidation' EQUALITY booleanMatch - SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 ): + SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 ) attributetype ( 1.3.6.1.4.1.19414.1.1.1.32 NAME 'tradeRegisterRegisteredCapital' @@ -450,19 +441,19 @@ SUP name ) # describes the allowed or disallowed smtp addresses for -# receiving. If this attribute is not set for a user no -# kolab recieving address policy does apply. +# recipients. If this attribute is not set for a user no +# kolab recipient policy does apply. # example entries: -# .tld - allow mail from every sender for this tld -# domain.tld - allow mail from everyone in domain.tld -# .domain.tld - allow mail from everyone in domain.tld and its subdomains -# user at domain.tld - allow mail from explicit user at domain.tld -# user@ - allow mail from this user but any domain -# -.tld - disallow mail from every sender for this tld -# -domain.tld - disallow mail from everyone in domain.tld -# -.domain.tld - disallow mail from everyone in domain.tld and its subdomains -# -user at domain.tld - disallow mail from explicit user at domain.tld -# -user@ - disallow mail from this user but any domain +# .tld - allow mail to every recipient for this tld +# domain.tld - allow mail to everyone in domain.tld +# .domain.tld - allow mail to everyone in domain.tld and its subdomains +# user at domain.tld - allow mail to explicit user at domain.tld +# user@ - allow mail to this user but any domain +# -.tld - disallow mail to every recipient for this tld +# -domain.tld - disallow mail to everyone in domain.tld +# -.domain.tld - disallow mail to everyone in domain.tld and its subdomains +# -user at domain.tld - disallow mail to explicit user at domain.tld +# -user@ - disallow mail to this user but any domain attributetype ( 1.3.6.1.4.1.19414.1.1.1.43 NAME 'kolabAllowSMTPFrom' @@ -471,6 +462,13 @@ SUBSTR caseIgnoreIA5SubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{512} ) +attributetype ( 1.3.6.1.4.1.19414.1.1.1.44 + NAME 'kolabSalutation' + DESC 'Salutation like Mr., Mrs, Herr, Frau)' + EQUALITY caseIgnoreMatch + SUBSTR caseIgnoreSubstringsMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{64} ) + # kolabFolderType describes the kind of Kolab folder # as defined in the kolab format specification. # We will annotate all folders with an entry @@ -741,19 +739,19 @@ attributetype ( 1.3.6.1.4.1.19414.2.1.1001 NAME 'externalPop3AccountDescription' DESC 'a human readable description of the external POP3 account e.g. my gmail account' - SUP description - SINGLE-VALUE ) + SINGLE-VALUE + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{1024} ) attributetype ( 1.3.6.1.4.1.19414.2.1.1002 NAME 'externalPop3AccountMail' DESC 'email address associated with the external POP3 account e.g. givenname.surname at gmail.com' - SUP mail ) + SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} ) attributetype ( 1.3.6.1.4.1.19414.2.1.1003 NAME 'externalPop3AccountServer' DESC 'Pop3 server associated with the external POP3 account e.g. pop3.provider.com' - SUP fqdnhostname - SINGLE-VALUE ) + SINGLE-VALUE + SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{256} ) attributetype ( 1.3.6.1.4.1.19414.2.1.1004 NAME 'externalPop3AccountPort' @@ -787,8 +785,8 @@ attributetype ( 1.3.6.1.4.1.19414.2.1.1008 NAME 'externalPop3AccountLoginName' DESC 'name used to login into pop3 account often this uid is equivalent to the email address' - SUP uid - SINGLE-VALUE ) + SINGLE-VALUE + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{256} ) attributetype ( 1.3.6.1.4.1.19414.2.1.1009 NAME 'externalPop3EncryptedAccountPassword' @@ -810,6 +808,108 @@ SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32} ) ######################## +# external definitions # +######################## + +# extended from apple.schema +attributetype ( 1.3.6.1.4.1.63.1000.1.1.1.1.27 + NAME ( 'apple-birthday' 'dateOfBirth' 'dateOfIncorporation' ) + DESC 'Birthday or date of incorporation' + EQUALITY generalizedTimeMatch + SUBSTR caseExactIA5SubstringsMatch + SINGLE-VALUE + SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 ) + +# from http://www.stroeder.com/stroeder.com.schema +attributetype ( 1.3.6.1.4.1.5427.1.389.4.12 + NAME ( 'birthPlace' 'placeOfBirth' ) + DESC 'Place of birth' + SUP name + SINGLE-VALUE ) + +# from http://www.stroeder.com/stroeder.com.schema +attributetype ( 1.3.6.1.4.1.5427.1.389.4.14 + NAME 'birthName' + DESC 'Last name at time of birth, e.g. maiden name' + SUP name + SINGLE-VALUE ) + +# from http://www.stroeder.com/stroeder.com.schema +# The following data items and codes are used (see ISO 5218): +# Not known 0 +# Male 1 +# Female 2 +# Not specified 9 +# +attributetype ( 1.3.6.1.4.1.5427.1.389.4.7 + NAME 'gender' + DESC 'Representation of human sex (see ISO 5218)' + EQUALITY integerMatch + SINGLE-VALUE + SYNTAX 1.3.6.1.4.1.1466.115.121.1.27{1} ) + +# from http://www.stroeder.com/stroeder.com.schema +# tax ID of person or company within Germany +# +attributetype ( 1.3.6.1.4.1.5427.1.389.4.666 + NAME 'germanTaxId' + DESC 'tax ID of person or company within Germany' + EQUALITY caseIgnoreMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{20} ) + +# rfc 3039 +# ISO 3166 Country Code +# multiple citizenships are possible! +attributetype ( 1.3.6.1.5.5.7.9.4 + NAME 'countryOfCitizenship' + DESC 'Country of citizenship' + SYNTAX 1.3.6.1.4.1.1466.115.121.1.11 ) + +# ISO 3166 Country Code +attributetype ( 1.3.6.1.5.5.7.9.5 + NAME 'countryOfResidence' + DESC 'Country of residence' + SYNTAX 1.3.6.1.4.1.1466.115.121.1.11 ) + +# http://www.daasi.de/ +attributetype ( 1.3.6.1.4.1.5062.1.1.3.16 + NAME 'legalForm' + DESC 'legal form of a company' + EQUALITY caseIgnoreMatch + SUBSTR caseIgnoreSubstringsMatch + SINGLE-VALUE + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) + +# http://www.daasi.de/ +# location of the trade register authority +attributetype ( 1.3.6.1.4.1.5062.1.1.3.17 + NAME 'tradeRegisterLocation' + DESC 'Location of the trade registrar where the organization is registered' + SUP name + SINGLE-VALUE ) + +# http://www.daasi.de/ +# registration number a the trade register authority +attributetype ( 1.3.6.1.4.1.5062.1.1.3.18 + NAME 'tradeRegisterIdentifier' + DESC 'Idientifier with which an organization is registered' + EQUALITY caseIgnoreMatch + SUBSTR caseIgnoreSubstringsMatch + SINGLE-VALUE + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 ) + +# https://forxa.mancomun.org/plugins/scmsvn/viewcvs.php/trunk/ldap/dxpisi.schema?annotate=29&root=mancomun +# VATNumber +# Identifier number for companies and persons. In Spain it is the same as NIF/CIF. +# In Germany it is called Umsatzsteueridentifikationsnummer. +attributetype ( 1.3.6.1.4.1.27994.1.3.4 + NAME 'VATNumber' + DESC 'Identifier number for companies and persons' + EQUALITY caseIgnoreMatch + SUBSTR caseIgnoreSubstringsMatch + SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{10} ) + +######################## # kolab object classes # ######################## @@ -926,6 +1026,7 @@ placeOfBirth $ birthName $ gender $ + homeFacsimileTelephoneNumber $ countryOfCitizenship $ countryOfResidence $ legalForm $ @@ -975,8 +1076,8 @@ DESC 'kolab fetch messages via POP3 from external sources' SUP top STRUCTURAL MUST ( externalPop3AccountServer $ - externalPop3AccountLoginName $ - externalPop3EncryptedAccountPassword ) + externalPop3AccountLoginName $ + externalPop3EncryptedAccountPassword ) MAY ( externalPop3AccountDescription $ externalPop3AccountMail $ externalPop3AccountPort $ From cvs at kolab.org Wed Jul 8 12:26:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 8 Jul 2009 12:26:22 +0200 (CEST) Subject: gunnar: server/kolabd Makefile,1.18,1.19 Message-ID: <20090708102622.28CCA600169@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolabd In directory doto:/tmp/cvs-serv23289 Modified Files: Makefile Log Message: Use the base makefile. Index: Makefile =================================================================== RCS file: /kolabrepository/server/kolabd/Makefile,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- Makefile 4 Mar 2009 11:58:35 -0000 1.18 +++ Makefile 8 Jul 2009 10:26:20 -0000 1.19 @@ -1,3 +1,5 @@ +include ../Base.mk + PWD := $(shell pwd) PACKAGE=kolabd @@ -6,23 +8,6 @@ KOLAB_VERSION = $(shell { grep '^KOLAB_VERSION=".*"' ../install-kolab.sh || echo CVS; } | sed 's/.*"\(.*\)".*/\1/') MAKETAR = dist - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -ifeq "x$(PLATTAG)" "x" - PLATTAG = $(shell $(RPM) -q --qf="%{ARCH}-%{OS}" openpkg)-$(HOME:/%=%) -endif all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm From cvs at kolab.org Wed Jul 8 12:26:46 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 8 Jul 2009 12:26:46 +0200 (CEST) Subject: gunnar: server/kolabd/kolabd/dist_conf kolab,1.72,1.73 Message-ID: <20090708102646.3A173600172@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolabd/kolabd/dist_conf In directory doto:/tmp/cvs-serv23309/kolabd/dist_conf Modified Files: kolab Log Message: Configuration for openldap 2.4.* -> switch to syncrepl. Index: kolab =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/dist_conf/kolab,v retrieving revision 1.72 retrieving revision 1.73 diff -u -d -r1.72 -r1.73 --- kolab 24 Apr 2009 05:01:23 -0000 1.72 +++ kolab 8 Jul 2009 10:26:41 -0000 1.73 @@ -108,7 +108,7 @@ # Kolab web user interface kolab_wui=/admin -directory_mode=slurpd +directory_mode=syncrepl ldapserver_statedir=${localstatedir}/openldap ldapserver_dir=${ldapserver_statedir}/openldap-data ldapserver_replogfile=${ldapserver_statedir}/replog From cvs at kolab.org Thu Jul 9 17:30:59 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 17:30:59 +0200 (CEST) Subject: gunnar: server Base.mk,1.1,1.2 Message-ID: <20090709153059.6933F600169@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv26934 Modified Files: Base.mk Log Message: Include KOLABPKGURI in the basic variable definitions. Index: Base.mk =================================================================== RCS file: /kolabrepository/server/Base.mk,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Base.mk 8 Jul 2009 08:31:18 -0000 1.1 +++ Base.mk 9 Jul 2009 15:30:57 -0000 1.2 @@ -49,3 +49,7 @@ ifeq "x$(KOLABRPMTMP)" "x" KOLABRPMTMP = $(HOME)/RPM/TMP endif + +ifeq "x$(KOLABPKGURI)" "x" + KOLABPKGURI = http://files.kolab.org/server/development-2.2/openpkg-orig-srpms/ +endif From cvs at kolab.org Thu Jul 9 17:32:01 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 17:32:01 +0200 (CEST) Subject: gunnar: server/imapd Makefile,1.43,1.44 Message-ID: <20090709153201.73A59600817@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/imapd In directory doto:/tmp/cvs-serv26990 Modified Files: Makefile Log Message: Simplify the makefile. Index: Makefile =================================================================== RCS file: /kolabrepository/server/imapd/Makefile,v retrieving revision 1.43 retrieving revision 1.44 diff -u -d -r1.43 -r1.44 --- Makefile 25 Jun 2009 13:08:55 -0000 1.43 +++ Makefile 9 Jul 2009 15:31:59 -0000 1.44 @@ -1,22 +1,4 @@ -ifeq "x$(KOLABPKGURI)" "x" - KOLABPKGURI = http://files.kolab.org/server/development-2.2/openpkg-orig-srpms/ -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABCVSDIR)" "x" - KOLABCVSDIR = $(CURDIR) -endif -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif - -ifeq "x$(PLATTAG)" "x" - PLATTAG = $(shell $(RPM) -q --qf="%{ARCH}-%{OS}" openpkg)-$(HOME:/%=%) -endif +include ../Base.mk PACKAGE=imapd VERSION=2.3.13 @@ -29,29 +11,30 @@ patches/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_Groups2.patch \ patches/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_Logging.patch \ patches/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_timsieved_starttls-sendcaps.patch \ - patches/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_UID.patch + patches/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_UID.patch \ + kolab.patch .PHONY: all all: $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm -$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm $(KOLABCVSDIR)/kolab.patch $(PATCHES) Makefile +$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm $(PATCHES) Makefile $(RPM) -ihv $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm cp $(PATCHES) $(KOLABRPMSRC)/$(PACKAGE)/ - cd $(KOLABRPMSRC)/$(PACKAGE) && patch < $(KOLABCVSDIR)/kolab.patch && $(RPM) -ba $(PACKAGE).spec --define 'with_fsl yes' --define 'with_group yes' --define 'with_group_igncase yes' --define 'with_atvdom yes' --define 'with_drac no' --define 'with_replication no' --define 'with_murder no' --define 'with_listext no' --define 'with_nntp no' --define 'with_ldap yes' --define 'with_annotate yes' --define 'with_morelogging yes' --define 'with_kolab yes' --define 'with_kolab_nocaps yes' - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm $(KOLABCVSDIR) + cd $(KOLABRPMSRC)/$(PACKAGE) && patch < kolab.patch && $(RPM) -ba $(PACKAGE).spec --define 'with_fsl yes' --define 'with_group yes' --define 'with_group_igncase yes' --define 'with_atvdom yes' --define 'with_drac no' --define 'with_replication no' --define 'with_murder no' --define 'with_listext no' --define 'with_nntp no' --define 'with_ldap yes' --define 'with_annotate yes' --define 'with_morelogging yes' --define 'with_kolab yes' --define 'with_kolab_nocaps yes' + cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm . $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: wget -c $(KOLABPKGURI)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm .PHONY: dist dist: all - cp $(KOLABCVSDIR)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm ../stage/ + cp $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm ../stage/ .PHONY: clean clean: - rm -f $(KOLABCVSDIR)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm + rm -f $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm .PHONY: install install: $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm From cvs at kolab.org Thu Jul 9 17:32:36 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 17:32:36 +0200 (CEST) Subject: gunnar: server/perl-ldap Makefile,1.3,1.4 Message-ID: <20090709153236.8735A600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/perl-ldap In directory doto:/tmp/cvs-serv27014 Modified Files: Makefile Log Message: Simplify the makefile and allow direct installation of the package. Index: Makefile =================================================================== RCS file: /kolabrepository/server/perl-ldap/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile 18 Feb 2009 17:09:37 -0000 1.3 +++ Makefile 9 Jul 2009 15:32:34 -0000 1.4 @@ -1,22 +1,11 @@ +include ../Base.mk + NAME = perl-ldap PACKAGE = $(NAME) PKGVER = $(shell grep "%define[ ]*V_perl_" *.spec | sed -e "s/.*V_perl_[a-z]*\s*\([0-9.]*\).*/\1/") VERSION = $(shell grep "%define[ ]*V_perl " *.spec | sed -e "s/.*V_perl \s*\([0-9.]*\).*/\1/") RELEASE = $(shell grep "^Release:" *.spec | sed -e "s/^Release:\s*\([0-9a-z_]*\).*/\1/") -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - SOURCE_0=rsync://rsync.kolab.org/kolab/server/development-2.2/externals/$(NAME)-$(PKGVER).tar.gz EXTRA=cookie_parsing_error.patch sync_refresh_required.patch @@ -34,7 +23,7 @@ rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm rm -rf *~ -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec $(EXTRA) +$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec $(EXTRA) test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) rsync -tvz "$(SOURCE_0)" $(KOLABRPMSRC)/$(PACKAGE)/ @@ -42,3 +31,7 @@ cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . + +.PHONY: install +install: $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm + $(RPM) -Uhv --force $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm From cvs at kolab.org Thu Jul 9 17:33:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 17:33:41 +0200 (CEST) Subject: gunnar: server/perl-ldap .cvsignore,NONE,1.1 Message-ID: <20090709153341.A6297600827@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/perl-ldap In directory doto:/tmp/cvs-serv27054 Added Files: .cvsignore Log Message: Ignore src.rpm files. --- NEW FILE: .cvsignore --- *.src.rpm From cvs at kolab.org Thu Jul 9 17:40:25 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 17:40:25 +0200 (CEST) Subject: gunnar: server release-notes.txt,1.451,1.452 Message-ID: <20090709154025.464F6600816@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv27200 Modified Files: release-notes.txt Log Message: Update release notes. Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.451 retrieving revision 1.452 diff -u -d -r1.451 -r1.452 --- release-notes.txt 15 May 2009 09:42:27 -0000 1.451 +++ release-notes.txt 9 Jul 2009 15:40:23 -0000 1.452 @@ -67,6 +67,7 @@ clamav, postfix and imapd. kolab/issue1382 (resmgr accepts concurrent overlapping invitations) + kolab/issue1755 (syncrepl support (for OpenLDAP >=2.4.6)) kolab/issue2499 (Notification messages by the resource manager sould be localized) kolab/issue3490 (Please include dist_conf/kolabsrv.in in source From cvs at kolab.org Thu Jul 9 18:02:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 18:02:03 +0200 (CEST) Subject: gunnar: server/php Makefile,1.22,1.23 Message-ID: <20090709160203.67996600167@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/php In directory doto:/tmp/cvs-serv27936 Modified Files: Makefile Log Message: Simplify the Makefile Index: Makefile =================================================================== RCS file: /kolabrepository/server/php/Makefile,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- Makefile 25 Jun 2009 13:07:39 -0000 1.22 +++ Makefile 9 Jul 2009 16:02:01 -0000 1.23 @@ -1,22 +1,4 @@ -ifeq "x$(KOLABPKGURI)" "x" - KOLABPKGURI = http://files.kolab.org/server/development-2.2/openpkg-orig-srpms/ -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABCVSDIR)" "x" - KOLABCVSDIR = $(CURDIR) -endif -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif - -ifeq "x$(PLATTAG)" "x" - PLATTAG = $(shell $(RPM) -q --qf="%{ARCH}-%{OS}" openpkg)-$(HOME:/%=%) -endif +include ../Base.mk PACKAGE=php VERSION=5.2.8 @@ -24,17 +6,18 @@ KOLABRELEASE=20081209_kolab3 PATCHES=../php/patches/php-$(VERSION)/KOLAB_php-$(VERSION)_Annotations.patch \ - ../php/patches/php-$(VERSION)/KOLAB_php-$(VERSION)_myrights.patch + ../php/patches/php-$(VERSION)/KOLAB_php-$(VERSION)_myrights.patch \ + kolab.patch .PHONY: all all: $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm -$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm $(KOLABCVSDIR)/kolab.patch $(PATCHES) Makefile +$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm $(PATCHES) Makefile $(RPM) -ihv $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm cp $(PATCHES) $(KOLABRPMSRC)/$(PACKAGE)/ - cd $(KOLABRPMSRC)/$(PACKAGE) && patch < $(KOLABCVSDIR)/kolab.patch && $(RPM) -ba $(PACKAGE).spec \ + cd $(KOLABRPMSRC)/$(PACKAGE) && patch < kolab.patch && $(RPM) -ba $(PACKAGE).spec \ --define 'with_imap_annotate yes' --define 'with_imap_myrights yes' \ --define 'with_pear yes' --define 'with_spl yes' --define 'with_gettext yes' \ --define 'with_dom yes' --define 'with_mcrypt yes' --define 'with_iconv yes' \ @@ -45,18 +28,18 @@ --define 'with_sqlite yes' --define 'with_spl yes' --define 'with_hash yes' \ --define 'with_json yes' - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm $(KOLABCVSDIR) + cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm . $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: wget -c $(KOLABPKGURI)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm .PHONY: dist dist: all - cp $(KOLABCVSDIR)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm ../stage/ + cp $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm ../stage/ .PHONY: clean clean: - rm -f $(KOLABCVSDIR)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm + rm -f $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm .PHONY: install install: $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm From cvs at kolab.org Thu Jul 9 18:15:25 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 18:15:25 +0200 (CEST) Subject: gunnar: server/apache-php Makefile,1.12,1.13 Message-ID: <20090709161525.C513D600167@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/apache-php In directory doto:/tmp/cvs-serv28516 Modified Files: Makefile Log Message: Simplify the Makefile Index: Makefile =================================================================== RCS file: /kolabrepository/server/apache-php/Makefile,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- Makefile 25 Jun 2009 13:07:39 -0000 1.12 +++ Makefile 9 Jul 2009 16:15:23 -0000 1.13 @@ -1,22 +1,4 @@ -ifeq "x$(KOLABPKGURI)" "x" - KOLABPKGURI = http://files.kolab.org/server/development-2.2/openpkg-orig-srpms/ -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABCVSDIR)" "x" - KOLABCVSDIR = $(CURDIR) -endif -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif - -ifeq "x$(PLATTAG)" "x" - PLATTAG = $(shell $(RPM) -q --qf="%{ARCH}-%{OS}" openpkg)-$(HOME:/%=%) -endif +include ../Base.mk PACKAGE=apache-php VERSION=5.2.8 @@ -24,17 +6,18 @@ KOLABRELEASE=20081209_kolab3 PATCHES=../php/patches/php-$(VERSION)/KOLAB_php-$(VERSION)_Annotations.patch \ - ../php/patches/php-$(VERSION)/KOLAB_php-$(VERSION)_myrights.patch + ../php/patches/php-$(VERSION)/KOLAB_php-$(VERSION)_myrights.patch \ + kolab.patch .PHONY: all all: $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm -$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm $(KOLABCVSDIR)/kolab.patch $(PATCHES) Makefile +$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm kolab.patch $(PATCHES) Makefile $(RPM) -ihv $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm cp $(PATCHES) $(KOLABRPMSRC)/$(PACKAGE)/ - cd $(KOLABRPMSRC)/$(PACKAGE) && patch < $(KOLABCVSDIR)/kolab.patch && $(RPM) -ba $(PACKAGE).spec \ + cd $(KOLABRPMSRC)/$(PACKAGE) && patch < kolab.patch && $(RPM) -ba $(PACKAGE).spec \ --define 'with_imap_annotate yes' --define 'with_imap_myrights yes' \ --define 'with_pear yes' --define 'with_spl yes' --define 'with_gettext yes' \ --define 'with_dom yes' --define 'with_mcrypt yes' --define 'with_iconv yes' \ @@ -45,18 +28,18 @@ --define 'with_sqlite yes' --define 'with_spl yes' --define 'with_hash yes' \ --define 'with_json yes' - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm $(KOLABCVSDIR) + cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm . $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: wget -c $(KOLABPKGURI)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm .PHONY: dist dist: all - cp $(KOLABCVSDIR)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm ../stage/ + cp $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm ../stage/ .PHONY: clean clean: - rm -f $(KOLABCVSDIR)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm + rm -f $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm .PHONY: install install: $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).$(PLATTAG).rpm From cvs at kolab.org Thu Jul 9 21:39:10 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 21:39:10 +0200 (CEST) Subject: gunnar: server/pear pear.spec.template,1.2,1.3 Message-ID: <20090709193910.9DA4E600167@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear In directory doto:/tmp/cvs-serv629 Modified Files: pear.spec.template Log Message: Fix variable naming Index: pear.spec.template =================================================================== RCS file: /kolabrepository/server/pear/pear.spec.template,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- pear.spec.template 25 Jun 2009 19:16:00 -0000 1.2 +++ pear.spec.template 9 Jul 2009 19:39:08 -0000 1.3 @@ -1,7 +1,8 @@ # Variables -%define V_horde_pkgdir @horde_pkgdir@ -%define V_horde_package @horde_package@ +%define V_pear_pkgdir @pear_pkgdir@ +%define V_pear_package @pear_package@ %define V_package @package@ +%define V_package_url @package_url@ %define V_package_origin @package_origin@ %define V_repo_commit @repo_commit@ %define V_repo_release @repo_release@ @@ -16,7 +17,7 @@ # Package Information Name: %{V_package} Summary: %{V_summary} -URL: http://pear.horde.org/index.php?package=%{V_horde_package} +URL: {%V_package_url}%{V_pear_package} Packager: Gunnar Wrobel (p at rdus) Version: %{V_version} Release: %{V_release} @@ -25,7 +26,7 @@ Distribution: OpenPKG # List of Sources -Source: %{V_sourceurl}/%{V_horde_package}-%{V_version}.tgz +Source: %{V_sourceurl}/%{V_pear_package}-%{V_version}.tgz # List of patches Patch0: package.patch @@ -45,7 +46,7 @@ @description@ %prep - %setup -n %{V_horde_package}-%{V_version} + %setup -n %{V_pear_package}-%{V_version} if [ -n "`cat %{PATCH0}`" ]; then %patch -p0 -P 0 From cvs at kolab.org Thu Jul 9 21:39:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 21:39:39 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Auth_SASL .cvsignore, 1.1, 1.2 Makefile, 1.7, 1.8 PEAR-Auth_SASL.spec, 1.6, NONE Message-ID: <20090709193939.39D66600169@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Auth_SASL In directory doto:/tmp/cvs-serv679/PEAR-Auth_SASL Modified Files: .cvsignore Makefile Removed Files: PEAR-Auth_SASL.spec Log Message: Convert PEAR-Auth_SASL to the new package format. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Auth_SASL/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 27 Jul 2007 19:50:44 -0000 1.1 +++ .cvsignore 9 Jul 2009 19:39:37 -0000 1.2 @@ -1 +1,3 @@ *.src.rpm +*.tgz +package.patch Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Auth_SASL/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile 13 Sep 2007 13:28:13 -0000 1.7 +++ Makefile 9 Jul 2009 19:39:37 -0000 1.8 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-Auth_SASL.spec DELETED --- From cvs at kolab.org Thu Jul 9 21:40:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 21:40:12 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Auth_SASL package.info,NONE,1.1 Message-ID: <20090709194012.8389C600172@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Auth_SASL In directory doto:/tmp/cvs-serv707/PEAR-Auth_SASL Added Files: package.info Log Message: Convert PEAR-Auth_SASL to the new package format. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Auth_SASL' # The name of the RPM package package='PEAR-Auth_SASL' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.0.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='PEAR: Abstraction of various SASL mechanism responses' # Long package description description=' \ Provides code to generate responses to common SASL mechanisms, including: \ o Digest-MD5 \ o CramMD5 \ o Plain \ o Anonymous \ o Login (Pseudo mechanism) \ ' # Source code license license='BSD' From cvs at kolab.org Thu Jul 9 21:41:09 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 21:41:09 +0200 (CEST) Subject: gunnar: server/pear Pear.mk,1.6,1.7 Base.mk,1.2,NONE Message-ID: <20090709194109.58233600815@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear In directory doto:/tmp/cvs-serv743 Modified Files: Pear.mk Removed Files: Base.mk Log Message: Use the Base.mk from the root directory. Index: Pear.mk =================================================================== RCS file: /kolabrepository/server/pear/Pear.mk,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Pear.mk 9 Jul 2009 19:38:41 -0000 1.6 +++ Pear.mk 9 Jul 2009 19:41:07 -0000 1.7 @@ -1,4 +1,4 @@ -include ../Base.mk +include ../../Base.mk # Determine the staging area for collecting new source rpms ifeq "x$(STAGING)" "x" --- Base.mk DELETED --- From cvs at kolab.org Thu Jul 9 21:42:58 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 21:42:58 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Auth_SASL .cvsignore,1.2,1.3 Message-ID: <20090709194258.C130C600167@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Auth_SASL In directory doto:/tmp/cvs-serv802 Modified Files: .cvsignore Log Message: Ignore the spec file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Auth_SASL/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 9 Jul 2009 19:39:37 -0000 1.2 +++ .cvsignore 9 Jul 2009 19:42:56 -0000 1.3 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch From cvs at kolab.org Thu Jul 9 21:43:59 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 21:43:59 +0200 (CEST) Subject: gunnar: server/kolab-webclient webclient-kolab-conf.template, 1.2, 1.3 Message-ID: <20090709194359.C37EA600169@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolab-webclient In directory doto:/tmp/cvs-serv861 Modified Files: webclient-kolab-conf.template Log Message: Added information about an alternative preferences driver. Index: webclient-kolab-conf.template =================================================================== RCS file: /kolabrepository/server/kolab-webclient/webclient-kolab-conf.template,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- webclient-kolab-conf.template 7 Feb 2009 15:51:27 -0000 1.2 +++ webclient-kolab-conf.template 9 Jul 2009 19:43:57 -0000 1.3 @@ -18,4 +18,10 @@ $conf['kolab']['imap']['server'] = '@@@local_addr@@@'; @@@endif@@@ $conf['kolab']['imap']['maildomain'] = '@@@postfix-mydomain@@@'; -?> + +/* + * Kolab uses file based preferences by default. There is an alternative + * IMAP based driver that allows the users to keep their preferences in + * the IMAP storage. You can activate it here. + */ +//$conf['prefs']['driver'] = 'kolab_imap'; From cvs at kolab.org Thu Jul 9 21:45:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 9 Jul 2009 21:45:41 +0200 (CEST) Subject: gunnar: server/kolab-webclient kolab-webclient.spec,1.33,1.34 Message-ID: <20090709194541.3DDB8600172@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolab-webclient In directory doto:/tmp/cvs-serv921 Modified Files: kolab-webclient.spec Log Message: Fix configuration file definition, remove further library parts Index: kolab-webclient.spec =================================================================== RCS file: /kolabrepository/server/kolab-webclient/kolab-webclient.spec,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- kolab-webclient.spec 11 May 2009 19:12:03 -0000 1.33 +++ kolab-webclient.spec 9 Jul 2009 19:45:38 -0000 1.34 @@ -147,15 +147,33 @@ rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/OS/Guess.php rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/PEAR + # Use Horde_Argv-0.1.0dev20090501 from /kolab/lib/php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Argv* + + # Use Horde_Browser-0.0.2dev20090501 from /kolab/lib/php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Browser* + + # Use Horde_Cache-0.1.0dev20090501 from /kolab/lib/php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Cache* + + # Use Horde_Framework-0.1.0dev20090502 from /kolab/lib/php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde.php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Config.php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Help.php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Menu.php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Registry.php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Release.php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Text.php + + # Use Horde_NLS-0.0.2dev20090501 from /kolab/lib/php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/NLS* + # Use Horde_Util-0.1.0dev20090501 from /kolab/lib/php rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Array.php rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/String.php rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Util.php rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Variables.php - # Use Horde_NLS-0.0.2dev20090501 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/NLS* - # Kolab_Format is in sync rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Format* @@ -197,63 +215,53 @@ $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/passwd/config %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-kolab-conf.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-kronolith-kolab-conf.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-config_hooks.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-config_mime_drivers.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-config_motd.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-config_nls.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-config_prefs.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-config_registry.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-dimp_conf.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-dimp_hooks.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-dimp_menu.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-dimp_portal.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-dimp_prefs.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-dimp_servers.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-imp_conf.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-imp_header.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-imp_hooks.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-imp_menu.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-imp_mime_drivers.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-imp_motd.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-imp_prefs.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-imp_servers.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-imp_spelling.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-ingo_backends.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-ingo_conf.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-ingo_fields.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-ingo_hooks.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-ingo_prefs.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-kronolith_keywords.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-kronolith_menu.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-kronolith_prefs.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-mimp_conf.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-mimp_menu.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-mimp_mime_drivers.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-mimp_prefs.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-mnemo_conf.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-mnemo_prefs.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-nag_conf.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-nag_menu.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-nag_prefs.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-turba_attributes.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-turba_conf.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-turba_hooks.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-turba_menu.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-turba_mime_drivers.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-turba_prefs.php.template' \ - '%config(noreplace) %{l_prefix}/etc/kolab/templates/webclient-turba_sources.php.template' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/config/*.php' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/dimp/config/*.php' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/imp/config/*.php' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/ingo/config/*.php' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/kronolith/config/*.php' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/mimp/config/*.php' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/mnemo/config/*.php' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/nag/config/*.php' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/passwd/config/*.php' \ - '%config(noreplace) %{l_prefix}/var/kolab/www/client/turba/config/*.php' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-kolab-conf.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-kronolith-kolab-conf.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-config_hooks.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-config_mime_drivers.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-config_motd.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-config_nls.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-config_prefs.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-config_registry.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-dimp_conf.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-dimp_hooks.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-dimp_menu.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-dimp_portal.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-dimp_prefs.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-dimp_servers.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-imp_conf.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-imp_header.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-imp_hooks.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-imp_menu.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-imp_mime_drivers.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-imp_motd.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-imp_prefs.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-imp_servers.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-imp_spelling.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-ingo_backends.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-ingo_conf.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-ingo_fields.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-ingo_hooks.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-ingo_prefs.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-kronolith_keywords.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-kronolith_menu.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-kronolith_prefs.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-mimp_conf.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-mimp_menu.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-mimp_mime_drivers.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-mimp_prefs.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-mnemo_conf.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-mnemo_prefs.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-nag_conf.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-nag_menu.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-nag_prefs.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-turba_attributes.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-turba_conf.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-turba_hooks.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-turba_menu.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-turba_mime_drivers.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-turba_prefs.php.template' \ + '%config %{l_prefix}/etc/kolab/templates/webclient-turba_sources.php.template' \ %dir '%defattr(-,%{l_nusr},%{l_ngrp})' %{l_prefix}/var/kolab/www/client/log \ %dir '%defattr(-,%{l_nusr},%{l_ngrp})' %{l_prefix}/var/kolab/www/client/tmp \ %dir '%defattr(-,%{l_nusr},%{l_ngrp})' %{l_prefix}/var/kolab/www/client/storage \ From cvs at kolab.org Fri Jul 10 06:18:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 06:18:22 +0200 (CEST) Subject: gunnar: server/kolab-webclient kolab-webclient.spec,1.34,1.35 Message-ID: <20090710041822.30C2F600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolab-webclient In directory doto:/tmp/cvs-serv4489 Modified Files: kolab-webclient.spec Log Message: Add PEAR-Auth_SASL dependency. Index: kolab-webclient.spec =================================================================== RCS file: /kolabrepository/server/kolab-webclient/kolab-webclient.spec,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- kolab-webclient.spec 9 Jul 2009 19:45:38 -0000 1.34 +++ kolab-webclient.spec 10 Jul 2009 04:18:18 -0000 1.35 @@ -88,6 +88,7 @@ PreReq: Kolab_Format >= 1.0.1 PreReq: Kolab_Server >= 0.5.0 PreReq: Kolab_Storage >= 0.4.0 +PreReq: PEAR-Auth_SASL >= 1.0.2 Obsoletes: horde-kolab, horde-kronolith-kolab, horde-imp-kolab, horde-ingo-kolab, horde-kolab-client, horde-dimp-kolab, horde-mimp-kolab, horde-mnemo-kolab, horde-nag-kolab, horde-passwd-kolab, horde-turba-kolab, PEAR-Net_Sieve @@ -187,6 +188,9 @@ rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Deprecated.php rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Storage* rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Test/Storage.php + + # Use PEAR-Auth_SASL-1.0.2 from /kolab/lib/php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/Auth* sqlite $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/storage/horde.db < scripts/sql/groupware.sql From cvs at kolab.org Fri Jul 10 06:19:34 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 06:19:34 +0200 (CEST) Subject: gunnar: server Makefile,1.80,1.81 Message-ID: <20090710041934.21727600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv4539 Modified Files: Makefile Log Message: The openldap target can be installed too Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.80 retrieving revision 1.81 diff -u -d -r1.80 -r1.81 --- Makefile 25 Jun 2009 14:20:49 -0000 1.80 +++ Makefile 10 Jul 2009 04:19:32 -0000 1.81 @@ -79,6 +79,7 @@ # These are the packages that already provide a "make install" # procedure that will allow to update packages from CVS. UPDATES=imapd \ + openldap \ apache-php \ php \ kolabd \ From cvs at kolab.org Fri Jul 10 06:59:53 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 06:59:53 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 Makefile, 1.7, 1.8 PEAR-Date.spec, 1.6, NONE Message-ID: <20090710045953.4F4C8600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date In directory doto:/tmp/cvs-serv5580/PEAR-Date Modified Files: .cvsignore Makefile Added Files: package.info Removed Files: PEAR-Date.spec Log Message: Convert PEAR-Date to the new PEAR packaging style. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date' # The name of the RPM package package='PEAR-Date' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.4.7' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='PEAR: Generic date/time handling class for PEAR' # Long package description description=' \ Generic classes for representation and manipulation of \ dates, times and time zones without the need of timestamps, \ which is a huge limitation for php programs. Includes time zone data, \ time zone conversions and many date/time conversions. \ It does not rely on 32-bit system date stamps, so \ you can display calendars and compare dates that date \ pre 1970 and post 2038. This package also provides a class \ to convert date strings between Gregorian and Human calendar formats. \ ' # Source code license license='BSD' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 27 Jul 2007 19:50:44 -0000 1.1 +++ .cvsignore 10 Jul 2009 04:59:50 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile 13 Sep 2007 13:28:13 -0000 1.7 +++ Makefile 10 Jul 2009 04:59:50 -0000 1.8 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-Date.spec DELETED --- From cvs at kolab.org Fri Jul 10 07:09:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 07:09:02 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Util - New directory Message-ID: <20090710050902.5A65D600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Util In directory doto:/tmp/cvs-serv5954/PEAR-XML_Util Log Message: Directory /kolabrepository/server/pear/PEAR-XML_Util added to the repository From cvs at kolab.org Fri Jul 10 07:09:37 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 07:09:37 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Util .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710050937.9C39C600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Util In directory doto:/tmp/cvs-serv5999 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-XML_Util to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='XML_Util' # The name of the RPM package package='PEAR-XML_Util' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.2.1' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='XML utility class' # Long package description description=' \ Selection of methods that are often needed when working with XML \ documents. Functionality includes creating of attribute lists from \ arrays, creation of tags, validation of XML names and more. \ ' # Source code license license='BSD' From cvs at kolab.org Fri Jul 10 07:21:30 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 07:21:30 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Parser - New directory Message-ID: <20090710052130.307F2600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Parser In directory doto:/tmp/cvs-serv6204/PEAR-XML_Parser Log Message: Directory /kolabrepository/server/pear/PEAR-XML_Parser added to the repository From cvs at kolab.org Fri Jul 10 07:22:21 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 07:22:21 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Parser ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710052221.E9C4B600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Parser In directory doto:/tmp/cvs-serv6262/PEAR-XML_Parser Added Files: ChangeLog Makefile package.info Log Message: Added PEAR-XML_Parser to CVS. --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='XML_Parser' # The name of the RPM package package='PEAR-XML_Parser' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.3.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='XML parsing class based on PHPs bundled expat' # Long package description description=' \ This is an XML parser based on PHPs built-in xml extension. It \ supports two basic modes of operation: func and event. In func \ mode, it will look for a function named after each element, and \ in event mode it uses a set of generic callbacks. \ \ Since version 1.2.0 theres a new XML_Parser_Simple class that makes \ parsing of most XML documents easier, by automatically providing a \ stack for the elements. Furthermore its now possible to split the \ parser from the handler object, so you do not have to extend \ XML_Parser anymore in order to parse a document with it. \ ' # Source code license license='BSD' From cvs at kolab.org Fri Jul 10 07:25:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 07:25:13 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Serializer - New directory Message-ID: <20090710052513.4DCD7600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Serializer In directory doto:/tmp/cvs-serv6383/PEAR-XML_Serializer Log Message: Directory /kolabrepository/server/pear/PEAR-XML_Serializer added to the repository From cvs at kolab.org Fri Jul 10 07:25:58 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 07:25:58 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Parser .cvsignore,NONE,1.1 Message-ID: <20090710052558.624ED600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Parser In directory doto:/tmp/cvs-serv6438/PEAR-XML_Parser Added Files: .cvsignore Log Message: Added PEAR-XML_Serializer to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch From cvs at kolab.org Fri Jul 10 07:25:58 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 07:25:58 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Serializer .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710052558.6646C600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Serializer In directory doto:/tmp/cvs-serv6438/PEAR-XML_Serializer Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-XML_Serializer to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='XML_Serializer' # The name of the RPM package package='PEAR-XML_Serializer' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.20.0' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='Swiss-army knife for reading and writing XML files. Creates XML files from data structures and vice versa.' # Long package description description=' \ XML_Serializer serializes complex data structures like arrays or \ object as XML documents. This class helps you generating any XML \ document you require without the need for DOM. Furthermore this \ package can be used as a replacement to serialize() and unserialize() \ as it comes with a matching XML_Unserializer that is able to create \ PHP data structures (like arrays and objects) from XML documents, if \ type hints are available. If you use the XML_Unserializer on standard \ XML files, it will try to guess how it has to be unserialized. In most \ cases it does exactly what you expect it to do. Try reading a RSS \ file with XML_Unserializer and you have the whole RSS file in a \ structured array or even a collection of objects, similar to XML_RSS. \ \ Since version 0.8.0 the package is able to treat XML documents similar \ to the simplexml extension of PHP 5. \ ' # Source code license license='BSD' From cvs at kolab.org Fri Jul 10 08:46:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 08:46:02 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays - New directory Message-ID: <20090710064602.2007D600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays In directory doto:/tmp/cvs-serv8730/PEAR-Date_Holidays Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays added to the repository From cvs at kolab.org Fri Jul 10 09:01:10 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:01:10 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays/patches - New directory Message-ID: <20090710070110.C3422600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays/patches In directory doto:/tmp/cvs-serv9153/patches Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays/patches added to the repository From cvs at kolab.org Fri Jul 10 09:01:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:01:17 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays/patches/PEAR-Date_Holidays-0.21.2 - New directory Message-ID: <20090710070117.13B6C600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays/patches/PEAR-Date_Holidays-0.21.2 In directory doto:/tmp/cvs-serv9164/patches/PEAR-Date_Holidays-0.21.2 Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays/patches/PEAR-Date_Holidays-0.21.2 added to the repository From cvs at kolab.org Fri Jul 10 09:01:38 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:01:38 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays/patches/PEAR-Date_Holidays-0.21.2 PEAR-Date_Holidays-script_parser_path.patch, NONE, 1.1 Message-ID: <20090710070138.72424600824@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays/patches/PEAR-Date_Holidays-0.21.2 In directory doto:/tmp/cvs-serv9201/patches/PEAR-Date_Holidays-0.21.2 Added Files: PEAR-Date_Holidays-script_parser_path.patch Log Message: Added PEAR-Date_Holidays to CVS. --- NEW FILE: PEAR-Date_Holidays-script_parser_path.patch --- diff -Naur pear-dh-compile-translationfile pear-dh-compile-translationfile --- pear-dh-compile-translationfile 2009-03-24 01:18:21.000000000 +0100 +++ pear-dh-compile-translationfile 2009-07-10 08:07:51.000000000 +0200 @@ -1,4 +1,4 @@ -#!/usr/bin/php +#!@php_bin@ \ Kein Zeilenumbruch am Dateiende. +?> diff -Naur package.xml package.xml --- package.xml 2009-03-24 01:18:21.000000000 +0100 +++ package.xml 2009-07-10 08:07:18.000000000 +0200 @@ -87,8 +87,12 @@ - - + + + + + + From cvs at kolab.org Fri Jul 10 09:01:38 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:01:38 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710070138.6E6B6600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays In directory doto:/tmp/cvs-serv9201 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays' # The name of the RPM package package='PEAR-Date_Holidays' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.21.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-XML_Serializer \ PreReq: PEAR-Date \ ' # Package summary description summary='Driver based class to calculate holidays.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. The calculation is driver-based so it is \ easy to add new drivers that calculate a countrys holidays. The \ methods of the class can be used to get a holidays date and title in \ various languages. \ ' # Source code license license='BSD' From cvs at kolab.org Fri Jul 10 09:18:42 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:18:42 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays/patches/PEAR-Date_Holidays-0.21.2 PEAR-Date_Holidays-script_parser_path.patch, 1.1, 1.2 Message-ID: <20090710071842.1B4A1600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays/patches/PEAR-Date_Holidays-0.21.2 In directory doto:/tmp/cvs-serv10362/patches/PEAR-Date_Holidays-0.21.2 Modified Files: PEAR-Date_Holidays-script_parser_path.patch Log Message: Add reference to PEAR bug report. Index: PEAR-Date_Holidays-script_parser_path.patch =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays/patches/PEAR-Date_Holidays-0.21.2/PEAR-Date_Holidays-script_parser_path.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- PEAR-Date_Holidays-script_parser_path.patch 10 Jul 2009 07:01:36 -0000 1.1 +++ PEAR-Date_Holidays-script_parser_path.patch 10 Jul 2009 07:18:39 -0000 1.2 @@ -1,3 +1,9 @@ +Date_Holidays offers two scripts that hardcode the path to PHP. + +Corresponding PEAR bug: + +https://pear.php.net/bugs/bug.php?id=16423 + diff -Naur pear-dh-compile-translationfile pear-dh-compile-translationfile --- pear-dh-compile-translationfile 2009-03-24 01:18:21.000000000 +0100 +++ pear-dh-compile-translationfile 2009-07-10 08:07:51.000000000 +0200 From cvs at kolab.org Fri Jul 10 09:41:25 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:41:25 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Germany - New directory Message-ID: <20090710074125.46830600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Germany In directory doto:/tmp/cvs-serv11880/PEAR-Date_Holidays_Germany Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Germany added to the repository From cvs at kolab.org Fri Jul 10 09:42:21 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:42:21 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays package.info,1.1,1.2 Message-ID: <20090710074221.87576600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays In directory doto:/tmp/cvs-serv11960/PEAR-Date_Holidays Modified Files: package.info Log Message: Added PEAR-Date_Holidays_Germany to CVS. Fixed PEAR-Date_Holidays license. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 10 Jul 2009 07:01:36 -0000 1.1 +++ package.info 10 Jul 2009 07:42:19 -0000 1.2 @@ -51,4 +51,4 @@ ' # Source code license -license='BSD' +license='PHP' From cvs at kolab.org Fri Jul 10 09:42:21 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:42:21 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Germany .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710074221.8E5B0600824@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Germany In directory doto:/tmp/cvs-serv11960/PEAR-Date_Holidays_Germany Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Germany to CVS. Fixed PEAR-Date_Holidays license. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Germany' # The name of the RPM package package='PEAR-Date_Holidays_Germany' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Germany.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Germany. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 09:42:21 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:42:21 +0200 (CEST) Subject: gunnar: server/pear pear.spec.template,1.3,1.4 Message-ID: <20090710074221.87D6F600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear In directory doto:/tmp/cvs-serv11960 Modified Files: pear.spec.template Log Message: Added PEAR-Date_Holidays_Germany to CVS. Fixed PEAR-Date_Holidays license. Index: pear.spec.template =================================================================== RCS file: /kolabrepository/server/pear/pear.spec.template,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- pear.spec.template 9 Jul 2009 19:39:08 -0000 1.3 +++ pear.spec.template 10 Jul 2009 07:42:19 -0000 1.4 @@ -48,11 +48,11 @@ %prep %setup -n %{V_pear_package}-%{V_version} + cat ../package.xml | sed -e 's/md5sum="[^"]*"//' > package.xml + if [ -n "`cat %{PATCH0}`" ]; then %patch -p0 -P 0 fi - - cat ../package.xml | sed -e 's/md5sum="[^"]*"//' > package.xml %build From cvs at kolab.org Fri Jul 10 09:42:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 09:42:22 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Serializer package.info,1.1,1.2 Message-ID: <20090710074222.4163B600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Serializer In directory doto:/tmp/cvs-serv11960/PEAR-XML_Serializer Modified Files: package.info Log Message: Added PEAR-Date_Holidays_Germany to CVS. Fixed PEAR-Date_Holidays license. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/PEAR-XML_Serializer/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 10 Jul 2009 05:25:56 -0000 1.1 +++ package.info 10 Jul 2009 07:42:19 -0000 1.2 @@ -34,6 +34,8 @@ prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ +PreReq: PEAR-XML_Util >= 1.1.1 \ +PreReq: PEAR-XML_Parser >= 1.2.6 \ ' # Package summary description From cvs at kolab.org Fri Jul 10 10:06:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:06:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Austria - New directory Message-ID: <20090710080614.BCA2A600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Austria In directory doto:/tmp/cvs-serv13347/PEAR-Date_Holidays_Austria Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Austria added to the repository From cvs at kolab.org Fri Jul 10 10:06:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:06:22 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Austria .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080622.A473D600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Austria In directory doto:/tmp/cvs-serv13371/PEAR-Date_Holidays_Austria Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Austria to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Austria' # The name of the RPM package package='PEAR-Date_Holidays_Austria' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.3' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Austria.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Austria. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:06:32 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:06:32 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Brazil - New directory Message-ID: <20090710080632.6D780600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Brazil In directory doto:/tmp/cvs-serv13396/PEAR-Date_Holidays_Brazil Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Brazil added to the repository From cvs at kolab.org Fri Jul 10 10:06:43 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:06:43 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Brazil .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080643.61D77600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Brazil In directory doto:/tmp/cvs-serv13417/PEAR-Date_Holidays_Brazil Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Brazil to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Brazil' # The name of the RPM package package='PEAR-Date_Holidays_Brazil' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Brazil.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Brazil. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:06:54 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:06:54 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Denmark - New directory Message-ID: <20090710080654.30BB6600824@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Denmark In directory doto:/tmp/cvs-serv13431/PEAR-Date_Holidays_Denmark Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Denmark added to the repository From cvs at kolab.org Fri Jul 10 10:07:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:07:04 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Denmark .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080704.10933600825@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Denmark In directory doto:/tmp/cvs-serv13451/PEAR-Date_Holidays_Denmark Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Denmark to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Denmark' # The name of the RPM package package='PEAR-Date_Holidays_Denmark' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.3' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Denmark.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Denmark. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:07:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:07:13 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Discordian - New directory Message-ID: <20090710080713.9EDF8600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Discordian In directory doto:/tmp/cvs-serv13461/PEAR-Date_Holidays_Discordian Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Discordian added to the repository From cvs at kolab.org Fri Jul 10 10:07:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:07:22 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Discordian .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080722.0790E600827@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Discordian In directory doto:/tmp/cvs-serv13476/PEAR-Date_Holidays_Discordian Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Discordian to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Discordian' # The name of the RPM package package='PEAR-Date_Holidays_Discordian' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.1' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Discordian.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Discordian. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:07:32 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:07:32 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_EnglandWales - New directory Message-ID: <20090710080732.2583260082A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_EnglandWales In directory doto:/tmp/cvs-serv13492/PEAR-Date_Holidays_EnglandWales Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_EnglandWales added to the repository From cvs at kolab.org Fri Jul 10 10:07:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:07:41 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_EnglandWales .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080741.2E6A660082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_EnglandWales In directory doto:/tmp/cvs-serv13512/PEAR-Date_Holidays_EnglandWales Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_EnglandWales to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_EnglandWales' # The name of the RPM package package='PEAR-Date_Holidays_EnglandWales' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in EnglandWales.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in EnglandWales. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:07:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:07:51 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Iceland - New directory Message-ID: <20090710080751.1581B60082C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Iceland In directory doto:/tmp/cvs-serv13527/PEAR-Date_Holidays_Iceland Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Iceland added to the repository From cvs at kolab.org Fri Jul 10 10:07:59 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:07:59 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Iceland .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080759.E6B9E60082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Iceland In directory doto:/tmp/cvs-serv13543/PEAR-Date_Holidays_Iceland Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Iceland to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Iceland' # The name of the RPM package package='PEAR-Date_Holidays_Iceland' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Iceland.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Iceland. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:08:09 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:08:09 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Ireland - New directory Message-ID: <20090710080809.D003060082F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Ireland In directory doto:/tmp/cvs-serv13567/PEAR-Date_Holidays_Ireland Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Ireland added to the repository From cvs at kolab.org Fri Jul 10 10:08:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:08:17 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Ireland .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080817.AA013600830@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Ireland In directory doto:/tmp/cvs-serv13583/PEAR-Date_Holidays_Ireland Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Ireland to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Ireland' # The name of the RPM package package='PEAR-Date_Holidays_Ireland' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Ireland.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Ireland. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:08:28 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:08:28 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Italy - New directory Message-ID: <20090710080828.13628600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Italy In directory doto:/tmp/cvs-serv13595/PEAR-Date_Holidays_Italy Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Italy added to the repository From cvs at kolab.org Fri Jul 10 10:08:37 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:08:37 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Italy .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080837.38806600832@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Italy In directory doto:/tmp/cvs-serv13613/PEAR-Date_Holidays_Italy Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Italy to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Italy' # The name of the RPM package package='PEAR-Date_Holidays_Italy' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.1' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Italy.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Italy. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:08:47 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:08:47 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Japan - New directory Message-ID: <20090710080847.42F22600833@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Japan In directory doto:/tmp/cvs-serv13626/PEAR-Date_Holidays_Japan Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Japan added to the repository From cvs at kolab.org Fri Jul 10 10:08:55 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:08:55 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Japan .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080855.82832600834@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Japan In directory doto:/tmp/cvs-serv13644/PEAR-Date_Holidays_Japan Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Japan to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Japan' # The name of the RPM package package='PEAR-Date_Holidays_Japan' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.1' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Japan.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Japan. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:09:05 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:09:05 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Netherlands - New directory Message-ID: <20090710080905.4E764600835@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Netherlands In directory doto:/tmp/cvs-serv13657/PEAR-Date_Holidays_Netherlands Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Netherlands added to the repository From cvs at kolab.org Fri Jul 10 10:09:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:09:13 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Netherlands .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080913.825C9600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Netherlands In directory doto:/tmp/cvs-serv13678/PEAR-Date_Holidays_Netherlands Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Netherlands to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Netherlands' # The name of the RPM package package='PEAR-Date_Holidays_Netherlands' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Netherlands.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Netherlands. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:09:23 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:09:23 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Norway - New directory Message-ID: <20090710080923.447F4600837@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Norway In directory doto:/tmp/cvs-serv13689/PEAR-Date_Holidays_Norway Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Norway added to the repository From cvs at kolab.org Fri Jul 10 10:09:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:09:31 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Norway .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080931.8608C600838@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Norway In directory doto:/tmp/cvs-serv13707/PEAR-Date_Holidays_Norway Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Norway to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Norway' # The name of the RPM package package='PEAR-Date_Holidays_Norway' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Norway.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Norway. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:09:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:09:41 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Romania - New directory Message-ID: <20090710080941.3BA31600812@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Romania In directory doto:/tmp/cvs-serv13719/PEAR-Date_Holidays_Romania Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Romania added to the repository From cvs at kolab.org Fri Jul 10 10:09:48 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:09:48 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Romania .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710080948.D46C2600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Romania In directory doto:/tmp/cvs-serv13734/PEAR-Date_Holidays_Romania Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Romania to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Romania' # The name of the RPM package package='PEAR-Date_Holidays_Romania' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Romania.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Romania. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:09:58 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:09:58 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Slovenia - New directory Message-ID: <20090710080958.3C510600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Slovenia In directory doto:/tmp/cvs-serv13744/PEAR-Date_Holidays_Slovenia Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Slovenia added to the repository From cvs at kolab.org Fri Jul 10 10:10:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:10:06 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Slovenia .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710081006.0F376600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Slovenia In directory doto:/tmp/cvs-serv13761/PEAR-Date_Holidays_Slovenia Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Slovenia to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Slovenia' # The name of the RPM package package='PEAR-Date_Holidays_Slovenia' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Slovenia.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Slovenia. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:10:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:10:16 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Sweden - New directory Message-ID: <20090710081016.7F777600824@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Sweden In directory doto:/tmp/cvs-serv13784/PEAR-Date_Holidays_Sweden Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Sweden added to the repository From cvs at kolab.org Fri Jul 10 10:10:24 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:10:24 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Sweden .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710081024.7E99A600839@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Sweden In directory doto:/tmp/cvs-serv13798/PEAR-Date_Holidays_Sweden Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Sweden to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Sweden' # The name of the RPM package package='PEAR-Date_Holidays_Sweden' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Sweden.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Sweden. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:10:34 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:10:34 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Ukraine - New directory Message-ID: <20090710081034.45A9260083A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Ukraine In directory doto:/tmp/cvs-serv13811/PEAR-Date_Holidays_Ukraine Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_Ukraine added to the repository From cvs at kolab.org Fri Jul 10 10:10:42 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:10:42 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Ukraine .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710081042.7575260083B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Ukraine In directory doto:/tmp/cvs-serv13828/PEAR-Date_Holidays_Ukraine Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_Ukraine to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_Ukraine' # The name of the RPM package package='PEAR-Date_Holidays_Ukraine' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in Ukraine.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in Ukraine. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:10:52 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:10:52 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_UNO - New directory Message-ID: <20090710081052.476F560083C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_UNO In directory doto:/tmp/cvs-serv13856/PEAR-Date_Holidays_UNO Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_UNO added to the repository From cvs at kolab.org Fri Jul 10 10:11:00 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:11:00 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_UNO .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710081100.7949360083D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_UNO In directory doto:/tmp/cvs-serv13883/PEAR-Date_Holidays_UNO Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_UNO to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_UNO' # The name of the RPM package package='PEAR-Date_Holidays_UNO' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.3' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in UNO.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in UNO. \ ' # Source code license license='PHP' From cvs at kolab.org Fri Jul 10 10:11:10 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:11:10 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_USA - New directory Message-ID: <20090710081110.4A25E60083E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_USA In directory doto:/tmp/cvs-serv13898/PEAR-Date_Holidays_USA Log Message: Directory /kolabrepository/server/pear/PEAR-Date_Holidays_USA added to the repository From cvs at kolab.org Fri Jul 10 10:11:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 10 Jul 2009 10:11:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_USA .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090710081118.95A5560083F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_USA In directory doto:/tmp/cvs-serv13925/PEAR-Date_Holidays_USA Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Date_Holidays_USA to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-10 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Date_Holidays_USA' # The name of the RPM package package='PEAR-Date_Holidays_USA' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.1.1' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Date_Holidays >= 0.21.1 \ ' # Package summary description summary='Driver based class to calculate holidays in USA.' # Long package description description=' \ Date_Holidays helps you calculate the dates and titles of holidays and \ other special celebrations. This is the driver for calculating \ holidays in USA. \ ' # Source code license license='PHP' From cvs at kolab.org Sat Jul 11 17:12:25 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 17:12:25 +0200 (CEST) Subject: gunnar: server/kolab-webclient/patches/1.2.0/KOLAB t_kronolith_H_JS_FixHolidayDriver.diff, NONE, 1.1 series, 1.6, 1.7 Message-ID: <20090711151225.3CB8B600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolab-webclient/patches/1.2.0/KOLAB In directory doto:/tmp/cvs-serv29249/kolab-webclient/patches/1.2.0/KOLAB Modified Files: series Added Files: t_kronolith_H_JS_FixHolidayDriver.diff Log Message: kolab/issue1623 ([horde/horde-kronolith] Add support for Date_Holidays) kolab/issue3509 (calender not displaying in horde if german holidays are selected) --- NEW FILE: t_kronolith_H_JS_FixHolidayDriver.diff --- From: Gunnar Wrobel

Subject: [PATCH] t/kronolith/H/JS/FixHolidayDriver An upstream fix for the newer PEAR-Date_Holidays library. STATUS: MERGED http://cvs.horde.org/diff.php/kronolith/lib/Driver/holidays.php?sa=1&r1=1.6.2.6&r2=1.6.2.7 http://cvs.horde.org/diff.php/kronolith/lib/Driver/holidays.php?sa=1&r1=1.6.2.7&r2=1.6.2.8 Signed-off-by: Gunnar Wrobel

--- horde-webmail/kronolith/lib/Driver/holidays.php | 88 ++++++++++++----------- 1 files changed, 47 insertions(+), 41 deletions(-) diff --git a/horde-webmail/kronolith/lib/Driver/holidays.php b/horde-webmail/kronolith/lib/Driver/holidays.php index 0afc975..8b24531 100644 --- a/horde-webmail/kronolith/lib/Driver/holidays.php +++ b/horde-webmail/kronolith/lib/Driver/holidays.php @@ -32,14 +32,9 @@ class Kronolith_Driver_holidays extends Kronolith_Driver { */ function listEvents($startDate = null, $endDate = null, $hasAlarm = false) { - $events = array(); + global $language; - $composite = Date_Holidays::factory('Composite'); - if (Date_Holidays::isError($composite)) { - Horde::logMessage('Failed to create composite driver for Date_Holidays', - __FILE__, __LINE__, PEAR_LOG_ERR); - return $events; - } + $events = array(); if (is_null($startDate)) { $startDate = new Horde_Date($_SERVER['REQUEST_TIME']); @@ -49,49 +44,45 @@ class Kronolith_Driver_holidays extends Kronolith_Driver { $endDate = new Horde_Date($_SERVER['REQUEST_TIME']); } + Date_Holidays::staticSetProperty('DIE_ON_MISSING_LOCALE', false); foreach (unserialize($GLOBALS['prefs']->getValue('holiday_drivers')) as $driver) { for ($year = $startDate->year; $year <= $endDate->year; $year++) { - $dh = Date_Holidays::factory($driver, $year, $GLOBALS['language']); - if (!Date_Holidays::isError($dh)) { - if (file_exists($this->_getTranslationFileLocation($driver))) { - $dh->addCompiledTranslationFile($this->_getTranslationFileLocation($driver), $GLOBALS['language']); - $events = array_merge($events, $this->_getEvents($dh, $startDate, $endDate, 'UTF-8')); - } elseif (file_exists($this->_getTranslationFileLocation($driver, false))) { - $dh->addTranslationFile($this->_getTranslationFileLocation($driver, false), $GLOBALS['language']); - $events = array_merge($events, $this->_getEvents($dh, $startDate, $endDate, 'ISO-8859-1')); - } else { - Horde::logMessage(sprintf('Failed to load translation file for driver %s with locale %s', $driver, $GLOBALS['language']), __FILE__, __LINE__, PEAR_LOG_DEBUG); - $events = array_merge($events, $this->_getEvents($dh, $startDate, $endDate, 'ISO-8859-1')); - } - - } else { + $dh = Date_Holidays::factory($driver, $year, $language); + if (Date_Holidays::isError($dh)) { Horde::logMessage(sprintf('Factory was unable to produce driver object for driver %s in year %s with locale %s', - $driver, $year, $GLOBALS['language']), __FILE__, __LINE__, PEAR_LOG_ERR); + $driver, $year, $language), + __FILE__, __LINE__, PEAR_LOG_ERR); + continue; } + $dh->addTranslation($language); + $events = array_merge($events, $this->_getEvents($dh, $startDate, $endDate)); } } return $events; } - function _getEvents($dh, $startDate, $endDate, $charset) + function _getEvents($dh, $startDate, $endDate) { $events = array(); for ($date = new Horde_Date($startDate); $date->compareDate($endDate) <= 0; $date->mday++, $date->correct()) { - $holidays = $dh->getHolidayForDate($date->timestamp(), $GLOBALS['language'], true); - if (!Date_Holidays::isError($holidays)) { - if (!is_null($holidays)) { - foreach($holidays as $holiday) { - $event = &new Kronolith_Event_holidays($this); - $event->fromDriver($holiday, $charset); - $events[] = $event; - } - } - } else { + $holidays = $dh->getHolidayForDate((int)$date->timestamp(), null, true); + if (Date_Holidays::isError($holidays)) { Horde::logMessage(sprintf('Unable to retrieve list of holidays from %s to %s', $startDate->cTime(), $endDate->cTime()), __FILE__, __LINE__); + continue; + } + + if (is_null($holidays)) { + continue; + } + + foreach ($holidays as $holiday) { + $event = &new Kronolith_Event_holidays($this); + $event->fromDriver($holiday); + $events[] = $event; } } return $events; @@ -162,14 +153,29 @@ class Kronolith_Driver_holidays extends Kronolith_Driver { return PEAR::raiseError('Not supported'); } - function _getTranslationFileLocation($driver, $compiled = true) + function _getTranslationFile($driver) { - $location = PEAR_INSTALL_DIR . '/data/Date_Holidays/lang/' . $driver . '/' . $GLOBALS['language']; - if ($compiled) { - return $location . '.ser'; - } else { - return $location . '.xml'; + static $data_dir; + if (!isset($data_dir)) { + include_once 'PEAR/Config.php'; + $pear_config = new PEAR_Config(); + $data_dir = $pear_config->get('data_dir'); + } + if (empty($data_dir)) { + return; } + + foreach (array('', '_' . $driver) as $pkg_ext) { + foreach (array('ser', 'xml') as $format) { + $location = $data_dir . '/Date_Holidays' . $pkg_ext . '/lang/' + . $driver . '/' . $GLOBALS['language'] . '.' . $format; + if (file_exists($location)) { + return array($format, $location); + } + } + } + + return array(null, null); } } @@ -189,11 +195,11 @@ class Kronolith_Event_holidays extends Kronolith_Event { * @param Date_Holidays_Holiday $dhEvent A holiday returned * from the driver */ - function fromDriver($dhEvent, $charset) + function fromDriver($dhEvent) { $this->stored = true; $this->initialized = true; - $this->setTitle(String::convertCharset($dhEvent->getTitle(), $charset)); + $this->setTitle(String::convertCharset($dhEvent->getTitle(), 'UTF-8')); $this->setId($dhEvent->getInternalName()); $this->start = new Horde_Date($dhEvent->_date->getTime()); -- tg: (2fba6de..) t/kronolith/H/JS/FixHolidayDriver (depends on: t/turba/HK/GW/AllowAttributeDefaults) -- TOPGIT patch commit log ======================= commit a668753cb406dce2d8a47a65dcf1ce592401c6db Author: Gunnar Wrobel

Date: Sat Jul 11 16:30:30 2009 +0200 Merge holidays fix from upstream. commit 4f2f3d7263d35055981e6ec6d1fb3cc76ee5fe52 Author: Gunnar Wrobel

Date: Sat Jul 11 16:30:00 2009 +0200 Patch description Index: series =================================================================== RCS file: /kolabrepository/server/kolab-webclient/patches/1.2.0/KOLAB/series,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- series 26 Apr 2009 11:39:05 -0000 1.6 +++ series 11 Jul 2009 15:12:22 -0000 1.7 @@ -83,3 +83,4 @@ t_Kolab__Server_HK_GW_MappableAttributes__.diff t_Kolab__Storage_HK_GW_TestingFixes.diff t_turba_HK_GW_AllowAttributeDefaults.diff +t_kronolith_H_JS_FixHolidayDriver.diff From cvs at kolab.org Sat Jul 11 17:12:25 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 17:12:25 +0200 (CEST) Subject: gunnar: server/kolab-webclient ChangeLog, 1.17, 1.18 kolab-webclient.spec, 1.35, 1.36 Message-ID: <20090711151225.3CBDE600824@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolab-webclient In directory doto:/tmp/cvs-serv29249/kolab-webclient Modified Files: ChangeLog kolab-webclient.spec Log Message: kolab/issue1623 ([horde/horde-kronolith] Add support for Date_Holidays) kolab/issue3509 (calender not displaying in horde if german holidays are selected) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/kolab-webclient/ChangeLog,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- ChangeLog 11 May 2009 19:12:03 -0000 1.17 +++ ChangeLog 11 Jul 2009 15:12:22 -0000 1.18 @@ -1,3 +1,10 @@ +2009-07-11 Gunnar Wrobel

+ + * kolab-webclient.spec: + + kolab/issue1623 ([horde/horde-kronolith] Add support for Date_Holidays) + kolab/issue3509 (calender not displaying in horde if german holidays are selected) + 2009-05-11 Gunnar Wrobel

* kolab-webclient.spec: Index: kolab-webclient.spec =================================================================== RCS file: /kolabrepository/server/kolab-webclient/kolab-webclient.spec,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- kolab-webclient.spec 10 Jul 2009 04:18:18 -0000 1.35 +++ kolab-webclient.spec 11 Jul 2009 15:12:22 -0000 1.36 @@ -88,8 +88,31 @@ PreReq: Kolab_Format >= 1.0.1 PreReq: Kolab_Server >= 0.5.0 PreReq: Kolab_Storage >= 0.4.0 + +# Needed by imp PreReq: PEAR-Auth_SASL >= 1.0.2 +# Needed by kronolith +PreReq: PEAR-Date_Holidays_Austria >= 0.1.3 +PreReq: PEAR-Date_Holidays_Brazil >= 0.1.2 +PreReq: PEAR-Date_Holidays_Denmark >= 0.1.3 +PreReq: PEAR-Date_Holidays_Discordian >= 0.1.1 +PreReq: PEAR-Date_Holidays_EnglandWales >= 0.1.2 +PreReq: PEAR-Date_Holidays_Germany >= 0.1.2 +PreReq: PEAR-Date_Holidays_Iceland >= 0.1.2 +PreReq: PEAR-Date_Holidays_Ireland >= 0.1.2 +PreReq: PEAR-Date_Holidays_Italy >= 0.1.1 +PreReq: PEAR-Date_Holidays_Japan >= 0.1.1 +PreReq: PEAR-Date_Holidays_Netherlands >= 0.1.2 +PreReq: PEAR-Date_Holidays_Norway >= 0.1.2 +PreReq: PEAR-Date_Holidays_Romania >= 0.1.2 +PreReq: PEAR-Date_Holidays_Slovenia >= 0.1.2 +PreReq: PEAR-Date_Holidays_Sweden >= 0.1.2 +PreReq: PEAR-Date_Holidays_Ukraine >= 0.1.2 +PreReq: PEAR-Date_Holidays_UNO >= 0.1.3 +PreReq: PEAR-Date_Holidays_USA >= 0.1.1 + + Obsoletes: horde-kolab, horde-kronolith-kolab, horde-imp-kolab, horde-ingo-kolab, horde-kolab-client, horde-dimp-kolab, horde-mimp-kolab, horde-mnemo-kolab, horde-nag-kolab, horde-passwd-kolab, horde-turba-kolab, PEAR-Net_Sieve AutoReq: no @@ -192,6 +215,11 @@ # Use PEAR-Auth_SASL-1.0.2 from /kolab/lib/php rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/Auth* + # Use PEAR-Date* from /kolab/lib/php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/Date* + + # Use PEAR-XML_* from /kolab/lib/php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/XML* sqlite $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/storage/horde.db < scripts/sql/groupware.sql From cvs at kolab.org Sat Jul 11 17:12:25 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 17:12:25 +0200 (CEST) Subject: gunnar: server release-notes.txt,1.452,1.453 Message-ID: <20090711151225.3CB02600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv29249 Modified Files: release-notes.txt Log Message: kolab/issue1623 ([horde/horde-kronolith] Add support for Date_Holidays) kolab/issue3509 (calender not displaying in horde if german holidays are selected) Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.452 retrieving revision 1.453 diff -u -d -r1.452 -r1.453 --- release-notes.txt 9 Jul 2009 15:40:23 -0000 1.452 +++ release-notes.txt 11 Jul 2009 15:12:22 -0000 1.453 @@ -83,8 +83,17 @@ - kolab-webclient-1.2.0-2009???? + kolab/issue1623 ([horde/horde-kronolith] Add support for Date_Holidays) kolab/issue3293 (Big code duplication and code version messup: Horde libs in 2.2.1) + kolab/issue3509 (calender not displaying in horde if german holidays + are selected) + + - PEAR-Date_Holidays-0.21.2-1 + + kolab/issue1623 ([horde/horde-kronolith] Add support for Date_Holidays) + kolab/issue3509 (calender not displaying in horde if german holidays + are selected) - perl-kolab-2.?.?-2009???? From cvs at kolab.org Sat Jul 11 18:52:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 18:52:22 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_URL package.info, NONE, 1.1 ChangeLog, 1.2, 1.3 Makefile, 1.2, 1.3 PEAR-Net_URL.spec, 1.2, NONE Message-ID: <20090711165222.AA29E600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_URL In directory doto:/tmp/cvs-serv31998 Modified Files: ChangeLog Makefile Added Files: package.info Removed Files: PEAR-Net_URL.spec Log Message: Convert to new packaging style. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Net_URL' # The name of the RPM package package='PEAR-Net_URL' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.0.15' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='Easy parsing of Urls' # Long package description description=' \ Provides easy parsing of URLs and their constituent parts. \ ' # Source code license license='BSD' Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_URL/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 10 Sep 2008 09:39:56 -0000 1.2 +++ ChangeLog 11 Jul 2009 16:52:20 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-11 Gunnar Wrobel

+ + * package.info: Switch to new packaging style. + 2008-09-10 Gunnar Wrobel

* PEAR-Net_URL.spec (License): Fixed license. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_URL/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 13 Sep 2007 13:28:13 -0000 1.2 +++ Makefile 11 Jul 2009 16:52:20 -0000 1.3 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([A-Za-z0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-Net_URL.spec DELETED --- From cvs at kolab.org Sat Jul 11 18:52:53 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 18:52:53 +0200 (CEST) Subject: gunnar: server/pear Pear.mk,1.7,1.8 Message-ID: <20090711165253.D92CB600824@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear In directory doto:/tmp/cvs-serv32051 Modified Files: Pear.mk Log Message: Remove the auto-generated spec file, too. Index: Pear.mk =================================================================== RCS file: /kolabrepository/server/pear/Pear.mk,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Pear.mk 9 Jul 2009 19:41:07 -0000 1.7 +++ Pear.mk 11 Jul 2009 16:52:51 -0000 1.8 @@ -280,5 +280,6 @@ rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm rm -rf $(SOURCE_0) rm -rf *~ + rm -rf $(PACKAGE).spec rm -rf package.patch From cvs at kolab.org Sat Jul 11 19:01:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 19:01:50 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_Socket package.info, NONE, 1.1 ChangeLog, 1.2, 1.3 Makefile, 1.7, 1.8 PEAR-Net_Socket.spec, 1.6, NONE Message-ID: <20090711170150.6839B600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_Socket In directory doto:/tmp/cvs-serv32330 Modified Files: ChangeLog Makefile Added Files: package.info Removed Files: PEAR-Net_Socket.spec Log Message: Convert to new packaging style. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Net_Socket' # The name of the RPM package package='PEAR-Net_Socket' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.0.9' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='PEAR: Network Socket Interface' # Long package description description=' \ Net_Socket is a class interface to TCP sockets. It provides blocking \ and non-blocking operation, with different reading and writing modes \ (byte-wise, block-wise, line-wise and special formats like network \ byte-order ip addresses). \ ' # Source code license license='PHP' Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_Socket/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 8 Nov 2008 11:23:35 -0000 1.2 +++ ChangeLog 11 Jul 2009 17:01:34 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-11 Gunnar Wrobel

+ + * package.info: Convert to new packaging style. + 2008-11-08 Gunnar Wrobel

* PEAR-Net_Socket.spec: Update to 1.0.9. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_Socket/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile 13 Sep 2007 13:28:13 -0000 1.7 +++ Makefile 11 Jul 2009 17:01:34 -0000 1.8 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-Net_Socket.spec DELETED --- From cvs at kolab.org Sat Jul 11 19:06:46 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 19:06:46 +0200 (CEST) Subject: gunnar: server/pear/PEAR-HTTP_Request package.info, NONE, 1.1 ChangeLog, 1.3, 1.4 Makefile, 1.2, 1.3 PEAR-HTTP_Request.spec, 1.3, NONE Message-ID: <20090711170646.DC461600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-HTTP_Request In directory doto:/tmp/cvs-serv32743 Modified Files: ChangeLog Makefile Added Files: package.info Removed Files: PEAR-HTTP_Request.spec Log Message: Convert to new packaging style. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='HTTP_Request' # The name of the RPM package package='PEAR-HTTP_Request' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.4.4' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Net_URL >= 1.0.12 \ PreReq: PEAR-Net_Socket >= 1.0.7 \ ' # Package summary description summary='Provides an easy way to perform HTTP requests' # Long package description description=' \ Supports GET/POST/HEAD/TRACE/PUT/DELETE, Basic authentication, Proxy, \ Proxy Authentication, SSL, file uploads etc. \ ' # Source code license license='BSD' Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/PEAR-HTTP_Request/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ChangeLog 8 Nov 2008 11:23:35 -0000 1.3 +++ ChangeLog 11 Jul 2009 17:06:43 -0000 1.4 @@ -1,3 +1,7 @@ +2009-07-11 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. + 2008-11-08 Gunnar Wrobel

* PEAR-HTTP_Request.spec: Update to 1.4.3 Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-HTTP_Request/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 13 Sep 2007 13:28:13 -0000 1.2 +++ Makefile 11 Jul 2009 17:06:43 -0000 1.3 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([A-Za-z0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-HTTP_Request.spec DELETED --- From cvs at kolab.org Sat Jul 11 19:11:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 19:11:39 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_DIME - New directory Message-ID: <20090711171139.3A48260082C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_DIME In directory doto:/tmp/cvs-serv528/PEAR-Net_DIME Log Message: Directory /kolabrepository/server/pear/PEAR-Net_DIME added to the repository From cvs at kolab.org Sat Jul 11 19:12:48 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 19:12:48 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_DIME .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090711171248.B995460082F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_DIME In directory doto:/tmp/cvs-serv660 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Net_DIME to CVS. --- NEW FILE: .cvsignore --- *.src.rpm --- NEW FILE: ChangeLog --- 2009-07-11 Gunnar Wrobel

* package.info: Added package to CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Net_DIME' # The name of the RPM package package='PEAR-Net_DIME' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.0.1' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='The Net_DIME package implements DIME encoding and decoding' # Long package description description=' \ The Net_DIME package provides an implementation of DIME as defined at \ http://xml.coverpages.org/draft-nielsen-dime-02.txt \ ' # Source code license license='BSD' From cvs at kolab.org Sat Jul 11 20:18:57 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 20:18:57 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_SMTP package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.2, 1.3 Makefile, 1.2, 1.3 PEAR-Net_SMTP.spec, 1.3, NONE Message-ID: <20090711181857.F1281600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_SMTP In directory doto:/tmp/cvs-serv2590 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: PEAR-Net_SMTP.spec Log Message: Converted to new packaging style. Update to 1.3.2. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Net_SMTP' # The name of the RPM package package='PEAR-Net_SMTP' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.3.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Net_Socket >= 1.0.7 \ PreReq: PEAR-Auth_SASL \ ' # Package summary description summary='An implementation of the SMTP protocol' # Long package description description=' \ Provides an implementation of the SMTP protocol using PEARs Net_Socket \ class. \ ' # Source code license license='PHP' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_SMTP/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 23 Aug 2007 12:11:50 -0000 1.1 +++ .cvsignore 11 Jul 2009 18:18:55 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_SMTP/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 8 Nov 2008 11:23:35 -0000 1.2 +++ ChangeLog 11 Jul 2009 18:18:55 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-11 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. Update to 1.3.2. + 2008-11-08 Gunnar Wrobel

* PEAR-Net_SMTP.spec: Update to 1.3.1. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_SMTP/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 13 Sep 2007 13:28:13 -0000 1.2 +++ Makefile 11 Jul 2009 18:18:55 -0000 1.3 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([A-Za-z0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-Net_SMTP.spec DELETED --- From cvs at kolab.org Sat Jul 11 20:23:09 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 20:23:09 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.2, 1.3 Makefile, 1.7, 1.8 PEAR-Mail.spec, 1.6, NONE Message-ID: <20090711182309.B2E9F600833@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail In directory doto:/tmp/cvs-serv2795 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: PEAR-Mail.spec Log Message: Converted to new packaging style. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Mail' # The name of the RPM package package='PEAR-Mail' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.1.14' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='PEAR: Class that provides multiple interfaces for sending emails' # Long package description description=' \ PEARs Mail package defines an interface for implementing mailers under the \ PEAR hierarchy. It also provides supporting functions useful to multiple \ mailer backends. Currently supported backends include: PHPs native \ mail() function, sendmail, and SMTP. This package also provides a RFC822 \ email address list validation utility class. \ ' # Source code license license='PHP/BSD' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 27 Jul 2007 19:50:44 -0000 1.1 +++ .cvsignore 11 Jul 2009 18:23:07 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 10 Sep 2008 09:39:55 -0000 1.2 +++ ChangeLog 11 Jul 2009 18:23:07 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-11 Gunnar Wrobel

+ + * package.info: Convert to new packaging style. + 2008-09-10 Gunnar Wrobel

* PEAR-Mail.spec (License): Fixed license. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile 13 Sep 2007 13:28:13 -0000 1.7 +++ Makefile 11 Jul 2009 18:23:07 -0000 1.8 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-Mail.spec DELETED --- From cvs at kolab.org Sat Jul 11 20:58:24 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 20:58:24 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail-mimeDecode package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 PEAR-Mail_mimeDecode.spec, 1.3, NONE Message-ID: <20090711185824.56372600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail-mimeDecode In directory doto:/tmp/cvs-serv3447 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: PEAR-Mail_mimeDecode.spec Log Message: Converted to newer packaging style. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Mail_mimeDecode' # The name of the RPM package package='PEAR-Mail_mimeDecode' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.5.0' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ \ Provides: PEAR-Mail_Mime = 1.3.1 \ Obsoletes: PEAR-Mail_Mime <= 1.3.1 \ ' # Package summary description summary='Provides a class to decode mime messages.' # Long package description description=' \ Provides a class to deal with the decoding and interpreting of mime \ messages. This package used to be part of the Mail_Mime package, but \ has been split off. \ ' # Source code license license='BSD' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail-mimeDecode/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:31:20 -0000 1.1 +++ .cvsignore 11 Jul 2009 18:58:22 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail-mimeDecode/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 11 Sep 2008 16:31:20 -0000 1.1 +++ ChangeLog 11 Jul 2009 18:58:22 -0000 1.2 @@ -1,3 +1,7 @@ +2009-07-11 Gunnar Wrobel

+ + * package.info: Converted to newer packaging style. + 2008-09-11 Gunnar Wrobel

* PEAR-Mail_Mime.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail-mimeDecode/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 11 Sep 2008 16:31:20 -0000 1.1 +++ Makefile 11 Jul 2009 18:58:22 -0000 1.2 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-Mail_mimeDecode.spec DELETED --- From cvs at kolab.org Sat Jul 11 21:14:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 21:14:04 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail_Mime .cvsignore, 1.2, 1.3 ChangeLog, 1.3, 1.4 Makefile, 1.8, 1.9 package.info, NONE, 1.1 Message-ID: <20090711191404.92CB1600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail_Mime In directory doto:/tmp/cvs-serv3935 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Mail_Mime to CVS. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Mail_Mime' # The name of the RPM package package='PEAR-Mail_Mime' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.5.2' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Mail_mimeDecode \ ' # Package summary description summary='Mail_Mime provides classes to create mime messages.' # Long package description description=' \ Mail_Mime provides classes to deal with the creation and manipulation of mime messages. \ It allows people to create Email messages consisting of: \ * Text Parts \ * HTML Parts \ * Inline HTML Images \ * Attachments \ * Attached messages \ \ Starting with version 1.4.0, it also allows non US-ASCII chars in filenames, subjects, recipients, etc, etc. \ ' # Source code license license='BSD' From cvs at kolab.org Sat Jul 11 21:16:34 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 11 Jul 2009 21:16:34 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail-mimeDecode package.info,1.1,1.2 Message-ID: <20090711191634.C2563600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail-mimeDecode In directory doto:/tmp/cvs-serv4038/PEAR-Mail-mimeDecode Modified Files: package.info Log Message: Allow to install PEAR-Mail_Mime. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail-mimeDecode/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 11 Jul 2009 18:58:22 -0000 1.1 +++ package.info 11 Jul 2009 19:16:32 -0000 1.2 @@ -34,9 +34,6 @@ prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ - \ -Provides: PEAR-Mail_Mime = 1.3.1 \ -Obsoletes: PEAR-Mail_Mime <= 1.3.1 \ ' # Package summary description From cvs at kolab.org Sun Jul 12 06:32:54 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 06:32:54 +0200 (CEST) Subject: gunnar: server/pear/PEAR-SOAP - New directory Message-ID: <20090712043254.9078A600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-SOAP In directory doto:/tmp/cvs-serv30477/PEAR-SOAP Log Message: Directory /kolabrepository/server/pear/PEAR-SOAP added to the repository From cvs at kolab.org Sun Jul 12 06:33:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 06:33:22 +0200 (CEST) Subject: gunnar: server/pear/PEAR-SOAP .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090712043322.23573600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-SOAP In directory doto:/tmp/cvs-serv30569 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-SOAP to CVS --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-11 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='SOAP' # The name of the RPM package package='PEAR-SOAP' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='0.12.0' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-HTTP_Request \ PreReq: PEAR-Mail \ PreReq: PEAR-Mail_Mime \ PreReq: PEAR-Net_DIME \ ' # Package summary description summary='SOAP Client/Server for PHP' # Long package description description=' \ Implementation of SOAP protocol and services \ ' # Source code license license='PHP' From cvs at kolab.org Sun Jul 12 06:39:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 06:39:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-DB - New directory Message-ID: <20090712043914.74DFE600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-DB In directory doto:/tmp/cvs-serv30765/PEAR-DB Log Message: Directory /kolabrepository/server/pear/PEAR-DB added to the repository From cvs at kolab.org Sun Jul 12 06:39:35 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 06:39:35 +0200 (CEST) Subject: gunnar: server/pear/PEAR-DB .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090712043935.0EBCF600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-DB In directory doto:/tmp/cvs-serv30811 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-DB to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-12 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='DB' # The name of the RPM package package='PEAR-DB' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.7.13' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='Database Abstraction Layer' # Long package description description=' \ DB is a database abstraction layer providing: \ * an OO-style query API \ * portability features that make programs written for one DBMS work with other DBMSs \ * a DSN (data source name) format for specifying database servers \ * prepare/execute (bind) emulation for databases that dont support it natively \ * a result object for each query response \ * portable error codes \ * sequence emulation \ * sequential and non-sequential row fetching as well as bulk fetching \ * formats fetched rows as associative arrays, ordered arrays or objects \ * row limit support \ * transactions support \ * table information interface \ * DocBook and phpDocumentor API documentation \ \ DB layers itself on top of PHPs existing \ database extensions. \ \ Drivers for the following extensions pass \ the complete test suite and provide \ interchangeability when all of DBs \ portability options are enabled: \ \ fbsql, ibase, informix, msql, mssql, \ mysql, mysqli, oci8, odbc, pgsql, \ sqlite and sybase. \ \ There is also a driver for the dbase \ extension, but it cant be used \ interchangeably because dbase doesnt \ support many standard DBMS features. \ \ DB is compatible with both PHP 4 and PHP 5. \ ' # Source code license license='PHP' From cvs at kolab.org Sun Jul 12 06:42:30 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 06:42:30 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Cache - New directory Message-ID: <20090712044230.6C907600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Cache In directory doto:/tmp/cvs-serv30850/PEAR-Cache Log Message: Directory /kolabrepository/server/pear/PEAR-Cache added to the repository From cvs at kolab.org Sun Jul 12 06:42:55 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 06:42:55 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Cache .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090712044255.B8684600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Cache In directory doto:/tmp/cvs-serv30904 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Cache to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-12 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Cache' # The name of the RPM package package='PEAR-Cache' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.5.5' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-HTTP_Request \ ' # Package summary description summary='Framework for caching of arbitrary data.' # Long package description description=' \ With the PEAR Cache you can cache the result of certain function \ calls, as well as the output of a whole script run or share data \ between applications. \ ' # Source code license license='PHP' From cvs at kolab.org Sun Jul 12 06:52:27 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 06:52:27 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Service_Weather - New directory Message-ID: <20090712045227.D8A4F600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Service_Weather In directory doto:/tmp/cvs-serv31733/PEAR-Service_Weather Log Message: Directory /kolabrepository/server/pear/PEAR-Service_Weather added to the repository From cvs at kolab.org Sun Jul 12 06:53:05 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 06:53:05 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Service_Weather .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090712045305.45478600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Service_Weather In directory doto:/tmp/cvs-serv31783 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Servic_Weather to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-12 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Services_Weather' # The name of the RPM package package='PEAR-Services_Weather' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.4.4' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-HTTP_Request >= 1.2.0 \ PreReq: PEAR-Cache >= 1.5.3 \ PreReq: PEAR-DB >= 1.4.0 \ PreReq: PEAR-SOAP >= 0.7.5 \ PreReq: PEAR-XML_Serializer >= 0.8.0 \ ' # Package summary description summary='This class acts as an interface to various online weather-services.' # Long package description description=' \ Services_Weather searches for given locations and retrieves current \ weather data and, dependent on the used service, also forecasts. Up to \ now, GlobalWeather from CapeScience, Weather XML from EJSE (US only), \ a XOAP service from Weather.com and METAR/TAF from NOAA are supported. \ Further services will get included, if they become available, have a \ usable API and are properly documented. \ ' # Source code license license='BSD' From cvs at kolab.org Sun Jul 12 07:24:23 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:24:23 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Console_Table - New directory Message-ID: <20090712052423.11032600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Console_Table In directory doto:/tmp/cvs-serv32594/PEAR-Console_Table Log Message: Directory /kolabrepository/server/pear/PEAR-Console_Table added to the repository From cvs at kolab.org Sun Jul 12 07:27:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:27:17 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Console_Table .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090712052717.48721600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Console_Table In directory doto:/tmp/cvs-serv32678 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Console_Table to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-12 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Console_Table' # The name of the RPM package package='PEAR-Console_Table' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.1.3' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='Class that makes it easy to build console style tables' # Long package description description=' \ Provides methods such as addRow(), insertRow(), addCol() etc. to build \ console tables with or without headers and with user defined table \ rules and padding. \ ' # Source code license license='BSD' From cvs at kolab.org Sun Jul 12 07:33:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:33:29 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Console_Table package.info,1.1,1.2 Message-ID: <20090712053329.60DFA600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Console_Table In directory doto:/tmp/cvs-serv503 Modified Files: package.info Log Message: Added PEAR-File to CVS. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Console_Table/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 12 Jul 2009 05:27:15 -0000 1.1 +++ package.info 12 Jul 2009 05:33:27 -0000 1.2 @@ -1,8 +1,8 @@ # The name of PEAR source package -pear_package='Console_Table' +pear_package='File' # The name of the RPM package -package='PEAR-Console_Table' +package='PEAR-File' # Where to find information about the package package_url='http://pear.php.net/package/' @@ -13,7 +13,7 @@ package_origin='WGET' # Version number -version='1.1.3' +version='1.3.0' # Package release number release='1' @@ -37,14 +37,13 @@ ' # Package summary description -summary='Class that makes it easy to build console style tables' +summary='Common file and directory routines' # Long package description description=' \ -Provides methods such as addRow(), insertRow(), addCol() etc. to build \ -console tables with or without headers and with user defined table \ -rules and padding. \ +Provides easy access to read/write to files along with \ +some common routines to deal with paths. \ ' # Source code license -license='BSD' +license='PHP' From cvs at kolab.org Sun Jul 12 07:34:48 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:34:48 +0200 (CEST) Subject: gunnar: server/pear/PEAR-File - New directory Message-ID: <20090712053448.6901D600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-File In directory doto:/tmp/cvs-serv578/PEAR-File Log Message: Directory /kolabrepository/server/pear/PEAR-File added to the repository From cvs at kolab.org Sun Jul 12 07:35:07 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:35:07 +0200 (CEST) Subject: gunnar: server/pear/PEAR-File .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090712053507.CA8D0600824@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-File In directory doto:/tmp/cvs-serv617 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-File to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-12 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='File' # The name of the RPM package package='PEAR-File' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.3.0' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='Common file and directory routines' # Long package description description=' \ Provides easy access to read/write to files along with \ some common routines to deal with paths. \ ' # Source code license license='PHP' From cvs at kolab.org Sun Jul 12 07:35:45 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:35:45 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Console_Table package.info,1.2,1.3 Message-ID: <20090712053545.175FC600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Console_Table In directory doto:/tmp/cvs-serv695 Modified Files: package.info Log Message: Revert incorrect commit. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Console_Table/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 12 Jul 2009 05:33:27 -0000 1.2 +++ package.info 12 Jul 2009 05:35:43 -0000 1.3 @@ -1,8 +1,8 @@ # The name of PEAR source package -pear_package='File' +pear_package='Console_Table' # The name of the RPM package -package='PEAR-File' +package='PEAR-Console_Table' # Where to find information about the package package_url='http://pear.php.net/package/' @@ -13,7 +13,7 @@ package_origin='WGET' # Version number -version='1.3.0' +version='1.1.3' # Package release number release='1' @@ -37,13 +37,14 @@ ' # Package summary description -summary='Common file and directory routines' +summary='Class that makes it easy to build console style tables' # Long package description description=' \ -Provides easy access to read/write to files along with \ -some common routines to deal with paths. \ +Provides methods such as addRow(), insertRow(), addCol() etc. to build \ +console tables with or without headers and with user defined table \ +rules and padding. \ ' # Source code license -license='PHP' +license='BSD' From cvs at kolab.org Sun Jul 12 07:43:59 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:43:59 +0200 (CEST) Subject: gunnar: server/pear/PEAR-File_Find - New directory Message-ID: <20090712054359.00EE7600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-File_Find In directory doto:/tmp/cvs-serv1474/PEAR-File_Find Log Message: Directory /kolabrepository/server/pear/PEAR-File_Find added to the repository From cvs at kolab.org Sun Jul 12 07:45:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:45:16 +0200 (CEST) Subject: gunnar: server/pear/PEAR-File_Find .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090712054516.1DCCB600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-File_Find In directory doto:/tmp/cvs-serv1634 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-File_Find to cvs. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-12 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='File_Find' # The name of the RPM package package='PEAR-File_Find' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.3.0' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='A Class the facilitates the search of filesystems' # Long package description description=' \ File_Find, created as a replacement for its Perl counterpart, also named \ File_Find, is a directory searcher, which handles, globbing, recursive \ directory searching, as well as a slew of other cool features. \ ' # Source code license license='PHP' From cvs at kolab.org Sun Jul 12 07:49:42 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:49:42 +0200 (CEST) Subject: gunnar: server/pear/PEAR-HTTP_WebDAV_Server - New directory Message-ID: <20090712054942.E2B01600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-HTTP_WebDAV_Server In directory doto:/tmp/cvs-serv2068/PEAR-HTTP_WebDAV_Server Log Message: Directory /kolabrepository/server/pear/PEAR-HTTP_WebDAV_Server added to the repository From cvs at kolab.org Sun Jul 12 07:50:23 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:50:23 +0200 (CEST) Subject: gunnar: server/pear Pear.mk,1.8,1.9 Message-ID: <20090712055023.2EC4F600824@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear In directory doto:/tmp/cvs-serv2185 Modified Files: Pear.mk Log Message: Added PEAR-HTTP_WebDAV_Server to CVS. Index: Pear.mk =================================================================== RCS file: /kolabrepository/server/pear/Pear.mk,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Pear.mk 11 Jul 2009 16:52:51 -0000 1.8 +++ Pear.mk 12 Jul 2009 05:50:21 -0000 1.9 @@ -32,7 +32,7 @@ PACKAGE = $(shell grep "^package=" package.info | sed -e "s/package='\([A-Za-z0-9\_-]*\)'.*/\1/") # Determine the package version from the package.info file -VERSION = $(shell grep "^version=" package.info | sed -e "s/version='\([0-9.a-z]*\)'.*/\1/") +VERSION = $(shell grep "^version=" package.info | sed -e "s/version='\([0-9.a-zA-Z]*\)'.*/\1/") # Determine the file end of the source package FILEEND = $(shell grep "^pkg_fileend=" package.info | sed -e "s/pkg_fileend='*\([0-9.a-z]*\)'.*/\1/") From cvs at kolab.org Sun Jul 12 07:50:23 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:50:23 +0200 (CEST) Subject: gunnar: server/pear/PEAR-HTTP_WebDAV_Server .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090712055023.2C0D2600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-HTTP_WebDAV_Server In directory doto:/tmp/cvs-serv2185/PEAR-HTTP_WebDAV_Server Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-HTTP_WebDAV_Server to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-12 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='HTTP_WebDAV_Server' # The name of the RPM package package='PEAR-HTTP_WebDAV_Server' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.0.0RC4' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='WebDAV Server Baseclass.' # Long package description description=' \ RFC2518 compliant helper class for WebDAV server implementation. \ ' # Source code license license='PHP' From cvs at kolab.org Sun Jul 12 07:55:28 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:55:28 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LDAP - New directory Message-ID: <20090712055528.AE0CF600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LDAP In directory doto:/tmp/cvs-serv2677/PEAR-Net_LDAP Log Message: Directory /kolabrepository/server/pear/PEAR-Net_LDAP added to the repository From cvs at kolab.org Sun Jul 12 07:55:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 07:55:51 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LDAP .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090712055551.E5DB4600823@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LDAP In directory doto:/tmp/cvs-serv2744 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Net_LDAP to cvs, --- NEW FILE: .cvsignore --- *.src.rpm --- NEW FILE: ChangeLog --- 2009-07-12 Gunnar Wrobel

* package.info: Added package to CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Net_LDAP' # The name of the RPM package package='PEAR-Net_LDAP' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.1.3' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='Object oriented interface for searching and manipulating LDAP-entries' # Long package description description=' \ Net_LDAP is a clone of Perls Net::LDAP object interface to \ directory servers. It does contain most of Net::LDAPs features \ but has some own too. \ With Net_LDAP you have: \ * A simple object-oriented interface to connections, searches entries and filters. \ * Support for tls and ldap v3. \ * Simple modification, deletion and creation of ldap entries. \ * Support for schema handling. \ \ Net_LDAP layers itself on top of PHPs existing ldap extensions. \ ' # Source code license license='LGPL' From cvs at kolab.org Sun Jul 12 08:23:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 08:23:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LDAP2 package.info, NONE, 1.1 ChangeLog, 1.2, 1.3 Makefile, 1.2, 1.3 PEAR-Net_LDAP2.spec, 1.2, NONE Message-ID: <20090712062318.9148A600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LDAP2 In directory doto:/tmp/cvs-serv5090 Modified Files: ChangeLog Makefile Added Files: package.info Removed Files: PEAR-Net_LDAP2.spec Log Message: Converted to new packaging style. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Net_LDAP2' # The name of the RPM package package='PEAR-Net_LDAP2' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='2.0.4' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='Object oriented interface for searching and manipulating LDAP-entries' # Long package description description=' \ Net_LDAP2 is the successor of Net_LDAP which is a clone of Perls Net::LDAP \ object interface to directory servers. It does contain most of Net::LDAPs \ features but has some own too. \ With Net_LDAP2 you have: \ * A simple object-oriented interface to connections, searches entries and filters. \ * Support for tls and ldap v3. \ * Simple modification, deletion and creation of ldap entries. \ * Support for schema handling. \ \ Net_LDAP2 layers itself on top of PHPs existing ldap extensions. \ ' # Source code license license='LGPL' Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LDAP2/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 25 Apr 2009 23:01:05 -0000 1.2 +++ ChangeLog 12 Jul 2009 06:23:16 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-12 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. + 2009-04-23 Gunnar Wrobel

* PEAR-Net_LDAP2.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LDAP2/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 25 Apr 2009 23:01:06 -0000 1.2 +++ Makefile 12 Jul 2009 06:23:16 -0000 1.3 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z0-9\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([A-Za-z0-9RC.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-Net_LDAP2.spec DELETED --- From cvs at kolab.org Sun Jul 12 08:28:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 08:28:16 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_Sieve .cvsignore, 1.2, 1.3 ChangeLog, 1.4, 1.5 Makefile, 1.8, 1.9 package.info, NONE, 1.1 Message-ID: <20090712062816.83DBD600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_Sieve In directory doto:/tmp/cvs-serv5537 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added PEAR-Net_Sieve. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Net_Sieve' # The name of the RPM package package='PEAR-Net_Sieve' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.1.6' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Net_Socket >= 1.0.0 \ ' # Package summary description summary='Handles talking to timsieved' # Long package description description=' \ Provides an API to talk to the timsieved server that comes \ with Cyrus IMAPd. Can be used to install, remove, mark active etc \ sieve scripts. \ ' # Source code license license='BSD' From cvs at kolab.org Sun Jul 12 08:31:44 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 08:31:44 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LMTP package.info, NONE, 1.1 ChangeLog, 1.1, 1.2 Makefile, 1.2, 1.3 PEAR-Net_LMTP.spec, 1.1, NONE Message-ID: <20090712063144.6E382600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LMTP In directory doto:/tmp/cvs-serv5804 Modified Files: ChangeLog Makefile Added Files: package.info Removed Files: PEAR-Net_LMTP.spec Log Message: Converted to new packaging style. --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Net_LMTP' # The name of the RPM package package='PEAR-Net_LMTP' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.0.1' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Net_Socket \ ' # Package summary description summary='An implementation of the LMTP protocol' # Long package description description=' \ Provides an implementation of the LMTP protocol using PEARs Net_Socket class. \ ' # Source code license license='PHP' Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LMTP/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 8 Aug 2007 16:26:45 -0000 1.1 +++ ChangeLog 12 Jul 2009 06:31:42 -0000 1.2 @@ -1,3 +1,7 @@ +2009-07-12 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. + 2007-08-08 Gunnar Wrobel

* PEAR-Net_LMTP.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LMTP/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 13 Sep 2007 13:28:13 -0000 1.2 +++ Makefile 12 Jul 2009 06:31:42 -0000 1.3 @@ -1,42 +1 @@ -PEAR_NAME = $(shell grep "%define[ ]*V_pear_name" *.spec | sed -e "s/.*V_pear_name \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = PEAR-$(PEAR_NAME) -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([A-Za-z0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.php.net/get/$(PEAR_NAME)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PEAR_NAME)* - rm -rf /kolab/RPM/TMP/$(PACKAGE) - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- PEAR-Net_LMTP.spec DELETED --- From cvs at kolab.org Sun Jul 12 10:02:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sun, 12 Jul 2009 10:02:16 +0200 (CEST) Subject: gunnar: server/kolab-webclient ChangeLog, 1.18, 1.19 kolab-webclient.spec, 1.36, 1.37 Message-ID: <20090712080216.A0C5D600814@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolab-webclient In directory doto:/tmp/cvs-serv11757 Modified Files: ChangeLog kolab-webclient.spec Log Message: Removed the pear directory as all PEAR packages have their own RPM package now. Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/kolab-webclient/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ChangeLog 11 Jul 2009 15:12:22 -0000 1.18 +++ ChangeLog 12 Jul 2009 08:02:14 -0000 1.19 @@ -1,3 +1,8 @@ +2009-07-12 Gunnar Wrobel

+ + * kolab-webclient.spec: Removed the "pear" directory as all PEAR + packages have their own RPM package now. + 2009-07-11 Gunnar Wrobel

* kolab-webclient.spec: Index: kolab-webclient.spec =================================================================== RCS file: /kolabrepository/server/kolab-webclient/kolab-webclient.spec,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- kolab-webclient.spec 11 Jul 2009 15:12:22 -0000 1.36 +++ kolab-webclient.spec 12 Jul 2009 08:02:14 -0000 1.37 @@ -2,8 +2,8 @@ %define V_horde_name horde-webmail %define V_package kolab-webclient %define V_year 2009 -%define V_month 04 -%define V_day 26 +%define V_month 07 +%define V_day 12 %define V_version 1.2.0 %define V_source_version 1.2 %define V_passwd_version 3.0.1 @@ -88,10 +88,17 @@ PreReq: Kolab_Format >= 1.0.1 PreReq: Kolab_Server >= 0.5.0 PreReq: Kolab_Storage >= 0.4.0 - +# Needed by horde +PreReq: PEAR-Services_Weather +PreReq: PEAR-DB +# Needed by horde (translation.php) +PreReq: PEAR-Console_Table +PreReq: PEAR-File_Find +# Needed by ingo +PreReq: PEAR-Net_Sieve # Needed by imp PreReq: PEAR-Auth_SASL >= 1.0.2 - +PreReq: PEAR-Mail # Needed by kronolith PreReq: PEAR-Date_Holidays_Austria >= 0.1.3 PreReq: PEAR-Date_Holidays_Brazil >= 0.1.2 @@ -111,9 +118,10 @@ PreReq: PEAR-Date_Holidays_Ukraine >= 0.1.2 PreReq: PEAR-Date_Holidays_UNO >= 0.1.3 PreReq: PEAR-Date_Holidays_USA >= 0.1.1 +# Needed by turba +PreReq: PEAR-Net_LDAP - -Obsoletes: horde-kolab, horde-kronolith-kolab, horde-imp-kolab, horde-ingo-kolab, horde-kolab-client, horde-dimp-kolab, horde-mimp-kolab, horde-mnemo-kolab, horde-nag-kolab, horde-passwd-kolab, horde-turba-kolab, PEAR-Net_Sieve +Obsoletes: horde-kolab, horde-kronolith-kolab, horde-imp-kolab, horde-ingo-kolab, horde-kolab-client, horde-dimp-kolab, horde-mimp-kolab, horde-mnemo-kolab, horde-nag-kolab, horde-passwd-kolab, horde-turba-kolab AutoReq: no AutoReqProv: no @@ -155,22 +163,6 @@ # kolab/issue3293 (Big code duplication and code version messup: Horde # libs in 2.2.1) - # Use Archive_Tar-1.3.2 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/Archive/Tar.php - - # Use Structures_Graph-1.0.2 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/Structures - - # Use Console_Getopt-1.2.3 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/Console/Getopt.php - - # Use XML_Util-1.2.1 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/XML/Util.php - - # Use PEAR-1.7.2 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/OS/Guess.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/PEAR - # Use Horde_Argv-0.1.0dev20090501 from /kolab/lib/php rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Argv* @@ -212,14 +204,8 @@ rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Storage* rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Test/Storage.php - # Use PEAR-Auth_SASL-1.0.2 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/Auth* - - # Use PEAR-Date* from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/Date* - - # Use PEAR-XML_* from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear/XML* + # Use the PEAR libraries from /kolab/lib/php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear sqlite $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/storage/horde.db < scripts/sql/groupware.sql From cvs at kolab.org Mon Jul 13 12:50:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 12:50:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Argv package.info, NONE, 1.1 .cvsignore, 1.2, 1.3 ChangeLog, 1.2, 1.3 Makefile, 1.2, 1.3 Horde_Argv.spec, 1.4, NONE Message-ID: <20090713105017.CCCC0600810@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Argv In directory doto:/tmp/cvs-serv19380/Horde_Argv Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_Argv.spec Log Message: Convert Horde_Argv and Horde_Argv-H4 to new packaging style. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Argv' # The name of the RPM package package='Horde_Argv' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Argv' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde command-line argument parsing package' # Long package description description=' \ This package provides classes for parsing command line arguments with \ various actions, providing help, grouping options, and more. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 20 May 2009 07:56:20 -0000 1.2 +++ .cvsignore 13 Jul 2009 10:50:15 -0000 1.3 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 20 May 2009 07:56:20 -0000 1.2 +++ ChangeLog 13 Jul 2009 10:50:15 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Convert to new packaging style. + 2009-05-20 Gunnar Wrobel

* Horde_Argv.spec: Update to the HORDE_3_3_4 tag. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 20 May 2009 07:56:20 -0000 1.2 +++ Makefile 13 Jul 2009 10:50:15 -0000 1.3 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk --- Horde_Argv.spec DELETED --- From cvs at kolab.org Mon Jul 13 12:50:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 12:50:17 +0200 (CEST) Subject: gunnar: server/pear Pear.mk,1.9,1.10 Message-ID: <20090713105017.BBDA360080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear In directory doto:/tmp/cvs-serv19380 Modified Files: Pear.mk Log Message: Convert Horde_Argv and Horde_Argv-H4 to new packaging style. Index: Pear.mk =================================================================== RCS file: /kolabrepository/server/pear/Pear.mk,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- Pear.mk 12 Jul 2009 05:50:21 -0000 1.9 +++ Pear.mk 13 Jul 2009 10:50:15 -0000 1.10 @@ -60,6 +60,9 @@ # Allow to set the with_chroot option WITH_CHROOT = $(shell if [ -e ../.opt.chroot ]; then echo "yes"; else echo "no"; fi) +# Upload location for the fileserver (set this in you ssh config!) +FILESERVER = files:~/de/pardus/files/downloads/kolab-sources/ + # Set the default package file end ifeq "x$(FILEEND)" "x" FILEEND=tgz @@ -192,28 +195,16 @@ endif $(PEAR) package tmp/$(PACKAGE)/package.xml rm -rf tmp + +# Short name for the source package as a target for the command line. +.PHONY:snapshot +snapshot: source + scp $(SOURCE_0) $(FILESERVER) endif # Target for retrieving the source package -ifeq ($(PACKAGE_ORIGIN),VC) -$(SOURCE_0): tmp/$(PACKAGE) - sed -i -e "/version/,+1 s#\(.*\)#\1dev$(RELTAG)#" tmp/$(PACKAGE)/package.xml - sed -i -e "/lead/,+1 s#.*#$(DATE)#" tmp/$(PACKAGE)/package.xml -ifneq ($(ALTERNATE_CHANNEL),) - sed -i -e 's#.*#$(ALTERNATE_CHANNEL)#' tmp/$(PACKAGE)/package.xml -endif -ifneq ($(ALTERNATE_MAINTAINER),) - if [ -z "`grep $(ALTERNATE_MAINTAINER) tmp/$(PACKAGE)/package.xml`" ]; then \ - sed -i -e '/lead/,/\/lead/ D' tmp/$(PACKAGE)/package.xml; \ - sed -i -e '/date.*\/date/ i\ $(ALTERNATE_MAINTAINER_SNIPPET)' tmp/$(PACKAGE)/package.xml; \ - fi -endif - $(PEAR) package tmp/$(PACKAGE)/package.xml - rm -rf tmp -else $(SOURCE_0): wget -c "$(SOURCE_URL)/$(SOURCE_0)" -endif # Target for the src rpm directory. $(KOLABRPMSRC)/$(PACKAGE): From cvs at kolab.org Mon Jul 13 12:50:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 12:50:19 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_Sieve .cvsignore,1.3,1.4 Message-ID: <20090713105019.89249600813@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_Sieve In directory doto:/tmp/cvs-serv19380/PEAR-Net_Sieve Modified Files: .cvsignore Log Message: Convert Horde_Argv and Horde_Argv-H4 to new packaging style. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_Sieve/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 12 Jul 2009 06:28:14 -0000 1.3 +++ .cvsignore 13 Jul 2009 10:50:17 -0000 1.4 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch From cvs at kolab.org Mon Jul 13 12:50:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 12:50:19 +0200 (CEST) Subject: gunnar: server/pear/Horde_Argv-H4 package.info, NONE, 1.1 .cvsignore, 1.2, 1.3 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Horde_Argv-H4.spec, 1.2, NONE Message-ID: <20090713105019.87941600811@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Argv-H4 In directory doto:/tmp/cvs-serv19380/Horde_Argv-H4 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_Argv-H4.spec Log Message: Convert Horde_Argv and Horde_Argv-H4 to new packaging style. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Argv' # The name of the RPM package package='Horde_Argv-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Argv' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090713' # Version number version='0.1.0dev20090713' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde command-line argument parsing package' # Long package description description=' \ This package provides classes for parsing command line arguments with \ various actions, providing help, grouping options, and more. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv-H4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 20 May 2009 07:56:44 -0000 1.2 +++ .cvsignore 13 Jul 2009 10:50:15 -0000 1.3 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv-H4/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 18 May 2009 22:31:06 -0000 1.1 +++ ChangeLog 13 Jul 2009 10:50:15 -0000 1.2 @@ -1,3 +1,7 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Convert to new packaging style. + 2009-05-19 Gunnar Wrobel

* Horde_Argv-H4.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv-H4/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 18 May 2009 22:31:06 -0000 1.1 +++ Makefile 13 Jul 2009 10:50:15 -0000 1.2 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk --- Horde_Argv-H4.spec DELETED --- From cvs at kolab.org Mon Jul 13 13:40:33 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 13:40:33 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm-H4 - New directory Message-ID: <20090713114033.37969600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm-H4 In directory doto:/tmp/cvs-serv20776/Horde_Alarm-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Alarm-H4 added to the repository From cvs at kolab.org Mon Jul 13 13:40:33 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 13:40:33 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm - New directory Message-ID: <20090713114033.37A0060016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm In directory doto:/tmp/cvs-serv20776/Horde_Alarm Log Message: Directory /kolabrepository/server/pear/Horde_Alarm added to the repository From cvs at kolab.org Mon Jul 13 13:41:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 13:41:22 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713114122.14D7A60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm In directory doto:/tmp/cvs-serv20871/Horde_Alarm Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Alarm, Horde_Alarm-H4 --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Alarm' # The name of the RPM package package='Horde_Alarm' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Alarm' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Date \ ' # Package summary description summary='Horde alarm libraries' # Long package description description=' \ This package provides an interface to deal with reminders, alarms and \ notifications through a standardized API. The following notification \ methods are available at the moment: standard Horde notifications, \ popups, emails, sms. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 13:41:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 13:41:22 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713114122.16BDB60080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm-H4 In directory doto:/tmp/cvs-serv20871/Horde_Alarm-H4 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Alarm, Horde_Alarm-H4 --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Alarm' # The name of the RPM package package='Horde_Alarm-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Alarm' # Commit tag or date to user repo_commit=':20090713' # What release number should the source snapshot get (usually a date)? repo_release='20090713' # Version number version='0.1.0dev20090713' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Date \ ' # Package summary description summary='Horde alarm libraries' # Long package description description=' \ This package provides an interface to deal with reminders, alarms and \ notifications through a standardized API. The following notification \ methods are available at the moment: standard Horde notifications, \ popups, emails, sms. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 14:39:28 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 14:39:28 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.4, 1.5 Makefile, 1.4, 1.5 Horde_Auth.spec, 1.7, NONE Message-ID: <20090713123928.E7B11600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth In directory doto:/tmp/cvs-serv22379 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_Auth.spec Log Message: Convert to new packaging style. Update to snapshot 0.1.1dev090501. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Auth' # The name of the RPM package package='Horde_Auth' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Auth' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.1dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Date \ ' # Package summary description summary='Horde Authentication API' # Long package description description=' \ The Auth:: class provides a common abstracted interface into the \ various backends for the Horde authentication system. This package \ contains implementations for: \ \ * A Horde Application \ * Dummy Auto Login \ * Composite Auth Driver \ * Custom SQL \ * Cyrus with SQL Support \ * FTP \ * HTTP \ * IMAP \ * IMSP \ * IP Based \ * Kerberos \ * Kolab \ * LDAP \ * Shibboleth \ * System Login \ * mcal \ * PAM \ * Passwd File \ * Radius \ * SASL \ * SMB \ * SQL \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Auth/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:25:07 -0000 1.1 +++ .cvsignore 13 Jul 2009 12:39:26 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Auth/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- ChangeLog 8 Nov 2008 11:23:35 -0000 1.4 +++ ChangeLog 13 Jul 2009 12:39:26 -0000 1.5 @@ -1,3 +1,7 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Converted to new package style. Update to snapshot 0.1.1dev20090501. + 2008-10-29 Gunnar Wrobel

* Horde_Auth.spec: Updated to Auth-0.1.1. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Auth/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 22 Sep 2008 16:34:28 -0000 1.4 +++ Makefile 13 Jul 2009 12:39:26 -0000 1.5 @@ -1,44 +1 @@ -HORDE_PACKAGE = $(shell grep "%define[ ]*V_horde_package" *.spec | sed -e "s/.*V_horde_package \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(HORDE_PACKAGE)-$(VERSION).tgz -PATCHES = $(shell grep "^Patch[0-9]*:" *.spec | sed -e "s/^Patch[0-9]*:\s*\(.*\).*/\1/") - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - for PATCH in $(PATCHES); do cp "$$PATCH" $(KOLABRPMSRC)/$(PACKAGE); done - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- Horde_Auth.spec DELETED --- From cvs at kolab.org Mon Jul 13 14:50:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 14:50:02 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth-H4 - New directory Message-ID: <20090713125002.13CFD60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth-H4 In directory doto:/tmp/cvs-serv22699/Horde_Auth-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Auth-H4 added to the repository From cvs at kolab.org Mon Jul 13 14:51:26 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 14:51:26 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713125126.1C20A60080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth-H4 In directory doto:/tmp/cvs-serv22739 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Auth-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Auth' # The name of the RPM package package='Horde_Auth-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Auth' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.2.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Secret \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Authentication API' # Long package description description=' \ The Auth:: class provides a common abstracted interface into the \ various backends for the Horde authentication system. This package \ contains implementations for: \ \ * A Horde Application \ * Dummy Auto Login \ * Composite Auth Driver \ * Custom SQL \ * Cyrus with SQL Support \ * FTP \ * HTTP \ * IMAP \ * IMSP \ * IP Based \ * Kerberos \ * Kolab \ * LDAP \ * Shibboleth \ * System Login \ * mcal \ * PAM \ * Passwd File \ * Radius \ * SASL \ * SMB \ * SQL \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 15:04:44 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:04:44 +0200 (CEST) Subject: gunnar: server/pear/Horde_Autoloader .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Horde_Autoloader.spec, 1.1, NONE Message-ID: <20090713130444.2033060080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Autoloader In directory doto:/tmp/cvs-serv23132 Modified Files: .cvsignore ChangeLog Makefile Removed Files: Horde_Autoloader.spec Log Message: Convert to new packaging style. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Autoloader/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 26 May 2009 20:06:27 -0000 1.1 +++ .cvsignore 13 Jul 2009 13:04:41 -0000 1.2 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Autoloader/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 26 May 2009 20:06:27 -0000 1.1 +++ ChangeLog 13 Jul 2009 13:04:41 -0000 1.2 @@ -1,3 +1,7 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Convert to new packaging style. + 2009-05-26 Gunnar Wrobel

* Horde_Autoloader.spec: Added the Horde_Autoloader package to Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Autoloader/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 26 May 2009 20:06:27 -0000 1.1 +++ Makefile 13 Jul 2009 13:04:41 -0000 1.2 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk --- Horde_Autoloader.spec DELETED --- From cvs at kolab.org Mon Jul 13 15:20:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:20:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Autoloader package.info,NONE,1.1 Message-ID: <20090713132016.87CB9600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Autoloader In directory doto:/tmp/cvs-serv23829/Horde_Autoloader Added Files: package.info Log Message: Add missing package.info --- NEW FILE: package.info --- # The name of Horde source package pear_package='Autoloader' # The name of the RPM package package='Horde_Autoloader' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Autoloader' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.2.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde Class Autoloader' # Long package description description=' \ Autoload implementation and class loading manager for Horde. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 15:20:48 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:20:48 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm ChangeLog,1.1,1.2 Message-ID: <20090713132048.AF03660016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm In directory doto:/tmp/cvs-serv23873/Horde_Alarm Modified Files: ChangeLog Log Message: Update ChangeLog Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Alarm/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 13 Jul 2009 11:41:20 -0000 1.1 +++ ChangeLog 13 Jul 2009 13:20:46 -0000 1.2 @@ -1,4 +1,4 @@ 2009-07-13 Gunnar Wrobel

- * package.info: Added package to Kolab CVS. + * package.info: Added package to Kolab CVS. Update to snapshot 0.1.0dev20090501. From cvs at kolab.org Mon Jul 13 15:21:11 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:21:11 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth package.info,1.1,1.2 Message-ID: <20090713132111.E1C4D60080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth In directory doto:/tmp/cvs-serv23894/Horde_Auth Modified Files: package.info Log Message: Fix dependencies Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Auth/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 12:39:26 -0000 1.1 +++ package.info 13 Jul 2009 13:21:09 -0000 1.2 @@ -45,7 +45,9 @@ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ -PreReq: Horde_Date \ +PreReq: Horde_Framework \ +PreReq: Horde_Secret \ +PreReq: Horde_Util \ ' # Package summary description From cvs at kolab.org Mon Jul 13 15:21:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:21:19 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block - New directory Message-ID: <20090713132119.3AA44600810@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block In directory doto:/tmp/cvs-serv23908/Horde_Block Log Message: Directory /kolabrepository/server/pear/Horde_Block added to the repository From cvs at kolab.org Mon Jul 13 15:21:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:21:50 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713132150.87AB3600811@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block In directory doto:/tmp/cvs-serv23928 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Block. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. Update to snapshot 0.1.0dev20090501. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Block' # The name of the RPM package package='Horde_Block' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Block' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Block API' # Long package description description=' \ The Horde_Block API provides a mechanism for displaying content \ blocks from numerous Horde applications or other sources, \ manipulating those blocks, configuring them, etc. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 15:32:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:32:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block-H4 - New directory Message-ID: <20090713133215.991E7600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block-H4 In directory doto:/tmp/cvs-serv24236/Horde_Block-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Block-H4 added to the repository From cvs at kolab.org Mon Jul 13 15:33:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:33:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713133312.4A58460016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block-H4 In directory doto:/tmp/cvs-serv24287 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Block-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Block' # The name of the RPM package package='Horde_Block-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Block' # Commit tag or date to user repo_commit=':20090713' # What release number should the source snapshot get (usually a date)? repo_release='20090713' # Version number version='0.0.2dev20090713' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Block API' # Long package description description=' \ The Horde_Block API provides a mechanism for displaying content \ blocks from numerous Horde applications or other sources, \ manipulating those blocks, configuring them, etc. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 15:40:10 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:40:10 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser .cvsignore, 1.2, 1.3 ChangeLog, 1.2, 1.3 Makefile, 1.4, 1.5 Horde_Browser.spec, 1.7, NONE Message-ID: <20090713134010.5B6F8600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser In directory doto:/tmp/cvs-serv24564 Modified Files: .cvsignore ChangeLog Makefile Removed Files: Horde_Browser.spec Log Message: Converted to new packaging style and updated to HORDE_3_3_4 tag. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 18 May 2009 16:12:28 -0000 1.2 +++ .cvsignore 13 Jul 2009 13:40:08 -0000 1.3 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 11 May 2009 19:38:46 -0000 1.2 +++ ChangeLog 13 Jul 2009 13:40:08 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Convert to new packaging style. + 2009-05-11 Gunnar Wrobel

* Horde_Browser.spec: Update to the HORDE_3_3_4 release tag. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 18 May 2009 16:12:28 -0000 1.4 +++ Makefile 13 Jul 2009 13:40:08 -0000 1.5 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk --- Horde_Browser.spec DELETED --- From cvs at kolab.org Mon Jul 13 15:41:05 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:41:05 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block-H4 package.info,1.1,1.2 Message-ID: <20090713134105.B557F60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block-H4 In directory doto:/tmp/cvs-serv24664/Horde_Block-H4 Modified Files: package.info Log Message: Fix install location. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Block-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 13:33:09 -0000 1.1 +++ package.info 13 Jul 2009 13:41:03 -0000 1.2 @@ -31,7 +31,7 @@ sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed -php_lib_loc='php' +php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ From cvs at kolab.org Mon Jul 13 15:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 15:46:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser-H4 package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Horde_Browser-H4.spec, 1.2, NONE Message-ID: <20090713134615.66350600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser-H4 In directory doto:/tmp/cvs-serv24797 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_Browser-H4.spec Log Message: Added Horde_Browser-H4 to CVS. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Browser' # The name of the RPM package package='Horde_Browser-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Browser' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.1.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Browser API' # Long package description description=' \ The Horde_Browser:: class provides an API for getting information \ about the current users browser and its capabilities. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 18 May 2009 17:37:52 -0000 1.1 +++ .cvsignore 13 Jul 2009 13:46:13 -0000 1.2 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser-H4/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 18 May 2009 17:37:52 -0000 1.1 +++ ChangeLog 13 Jul 2009 13:46:13 -0000 1.2 @@ -1,3 +1,7 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. + 2009-05-18 Gunnar Wrobel

* Horde_Browser-H4.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser-H4/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 18 May 2009 17:37:52 -0000 1.1 +++ Makefile 13 Jul 2009 13:46:13 -0000 1.2 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk --- Horde_Browser-H4.spec DELETED --- From cvs at kolab.org Mon Jul 13 16:17:00 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:17:00 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cache package.info, NONE, 1.1 .cvsignore, 1.2, 1.3 ChangeLog, 1.2, 1.3 Makefile, 1.2, 1.3 Horde_Cache.spec, 1.4, NONE Message-ID: <20090713141700.D19E960016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cache In directory doto:/tmp/cvs-serv25833 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_Cache.spec Log Message: Converted to new packaging style. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Cache' # The name of the RPM package package='Horde_Cache' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Cache' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Caching API' # Long package description description=' \ This package provides a simple, functional Caching API, with the \ option to store the cached data either on the filesystem, or using the \ Zend Performance Suites content cache. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 26 May 2009 05:10:57 -0000 1.2 +++ .cvsignore 13 Jul 2009 14:16:58 -0000 1.3 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 26 May 2009 05:10:57 -0000 1.2 +++ ChangeLog 13 Jul 2009 14:16:58 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. + 2009-05-26 Gunnar Wrobel

* Horde_Cache.spec: Update to the HORDE_3_3_4 release tag. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 26 May 2009 05:10:57 -0000 1.2 +++ Makefile 13 Jul 2009 14:16:58 -0000 1.3 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk --- Horde_Cache.spec DELETED --- From cvs at kolab.org Mon Jul 13 16:18:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:18:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser package.info,NONE,1.1 Message-ID: <20090713141806.4259F60080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser In directory doto:/tmp/cvs-serv25901/Horde_Browser Added Files: package.info Log Message: Add missing package.info --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Browser' # The name of the RPM package package='Horde_Browser' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Browser' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Browser API' # Long package description description=' \ The Horde_Browser:: class provides an API for getting information \ about the current users browser and its capabilities. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 16:20:40 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:20:40 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser-H4 package.info,1.1,1.2 Message-ID: <20090713142040.7D44C60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser-H4 In directory doto:/tmp/cvs-serv25983/Horde_Browser-H4 Modified Files: package.info Log Message: Fix install location Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 13:46:13 -0000 1.1 +++ package.info 13 Jul 2009 14:20:38 -0000 1.2 @@ -31,7 +31,7 @@ sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed -php_lib_loc='php' +php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ From cvs at kolab.org Mon Jul 13 16:26:44 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:26:44 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cache-H4 package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Horde_Cache-H4.spec, 1.1, NONE Message-ID: <20090713142644.65A5F60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cache-H4 In directory doto:/tmp/cvs-serv26110 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_Cache-H4.spec Log Message: Converted to new packaging style. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Cache' # The name of the RPM package package='Horde_Cache-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Cache' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.2.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Caching API' # Long package description description=' \ This package provides a simple, functional Caching API, with the \ option to store the cached data either on the filesystem, or using the \ Zend Performance Suites content cache. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 26 May 2009 05:10:26 -0000 1.1 +++ .cvsignore 13 Jul 2009 14:26:41 -0000 1.2 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache-H4/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 26 May 2009 05:10:26 -0000 1.1 +++ ChangeLog 13 Jul 2009 14:26:42 -0000 1.2 @@ -1,3 +1,7 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Converted to new package style. + 2009-05-25 Gunnar Wrobel

* Horde_Cache-H4.spec: Added package to CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache-H4/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 26 May 2009 05:10:26 -0000 1.1 +++ Makefile 13 Jul 2009 14:26:42 -0000 1.2 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk --- Horde_Cache-H4.spec DELETED --- From cvs at kolab.org Mon Jul 13 16:41:45 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:41:45 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cipher package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Horde_Cipher.spec, 1.3, NONE Message-ID: <20090713144145.3F4CC60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cipher In directory doto:/tmp/cvs-serv26522 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_Cipher.spec Log Message: Converted to new packaging style. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Cipher' # The name of the RPM package package='Horde_Cipher' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Cipher' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Cipher API' # Long package description description=' \ This package provides a Block Mode Cipher API, supporting the following ciphers: \ * Blowfish \ * Cast128 \ * DES \ * RC2 \ * RC4 \ \ And supporting the following block modes: \ * CBC \ * ECB \ * CFB64 \ * OFB64 \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cipher/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:26:09 -0000 1.1 +++ .cvsignore 13 Jul 2009 14:41:42 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cipher/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 11 Sep 2008 16:26:09 -0000 1.1 +++ ChangeLog 13 Jul 2009 14:41:42 -0000 1.2 @@ -1,3 +1,7 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. + 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cipher/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 11 Sep 2008 16:26:09 -0000 1.1 +++ Makefile 13 Jul 2009 14:41:42 -0000 1.2 @@ -1,40 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- Horde_Cipher.spec DELETED --- From cvs at kolab.org Mon Jul 13 16:45:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:45:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cipher-H4 - New directory Message-ID: <20090713144514.7C14B60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cipher-H4 In directory doto:/tmp/cvs-serv26625/Horde_Cipher-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Cipher-H4 added to the repository From cvs at kolab.org Mon Jul 13 16:46:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:46:19 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cipher-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713144619.EF28D60080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cipher-H4 In directory doto:/tmp/cvs-serv26678 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Cipher-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Cipher' # The name of the RPM package package='Horde_Cipher-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Cipher' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.1.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Cipher API' # Long package description description=' \ This package provides a Block Mode Cipher API, supporting the following ciphers: \ * Blowfish \ * Cast128 \ * DES \ * RC2 \ * RC4 \ \ And supporting the following block modes: \ * CBC \ * ECB \ * CFB64 \ * OFB64 \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 16:46:35 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:46:35 +0200 (CEST) Subject: gunnar: server/pear/Horde_Argv package.info,1.1,1.2 Message-ID: <20090713144635.B5644600810@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Argv In directory doto:/tmp/cvs-serv26698/Horde_Argv Modified Files: package.info Log Message: Fix license. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 10:50:15 -0000 1.1 +++ package.info 13 Jul 2009 14:46:33 -0000 1.2 @@ -57,4 +57,4 @@ ' # Source code license -license='LGPL' +license='BSD' From cvs at kolab.org Mon Jul 13 16:46:35 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:46:35 +0200 (CEST) Subject: gunnar: server/pear/Horde_Argv-H4 package.info,1.1,1.2 Message-ID: <20090713144635.B841A600811@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Argv-H4 In directory doto:/tmp/cvs-serv26698/Horde_Argv-H4 Modified Files: package.info Log Message: Fix license. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 10:50:15 -0000 1.1 +++ package.info 13 Jul 2009 14:46:33 -0000 1.2 @@ -57,4 +57,4 @@ ' # Source code license -license='LGPL' +license='BSD' From cvs at kolab.org Mon Jul 13 16:52:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:52:19 +0200 (CEST) Subject: gunnar: server/pear/Horde_CLI package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Horde_CLI.spec, 1.3, NONE Message-ID: <20090713145219.C27AC60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_CLI In directory doto:/tmp/cvs-serv26818 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_CLI.spec Log Message: Converted to new packaging style. Update to HORDE_3_3_4 tag. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_CLI' # The name of the RPM package package='Horde_CLI' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='CLI' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde CLI API' # Long package description description=' \ Horde_CLI:: API for basic command-line functionality/checks. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_CLI/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:25:07 -0000 1.1 +++ .cvsignore 13 Jul 2009 14:52:17 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_CLI/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 11 Sep 2008 16:21:57 -0000 1.1 +++ ChangeLog 13 Jul 2009 14:52:17 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-13 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. Update to + HORDE_3_3_4 tag. + 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_CLI/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 11 Sep 2008 16:21:57 -0000 1.1 +++ Makefile 13 Jul 2009 14:52:17 -0000 1.2 @@ -1,40 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- Horde_CLI.spec DELETED --- From cvs at kolab.org Mon Jul 13 16:55:01 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:55:01 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cli-H4 - New directory Message-ID: <20090713145501.43EAC60080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cli-H4 In directory doto:/tmp/cvs-serv26896/Horde_Cli-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Cli-H4 added to the repository From cvs at kolab.org Mon Jul 13 16:55:26 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 16:55:26 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cli-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713145526.B2575600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cli-H4 In directory doto:/tmp/cvs-serv26941 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Cli-H4. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Cli' # The name of the RPM package package='Horde_Cli-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Cli' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.2.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde CLI API' # Long package description description=' \ Horde_CLI:: API for basic command-line functionality/checks. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 17:01:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:01:50 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress - New directory Message-ID: <20090713150150.54CDE600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress In directory doto:/tmp/cvs-serv27090/Horde_Compress Log Message: Directory /kolabrepository/server/pear/Horde_Compress added to the repository From cvs at kolab.org Mon Jul 13 17:02:11 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:02:11 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713150211.36B7360016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress In directory doto:/tmp/cvs-serv27138 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Compress to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Compress' # The name of the RPM package package='Horde_Compress' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Compress' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Compression API' # Long package description description=' \ The Horde_Compress:: class provides an API for various compression techniques. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 17:05:25 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:05:25 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress-H4 - New directory Message-ID: <20090713150525.20F00600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress-H4 In directory doto:/tmp/cvs-serv27310/Horde_Compress-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Compress-H4 added to the repository From cvs at kolab.org Mon Jul 13 17:05:47 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:05:47 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713150547.BEFCC60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress-H4 In directory doto:/tmp/cvs-serv27471 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Compress-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Compress' # The name of the RPM package package='Horde_Compress-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Compress' # Commit tag or date to user repo_commit=':20090713' # What release number should the source snapshot get (usually a date)? repo_release='20090713' # Version number version='0.0.2dev20090713' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Compression API' # Long package description description=' \ The Horde_Compress:: class provides an API for various compression techniques. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 17:08:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:08:51 +0200 (CEST) Subject: gunnar: server/pear/Horde_Controller - New directory Message-ID: <20090713150851.84DF8600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Controller In directory doto:/tmp/cvs-serv27579/Horde_Controller Log Message: Directory /kolabrepository/server/pear/Horde_Controller added to the repository From cvs at kolab.org Mon Jul 13 17:09:20 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:09:20 +0200 (CEST) Subject: gunnar: server/pear/Horde_Controller .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713150920.DCDBC60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Controller In directory doto:/tmp/cvs-serv27626 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Controller to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Controller' # The name of the RPM package package='Horde_Controller' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Controller' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.1.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Support \ ' # Package summary description summary='Horde Controller libraries' # Long package description description=' \ This package provides the controller part of an MVC system for Horde. \ ' # Source code license license='BSD' From cvs at kolab.org Mon Jul 13 17:14:43 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:14:43 +0200 (CEST) Subject: gunnar: server/pear/Horde_Core-H4 - New directory Message-ID: <20090713151443.3A94C600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Core-H4 In directory doto:/tmp/cvs-serv27747/Horde_Core-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Core-H4 added to the repository From cvs at kolab.org Mon Jul 13 17:15:08 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:15:08 +0200 (CEST) Subject: gunnar: server/pear/Horde_Core-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713151508.E7C2160016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Core-H4 In directory doto:/tmp/cvs-serv27795 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Core-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Core' # The name of the RPM package package='Horde_Core' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Core' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.1.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: PEAR-Log \ PreReq: Horde_CLI \ PreReq: Horde_DOM \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Core Framework libraries' # Long package description description=' \ These classes provide the core functionality of the Horde \ Application Framework. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 17:18:45 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:18:45 +0200 (CEST) Subject: gunnar: server/pear/Horde_Framework-H4 ChangeLog, 1.1, NONE Makefile, 1.2, NONE package.info, 1.3, NONE Message-ID: <20090713151845.8FFE7600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Framework-H4 In directory doto:/tmp/cvs-serv27858 Removed Files: ChangeLog Makefile package.info Log Message: The package was renamed to Horde_Core-H4. --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Mon Jul 13 17:19:38 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 17:19:38 +0200 (CEST) Subject: gunnar: server/pear/Horde_Framework-H4 .cvsignore,1.2,NONE Message-ID: <20090713151938.F026160016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Framework-H4 In directory doto:/tmp/cvs-serv27924 Removed Files: .cvsignore Log Message: Remove stray file. --- .cvsignore DELETED --- From cvs at kolab.org Mon Jul 13 19:11:57 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 19:11:57 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt - New directory Message-ID: <20090713171157.CFDF4600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt In directory doto:/tmp/cvs-serv30820/Horde_Crypt Log Message: Directory /kolabrepository/server/pear/Horde_Crypt added to the repository From cvs at kolab.org Mon Jul 13 19:12:30 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 19:12:30 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713171230.CB1C860016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt In directory doto:/tmp/cvs-serv30859 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Crypt to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Converted to new packaging style. 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Crypt' # The name of the RPM package package='Horde_Crypt' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Crypt' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ PreReq: Horde_MIME \ ' # Package summary description summary='Horde Cryptography API' # Long package description description=' \ The Horde_Crypt:: class provides an API for various cryptographic systems \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 19:13:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 19:13:03 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt ChangeLog,1.1,1.2 Message-ID: <20090713171303.0155760080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt In directory doto:/tmp/cvs-serv30879 Modified Files: ChangeLog Log Message: Fixed ChangeLog. Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Crypt/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 13 Jul 2009 17:12:28 -0000 1.1 +++ ChangeLog 13 Jul 2009 17:13:00 -0000 1.2 @@ -1,8 +1,4 @@ 2009-07-13 Gunnar Wrobel

- * package.info: Converted to new packaging style. - -2008-09-11 Gunnar Wrobel

- - * Horde_DOM.spec: Added package to Kolab CVS. + * package.info: Added package to Kolab CVS. From cvs at kolab.org Mon Jul 13 19:19:11 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 19:19:11 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt-H4 - New directory Message-ID: <20090713171911.41853600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt-H4 In directory doto:/tmp/cvs-serv31094/Horde_Crypt-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Crypt-H4 added to the repository From cvs at kolab.org Mon Jul 13 19:19:33 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 19:19:33 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713171933.0415160080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt-H4 In directory doto:/tmp/cvs-serv31126 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Crypt-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Crypt' # The name of the RPM package package='Horde_Crypt-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Crypt' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.1.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ PreReq: Horde_Mime \ ' # Package summary description summary='Horde Cryptography API' # Long package description description=' \ The Horde_Crypt:: class provides an API for various cryptographic systems \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 19:32:23 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 19:32:23 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data - New directory Message-ID: <20090713173223.ECF2C600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data In directory doto:/tmp/cvs-serv31353/Horde_Data Log Message: Directory /kolabrepository/server/pear/Horde_Data added to the repository From cvs at kolab.org Mon Jul 13 19:32:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 19:32:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713173241.5CA1260016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data In directory doto:/tmp/cvs-serv31396 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Data to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Data' # The name of the RPM package package='Horde_Data' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Data' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.3dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ PreReq: Horde_MIME \ PreReq: Horde_iCalendar \ ' # Package summary description summary='Horde Data API' # Long package description description=' \ This package provides a data import and export API, with backends for: \ * CSV \ * TSV \ * iCalendar \ * vCard \ * vNote \ * vTodo \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 13 19:35:48 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 19:35:48 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data-H4 - New directory Message-ID: <20090713173548.3DE39600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data-H4 In directory doto:/tmp/cvs-serv31506/Horde_Data-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Data-H4 added to the repository From cvs at kolab.org Mon Jul 13 19:36:10 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 13 Jul 2009 19:36:10 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090713173610.3D00D60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data-H4 In directory doto:/tmp/cvs-serv31527 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Data-H4 --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-13 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Data' # The name of the RPM package package='Horde_Data-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Data' # Commit tag or date to user repo_commit=':20090713' # What release number should the source snapshot get (usually a date)? repo_release='20090713' # Version number version='0.0.3dev20090713' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ PreReq: Horde_MIME \ PreReq: Horde_iCalendar \ ' # Package summary description summary='Horde Data API' # Long package description description=' \ This package provides a data import and export API, with backends for: \ * CSV \ * TSV \ * iCalendar \ * vCard \ * vNote \ * vTodo \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 14 09:25:54 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 09:25:54 +0200 (CEST) Subject: gunnar: server/pear/Horde_DataTree package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Horde_DataTree.spec, 1.3, NONE Message-ID: <20090714072554.ED18E600810@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_DataTree In directory doto:/tmp/cvs-serv7510 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_DataTree.spec Log Message: Converted package to new packaging style. Update to HORDE_3_3_4 tag. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_DataTree' # The name of the RPM package package='Horde_DataTree' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='DataTree' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.3dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Serialize \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Data API' # Long package description description=' \ This package provides a data import and export API, with backends for: \ * CSV \ * TSV \ * iCalendar \ * vCard \ * vNote \ * vTodo \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_DataTree/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Sep 2008 19:29:41 -0000 1.1 +++ .cvsignore 14 Jul 2009 07:25:52 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_DataTree/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 12 Sep 2008 19:29:41 -0000 1.1 +++ ChangeLog 14 Jul 2009 07:25:52 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-14 Gunnar Wrobel

+ + * package.info: Converted package to new packaging style. Update + to HORDE_3_3_4 tag. + 2008-09-12 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_DataTree/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 12 Sep 2008 19:29:41 -0000 1.1 +++ Makefile 14 Jul 2009 07:25:52 -0000 1.2 @@ -1,40 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- Horde_DataTree.spec DELETED --- From cvs at kolab.org Tue Jul 14 09:54:33 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 09:54:33 +0200 (CEST) Subject: gunnar: server/pear/Horde_Date package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.2, 1.3 Makefile, 1.1, 1.2 Horde_Date.spec, 1.5, NONE Message-ID: <20090714075433.E347460080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Date In directory doto:/tmp/cvs-serv8224 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_Date.spec Log Message: Converted to new packaging style. Updated to HORDE_3_3_4 tag. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Date' # The name of the RPM package package='Horde_Date' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Date' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: PEAR-Date \ ' # Package summary description summary='Horde Date package' # Long package description description=' \ Package for creating and manipulating dates. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Date/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Sep 2008 18:46:46 -0000 1.1 +++ .cvsignore 14 Jul 2009 07:54:31 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Date/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 16 Sep 2008 12:45:08 -0000 1.2 +++ ChangeLog 14 Jul 2009 07:54:31 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-14 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. Updated to HORDE_3_3_4 tag. + 2008-09-16 Gunnar Wrobel

* Horde_Date.spec: Update to Horde_Date-0.1.0 Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Date/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 12 Sep 2008 18:46:46 -0000 1.1 +++ Makefile 14 Jul 2009 07:54:31 -0000 1.2 @@ -1,41 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -#SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz -SOURCE_0=http://files.pardus.de/kolab-sources/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- Horde_Date.spec DELETED --- From cvs at kolab.org Tue Jul 14 10:58:48 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 10:58:48 +0200 (CEST) Subject: gunnar: server/pear/Horde_Date-H4 - New directory Message-ID: <20090714085848.658C060080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Date-H4 In directory doto:/tmp/cvs-serv10071/Horde_Date-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Date-H4 added to the repository From cvs at kolab.org Tue Jul 14 11:02:07 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 11:02:07 +0200 (CEST) Subject: gunnar: server/pear/Horde_DataTree package.info,1.1,1.2 Message-ID: <20090714090207.DD76260080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_DataTree In directory doto:/tmp/cvs-serv10235 Modified Files: package.info Log Message: Fix description. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_DataTree/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 07:25:52 -0000 1.1 +++ package.info 14 Jul 2009 09:02:05 -0000 1.2 @@ -51,17 +51,11 @@ ' # Package summary description -summary='Horde Data API' +summary='DataTree API' # Long package description description=' \ -This package provides a data import and export API, with backends for: \ -* CSV \ -* TSV \ -* iCalendar \ -* vCard \ -* vNote \ -* vTodo \ +TODO \ ' # Source code license From cvs at kolab.org Tue Jul 14 11:02:48 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 11:02:48 +0200 (CEST) Subject: gunnar: server/pear/Horde_Date-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714090248.2CFE3600810@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Date-H4 In directory doto:/tmp/cvs-serv10296 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added package to Kolab CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Date' # The name of the RPM package package='Horde_Date-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Date' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.3.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: PEAR-Date \ ' # Package summary description summary='Horde Date package' # Long package description description=' \ Package for creating and manipulating dates. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 14 12:13:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 12:13:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_DOM package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.2, 1.3 Horde_DOM.spec, 1.4, NONE Message-ID: <20090714101306.D5D80600825@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_DOM In directory doto:/tmp/cvs-serv12494 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_DOM.spec Log Message: Converted to new packaging style. Updated to HORDE_3_3_4 tag. --- NEW FILE: package.info --- # The name of Horde source package pear_package='DOM' # The name of the RPM package package='Horde_DOM' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='DOM' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.2.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Wrapper classes for PHP4 domxml compatibility using PHP5s dom functions.' # Long package description description=' \ These classes allow the use of code written for PHP4s domxml \ implementation to work using PHP5s dom implementation. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_DOM/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Sep 2008 09:43:57 -0000 1.1 +++ .cvsignore 14 Jul 2009 10:13:04 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_DOM/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 10 Sep 2008 09:43:57 -0000 1.1 +++ ChangeLog 14 Jul 2009 10:13:04 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-14 Gunnar Wrobel

+ + * package.info: Converted to new packaging style. Updated to + HORDE_3_3_4 tag. + 2008-09-10 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_DOM/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 10 Sep 2008 10:57:01 -0000 1.2 +++ Makefile 14 Jul 2009 10:13:04 -0000 1.3 @@ -1,40 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- Horde_DOM.spec DELETED --- From cvs at kolab.org Tue Jul 14 12:34:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 12:34:51 +0200 (CEST) Subject: gunnar: server/pear/Horde_Editor - New directory Message-ID: <20090714103451.2406660080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Editor In directory doto:/tmp/cvs-serv13154/Horde_Editor Log Message: Directory /kolabrepository/server/pear/Horde_Editor added to the repository From cvs at kolab.org Tue Jul 14 12:39:55 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 12:39:55 +0200 (CEST) Subject: gunnar: server/pear/Horde_Editor .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714103955.1C5E460080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Editor In directory doto:/tmp/cvs-serv13267 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Editor to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Editor' # The name of the RPM package package='Horde_Editor' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Editor' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Editor API' # Long package description description=' \ TODO \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 14 13:42:58 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 13:42:58 +0200 (CEST) Subject: gunnar: server/pear/Horde_Editor-H4 - New directory Message-ID: <20090714114258.1A49960080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Editor-H4 In directory doto:/tmp/cvs-serv14985/Horde_Editor-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Editor-H4 added to the repository From cvs at kolab.org Tue Jul 14 13:43:30 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 13:43:30 +0200 (CEST) Subject: gunnar: server/pear/Horde_Editor-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714114330.E6A36600810@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Editor-H4 In directory doto:/tmp/cvs-serv15038 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Editor-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Editor' # The name of the RPM package package='Horde_Editor-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Editor' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.1.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Editor API' # Long package description description=' \ TODO \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 14 14:30:20 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 14:30:20 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed - New directory Message-ID: <20090714123020.6335460080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed In directory doto:/tmp/cvs-serv16310/Horde_Feed Log Message: Directory /kolabrepository/server/pear/Horde_Feed added to the repository From cvs at kolab.org Tue Jul 14 14:30:44 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 14:30:44 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714123044.EBAB3600810@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed In directory doto:/tmp/cvs-serv16357 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Feed to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Feed' # The name of the RPM package package='Horde_Feed' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Feed' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.2.1dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Xml_Element \ ' # Package summary description summary='Horde Feed libraries' # Long package description description=' \ This package provides support for working with RSS and Atom feeds. \ ' # Source code license license='BSD' From cvs at kolab.org Tue Jul 14 14:49:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 14:49:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed-H4 - New directory Message-ID: <20090714124917.EEEEF60080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed-H4 In directory doto:/tmp/cvs-serv16673/Horde_Feed-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Feed-H4 added to the repository From cvs at kolab.org Tue Jul 14 14:49:47 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 14:49:47 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714124947.75B6A600825@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed-H4 In directory doto:/tmp/cvs-serv16754 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Feed-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Feed' # The name of the RPM package package='Horde_Feed-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/Feed' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.4.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Xml_Element \ ' # Package summary description summary='Horde Feed libraries' # Long package description description=' \ This package provides support for working with RSS and Atom feeds. \ ' # Source code license license='BSD' From cvs at kolab.org Tue Jul 14 15:40:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 15:40:29 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF - New directory Message-ID: <20090714134029.B1512600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF In directory doto:/tmp/cvs-serv18546/Horde_File_PDF Log Message: Directory /kolabrepository/server/pear/Horde_File_PDF added to the repository From cvs at kolab.org Tue Jul 14 15:40:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 15:40:29 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_CSV - New directory Message-ID: <20090714134029.B16E360082A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_CSV In directory doto:/tmp/cvs-serv18546/Horde_File_CSV Log Message: Directory /kolabrepository/server/pear/Horde_File_CSV added to the repository From cvs at kolab.org Tue Jul 14 15:41:32 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 15:41:32 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed-H4 package.info,1.1,1.2 Message-ID: <20090714134132.708C5600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed-H4 In directory doto:/tmp/cvs-serv18593/Horde_Feed-H4 Modified Files: package.info Log Message: Fix install location. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Feed-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 12:49:45 -0000 1.1 +++ package.info 14 Jul 2009 13:41:30 -0000 1.2 @@ -31,7 +31,7 @@ sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed -php_lib_loc='php' +php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ From cvs at kolab.org Tue Jul 14 15:41:44 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 15:41:44 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714134144.A15E860082A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF In directory doto:/tmp/cvs-serv18605/Horde_File_PDF Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_File_CSV and Horde_File_PDF. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='File_PDF' # The name of the RPM package package='Horde_File_PDF' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='File_PDF' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.3.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Reads and writes PDF files' # Long package description description=' \ This package provides PDF generation using only PHP, without requiring \ any external libraries. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 14 15:41:44 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 15:41:44 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_CSV .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714134144.9C793600828@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_CSV In directory doto:/tmp/cvs-serv18605/Horde_File_CSV Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_File_CSV and Horde_File_PDF. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='File_CSV' # The name of the RPM package package='Horde_File_CSV' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='File_CSV' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.1dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Reads and writes CSV files' # Long package description description=' \ The File_CSV package allows reading and creating of CSV data and files. It \ is a fork of the File_CSV class of PEARs File package. \ ' # Source code license license='PHP' From cvs at kolab.org Tue Jul 14 15:58:37 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 15:58:37 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF-H4 - New directory Message-ID: <20090714135837.6A85B600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF-H4 In directory doto:/tmp/cvs-serv19081/Horde_File_PDF-H4 Log Message: Directory /kolabrepository/server/pear/Horde_File_PDF-H4 added to the repository From cvs at kolab.org Tue Jul 14 15:58:37 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 15:58:37 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_CSV-H4 - New directory Message-ID: <20090714135837.6A7C9600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_CSV-H4 In directory doto:/tmp/cvs-serv19081/Horde_File_CSV-H4 Log Message: Directory /kolabrepository/server/pear/Horde_File_CSV-H4 added to the repository From cvs at kolab.org Tue Jul 14 17:53:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 17:53:18 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714155318.0C68D600811@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF-H4 In directory doto:/tmp/cvs-serv21601/Horde_File_PDF-H4 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_File_CSV-H4 and Horde_File_PDF-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='File_PDF' # The name of the RPM package package='Horde_File_PDF' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='File_PDF' # Commit tag or date to user repo_commit=':20090713' # What release number should the source snapshot get (usually a date)? repo_release='20090713' # Version number version='0.3.2dev20090713' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Reads and writes PDF files' # Long package description description=' \ This package provides PDF generation using only PHP, without requiring \ any external libraries. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 14 17:53:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 17:53:18 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_CSV-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714155318.0C5F160080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_CSV-H4 In directory doto:/tmp/cvs-serv21601/Horde_File_CSV-H4 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_File_CSV-H4 and Horde_File_PDF-H4 to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='File_CSV' # The name of the RPM package package='Horde_File_CSV-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='File_CSV' # Commit tag or date to user repo_commit=':20090713' # What release number should the source snapshot get (usually a date)? repo_release='20090713' # Version number version='0.1.1dev20090713' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Reads and writes CSV files' # Long package description description=' \ The File_CSV package allows reading and creating of CSV data and files. It \ is a fork of the File_CSV class of PEARs File package. \ ' # Source code license license='PHP' From cvs at kolab.org Tue Jul 14 18:08:27 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 18:08:27 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form - New directory Message-ID: <20090714160827.B880460080F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form In directory doto:/tmp/cvs-serv22085/Horde_Form Log Message: Directory /kolabrepository/server/pear/Horde_Form added to the repository From cvs at kolab.org Tue Jul 14 18:08:45 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 14 Jul 2009 18:08:45 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090714160845.B9CBF600811@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form In directory doto:/tmp/cvs-serv22126 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Form to CVS. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-14 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Form' # The name of the RPM package package='Horde_Form' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Form' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Token \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Form API' # Long package description description=' \ The Horde_Form:: package provides form rendering, validation, and \ other functionality for the Horde Application Framework. \ ' # Source code license license='LGPL' From cvs at kolab.org Fri Jul 17 16:44:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:44:29 +0200 (CEST) Subject: thomas: server/perl-kolab/sbin kolab_bootstrap.in,1.7,1.7.2.1 Message-ID: <20090717144429.D1717600826@lists.intevation.de> Author: thomas Update of /kolabrepository/server/perl-kolab/sbin In directory doto:/tmp/cvs-serv14735/perl-kolab/sbin Modified Files: Tag: kolab_2_2_branch kolab_bootstrap.in Log Message: kolab_bootstrap: Read bind_pw_hash from Kolab master server, fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) Index: kolab_bootstrap.in =================================================================== RCS file: /kolabrepository/server/perl-kolab/sbin/kolab_bootstrap.in,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -u -d -r1.7 -r1.7.2.1 --- kolab_bootstrap.in 18 Feb 2009 11:44:12 -0000 1.7 +++ kolab_bootstrap.in 17 Jul 2009 14:44:27 -0000 1.7.2.1 @@ -746,13 +746,15 @@ my $master_host = $ldapuri->host(); - print "Reading nobody and calendar passwords from master, please type in master server's root password when asked\n"; + print "Reading bind_pw_hash, php_pw and calendar_pw from master, please type in master server's root password when asked\n"; my $get_master_conf = "ssh -C $master_host 'cat @CONFIG_DIR@/kolab.conf'"; print "$get_master_conf\n"; open( CONF, "$get_master_conf|"); my $conf; $conf .= $_ while(); close(CONF); + $conf =~ /bind_pw_hash : (.*)/; + $bind_pw_hash = $1; $conf =~ /php_pw : (.*)/; $php_pw = $1; $conf =~ /calendar_pw : (.*)/; @@ -865,6 +867,7 @@ print $fd "base_dn : $base_dn\n"; print $fd "bind_dn : $bind_dn\n"; print $fd "bind_pw : $bind_pw\n"; + print $fd "bind_pw_hash : $bind_pw_hash\n"; print $fd "ldap_uri : ldap://127.0.0.1\n"; print $fd "ldap_master_uri : $ldap_uri\n"; print $fd "php_dn : $php_dn\n"; From cvs at kolab.org Fri Jul 17 16:44:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:44:29 +0200 (CEST) Subject: thomas: server release-notes.txt,1.398.2.47,1.398.2.48 Message-ID: <20090717144429.C9BCA600809@lists.intevation.de> Author: thomas Update of /kolabrepository/server In directory doto:/tmp/cvs-serv14735 Modified Files: Tag: kolab_2_2_branch release-notes.txt Log Message: kolab_bootstrap: Read bind_pw_hash from Kolab master server, fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.398.2.47 retrieving revision 1.398.2.48 diff -u -d -r1.398.2.47 -r1.398.2.48 --- release-notes.txt 15 May 2009 09:41:05 -0000 1.398.2.47 +++ release-notes.txt 17 Jul 2009 14:44:27 -0000 1.398.2.48 @@ -1,6 +1,6 @@ Kolab Server 2.2 Release Notes ============================== -(Version 20090515, Kolab Server 2.2.2) +(Version 2009????, Kolab Server 2.2.3) For upgrading and installation instructions, please refer to the 1st.README file in the package directory. @@ -41,6 +41,17 @@ issues found in earlier versions. Additionally all software components have been upgraded to new upstream versions. The specifics are described below. + + +Changes between 2.2.2 and 2.2.3: + + - perl-kolab-2.2.3-2009???? + + kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP + restarts) + + + Packages in the OpenPKG based Kolab server release: Changes between 2.2.1 and 2.2.2: From cvs at kolab.org Fri Jul 17 16:44:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:44:29 +0200 (CEST) Subject: thomas: server/perl-kolab ChangeLog,1.56.2.1,1.56.2.2 Message-ID: <20090717144429.D1541600821@lists.intevation.de> Author: thomas Update of /kolabrepository/server/perl-kolab In directory doto:/tmp/cvs-serv14735/perl-kolab Modified Files: Tag: kolab_2_2_branch ChangeLog Log Message: kolab_bootstrap: Read bind_pw_hash from Kolab master server, fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/perl-kolab/ChangeLog,v retrieving revision 1.56.2.1 retrieving revision 1.56.2.2 diff -u -d -r1.56.2.1 -r1.56.2.2 --- ChangeLog 16 Mar 2009 17:56:54 -0000 1.56.2.1 +++ ChangeLog 17 Jul 2009 14:44:27 -0000 1.56.2.2 @@ -1,3 +1,9 @@ +2009-07-17 Thomas Arendsen Hein + + * sbin/kolab_bootstrap.in: Read bind_pw_hash from Kolab master server, + fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, + causes OpenLDAP restarts) + 2009-03-16 Thomas Arendsen Hein * lib/Kolab/LDAP.pm: Creating the Calendar folder caused an From cvs at kolab.org Fri Jul 17 16:44:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:44:29 +0200 (CEST) Subject: thomas: server/perl-kolab/lib Kolab.pm,1.29,1.29.2.1 Message-ID: <20090717144429.D16D4600822@lists.intevation.de> Author: thomas Update of /kolabrepository/server/perl-kolab/lib In directory doto:/tmp/cvs-serv14735/perl-kolab/lib Modified Files: Tag: kolab_2_2_branch Kolab.pm Log Message: kolab_bootstrap: Read bind_pw_hash from Kolab master server, fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) Index: Kolab.pm =================================================================== RCS file: /kolabrepository/server/perl-kolab/lib/Kolab.pm,v retrieving revision 1.29 retrieving revision 1.29.2.1 diff -u -d -r1.29 -r1.29.2.1 --- Kolab.pm 12 Dec 2008 16:41:49 -0000 1.29 +++ Kolab.pm 17 Jul 2009 14:44:27 -0000 1.29.2.1 @@ -59,7 +59,7 @@ ); # The Kolab version number for the perl-kolab package -our $KOLAB_BASE_VERSION = "2.2.1"; +our $KOLAB_BASE_VERSION = "2.2.3"; # Are current releases cvs based or is this a real release? my $KOLAB_CVS = 0; From cvs at kolab.org Fri Jul 17 16:49:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:49:50 +0200 (CEST) Subject: thomas: server 1st.README, 1.1.2.9, 1.1.2.10 release-notes.txt, 1.398.2.48, 1.398.2.49 Message-ID: <20090717144950.1365A600809@lists.intevation.de> Author: thomas Update of /kolabrepository/server In directory doto:/tmp/cvs-serv14996 Modified Files: Tag: kolab_2_2_branch 1st.README release-notes.txt Log Message: Small adjustments for new version number Index: 1st.README =================================================================== RCS file: /kolabrepository/server/1st.README,v retrieving revision 1.1.2.9 retrieving revision 1.1.2.10 diff -u -d -r1.1.2.9 -r1.1.2.10 --- 1st.README 14 May 2009 16:06:26 -0000 1.1.2.9 +++ 1st.README 17 Jul 2009 14:49:47 -0000 1.1.2.10 @@ -1,6 +1,6 @@ Kolab Server 2.2 Install and Upgrade Information ================================================ -(Version 20090515, Kolab Server 2.2.2) +(Version 2009????, Kolab Server 2.2.3) See http://kolab.org/ for general information about Kolab, or look at http://wiki.kolab.org/ for specific topics. @@ -123,6 +123,12 @@ # /kolab/bin/openpkg rc openldap start # /kolab/sbin/kolabconf -n # /kolab/bin/openpkg rc all start + + +Upgrade from 2.2.2 to 2.2.3 +--------------------------- + +Nothing special has to be done for this upgrade. Upgrade from 2.2.1 to 2.2.2 Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.398.2.48 retrieving revision 1.398.2.49 diff -u -d -r1.398.2.48 -r1.398.2.49 --- release-notes.txt 17 Jul 2009 14:44:27 -0000 1.398.2.48 +++ release-notes.txt 17 Jul 2009 14:49:47 -0000 1.398.2.49 @@ -53,6 +53,8 @@ Packages in the OpenPKG based Kolab server release: + ??? + Changes between 2.2.1 and 2.2.2: From cvs at kolab.org Fri Jul 17 16:49:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:49:50 +0200 (CEST) Subject: thomas: server/perl-kolab ChangeLog,1.56.2.2,1.56.2.3 Message-ID: <20090717144950.1381B600821@lists.intevation.de> Author: thomas Update of /kolabrepository/server/perl-kolab In directory doto:/tmp/cvs-serv14996/perl-kolab Modified Files: Tag: kolab_2_2_branch ChangeLog Log Message: Small adjustments for new version number Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/perl-kolab/ChangeLog,v retrieving revision 1.56.2.2 retrieving revision 1.56.2.3 diff -u -d -r1.56.2.2 -r1.56.2.3 --- ChangeLog 17 Jul 2009 14:44:27 -0000 1.56.2.2 +++ ChangeLog 17 Jul 2009 14:49:47 -0000 1.56.2.3 @@ -3,6 +3,7 @@ * sbin/kolab_bootstrap.in: Read bind_pw_hash from Kolab master server, fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) + * lib/Kolab.pm: bump version number 2009-03-16 Thomas Arendsen Hein From cvs at kolab.org Fri Jul 17 16:52:26 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:52:26 +0200 (CEST) Subject: thomas: server/perl-kolab ChangeLog,1.66,1.67 Message-ID: <20090717145226.6030B600822@lists.intevation.de> Author: thomas Update of /kolabrepository/server/perl-kolab In directory doto:/tmp/cvs-serv15106/perl-kolab Modified Files: ChangeLog Log Message: kolab_bootstrap: Read bind_pw_hash from Kolab master server, fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) (and some version bumps) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/perl-kolab/ChangeLog,v retrieving revision 1.66 retrieving revision 1.67 diff -u -d -r1.66 -r1.67 --- ChangeLog 7 May 2009 18:42:37 -0000 1.66 +++ ChangeLog 17 Jul 2009 14:52:24 -0000 1.67 @@ -1,3 +1,10 @@ +2009-07-17 Thomas Arendsen Hein + + * sbin/kolab_bootstrap.in: Read bind_pw_hash from Kolab master server, + fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, + causes OpenLDAP restarts) + * lib/Kolab.pm: bump version number + 2009-05-07 Richard Bos * sbin/kolab_bootstrap.in: Change $Kolab::config{'LDAPD'} to just From cvs at kolab.org Fri Jul 17 16:52:26 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:52:26 +0200 (CEST) Subject: thomas: server 1st.README,1.8,1.9 release-notes.txt,1.453,1.454 Message-ID: <20090717145226.61254600826@lists.intevation.de> Author: thomas Update of /kolabrepository/server In directory doto:/tmp/cvs-serv15106 Modified Files: 1st.README release-notes.txt Log Message: kolab_bootstrap: Read bind_pw_hash from Kolab master server, fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) (and some version bumps) Index: 1st.README =================================================================== RCS file: /kolabrepository/server/1st.README,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- 1st.README 17 Apr 2009 14:39:06 -0000 1.8 +++ 1st.README 17 Jul 2009 14:52:24 -0000 1.9 @@ -125,6 +125,12 @@ # /kolab/bin/openpkg rc all start +Upgrade from 2.2.2 to 2.2.3 +--------------------------- + +Nothing special has to be done for this upgrade. + + Upgrade from 2.2.1 to 2.2.2 --------------------------- Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.453 retrieving revision 1.454 diff -u -d -r1.453 -r1.454 --- release-notes.txt 11 Jul 2009 15:12:22 -0000 1.453 +++ release-notes.txt 17 Jul 2009 14:52:24 -0000 1.454 @@ -6,7 +6,7 @@ the 1st.README file in the package directory. -Changes between 2.2.2 and 2.???: +Changes between 2.2.3 and 2.???: - apache-php-5.2.8-20081209_kolab3 @@ -107,6 +107,19 @@ - php-5.2.8-20081209_kolab3 Activated the HASH and JSON modules. + + + Packages in the OpenPKG based Kolab server release: + + ??? + + +Changes between 2.2.2 and 2.2.3: + + - perl-kolab-2.2.3-2009???? + + kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP + restarts) Packages in the OpenPKG based Kolab server release: From cvs at kolab.org Fri Jul 17 16:52:26 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:52:26 +0200 (CEST) Subject: thomas: server/perl-kolab/sbin kolab_bootstrap.in,1.10,1.11 Message-ID: <20090717145226.689F8600828@lists.intevation.de> Author: thomas Update of /kolabrepository/server/perl-kolab/sbin In directory doto:/tmp/cvs-serv15106/perl-kolab/sbin Modified Files: kolab_bootstrap.in Log Message: kolab_bootstrap: Read bind_pw_hash from Kolab master server, fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) (and some version bumps) Index: kolab_bootstrap.in =================================================================== RCS file: /kolabrepository/server/perl-kolab/sbin/kolab_bootstrap.in,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- kolab_bootstrap.in 31 May 2009 20:07:02 -0000 1.10 +++ kolab_bootstrap.in 17 Jul 2009 14:52:24 -0000 1.11 @@ -746,13 +746,15 @@ my $master_host = $ldapuri->host(); - print "Reading nobody and calendar passwords from master, please type in master server's root password when asked\n"; + print "Reading bind_pw_hash, php_pw and calendar_pw from master, please type in master server's root password when asked\n"; my $get_master_conf = "ssh -C $master_host 'cat @CONFIG_DIR@/kolab.conf'"; print "$get_master_conf\n"; open( CONF, "$get_master_conf|"); my $conf; $conf .= $_ while(); close(CONF); + $conf =~ /bind_pw_hash : (.*)/; + $bind_pw_hash = $1; $conf =~ /php_pw : (.*)/; $php_pw = $1; $conf =~ /calendar_pw : (.*)/; @@ -865,6 +867,7 @@ print $fd "base_dn : $base_dn\n"; print $fd "bind_dn : $bind_dn\n"; print $fd "bind_pw : $bind_pw\n"; + print $fd "bind_pw_hash : $bind_pw_hash\n"; print $fd "ldap_uri : ldap://127.0.0.1\n"; print $fd "ldap_master_uri : $ldap_uri\n"; print $fd "php_dn : $php_dn\n"; From cvs at kolab.org Fri Jul 17 16:52:26 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:52:26 +0200 (CEST) Subject: thomas: server/perl-kolab/lib Kolab.pm,1.29,1.30 Message-ID: <20090717145226.64915600827@lists.intevation.de> Author: thomas Update of /kolabrepository/server/perl-kolab/lib In directory doto:/tmp/cvs-serv15106/perl-kolab/lib Modified Files: Kolab.pm Log Message: kolab_bootstrap: Read bind_pw_hash from Kolab master server, fixes kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) (and some version bumps) Index: Kolab.pm =================================================================== RCS file: /kolabrepository/server/perl-kolab/lib/Kolab.pm,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- Kolab.pm 12 Dec 2008 16:41:49 -0000 1.29 +++ Kolab.pm 17 Jul 2009 14:52:24 -0000 1.30 @@ -59,7 +59,7 @@ ); # The Kolab version number for the perl-kolab package -our $KOLAB_BASE_VERSION = "2.2.1"; +our $KOLAB_BASE_VERSION = "2.3.0"; # Are current releases cvs based or is this a real release? my $KOLAB_CVS = 0; From cvs at kolab.org Fri Jul 17 16:53:07 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 17 Jul 2009 16:53:07 +0200 (CEST) Subject: thomas: server install-kolab.sh,1.62,1.63 Message-ID: <20090717145307.E806D600827@lists.intevation.de> Author: thomas Update of /kolabrepository/server In directory doto:/tmp/cvs-serv15222 Modified Files: install-kolab.sh Log Message: bumb base version Index: install-kolab.sh =================================================================== RCS file: /kolabrepository/server/install-kolab.sh,v retrieving revision 1.62 retrieving revision 1.63 diff -u -d -r1.62 -r1.63 --- install-kolab.sh 14 May 2009 14:38:33 -0000 1.62 +++ install-kolab.sh 17 Jul 2009 14:53:05 -0000 1.63 @@ -12,7 +12,7 @@ # # This program is free software under the GNU GPL (>=v2) -KOLAB_VERSION="2.2.2+CVS" +KOLAB_VERSION="2.2.3+CVS" KID="19414" TAG="kolab" From cvs at kolab.org Sat Jul 18 00:19:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 18 Jul 2009 00:19:06 +0200 (CEST) Subject: mathieu: server/kolabd/kolabd/templates DB_CONFIG.slapd.template.in, 1.4, 1.5 Message-ID: <20090717221906.5E5C1600821@lists.intevation.de> Author: mathieu Update of /kolabrepository/server/kolabd/kolabd/templates In directory doto:/tmp/cvs-serv26130/templates Modified Files: DB_CONFIG.slapd.template.in Log Message: templates/DB_CONFIG.slapd.template.in: change ownership from kolab to openldap Index: DB_CONFIG.slapd.template.in =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/templates/DB_CONFIG.slapd.template.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- DB_CONFIG.slapd.template.in 27 Sep 2006 16:48:30 -0000 1.4 +++ DB_CONFIG.slapd.template.in 17 Jul 2009 22:19:04 -0000 1.5 @@ -1,7 +1,7 @@ KOLAB_META_START TARGET=@ldapserver_dir@/DB_CONFIG PERMISSIONS=0640 -OWNERSHIP=@kolab_musr@:@kolab_rgrp@ +OWNERSHIP=@ldapserver_usr@:@ldapserver_rgrp@ KOLAB_META_END # (c) 2005 Klaraelvdalens Datakonsult AB # Written by Steffen Hansen From cvs at kolab.org Sat Jul 18 00:19:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Sat, 18 Jul 2009 00:19:06 +0200 (CEST) Subject: mathieu: server/kolabd/kolabd ChangeLog,1.260,1.261 Message-ID: <20090717221906.4E759600809@lists.intevation.de> Author: mathieu Update of /kolabrepository/server/kolabd/kolabd In directory doto:/tmp/cvs-serv26130 Modified Files: ChangeLog Log Message: templates/DB_CONFIG.slapd.template.in: change ownership from kolab to openldap Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/ChangeLog,v retrieving revision 1.260 retrieving revision 1.261 diff -u -d -r1.260 -r1.261 --- ChangeLog 5 Jun 2009 12:54:01 -0000 1.260 +++ ChangeLog 17 Jul 2009 22:19:03 -0000 1.261 @@ -1,3 +1,8 @@ +2009-07-18 Mathieu Parent + + * templates/DB_CONFIG.slapd.template.in: change ownership from kolab to + openldap + 2009-06-05 Richard Bos * templates/resmgr.conf.template.in: Include pid in kolabfilter log From cvs at kolab.org Mon Jul 20 10:39:09 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 10:39:09 +0200 (CEST) Subject: gunnar: server/patches/horde-webmail/1.2.0 horde-webmail-1.2.0_kolab_openpkg.patch, 1.32.2.4.2.13, 1.32.2.4.2.14 Message-ID: <20090720083909.CBDBA600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/patches/horde-webmail/1.2.0 In directory doto:/tmp/cvs-serv14542/patches/horde-webmail/1.2.0 Modified Files: Tag: suc_branch horde-webmail-1.2.0_kolab_openpkg.patch Log Message: Updated header and translations for the acl editing patch. Added patch that closes the context menu when clicking in the left pane. Index: horde-webmail-1.2.0_kolab_openpkg.patch =================================================================== RCS file: /kolabrepository/server/patches/horde-webmail/1.2.0/Attic/horde-webmail-1.2.0_kolab_openpkg.patch,v retrieving revision 1.32.2.4.2.13 retrieving revision 1.32.2.4.2.14 diff -u -d -r1.32.2.4.2.13 -r1.32.2.4.2.14 --- horde-webmail-1.2.0_kolab_openpkg.patch 26 Jun 2009 10:12:10 -0000 1.32.2.4.2.13 +++ horde-webmail-1.2.0_kolab_openpkg.patch 20 Jul 2009 08:39:06 -0000 1.32.2.4.2.14 @@ -27213,8 +27213,8 @@ horde-webmail/dimp/po/de_DE.po | 3 +++ horde-webmail/dimp/templates/index/index.inc | 1 + horde-webmail/imp/acl.php | 12 ++++++++++-- - horde-webmail/imp/templates/acl/acl.html | 6 ++++++ - 7 files changed, 22 insertions(+), 2 deletions(-) + horde-webmail/imp/templates/acl/acl.html | 13 +++++++++++++ + 7 files changed, 29 insertions(+), 2 deletions(-) diff --git a/horde-webmail/dimp/js/DimpBase.js b/horde-webmail/dimp/js/DimpBase.js index 39a728b..c4eb9f4 100644 @@ -27244,7 +27244,7 @@ index 2f1c11c..973776f 100644 Binary files a/horde-webmail/dimp/locale/de_DE/LC_MESSAGES/dimp.mo and b/horde-webmail/dimp/locale/de_DE/LC_MESSAGES/dimp.mo differ diff --git a/horde-webmail/dimp/po/de_DE.po b/horde-webmail/dimp/po/de_DE.po -index c1a6f52..6de9591 100644 +index a536db6..0486297 100644 --- a/horde-webmail/dimp/po/de_DE.po +++ b/horde-webmail/dimp/po/de_DE.po @@ -791,3 +791,6 @@ msgstr "entfernen" @@ -27253,7 +27253,7 @@ msgstr "Ergebnisse gefunden" + +msgid "Share Folder" -+msgstr "Gemeinsame Ordner" ++msgstr "Berechtigungen" diff --git a/horde-webmail/dimp/templates/index/index.inc b/horde-webmail/dimp/templates/index/index.inc index 21939e0..7c02fe7 100644 --- a/horde-webmail/dimp/templates/index/index.inc @@ -27296,26 +27296,38 @@ $t->set('sharedimg', Horde::img('shared.png', _("Change Folder"))); $t->set('options', IMP::flistSelect('', true, array(), $folder)); diff --git a/horde-webmail/imp/templates/acl/acl.html b/horde-webmail/imp/templates/acl/acl.html -index 79580aa..72cf1c5 100644 +index 79580aa..ae85ff4 100644 --- a/horde-webmail/imp/templates/acl/acl.html +++ b/horde-webmail/imp/templates/acl/acl.html -@@ -7,6 +7,7 @@ +@@ -2,11 +2,14 @@ + + + ++ +

+ Share mail folders
++ +
  • -@@ -17,6 +18,7 @@ +@@ -17,6 +20,12 @@
++ ++
++ ++
++
+
-@@ -76,9 +78,13 @@ +@@ -76,9 +85,13 @@ @@ -27330,11 +27342,17 @@   -- -tg: (ad147a4..) t/dimp/H/GW/AclView (depends on: t/dimp/H/GW/FoldersView) +tg: (f251c16..) t/dimp/H/GW/AclView (depends on: t/dimp/H/GW/FoldersView) -- TOPGIT patch commit log ======================= +commit e9630629c7479c73d3eb156f00544c34e95f0597 +Author: Gunnar Wrobel

+Date: Mon Jul 20 09:36:01 2009 +0200 + + Fix translation and improve header. + commit 57041c04c322dd7dc57da5b171923b7ab000ec0a Author: Gunnar Wrobel

Date: Sun Jun 21 23:58:30 2009 +0200 @@ -27521,3 +27539,62 @@ Date: Sun Mar 8 19:01:41 2009 +0000 Completed the hack. +From: Gunnar Wrobel

+Subject: [PATCH] t/dimp/H/BL/CloseContextMenu + +Close the context menu when clicking into the Dimp menu. + +Provided by Boris Lorbeer + +Signed-off-by: Gunnar Wrobel

+ +--- + horde-webmail/dimp/config/menu.php | 2 +- + horde-webmail/dimp/js/DimpBase.js | 3 ++- + 2 files changed, 3 insertions(+), 2 deletions(-) + +diff --git a/horde-webmail/dimp/config/menu.php b/horde-webmail/dimp/config/menu.php +index b5e0a5c..a079da6 100644 +--- a/horde-webmail/dimp/config/menu.php ++++ b/horde-webmail/dimp/config/menu.php +@@ -31,7 +31,7 @@ + + $site_menu = array( + 'folders' => array( +- 'action' => 'DimpBase.go("app:horde", "' . Horde::url($GLOBALS['registry']->get('webroot', 'imp') . '/folders.php', true) . '")', ++ 'action' => 'DimpCore.DMenu.close(); DimpBase.go("app:horde", "' . Horde::url($GLOBALS['registry']->get('webroot', 'imp') . '/folders.php', true) . '")', + 'text' => _('Folder Subscription'), + 'icon' => $GLOBALS['registry']->getImageDir('horde') . '/prefs.png'), + ); +diff --git a/horde-webmail/dimp/js/DimpBase.js b/horde-webmail/dimp/js/DimpBase.js +index c4eb9f4..d90f09b 100644 +--- a/horde-webmail/dimp/js/DimpBase.js ++++ b/horde-webmail/dimp/js/DimpBase.js +@@ -1507,6 +1507,7 @@ var DimpBase = { + + case 'folder': + case 'special': ++ DimpCore.DMenu.close(); + e.stop(); + return this.go('folder:' + li.readAttribute('mbox')); + break; +@@ -1903,7 +1904,7 @@ var DimpBase = { + tmp = $('applicationfolders'); + if (tmp) { + tmp.select('ul li.custom a').each(function(s) { +- C({ d: s, f: this.go.bind(this, 'app:' + s.readAttribute('app')) }); ++ C({ d: s, f: function(data){DimpCore.DMenu.close(); this.go('app:' + s.readAttribute('app'), data)}.bind(this) }); + }, this); + } + +-- +tg: (19ee6e6..) t/dimp/H/BL/CloseContextMenu (depends on: t/kronolith/HK/GW/AnonymousiCalDownload) +-- +TOPGIT patch commit log +======================= + +commit b4b3190a4fb88e1843ff86adde4897dea21046db +Author: Gunnar Wrobel

+Date: Mon Jul 20 09:39:24 2009 +0200 + + Close the context menu when clicking into the Dimp menu. From cvs at kolab.org Mon Jul 20 10:39:09 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 10:39:09 +0200 (CEST) Subject: gunnar: server/patches/horde-webmail/1.2.0/merges t_dimp_H_BL_CloseContextMenu.diff, NONE, 1.1.2.1 series, 1.1.4.3, 1.1.4.4 t_dimp_H_GW_AclView.diff, 1.1.2.2, 1.1.2.3 Message-ID: <20090720083909.CBD3260080C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/patches/horde-webmail/1.2.0/merges In directory doto:/tmp/cvs-serv14542/patches/horde-webmail/1.2.0/merges Modified Files: Tag: suc_branch series t_dimp_H_GW_AclView.diff Added Files: Tag: suc_branch t_dimp_H_BL_CloseContextMenu.diff Log Message: Updated header and translations for the acl editing patch. Added patch that closes the context menu when clicking in the left pane. --- NEW FILE: t_dimp_H_BL_CloseContextMenu.diff --- From: Gunnar Wrobel

Subject: [PATCH] t/dimp/H/BL/CloseContextMenu Close the context menu when clicking into the Dimp menu. Provided by Boris Lorbeer Signed-off-by: Gunnar Wrobel

--- horde-webmail/dimp/config/menu.php | 2 +- horde-webmail/dimp/js/DimpBase.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/horde-webmail/dimp/config/menu.php b/horde-webmail/dimp/config/menu.php index b5e0a5c..a079da6 100644 --- a/horde-webmail/dimp/config/menu.php +++ b/horde-webmail/dimp/config/menu.php @@ -31,7 +31,7 @@ $site_menu = array( 'folders' => array( - 'action' => 'DimpBase.go("app:horde", "' . Horde::url($GLOBALS['registry']->get('webroot', 'imp') . '/folders.php', true) . '")', + 'action' => 'DimpCore.DMenu.close(); DimpBase.go("app:horde", "' . Horde::url($GLOBALS['registry']->get('webroot', 'imp') . '/folders.php', true) . '")', 'text' => _('Folder Subscription'), 'icon' => $GLOBALS['registry']->getImageDir('horde') . '/prefs.png'), ); diff --git a/horde-webmail/dimp/js/DimpBase.js b/horde-webmail/dimp/js/DimpBase.js index c4eb9f4..d90f09b 100644 --- a/horde-webmail/dimp/js/DimpBase.js +++ b/horde-webmail/dimp/js/DimpBase.js @@ -1507,6 +1507,7 @@ var DimpBase = { case 'folder': case 'special': + DimpCore.DMenu.close(); e.stop(); return this.go('folder:' + li.readAttribute('mbox')); break; @@ -1903,7 +1904,7 @@ var DimpBase = { tmp = $('applicationfolders'); if (tmp) { tmp.select('ul li.custom a').each(function(s) { - C({ d: s, f: this.go.bind(this, 'app:' + s.readAttribute('app')) }); + C({ d: s, f: function(data){DimpCore.DMenu.close(); this.go('app:' + s.readAttribute('app'), data)}.bind(this) }); }, this); } -- tg: (19ee6e6..) t/dimp/H/BL/CloseContextMenu (depends on: t/kronolith/HK/GW/AnonymousiCalDownload) -- TOPGIT patch commit log ======================= commit b4b3190a4fb88e1843ff86adde4897dea21046db Author: Gunnar Wrobel

Date: Mon Jul 20 09:39:24 2009 +0200 Close the context menu when clicking into the Dimp menu. Index: series =================================================================== RCS file: /kolabrepository/server/patches/horde-webmail/1.2.0/merges/Attic/series,v retrieving revision 1.1.4.3 retrieving revision 1.1.4.4 diff -u -d -r1.1.4.3 -r1.1.4.4 --- series 22 Apr 2009 16:18:51 -0000 1.1.4.3 +++ series 20 Jul 2009 08:39:07 -0000 1.1.4.4 @@ -2,3 +2,4 @@ issue3329.patch t_dimp_H_GW_AclView.diff t_dimp_H_GW_FoldersView.diff +t_dimp_H_BL_CloseContextMenu.diff Index: t_dimp_H_GW_AclView.diff =================================================================== RCS file: /kolabrepository/server/patches/horde-webmail/1.2.0/merges/Attic/t_dimp_H_GW_AclView.diff,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- t_dimp_H_GW_AclView.diff 21 Jun 2009 22:13:48 -0000 1.1.2.2 +++ t_dimp_H_GW_AclView.diff 20 Jul 2009 08:39:07 -0000 1.1.2.3 @@ -18,8 +18,8 @@ horde-webmail/dimp/po/de_DE.po | 3 +++ horde-webmail/dimp/templates/index/index.inc | 1 + horde-webmail/imp/acl.php | 12 ++++++++++-- - horde-webmail/imp/templates/acl/acl.html | 6 ++++++ - 7 files changed, 22 insertions(+), 2 deletions(-) + horde-webmail/imp/templates/acl/acl.html | 13 +++++++++++++ + 7 files changed, 29 insertions(+), 2 deletions(-) diff --git a/horde-webmail/dimp/js/DimpBase.js b/horde-webmail/dimp/js/DimpBase.js index 39a728b..c4eb9f4 100644 @@ -49,7 +49,7 @@ index 2f1c11c..973776f 100644 Binary files a/horde-webmail/dimp/locale/de_DE/LC_MESSAGES/dimp.mo and b/horde-webmail/dimp/locale/de_DE/LC_MESSAGES/dimp.mo differ diff --git a/horde-webmail/dimp/po/de_DE.po b/horde-webmail/dimp/po/de_DE.po -index c1a6f52..6de9591 100644 +index a536db6..0486297 100644 --- a/horde-webmail/dimp/po/de_DE.po +++ b/horde-webmail/dimp/po/de_DE.po @@ -791,3 +791,6 @@ msgstr "entfernen" @@ -58,7 +58,7 @@ msgstr "Ergebnisse gefunden" + +msgid "Share Folder" -+msgstr "Gemeinsame Ordner" ++msgstr "Berechtigungen" diff --git a/horde-webmail/dimp/templates/index/index.inc b/horde-webmail/dimp/templates/index/index.inc index 21939e0..7c02fe7 100644 --- a/horde-webmail/dimp/templates/index/index.inc @@ -101,26 +101,38 @@ $t->set('sharedimg', Horde::img('shared.png', _("Change Folder"))); $t->set('options', IMP::flistSelect('', true, array(), $folder)); diff --git a/horde-webmail/imp/templates/acl/acl.html b/horde-webmail/imp/templates/acl/acl.html -index 79580aa..72cf1c5 100644 +index 79580aa..ae85ff4 100644 --- a/horde-webmail/imp/templates/acl/acl.html +++ b/horde-webmail/imp/templates/acl/acl.html -@@ -7,6 +7,7 @@ +@@ -2,11 +2,14 @@ + + + ++ +

+ Share mail folders
++ +
  • -@@ -17,6 +18,7 @@ +@@ -17,6 +20,12 @@
++ ++
++ ++
++
+
-@@ -76,9 +78,13 @@ +@@ -76,9 +85,13 @@ @@ -135,10 +147,16 @@   -- -tg: (ad147a4..) t/dimp/H/GW/AclView (depends on: t/dimp/H/GW/FoldersView) +tg: (f251c16..) t/dimp/H/GW/AclView (depends on: t/dimp/H/GW/FoldersView) -- TOPGIT patch commit log ======================= + +commit e9630629c7479c73d3eb156f00544c34e95f0597 +Author: Gunnar Wrobel

+Date: Mon Jul 20 09:36:01 2009 +0200 + + Fix translation and improve header. commit 57041c04c322dd7dc57da5b171923b7ab000ec0a Author: Gunnar Wrobel

From cvs at kolab.org Mon Jul 20 16:26:55 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 16:26:55 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form-H4 - New directory Message-ID: <20090720142655.B4B85600809@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form-H4 In directory doto:/tmp/cvs-serv25962/Horde_Form-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Form-H4 added to the repository From cvs at kolab.org Mon Jul 20 16:27:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 16:27:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090720142715.BC40460082C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form-H4 In directory doto:/tmp/cvs-serv26013 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Form-H4 to cvs. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-20 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Form' # The name of the RPM package package='Horde_Form-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Form' # Commit tag or date to user repo_commit=':20090713' # What release number should the source snapshot get (usually a date)? repo_release='20090713' # Version number version='0.0.2dev20090713' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Token \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Form API' # Long package description description=' \ The Horde_Form:: package provides form rendering, validation, and \ other functionality for the Horde Application Framework. \ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 20 16:38:21 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 16:38:21 +0200 (CEST) Subject: gunnar: server/pear/Horde_Group package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.2, 1.3 Makefile, 1.3, 1.4 Horde_Group.spec, 1.6, NONE Message-ID: <20090720143821.45E13600834@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Group In directory doto:/tmp/cvs-serv26395 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_Group.spec Log Message: Converted to new packaging style and updated to tag HORDE_3_3_4. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Group' # The name of the RPM package package='Horde_Group' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Group' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_DataTree \ PreReq: Horde_Auth \ ' # Package summary description summary='Horde User Groups System' # Long package description description=' \ Package for managing and accessing the Horde groups system.\ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Group/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:25:07 -0000 1.1 +++ .cvsignore 20 Jul 2009 14:38:18 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Group/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 16 Sep 2008 12:50:39 -0000 1.2 +++ ChangeLog 20 Jul 2009 14:38:19 -0000 1.3 @@ -1,3 +1,7 @@ +2009-07-20 Gunnar Wrobel

+ + * package.info: Converted to new packaging style and updated to tag HORDE_3_3_4. + 2008-09-16 Gunnar Wrobel

* Horde_Group.spec: Updated to Group-0.1.0. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Group/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile 16 Sep 2008 12:50:39 -0000 1.3 +++ Makefile 20 Jul 2009 14:38:19 -0000 1.4 @@ -1,41 +1 @@ -HORDE_PACKAGE = $(shell grep "%define[ ]*V_horde_package" *.spec | sed -e "s/.*V_horde_package \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(HORDE_PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- Horde_Group.spec DELETED --- From cvs at kolab.org Mon Jul 20 16:43:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 16:43:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Group-H4 - New directory Message-ID: <20090720144312.0E1A660080C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Group-H4 In directory doto:/tmp/cvs-serv26555/Horde_Group-H4 Log Message: Directory /kolabrepository/server/pear/Horde_Group-H4 added to the repository From cvs at kolab.org Mon Jul 20 16:43:34 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 16:43:34 +0200 (CEST) Subject: gunnar: server/pear/Horde_Group-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090720144334.554AB600828@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Group-H4 In directory doto:/tmp/cvs-serv26599 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_Group-H4 to cvs. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-20 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Group' # The name of the RPM package package='Horde_Group' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Group' # Commit tag or date to user repo_commit=':20090713' # What release number should the source snapshot get (usually a date)? repo_release='20090713' # Version number version='0.1.0dev20090713' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_DataTree \ PreReq: Horde_Auth \ ' # Package summary description summary='Horde User Groups System' # Long package description description=' \ Package for managing and accessing the Horde groups system.\ ' # Source code license license='LGPL' From cvs at kolab.org Mon Jul 20 16:53:11 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 16:53:11 +0200 (CEST) Subject: gunnar: server/pear/Horde_History package.info, NONE, 1.1 .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Horde_History.spec, 1.3, NONE Message-ID: <20090720145311.0530260080C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_History In directory doto:/tmp/cvs-serv26871 Modified Files: .cvsignore ChangeLog Makefile Added Files: package.info Removed Files: Horde_History.spec Log Message: Converted to new pacakging style. Updated to tag HORDE_3_3_4. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_History' # The name of the RPM package package='Horde_History' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='History' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='API for tracking the history of an object.' # Long package description description=' \ This API provides a way to track changes on arbitrary pieces of data \ in Horde applications. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_History/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:28:17 -0000 1.1 +++ .cvsignore 20 Jul 2009 14:53:08 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_History/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 11 Sep 2008 16:28:17 -0000 1.1 +++ ChangeLog 20 Jul 2009 14:53:08 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-20 Gunnar Wrobel

+ + * package.info: Converted to new pacakging style. Updated to tag + HORDE_3_3_4. + 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_History/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 11 Sep 2008 16:28:17 -0000 1.1 +++ Makefile 20 Jul 2009 14:53:08 -0000 1.2 @@ -1,40 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk --- Horde_History.spec DELETED --- From cvs at kolab.org Mon Jul 20 17:04:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 17:04:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_History-H4 - New directory Message-ID: <20090720150404.0DD33600809@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_History-H4 In directory doto:/tmp/cvs-serv27121/Horde_History-H4 Log Message: Directory /kolabrepository/server/pear/Horde_History-H4 added to the repository From cvs at kolab.org Mon Jul 20 17:04:55 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 20 Jul 2009 17:04:55 +0200 (CEST) Subject: gunnar: server/pear/Horde_History-H4 .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090720150455.DF5F760080C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_History-H4 In directory doto:/tmp/cvs-serv27173 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added Horde_History-H4 to cvs. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-20 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='History' # The name of the RPM package package='Horde_History-H4' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-GIT' # The name of the package in the source repository pear_pkgdir='framework/History' # Commit tag or date to user repo_commit='75980849adf24856c0cca39fdad5b145b15da30d' # What release number should the source snapshot get (usually a date)? repo_release='20090711' # Version number version='0.1.0dev20090711' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='API for tracking the history of an object.' # Long package description description=' \ This API provides a way to track changes on arbitrary pieces of data \ in Horde applications. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:22:01 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:22:01 +0200 (CEST) Subject: gunnar: server/pear/Horde_Http_Client - New directory Message-ID: <20090721192201.E18BF60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Http_Client In directory doto:/tmp/cvs-serv27094/Horde_Http_Client Log Message: Directory /kolabrepository/server/pear/Horde_Http_Client added to the repository From cvs at kolab.org Tue Jul 21 21:22:11 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:22:11 +0200 (CEST) Subject: gunnar: server/pear/Horde_IMAP - New directory Message-ID: <20090721192211.5405C60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_IMAP In directory doto:/tmp/cvs-serv27115/Horde_IMAP Log Message: Directory /kolabrepository/server/pear/Horde_IMAP added to the repository From cvs at kolab.org Tue Jul 21 21:22:20 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:22:20 +0200 (CEST) Subject: gunnar: server/pear/Horde_Image - New directory Message-ID: <20090721192220.18BC660080C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Image In directory doto:/tmp/cvs-serv27152/Horde_Image Log Message: Directory /kolabrepository/server/pear/Horde_Image added to the repository From cvs at kolab.org Tue Jul 21 21:22:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:22:29 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab - New directory Message-ID: <20090721192229.5802160082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab In directory doto:/tmp/cvs-serv27172/Horde_Kolab Log Message: Directory /kolabrepository/server/pear/Horde_Kolab added to the repository From cvs at kolab.org Tue Jul 21 21:22:38 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:22:38 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_Filter - New directory Message-ID: <20090721192238.3F872600828@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_Filter In directory doto:/tmp/cvs-serv27191/Horde_Kolab_Filter Log Message: Directory /kolabrepository/server/pear/Horde_Kolab_Filter added to the repository From cvs at kolab.org Tue Jul 21 21:22:46 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:22:46 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_Format - New directory Message-ID: <20090721192246.A6F7560082C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_Format In directory doto:/tmp/cvs-serv27205/Horde_Kolab_Format Log Message: Directory /kolabrepository/server/pear/Horde_Kolab_Format added to the repository From cvs at kolab.org Tue Jul 21 21:22:54 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:22:54 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_FreeBusy - New directory Message-ID: <20090721192254.CC07F60082D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_FreeBusy In directory doto:/tmp/cvs-serv27229/Horde_Kolab_FreeBusy Log Message: Directory /kolabrepository/server/pear/Horde_Kolab_FreeBusy added to the repository From cvs at kolab.org Tue Jul 21 21:23:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:23:03 +0200 (CEST) Subject: gunnar: server/pear/Horde_Lock - New directory Message-ID: <20090721192303.D38CF60082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Lock In directory doto:/tmp/cvs-serv27246/Horde_Lock Log Message: Directory /kolabrepository/server/pear/Horde_Lock added to the repository From cvs at kolab.org Tue Jul 21 21:23:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:23:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Log - New directory Message-ID: <20090721192312.EB15560082F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Log In directory doto:/tmp/cvs-serv27263/Horde_Log Log Message: Directory /kolabrepository/server/pear/Horde_Log added to the repository From cvs at kolab.org Tue Jul 21 21:23:21 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:23:21 +0200 (CEST) Subject: gunnar: server/pear/Horde_Maintenance - New directory Message-ID: <20090721192321.EAEE6600830@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Maintenance In directory doto:/tmp/cvs-serv27285/Horde_Maintenance Log Message: Directory /kolabrepository/server/pear/Horde_Maintenance added to the repository From cvs at kolab.org Tue Jul 21 21:23:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:23:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Memcache - New directory Message-ID: <20090721192331.B51E0600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Memcache In directory doto:/tmp/cvs-serv27299/Horde_Memcache Log Message: Directory /kolabrepository/server/pear/Horde_Memcache added to the repository From cvs at kolab.org Tue Jul 21 21:23:40 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:23:40 +0200 (CEST) Subject: gunnar: server/pear/Horde_Mobile - New directory Message-ID: <20090721192340.CD6AF600832@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Mobile In directory doto:/tmp/cvs-serv27319/Horde_Mobile Log Message: Directory /kolabrepository/server/pear/Horde_Mobile added to the repository From cvs at kolab.org Tue Jul 21 21:23:48 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:23:48 +0200 (CEST) Subject: gunnar: server/pear/Horde_Net_IMSP - New directory Message-ID: <20090721192348.DAFEA600834@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Net_IMSP In directory doto:/tmp/cvs-serv27338/Horde_Net_IMSP Log Message: Directory /kolabrepository/server/pear/Horde_Net_IMSP added to the repository From cvs at kolab.org Tue Jul 21 21:23:57 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:23:57 +0200 (CEST) Subject: gunnar: server/pear/Horde_Net_SMS - New directory Message-ID: <20090721192357.46787600833@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Net_SMS In directory doto:/tmp/cvs-serv27355/Horde_Net_SMS Log Message: Directory /kolabrepository/server/pear/Horde_Net_SMS added to the repository From cvs at kolab.org Tue Jul 21 21:24:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:24:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_SQL - New directory Message-ID: <20090721192406.7A2F4600835@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SQL In directory doto:/tmp/cvs-serv27383/Horde_SQL Log Message: Directory /kolabrepository/server/pear/Horde_SQL added to the repository From cvs at kolab.org Tue Jul 21 21:24:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:24:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_SessionHandler - New directory Message-ID: <20090721192414.B1C11600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SessionHandler In directory doto:/tmp/cvs-serv27405/Horde_SessionHandler Log Message: Directory /kolabrepository/server/pear/Horde_SessionHandler added to the repository From cvs at kolab.org Tue Jul 21 21:24:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:24:22 +0200 (CEST) Subject: gunnar: server/pear/Horde_Share - New directory Message-ID: <20090721192422.F215E600837@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Share In directory doto:/tmp/cvs-serv27424/Horde_Share Log Message: Directory /kolabrepository/server/pear/Horde_Share added to the repository From cvs at kolab.org Tue Jul 21 21:24:30 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:24:30 +0200 (CEST) Subject: gunnar: server/pear/Horde_SpellChecker - New directory Message-ID: <20090721192430.E548A600838@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SpellChecker In directory doto:/tmp/cvs-serv27442/Horde_SpellChecker Log Message: Directory /kolabrepository/server/pear/Horde_SpellChecker added to the repository From cvs at kolab.org Tue Jul 21 21:24:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:24:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_SyncML - New directory Message-ID: <20090721192439.1F3E2600839@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SyncML In directory doto:/tmp/cvs-serv27462/Horde_SyncML Log Message: Directory /kolabrepository/server/pear/Horde_SyncML added to the repository From cvs at kolab.org Tue Jul 21 21:24:48 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:24:48 +0200 (CEST) Subject: gunnar: server/pear/Horde_Template - New directory Message-ID: <20090721192448.18F5860083A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Template In directory doto:/tmp/cvs-serv27480/Horde_Template Log Message: Directory /kolabrepository/server/pear/Horde_Template added to the repository From cvs at kolab.org Tue Jul 21 21:24:56 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:24:56 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Diff - New directory Message-ID: <20090721192456.AB6C360083B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Diff In directory doto:/tmp/cvs-serv27494/Horde_Text_Diff Log Message: Directory /kolabrepository/server/pear/Horde_Text_Diff added to the repository From cvs at kolab.org Tue Jul 21 21:25:05 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:25:05 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Filter - New directory Message-ID: <20090721192505.96BFE60083C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Filter In directory doto:/tmp/cvs-serv27509/Horde_Text_Filter Log Message: Directory /kolabrepository/server/pear/Horde_Text_Filter added to the repository From cvs at kolab.org Tue Jul 21 21:25:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:25:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Flowed - New directory Message-ID: <20090721192515.5068360083D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Flowed In directory doto:/tmp/cvs-serv27524/Horde_Text_Flowed Log Message: Directory /kolabrepository/server/pear/Horde_Text_Flowed added to the repository From cvs at kolab.org Tue Jul 21 21:25:25 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:25:25 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Textile - New directory Message-ID: <20090721192525.5FE3B60083F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Textile In directory doto:/tmp/cvs-serv27539/Horde_Text_Textile Log Message: Directory /kolabrepository/server/pear/Horde_Text_Textile added to the repository From cvs at kolab.org Tue Jul 21 21:25:35 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:25:35 +0200 (CEST) Subject: gunnar: server/pear/Horde_Token - New directory Message-ID: <20090721192535.A808860C4A1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Token In directory doto:/tmp/cvs-serv27557/Horde_Token Log Message: Directory /kolabrepository/server/pear/Horde_Token added to the repository From cvs at kolab.org Tue Jul 21 21:25:45 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:25:45 +0200 (CEST) Subject: gunnar: server/pear/Horde_Tree - New directory Message-ID: <20090721192545.A9DB260C4A5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Tree In directory doto:/tmp/cvs-serv27572/Horde_Tree Log Message: Directory /kolabrepository/server/pear/Horde_Tree added to the repository From cvs at kolab.org Tue Jul 21 21:25:56 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:25:56 +0200 (CEST) Subject: gunnar: server/pear/Horde_UI - New directory Message-ID: <20090721192556.7995D60C4A2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_UI In directory doto:/tmp/cvs-serv27590/Horde_UI Log Message: Directory /kolabrepository/server/pear/Horde_UI added to the repository From cvs at kolab.org Tue Jul 21 21:26:05 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:26:05 +0200 (CEST) Subject: gunnar: server/pear/Horde_VC - New directory Message-ID: <20090721192605.C5EE660C4A6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_VC In directory doto:/tmp/cvs-serv27616/Horde_VC Log Message: Directory /kolabrepository/server/pear/Horde_VC added to the repository From cvs at kolab.org Tue Jul 21 21:26:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:26:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_View - New directory Message-ID: <20090721192614.9573B60C4A9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_View In directory doto:/tmp/cvs-serv27633/Horde_View Log Message: Directory /kolabrepository/server/pear/Horde_View added to the repository From cvs at kolab.org Tue Jul 21 21:26:23 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:26:23 +0200 (CEST) Subject: gunnar: server/pear/Horde_XML_WBXML - New directory Message-ID: <20090721192623.C7D7060C4AA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_XML_WBXML In directory doto:/tmp/cvs-serv27654/Horde_XML_WBXML Log Message: Directory /kolabrepository/server/pear/Horde_XML_WBXML added to the repository From cvs at kolab.org Tue Jul 21 21:26:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:26:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Xml_Element - New directory Message-ID: <20090721192631.E310060C4AB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Xml_Element In directory doto:/tmp/cvs-serv27672/Horde_Xml_Element Log Message: Directory /kolabrepository/server/pear/Horde_Xml_Element added to the repository From cvs at kolab.org Tue Jul 21 21:26:40 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:26:40 +0200 (CEST) Subject: gunnar: server/pear/Horde_Yaml - New directory Message-ID: <20090721192640.BADA760C4AC@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Yaml In directory doto:/tmp/cvs-serv27693/Horde_Yaml Log Message: Directory /kolabrepository/server/pear/Horde_Yaml added to the repository From cvs at kolab.org Tue Jul 21 21:28:01 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:01 +0200 (CEST) Subject: gunnar: server/pear/Horde_Image .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192801.C28CE60C4B1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Image In directory doto:/tmp/cvs-serv27790/Horde_Image Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Image' # The name of the RPM package package='Horde_Image' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Image' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Image API' # Long package description description=' \ This package provides an Image utility API, with backends for: * GD * GIF * \ PNG * SVG * SWF * ImageMagick convert command line tool \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:01 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:01 +0200 (CEST) Subject: gunnar: server/pear/Horde_IMAP .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192801.C2B4160C4B2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_IMAP In directory doto:/tmp/cvs-serv27790/Horde_IMAP Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_IMAP' # The name of the RPM package package='Horde_IMAP' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='IMAP' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.3dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde IMAP Utility Classes' # Long package description description=' \ The IMAP_Cache:: class facilitates in caching output from the PHP imap \ extension in the current session. The IMAP_Search:: class performs complex \ searching of an IMAP mailbox. The IMAP_Sort:: class performs sorting of \ IMAP mailbox/folder lists. The IMAP_Thread:: class builds an internal \ thread structure from the imap_thread() function output. The IMAP_Tree:: \ class builds an internal tree structure from an IMAP/POP3/NNTP server. \ Classes to help with complex searching of an IMAP mailbox. The built-in PHP \ search() function only allows IMAPv2 search queries (see RFC 1176). This \ library allows more complex searches to be created (e.g. OR searches, \ searching specific headers). \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:02 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192802.0B4B560C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab In directory doto:/tmp/cvs-serv27790/Horde_Kolab Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Kolab' # The name of the RPM package package='Horde_Kolab' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Kolab' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.6dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Glue package for accessing a Kolab server from Horde' # Long package description description=' \ This package contains a number of helper functions that make communication \ between a Horde client and a Kolab server smoother. It is now deprecated in \ favor of the various Kolab_* packages. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:02 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_Filter .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192802.23B2560C4B1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_Filter In directory doto:/tmp/cvs-serv27790/Horde_Kolab_Filter Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Kolab_Filter' # The name of the RPM package package='Horde_Kolab_Filter' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Kolab_Filter' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.6dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Horde>=0.0.2 \ \ PreReq: Horde_iCalendar>=0.0.3 \ \ PreReq: Horde_Argv \ PreReq: Horde_MIME>=0.0.2 \ \ PreReq: Horde_Util>=0.0.2 \ \ PreReq: Horde_Kolab_Server>=0.2.0 \ \ ' # Package summary description summary='Postfix filters for the Kolab server' # Long package description description=' \ The filters provided by this package implement the Kolab server resource \ management as well as some Kolab server sender policies. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:01 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:01 +0200 (CEST) Subject: gunnar: server/pear/Horde_Http_Client .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192801.BD8E760C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Http_Client In directory doto:/tmp/cvs-serv27790/Horde_Http_Client Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Http_Client' # The name of the RPM package package='Horde_Http_Client' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Http_Client' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.3.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde HTTP client libraries' # Long package description description=' \ This package provides a light wrapper around PHP's stream support for \ performing HTTP requests. \ ' # Source code license license='BSD' From cvs at kolab.org Tue Jul 21 21:28:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:02 +0200 (CEST) Subject: gunnar: server/pear/Horde_Lock .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192802.91AF860C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Lock In directory doto:/tmp/cvs-serv27790/Horde_Lock Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Lock' # The name of the RPM package package='Horde_Lock' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Lock' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.1dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Resource Locking System' # Long package description description=' \ The Lock:: class provides the Horde resource locking system. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:02 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_Format .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192802.26ADF60C4B2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_Format In directory doto:/tmp/cvs-serv27790/Horde_Kolab_Format Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Kolab_Format' # The name of the RPM package package='Horde_Kolab_Format' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Kolab_Format' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='1.0.1dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_DOM>=0.1.0 \ \ PreReq: Horde_NLS \ PreReq: Horde_Util \ ' # Package summary description summary='A package for reading/writing Kolab data formats' # Long package description description=' \ This package allows to convert Kolab data objects from XML to hashes. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:02 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_FreeBusy .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192802.3D48760C4B3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_FreeBusy In directory doto:/tmp/cvs-serv27790/Horde_Kolab_FreeBusy Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Kolab_FreeBusy' # The name of the RPM package package='Horde_Kolab_FreeBusy' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Kolab_FreeBusy' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.5dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Kolab_Format>=1.0.1 \ \ PreReq: Horde_Kolab_Server>=0.5.0 \ \ PreReq: Horde_Kolab_Storage \ PreReq: Horde_iCalendar \ PreReq: Horde_Date \ ' # Package summary description summary='A package for providing free/busy information.' # Long package description description=' \ This package provides free/busy information for the users of a Kolab \ server. A Kolab client changing calendar data in an IMAP folder is required \ to call the triggering script provided within this package via HTTP. This \ will refresh the cache maintained by this package with partial free/busy \ data. This partial data sets are finally combined to the complete free/busy \ information once a client requests this data for a particular user. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:02 +0200 (CEST) Subject: gunnar: server/pear/Horde_Log .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192802.A98B460C4B1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Log In directory doto:/tmp/cvs-serv27790/Horde_Log Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Log' # The name of the RPM package package='Horde_Log' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Log' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde Logging library' # Long package description description=' \ Horde Logging package with configurable handlers, filters, and formatting. \ ' # Source code license license='BSD' From cvs at kolab.org Tue Jul 21 21:28:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:03 +0200 (CEST) Subject: gunnar: server/pear/Horde_Memcache .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192803.8B33860C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Memcache In directory doto:/tmp/cvs-serv27790/Horde_Memcache Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Memcache' # The name of the RPM package package='Horde_Memcache' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Memcache' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ ' # Package summary description summary='Horde Memcache object' # Long package description description=' \ This package provides an easy way to access a memcache installation in \ Horde code. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:03 +0200 (CEST) Subject: gunnar: server/pear/Horde_Mobile .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192803.9350B60C4B2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Mobile In directory doto:/tmp/cvs-serv27790/Horde_Mobile Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Mobile' # The name of the RPM package package='Horde_Mobile' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Mobile' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Mobile API' # Long package description description=' \ Horde API for generating Mobile content. Includes numerous utility \ functions, generalized element classes, and renderers for markup languages \ including WML, HDML, and CHTML. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:03 +0200 (CEST) Subject: gunnar: server/pear/Horde_Net_SMS .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192803.C593760C4B4@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Net_SMS In directory doto:/tmp/cvs-serv27790/Horde_Net_SMS Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Net_SMS' # The name of the RPM package package='Horde_Net_SMS' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Net_SMS' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.2.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='SMS functionality.' # Long package description description=' \ This package provides SMS functionality and access to SMS gateways. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:02 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:02 +0200 (CEST) Subject: gunnar: server/pear/Horde_Maintenance .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192802.DD7CB60C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Maintenance In directory doto:/tmp/cvs-serv27790/Horde_Maintenance Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Maintenance' # The name of the RPM package package='Horde_Maintenance' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Maintenance' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Maintenance System' # Long package description description=' \ The Maintenance:: class provides a set of methods for dealing with \ maintenance operations run upon login to Horde applications. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:03 +0200 (CEST) Subject: gunnar: server/pear/Horde_Net_IMSP .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192803.AC65560C4B3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Net_IMSP In directory doto:/tmp/cvs-serv27790/Horde_Net_IMSP Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Net_IMSP' # The name of the RPM package package='Horde_Net_IMSP' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Net_IMSP' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.6dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='IMSP API' # Long package description description=' \ Provides an API into an IMSP server for Addressbooks and Options \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:05 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:05 +0200 (CEST) Subject: gunnar: server/pear/Horde_Token .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192805.7B2AD60C4BB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Token In directory doto:/tmp/cvs-serv27790/Horde_Token Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Token' # The name of the RPM package package='Horde_Token' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Token' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.4dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Token API' # Long package description description=' \ The Horde_Token:: class provides a common abstracted interface into the \ various token generation mediums. It also includes all of the functions for \ retrieving, storing, and checking tokens. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_SQL .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192804.9688160C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SQL In directory doto:/tmp/cvs-serv27790/Horde_SQL Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_SQL' # The name of the RPM package package='Horde_SQL' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='SQL' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='SQL Utility Class' # Long package description description=' \ Horde_SQL:: contains some utility functions for dealing with SQL. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_SessionHandler .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192804.A599D60C4B2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SessionHandler In directory doto:/tmp/cvs-serv27790/Horde_SessionHandler Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_SessionHandler' # The name of the RPM package package='Horde_SessionHandler' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='SessionHandler' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.3dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Session Handler API' # Long package description description=' \ SessionHandler:: defines an API for implementing custom session handlers \ for PHP. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:05 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:05 +0200 (CEST) Subject: gunnar: server/pear/Horde_Tree .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192805.8142560C4BD@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Tree In directory doto:/tmp/cvs-serv27790/Horde_Tree Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Tree' # The name of the RPM package package='Horde_Tree' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Tree' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Tree API' # Long package description description=' \ The Horde_Tree:: class provides a tree view of hierarchical information. It \ allows for expanding/collapsing of branches and maintains their state. It \ can work together with the Horde_Tree javascript class to achieve this in \ DHTML on supported browsers. \ ' # Source code license license='GPL' From cvs at kolab.org Tue Jul 21 21:28:05 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:05 +0200 (CEST) Subject: gunnar: server/pear/Horde_UI .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192805.858F560C4BE@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_UI In directory doto:/tmp/cvs-serv27790/Horde_UI Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_UI' # The name of the RPM package package='Horde_UI' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='UI' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Hordes User Interface Classes' # Long package description description=' \ The Horde_UI package provides several classes for handling UI elements in \ Horde. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_SpellChecker .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192804.BC19260C4B4@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SpellChecker In directory doto:/tmp/cvs-serv27790/Horde_SpellChecker Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_SpellChecker' # The name of the RPM package package='Horde_SpellChecker' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='SpellChecker' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_NLS \ PreReq: Horde_Util \ ' # Package summary description summary='Spellcheck API' # Long package description description=' \ Unified spellchecking API. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_Template .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192806.C3C5960C4B6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Template In directory doto:/tmp/cvs-serv27790/Horde_Template Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Template' # The name of the RPM package package='Horde_Template' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Template' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde Template System' # Long package description description=' \ Horde Template system. Adapted from bTemplate, by Brian Lozier \ brian at massassi.net. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Filter .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192804.D0C8760C4B8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Filter In directory doto:/tmp/cvs-serv27790/Horde_Text_Filter Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Text_Filter' # The name of the RPM package package='Horde_Text_Filter' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Text_Filter' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Text Filter API' # Long package description description=' \ The Text_Filter:: class provides common methods for fitering and \ converting text. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_Share .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192804.B708A60C4B3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Share In directory doto:/tmp/cvs-serv27790/Horde_Share Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Share' # The name of the RPM package package='Horde_Share' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Share' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.3dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Perms \ PreReq: Horde_Prefs \ ' # Package summary description summary='Horde Shared Permissions System' # Long package description description=' \ Horde_Share:: This class provides an interface to all shared resources a \ user owns or has access to. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Flowed .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192804.D722960C4B9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Flowed In directory doto:/tmp/cvs-serv27790/Horde_Text_Flowed Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Text_Flowed' # The name of the RPM package package='Horde_Text_Flowed' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Text_Flowed' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Horde API for flowed text as per RFC 3676' # Long package description description=' \ The Text_Flowed:: class provides common methods for manipulating text using \ the encoding described in RFC 3676 (flowed text). \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Diff .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192806.C6AD860C4B7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Diff In directory doto:/tmp/cvs-serv27790/Horde_Text_Diff Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Text_Diff' # The name of the RPM package package='Horde_Text_Diff' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Text_Diff' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='1.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Engine for performing and rendering text diffs' # Long package description description=' \ This package provides a text-based diff engine and renderers for multiple \ diff output formats. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_Yaml .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192806.4F01D60C4BD@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Yaml In directory doto:/tmp/cvs-serv27790/Horde_Yaml Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Yaml' # The name of the RPM package package='Horde_Yaml' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Yaml' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='1.0.1dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde YAML parsing and dumping routines' # Long package description description=' \ This package provides classes for parsing YAML files into PHP arrays, and \ dumping PHP arrays into YAML encoding. \ ' # Source code license license='BSD' From cvs at kolab.org Tue Jul 21 21:28:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_XML_WBXML .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192806.490DF60C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_XML_WBXML In directory doto:/tmp/cvs-serv27790/Horde_XML_WBXML Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='XML_WBXML' # The name of the RPM package package='Horde_XML_WBXML' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='XML_WBXML' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.5.1dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='XML_WBXML:: provides an API for encoding and decoding WBXML documents used in SyncML and other wireless applications.' # Long package description description=' \ This package provides encoding and decoding of WBXML (Wireless Binary XML) \ documents. WBXML is used in SyncML for transferring smaller amounts of data \ with wireless devices. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_Xml_Element .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192806.4911660C4BB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Xml_Element In directory doto:/tmp/cvs-serv27790/Horde_Xml_Element Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Xml_Element' # The name of the RPM package package='Horde_Xml_Element' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Xml_Element' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde Xml Element object' # Long package description description=' \ This package provides an element object that can be used to provide \ SimpleXML-like functionality over a DOM object. The main advantage over \ using SimpleXML is the ability to add multiple levels of new elements. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_View .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192806.4903E60C4C2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_View In directory doto:/tmp/cvs-serv27790/Horde_View Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='View' # The name of the RPM package package='Horde_View' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='View' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.2.1dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde View API' # Long package description description=' \ The Horde_View:: class provides a simple View pattern implementation. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Textile .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192804.DE21860C4BA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Textile In directory doto:/tmp/cvs-serv27790/Horde_Text_Textile Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Text_Textile' # The name of the RPM package package='Horde_Text_Textile' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Text_Textile' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Textile formatting library' # Long package description description=' \ _____________ T E X T I L E A Humane Web Text Generator Version 2.0 \ Copyright 2003-2004, Dean Allen dean at textism.com All rights reserved. \ Thanks to Carlo Zottmann carlo at g-blog.net for refactoring Textile's \ procedural code into a class framework Additions and fixes Copyright 2006 \ Alex Shiels http://thresholdstate.com/ _____________ L I C E N S E \ Redistribution and use in source and binary forms, with or without \ modification, are permitted provided that the following conditions are met: \ * Redistributions of source code must retain the above copyright notice, \ this list of conditions and the following disclaimer. * Redistributions in \ binary form must reproduce the above copyright notice, this list of \ conditions and the following disclaimer in the documentation and/or other \ materials provided with the distribution. * Neither the name Textile nor \ the names of its contributors may be used to endorse or promote products \ derived from this software without specific prior written permission. THIS \ SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND \ ANY EXPRESS 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 COPYRIGHT OWNER OR 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. \ ' # Source code license license='BSD' From cvs at kolab.org Tue Jul 21 21:28:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_SyncML .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192804.BF6F360C4B5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SyncML In directory doto:/tmp/cvs-serv27790/Horde_SyncML Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='SyncML' # The name of the RPM package package='Horde_SyncML' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='SyncML' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.7.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_XML_WBXML \ ' # Package summary description summary='SyncML provides an API for processing SyncML requests.' # Long package description description=' \ This package provides classes for implementing a SyncML server. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:07 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:07 +0200 (CEST) Subject: gunnar: server/pear/Horde_iCalendar .cvsignore, 1.1, 1.2 ChangeLog, 1.3, 1.4 Makefile, 1.4, 1.5 Message-ID: <20090721192807.3663D60C4B1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_iCalendar In directory doto:/tmp/cvs-serv27790/Horde_iCalendar Modified Files: .cvsignore ChangeLog Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_iCalendar/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Sep 2008 05:01:06 -0000 1.1 +++ .cvsignore 21 Jul 2009 19:28:04 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_iCalendar/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ChangeLog 5 Dec 2008 16:17:15 -0000 1.3 +++ ChangeLog 21 Jul 2009 19:28:04 -0000 1.4 @@ -1,3 +1,8 @@ +2009-07-21 Gunnar Wrobel

+ + * package.info: Converted to new pacakging style. Updated to tag + HORDE_3_3_4. + 2008-12-05 Gunnar Wrobel

* Horde_iCalendar.spec: kolab/issue3284 (Webclient or resmgr might Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_iCalendar/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 5 Dec 2008 16:17:15 -0000 1.4 +++ Makefile 21 Jul 2009 19:28:04 -0000 1.5 @@ -1,42 +1 @@ -HORDE_PACKAGE = $(shell grep "%define[ ]*V_horde_package" *.spec | sed -e "s/.*V_horde_package \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(HORDE_PACKAGE)-$(VERSION).tgz -EXTRA=ChangeLog HK-GW-iCalendar-Quoted_parameters.patch package.xml - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(EXTRA) $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:28:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_VC .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090721192806.39B8160C4C0@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_VC In directory doto:/tmp/cvs-serv27790/Horde_VC Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='VC' # The name of the RPM package package='Horde_VC' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='VC' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.4dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Version Control API' # Long package description description=' \ This package provides a generalized API to multiple version control \ systems. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block package.info,1.1,1.2 Message-ID: <20090721192831.3D30460C4CF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block In directory doto:/tmp/cvs-serv27790/Horde_Block Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Block/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 13:21:48 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -54,9 +54,9 @@ # Long package description description=' \ -The Horde_Block API provides a mechanism for displaying content \ -blocks from numerous Horde applications or other sources, \ -manipulating those blocks, configuring them, etc. \ +The Horde_Block API provides a mechanism for displaying content blocks from \ +numerous Horde applications or other sources, manipulating those blocks, \ +configuring them, etc. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser package.info,1.1,1.2 Message-ID: <20090721192831.4143260C4D3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser In directory doto:/tmp/cvs-serv27790/Horde_Browser Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 14:18:03 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -53,8 +53,8 @@ # Long package description description=' \ -The Horde_Browser:: class provides an API for getting information \ -about the current users browser and its capabilities. \ +The Horde_Browser:: class provides an API for getting information about the \ +current users browser and its capabilities. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth package.info,1.2,1.3 Message-ID: <20090721192831.5A3F960C4D7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth In directory doto:/tmp/cvs-serv27790/Horde_Auth Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Auth/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 13 Jul 2009 13:21:09 -0000 1.2 +++ package.info 21 Jul 2009 19:27:59 -0000 1.3 @@ -55,32 +55,13 @@ # Long package description description=' \ -The Auth:: class provides a common abstracted interface into the \ -various backends for the Horde authentication system. This package \ -contains implementations for: \ - \ -* A Horde Application \ -* Dummy Auto Login \ -* Composite Auth Driver \ -* Custom SQL \ -* Cyrus with SQL Support \ -* FTP \ -* HTTP \ -* IMAP \ -* IMSP \ -* IP Based \ -* Kerberos \ -* Kolab \ -* LDAP \ -* Shibboleth \ -* System Login \ -* mcal \ -* PAM \ -* Passwd File \ -* Radius \ -* SASL \ -* SMB \ -* SQL \ +The Auth:: class provides a common abstracted interface into the various \ +backends for the Horde authentication system. This package contains \ +implementations for: * A Horde Application * Composite Auth Driver * Custom \ +SQL * Cyrus with SQL Support * Dummy Auto Login * FTP * HTTP * IMAP * IMSP \ +* IP Based * Kerberos * Kolab * LDAP * Microsoft Active Directory * \ +Shibboleth * System Login * PAM * Passwd File * Radius * SASL * SMB \ +(smbauth extension) * SMB (smbclient) * SQL \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_CLI package.info,1.1,1.2 Message-ID: <20090721192831.6707C628FC1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_CLI In directory doto:/tmp/cvs-serv27790/Horde_CLI Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_CLI/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 14:52:17 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -52,7 +52,7 @@ # Long package description description=' \ -Horde_CLI:: API for basic command-line functionality/checks. \ +Horde_CLI:: API for basic command-line functionality/checks \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cache package.info,1.1,1.2 Message-ID: <20090721192831.84C2B628FC2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cache In directory doto:/tmp/cvs-serv27790/Horde_Cache Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 14:16:58 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -49,13 +49,14 @@ ' # Package summary description -summary='Caching API' +summary='Horde Caching API' # Long package description description=' \ -This package provides a simple, functional Caching API, with the \ -option to store the cached data either on the filesystem, or using the \ -Zend Performance Suites content cache. \ +This package provides a simple, functional caching API, with the option to \ +store the cached data on the filesystem, in one of the PHP opcode cache \ +systems (APC, eAcclerator, XCache, or Zend Performance Suites content \ +cache), memcached, or an SQL table. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cipher package.info,1.1,1.2 Message-ID: <20090721192831.9700E628FC3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cipher In directory doto:/tmp/cvs-serv27790/Horde_Cipher Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cipher/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 14:41:42 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -52,18 +52,9 @@ # Long package description description=' \ -This package provides a Block Mode Cipher API, supporting the following ciphers: \ -* Blowfish \ -* Cast128 \ -* DES \ -* RC2 \ -* RC4 \ - \ -And supporting the following block modes: \ -* CBC \ -* ECB \ -* CFB64 \ -* OFB64 \ +This package provides a Block Mode Cipher API, supporting the following \ +ciphers: * Blowfish * Cast128 * DES * RC2 * RC4 And supporting the \ +following block modes: * CBC * ECB * CFB64 * OFB64 \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress package.info,1.1,1.2 Message-ID: <20090721192831.9CD3E628FC4@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress In directory doto:/tmp/cvs-serv27790/Horde_Compress Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Compress/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 15:02:09 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -53,7 +53,8 @@ # Long package description description=' \ -The Horde_Compress:: class provides an API for various compression techniques. \ +The Horde_Compress:: class provides an API for various compression \ +techniques. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt package.info,1.1,1.2 Message-ID: <20090721192831.9D88D628FC5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt In directory doto:/tmp/cvs-serv27790/Horde_Crypt Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Crypt/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 17:12:28 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -45,8 +45,8 @@ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ -PreReq: Horde_Util \ PreReq: Horde_MIME \ +PreReq: Horde_Util \ ' # Package summary description From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_DOM package.info,1.1,1.2 Message-ID: <20090721192831.9E4AD628FC6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_DOM In directory doto:/tmp/cvs-serv27790/Horde_DOM Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_DOM/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 10:13:04 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -52,8 +52,8 @@ # Long package description description=' \ -These classes allow the use of code written for PHP4s domxml \ -implementation to work using PHP5s dom implementation. \ +These classes allow the use of code written for PHP4s domxml implementation \ +to work using PHP5s dom implementation. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data package.info,1.1,1.2 Message-ID: <20090721192831.9EF97628FC7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data In directory doto:/tmp/cvs-serv27790/Horde_Data Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Data/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 17:32:39 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -45,9 +45,9 @@ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ -PreReq: Horde_Util \ -PreReq: Horde_MIME \ PreReq: Horde_iCalendar \ +PreReq: Horde_MIME \ +PreReq: Horde_Util \ ' # Package summary description @@ -55,13 +55,8 @@ # Long package description description=' \ -This package provides a data import and export API, with backends for: \ -* CSV \ -* TSV \ -* iCalendar \ -* vCard \ -* vNote \ -* vTodo \ +This package provides a data import and export API, with backends for: * \ +CSV * TSV * iCalendar * vCard * vNote * vTodo \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm package.info,1.1,1.2 Message-ID: <20090721192831.9FB42628FC8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm In directory doto:/tmp/cvs-serv27790/Horde_Alarm Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Alarm/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 11:41:20 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -55,8 +55,8 @@ description=' \ This package provides an interface to deal with reminders, alarms and \ notifications through a standardized API. The following notification \ -methods are available at the moment: standard Horde notifications, \ -popups, emails, sms. \ +methods are available at the moment: standard Horde notifications, popups, \ +emails, sms. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_DataTree package.info,1.2,1.3 Message-ID: <20090721192831.A05B0628FC9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_DataTree In directory doto:/tmp/cvs-serv27790/Horde_DataTree Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_DataTree/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 14 Jul 2009 09:02:05 -0000 1.2 +++ package.info 21 Jul 2009 19:27:59 -0000 1.3 @@ -47,6 +47,7 @@ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Serialize \ +PreReq: Horde_SQL \ PreReq: Horde_Util \ ' From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF package.info,1.1,1.2 Message-ID: <20090721192831.A2E26628FCA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF In directory doto:/tmp/cvs-serv27790/Horde_File_PDF Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_File_PDF/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 13:41:42 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -48,12 +48,12 @@ ' # Package summary description -summary='Reads and writes PDF files' +summary='PDF generation using only PHP.' # Long package description description=' \ -This package provides PDF generation using only PHP, without requiring \ -any external libraries. \ +This package provides PDF generation using only PHP, without requiring any \ +external libraries. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form package.info,1.1,1.2 Message-ID: <20090721192831.A3A5A628FCB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form In directory doto:/tmp/cvs-serv27790/Horde_Form Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Form/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 16:08:43 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -55,8 +55,8 @@ # Long package description description=' \ -The Horde_Form:: package provides form rendering, validation, and \ -other functionality for the Horde Application Framework. \ +The Horde_Form:: package provides form rendering, validation, and other \ +functionality for the Horde Application Framework. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form-H4 package.info,1.1,1.2 Message-ID: <20090721192831.A44F1628FCC@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form-H4 In directory doto:/tmp/cvs-serv27790/Horde_Form-H4 Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Form-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 20 Jul 2009 14:27:13 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -31,7 +31,7 @@ sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed -php_lib_loc='php' +php_lib_loc='php-h4' # Build prerequisites buildprereq=' \ From cvs at kolab.org Tue Jul 21 21:28:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_History package.info,1.1,1.2 Message-ID: <20090721192831.BE0BF60C4D9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_History In directory doto:/tmp/cvs-serv27790/Horde_History Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_History/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 20 Jul 2009 14:53:08 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -52,8 +52,8 @@ # Long package description description=' \ -This API provides a way to track changes on arbitrary pieces of data \ -in Horde applications. \ +This API provides a way to track changes on arbitrary pieces of data in \ +Horde applications. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:32 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:32 +0200 (CEST) Subject: gunnar: server/pear/Horde_LDAP .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Message-ID: <20090721192832.904A460C4B5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_LDAP In directory doto:/tmp/cvs-serv27790/Horde_LDAP Modified Files: .cvsignore ChangeLog Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_LDAP/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Sep 2008 13:42:59 -0000 1.1 +++ .cvsignore 21 Jul 2009 19:28:00 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_LDAP/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 10 Sep 2008 13:42:59 -0000 1.1 +++ ChangeLog 21 Jul 2009 19:28:00 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-21 Gunnar Wrobel

+ + * package.info: Converted to new pacakging style. Updated to tag + HORDE_3_3_4. + 2008-09-10 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_LDAP/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 10 Sep 2008 13:42:59 -0000 1.1 +++ Makefile 21 Jul 2009 19:28:00 -0000 1.2 @@ -1,40 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:28:32 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:32 +0200 (CEST) Subject: gunnar: server/pear/Horde_Group package.info,1.1,1.2 Message-ID: <20090721192832.2E15D60C4CF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Group In directory doto:/tmp/cvs-serv27790/Horde_Group Modified Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Group/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 20 Jul 2009 14:38:19 -0000 1.1 +++ package.info 21 Jul 2009 19:27:59 -0000 1.2 @@ -55,7 +55,7 @@ # Long package description description=' \ -Package for managing and accessing the Horde groups system.\ +Package for managing and accessing the Horde groups system. \ ' # Source code license From cvs at kolab.org Tue Jul 21 21:28:33 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:33 +0200 (CEST) Subject: gunnar: server/pear/Horde_Notification .cvsignore, 1.2, 1.3 Makefile, 1.2, 1.3 Message-ID: <20090721192833.D8B4060C4BD@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Notification In directory doto:/tmp/cvs-serv27790/Horde_Notification Modified Files: .cvsignore Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Notification/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 26 May 2009 05:11:12 -0000 1.2 +++ .cvsignore 21 Jul 2009 19:28:01 -0000 1.3 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Notification/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 12 May 2009 05:22:47 -0000 1.2 +++ Makefile 21 Jul 2009 19:28:01 -0000 1.3 @@ -1,155 +1 @@ -# If home is unset this Makefile assumes the Kolab server installation -# resides in /kolab. If this is not the case this Makefile must be -# called using -# -# HOME="/mykolabroot" make TARGET -# -ifeq "x$(HOME)" "x" - HOME = /kolab -endif - -# If HOME is set to /root it is likely that somebody is calling this -# Makefile as root user. In this case this Makefile assumes that the -# Kolab server installation resides in /kolab. -# -# In the (hopefully) unlikely event that somebody really installed the -# Kolab server in /root this Makefile will fail. -ifeq "x$(HOME)" "x/root" - HOME = /kolab -endif - -# Set the location of the rpm binary -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif - -# Set the location for rpm source package installations -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif - -# Set the location for rpm packages -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif - -# Set the location for the rpm temporary directory -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -# Determine the suffix for binary packages on this system -ifeq "x$(PLATTAG)" "x" - PLATTAG = $(shell $(RPM) -q --qf="%{ARCH}-%{OS}" openpkg)-$(HOME:/%=%) -endif - -# Determine the staging area for collecting new source rpms -ifeq "x$(STAGING)" "x" - STAGING = ../../stage -endif - -# Determine the horde package name from the *.spec file -HORDE_PKGDIR = $(shell grep "%define[ ]*V_horde_pkgdir" *.spec | sed -e "s/.*V_horde_pkgdir \([A-Za-z\-\_]*\).*/\1/") - -# Determine the horde package name from the *.spec file -HORDE_PACKAGE = $(shell grep "%define[ ]*V_horde_package" *.spec | sed -e "s/.*V_horde_package \([A-Za-z\-\_]*\).*/\1/") - -# Determine the package name from the *.spec file -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") - -# Determine the package version from the *.spec file -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.a-z]*\).*/\1/") - -# Determine the release number from the *.spec file -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -# Determine the download url for the PEAR package from the *.spec file -SOURCE_URL=$(shell grep "%define[ ]*V_sourceurl" *.spec | sed -e "s/.*V_sourceurl\s*\(.*\)/\1/") - -# Get the list of patches if there are any in this directory -PATCHES = $(shell ls *.patch 2> /dev/null) - -# Generate the full package name -SOURCE_0=$(HORDE_PACKAGE)-$(VERSION).tgz - -# Generate a list of extra files for the package -EXTRA=ChangeLog $(PATCHES) - -# CVS information -UPSTREAM=../upstream/cvs -REPO=framework -REPO_URL=:pserver:cvsread at anoncvs.horde.org:/repository -REPO_UP_CMD=cvs update -REPO_CO_CMD=cvs -d $(REPO_URL) co -REPO_SC_CMD=cvs update -r -COMMIT=HORDE_3_3_4 -RELTAG=20090501 -DATE=$(shell date +%Y-%m-%d) -PEAR=$(HOME)/bin/pear - -# Default target to generate the source rpm package -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -# Target for placing the source rpm in the staging area -.PHONY: dist -dist: all - test -d $(STAGING) || mkdir $(STAGING) - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm $(STAGING) - -# Target for installing the binary rpm package in our current Kolab -# server installation -.PHONY: install -install: $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm - $(RPM) -Uhv --force $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm - -# Target location for the CVS checkout -$(UPSTREAM): - mkdir -p $(UPSTREAM) - -# Target for generating the CVS checkout -.PHONY: $(UPSTREAM)/$(REPO) -$(UPSTREAM)/$(REPO): - if [ -e $(UPSTREAM)/$(REPO) ]; then \ - cd $(UPSTREAM)/$(REPO) && $(REPO_SC_CMD) "$(COMMIT)"; \ - else \ - @echo The password is 'horde'; \ - cvs -d $(REPO_URL) login; \ - cd $(UPSTREAM) && $(REPO_CO_CMD) $(REPO); \ - cd $(UPSTREAM)/$(REPO) && $(REPO_SC_CMD) "$(COMMIT)"; \ - fi; - -# Generate the source pacakge fron the CVS checkout -.PHONY: $(SOURCE_0) -$(SOURCE_0): $(UPSTREAM) $(UPSTREAM)/$(REPO) - rm -rf tmp - mkdir tmp - cp -r $(UPSTREAM)/$(REPO)/$(HORDE_PKGDIR) tmp/$(PACKAGE) - sed -i -e "/version/,+1 s#\(.*\)#\1dev$(RELTAG)#" tmp/$(PACKAGE)/package.xml - sed -i -e "/lead/,+1 s#.*#$(DATE)#" tmp/$(PACKAGE)/package.xml - $(PEAR) package tmp/$(PACKAGE)/package.xml - rm -rf tmp - -# Target for retrieving the source package -$(KOLABRPMSRC)/$(PACKAGE)/$(SOURCE_0): $(SOURCE_0) - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cp $(SOURCE_0) $(KOLABRPMSRC)/$(PACKAGE)/ - -# Target for preparing the source area and building the package -$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm: Makefile $(PACKAGE).spec $(EXTRA) $(KOLABRPMSRC)/$(PACKAGE)/$(SOURCE_0) - cp $(PACKAGE).spec $(EXTRA) $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - -# Target for fetching the source rpm into the current directory -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . - -# Target for cleaning up the files that can be generated with this Makefile -.PHONY: clean -clean: - rm -rf $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm - rm -rf $(KOLABRPMSRC)/$(PACKAGE) - rm -rf $(KOLABRPMTMP)/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:28:34 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:34 +0200 (CEST) Subject: gunnar: server/pear/Horde_Prefs .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Message-ID: <20090721192834.97B0460C4D3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Prefs In directory doto:/tmp/cvs-serv27790/Horde_Prefs Modified Files: .cvsignore ChangeLog Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Prefs/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 24 Feb 2009 11:57:46 -0000 1.1 +++ .cvsignore 21 Jul 2009 19:28:02 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Prefs/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 24 Feb 2009 11:57:46 -0000 1.1 +++ ChangeLog 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-21 Gunnar Wrobel

+ + * package.info: Converted to new pacakging style. Updated to tag + HORDE_3_3_4. + 2009-02-24 Gunnar Wrobel

* Horde_Prefs.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Prefs/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 24 Feb 2009 11:57:46 -0000 1.1 +++ Makefile 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,50 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -ifeq "x$(PLATTAG)" "x" - PLATTAG = $(shell $(RPM) -q --qf="%{ARCH}-%{OS}" openpkg)-$(HOME:/%=%) -endif - -SOURCE_URL=http://pear.horde.org/get -SOURCE_0=$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(KOLABRPMSRC)/$(PACKAGE)/$(SOURCE_0): - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_URL)/$(SOURCE_0)" - -$(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog $(KOLABRPMSRC)/$(PACKAGE)/$(SOURCE_0) - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . - -.PHONY: install -install: $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm - $(RPM) -Uhv --force $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:28:34 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:34 +0200 (CEST) Subject: gunnar: server/pear/Horde_Perms .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Message-ID: <20090721192834.9493C60C4D1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Perms In directory doto:/tmp/cvs-serv27790/Horde_Perms Modified Files: .cvsignore ChangeLog Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Perms/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:29:02 -0000 1.1 +++ .cvsignore 21 Jul 2009 19:28:01 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Perms/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 11 Sep 2008 16:29:02 -0000 1.1 +++ ChangeLog 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-21 Gunnar Wrobel

+ + * package.info: Converted to new pacakging style. Updated to tag + HORDE_3_3_4. + 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Perms/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 11 Sep 2008 16:29:02 -0000 1.1 +++ Makefile 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,41 +1 @@ -HORDE_PACKAGE = $(shell grep "%define[ ]*V_horde_package" *.spec | sed -e "s/.*V_horde_package \([A-Za-z\-\_]*\).*/\1/") -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(HORDE_PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:28:33 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:33 +0200 (CEST) Subject: gunnar: server/pear/Horde_NLS .cvsignore,1.2,1.3 Makefile,1.4,1.5 Message-ID: <20090721192833.AC16260C4C3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_NLS In directory doto:/tmp/cvs-serv27790/Horde_NLS Modified Files: .cvsignore Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_NLS/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 18 May 2009 19:50:15 -0000 1.2 +++ .cvsignore 21 Jul 2009 19:28:01 -0000 1.3 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_NLS/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 18 May 2009 19:50:15 -0000 1.4 +++ Makefile 21 Jul 2009 19:28:01 -0000 1.5 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:28:35 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:35 +0200 (CEST) Subject: gunnar: server/pear/Horde_Util .cvsignore,1.2,1.3 Makefile,1.6,1.7 Message-ID: <20090721192835.8746960C4D6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Util In directory doto:/tmp/cvs-serv27790/Horde_Util Modified Files: .cvsignore Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Util/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 18 May 2009 18:30:36 -0000 1.2 +++ .cvsignore 21 Jul 2009 19:28:03 -0000 1.3 @@ -1,3 +1,4 @@ *.src.rpm *.tgz +*.spec package.patch Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Util/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Makefile 18 May 2009 18:30:36 -0000 1.6 +++ Makefile 21 Jul 2009 19:28:03 -0000 1.7 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:28:34 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:34 +0200 (CEST) Subject: gunnar: server/pear/Horde_Secret .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Message-ID: <20090721192834.AC0EB60C4D7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Secret In directory doto:/tmp/cvs-serv27790/Horde_Secret Modified Files: .cvsignore ChangeLog Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Secret/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:30:24 -0000 1.1 +++ .cvsignore 21 Jul 2009 19:28:02 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Secret/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 11 Sep 2008 16:30:24 -0000 1.1 +++ ChangeLog 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-21 Gunnar Wrobel

+ + * package.info: Converted to new pacakging style. Updated to tag + HORDE_3_3_4. + 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Secret/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 11 Sep 2008 16:30:24 -0000 1.1 +++ Makefile 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,40 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:28:34 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:34 +0200 (CEST) Subject: gunnar: server/pear/Horde_Serialize .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Message-ID: <20090721192834.A600D60C4C1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Serialize In directory doto:/tmp/cvs-serv27790/Horde_Serialize Modified Files: .cvsignore ChangeLog Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Serialize/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:30:24 -0000 1.1 +++ .cvsignore 21 Jul 2009 19:28:02 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Serialize/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 11 Sep 2008 16:30:24 -0000 1.1 +++ ChangeLog 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-21 Gunnar Wrobel

+ + * package.info: Converted to new pacakging style. Updated to tag + HORDE_3_3_4. + 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Serialize/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 11 Sep 2008 16:30:24 -0000 1.1 +++ Makefile 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,40 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:28:34 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:28:34 +0200 (CEST) Subject: gunnar: server/pear/Horde_SessionObjects .cvsignore, 1.1, 1.2 ChangeLog, 1.1, 1.2 Makefile, 1.1, 1.2 Message-ID: <20090721192834.C5BE760C4DB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SessionObjects In directory doto:/tmp/cvs-serv27790/Horde_SessionObjects Modified Files: .cvsignore ChangeLog Makefile Log Message: Added the missing Horde_* packages from the framework3 branch. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_SessionObjects/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:30:24 -0000 1.1 +++ .cvsignore 21 Jul 2009 19:28:02 -0000 1.2 @@ -1 +1,4 @@ *.src.rpm +*.tgz +*.spec +package.patch Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_SessionObjects/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChangeLog 11 Sep 2008 16:30:24 -0000 1.1 +++ ChangeLog 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,3 +1,8 @@ +2009-07-21 Gunnar Wrobel

+ + * package.info: Converted to new pacakging style. Updated to tag + HORDE_3_3_4. + 2008-09-11 Gunnar Wrobel

* Horde_DOM.spec: Added package to Kolab CVS. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_SessionObjects/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 11 Sep 2008 16:30:24 -0000 1.1 +++ Makefile 21 Jul 2009 19:28:02 -0000 1.2 @@ -1,40 +1 @@ -PACKAGE = $(shell grep "%define[ ]*V_package" *.spec | sed -e "s/.*V_package \([A-Za-z\-\_]*\).*/\1/") -VERSION = $(shell grep "%define[ ]*V_version" *.spec | sed -e "s/.*V_version\s*\([0-9.]*\).*/\1/") -RELEASE = $(shell grep "%define[ ]*V_release" *.spec | sed -e "s/.*V_release\s*\([0-9]*\).*/\1/") - -ifeq "x$(RPM)" "x" - RPM = $(HOME)/bin/openpkg rpm -endif -ifeq "x$(KOLABRPMSRC)" "x" - KOLABRPMSRC = $(HOME)/RPM/SRC -endif -ifeq "x$(KOLABRPMPKG)" "x" - KOLABRPMPKG = $(HOME)/RPM/PKG -endif -ifeq "x$(KOLABRPMTMP)" "x" - KOLABRPMTMP = $(HOME)/RPM/TMP -endif - -SOURCE_0=http://pear.horde.org/get/$(PACKAGE)-$(VERSION).tgz - -.PHONY: all -all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - -.PHONY: dist -dist: all - cp $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm ../../stage/ - -.PHONY: clean -clean: - rm -rf /kolab/RPM/TMP/$(PACKAGE)* - rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm - rm -rf *~ - -$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: Makefile $(PACKAGE).spec ChangeLog - test -d $(KOLABRPMSRC)/$(PACKAGE) || mkdir $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && wget -c "$(SOURCE_0)" - - cp $(PACKAGE).spec $(KOLABRPMSRC)/$(PACKAGE) - cd $(KOLABRPMSRC)/$(PACKAGE) && $(RPM) -ba $(PACKAGE).spec - - cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm . +include ../Pear.mk From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_NLS package.info,NONE,1.1 Message-ID: <20090721193031.B58E760C4DD@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_NLS In directory doto:/tmp/cvs-serv28290/Horde_NLS Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_NLS' # The name of the RPM package package='Horde_NLS' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='NLS' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Browser \ PreReq: Horde_Util \ ' # Package summary description summary='Localization package' # Long package description description=' \ TODO \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Perms package.info,NONE,1.1 Message-ID: <20090721193031.BA5E36184A5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Perms In directory doto:/tmp/cvs-serv28290/Horde_Perms Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Perms' # The name of the RPM package package='Horde_Perms' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Perms' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Util \ PreReq: Horde_Group \ ' # Package summary description summary='Horde Permissions System' # Long package description description=' \ The Perms package provides an interface to the Horde permissions system. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_LDAP package.info,NONE,1.1 Message-ID: <20090721193031.B274D60C4D9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_LDAP In directory doto:/tmp/cvs-serv28290/Horde_LDAP Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_LDAP' # The name of the RPM package package='Horde_LDAP' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='LDAP' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='LDAP Utility Class' # Long package description description=' \ Horde_LDAP:: contains some utility functions for dealing with LDAP servers \ and data. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Notification package.info,NONE,1.1 Message-ID: <20090721193031.B76926184A2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Notification In directory doto:/tmp/cvs-serv28290/Horde_Notification Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Notification' # The name of the RPM package package='Horde_Notification' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Notification' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ ' # Package summary description summary='Horde Notification System' # Long package description description=' \ The Notification:: class provides a subject-observer pattern for raising \ and showing messages of different types and to different listeners. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Prefs package.info,NONE,1.1 Message-ID: <20090721193031.BE5776184A8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Prefs In directory doto:/tmp/cvs-serv28290/Horde_Prefs Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Prefs' # The name of the RPM package package='Horde_Prefs' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Prefs' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.3dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Util \ ' # Package summary description summary='Horde Preferances API' # Long package description description=' \ The Prefs:: class provides a common abstracted interface into the various \ preferences storage mediums. It also includes all of the functions for \ retrieving, storing, and checking preference values. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Secret package.info,NONE,1.1 Message-ID: <20090721193031.C339B60C4D9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Secret In directory doto:/tmp/cvs-serv28290/Horde_Secret Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Secret' # The name of the RPM package package='Horde_Secret' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Secret' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Cipher \ PreReq: Horde_Util \ ' # Package summary description summary='Secret Encryption API' # Long package description description=' \ The Secret:: class provides an API for encrypting and decrypting small \ pieces of data with the use of a shared key. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Serialize package.info,NONE,1.1 Message-ID: <20090721193031.C59D860C4DD@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Serialize In directory doto:/tmp/cvs-serv28290/Horde_Serialize Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Serialize' # The name of the RPM package package='Horde_Serialize' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Serialize' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='Data Encapulation API' # Long package description description=' \ The Serialize:: class provides various methods of encapsulating data. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_SessionObjects package.info,NONE,1.1 Message-ID: <20090721193031.C6C5C6184A2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SessionObjects In directory doto:/tmp/cvs-serv28290/Horde_SessionObjects Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_SessionObjects' # The name of the RPM package package='Horde_SessionObjects' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='SessionObjects' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.3dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Framework \ PreReq: Horde_Serialize \ ' # Package summary description summary='Horde Session Storage API' # Long package description description=' \ The Horde_SessionObjects:: class provides a way for storing data (usually, \ but not necessarily, objects) in the current users session. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_iCalendar package.info,NONE,1.1 Message-ID: <20090721193031.CF1E06184AA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_iCalendar In directory doto:/tmp/cvs-serv28290/Horde_iCalendar Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='iCalendar' # The name of the RPM package package='Horde_iCalendar' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='iCalendar' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Horde_Util \ ' # Package summary description summary='iCalendar API' # Long package description description=' \ This package provides an API for dealing with iCalendar data. \ ' # Source code license license='LGPL' From cvs at kolab.org Tue Jul 21 21:30:31 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 21 Jul 2009 21:30:31 +0200 (CEST) Subject: gunnar: server/pear/Horde_Util package.info,NONE,1.1 Message-ID: <20090721193031.CA1586184A5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Util In directory doto:/tmp/cvs-serv28290/Horde_Util Added Files: package.info Log Message: Added the missing Horde_* packages from the framework3 branch. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Util' # The name of the RPM package package='Horde_Util' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Util' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.1.0dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ ' # Package summary description summary='Horde Utility Libraries' # Long package description description=' \ These classes provide functionality useful for all kind of applications. \ ' # Source code license license='LGPL' From cvs at kolab.org Wed Jul 22 08:28:43 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:28:43 +0200 (CEST) Subject: gunnar: server/pear Pear.mk,1.10,1.11 Message-ID: <20090722062843.BB94A600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear In directory doto:/tmp/cvs-serv24183 Modified Files: Pear.mk Log Message: Reorganize the snapshot production so the important steps are not phony and dont need to be performed every time. Index: Pear.mk =================================================================== RCS file: /kolabrepository/server/pear/Pear.mk,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- Pear.mk 13 Jul 2009 10:50:15 -0000 1.10 +++ Pear.mk 22 Jul 2009 06:28:40 -0000 1.11 @@ -45,6 +45,7 @@ # Determine the exact commit that should be retrieved from the repository COMMIT = $(shell grep "^repo_commit=" package.info | sed -e "s/repo_commit='\([A-Za-z0-9_:]*\)'.*/\1/") +SAFE_COMMIT = $(shell grep "^repo_commit=" package.info | sed -e "s/repo_commit=':?\([A-Za-z0-9_]*\)'.*/\1/") # Determine the release tag a package derived from a repository checkout should get RELTAG = $(shell grep "^repo_release=" package.info | sed -e "s/repo_release='\([0-9]*\)'.*/\1/") @@ -134,54 +135,43 @@ $(RPM) -Uhv --force $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(RELEASE).$(PLATTAG).rpm # Target location for the repository checkout -$(UPSTREAM): - mkdir -p $(UPSTREAM) +$(UPSTREAM)/$(SAFE_COMMIT): + mkdir -p "$(UPSTREAM)/$(SAFE_COMMIT)" -# Target for generating the repository checkout + +# Get the repository checkout ifeq ($(PACKAGE_VC),CVS) -.PHONY: $(UPSTREAM)/$(CVS_REPO) -$(UPSTREAM)/$(CVS_REPO): - if [ -e $(UPSTREAM)/$(CVS_REPO) ]; then \ - cd $(UPSTREAM)/$(CVS_REPO) && $(CVS_REPO_SC_CMD) "$(COMMIT)"; \ - else \ - echo The password is 'horde'; \ - cvs -d $(CVS_REPO_URL) login; \ - cd $(UPSTREAM) && $(CVS_REPO_CO_CMD) $(CVS_REPO); \ - cd $(CVS_REPO) && $(CVS_REPO_SC_CMD) "$(COMMIT)"; \ - fi; +$(UPSTREAM)/$(SAFE_COMMIT)/$(CVS_REPO)/$(PEAR_PKGDIR): $(UPSTREAM)/$(SAFE_COMMIT) + @echo The password is 'horde' + @cvs -d $(CVS_REPO_URL) login + cd "$(UPSTREAM)/$(SAFE_COMMIT)" && $(CVS_REPO_CO_CMD) $(CVS_REPO) + cd "$(UPSTREAM)/$(SAFE_COMMIT)/$(CVS_REPO)" && $(CVS_REPO_SC_CMD) "$(COMMIT)" else ifeq ($(PACKAGE_VC),GIT) -.PHONY: $(UPSTREAM)/$(GIT_REPO) -$(UPSTREAM)/$(GIT_REPO): - if [ -e $(UPSTREAM)/$(GIT_REPO) ]; then \ - cd $(UPSTREAM)/$(GIT_REPO) && $(GIT_REPO_UP_CMD); \ - $(GIT_REPO_SC_CMD) "$(COMMIT)"; \ - else \ - cd $(UPSTREAM) && $(GIT_REPO_CO_CMD) $(GIT_REPO_URL); \ - cd $(GIT_REPO) && $(GIT_REPO_SC_CMD) "$(COMMIT)"; \ - fi; +$(UPSTREAM)/$(SAFE_COMMIT)/$(GIT_REPO)/$(PEAR_PKGDIR): $(UPSTREAM)/$(SAFE_COMMIT) + cd "$(UPSTREAM)/$(SAFE_COMMIT)" && $(GIT_REPO_CO_CMD) $(GIT_REPO_URL) + cd "$(UPSTREAM)/$(SAFE_COMMIT)/$(GIT_REPO)" && $(GIT_REPO_SC_CMD) "$(COMMIT)" endif endif # Generate the source package from the repository checkout ifeq ($(PACKAGE_VC),CVS) -tmp/$(PACKAGE): $(UPSTREAM) $(UPSTREAM)/$(CVS_REPO) +tmp/$(PACKAGE): $(UPSTREAM)/$(SAFE_COMMIT)/$(CVS_REPO)/$(PEAR_PKGDIR) rm -rf tmp mkdir tmp - cp -r $(UPSTREAM)/$(CVS_REPO)/$(PEAR_PKGDIR) tmp/$(PACKAGE) + cp -r "$(UPSTREAM)/$(SAFE_COMMIT)/$(CVS_REPO)/$(PEAR_PKGDIR)" tmp/$(PACKAGE) else ifeq ($(PACKAGE_VC),GIT) -tmp/$(PACKAGE): $(UPSTREAM) $(UPSTREAM)/$(GIT_REPO) +tmp/$(PACKAGE): $(UPSTREAM)/$(SAFE_COMMIT)/$(GIT_REPO)/$(PEAR_PKGDIR) rm -rf tmp mkdir tmp - cp -r $(UPSTREAM)/$(GIT_REPO)/$(PEAR_PKGDIR) tmp/$(PACKAGE) + cp -r "$(UPSTREAM)/$(SAFE_COMMIT)/$(GIT_REPO)/$(PEAR_PKGDIR)" tmp/$(PACKAGE) endif endif ifneq ($(PACKAGE_VC),) # Short name for the source package as a target for the command line. -.PHONY:source -source: tmp/$(PACKAGE) +tmp/$(SOURCE_0): tmp/$(PACKAGE) sed -i -e "/version/,+1 s#\(.*\)#\1dev$(RELTAG)#" tmp/$(PACKAGE)/package.xml sed -i -e "/lead/,+1 s#.*#$(DATE)#" tmp/$(PACKAGE)/package.xml ifneq ($(ALTERNATE_CHANNEL),) @@ -193,13 +183,15 @@ sed -i -e '/date.*\/date/ i\ $(ALTERNATE_MAINTAINER_SNIPPET)' tmp/$(PACKAGE)/package.xml; \ fi endif - $(PEAR) package tmp/$(PACKAGE)/package.xml - rm -rf tmp + cd tmp && $(PEAR) package $(PACKAGE)/package.xml # Short name for the source package as a target for the command line. +tmp/.sent: tmp/$(SOURCE_0) + scp tmp/$(SOURCE_0) $(FILESERVER) + touch tmp/.sent + .PHONY:snapshot -snapshot: source - scp $(SOURCE_0) $(FILESERVER) +snapshot: tmp/.sent endif # Target for retrieving the source package @@ -271,6 +263,7 @@ rm -rf $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm rm -rf $(SOURCE_0) rm -rf *~ + rm -rf tmp rm -rf $(PACKAGE).spec rm -rf package.patch From cvs at kolab.org Wed Jul 22 08:29:20 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:29:20 +0200 (CEST) Subject: gunnar: server Makefile,1.81,1.82 Message-ID: <20090722062920.217F3600827@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv24227 Modified Files: Makefile Log Message: Add a snapshots target. Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.81 retrieving revision 1.82 diff -u -d -r1.81 -r1.82 --- Makefile 10 Jul 2009 04:19:32 -0000 1.81 +++ Makefile 22 Jul 2009 06:29:17 -0000 1.82 @@ -182,3 +182,10 @@ echo -n "."; \ fi; \ done + +.PHONY: snapshots +snapshots: + for PKG in pear/Horde_*; \ + do \ + make -C $$PKG snapshot; \ + done From cvs at kolab.org Wed Jul 22 08:46:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_DOM .cvsignore,1.2,1.3 Message-ID: <20090722064612.9A8DE600827@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_DOM In directory doto:/tmp/cvs-serv24639/Horde_DOM Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_DOM/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 14 Jul 2009 10:13:04 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:39 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Editor .cvsignore,1.1,1.2 Message-ID: <20090722064612.9A943600828@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Editor In directory doto:/tmp/cvs-serv24639/Horde_Editor Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Editor/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 10:39:53 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Date .cvsignore,1.2,1.3 Message-ID: <20090722064612.9A97C600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Date In directory doto:/tmp/cvs-serv24639/Horde_Date Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Date/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 14 Jul 2009 07:54:31 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:38 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Editor-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064612.9A9B460082A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Editor-H4 In directory doto:/tmp/cvs-serv24639/Horde_Editor-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Editor-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 11:43:27 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Date-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064612.8D31C600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Date-H4 In directory doto:/tmp/cvs-serv24639/Horde_Date-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Date-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 09:02:46 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:39 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed .cvsignore,1.1,1.2 Message-ID: <20090722064612.9AA0460082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed In directory doto:/tmp/cvs-serv24639/Horde_Feed Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Feed/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 12:30:42 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_CSV .cvsignore,1.1,1.2 Message-ID: <20090722064612.9AAE560082D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_CSV In directory doto:/tmp/cvs-serv24639/Horde_File_CSV Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_File_CSV/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 13:41:42 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_CSV-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064612.9AB1960082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_CSV-H4 In directory doto:/tmp/cvs-serv24639/Horde_File_CSV-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_File_CSV-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 15:53:15 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064612.9AAB060082C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed-H4 In directory doto:/tmp/cvs-serv24639/Horde_Feed-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Feed-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 12:49:45 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_SessionHandler .cvsignore,1.1,1.2 Message-ID: <20090722064613.9DD0060083F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SessionHandler In directory doto:/tmp/cvs-serv24639/Horde_SessionHandler Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_SessionHandler/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Secret .cvsignore,1.2,1.3 Message-ID: <20090722064613.9D04560083E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Secret In directory doto:/tmp/cvs-serv24639/Horde_Secret Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Secret/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064613.C43FC60C4A2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form-H4 In directory doto:/tmp/cvs-serv24639/Horde_Form-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Form-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 20 Jul 2009 14:27:13 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_SessionObjects .cvsignore,1.2,1.3 Message-ID: <20090722064613.C450260C4A5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SessionObjects In directory doto:/tmp/cvs-serv24639/Horde_SessionObjects Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_SessionObjects/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Serialize .cvsignore,1.2,1.3 Message-ID: <20090722064613.C3EBC60C4A1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Serialize In directory doto:/tmp/cvs-serv24639/Horde_Serialize Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Serialize/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Share .cvsignore,1.1,1.2 Message-ID: <20090722064613.C48F560C4A6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Share In directory doto:/tmp/cvs-serv24639/Horde_Share Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Share/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_SpellChecker .cvsignore,1.1,1.2 Message-ID: <20090722064613.C4CE060C4A7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SpellChecker In directory doto:/tmp/cvs-serv24639/Horde_SpellChecker Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_SpellChecker/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_SQL .cvsignore,1.1,1.2 Message-ID: <20090722064613.C4DA360C4A8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SQL In directory doto:/tmp/cvs-serv24639/Horde_SQL Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_SQL/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Template .cvsignore,1.1,1.2 Message-ID: <20090722064613.C5F0D60C4A9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Template In directory doto:/tmp/cvs-serv24639/Horde_Template Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Template/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_SyncML .cvsignore,1.1,1.2 Message-ID: <20090722064613.C6F3260C4AA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SyncML In directory doto:/tmp/cvs-serv24639/Horde_SyncML Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_SyncML/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Util .cvsignore,1.3,1.4 Message-ID: <20090722064614.057CA60C4AE@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Util In directory doto:/tmp/cvs-serv24639/Horde_Util Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Util/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 21 Jul 2009 19:28:03 -0000 1.3 +++ .cvsignore 22 Jul 2009 06:45:49 -0000 1.4 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Diff .cvsignore,1.1,1.2 Message-ID: <20090722064613.C866860C4AB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Diff In directory doto:/tmp/cvs-serv24639/Horde_Text_Diff Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Text_Diff/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_VC .cvsignore,1.1,1.2 Message-ID: <20090722064614.0B28760C4B1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_VC In directory doto:/tmp/cvs-serv24639/Horde_VC Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_VC/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:03 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:52 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Filter .cvsignore,1.1,1.2 Message-ID: <20090722064613.CA0E560C4AC@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Filter In directory doto:/tmp/cvs-serv24639/Horde_Text_Filter Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Text_Filter/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:41 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_View .cvsignore,1.1,1.2 Message-ID: <20090722064614.0D21F60C4B4@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_View In directory doto:/tmp/cvs-serv24639/Horde_View Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_View/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:03 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:52 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_UI .cvsignore,1.1,1.2 Message-ID: <20090722064614.0BB7060C4B2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_UI In directory doto:/tmp/cvs-serv24639/Horde_UI Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_UI/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:03 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:48 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Textile .cvsignore,1.1,1.2 Message-ID: <20090722064614.0370E600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Textile In directory doto:/tmp/cvs-serv24639/Horde_Text_Textile Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Text_Textile/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:48 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_FreeBusy .cvsignore,1.1,1.2 Message-ID: <20090722064613.3AF8A600830@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_FreeBusy In directory doto:/tmp/cvs-serv24639/Horde_Kolab_FreeBusy Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Kolab_FreeBusy/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:00 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_Format .cvsignore,1.1,1.2 Message-ID: <20090722064613.2C61760082F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_Format In directory doto:/tmp/cvs-serv24639/Horde_Kolab_Format Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Kolab_Format/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:00 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Flowed .cvsignore,1.1,1.2 Message-ID: <20090722064614.E67D060C4AD@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Flowed In directory doto:/tmp/cvs-serv24639/Horde_Text_Flowed Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Text_Flowed/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:47 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Log .cvsignore,1.1,1.2 Message-ID: <20090722064613.3C756600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Log In directory doto:/tmp/cvs-serv24639/Horde_Log Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Log/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:00 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Xml_Element .cvsignore,1.1,1.2 Message-ID: <20090722064614.10FAF60082A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Xml_Element In directory doto:/tmp/cvs-serv24639/Horde_Xml_Element Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Xml_Element/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:03 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:52 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_LDAP .cvsignore,1.2,1.3 Message-ID: <20090722064613.422E8600834@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_LDAP In directory doto:/tmp/cvs-serv24639/Horde_LDAP Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_LDAP/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 21 Jul 2009 19:28:00 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Lock .cvsignore,1.1,1.2 Message-ID: <20090722064613.3F97B600833@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Lock In directory doto:/tmp/cvs-serv24639/Horde_Lock Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Lock/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:00 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Memcache .cvsignore,1.1,1.2 Message-ID: <20090722064613.432BF600835@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Memcache In directory doto:/tmp/cvs-serv24639/Horde_Memcache Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Memcache/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:00 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Token .cvsignore,1.1,1.2 Message-ID: <20090722064614.0A30160C4B0@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Token In directory doto:/tmp/cvs-serv24639/Horde_Token Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Token/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:48 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Mobile .cvsignore,1.1,1.2 Message-ID: <20090722064613.57879600837@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Mobile In directory doto:/tmp/cvs-serv24639/Horde_Mobile Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Mobile/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:01 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Austria .cvsignore,1.1,1.2 Message-ID: <20090722064614.56AAC60083E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Austria In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Austria Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Austria/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:06:20 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Auth_SASL .cvsignore,1.3,1.4 Message-ID: <20090722064614.54C2360082D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Auth_SASL In directory doto:/tmp/cvs-serv24639/PEAR-Auth_SASL Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Auth_SASL/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 9 Jul 2009 19:42:56 -0000 1.3 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.4 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Yaml .cvsignore,1.1,1.2 Message-ID: <20090722064614.44F6A60082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Yaml In directory doto:/tmp/cvs-serv24639/Horde_Yaml Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Yaml/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:03 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:52 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Kolab_Server-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064614.5A0E660C4BA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Kolab_Server-H4 In directory doto:/tmp/cvs-serv24639/Kolab_Server-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Kolab_Server-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 26 May 2009 15:11:48 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:52 -0000 1.2 @@ -1,3 +1,4 @@ *.src.rpm *.tgz package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays .cvsignore,1.1,1.2 Message-ID: <20090722064614.591D260C4B9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 07:01:36 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Console_Table .cvsignore,1.1,1.2 Message-ID: <20090722064614.55AA560082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Console_Table In directory doto:/tmp/cvs-serv24639/PEAR-Console_Table Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Console_Table/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 05:27:15 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_NLS-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064613.78B7B600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_NLS-H4 In directory doto:/tmp/cvs-serv24639/Horde_NLS-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_NLS-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 18 May 2009 21:40:10 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -1,3 +1,4 @@ *.src.rpm *.tgz package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Net_SMS .cvsignore,1.1,1.2 Message-ID: <20090722064613.7984F600827@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Net_SMS In directory doto:/tmp/cvs-serv24639/Horde_Net_SMS Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Net_SMS/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:01 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Maintenance .cvsignore,1.1,1.2 Message-ID: <20090722064613.3D0B8600832@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Maintenance In directory doto:/tmp/cvs-serv24639/Horde_Maintenance Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Maintenance/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:00 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Perms .cvsignore,1.2,1.3 Message-ID: <20090722064613.8318560083B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Perms In directory doto:/tmp/cvs-serv24639/Horde_Perms Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Perms/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 21 Jul 2009 19:28:01 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Util-H4 .cvsignore,1.2,1.3 Message-ID: <20090722064614.089B860C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Util-H4 In directory doto:/tmp/cvs-serv24639/Horde_Util-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Util-H4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 23 Jun 2009 14:16:08 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:49 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form .cvsignore,1.1,1.2 Message-ID: <20090722064614.6809460C4BD@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form In directory doto:/tmp/cvs-serv24639/Horde_Form Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Form/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 16:08:43 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Net_IMSP .cvsignore,1.1,1.2 Message-ID: <20090722064613.6964A600838@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Net_IMSP In directory doto:/tmp/cvs-serv24639/Horde_Net_IMSP Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Net_IMSP/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:01 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Tree .cvsignore,1.1,1.2 Message-ID: <20090722064614.0C2E460C4B3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Tree In directory doto:/tmp/cvs-serv24639/Horde_Tree Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Tree/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:48 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Cache .cvsignore,1.1,1.2 Message-ID: <20090722064614.5845660C4B8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Cache In directory doto:/tmp/cvs-serv24639/PEAR-Cache Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Cache/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 04:42:53 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_XML_WBXML .cvsignore,1.1,1.2 Message-ID: <20090722064614.2328E60C4B6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_XML_WBXML In directory doto:/tmp/cvs-serv24639/Horde_XML_WBXML Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_XML_WBXML/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:03 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:52 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Notification-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064613.80A2160083A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Notification-H4 In directory doto:/tmp/cvs-serv24639/Horde_Notification-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Notification-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 26 Jun 2009 08:05:24 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_MIME .cvsignore,1.1,1.2 Message-ID: <20090722064613.45E85600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_MIME In directory doto:/tmp/cvs-serv24639/Horde_MIME Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_MIME/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Sep 2008 16:27:38 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Denmark .cvsignore,1.1,1.2 Message-ID: <20090722064614.5C8E360C4BB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Denmark In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Denmark Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Denmark/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:07:02 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_NLS .cvsignore,1.3,1.4 Message-ID: <20090722064613.7A537600839@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_NLS In directory doto:/tmp/cvs-serv24639/Horde_NLS Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_NLS/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 21 Jul 2009 19:28:01 -0000 1.3 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.4 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_Sieve .cvsignore,1.4,1.5 Message-ID: <20090722064614.89D9460C4C6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_Sieve In directory doto:/tmp/cvs-serv24639/PEAR-Net_Sieve Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_Sieve/.cvsignore,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- .cvsignore 13 Jul 2009 10:50:17 -0000 1.4 +++ .cvsignore 22 Jul 2009 06:46:08 -0000 1.5 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LMTP .cvsignore,1.1,1.2 Message-ID: <20090722064614.87E8060C4C3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LMTP In directory doto:/tmp/cvs-serv24639/PEAR-Net_LMTP Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LMTP/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 23 Aug 2007 12:11:50 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:08 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Ukraine .cvsignore,1.1,1.2 Message-ID: <20090722064614.8756160C4C1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Ukraine In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Ukraine Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Ukraine/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:10:40 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:02 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date .cvsignore,1.2,1.3 Message-ID: <20090722064614.5F0CE60C4BC@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date In directory doto:/tmp/cvs-serv24639/PEAR-Date Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 10 Jul 2009 04:59:50 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_SMTP .cvsignore,1.2,1.3 Message-ID: <20090722064614.8828860C4C4@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_SMTP In directory doto:/tmp/cvs-serv24639/PEAR-Net_SMTP Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_SMTP/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 11 Jul 2009 18:18:55 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:46:08 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Discordian .cvsignore, 1.1, 1.2 Message-ID: <20090722064614.8964A60083F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Discordian In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Discordian Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Discordian/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:07:19 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Notification .cvsignore,1.3,1.4 Message-ID: <20090722064613.8A1E560083D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Notification In directory doto:/tmp/cvs-serv24639/Horde_Notification Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Notification/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 21 Jul 2009 19:28:01 -0000 1.3 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.4 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LDAP .cvsignore,1.1,1.2 Message-ID: <20090722064614.8799260C4C2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LDAP In directory doto:/tmp/cvs-serv24639/PEAR-Net_LDAP Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LDAP/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 05:55:49 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:08 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Brazil .cvsignore,1.1,1.2 Message-ID: <20090722064614.5777960C4B7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Brazil In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Brazil Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Brazil/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:06:39 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Service_Weather .cvsignore,1.1,1.2 Message-ID: <20090722064615.240B5600830@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Service_Weather In directory doto:/tmp/cvs-serv24639/PEAR-Service_Weather Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Service_Weather/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 04:53:03 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:10 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Sweden .cvsignore,1.1,1.2 Message-ID: <20090722064614.8705460C4C0@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Sweden In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Sweden Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Sweden/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:10:22 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:02 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-SOAP .cvsignore,1.1,1.2 Message-ID: <20090722064615.26136600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-SOAP In directory doto:/tmp/cvs-serv24639/PEAR-SOAP Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-SOAP/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 04:33:18 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:10 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_URL .cvsignore,1.1,1.2 Message-ID: <20090722064615.19E9860082A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_URL In directory doto:/tmp/cvs-serv24639/PEAR-Net_URL Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_URL/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 23 Aug 2007 12:11:50 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:09 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064615.E96E3600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF-H4 In directory doto:/tmp/cvs-serv24639/Horde_File_PDF-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_File_PDF-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 15:53:15 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-PHPUnit-Channel .cvsignore,1.1,1.2 Message-ID: <20090722064615.2102F60082F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-PHPUnit-Channel In directory doto:/tmp/cvs-serv24639/PEAR-PHPUnit-Channel Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-PHPUnit-Channel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Sep 2008 13:31:31 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:10 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Slovenia .cvsignore,1.1,1.2 Message-ID: <20090722064614.8835E60C4C5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Slovenia In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Slovenia Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Slovenia/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:10:03 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:01 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_Socket .cvsignore,1.1,1.2 Message-ID: <20090722064614.CD6E960C4A2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_Socket In directory doto:/tmp/cvs-serv24639/PEAR-Net_Socket Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_Socket/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 27 Jul 2007 19:50:44 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:08 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:13 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:13 +0200 (CEST) Subject: gunnar: server/pear/Horde_Prefs .cvsignore,1.2,1.3 Message-ID: <20090722064613.86BE960083C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Prefs In directory doto:/tmp/cvs-serv24639/Horde_Prefs Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Prefs/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 21 Jul 2009 19:28:02 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Framework .cvsignore,1.2,1.3 Message-ID: <20090722064615.2D94160C4A6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Framework In directory doto:/tmp/cvs-serv24639/Horde_Framework Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Framework/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 20 May 2009 08:13:29 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.3 @@ -1,3 +1,4 @@ *.src.rpm *.tgz package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Parser .cvsignore,1.1,1.2 Message-ID: <20090722064615.2A8F8600832@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Parser In directory doto:/tmp/cvs-serv24639/PEAR-XML_Parser Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-XML_Parser/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 05:25:56 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:10 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Argv-H4 .cvsignore,1.3,1.4 Message-ID: <20090722064616.0E2D460082D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Argv-H4 In directory doto:/tmp/cvs-serv24639/Horde_Argv-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv-H4/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 13 Jul 2009 10:50:15 -0000 1.3 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.4 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Argv .cvsignore,1.3,1.4 Message-ID: <20090722064616.0969460082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Argv In directory doto:/tmp/cvs-serv24639/Horde_Argv Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 13 Jul 2009 10:50:15 -0000 1.3 +++ .cvsignore 22 Jul 2009 06:45:13 -0000 1.4 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_History-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064615.3349960082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_History-H4 In directory doto:/tmp/cvs-serv24639/Horde_History-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_History-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 20 Jul 2009 15:04:53 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Util .cvsignore,1.1,1.2 Message-ID: <20090722064615.35605600834@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Util In directory doto:/tmp/cvs-serv24639/PEAR-XML_Util Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-XML_Util/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 05:09:35 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:10 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/PHPUnit .cvsignore,1.1,1.2 Message-ID: <20090722064615.4F398600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PHPUnit In directory doto:/tmp/cvs-serv24639/PHPUnit Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PHPUnit/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Sep 2008 13:31:31 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:10 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:14 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_EnglandWales .cvsignore, 1.1, 1.2 Message-ID: <20090722064614.8AF1F60C4C7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_EnglandWales In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_EnglandWales Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_EnglandWales/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:07:39 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Group-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064615.2BAD4600833@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Group-H4 In directory doto:/tmp/cvs-serv24639/Horde_Group-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Group-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 20 Jul 2009 14:43:32 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth .cvsignore,1.2,1.3 Message-ID: <20090722064616.1136660082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth In directory doto:/tmp/cvs-serv24639/Horde_Auth Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Auth/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 12:39:26 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_USA .cvsignore,1.1,1.2 Message-ID: <20090722064616.51966600833@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_USA In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_USA Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_USA/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:11:16 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:05 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_History .cvsignore,1.2,1.3 Message-ID: <20090722064616.7A938600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_History In directory doto:/tmp/cvs-serv24639/Horde_History Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_History/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 20 Jul 2009 14:53:08 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Image .cvsignore,1.1,1.2 Message-ID: <20090722064616.7D814600837@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Image In directory doto:/tmp/cvs-serv24639/Horde_Image Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Image/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:27:59 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Horde-Channel .cvsignore,1.1,1.2 Message-ID: <20090722064615.CCAF4600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Horde-Channel In directory doto:/tmp/cvs-serv24639/PEAR-Horde-Channel Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Horde-Channel/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Sep 2008 09:43:57 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:05 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Group .cvsignore,1.2,1.3 Message-ID: <20090722064615.31BA760082D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Group In directory doto:/tmp/cvs-serv24639/Horde_Group Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Group/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 20 Jul 2009 14:38:18 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm .cvsignore,1.1,1.2 Message-ID: <20090722064615.F2B5B600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm In directory doto:/tmp/cvs-serv24639/Horde_Alarm Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Alarm/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 11:41:20 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:13 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF .cvsignore,1.1,1.2 Message-ID: <20090722064616.7F6CF600838@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF In directory doto:/tmp/cvs-serv24639/Horde_File_PDF Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_File_PDF/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 14 Jul 2009 13:41:42 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_Filter .cvsignore,1.1,1.2 Message-ID: <20090722064616.85A06600828@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_Filter In directory doto:/tmp/cvs-serv24639/Horde_Kolab_Filter Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Kolab_Filter/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:28:00 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064616.1387960082F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm-H4 In directory doto:/tmp/cvs-serv24639/Horde_Alarm-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Alarm-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 11:41:20 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:13 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Http_Client .cvsignore,1.1,1.2 Message-ID: <20090722064617.1E86E600828@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Http_Client In directory doto:/tmp/cvs-serv24639/Horde_Http_Client Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Http_Client/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:27:59 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/PEAR-DB .cvsignore,1.1,1.2 Message-ID: <20090722064616.54C5F600834@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-DB In directory doto:/tmp/cvs-serv24639/PEAR-DB Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-DB/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 04:39:32 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:05 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cache-H4 .cvsignore,1.2,1.3 Message-ID: <20090722064617.6DDFA60082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cache-H4 In directory doto:/tmp/cvs-serv24639/Horde_Cache-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache-H4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 14:26:41 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_iCalendar .cvsignore,1.2,1.3 Message-ID: <20090722064616.A908660083A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_iCalendar In directory doto:/tmp/cvs-serv24639/Horde_iCalendar Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_iCalendar/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 21 Jul 2009 19:28:04 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_IMAP .cvsignore,1.1,1.2 Message-ID: <20090722064617.2C0D7600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_IMAP In directory doto:/tmp/cvs-serv24639/Horde_IMAP Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_IMAP/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:27:59 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_UNO .cvsignore,1.1,1.2 Message-ID: <20090722064616.3B296600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_UNO In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_UNO Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_UNO/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:10:58 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:05 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/PEAR-File .cvsignore,1.1,1.2 Message-ID: <20090722064616.68AD160082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-File In directory doto:/tmp/cvs-serv24639/PEAR-File Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-File/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 05:35:05 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:05 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cipher .cvsignore,1.2,1.3 Message-ID: <20090722064617.6FD2860082C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cipher In directory doto:/tmp/cvs-serv24639/Horde_Cipher Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cipher/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 14:41:42 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab .cvsignore,1.1,1.2 Message-ID: <20090722064616.82F65600839@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab In directory doto:/tmp/cvs-serv24639/Horde_Kolab Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Kolab/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 21 Jul 2009 19:27:59 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:40 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/PEAR-File_Find .cvsignore,1.1,1.2 Message-ID: <20090722064616.72EA8600835@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-File_Find In directory doto:/tmp/cvs-serv24639/PEAR-File_Find Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-File_Find/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 05:45:14 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:05 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cache .cvsignore,1.3,1.4 Message-ID: <20090722064617.6BF3A60082A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cache In directory doto:/tmp/cvs-serv24639/Horde_Cache Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 13 Jul 2009 14:16:58 -0000 1.3 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.4 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser-H4 .cvsignore,1.2,1.3 Message-ID: <20090722064617.68F96600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser-H4 In directory doto:/tmp/cvs-serv24639/Horde_Browser-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser-H4/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 13:46:13 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064616.140F4600830@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth-H4 In directory doto:/tmp/cvs-serv24639/Horde_Auth-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Auth-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 12:51:24 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-XML_Serializer .cvsignore,1.1,1.2 Message-ID: <20090722064615.30F1E60082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-XML_Serializer In directory doto:/tmp/cvs-serv24639/PEAR-XML_Serializer Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-XML_Serializer/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 05:25:56 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:10 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser .cvsignore,1.3,1.4 Message-ID: <20090722064617.73C57600830@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser In directory doto:/tmp/cvs-serv24639/Horde_Browser Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 13 Jul 2009 13:40:08 -0000 1.3 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.4 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-HTTP_WebDAV_Server .cvsignore,1.1,1.2 Message-ID: <20090722064618.568A160082F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-HTTP_WebDAV_Server In directory doto:/tmp/cvs-serv24639/PEAR-HTTP_WebDAV_Server Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-HTTP_WebDAV_Server/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 12 Jul 2009 05:50:21 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:07 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Ireland .cvsignore,1.1,1.2 Message-ID: <20090722064617.756AF600833@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Ireland In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Ireland Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Ireland/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:08:15 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:56 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress .cvsignore,1.1,1.2 Message-ID: <20090722064617.CC9A1600827@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress In directory doto:/tmp/cvs-serv24639/Horde_Compress Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Compress/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 15:02:09 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Germany .cvsignore,1.1,1.2 Message-ID: <20090722064618.A5AEF60082A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Germany In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Germany Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Germany/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 07:42:19 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:54 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/Horde_Controller .cvsignore,1.1,1.2 Message-ID: <20090722064618.3438A600828@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Controller In directory doto:/tmp/cvs-serv24639/Horde_Controller Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Controller/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 15:09:18 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:15 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Autoloader .cvsignore,1.2,1.3 Message-ID: <20090722064617.72CFA60082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Autoloader In directory doto:/tmp/cvs-serv24639/Horde_Autoloader Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Autoloader/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 13:04:41 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064617.74B71600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block-H4 In directory doto:/tmp/cvs-serv24639/Horde_Block-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Block-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 13:33:09 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Italy .cvsignore,1.1,1.2 Message-ID: <20090722064618.A8AF260082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Italy In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Italy Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Italy/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:08:35 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:58 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_DIME .cvsignore,1.1,1.2 Message-ID: <20090722064618.B967860082C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_DIME In directory doto:/tmp/cvs-serv24639/PEAR-Net_DIME Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_DIME/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 11 Jul 2009 17:12:46 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:07 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_CLI .cvsignore,1.2,1.3 Message-ID: <20090722064617.78917600835@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_CLI In directory doto:/tmp/cvs-serv24639/Horde_CLI Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_CLI/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 13 Jul 2009 14:52:17 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cli-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064617.7ABC6600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cli-H4 In directory doto:/tmp/cvs-serv24639/Horde_Cli-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cli-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 14:55:24 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail .cvsignore,1.2,1.3 Message-ID: <20090722064618.68589600838@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail In directory doto:/tmp/cvs-serv24639/PEAR-Mail Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 11 Jul 2009 18:23:07 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:46:07 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail_Mime .cvsignore,1.3,1.4 Message-ID: <20090722064618.6A756600839@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail_Mime In directory doto:/tmp/cvs-serv24639/PEAR-Mail_Mime Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail_Mime/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 11 Jul 2009 19:14:02 -0000 1.3 +++ .cvsignore 22 Jul 2009 06:46:07 -0000 1.4 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Log .cvsignore,1.1,1.2 Message-ID: <20090722064618.595A7600832@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Log In directory doto:/tmp/cvs-serv24639/PEAR-Log Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Log/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 27 Jul 2007 19:50:44 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:07 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block .cvsignore,1.1,1.2 Message-ID: <20090722064617.70CAC60082D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block In directory doto:/tmp/cvs-serv24639/Horde_Block Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Block/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 13:21:48 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064618.305CC600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress-H4 In directory doto:/tmp/cvs-serv24639/Horde_Compress-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Compress-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 15:05:45 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:15 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:19 +0200 (CEST) Subject: gunnar: server/pear/Horde_Core-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064619.3F02B600830@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Core-H4 In directory doto:/tmp/cvs-serv24639/Horde_Core-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Core-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 15:15:06 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:16 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:17 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:17 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cipher-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064617.769A2600834@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cipher-H4 In directory doto:/tmp/cvs-serv24639/Horde_Cipher-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cipher-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 14:46:17 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:14 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LDAP2 .cvsignore,1.2,1.3 Message-ID: <20090722064618.BCFEA60082D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LDAP2 In directory doto:/tmp/cvs-serv24639/PEAR-Net_LDAP2 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LDAP2/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 25 Apr 2009 23:01:05 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:46:07 -0000 1.3 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail-mimeDecode .cvsignore,1.2,1.3 Message-ID: <20090722064618.925AE60083A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail-mimeDecode In directory doto:/tmp/cvs-serv24639/PEAR-Mail-mimeDecode Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Mail-mimeDecode/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 11 Jul 2009 18:58:22 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:46:07 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:21 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:21 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt .cvsignore,1.1,1.2 Message-ID: <20090722064621.72DC0600828@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt In directory doto:/tmp/cvs-serv24639/Horde_Crypt Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Crypt/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 17:12:28 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:19 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:18 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:18 +0200 (CEST) Subject: gunnar: server/pear/PEAR-HTTP_Request .cvsignore,1.1,1.2 Message-ID: <20090722064618.5492D600829@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-HTTP_Request In directory doto:/tmp/cvs-serv24639/PEAR-HTTP_Request Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-HTTP_Request/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 23 Aug 2007 12:11:50 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:07 -0000 1.2 @@ -1 +1,2 @@ *.src.rpm +tmp From cvs at kolab.org Wed Jul 22 08:46:21 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:21 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Netherlands .cvsignore, 1.1, 1.2 Message-ID: <20090722064621.45D08600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Netherlands In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Netherlands Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Netherlands/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:09:11 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:58 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:19 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Iceland .cvsignore,1.1,1.2 Message-ID: <20090722064619.A99BD600826@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Iceland In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Iceland Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Iceland/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:07:57 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:56 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:21 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:21 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Norway .cvsignore,1.1,1.2 Message-ID: <20090722064621.53E05600827@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Norway In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Norway Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Norway/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:09:29 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:58 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:24 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:24 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Romania .cvsignore,1.1,1.2 Message-ID: <20090722064624.6EF7A600827@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Romania In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Romania Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Romania/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:09:46 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:46:00 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:22 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Date_Holidays_Japan .cvsignore,1.1,1.2 Message-ID: <20090722064622.A572B600827@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Date_Holidays_Japan In directory doto:/tmp/cvs-serv24639/PEAR-Date_Holidays_Japan Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Date_Holidays_Japan/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 10 Jul 2009 08:08:53 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:58 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:30 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:30 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064630.3084660C4A5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt-H4 In directory doto:/tmp/cvs-serv24639/Horde_Crypt-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Crypt-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 17:19:30 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:19 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data .cvsignore,1.1,1.2 Message-ID: <20090722064639.C55176184BF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data In directory doto:/tmp/cvs-serv24639/Horde_Data Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Data/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 17:32:39 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:20 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:40 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:40 +0200 (CEST) Subject: gunnar: server/pear/Horde_DataTree .cvsignore,1.2,1.3 Message-ID: <20090722064640.6252D628FC2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_DataTree In directory doto:/tmp/cvs-serv24639/Horde_DataTree Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_DataTree/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 14 Jul 2009 07:25:52 -0000 1.2 +++ .cvsignore 22 Jul 2009 06:45:38 -0000 1.3 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:46:40 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:46:40 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data-H4 .cvsignore,1.1,1.2 Message-ID: <20090722064640.38C4D628FC1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data-H4 In directory doto:/tmp/cvs-serv24639/Horde_Data-H4 Modified Files: .cvsignore Log Message: Ignore all tmp file. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Data-H4/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- .cvsignore 13 Jul 2009 17:36:08 -0000 1.1 +++ .cvsignore 22 Jul 2009 06:45:34 -0000 1.2 @@ -2,3 +2,4 @@ *.tgz *.spec package.patch +tmp From cvs at kolab.org Wed Jul 22 08:49:44 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 08:49:44 +0200 (CEST) Subject: gunnar: server/pear Pear.mk,1.11,1.12 Message-ID: <20090722064944.C6AC6606E62@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear In directory doto:/tmp/cvs-serv25557 Modified Files: Pear.mk Log Message: Corrected removing the colon. Index: Pear.mk =================================================================== RCS file: /kolabrepository/server/pear/Pear.mk,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Pear.mk 22 Jul 2009 06:28:40 -0000 1.11 +++ Pear.mk 22 Jul 2009 06:49:42 -0000 1.12 @@ -45,7 +45,7 @@ # Determine the exact commit that should be retrieved from the repository COMMIT = $(shell grep "^repo_commit=" package.info | sed -e "s/repo_commit='\([A-Za-z0-9_:]*\)'.*/\1/") -SAFE_COMMIT = $(shell grep "^repo_commit=" package.info | sed -e "s/repo_commit=':?\([A-Za-z0-9_]*\)'.*/\1/") +SAFE_COMMIT = $(shell grep "^repo_commit=" package.info | sed -e "s/repo_commit=':*\([A-Za-z0-9_]*\)'.*/\1/") # Determine the release tag a package derived from a repository checkout should get RELTAG = $(shell grep "^repo_release=" package.info | sed -e "s/repo_release='\([0-9]*\)'.*/\1/") From cvs at kolab.org Wed Jul 22 09:28:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:28:19 +0200 (CEST) Subject: gunnar: server/pear/Horde_Framework package.info, NONE, 1.1 .cvsignore, 1.3, 1.4 Makefile, 1.2, 1.3 Message-ID: <20090722072819.10E51600165@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Framework In directory doto:/tmp/cvs-serv26669 Modified Files: .cvsignore Makefile Added Files: package.info Log Message: Convert Horde_Framework. --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_Framework' # The name of the RPM package package='Horde_Framework' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='Horde' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.pardus.de/kolab-sources/' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: Log \ PreReq: Horde_CLI \ PreReq: Horde_DOM \ PreReq: Horde_Util \ ' # Package summary description summary='Horde core Framework libraries' # Long package description description=' \ These classes provide the core functionality of the Horde Application \ Framework. \ ' # Source code license license='LGPL' Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/Horde_Framework/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 22 Jul 2009 06:45:40 -0000 1.3 +++ .cvsignore 22 Jul 2009 07:28:16 -0000 1.4 @@ -1,4 +1,5 @@ *.src.rpm *.tgz +*.spec package.patch tmp Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/Horde_Framework/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile 20 May 2009 08:13:29 -0000 1.2 +++ Makefile 22 Jul 2009 07:28:16 -0000 1.3 @@ -1 +1 @@ -include ../Horde.mk +include ../Pear.mk From cvs at kolab.org Wed Jul 22 09:52:08 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:52:08 +0200 (CEST) Subject: gunnar: server/pear Pear.mk,1.12,1.13 Message-ID: <20090722075208.5076560082B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear In directory doto:/tmp/cvs-serv30329 Modified Files: Pear.mk Log Message: Switch the fileserver to files.kolab.org. Index: Pear.mk =================================================================== RCS file: /kolabrepository/server/pear/Pear.mk,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- Pear.mk 22 Jul 2009 06:49:42 -0000 1.12 +++ Pear.mk 22 Jul 2009 07:52:06 -0000 1.13 @@ -61,8 +61,14 @@ # Allow to set the with_chroot option WITH_CHROOT = $(shell if [ -e ../.opt.chroot ]; then echo "yes"; else echo "no"; fi) -# Upload location for the fileserver (set this in you ssh config!) -FILESERVER = files:~/de/pardus/files/downloads/kolab-sources/ +# Upload location for the fileserver. Configure the kolab filesserver +# in your ssh config at ~/.ssh/config. E.g.: +# +# Host=kolabfiles +# User=wrobel +# Hostname=files.kolab.org +# +FILESERVER = kolabfiles # Set the default package file end ifeq "x$(FILEEND)" "x" @@ -187,7 +193,7 @@ # Short name for the source package as a target for the command line. tmp/.sent: tmp/$(SOURCE_0) - scp tmp/$(SOURCE_0) $(FILESERVER) + echo "put tmp/$(SOURCE_0)" | sftp $(FILESERVER) touch tmp/.sent .PHONY:snapshot From cvs at kolab.org Wed Jul 22 09:53:44 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:44 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm package.info,1.2,1.3 Message-ID: <20090722075344.683B860082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm In directory doto:/tmp/cvs-serv30400/Horde_Alarm Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Alarm/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 22 Jul 2009 07:53:11 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Wed Jul 22 09:53:46 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:46 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block package.info,1.2,1.3 Message-ID: <20090722075346.8D54F60082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block In directory doto:/tmp/cvs-serv30400/Horde_Block Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Block/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 22 Jul 2009 07:53:12 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Wed Jul 22 09:53:47 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:47 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm-H4 package.info,1.1,1.2 Message-ID: <20090722075347.4602F60082F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm-H4 In directory doto:/tmp/cvs-serv30400/Horde_Alarm-H4 Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Alarm-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 11:41:20 -0000 1.1 +++ package.info 22 Jul 2009 07:53:11 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Wed Jul 22 09:53:47 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:47 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth-H4 package.info,1.1,1.2 Message-ID: <20090722075347.B161F60082E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth-H4 In directory doto:/tmp/cvs-serv30400/Horde_Auth-H4 Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Auth-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 12:51:24 -0000 1.1 +++ package.info 22 Jul 2009 07:53:12 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Wed Jul 22 09:53:49 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:49 +0200 (CEST) Subject: gunnar: server/pear/Horde_Argv package.info,1.2,1.3 Message-ID: <20090722075349.D156D60083D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Argv In directory doto:/tmp/cvs-serv30400/Horde_Argv Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 13 Jul 2009 14:46:33 -0000 1.2 +++ package.info 22 Jul 2009 07:53:11 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Wed Jul 22 09:53:49 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:49 +0200 (CEST) Subject: gunnar: server/pear/Horde_Argv-H4 package.info,1.2,1.3 Message-ID: <20090722075349.DB2B7606E61@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Argv-H4 In directory doto:/tmp/cvs-serv30400/Horde_Argv-H4 Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Argv-H4/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 13 Jul 2009 14:46:33 -0000 1.2 +++ package.info 22 Jul 2009 07:53:11 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Wed Jul 22 09:53:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:50 +0200 (CEST) Subject: gunnar: server/pear/Horde_Autoloader package.info,1.1,1.2 Message-ID: <20090722075350.0B389600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Autoloader In directory doto:/tmp/cvs-serv30400/Horde_Autoloader Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Autoloader/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 13:20:14 -0000 1.1 +++ package.info 22 Jul 2009 07:53:12 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Wed Jul 22 09:53:49 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:49 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth package.info,1.3,1.4 Message-ID: <20090722075349.EE24E606E65@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth In directory doto:/tmp/cvs-serv30400/Horde_Auth Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Auth/package.info,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- package.info 21 Jul 2009 19:27:59 -0000 1.3 +++ package.info 22 Jul 2009 07:53:11 -0000 1.4 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Wed Jul 22 09:53:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:50 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block-H4 package.info,1.2,1.3 Message-ID: <20090722075350.3A432600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block-H4 In directory doto:/tmp/cvs-serv30400/Horde_Block-H4 Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Block-H4/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 13 Jul 2009 13:41:03 -0000 1.2 +++ package.info 22 Jul 2009 07:53:12 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Wed Jul 22 09:53:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:51 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cache-H4 package.info,1.1,1.2 Message-ID: <20090722075351.087A3600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cache-H4 In directory doto:/tmp/cvs-serv30400/Horde_Cache-H4 Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 14:26:42 -0000 1.1 +++ package.info 22 Jul 2009 07:53:13 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Wed Jul 22 09:53:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:51 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser-H4 package.info,1.2,1.3 Message-ID: <20090722075351.09AA4600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser-H4 In directory doto:/tmp/cvs-serv30400/Horde_Browser-H4 Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser-H4/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 13 Jul 2009 14:20:38 -0000 1.2 +++ package.info 22 Jul 2009 07:53:13 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Wed Jul 22 09:53:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:51 +0200 (CEST) Subject: gunnar: server/pear/Horde_CLI package.info,1.2,1.3 Message-ID: <20090722075351.37629600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_CLI In directory doto:/tmp/cvs-serv30400/Horde_CLI Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_CLI/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 22 Jul 2009 07:53:13 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Wed Jul 22 09:53:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:51 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser package.info,1.2,1.3 Message-ID: <20090722075351.36931600831@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser In directory doto:/tmp/cvs-serv30400/Horde_Browser Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Browser/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 22 Jul 2009 07:53:12 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Wed Jul 22 09:53:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:51 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cache package.info,1.2,1.3 Message-ID: <20090722075351.830A560082F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cache In directory doto:/tmp/cvs-serv30400/Horde_Cache Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cache/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 22 Jul 2009 07:53:13 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Wed Jul 22 09:53:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 22 Jul 2009 09:53:51 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cipher package.info,1.2,1.3 Message-ID: <20090722075351.D5BA3600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cipher In directory doto:/tmp/cvs-serv30400/Horde_Cipher Modified Files: package.info Log Message: Switch the download location to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cipher/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 22 Jul 2009 07:53:13 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:04 +0200 (CEST) Subject: richard: server/kolabd/kolabd Makefile.am, 1.53, 1.54 ChangeLog, 1.261, 1.262 Message-ID: <20090723081004.DCB84600830@lists.intevation.de> Author: richard Update of /kolabrepository/server/kolabd/kolabd In directory doto:/tmp/cvs-serv23708 Modified Files: Makefile.am ChangeLog Log Message: changed ldapserver_schemadir instead of $(ldapserver_confdir)/schema, kolab/issue3772 Index: Makefile.am =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/Makefile.am,v retrieving revision 1.53 retrieving revision 1.54 diff -u -d -r1.53 -r1.54 --- Makefile.am 2 Jun 2009 05:17:50 -0000 1.53 +++ Makefile.am 23 Jul 2009 08:10:02 -0000 1.54 @@ -85,7 +85,7 @@ horde.schema \ rfc2739.schema -ldapschemadir = $(ldapserver_confdir)/schema +ldapschemadir = $(ldapserver_schemadir) dist_ldapschema_DATA = $(ldapschema_FILES) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/ChangeLog,v retrieving revision 1.261 retrieving revision 1.262 diff -u -d -r1.261 -r1.262 --- ChangeLog 17 Jul 2009 22:19:03 -0000 1.261 +++ ChangeLog 23 Jul 2009 08:10:02 -0000 1.262 @@ -1,3 +1,8 @@ +2009-07-23 Richard Bos + + * Makefile: changed ldapserver_schemadir instead of + $(ldapserver_confdir)/schema, kolab/issue3772 + 2009-07-18 Mathieu Parent * templates/DB_CONFIG.slapd.template.in: change ownership from kolab to From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Serialize package.info,1.1,1.2 Message-ID: <20090723081014.5CA0A60C4A2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Serialize In directory doto:/tmp/cvs-serv23732/Horde_Serialize Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Serialize/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Image package.info,1.1,1.2 Message-ID: <20090723081014.5CA6D60C4A5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Image In directory doto:/tmp/cvs-serv23732/Horde_Image Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Image/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:27:59 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Log package.info,1.1,1.2 Message-ID: <20090723081014.5CABB60C4A6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Log In directory doto:/tmp/cvs-serv23732/Horde_Log Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Log/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:00 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_Format package.info,1.1,1.2 Message-ID: <20090723081014.58FE260C4A1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_Format In directory doto:/tmp/cvs-serv23732/Horde_Kolab_Format Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Kolab_Format/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:00 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Group package.info,1.2,1.3 Message-ID: <20090723081014.5CBE060C4AA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Group In directory doto:/tmp/cvs-serv23732/Horde_Group Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Group/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_IMAP package.info,1.1,1.2 Message-ID: <20090723081014.5CB0560C4A7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_IMAP In directory doto:/tmp/cvs-serv23732/Horde_IMAP Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_IMAP/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:27:59 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Http_Client package.info,1.1,1.2 Message-ID: <20090723081014.5CB4E60C4A8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Http_Client In directory doto:/tmp/cvs-serv23732/Horde_Http_Client Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Http_Client/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:27:59 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab package.info,1.1,1.2 Message-ID: <20090723081014.5CC7060C4AC@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab In directory doto:/tmp/cvs-serv23732/Horde_Kolab Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Kolab/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:27:59 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF package.info,1.2,1.3 Message-ID: <20090723081014.B9FCA600830@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF In directory doto:/tmp/cvs-serv23732/Horde_File_PDF Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_File_PDF/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Group-H4 package.info,1.1,1.2 Message-ID: <20090723081014.5CC2960C4AB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Group-H4 In directory doto:/tmp/cvs-serv23732/Horde_Group-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Group-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 20 Jul 2009 14:43:32 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt package.info,1.2,1.3 Message-ID: <20090723081014.BDE9A600837@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt In directory doto:/tmp/cvs-serv23732/Horde_Crypt Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Crypt/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_FreeBusy package.info,1.1,1.2 Message-ID: <20090723081014.5CB9760C4A9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_FreeBusy In directory doto:/tmp/cvs-serv23732/Horde_Kolab_FreeBusy Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Kolab_FreeBusy/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:00 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form package.info,1.2,1.3 Message-ID: <20090723081014.C3BA2600839@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form In directory doto:/tmp/cvs-serv23732/Horde_Form Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Form/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_CSV package.info,1.1,1.2 Message-ID: <20090723081014.C12EE600838@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_CSV In directory doto:/tmp/cvs-serv23732/Horde_File_CSV Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_File_CSV/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 13:41:42 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Kolab_Filter package.info,1.1,1.2 Message-ID: <20090723081014.D172060083F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Kolab_Filter In directory doto:/tmp/cvs-serv23732/Horde_Kolab_Filter Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Kolab_Filter/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:00 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_Framework package.info,1.1,1.2 Message-ID: <20090723081012.CF37160083D@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Framework In directory doto:/tmp/cvs-serv23732/Horde_Framework Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Framework/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 22 Jul 2009 07:28:16 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form-H4 package.info,1.2,1.3 Message-ID: <20090723081014.D08FF60083E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form-H4 In directory doto:/tmp/cvs-serv23732/Horde_Form-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Form-H4/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:12 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:12 +0200 (CEST) Subject: gunnar: server/pear/Horde_History-H4 package.info,1.1,1.2 Message-ID: <20090723081012.CB91F60083B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_History-H4 In directory doto:/tmp/cvs-serv23732/Horde_History-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_History-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 20 Jul 2009 15:04:53 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_Lock package.info,1.1,1.2 Message-ID: <20090723081014.D5CFA60C4AE@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Lock In directory doto:/tmp/cvs-serv23732/Horde_Lock Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Lock/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:00 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_CSV-H4 package.info,1.1,1.2 Message-ID: <20090723081014.BCCE9600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_CSV-H4 In directory doto:/tmp/cvs-serv23732/Horde_File_CSV-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_File_CSV-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 15:53:15 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_History package.info,1.2,1.3 Message-ID: <20090723081014.C5B9760083A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_History In directory doto:/tmp/cvs-serv23732/Horde_History Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_History/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Maintenance package.info,1.1,1.2 Message-ID: <20090723081015.D667A60C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Maintenance In directory doto:/tmp/cvs-serv23732/Horde_Maintenance Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Maintenance/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:00 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_SQL package.info,1.1,1.2 Message-ID: <20090723081015.D67B760C4B3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SQL In directory doto:/tmp/cvs-serv23732/Horde_SQL Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_SQL/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Secret package.info,1.1,1.2 Message-ID: <20090723081015.D676E60C4B2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Secret In directory doto:/tmp/cvs-serv23732/Horde_Secret Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Secret/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_LDAP package.info,1.1,1.2 Message-ID: <20090723081015.D66DA60C4B0@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_LDAP In directory doto:/tmp/cvs-serv23732/Horde_LDAP Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_LDAP/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF-H4 package.info,1.1,1.2 Message-ID: <20090723081014.CE5BA60083C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF-H4 In directory doto:/tmp/cvs-serv23732/Horde_File_PDF-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_File_PDF-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 15:53:15 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Prefs package.info,1.1,1.2 Message-ID: <20090723081015.D684560C4B5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Prefs In directory doto:/tmp/cvs-serv23732/Horde_Prefs Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Prefs/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_SessionHandler package.info,1.1,1.2 Message-ID: <20090723081015.D6ABC60C4BB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SessionHandler In directory doto:/tmp/cvs-serv23732/Horde_SessionHandler Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_SessionHandler/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Mobile package.info,1.1,1.2 Message-ID: <20090723081015.D67FE60C4B4@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Mobile In directory doto:/tmp/cvs-serv23732/Horde_Mobile Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Mobile/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:01 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Net_IMSP package.info,1.1,1.2 Message-ID: <20090723081015.D688B60C4B6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Net_IMSP In directory doto:/tmp/cvs-serv23732/Horde_Net_IMSP Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Net_IMSP/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:01 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Perms package.info,1.1,1.2 Message-ID: <20090723081015.D672660C4B1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Perms In directory doto:/tmp/cvs-serv23732/Horde_Perms Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Perms/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Share package.info,1.1,1.2 Message-ID: <20090723081015.DE1C760C4BD@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Share In directory doto:/tmp/cvs-serv23732/Horde_Share Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Share/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Net_SMS package.info,1.1,1.2 Message-ID: <20090723081015.D699360C4B9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Net_SMS In directory doto:/tmp/cvs-serv23732/Horde_Net_SMS Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Net_SMS/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:01 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Notification package.info,1.1,1.2 Message-ID: <20090723081015.D68DC60C4B7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Notification In directory doto:/tmp/cvs-serv23732/Horde_Notification Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Notification/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_NLS package.info,1.1,1.2 Message-ID: <20090723081015.D694860C4B8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_NLS In directory doto:/tmp/cvs-serv23732/Horde_NLS Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_NLS/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_SpellChecker package.info,1.1,1.2 Message-ID: <20090723081015.D6A9860C4BC@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SpellChecker In directory doto:/tmp/cvs-serv23732/Horde_SpellChecker Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_SpellChecker/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Token package.info,1.1,1.2 Message-ID: <20090723081015.F204A60C4C1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Token In directory doto:/tmp/cvs-serv23732/Horde_Token Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Token/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Memcache package.info,1.1,1.2 Message-ID: <20090723081015.D6B1F60C4BA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Memcache In directory doto:/tmp/cvs-serv23732/Horde_Memcache Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Memcache/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:01 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Filter package.info,1.1,1.2 Message-ID: <20090723081015.F40E560C4C7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Filter In directory doto:/tmp/cvs-serv23732/Horde_Text_Filter Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Text_Filter/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Textile package.info,1.1,1.2 Message-ID: <20090723081015.F20A460C4C0@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Textile In directory doto:/tmp/cvs-serv23732/Horde_Text_Textile Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Text_Textile/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Template package.info,1.1,1.2 Message-ID: <20090723081015.F2FB560C4C5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Template In directory doto:/tmp/cvs-serv23732/Horde_Template Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Template/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_VC package.info,1.1,1.2 Message-ID: <20090723081015.048EA60C4C9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_VC In directory doto:/tmp/cvs-serv23732/Horde_VC Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_VC/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:03 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_SyncML package.info,1.1,1.2 Message-ID: <20090723081015.DFFCD60C4BE@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SyncML In directory doto:/tmp/cvs-serv23732/Horde_SyncML Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_SyncML/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:14 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:14 +0200 (CEST) Subject: gunnar: server/pear/Horde_SessionObjects package.info,1.1,1.2 Message-ID: <20090723081014.D58E560C4AD@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SessionObjects In directory doto:/tmp/cvs-serv23732/Horde_SessionObjects Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_SessionObjects/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Xml_Element package.info,1.1,1.2 Message-ID: <20090723081016.0FEDD600836@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Xml_Element In directory doto:/tmp/cvs-serv23732/Horde_Xml_Element Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Xml_Element/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:03 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Diff package.info,1.1,1.2 Message-ID: <20090723081015.F385960C4C6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Diff In directory doto:/tmp/cvs-serv23732/Horde_Text_Diff Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Text_Diff/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_XML_WBXML package.info,1.1,1.2 Message-ID: <20090723081016.07253600830@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_XML_WBXML In directory doto:/tmp/cvs-serv23732/Horde_XML_WBXML Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_XML_WBXML/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:03 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Tree package.info,1.1,1.2 Message-ID: <20090723081015.F207360C4C2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Tree In directory doto:/tmp/cvs-serv23732/Horde_Tree Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Tree/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Util package.info,1.1,1.2 Message-ID: <20090723081015.F24CD60C4C4@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Util In directory doto:/tmp/cvs-serv23732/Horde_Util Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Util/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Text_Flowed package.info,1.1,1.2 Message-ID: <20090723081015.0087160C4C8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Text_Flowed In directory doto:/tmp/cvs-serv23732/Horde_Text_Flowed Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Text_Flowed/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:02 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_iCalendar package.info,1.1,1.2 Message-ID: <20090723081016.1AB05600838@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_iCalendar In directory doto:/tmp/cvs-serv23732/Horde_iCalendar Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_iCalendar/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:30:29 -0000 1.1 +++ package.info 23 Jul 2009 08:10:11 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_UI package.info,1.1,1.2 Message-ID: <20090723081015.F209560C4C3@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_UI In directory doto:/tmp/cvs-serv23732/Horde_UI Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_UI/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:03 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_View package.info,1.1,1.2 Message-ID: <20090723081015.0636360C4CA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_View In directory doto:/tmp/cvs-serv23732/Horde_View Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_View/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:03 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:16 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:16 +0200 (CEST) Subject: gunnar: server/pear/Horde_Yaml package.info,1.1,1.2 Message-ID: <20090723081016.1AA98600837@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Yaml In directory doto:/tmp/cvs-serv23732/Horde_Yaml Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Yaml/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 21 Jul 2009 19:28:03 -0000 1.1 +++ package.info 23 Jul 2009 08:10:10 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Controller package.info,1.1,1.2 Message-ID: <20090723081041.5DC8F60C4A9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Controller In directory doto:/tmp/cvs-serv23732/Horde_Controller Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Controller/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 15:09:18 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Core-H4 package.info,1.1,1.2 Message-ID: <20090723081041.5E43260C4AA@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Core-H4 In directory doto:/tmp/cvs-serv23732/Horde_Core-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Core-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 15:15:06 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress-H4 package.info,1.1,1.2 Message-ID: <20090723081041.5D51260C4A8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress-H4 In directory doto:/tmp/cvs-serv23732/Horde_Compress-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Compress-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 15:05:45 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cipher-H4 package.info,1.1,1.2 Message-ID: <20090723081041.5EC0E60C4AB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cipher-H4 In directory doto:/tmp/cvs-serv23732/Horde_Cipher-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cipher-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 14:46:17 -0000 1.1 +++ package.info 23 Jul 2009 08:10:08 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress package.info,1.2,1.3 Message-ID: <20090723081041.5CD1060C4A7@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress In directory doto:/tmp/cvs-serv23732/Horde_Compress Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Compress/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data package.info,1.2,1.3 Message-ID: <20090723081041.614E660C4AF@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data In directory doto:/tmp/cvs-serv23732/Horde_Data Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Data/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed package.info,1.1,1.2 Message-ID: <20090723081041.6A41F60C4B6@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed In directory doto:/tmp/cvs-serv23732/Horde_Feed Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Feed/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 12:30:42 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed-H4 package.info,1.2,1.3 Message-ID: <20090723081041.6AFE860C4B8@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed-H4 In directory doto:/tmp/cvs-serv23732/Horde_Feed-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Feed-H4/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 14 Jul 2009 13:41:30 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data-H4 package.info,1.1,1.2 Message-ID: <20090723081041.6248660C4B0@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data-H4 In directory doto:/tmp/cvs-serv23732/Horde_Data-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Data-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 17:36:08 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_DOM package.info,1.2,1.3 Message-ID: <20090723081041.6335760C4B1@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_DOM In directory doto:/tmp/cvs-serv23732/Horde_DOM Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_DOM/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 21 Jul 2009 19:27:59 -0000 1.2 +++ package.info 23 Jul 2009 08:10:09 -0000 1.3 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt-H4 package.info,1.1,1.2 Message-ID: <20090723081041.69C7E60C4B5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt-H4 In directory doto:/tmp/cvs-serv23732/Horde_Crypt-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Crypt-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 17:19:30 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Date-H4 package.info,1.1,1.2 Message-ID: <20090723081041.70A7260C4BC@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Date-H4 In directory doto:/tmp/cvs-serv23732/Horde_Date-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Date-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 09:02:46 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_DataTree package.info,1.3,1.4 Message-ID: <20090723081041.63AE560C4B4@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_DataTree In directory doto:/tmp/cvs-serv23732/Horde_DataTree Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_DataTree/package.info,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- package.info 21 Jul 2009 19:27:59 -0000 1.3 +++ package.info 23 Jul 2009 08:10:09 -0000 1.4 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cli-H4 package.info,1.1,1.2 Message-ID: <20090723081041.6F94760C4BB@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cli-H4 In directory doto:/tmp/cvs-serv23732/Horde_Cli-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Cli-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 13 Jul 2009 14:55:24 -0000 1.1 +++ package.info 23 Jul 2009 08:10:08 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Date package.info,1.1,1.2 Message-ID: <20090723081041.BA6DE60C4C4@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Date In directory doto:/tmp/cvs-serv23732/Horde_Date Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Date/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 07:54:31 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Thu Jul 23 10:10:41 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:41 +0200 (CEST) Subject: gunnar: server/pear/Horde_Editor-H4 package.info,1.1,1.2 Message-ID: <20090723081041.BC1C160C4C5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Editor-H4 In directory doto:/tmp/cvs-serv23732/Horde_Editor-H4 Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Editor-H4/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 11:43:27 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php-h4' From cvs at kolab.org Thu Jul 23 10:10:42 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 23 Jul 2009 10:10:42 +0200 (CEST) Subject: gunnar: server/pear/Horde_Editor package.info,1.1,1.2 Message-ID: <20090723081042.0CBD760C4A9@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Editor In directory doto:/tmp/cvs-serv23732/Horde_Editor Modified Files: package.info Log Message: Switch download url to files.kolab.org. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Editor/package.info,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- package.info 14 Jul 2009 10:39:53 -0000 1.1 +++ package.info 23 Jul 2009 08:10:09 -0000 1.2 @@ -28,7 +28,7 @@ release='20090713' # Source URL to download from -sourceurl='http://files.pardus.de/kolab-sources/' +sourceurl='http://files.kolab.org/incoming/wrobel/' # In which PHP library location should the library get installed php_lib_loc='php' From cvs at kolab.org Fri Jul 24 09:27:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 24 Jul 2009 09:27:19 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data package.info,1.3,1.4 Message-ID: <20090724072719.09AAA60083A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data In directory doto:/tmp/cvs-serv3509/Horde_Data Modified Files: package.info Log Message: Added Horde_File_CSV dependency Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Data/package.info,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- package.info 23 Jul 2009 08:10:09 -0000 1.3 +++ package.info 24 Jul 2009 07:27:16 -0000 1.4 @@ -48,6 +48,7 @@ PreReq: Horde_iCalendar \ PreReq: Horde_MIME \ PreReq: Horde_Util \ +PreReq: Horde_File_CSV \ ' # Package summary description From cvs at kolab.org Fri Jul 24 09:27:44 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 24 Jul 2009 09:27:44 +0200 (CEST) Subject: gunnar: server/pear/Horde_Http_Client package.info,1.2,1.3 Message-ID: <20090724072744.70DA260083C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Http_Client In directory doto:/tmp/cvs-serv3557/Horde_Http_Client Modified Files: package.info Log Message: Removed stray quote Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Http_Client/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 23 Jul 2009 08:10:09 -0000 1.2 +++ package.info 24 Jul 2009 07:27:42 -0000 1.3 @@ -52,7 +52,7 @@ # Long package description description=' \ -This package provides a light wrapper around PHP's stream support for \ +This package provides a light wrapper around PHPs stream support for \ performing HTTP requests. \ ' From cvs at kolab.org Fri Jul 24 09:27:52 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 24 Jul 2009 09:27:52 +0200 (CEST) Subject: gunnar: server/pear/Horde_RPC - New directory Message-ID: <20090724072752.DA2CA60C4A2@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_RPC In directory doto:/tmp/cvs-serv3579/Horde_RPC Log Message: Directory /kolabrepository/server/pear/Horde_RPC added to the repository From cvs at kolab.org Fri Jul 24 09:29:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 24 Jul 2009 09:29:04 +0200 (CEST) Subject: gunnar: server/pear/Horde_RPC .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090724072904.2BF5C60C4A5@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_RPC In directory doto:/tmp/cvs-serv3625 Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Added missing Horde_RPC --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch tmp --- NEW FILE: ChangeLog --- 2009-07-21 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of Horde source package pear_package='Horde_RPC' # The name of the RPM package package='Horde_RPC' # Where to find information about the package package_url='http://pear.horde.org/index.php?package=' # How should the source be retrieved? # # WGET: Download via wget package_origin='VC-CVS' # The name of the package in the source repository pear_pkgdir='RPC' # Commit tag or date to user repo_commit='HORDE_3_3_4' # What release number should the source snapshot get (usually a date)? repo_release='20090501' # Version number version='0.0.2dev20090501' # Package release number release='20090713' # Source URL to download from sourceurl='http://files.kolab.org/incoming/wrobel' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ BuildPreReq: PEAR-Horde-Channel \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ PreReq: PEAR-SOAP >= 0.8RC3 \ PreReq: Horde_Framework \ PreReq: Horde_Lock \ ' # Package summary description summary='Horde RPC API' # Long package description description=' \ The Horde_RPC:: class provides a common abstracted interface to various \ remote methods of accessing Horde functionality. \ ' # Source code license license='LGPL' From cvs at kolab.org Fri Jul 24 09:33:08 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 24 Jul 2009 09:33:08 +0200 (CEST) Subject: gunnar: server/kolab-webclient ChangeLog, 1.19, 1.20 kolab-webclient.spec, 1.37, 1.38 Message-ID: <20090724073308.9E02960083A@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolab-webclient In directory doto:/tmp/cvs-serv3772 Modified Files: ChangeLog kolab-webclient.spec Log Message: Finally removed all libraries and added the required dependencies. kolab/issue3293 (Big code duplication and code version messup: Horde libs in 2.2.1) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/kolab-webclient/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ChangeLog 12 Jul 2009 08:02:14 -0000 1.19 +++ ChangeLog 24 Jul 2009 07:33:06 -0000 1.20 @@ -1,3 +1,11 @@ +2009-07-24 Gunnar Wrobel

+ + * kolab-webclient.spec: + + kolab/issue3293 (Big code duplication and code version messup: Horde + libs in 2.2.1) + + 2009-07-12 Gunnar Wrobel

* kolab-webclient.spec: Removed the "pear" directory as all PEAR Index: kolab-webclient.spec =================================================================== RCS file: /kolabrepository/server/kolab-webclient/kolab-webclient.spec,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- kolab-webclient.spec 12 Jul 2009 08:02:14 -0000 1.37 +++ kolab-webclient.spec 24 Jul 2009 07:33:06 -0000 1.38 @@ -3,7 +3,7 @@ %define V_package kolab-webclient %define V_year 2009 %define V_month 07 -%define V_day 12 +%define V_day 24 %define V_version 1.2.0 %define V_source_version 1.2 %define V_passwd_version 3.0.1 @@ -85,6 +85,28 @@ BuildPreReq: OpenPKG, openpkg >= 20070603 BuildPreReq: php, php::with_pear = yes PreReq: kolabd +PreReq: Horde_Alarm +PreReq: Horde_Block +PreReq: Horde_Compress +PreReq: Horde_Crypt +PreReq: Horde_Data +PreReq: Horde_Editor +PreReq: Horde_Feed +PreReq: Horde_File_PDF +PreReq: Horde_Form +PreReq: Horde_Http_Client +PreReq: Horde_Image +PreReq: Horde_Maintenance +PreReq: Horde_Mobile +PreReq: Horde_Net_SMS +PreReq: Horde_RPC +PreReq: Horde_SessionHandler +PreReq: Horde_Share +PreReq: Horde_SyncML +PreReq: Horde_Template +PreReq: Horde_Text_Filter +PreReq: Horde_Text_Flowed +PreReq: Horde_Tree PreReq: Kolab_Format >= 1.0.1 PreReq: Kolab_Server >= 0.5.0 PreReq: Kolab_Storage >= 0.4.0 @@ -162,47 +184,14 @@ # # kolab/issue3293 (Big code duplication and code version messup: Horde # libs in 2.2.1) - - # Use Horde_Argv-0.1.0dev20090501 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Argv* - - # Use Horde_Browser-0.0.2dev20090501 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Browser* - - # Use Horde_Cache-0.1.0dev20090501 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Cache* - - # Use Horde_Framework-0.1.0dev20090502 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Config.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Help.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Menu.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Registry.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Release.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Text.php - - # Use Horde_NLS-0.0.2dev20090501 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/NLS* - - # Use Horde_Util-0.1.0dev20090501 from /kolab/lib/php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Array.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/String.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Util.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Variables.php - - # Kolab_Format is in sync - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Format* - - # Kolab_Server is in sync - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/IMAP* - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Server* - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Session.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Test/Server.php - - # Kolab_Storage is in sync - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Deprecated.php - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Storage* - rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde/Kolab/Test/Storage.php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/bundle.php + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/File + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Horde + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Net + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/SyncML* + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/Text + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/VFS* + rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/lib/XML # Use the PEAR libraries from /kolab/lib/php rm -rf $RPM_BUILD_ROOT%{l_prefix}/var/kolab/www/client/pear From cvs at kolab.org Mon Jul 27 14:58:05 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 27 Jul 2009 14:58:05 +0200 (CEST) Subject: thomas: utils/testing test-invitation-forwarding-issue3192.py, 1.3, 1.4 Message-ID: <20090727125805.A44D0600819@lists.intevation.de> Author: thomas Update of /kolabrepository/utils/testing In directory doto:/tmp/cvs-serv28546 Modified Files: test-invitation-forwarding-issue3192.py Log Message: Add kolabfilter call for 2.2.0 servers, too (commented) Index: test-invitation-forwarding-issue3192.py =================================================================== RCS file: /kolabrepository/utils/testing/test-invitation-forwarding-issue3192.py,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- test-invitation-forwarding-issue3192.py 25 Feb 2009 11:47:51 -0000 1.3 +++ test-invitation-forwarding-issue3192.py 27 Jul 2009 12:58:03 -0000 1.4 @@ -57,7 +57,10 @@ END:VCALENDAR """ +# Kolab Server 2.2.1+: cmd = '/kolab/bin/php -c /kolab/etc/apache/php.ini -f /kolab/bin/kolabfilter -- --host=kolab.example.com --sender=%(user2)s --recipient=%(user3)s --client=192.0.2.1 --user=%(user2)s --config=/kolab/etc/kolab/kolabfilter.conf' +# Kolab Server 2.2.0: +#cmd = '/kolab/bin/php -c /kolab/etc/apache/php.ini -f /kolab/var/kolab-filter/scripts/kolabfilter.php -- -h kolab.example.com -s %(user2)s -r %(user3)s -c 192.0.2.1 -u %(user2)s' users = { 'user1': "user1 at example.org", From cvs at kolab.org Mon Jul 27 15:17:35 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 27 Jul 2009 15:17:35 +0200 (CEST) Subject: thomas: utils/testing test-invitation-forwarding-issue3192.py, 1.4, 1.5 Message-ID: <20090727131735.B1A5260081E@lists.intevation.de> Author: thomas Update of /kolabrepository/utils/testing In directory doto:/tmp/cvs-serv29533 Modified Files: test-invitation-forwarding-issue3192.py Log Message: Use @example.com since we already specified kolab.example.com (additionally this matches my usual test setup) Index: test-invitation-forwarding-issue3192.py =================================================================== RCS file: /kolabrepository/utils/testing/test-invitation-forwarding-issue3192.py,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- test-invitation-forwarding-issue3192.py 27 Jul 2009 12:58:03 -0000 1.4 +++ test-invitation-forwarding-issue3192.py 27 Jul 2009 13:17:33 -0000 1.5 @@ -63,9 +63,9 @@ #cmd = '/kolab/bin/php -c /kolab/etc/apache/php.ini -f /kolab/var/kolab-filter/scripts/kolabfilter.php -- -h kolab.example.com -s %(user2)s -r %(user3)s -c 192.0.2.1 -u %(user2)s' users = { - 'user1': "user1 at example.org", - 'user2': "user2 at example.org", - 'user3': "user3 at example.org", + 'user1': "user1 at example.com", + 'user2': "user2 at example.com", + 'user3': "user3 at example.com", } if pwd.getpwuid(os.getuid())[0] != 'kolab-n': From cvs at kolab.org Fri Jul 31 14:46:47 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 31 Jul 2009 14:46:47 +0200 (CEST) Subject: wilde: server/pear/PEAR-Horde-Channel Makefile,1.4,1.5 Message-ID: <20090731124647.EBCF6600833@lists.intevation.de> Author: wilde Update of /kolabrepository/server/pear/PEAR-Horde-Channel In directory doto:/tmp/cvs-serv16309 Modified Files: Makefile Log Message: Fixed path to Base.mk. Index: Makefile =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Horde-Channel/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile 18 May 2009 17:34:04 -0000 1.4 +++ Makefile 31 Jul 2009 12:46:45 -0000 1.5 @@ -1,4 +1,4 @@ -include ../Base.mk +include ../../Base.mk PACKAGE = PEAR-Horde-Channel VERSION = $(shell grep "^Version:" *.spec | sed -e "s/^Version:\s*\([0-9.]*\).*/\1/") From cvs at kolab.org Fri Jul 31 18:09:20 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 31 Jul 2009 18:09:20 +0200 (CEST) Subject: wilde: server Makefile,1.82,1.83 Message-ID: <20090731160920.58958600833@lists.intevation.de> Author: wilde Update of /kolabrepository/server In directory doto:/tmp/cvs-serv23296 Modified Files: Makefile Log Message: Added a bunch of missing PEAR packages to the main Makefile. Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.82 retrieving revision 1.83 diff -u -d -r1.82 -r1.83 --- Makefile 22 Jul 2009 06:29:17 -0000 1.82 +++ Makefile 31 Jul 2009 16:09:18 -0000 1.83 @@ -30,48 +30,96 @@ kolab-webclient \ kolab-fbview \ -PEAR_PACKAGES= pear/PEAR-Auth_SASL \ - pear/PEAR-Date \ - pear/PEAR-HTTP_Request \ - pear/PEAR-Log \ - pear/PEAR-Mail \ - pear/PEAR-Mail-mimeDecode\ - pear/PEAR-Net_LDAP2 \ - pear/PEAR-Net_LMTP \ - pear/PEAR-Net_SMTP \ - pear/PEAR-Net_Socket \ - pear/PEAR-Net_URL \ - pear/PEAR-Horde-Channel \ - pear/PEAR-PHPUnit-Channel\ +PEAR_PACKAGES= pear/Horde_Alarm \ pear/Horde_Argv \ pear/Horde_Auth \ + pear/Horde_Block \ pear/Horde_Browser \ pear/Horde_CLI \ pear/Horde_Cache \ pear/Horde_Cipher \ + pear/Horde_Compress \ + pear/Horde_Crypt \ pear/Horde_DOM \ + pear/Horde_Data \ pear/Horde_DataTree \ pear/Horde_Date \ + pear/Horde_Editor \ + pear/Horde_Feed \ + pear/Horde_File_PDF \ + pear/Horde_Form \ pear/Horde_Framework \ pear/Horde_Group \ pear/Horde_History \ + pear/Horde_Http_Client \ + pear/Horde_Image \ pear/Horde_LDAP \ pear/Horde_MIME \ + pear/Horde_Maintenance \ + pear/Horde_Mobile \ pear/Horde_NLS \ + pear/Horde_Net_SMS \ pear/Horde_Notification \ pear/Horde_Perms \ pear/Horde_Prefs \ + pear/Horde_RPC \ + pear/Horde_SQL \ pear/Horde_Secret \ pear/Horde_Serialize \ + pear/Horde_SessionHandler \ pear/Horde_SessionObjects \ + pear/Horde_Share \ + pear/Horde_SyncML \ + pear/Horde_Template \ + pear/Horde_Text_Filter \ + pear/Horde_Text_Flowed \ + pear/Horde_Tree \ pear/Horde_Util \ pear/Horde_iCalendar \ + pear/PEAR-Auth_SASL \ + pear/PEAR-Console_Table \ + pear/PEAR-DB \ + pear/PEAR-Date \ + pear/PEAR-Date_Holidays_Austria \ + pear/PEAR-Date_Holidays_Brazil \ + pear/PEAR-Date_Holidays_Denmark \ + pear/PEAR-Date_Holidays_Discordian \ + pear/PEAR-Date_Holidays_EnglandWales \ + pear/PEAR-Date_Holidays_Germany \ + pear/PEAR-Date_Holidays_Iceland \ + pear/PEAR-Date_Holidays_Ireland \ + pear/PEAR-Date_Holidays_Italy \ + pear/PEAR-Date_Holidays_Japan \ + pear/PEAR-Date_Holidays_Netherlands \ + pear/PEAR-Date_Holidays_Norway \ + pear/PEAR-Date_Holidays_Romania \ + pear/PEAR-Date_Holidays_Slovenia \ + pear/PEAR-Date_Holidays_Sweden \ + pear/PEAR-Date_Holidays_UNO \ + pear/PEAR-Date_Holidays_USA \ + pear/PEAR-Date_Holidays_Ukraine \ + pear/PEAR-File_Find \ + pear/PEAR-HTTP_Request \ + pear/PEAR-Horde-Channel \ + pear/PEAR-Log \ + pear/PEAR-Log \ + pear/PEAR-Mail \ + pear/PEAR-Mail-mimeDecode \ + pear/PEAR-Net_LDAP \ + pear/PEAR-Net_LDAP2 \ + pear/PEAR-Net_LMTP \ + pear/PEAR-Net_SMTP \ + pear/PEAR-Net_Sieve \ + pear/PEAR-Net_Socket \ + pear/PEAR-Net_URL \ + pear/PEAR-PHPUnit-Channel \ + pear/PEAR-Services_Weather \ pear/PHPUnit \ + php-kolab/Kolab_Filter \ php-kolab/Kolab_Format \ - php-kolab/Kolab_Server \ - php-kolab/Kolab_Storage \ php-kolab/Kolab_Freebusy \ - php-kolab/Kolab_Filter \ + php-kolab/Kolab_Server \ + php-kolab/Kolab_Storage BASE_FILES=install-kolab.sh \ 1st.README From cvs at kolab.org Fri Jul 31 18:18:11 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 31 Jul 2009 18:18:11 +0200 (CEST) Subject: wilde: server Makefile,1.83,1.84 Message-ID: <20090731161811.0F3B0600834@lists.intevation.de> Author: wilde Update of /kolabrepository/server In directory doto:/tmp/cvs-serv23555 Modified Files: Makefile Log Message: Fixed name of one new PEAR package directory. This happened because the directory name PEAR-Service_Weather does not match the actual package name which is PEAR-Services_Weather... :( Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.83 retrieving revision 1.84 diff -u -d -r1.83 -r1.84 --- Makefile 31 Jul 2009 16:09:18 -0000 1.83 +++ Makefile 31 Jul 2009 16:18:09 -0000 1.84 @@ -113,7 +113,7 @@ pear/PEAR-Net_Socket \ pear/PEAR-Net_URL \ pear/PEAR-PHPUnit-Channel \ - pear/PEAR-Services_Weather \ + pear/PEAR-Service_Weather \ pear/PHPUnit \ php-kolab/Kolab_Filter \ php-kolab/Kolab_Format \ From cvs at kolab.org Fri Jul 31 18:29:40 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 31 Jul 2009 18:29:40 +0200 (CEST) Subject: wilde: server Makefile,1.84,1.85 Message-ID: <20090731162940.51C71600834@lists.intevation.de> Author: wilde Update of /kolabrepository/server In directory doto:/tmp/cvs-serv23908 Modified Files: Makefile Log Message: Added more missing PEAR packages. Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.84 retrieving revision 1.85 diff -u -d -r1.84 -r1.85 --- Makefile 31 Jul 2009 16:18:09 -0000 1.84 +++ Makefile 31 Jul 2009 16:29:38 -0000 1.85 @@ -80,6 +80,7 @@ pear/PEAR-Console_Table \ pear/PEAR-DB \ pear/PEAR-Date \ + pear/PEAR-Date_Holidays \ pear/PEAR-Date_Holidays_Austria \ pear/PEAR-Date_Holidays_Brazil \ pear/PEAR-Date_Holidays_Denmark \ From cvs at kolab.org Fri Jul 31 18:50:26 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 31 Jul 2009 18:50:26 +0200 (CEST) Subject: wilde: server Makefile,1.85,1.86 Message-ID: <20090731165026.6BDB5600833@lists.intevation.de> Author: wilde Update of /kolabrepository/server In directory doto:/tmp/cvs-serv24509 Modified Files: Makefile Log Message: Added even more missing PEAR packages to main makefile. Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.85 retrieving revision 1.86 diff -u -d -r1.85 -r1.86 --- Makefile 31 Jul 2009 16:29:38 -0000 1.85 +++ Makefile 31 Jul 2009 16:50:24 -0000 1.86 @@ -46,6 +46,7 @@ pear/Horde_Date \ pear/Horde_Editor \ pear/Horde_Feed \ + pear/Horde_File_CSV \ pear/Horde_File_PDF \ pear/Horde_Form \ pear/Horde_Framework \ @@ -54,6 +55,7 @@ pear/Horde_Http_Client \ pear/Horde_Image \ pear/Horde_LDAP \ + pear/Horde_Lock \ pear/Horde_MIME \ pear/Horde_Maintenance \ pear/Horde_Mobile \ @@ -73,10 +75,15 @@ pear/Horde_Template \ pear/Horde_Text_Filter \ pear/Horde_Text_Flowed \ + pear/Horde_Token \ pear/Horde_Tree \ pear/Horde_Util \ + pear/Horde_XML_WBXML \ + pear/Horde_Xml_Element \ pear/Horde_iCalendar \ + pear/Log \ pear/PEAR-Auth_SASL \ + pear/PEAR-Cache \ pear/PEAR-Console_Table \ pear/PEAR-DB \ pear/PEAR-Date \ @@ -114,13 +121,17 @@ pear/PEAR-Net_Socket \ pear/PEAR-Net_URL \ pear/PEAR-PHPUnit-Channel \ + pear/PEAR-SOAP \ + pear/PEAR-SOAP \ pear/PEAR-Service_Weather \ + pear/PEAR-XML_Serializer \ pear/PHPUnit \ php-kolab/Kolab_Filter \ php-kolab/Kolab_Format \ php-kolab/Kolab_Freebusy \ php-kolab/Kolab_Server \ - php-kolab/Kolab_Storage + php-kolab/Kolab_Storage \ + pear/PEAR-XML_Serializer \ BASE_FILES=install-kolab.sh \ 1st.README From cvs at kolab.org Fri Jul 31 18:52:51 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 31 Jul 2009 18:52:51 +0200 (CEST) Subject: wilde: server Makefile,1.86,1.87 Message-ID: <20090731165251.491F9600834@lists.intevation.de> Author: wilde Update of /kolabrepository/server In directory doto:/tmp/cvs-serv24631 Modified Files: Makefile Log Message: Fixed sorting of PEAR packages list. Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.86 retrieving revision 1.87 diff -u -d -r1.86 -r1.87 --- Makefile 31 Jul 2009 16:50:24 -0000 1.86 +++ Makefile 31 Jul 2009 16:52:49 -0000 1.87 @@ -125,13 +125,13 @@ pear/PEAR-SOAP \ pear/PEAR-Service_Weather \ pear/PEAR-XML_Serializer \ + pear/PEAR-XML_Serializer \ pear/PHPUnit \ php-kolab/Kolab_Filter \ php-kolab/Kolab_Format \ php-kolab/Kolab_Freebusy \ php-kolab/Kolab_Server \ php-kolab/Kolab_Storage \ - pear/PEAR-XML_Serializer \ BASE_FILES=install-kolab.sh \ 1st.README From cvs at kolab.org Fri Jul 31 18:55:08 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 31 Jul 2009 18:55:08 +0200 (CEST) Subject: wilde: server Makefile,1.87,1.88 Message-ID: <20090731165508.85338600833@lists.intevation.de> Author: wilde Update of /kolabrepository/server In directory doto:/tmp/cvs-serv24721 Modified Files: Makefile Log Message: Fixed PEAR Package name: Horde_Log not Log. Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.87 retrieving revision 1.88 diff -u -d -r1.87 -r1.88 --- Makefile 31 Jul 2009 16:52:49 -0000 1.87 +++ Makefile 31 Jul 2009 16:55:06 -0000 1.88 @@ -55,6 +55,7 @@ pear/Horde_Http_Client \ pear/Horde_Image \ pear/Horde_LDAP \ + pear/Horde_Log \ pear/Horde_Lock \ pear/Horde_MIME \ pear/Horde_Maintenance \ @@ -81,7 +82,6 @@ pear/Horde_XML_WBXML \ pear/Horde_Xml_Element \ pear/Horde_iCalendar \ - pear/Log \ pear/PEAR-Auth_SASL \ pear/PEAR-Cache \ pear/PEAR-Console_Table \ From cvs at kolab.org Fri Jul 31 19:02:04 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Fri, 31 Jul 2009 19:02:04 +0200 (CEST) Subject: wilde: server Makefile,1.88,1.89 Message-ID: <20090731170204.0365F600833@lists.intevation.de> Author: wilde Update of /kolabrepository/server In directory doto:/tmp/cvs-serv24940 Modified Files: Makefile Log Message: Added still more missing PEAR packages to main makefile. Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.88 retrieving revision 1.89 diff -u -d -r1.88 -r1.89 --- Makefile 31 Jul 2009 16:55:06 -0000 1.88 +++ Makefile 31 Jul 2009 17:02:01 -0000 1.89 @@ -84,6 +84,7 @@ pear/Horde_iCalendar \ pear/PEAR-Auth_SASL \ pear/PEAR-Cache \ + pear/PEAR-Cache \ pear/PEAR-Console_Table \ pear/PEAR-DB \ pear/PEAR-Date \ @@ -113,6 +114,8 @@ pear/PEAR-Log \ pear/PEAR-Mail \ pear/PEAR-Mail-mimeDecode \ + pear/PEAR-Mail_Mime \ + pear/PEAR-Net_DIME \ pear/PEAR-Net_LDAP \ pear/PEAR-Net_LDAP2 \ pear/PEAR-Net_LMTP \ @@ -124,14 +127,16 @@ pear/PEAR-SOAP \ pear/PEAR-SOAP \ pear/PEAR-Service_Weather \ + pear/PEAR-XML_Parser \ pear/PEAR-XML_Serializer \ pear/PEAR-XML_Serializer \ + pear/PEAR-XML_Util \ pear/PHPUnit \ php-kolab/Kolab_Filter \ php-kolab/Kolab_Format \ php-kolab/Kolab_Freebusy \ php-kolab/Kolab_Server \ - php-kolab/Kolab_Storage \ + php-kolab/Kolab_Storage BASE_FILES=install-kolab.sh \ 1st.README From cvs at kolab.org Mon Aug 10 17:02:47 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 10 Aug 2009 17:02:47 +0200 (CEST) Subject: wilde: server/pear/Horde_Framework package.info,1.2,1.3 Message-ID: <20090810150247.125F8600147@lists.intevation.de> Author: wilde Update of /kolabrepository/server/pear/Horde_Framework In directory doto:/tmp/cvs-serv15180 Modified Files: package.info Log Message: Fixed dependence at PEAR-Log. This is kind of a guess, it was Log and we have Hoder_Log and PEAR-Log, looking at package.xml in the tar I think PEAR-Log might be the right choice... Gunnar should verify this. Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Framework/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 23 Jul 2009 08:10:09 -0000 1.2 +++ package.info 10 Aug 2009 15:02:44 -0000 1.3 @@ -45,7 +45,7 @@ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-Horde-Channel \ -PreReq: Log \ +PreReq: PEAR-Log \ PreReq: Horde_CLI \ PreReq: Horde_DOM \ PreReq: Horde_Util \ From cvs at kolab.org Thu Aug 27 23:13:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 27 Aug 2009 23:13:19 +0200 (CEST) Subject: mathieu: server release-notes.txt,1.454,1.455 Message-ID: <20090827211319.E9BB260082C@lists.intevation.de> Author: mathieu Update of /kolabrepository/server In directory doto:/tmp/cvs-serv26961 Modified Files: release-notes.txt Log Message: kolab/issue3765 (dist_conf'iguration for openldap module loading) Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.454 retrieving revision 1.455 diff -u -d -r1.454 -r1.455 --- release-notes.txt 17 Jul 2009 14:52:24 -0000 1.454 +++ release-notes.txt 27 Aug 2009 21:13:17 -0000 1.455 @@ -73,6 +73,7 @@ kolab/issue3490 (Please include dist_conf/kolabsrv.in in source packages) kolab/issue3584 (rfc2739 is not copyrightable nor licensable) + kolab/issue3765 (dist_conf'iguration for openldap module loading) - kolab-fbview-1.2.0-2009???? From cvs at kolab.org Thu Aug 27 23:13:20 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 27 Aug 2009 23:13:20 +0200 (CEST) Subject: mathieu: server/kolabd/kolabd/templates slapd.conf.template.in, 1.26, 1.27 Message-ID: <20090827211320.29D3C60082C@lists.intevation.de> Author: mathieu Update of /kolabrepository/server/kolabd/kolabd/templates In directory doto:/tmp/cvs-serv26961/kolabd/kolabd/templates Modified Files: slapd.conf.template.in Log Message: kolab/issue3765 (dist_conf'iguration for openldap module loading) Index: slapd.conf.template.in =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/templates/slapd.conf.template.in,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- slapd.conf.template.in 20 Apr 2009 16:25:47 -0000 1.26 +++ slapd.conf.template.in 27 Aug 2009 21:13:18 -0000 1.27 @@ -13,6 +13,14 @@ # this file is automatically written by the Kolab config backend and should have the # file mode 0640 +@@@if ldapserver_modulepath@@@ +modulepath @@@ldapserver_modulepath@@@ +moduleload back_bdb +moduleload back_monitor +moduleload refint +moduleload unique +@@@endif@@@ + # manual additions are lost unless made to the template in the Kolab config directory # the template is @sysconfdir@/kolab/templates/slapd.conf.template @@ -31,7 +39,11 @@ # or dynamically build. When build dynamically the module must be loaded. # As the slapd that comes with the openpkg version of kolab is statically # build it is not necessary to load the module. +@@@if ldapserver_modulepath@@@ +moduleload syncprov +@@@else@@@ # moduleload syncprov +@@@endif@@@ @@@else@@@ replica-pidfile @ldapserverslurpd_pidfile@ replogfile @ldapserver_replogfile@ From cvs at kolab.org Thu Aug 27 23:13:20 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 27 Aug 2009 23:13:20 +0200 (CEST) Subject: mathieu: server/kolabd/kolabd ChangeLog, 1.262, 1.263 kolab.globals.in, 1.25, 1.26 Message-ID: <20090827211320.3B00660082C@lists.intevation.de> Author: mathieu Update of /kolabrepository/server/kolabd/kolabd In directory doto:/tmp/cvs-serv26961/kolabd/kolabd Modified Files: ChangeLog kolab.globals.in Log Message: kolab/issue3765 (dist_conf'iguration for openldap module loading) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/ChangeLog,v retrieving revision 1.262 retrieving revision 1.263 diff -u -d -r1.262 -r1.263 --- ChangeLog 23 Jul 2009 08:10:02 -0000 1.262 +++ ChangeLog 27 Aug 2009 21:13:17 -0000 1.263 @@ -1,3 +1,8 @@ +2009-08-27 Mathieu Parent + + * templates/DB_CONFIG.slapd.template.in: dist_conf'iguration for openldap + module loading (kolab/issue3765). + 2009-07-23 Richard Bos * Makefile: changed ldapserver_schemadir instead of Index: kolab.globals.in =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/kolab.globals.in,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- kolab.globals.in 24 Apr 2009 05:01:23 -0000 1.25 +++ kolab.globals.in 27 Aug 2009 21:13:17 -0000 1.26 @@ -78,6 +78,7 @@ ldapserver_rusr : @ldapserver_rusr@ ldapserver_grp : @ldapserver_grp@ ldapserver_rgrp : @ldapserver_rgrp@ +ldapserver_modulepath : @ldapserver_modulepath@ libexecdir : @libexecdir@ WITHOPENPKG : @WITHOPENPKG@ LDAPD : @LDAPD@ From cvs at kolab.org Thu Aug 27 23:13:20 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 27 Aug 2009 23:13:20 +0200 (CEST) Subject: mathieu: server/kolabd/kolabd/dist_conf common, 1.56, 1.57 debian, 1.29, 1.30 kolab, 1.73, 1.74 suse, 1.92, 1.93 Message-ID: <20090827211320.104BC60082C@lists.intevation.de> Author: mathieu Update of /kolabrepository/server/kolabd/kolabd/dist_conf In directory doto:/tmp/cvs-serv26961/kolabd/kolabd/dist_conf Modified Files: common debian kolab suse Log Message: kolab/issue3765 (dist_conf'iguration for openldap module loading) Index: common =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/dist_conf/common,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- common 24 Apr 2009 05:01:23 -0000 1.56 +++ common 27 Aug 2009 21:13:18 -0000 1.57 @@ -112,6 +112,7 @@ -e 's=[@]ldapserverslurpd_pidfile[@]=$(ldapserverslurpd_pidfile)=g' \ -e 's=[@]ldapserver_statedir[@]=$(ldapserver_statedir)=g' \ -e 's=[@]ldapserver_usr[@]=$(ldapserver_usr)=g' \ + -e 's=[@]ldapserver_modulepath[@]=$(ldapserver_modulepath)=g' \ -e 's=[@]pear_horde_pkgs[@]=$(pear_horde_pkgs)=g' \ -e 's=[@]pkgdocdir[@]=$(pkgdocdir)=g' \ -e 's=[@]pki_grp[@]=$(pki_grp)=g' \ Index: debian =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/dist_conf/debian,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- debian 26 Apr 2009 08:57:01 -0000 1.29 +++ debian 27 Aug 2009 21:13:18 -0000 1.30 @@ -109,6 +109,7 @@ ldapserver_grp=openldap ldapserver_rgrp=openldap ldapserver_rusr=openldap +ldapserver_modulepath=/usr/lib/ldap webserver_document_root=/usr/share/kolab #webserver_tmpdir= Index: kolab =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/dist_conf/kolab,v retrieving revision 1.73 retrieving revision 1.74 diff -u -d -r1.73 -r1.74 --- kolab 8 Jul 2009 10:26:41 -0000 1.73 +++ kolab 27 Aug 2009 21:13:18 -0000 1.74 @@ -125,6 +125,7 @@ ldapserver_grp=${kolab_mgrp} ldapserver_rgrp=${kolab_rgrp} ldapserver_rusr=${kolab_musr} +ldapserver_modulepath=false webserver_document_root=${localstatedir}/kolab/www webserver_tmpdir=/tmp Index: suse =================================================================== RCS file: /kolabrepository/server/kolabd/kolabd/dist_conf/suse,v retrieving revision 1.92 retrieving revision 1.93 diff -u -d -r1.92 -r1.93 --- suse 27 May 2009 19:35:58 -0000 1.92 +++ suse 27 Aug 2009 21:13:18 -0000 1.93 @@ -131,6 +131,7 @@ webserver_musr=wwwrun webserver_usr=wwwrun webserver_grp=www +ldapserver_modulepath=false #webclient horde_cookie_path=/client From cvs at kolab.org Thu Aug 27 23:33:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 27 Aug 2009 23:33:03 +0200 (CEST) Subject: mathieu: server release-notes.txt,1.455,1.456 Message-ID: <20090827213303.8B12A60080F@lists.intevation.de> Author: mathieu Update of /kolabrepository/server In directory doto:/tmp/cvs-serv27576 Modified Files: release-notes.txt Log Message: kolab/issue991 (Better error message when connecting to sieve fails) Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.455 retrieving revision 1.456 diff -u -d -r1.455 -r1.456 --- release-notes.txt 27 Aug 2009 21:13:17 -0000 1.455 +++ release-notes.txt 27 Aug 2009 21:33:01 -0000 1.456 @@ -82,6 +82,10 @@ kolab/issue3439 (FreeBusy display in web client and fbview depends on kolabHomeServer in LDAP) + - kolab-webclient-2.?.?-2009???? + + kolab/issue991 (Better error message when connecting to sieve fails) + - kolab-webclient-1.2.0-2009???? kolab/issue1623 ([horde/horde-kronolith] Add support for Date_Holidays) From cvs at kolab.org Thu Aug 27 23:33:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 27 Aug 2009 23:33:03 +0200 (CEST) Subject: mathieu: server/kolab-webadmin/kolab-webadmin ChangeLog,1.114,1.115 Message-ID: <20090827213303.B23BC60080F@lists.intevation.de> Author: mathieu Update of /kolabrepository/server/kolab-webadmin/kolab-webadmin In directory doto:/tmp/cvs-serv27576/kolab-webadmin/kolab-webadmin Modified Files: ChangeLog Log Message: kolab/issue991 (Better error message when connecting to sieve fails) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/kolab-webadmin/kolab-webadmin/ChangeLog,v retrieving revision 1.114 retrieving revision 1.115 diff -u -d -r1.114 -r1.115 --- ChangeLog 14 May 2009 14:35:37 -0000 1.114 +++ ChangeLog 27 Aug 2009 21:33:01 -0000 1.115 @@ -1,3 +1,8 @@ +2009-08-27 Mathieu Parent + + * www/admin/user/{deliver,forward,vacation}.php.in: Better error + message when connecting to sieve fails (kolab/issue991) + 2009-05-14 Thomas Arendsen Hein * php/admin/locale/fr/LC_MESSAGES/messages.po: Updated french From cvs at kolab.org Thu Aug 27 23:33:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 27 Aug 2009 23:33:03 +0200 (CEST) Subject: mathieu: server/kolab-webadmin/kolab-webadmin/www/admin/user deliver.php.in, 1.2, 1.3 forward.php.in, 1.2, 1.3 vacation.php.in, 1.4, 1.5 Message-ID: <20090827213303.B3FDB60082C@lists.intevation.de> Author: mathieu Update of /kolabrepository/server/kolab-webadmin/kolab-webadmin/www/admin/user In directory doto:/tmp/cvs-serv27576/kolab-webadmin/kolab-webadmin/www/admin/user Modified Files: deliver.php.in forward.php.in vacation.php.in Log Message: kolab/issue991 (Better error message when connecting to sieve fails) Index: deliver.php.in =================================================================== RCS file: /kolabrepository/server/kolab-webadmin/kolab-webadmin/www/admin/user/deliver.php.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- deliver.php.in 21 Nov 2007 13:32:42 -0000 1.2 +++ deliver.php.in 27 Aug 2009 21:33:01 -0000 1.3 @@ -53,8 +53,11 @@ $obj = $ldap->read( $auth->dn() ); $sieve =& new Net_Sieve( $auth->uid(), $auth->password(), $obj['kolabHomeServer'][0] ); + if( $sieve->getError() ) { + $errors[] = _('Error while connecting to Sieve service:'); + $errors[] = $sieve->getError(); // Update sieve script on server in case we have submit data - if( $_REQUEST['submit'] ) { + } elseif( $_REQUEST['submit'] ) { $inbox = trim($_REQUEST['inbox']); $active = isset($_REQUEST['active']); Index: forward.php.in =================================================================== RCS file: /kolabrepository/server/kolab-webadmin/kolab-webadmin/www/admin/user/forward.php.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- forward.php.in 21 Nov 2007 13:32:42 -0000 1.2 +++ forward.php.in 27 Aug 2009 21:33:01 -0000 1.3 @@ -54,8 +54,11 @@ $obj = $ldap->read( $auth->dn() ); $sieve =& new Net_Sieve( $auth->uid(), $auth->password(), $obj['kolabHomeServer'][0] ); + if( $sieve->getError() ) { + $errors[] = _('Error while connecting to Sieve service:'); + $errors[] = $sieve->getError(); // Update sieve script on server in case we have submit data - if( $_REQUEST['submit'] ) { + } elseif( $_REQUEST['submit'] ) { $address = trim($_REQUEST['address']); $keep = isset($_REQUEST['keep']); $active = isset($_REQUEST['active']); Index: vacation.php.in =================================================================== RCS file: /kolabrepository/server/kolab-webadmin/kolab-webadmin/www/admin/user/vacation.php.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- vacation.php.in 21 Nov 2007 13:32:42 -0000 1.4 +++ vacation.php.in 27 Aug 2009 21:33:01 -0000 1.5 @@ -33,8 +33,11 @@ $sieve =& new Net_Sieve( $auth->uid(), $auth->password(), $obj['kolabHomeServer'][0] ); //$sieve->setDebug(true); + if( $sieve->getError() ) { + $errors[] = _('Error while connecting to Sieve service:'); + $errors[] = $sieve->getError(); // Update sieve script on server in case we have submit data - if( $_REQUEST['submit'] ) { + } elseif( $_REQUEST['submit'] ) { $addresses = array_unique( array_filter( array_map( 'trim', preg_split( '/\n/', $_REQUEST['addresses'] ) ), 'strlen') ); $maildomain = trim( $_REQUEST['maildomain'] ); $reacttospam = isset( $_REQUEST['reacttospam'] ); From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Framework Horde_Framework.spec,1.4,NONE Message-ID: <20090909052815.8D49D60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Framework In directory doto:/tmp/cvs-serv27712/Horde_Framework Removed Files: Horde_Framework.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_Framework.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_NLS Horde_NLS.spec,1.7,NONE Message-ID: <20090909052815.91E0E600804@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_NLS In directory doto:/tmp/cvs-serv27712/Horde_NLS Removed Files: Horde_NLS.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_NLS.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_LDAP Horde_LDAP.spec,1.3,NONE Message-ID: <20090909052815.8D516600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_LDAP In directory doto:/tmp/cvs-serv27712/Horde_LDAP Removed Files: Horde_LDAP.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_LDAP.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Secret Horde_Secret.spec,1.3,NONE Message-ID: <20090909052815.A7FCD60081B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Secret In directory doto:/tmp/cvs-serv27712/Horde_Secret Removed Files: Horde_Secret.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_Secret.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Notification Horde_Notification.spec, 1.2, NONE Message-ID: <20090909052815.95068600807@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Notification In directory doto:/tmp/cvs-serv27712/Horde_Notification Removed Files: Horde_Notification.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_Notification.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Serialize Horde_Serialize.spec,1.3,NONE Message-ID: <20090909052815.A8C0B60081E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Serialize In directory doto:/tmp/cvs-serv27712/Horde_Serialize Removed Files: Horde_Serialize.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_Serialize.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_SessionObjects Horde_SessionObjects.spec, 1.3, NONE Message-ID: <20090909052815.AA91660081F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_SessionObjects In directory doto:/tmp/cvs-serv27712/Horde_SessionObjects Removed Files: Horde_SessionObjects.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_SessionObjects.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Perms Horde_Perms.spec,1.3,NONE Message-ID: <20090909052815.98C3A600808@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Perms In directory doto:/tmp/cvs-serv27712/Horde_Perms Removed Files: Horde_Perms.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_Perms.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_iCalendar Horde_iCalendar.spec,1.7,NONE Message-ID: <20090909052815.B2994600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_iCalendar In directory doto:/tmp/cvs-serv27712/Horde_iCalendar Removed Files: Horde_iCalendar.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_iCalendar.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Prefs Horde_Prefs.spec,1.1,NONE Message-ID: <20090909052815.A73D460080E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Prefs In directory doto:/tmp/cvs-serv27712/Horde_Prefs Removed Files: Horde_Prefs.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_Prefs.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/Horde_Util Horde_Util.spec,1.8,NONE Message-ID: <20090909052815.AF80860016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Util In directory doto:/tmp/cvs-serv27712/Horde_Util Removed Files: Horde_Util.spec Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. --- Horde_Util.spec DELETED --- From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-HTTP_Request .cvsignore,1.2,1.3 Message-ID: <20090909052815.B804B600804@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-HTTP_Request In directory doto:/tmp/cvs-serv27712/PEAR-HTTP_Request Modified Files: .cvsignore Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-HTTP_Request/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 22 Jul 2009 06:46:07 -0000 1.2 +++ .cvsignore 9 Sep 2009 05:28:13 -0000 1.3 @@ -1,2 +1,5 @@ *.src.rpm +*.tgz +*.spec +package.patch tmp From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_DIME .cvsignore,1.2,1.3 Message-ID: <20090909052815.B9CBC600807@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_DIME In directory doto:/tmp/cvs-serv27712/PEAR-Net_DIME Modified Files: .cvsignore Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_DIME/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 22 Jul 2009 06:46:07 -0000 1.2 +++ .cvsignore 9 Sep 2009 05:28:13 -0000 1.3 @@ -1,2 +1,5 @@ *.src.rpm +*.tgz +*.spec +package.patch tmp From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_Socket .cvsignore,1.2,1.3 Message-ID: <20090909052815.C6947600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_Socket In directory doto:/tmp/cvs-serv27712/PEAR-Net_Socket Modified Files: .cvsignore Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_Socket/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 22 Jul 2009 06:46:08 -0000 1.2 +++ .cvsignore 9 Sep 2009 05:28:13 -0000 1.3 @@ -1,2 +1,5 @@ *.src.rpm +*.tgz +*.spec +package.patch tmp From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_URL .cvsignore,1.2,1.3 Message-ID: <20090909052815.CAD8E60081B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_URL In directory doto:/tmp/cvs-serv27712/PEAR-Net_URL Modified Files: .cvsignore Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_URL/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 22 Jul 2009 06:46:09 -0000 1.2 +++ .cvsignore 9 Sep 2009 05:28:13 -0000 1.3 @@ -1,2 +1,5 @@ *.src.rpm +*.tgz +*.spec +package.patch tmp From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LMTP .cvsignore,1.2,1.3 Message-ID: <20090909052815.C392160016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LMTP In directory doto:/tmp/cvs-serv27712/PEAR-Net_LMTP Modified Files: .cvsignore Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LMTP/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 22 Jul 2009 06:46:08 -0000 1.2 +++ .cvsignore 9 Sep 2009 05:28:13 -0000 1.3 @@ -1,2 +1,5 @@ *.src.rpm +*.tgz +*.spec +package.patch tmp From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LDAP .cvsignore,1.2,1.3 Message-ID: <20090909052815.BBEAE600808@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LDAP In directory doto:/tmp/cvs-serv27712/PEAR-Net_LDAP Modified Files: .cvsignore Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LDAP/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- .cvsignore 22 Jul 2009 06:46:08 -0000 1.2 +++ .cvsignore 9 Sep 2009 05:28:13 -0000 1.3 @@ -1,2 +1,5 @@ *.src.rpm +*.tgz +*.spec +package.patch tmp From cvs at kolab.org Wed Sep 9 07:28:15 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:28:15 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Net_LDAP2 .cvsignore,1.3,1.4 Message-ID: <20090909052815.C13E360080E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Net_LDAP2 In directory doto:/tmp/cvs-serv27712/PEAR-Net_LDAP2 Modified Files: .cvsignore Log Message: Removed stray spec files (they are now being generated via package.info). Updated .cvsignore files. Index: .cvsignore =================================================================== RCS file: /kolabrepository/server/pear/PEAR-Net_LDAP2/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 22 Jul 2009 06:46:07 -0000 1.3 +++ .cvsignore 9 Sep 2009 05:28:13 -0000 1.4 @@ -1,2 +1,5 @@ *.src.rpm +*.tgz +*.spec +package.patch tmp From cvs at kolab.org Wed Sep 9 07:48:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:48:50 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail_mimeDecode - New directory Message-ID: <20090909054850.A3411600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail_mimeDecode In directory doto:/tmp/cvs-serv28604/PEAR-Mail_mimeDecode Log Message: Directory /kolabrepository/server/pear/PEAR-Mail_mimeDecode added to the repository From cvs at kolab.org Wed Sep 9 07:49:46 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:49:46 +0200 (CEST) Subject: gunnar: server Makefile,1.89,1.90 Message-ID: <20090909054946.A7D67600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv28666 Modified Files: Makefile Log Message: Rename PEAR-Mail-mimeDecode to PEAR-Mail_mimeDecode to match the package name. Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.89 retrieving revision 1.90 diff -u -d -r1.89 -r1.90 --- Makefile 31 Jul 2009 17:02:01 -0000 1.89 +++ Makefile 9 Sep 2009 05:49:44 -0000 1.90 @@ -113,7 +113,7 @@ pear/PEAR-Log \ pear/PEAR-Log \ pear/PEAR-Mail \ - pear/PEAR-Mail-mimeDecode \ + pear/PEAR-Mail_mimeDecode \ pear/PEAR-Mail_Mime \ pear/PEAR-Net_DIME \ pear/PEAR-Net_LDAP \ From cvs at kolab.org Wed Sep 9 07:49:46 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:49:46 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail_mimeDecode .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090909054946.B3A6A600807@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail_mimeDecode In directory doto:/tmp/cvs-serv28666/pear/PEAR-Mail_mimeDecode Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Rename PEAR-Mail-mimeDecode to PEAR-Mail_mimeDecode to match the package name. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch tmp --- NEW FILE: ChangeLog --- 2009-07-11 Gunnar Wrobel

* package.info: Converted to newer packaging style. 2008-09-11 Gunnar Wrobel

* PEAR-Mail_Mime.spec: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Mail_mimeDecode' # The name of the RPM package package='PEAR-Mail_mimeDecode' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.5.0' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ ' # Package summary description summary='Provides a class to decode mime messages.' # Long package description description=' \ Provides a class to deal with the decoding and interpreting of mime \ messages. This package used to be part of the Mail_Mime package, but \ has been split off. \ ' # Source code license license='BSD' From cvs at kolab.org Wed Sep 9 07:49:46 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:49:46 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Mail-mimeDecode .cvsignore, 1.3, NONE ChangeLog, 1.2, NONE Makefile, 1.2, NONE package.info, 1.2, NONE Message-ID: <20090909054946.B0507600804@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Mail-mimeDecode In directory doto:/tmp/cvs-serv28666/pear/PEAR-Mail-mimeDecode Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Rename PEAR-Mail-mimeDecode to PEAR-Mail_mimeDecode to match the package name. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 07:51:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:51:29 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Services_Weather - New directory Message-ID: <20090909055129.71D21600804@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Services_Weather In directory doto:/tmp/cvs-serv28794/PEAR-Services_Weather Log Message: Directory /kolabrepository/server/pear/PEAR-Services_Weather added to the repository From cvs at kolab.org Wed Sep 9 07:52:30 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:52:30 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Service_Weather .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.1, NONE Message-ID: <20090909055230.CBFA0600804@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Service_Weather In directory doto:/tmp/cvs-serv28850/pear/PEAR-Service_Weather Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Rename PEAR-Service_Weather to PEAR-Services_Weather to match the package name. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 07:52:30 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:52:30 +0200 (CEST) Subject: gunnar: server/pear/PEAR-Services_Weather .cvsignore, NONE, 1.1 ChangeLog, NONE, 1.1 Makefile, NONE, 1.1 package.info, NONE, 1.1 Message-ID: <20090909055230.CFD15600807@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/PEAR-Services_Weather In directory doto:/tmp/cvs-serv28850/pear/PEAR-Services_Weather Added Files: .cvsignore ChangeLog Makefile package.info Log Message: Rename PEAR-Service_Weather to PEAR-Services_Weather to match the package name. --- NEW FILE: .cvsignore --- *.src.rpm *.tgz *.spec package.patch tmp --- NEW FILE: ChangeLog --- 2009-07-12 Gunnar Wrobel

* package.info: Added package to Kolab CVS. --- NEW FILE: Makefile --- include ../Pear.mk --- NEW FILE: package.info --- # The name of PEAR source package pear_package='Services_Weather' # The name of the RPM package package='PEAR-Services_Weather' # Where to find information about the package package_url='http://pear.php.net/package/' # How should the source be retrieved? # # WGET: Download via wget package_origin='WGET' # Version number version='1.4.4' # Package release number release='1' # Source URL to download from sourceurl='http://pear.php.net/get' # In which PHP library location should the library get installed php_lib_loc='php' # Build prerequisites buildprereq=' \ BuildPreReq: OpenPKG, openpkg >= 20070603 \ BuildPreReq: php, php::with_pear = yes \ ' # Installatin prerequisites prereq=' \ PreReq: OpenPKG, openpkg >= 20070603 \ PreReq: php, php::with_pear = yes \ PreReq: PEAR-HTTP_Request >= 1.2.0 \ PreReq: PEAR-Cache >= 1.5.3 \ PreReq: PEAR-DB >= 1.4.0 \ PreReq: PEAR-SOAP >= 0.7.5 \ PreReq: PEAR-XML_Serializer >= 0.8.0 \ ' # Package summary description summary='This class acts as an interface to various online weather-services.' # Long package description description=' \ Services_Weather searches for given locations and retrieves current \ weather data and, dependent on the used service, also forecasts. Up to \ now, GlobalWeather from CapeScience, Weather XML from EJSE (US only), \ a XOAP service from Weather.com and METAR/TAF from NOAA are supported. \ Further services will get included, if they become available, have a \ usable API and are properly documented. \ ' # Source code license license='BSD' From cvs at kolab.org Wed Sep 9 07:52:30 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 07:52:30 +0200 (CEST) Subject: gunnar: server Makefile,1.90,1.91 Message-ID: <20090909055230.C8287600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv28850 Modified Files: Makefile Log Message: Rename PEAR-Service_Weather to PEAR-Services_Weather to match the package name. Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.90 retrieving revision 1.91 diff -u -d -r1.90 -r1.91 --- Makefile 9 Sep 2009 05:49:44 -0000 1.90 +++ Makefile 9 Sep 2009 05:52:28 -0000 1.91 @@ -126,7 +126,7 @@ pear/PEAR-PHPUnit-Channel \ pear/PEAR-SOAP \ pear/PEAR-SOAP \ - pear/PEAR-Service_Weather \ + pear/PEAR-Services_Weather \ pear/PEAR-XML_Parser \ pear/PEAR-XML_Serializer \ pear/PEAR-XML_Serializer \ From cvs at kolab.org Wed Sep 9 08:04:19 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:04:19 +0200 (CEST) Subject: gunnar: server/pear-H4 - New directory Message-ID: <20090909060419.B04AB60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear-H4 In directory doto:/tmp/cvs-serv29408/pear-H4 Log Message: Directory /kolabrepository/server/pear-H4 added to the repository From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Alarm-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.1966660016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Alarm-H4 In directory doto:/tmp/cvs-serv31545/Horde_Alarm-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Auth-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.2EF02600804@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Auth-H4 In directory doto:/tmp/cvs-serv31545/Horde_Auth-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Block-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.3, NONE Message-ID: <20090909064839.35FCD60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Block-H4 In directory doto:/tmp/cvs-serv31545/Horde_Block-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Argv-H4 .cvsignore, 1.4, NONE ChangeLog, 1.2, NONE Makefile, 1.2, NONE package.info, 1.3, NONE Message-ID: <20090909064839.2BA0B600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Argv-H4 In directory doto:/tmp/cvs-serv31545/Horde_Argv-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cache-H4 .cvsignore, 1.3, NONE ChangeLog, 1.2, NONE Makefile, 1.2, NONE package.info, 1.2, NONE Message-ID: <20090909064839.46731600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cache-H4 In directory doto:/tmp/cvs-serv31545/Horde_Cache-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cipher-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.71E7260016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cipher-H4 In directory doto:/tmp/cvs-serv31545/Horde_Cipher-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Compress-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.76DE9600807@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Compress-H4 In directory doto:/tmp/cvs-serv31545/Horde_Compress-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Cli-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.74637600804@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Cli-H4 In directory doto:/tmp/cvs-serv31545/Horde_Cli-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Crypt-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.7BCF160080E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Crypt-H4 In directory doto:/tmp/cvs-serv31545/Horde_Crypt-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Browser-H4 .cvsignore, 1.3, NONE ChangeLog, 1.2, NONE Makefile, 1.2, NONE package.info, 1.3, NONE Message-ID: <20090909064839.44ACB60016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Browser-H4 In directory doto:/tmp/cvs-serv31545/Horde_Browser-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Date-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.8313760081E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Date-H4 In directory doto:/tmp/cvs-serv31545/Horde_Date-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Group-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.A1E64600808@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Group-H4 In directory doto:/tmp/cvs-serv31545/Horde_Group-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Data-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.7E53960081B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Data-H4 In directory doto:/tmp/cvs-serv31545/Horde_Data-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Feed-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.3, NONE Message-ID: <20090909064839.8901660016F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Feed-H4 In directory doto:/tmp/cvs-serv31545/Horde_Feed-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_PDF-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.98A89600804@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_PDF-H4 In directory doto:/tmp/cvs-serv31545/Horde_File_PDF-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_File_CSV-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.943BA600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_File_CSV-H4 In directory doto:/tmp/cvs-serv31545/Horde_File_CSV-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Core-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.794AD600808@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Core-H4 In directory doto:/tmp/cvs-serv31545/Horde_Core-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Editor-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.840B960081F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Editor-H4 In directory doto:/tmp/cvs-serv31545/Horde_Editor-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Util-H4 .cvsignore, 1.3, NONE ChangeLog, 1.1, NONE Makefile, 1.2, NONE package.info, 1.2, NONE Message-ID: <20090909064839.B8E6560081F@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Util-H4 In directory doto:/tmp/cvs-serv31545/Horde_Util-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_NLS-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Horde_NLS-H4.spec, 1.1, NONE Makefile, 1.1, NONE Message-ID: <20090909064839.AD12560081B@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_NLS-H4 In directory doto:/tmp/cvs-serv31545/Horde_NLS-H4 Removed Files: .cvsignore ChangeLog Horde_NLS-H4.spec Makefile Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Horde_NLS-H4.spec DELETED --- --- Makefile DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_History-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.A909A60080E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_History-H4 In directory doto:/tmp/cvs-serv31545/Horde_History-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Notification-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.2, NONE Message-ID: <20090909064839.AFFD7600820@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Notification-H4 In directory doto:/tmp/cvs-serv31545/Horde_Notification-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Horde_Form-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Makefile, 1.1, NONE package.info, 1.3, NONE Message-ID: <20090909064839.9E9AB600807@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Form-H4 In directory doto:/tmp/cvs-serv31545/Horde_Form-H4 Removed Files: .cvsignore ChangeLog Makefile package.info Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Makefile DELETED --- --- package.info DELETED --- From cvs at kolab.org Wed Sep 9 08:48:39 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 08:48:39 +0200 (CEST) Subject: gunnar: server/pear/Kolab_Server-H4 .cvsignore, 1.2, NONE ChangeLog, 1.1, NONE Kolab_Server-H4.spec, 1.3, NONE Makefile, 1.1, NONE Message-ID: <20090909064839.BBA8F600821@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Kolab_Server-H4 In directory doto:/tmp/cvs-serv31545/Kolab_Server-H4 Removed Files: .cvsignore ChangeLog Kolab_Server-H4.spec Makefile Log Message: Remove the H4 libraries from this directory. --- .cvsignore DELETED --- --- ChangeLog DELETED --- --- Kolab_Server-H4.spec DELETED --- --- Makefile DELETED --- From cvs at kolab.org Wed Sep 9 17:02:54 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 17:02:54 +0200 (CEST) Subject: gunnar: server release-notes.txt,1.398.2.49,1.398.2.50 Message-ID: <20090909150254.5C27A600800@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv16751 Modified Files: Tag: kolab_2_2_branch release-notes.txt Log Message: kolab/issue3509 (calender not displaying in horde if german holidays are selected) Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.398.2.49 retrieving revision 1.398.2.50 diff -u -d -r1.398.2.49 -r1.398.2.50 --- release-notes.txt 17 Jul 2009 14:49:47 -0000 1.398.2.49 +++ release-notes.txt 9 Sep 2009 15:02:51 -0000 1.398.2.50 @@ -50,6 +50,11 @@ kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP restarts) + - kolab-webclient-1.2.0-20090514 + + kolab/issue3509 (calender not displaying in horde if german + holidays are selected) + Packages in the OpenPKG based Kolab server release: From cvs at kolab.org Wed Sep 9 17:02:54 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 9 Sep 2009 17:02:54 +0200 (CEST) Subject: gunnar: server/kolab-webclient ChangeLog, 1.10.2.4, 1.10.2.5 kolab-webclient.spec, 1.23.2.8, 1.23.2.9 webclient-kronolith-kolab-conf.template, 1.2, 1.2.2.1 Message-ID: <20090909150254.5E76F600801@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolab-webclient In directory doto:/tmp/cvs-serv16751/kolab-webclient Modified Files: Tag: kolab_2_2_branch ChangeLog kolab-webclient.spec webclient-kronolith-kolab-conf.template Log Message: kolab/issue3509 (calender not displaying in horde if german holidays are selected) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/kolab-webclient/ChangeLog,v retrieving revision 1.10.2.4 retrieving revision 1.10.2.5 diff -u -d -r1.10.2.4 -r1.10.2.5 --- ChangeLog 13 May 2009 10:05:03 -0000 1.10.2.4 +++ ChangeLog 9 Sep 2009 15:02:52 -0000 1.10.2.5 @@ -1,3 +1,10 @@ +2009-09-09 Gunnar Wrobel

+ + * webclient-kronolith-kolab-conf.template: + + kolab/issue3509 (calender not displaying in horde if german + holidays are selected) + 2009-05-13 Gunnar Wrobel

* kolab-webclient.spec: Index: kolab-webclient.spec =================================================================== RCS file: /kolabrepository/server/kolab-webclient/kolab-webclient.spec,v retrieving revision 1.23.2.8 retrieving revision 1.23.2.9 diff -u -d -r1.23.2.8 -r1.23.2.9 --- kolab-webclient.spec 14 May 2009 16:29:51 -0000 1.23.2.8 +++ kolab-webclient.spec 9 Sep 2009 15:02:52 -0000 1.23.2.9 @@ -2,8 +2,8 @@ %define V_horde_name horde-webmail %define V_package kolab-webclient %define V_year 2009 -%define V_month 05 -%define V_day 14 +%define V_month 09 +%define V_day 09 %define V_version 1.2.0 %define V_source_version 1.2 %define V_passwd_version 3.0.1 Index: webclient-kronolith-kolab-conf.template =================================================================== RCS file: /kolabrepository/server/kolab-webclient/webclient-kronolith-kolab-conf.template,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -u -d -r1.2 -r1.2.2.1 --- webclient-kronolith-kolab-conf.template 7 Feb 2009 15:51:27 -0000 1.2 +++ webclient-kronolith-kolab-conf.template 9 Sep 2009 15:02:52 -0000 1.2.2.1 @@ -7,4 +7,7 @@ $conf['storage']['default_domain'] = '@@@postfix-mydomain@@@'; $conf['reminder']['server_name'] = '@@@fqdnhostname@@@'; $conf['reminder']['from_addr'] = 'postmaster@@@@postfix-mydomain@@@'; +// The Holidays driver is broken in Kolab Server 2.2.2 and 2.2.3. It needs +// some more work and has been fixed for 2.3 for that reason. +$conf['holidays']['enable'] = false; ?> From cvs at kolab.org Thu Sep 10 11:32:28 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 11:32:28 +0200 (CEST) Subject: gunnar: server release-notes.txt,1.398.2.50,1.398.2.51 Message-ID: <20090910093228.ABFCC600174@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv30689 Modified Files: Tag: kolab_2_2_branch release-notes.txt Log Message: kolab/issue3555 (unable to save filter settings more than once) Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.398.2.50 retrieving revision 1.398.2.51 diff -u -d -r1.398.2.50 -r1.398.2.51 --- release-notes.txt 9 Sep 2009 15:02:51 -0000 1.398.2.50 +++ release-notes.txt 10 Sep 2009 09:32:26 -0000 1.398.2.51 @@ -54,7 +54,7 @@ kolab/issue3509 (calender not displaying in horde if german holidays are selected) - + kolab/issue3555 (unable to save filter settings more than once) Packages in the OpenPKG based Kolab server release: From cvs at kolab.org Thu Sep 10 11:32:28 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 11:32:28 +0200 (CEST) Subject: gunnar: server/kolab-webclient ChangeLog, 1.10.2.5, 1.10.2.6 kolab-webclient.spec, 1.23.2.9, 1.23.2.10 Message-ID: <20090910093228.ABF34600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/kolab-webclient In directory doto:/tmp/cvs-serv30689/kolab-webclient Modified Files: Tag: kolab_2_2_branch ChangeLog kolab-webclient.spec Log Message: kolab/issue3555 (unable to save filter settings more than once) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/kolab-webclient/ChangeLog,v retrieving revision 1.10.2.5 retrieving revision 1.10.2.6 diff -u -d -r1.10.2.5 -r1.10.2.6 --- ChangeLog 9 Sep 2009 15:02:52 -0000 1.10.2.5 +++ ChangeLog 10 Sep 2009 09:32:26 -0000 1.10.2.6 @@ -1,3 +1,9 @@ +2009-09-10 Gunnar Wrobel

+ + * kolab-webclient.spec: + + kolab/issue3555 (unable to save filter settings more than once) + 2009-09-09 Gunnar Wrobel

* webclient-kronolith-kolab-conf.template: Index: kolab-webclient.spec =================================================================== RCS file: /kolabrepository/server/kolab-webclient/kolab-webclient.spec,v retrieving revision 1.23.2.9 retrieving revision 1.23.2.10 diff -u -d -r1.23.2.9 -r1.23.2.10 --- kolab-webclient.spec 9 Sep 2009 15:02:52 -0000 1.23.2.9 +++ kolab-webclient.spec 10 Sep 2009 09:32:26 -0000 1.23.2.10 @@ -3,7 +3,7 @@ %define V_package kolab-webclient %define V_year 2009 %define V_month 09 -%define V_day 09 +%define V_day 10 %define V_version 1.2.0 %define V_source_version 1.2 %define V_passwd_version 3.0.1 From cvs at kolab.org Thu Sep 10 11:32:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 11:32:29 +0200 (CEST) Subject: gunnar: server/patches/horde-webmail/1.2.0/tg series, 1.5.2.3, 1.5.2.4 Message-ID: <20090910093229.09F3F600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/patches/horde-webmail/1.2.0/tg In directory doto:/tmp/cvs-serv30689/patches/horde-webmail/1.2.0/tg Modified Files: Tag: kolab_2_2_branch series Log Message: kolab/issue3555 (unable to save filter settings more than once) Index: series =================================================================== RCS file: /kolabrepository/server/patches/horde-webmail/1.2.0/tg/Attic/series,v retrieving revision 1.5.2.3 retrieving revision 1.5.2.4 diff -u -d -r1.5.2.3 -r1.5.2.4 --- series 2 Apr 2009 09:51:34 -0000 1.5.2.3 +++ series 10 Sep 2009 09:32:26 -0000 1.5.2.4 @@ -68,3 +68,4 @@ t_imp_H_JS_bug7739.diff -p1 t_imp_H_MS_bug7438.diff -p1 t_Kolab__Format_HK_GW_HandleEmptyXmlParserReturn.diff -p1 +t_framework_HK_GW_Prefs_FileDriverHotfix.diff -p1 From cvs at kolab.org Thu Sep 10 11:32:29 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 11:32:29 +0200 (CEST) Subject: gunnar: server/patches/horde-webmail/1.2.0 horde-webmail-1.2.0_kolab_openpkg.patch, 1.32.2.8, 1.32.2.9 Message-ID: <20090910093229.DB51C600171@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/patches/horde-webmail/1.2.0 In directory doto:/tmp/cvs-serv30689/patches/horde-webmail/1.2.0 Modified Files: Tag: kolab_2_2_branch horde-webmail-1.2.0_kolab_openpkg.patch Log Message: kolab/issue3555 (unable to save filter settings more than once) Index: horde-webmail-1.2.0_kolab_openpkg.patch =================================================================== RCS file: /kolabrepository/server/patches/horde-webmail/1.2.0/Attic/horde-webmail-1.2.0_kolab_openpkg.patch,v retrieving revision 1.32.2.8 retrieving revision 1.32.2.9 diff -u -d -r1.32.2.8 -r1.32.2.9 --- horde-webmail-1.2.0_kolab_openpkg.patch 14 May 2009 16:22:39 -0000 1.32.2.8 +++ horde-webmail-1.2.0_kolab_openpkg.patch 10 Sep 2009 09:32:26 -0000 1.32.2.9 @@ -20000,6 +20000,25 @@ LINK: https://www.intevation.de/roundup/kolab/issue3520 LINK: https://www.intevation.de/roundup/kolab/issue3525 LINK: https://www.intevation.de/roundup/kolab/issue3528 +From: Gunnar Wrobel

+Subject: [PATCH] t/framework/HK/GW/Prefs_FileDriverHotfix + +Hotfixes kolab/issue3555 (unable to save filter settings more than once) + +Signed-off-by: Gunnar Wrobel

+ +--- +diff --git a/horde-webmail/lib/Horde/Kolab/Format/XML/hprefs.php b/horde-webmail/lib/Horde/Kolab/Format/XML/hprefs.php +index e646ad6..22a94bc 100644 +--- a/horde-webmail/lib/Horde/Prefs/file.php ++++ b/horde-webmail/lib/Horde/Prefs/file.php +@@ -209,5 +209,6 @@ + } + + $this->_file_cache[$scope][$name] = $pref; ++ $this->_file_cache[$scope][$name]['m'] &= ~_PREF_DIRTY; + } + } diff -c a/horde-webmail/lib/Horde/Kolab/Storage/Folder.php b/horde-webmail/lib/Horde/Kolab/Storage/Folder.php --- a/horde-webmail/lib/Horde/Kolab/Storage/Folder.php +++ b/horde-webmail/lib/Horde/Kolab/Storage/Folder.php From cvs at kolab.org Thu Sep 10 12:03:33 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 12:03:33 +0200 (CEST) Subject: gunnar: server/pear/Horde_Prefs/patches - New directory Message-ID: <20090910100333.80B36600175@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Prefs/patches In directory doto:/tmp/cvs-serv31688/pear/Horde_Prefs/patches Log Message: Directory /kolabrepository/server/pear/Horde_Prefs/patches added to the repository From cvs at kolab.org Thu Sep 10 12:04:22 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 12:04:22 +0200 (CEST) Subject: gunnar: server/pear/Horde_Prefs/patches/Horde_Prefs-0.0.3dev20090501 - New directory Message-ID: <20090910100422.CA99A600175@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Prefs/patches/Horde_Prefs-0.0.3dev20090501 In directory doto:/tmp/cvs-serv31744/pear/Horde_Prefs/patches/Horde_Prefs-0.0.3dev20090501 Log Message: Directory /kolabrepository/server/pear/Horde_Prefs/patches/Horde_Prefs-0.0.3dev20090501 added to the repository From cvs at kolab.org Thu Sep 10 12:06:01 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 12:06:01 +0200 (CEST) Subject: gunnar: server cvs-kolab.sh,1.27,1.28 Message-ID: <20090910100601.019A0600175@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv32024 Modified Files: cvs-kolab.sh Log Message: Update for Kolab Server 2.2.2 Index: cvs-kolab.sh =================================================================== RCS file: /kolabrepository/server/cvs-kolab.sh,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- cvs-kolab.sh 24 Mar 2009 16:29:41 -0000 1.27 +++ cvs-kolab.sh 10 Sep 2009 10:05:58 -0000 1.28 @@ -2,15 +2,19 @@ # # $Id$ # -# Copyright (C) 2007 by Gunnar Wrobel -# # Authors: -# Gunnar Wrobel -# Thomas Arendsen Hein +# +# (c) 2007 - 2009 Thomas Arendsen Hein +# (c) 2007 - 2009 Gunnar Wrobel +# +# Companies: +# +# (c) 2007 - 2009 Intevation GmbH +# (c) 2007 - 2009 p at rdus # # This program is free software under the GNU GPL (>=v2) -KOLAB_VERSION="2.2.0" +KOLAB_VERSION="2.2.2" KOLAB_PACKAGES=/kolab-packages KOLAB_DEV_USER=kolabdevel @@ -62,8 +66,8 @@ echo "Verifying source authenticity ..." gpg -q --keyserver hkp://subkeys.pgp.net --recv-key 5816791A || die "Failed to retrieve signature key!" - gpg -q --verify MD5SUMS.sig || die "Invalid signature on the MD5SUMS file!" - md5sum --status -c MD5SUMS || die "The md5 hashes do not match. You should try to download the packages again." + gpg -q --verify SHA1SUMS.sig || die "Invalid signature on the MD5SUMS file!" + sha1sum --status -c SHA1SUMS || die "The md5 hashes do not match. You should try to download the packages again." chmod u+x install-kolab.sh } From cvs at kolab.org Thu Sep 10 12:06:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 12:06:06 +0200 (CEST) Subject: gunnar: server release-notes.txt,1.456,1.457 Message-ID: <20090910100606.C8998600175@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv32034 Modified Files: release-notes.txt Log Message: kolab/issue3555 (unable to save filter settings more than once) Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.456 retrieving revision 1.457 diff -u -d -r1.456 -r1.457 --- release-notes.txt 27 Aug 2009 21:33:01 -0000 1.456 +++ release-notes.txt 10 Sep 2009 10:06:04 -0000 1.457 @@ -17,6 +17,10 @@ kolab/issue2924 (install-kolab.sh: -maxdepth/-mindepth not supported by all find implementations) + - Horde_Prefs-0.0.3dev20090501-2009???? + + kolab/issue3555 (unable to save filter settings more than once) + - Kolab_Filter-0.1.5-2009???? kolab/issue1336 (Resource booking fails, if TRANSP:TRANSPARENT in the From cvs at kolab.org Thu Sep 10 12:06:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 12:06:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_Prefs/patches/Horde_Prefs-0.0.3dev20090501 Horde_Prefs-File_driver_version2.patch, NONE, 1.1 Message-ID: <20090910100606.E00DE600175@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Prefs/patches/Horde_Prefs-0.0.3dev20090501 In directory doto:/tmp/cvs-serv32034/pear/Horde_Prefs/patches/Horde_Prefs-0.0.3dev20090501 Added Files: Horde_Prefs-File_driver_version2.patch Log Message: kolab/issue3555 (unable to save filter settings more than once) --- NEW FILE: Horde_Prefs-File_driver_version2.patch --- Correct fix for kolab/issue3555 (unable to save filter settings more than once) Corresponding Kolab issue: https://issues.kolab.org/issue3555 STATUS: Merged upstream. See http://cvs.horde.org/diff.php/framework/Prefs/Prefs/file.php?rt=horde&r1=1.1.2.3&r2=1.1.2.4&ty=u =================================================================== RCS file: /horde/cvs/framework/Prefs/Prefs/file.php,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -p --unified=3 -r1.1.2.3 -r1.1.2.4 --- Prefs/file.php 2009/01/06 15:23:31 1.1.2.3 +++ Prefs/file.php 2009/09/09 20:06:22 1.1.2.4 @@ -20,7 +20,7 @@ class Prefs_file extends Prefs { * * @var int */ - var $_version = 1; + var $_version = 2; /** * Directory to store the preferences @@ -114,8 +114,12 @@ class Prefs_file extends Prefs { if (!is_array($this->_file_cache) || !array_key_exists('__file_version', $this->_file_cache) || !($this->_file_cache['__file_version'] == $this->_version)) { - return PEAR::raiseError(sprintf(_("Wrong version number found: %s (should be %d)"), - $this->_file_cache['__file_version'], $this->_version)); + if ($this->_file_cache['__file_version'] == 1) { + $this->transformV1V2(); + } else { + return PEAR::raiseError(sprintf(_("Wrong version number found: %s (should be %d)"), + $this->_file_cache['__file_version'], $this->_version)); + } } } @@ -125,8 +129,16 @@ class Prefs_file extends Prefs { } // Merge config values - foreach ($this->_file_cache[$scope] as $name => $pref) { - $this->_scopes[$scope][$name] = $pref; + foreach ($this->_file_cache[$scope] as $name => $val) { + if (isset($this->_scopes[$scope][$name])) { + $this->_scopes[$scope][$name]['v'] = $val; + $this->_scopes[$scope][$name]['m'] &= ~_PREF_DEFAULT; + } else { + // This is a shared preference. + $this->_scopes[$scope][$name] = array('v' => $val, + 'm' => 0, + 'd' => null); + } } return true; @@ -147,6 +159,32 @@ class Prefs_file extends Prefs { } /** + * Transforms the broken version 1 format into version 2. + * + * @return NULL + */ + function transformV1V2() + { + $version2 = array('__file_version' => 2); + foreach ($this->_file_cache as $scope => $prefs) { + if ($scope == '__file_version') { + continue; + } + foreach ($prefs as $name => $pref) { + /** + * Default values should not have been stored by the + * driver. They are being set via the prefs.php files. + */ + if ($pref['m'] & _PREF_DEFAULT) { + continue; + } + $version2[$scope][$name] = $pref['v']; + } + } + $this->_file_cache = $version2; + } + + /** * Write data to disc * * @return mixed True on success or a false on error. @@ -192,29 +230,28 @@ class Prefs_file extends Prefs { if (!$dirty_prefs) { return true; } - $dirty_scopes = array_keys($dirty_prefs); // Read in all existing preferences, if any. $this->_retrieve(''); if (!is_array($this->_file_cache)) { - $this->_file_cache = array(); + $this->_file_cache = array('__file_version' => $this->_version); } // Update all values from dirty scope - foreach ($dirty_scopes as $scope) { - foreach ($this->_scopes[$scope] as $name => $pref) { + foreach ($dirty_prefs as $scope => $prefs) { + foreach ($prefs as $name => $pref) { // Don't store locked preferences. if ($this->_scopes[$scope][$name]['m'] & _PREF_LOCKED) { continue; } - $this->_file_cache[$scope][$name] = $pref; + $this->_file_cache[$scope][$name] = $pref['v']; + + // Clean the pref since it was just saved. + $this->_scopes[$scope][$name]['m'] &= ~_PREF_DIRTY; } } - // Add/update version number - $this->_file_cache['__file_version'] = $this->_version; - if ($this->_write_cache() == false) { return PEAR::raiseError(sprintf(_("Write of preferences to %s failed"), $this->_filename)); From cvs at kolab.org Thu Sep 10 12:06:06 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Thu, 10 Sep 2009 12:06:06 +0200 (CEST) Subject: gunnar: server/pear/Horde_Prefs ChangeLog, 1.2, 1.3 package.info, 1.2, 1.3 Message-ID: <20090910100606.DB353600819@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/pear/Horde_Prefs In directory doto:/tmp/cvs-serv32034/pear/Horde_Prefs Modified Files: ChangeLog package.info Log Message: kolab/issue3555 (unable to save filter settings more than once) Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/pear/Horde_Prefs/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 21 Jul 2009 19:28:02 -0000 1.2 +++ ChangeLog 10 Sep 2009 10:06:04 -0000 1.3 @@ -1,3 +1,9 @@ +2009-09-10 Gunnar Wrobel

+ + * package.info: + + kolab/issue3555 (unable to save filter settings more than once) + 2009-07-21 Gunnar Wrobel

* package.info: Converted to new pacakging style. Updated to tag Index: package.info =================================================================== RCS file: /kolabrepository/server/pear/Horde_Prefs/package.info,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- package.info 23 Jul 2009 08:10:09 -0000 1.2 +++ package.info 10 Sep 2009 10:06:04 -0000 1.3 @@ -25,7 +25,7 @@ version='0.0.3dev20090501' # Package release number -release='20090713' +release='20090910' # Source URL to download from sourceurl='http://files.kolab.org/incoming/wrobel/' From cvs at kolab.org Mon Sep 21 11:34:23 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 21 Sep 2009 11:34:23 +0200 (CEST) Subject: thomas: server release-notes.txt,1.398.2.51,1.398.2.52 Message-ID: <20090921093423.20B8D600818@lists.intevation.de> Author: thomas Update of /kolabrepository/server In directory doto:/tmp/cvs-serv21209 Modified Files: Tag: kolab_2_2_branch release-notes.txt Log Message: ordered and wrapped current entries Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.398.2.51 retrieving revision 1.398.2.52 diff -u -d -r1.398.2.51 -r1.398.2.52 --- release-notes.txt 10 Sep 2009 09:32:26 -0000 1.398.2.51 +++ release-notes.txt 21 Sep 2009 09:34:20 -0000 1.398.2.52 @@ -45,16 +45,17 @@ Changes between 2.2.2 and 2.2.3: - - perl-kolab-2.2.3-2009???? - - kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP - restarts) - - kolab-webclient-1.2.0-20090514 kolab/issue3509 (calender not displaying in horde if german holidays are selected) kolab/issue3555 (unable to save filter settings more than once) + + - perl-kolab-2.2.3-2009???? + + kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes + OpenLDAP restarts) + Packages in the OpenPKG based Kolab server release: From cvs at kolab.org Mon Sep 21 11:37:57 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Mon, 21 Sep 2009 11:37:57 +0200 (CEST) Subject: thomas: server release-notes.txt,1.457,1.458 Message-ID: <20090921093757.A7FE5600818@lists.intevation.de> Author: thomas Update of /kolabrepository/server In directory doto:/tmp/cvs-serv21365 Modified Files: release-notes.txt Log Message: ported "Changes between 2.2.2 and 2.2.3" to HEAD Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.457 retrieving revision 1.458 diff -u -d -r1.457 -r1.458 --- release-notes.txt 10 Sep 2009 10:06:04 -0000 1.457 +++ release-notes.txt 21 Sep 2009 09:37:55 -0000 1.458 @@ -125,10 +125,16 @@ Changes between 2.2.2 and 2.2.3: + - kolab-webclient-1.2.0-20090514 + + kolab/issue3509 (calender not displaying in horde if german + holidays are selected) + kolab/issue3555 (unable to save filter settings more than once) + - perl-kolab-2.2.3-2009???? - kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes OpenLDAP - restarts) + kolab/issue3764 (kolab.conf: bind_pw_hash not set on slaves, causes + OpenLDAP restarts) Packages in the OpenPKG based Kolab server release: From cvs at kolab.org Tue Sep 22 16:28:23 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 22 Sep 2009 16:28:23 +0200 (CEST) Subject: thomas: server release-notes.txt,1.398.2.52,1.398.2.53 Message-ID: <20090922142823.B9CCB600172@lists.intevation.de> Author: thomas Update of /kolabrepository/server In directory doto:/tmp/cvs-serv23700 Modified Files: Tag: kolab_2_2_branch release-notes.txt Log Message: Fix buffer size calculations for sieve actions_string (CVE-2009-2632) Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.398.2.52 retrieving revision 1.398.2.53 diff -u -d -r1.398.2.52 -r1.398.2.53 --- release-notes.txt 21 Sep 2009 09:34:20 -0000 1.398.2.52 +++ release-notes.txt 22 Sep 2009 14:28:21 -0000 1.398.2.53 @@ -45,6 +45,10 @@ Changes between 2.2.2 and 2.2.3: + - imapd-2.3.13-20081020_kolab3 + + Fix buffer size calculations for sieve actions_string (CVE-2009-2632) + - kolab-webclient-1.2.0-20090514 kolab/issue3509 (calender not displaying in horde if german From cvs at kolab.org Tue Sep 22 16:28:23 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 22 Sep 2009 16:28:23 +0200 (CEST) Subject: thomas: server/imapd CVE-2009-2632.patch, NONE, 1.1.2.1 Makefile, 1.40.2.2, 1.40.2.3 kolab.patch, 1.39.2.1, 1.39.2.2 Message-ID: <20090922142823.BA78B600173@lists.intevation.de> Author: thomas Update of /kolabrepository/server/imapd In directory doto:/tmp/cvs-serv23700/imapd Modified Files: Tag: kolab_2_2_branch Makefile kolab.patch Added Files: Tag: kolab_2_2_branch CVE-2009-2632.patch Log Message: Fix buffer size calculations for sieve actions_string (CVE-2009-2632) --- NEW FILE: CVE-2009-2632.patch --- Fix buffer size calculations for sieve actions_string (CVE-2009-2632) https://bugzilla.andrew.cmu.edu/cgi-bin/cvsweb.cgi/src/sieve/script.c.diff?r1=1.67&r2=1.68 (without CVS keyword hunk) --- src/sieve/script.c 2008/03/24 20:08:46 1.67 +++ src/sieve/script.c 2009/09/02 13:56:18 1.68 @@ -688,7 +688,7 @@ static int do_sieve_error(int ret, ret |= keep_ret; if (keep_ret == SIEVE_OK) snprintf(actions_string+strlen(actions_string), - sizeof(actions_string)-strlen(actions_string), + ACTIONS_STRING_LEN-strlen(actions_string), "Kept\n"); else { implicit_keep = 0; /* don't try an implicit keep again */ @@ -742,7 +742,7 @@ static int do_action_list(sieve_interp_t if (ret == SIEVE_OK) snprintf(actions_string+strlen(actions_string), - sizeof(actions_string)-strlen(actions_string), + ACTIONS_STRING_LEN-strlen(actions_string), "Rejected with: %s\n", a->u.rej.msg); break; @@ -757,7 +757,7 @@ static int do_action_list(sieve_interp_t if (ret == SIEVE_OK) snprintf(actions_string+strlen(actions_string), - sizeof(actions_string)-strlen(actions_string), + ACTIONS_STRING_LEN-strlen(actions_string), "Filed into: %s\n",a->u.fil.mailbox); break; case ACTION_KEEP: @@ -770,7 +770,7 @@ static int do_action_list(sieve_interp_t &errmsg); if (ret == SIEVE_OK) snprintf(actions_string+strlen(actions_string), - sizeof(actions_string)-strlen(actions_string), + ACTIONS_STRING_LEN-strlen(actions_string), "Kept\n"); break; case ACTION_REDIRECT: @@ -783,7 +783,7 @@ static int do_action_list(sieve_interp_t &errmsg); if (ret == SIEVE_OK) snprintf(actions_string+strlen(actions_string), - sizeof(actions_string)-strlen(actions_string), + ACTIONS_STRING_LEN-strlen(actions_string), "Redirected to %s\n", a->u.red.addr); break; case ACTION_DISCARD: @@ -794,7 +794,7 @@ static int do_action_list(sieve_interp_t &errmsg); if (ret == SIEVE_OK) snprintf(actions_string+strlen(actions_string), - sizeof(actions_string)-strlen(actions_string), + ACTIONS_STRING_LEN-strlen(actions_string), "Discarded\n"); break; @@ -820,12 +820,12 @@ static int do_action_list(sieve_interp_t if (ret == SIEVE_OK) snprintf(actions_string+strlen(actions_string), - sizeof(actions_string)-strlen(actions_string), + ACTIONS_STRING_LEN-strlen(actions_string), "Sent vacation reply\n"); } else if (ret == SIEVE_DONE) { snprintf(actions_string+strlen(actions_string), - sizeof(actions_string)-strlen(actions_string), + ACTIONS_STRING_LEN-strlen(actions_string), "Vacation reply suppressed\n"); ret = SIEVE_OK; Index: Makefile =================================================================== RCS file: /kolabrepository/server/imapd/Makefile,v retrieving revision 1.40.2.2 retrieving revision 1.40.2.3 diff -u -d -r1.40.2.2 -r1.40.2.3 --- Makefile 2 Apr 2009 13:51:44 -0000 1.40.2.2 +++ Makefile 22 Sep 2009 14:28:21 -0000 1.40.2.3 @@ -21,7 +21,7 @@ PACKAGE=imapd VERSION=2.3.13 RELEASE=20081020 -KOLABRELEASE=20081020_kolab2 +KOLABRELEASE=20081020_kolab3 PATCHES=../patches/cyrus-imapd/cyrus-imapd-$(VERSION)/KOLAB_cyrus-cyradm-$(VERSION)_Annotations.patch \ ../patches/cyrus-imapd/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_Annotations2.patch \ @@ -29,7 +29,8 @@ ../patches/cyrus-imapd/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_Groups2.patch \ ../patches/cyrus-imapd/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_Logging.patch \ ../patches/cyrus-imapd/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_timsieved_starttls-sendcaps.patch \ - ../patches/cyrus-imapd/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_UID.patch + ../patches/cyrus-imapd/cyrus-imapd-$(VERSION)/KOLAB_cyrus-imapd-$(VERSION)_UID.patch \ + CVE-2009-2632.patch .PHONY: all all: $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm Index: kolab.patch =================================================================== RCS file: /kolabrepository/server/imapd/kolab.patch,v retrieving revision 1.39.2.1 retrieving revision 1.39.2.2 diff -u -d -r1.39.2.1 -r1.39.2.2 --- kolab.patch 1 Apr 2009 17:03:45 -0000 1.39.2.1 +++ kolab.patch 22 Sep 2009 14:28:21 -0000 1.39.2.2 @@ -1,11 +1,11 @@ --- imapd.spec.orig 2008-10-20 20:12:23.000000000 +0200 -+++ imapd.spec 2009-01-25 22:19:52.000000000 +0100 ++++ imapd.spec 2009-09-22 16:13:53.049428455 +0200 @@ -32,7 +32,7 @@ Group: Mail License: BSD Version: 2.3.13 -Release: 20081020 -+Release: 20081020_kolab2 ++Release: 20081020_kolab3 # package options %option with_fsl yes @@ -17,7 +17,7 @@ # fixing implicit inter-module dependencies and correlations %if "%{with_kolab}" == "yes" -@@ -67,12 +68,13 @@ +@@ -67,12 +68,14 @@ Source3: imapd.conf Source4: fsl.imapd Patch0: imapd.patch @@ -34,10 +34,11 @@ +Patch5: http://kolab.org/cgi-bin/viewcvs-kolab.cgi/*checkout*/server/patches/cyrus-imapd/cyrus-imapd-%{version}/KOLAB_cyrus-imapd-%{version}_UID.patch +Patch6: http://kolab.org/cgi-bin/viewcvs-kolab.cgi/*checkout*/server/patches/cyrus-imapd/cyrus-imapd-%{version}/KOLAB_cyrus-imapd-%{version}_Folder-names.patch +Patch7: http://kolab.org/cgi-bin/viewcvs-kolab.cgi/*checkout*/server/patches/cyrus-imapd/cyrus-imapd-%{version}/KOLAB_cyrus-imapd-%{version}_timsieved_starttls-sendcaps.patch ++Patch8: CVE-2009-2632.patch # build information Prefix: %{l_prefix} -@@ -120,11 +122,7 @@ +@@ -120,11 +123,7 @@ # add optional group file support with support to ignore case %if "%{with_group}" == "yes" @@ -50,7 +51,7 @@ %{l_shtool} subst \ -e 's;/etc/imapd\.group;%{l_prefix}/etc/imapd/imapd.group;' \ lib/auth_unix.c -@@ -132,7 +130,7 @@ +@@ -132,7 +131,7 @@ # add optional folder annotation support %if "%{with_annotate}" == "yes" @@ -59,7 +60,7 @@ %patch -p1 -P 3 %endif -@@ -152,6 +150,11 @@ +@@ -152,12 +151,20 @@ %patch -p1 -P 6 %endif @@ -71,7 +72,16 @@ # add optional DRAC file support %if "%{with_drac}" == "yes" %{l_shtool} subst -e 's;@DRACLIBS@;-ldrac;g' contrib/drac_auth.patch -@@ -287,7 +290,11 @@ + %{l_patch} -p0 /dev/null 2>&1 || true + +@@ -287,7 +294,11 @@ %if "%{with_nntp}" == "yes" --enable-nntp \ %endif @@ -83,7 +93,7 @@ --without-krb # build program -@@ -411,9 +418,6 @@ +@@ -411,9 +422,6 @@ # before erase, stop service and remove log and temporary files if [ $1 -eq 0 ]; then %{l_rc} imapd stop 2>/dev/null From cvs at kolab.org Tue Sep 22 18:28:09 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 22 Sep 2009 18:28:09 +0200 (CEST) Subject: gunnar: server release-notes.txt,1.398.2.53,1.398.2.54 Message-ID: <20090922162809.F31DA60014C@lists.intevation.de> Author: gunnar Update of /kolabrepository/server In directory doto:/tmp/cvs-serv28369 Modified Files: Tag: kolab_2_2_branch release-notes.txt Log Message: kolab/issue3868 (Resmgr eats up all memory and dies on some recuring events) Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.398.2.53 retrieving revision 1.398.2.54 diff -u -d -r1.398.2.53 -r1.398.2.54 --- release-notes.txt 22 Sep 2009 14:28:21 -0000 1.398.2.53 +++ release-notes.txt 22 Sep 2009 16:28:07 -0000 1.398.2.54 @@ -49,6 +49,11 @@ Fix buffer size calculations for sieve actions_string (CVE-2009-2632) + - Kolab_Filter-0.1.4-2009???? + + kolab/issue3868 (Resmgr eats up all memory and dies on some + recuring events) + - kolab-webclient-1.2.0-20090514 kolab/issue3509 (calender not displaying in horde if german From cvs at kolab.org Tue Sep 22 18:28:10 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Tue, 22 Sep 2009 18:28:10 +0200 (CEST) Subject: gunnar: server/php-kolab/Kolab_Filter issue3868.patch, NONE, 1.1.2.1 ChangeLog, 1.29.2.6, 1.29.2.7 Kolab_Filter.spec, 1.19.2.9, 1.19.2.10 Makefile, 1.8.2.5, 1.8.2.6 Message-ID: <20090922162810.06712600172@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/php-kolab/Kolab_Filter In directory doto:/tmp/cvs-serv28369/php-kolab/Kolab_Filter Modified Files: Tag: kolab_2_2_branch ChangeLog Kolab_Filter.spec Makefile Added Files: Tag: kolab_2_2_branch issue3868.patch Log Message: kolab/issue3868 (Resmgr eats up all memory and dies on some recuring events) --- NEW FILE: issue3868.patch --- --- a/lib/Horde/Kolab/Resource.php 9 May 2009 22:05:59 -0000 1.15.2.6 +++ b/lib/Horde/Kolab/Resource.php 22 Sep 2009 16:17:52 -0000 @@ -510,18 +510,21 @@ $duration = $dtend - $dtstart; $events = array(); $next_start = $vfbstart; - while ($next = $recurrence->nextActiveRecurrence($next_start)) { - $next_start = $next->timestamp(); - if ($next_start < $vfbend) { - $events[$next_start] = $next_start + $duration; - } else { - break; - } + $next = $recurrence->nextActiveRecurrence($vfbstart); + while ($next !== false && $next->compareDate($vfbend) <= 0) { + $next_ts = $next->timestamp(); + $events[$next_ts] = $next_ts + $duration; + $next = $recurrence->nextActiveRecurrence(array('year' => $next->year, + 'month' => $next->month, + 'mday' => $next->mday + 1, + 'hour' => $next->hour, + 'min' => $next->min, + 'sec' => $next->sec)); } } else { $events = array($dtstart => $dtend); } - + foreach ($events as $dtstart => $dtend) { foreach ($busyperiods as $busyfrom => $busyto) { if (empty($busyfrom) && empty($busyto)) { Index: ChangeLog =================================================================== RCS file: /kolabrepository/server/php-kolab/Kolab_Filter/ChangeLog,v retrieving revision 1.29.2.6 retrieving revision 1.29.2.7 diff -u -d -r1.29.2.6 -r1.29.2.7 --- ChangeLog 4 May 2009 20:43:39 -0000 1.29.2.6 +++ ChangeLog 22 Sep 2009 16:28:07 -0000 1.29.2.7 @@ -1,3 +1,8 @@ +2009-09-22 Gunnar Wrobel

+ + * Kolab_Filter.spec: kolab/issue3868 (Resmgr eats up all memory + and dies on some recuring events) + 2009-05-04 Gunnar Wrobel

* Kolab_Filter.spec: kolab/issue3521 (kolabmailboxfilter does not Index: Kolab_Filter.spec =================================================================== RCS file: /kolabrepository/server/php-kolab/Kolab_Filter/Kolab_Filter.spec,v retrieving revision 1.19.2.9 retrieving revision 1.19.2.10 diff -u -d -r1.19.2.9 -r1.19.2.10 --- Kolab_Filter.spec 4 May 2009 20:43:39 -0000 1.19.2.9 +++ Kolab_Filter.spec 22 Sep 2009 16:28:07 -0000 1.19.2.10 @@ -1,7 +1,7 @@ # Variables %define V_package Kolab_Filter %define V_version 0.1.4 -%define V_release 20090504 +%define V_release 20090922 # Package Information Name: %{V_package} @@ -27,6 +27,7 @@ Patch5: issue3521.patch Patch6: issue3558.patch Patch7: issue3568.patch +Patch8: issue3868.patch # Build Info Prefix: %{l_prefix} @@ -69,6 +70,7 @@ %patch -p3 -P 5 %patch -p1 -P 6 %patch -p1 -P 7 + %patch -p1 -P 8 cp %{S:1} . %build Index: Makefile =================================================================== RCS file: /kolabrepository/server/php-kolab/Kolab_Filter/Makefile,v retrieving revision 1.8.2.5 retrieving revision 1.8.2.6 diff -u -d -r1.8.2.5 -r1.8.2.6 --- Makefile 29 Apr 2009 16:06:21 -0000 1.8.2.5 +++ Makefile 22 Sep 2009 16:28:07 -0000 1.8.2.6 @@ -21,7 +21,7 @@ SOURCE_URL=http://pear.horde.org/get SOURCE_0=$(PACKAGE)-$(VERSION).tgz -EXTRA=ChangeLog issue3521.patch revert_issue2499.patch issue3435.patch issue3192.patch issue3441.patch issue3558.patch issue3568.patch dovecotlda-quoting.patch package.xml +EXTRA=ChangeLog issue3521.patch revert_issue2499.patch issue3435.patch issue3192.patch issue3441.patch issue3558.patch issue3568.patch issue3868.patch dovecotlda-quoting.patch package.xml .PHONY: all all: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm From cvs at kolab.org Wed Sep 23 10:59:45 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 23 Sep 2009 10:59:45 +0200 (CEST) Subject: gunnar: server/patches/horde-webmail/1.2.0/tg t_framework_HK_GW_Prefs_FileDriverHotfix.diff, NONE, 1.1.2.1 Message-ID: <20090923085945.0620D60081E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/patches/horde-webmail/1.2.0/tg In directory doto:/tmp/cvs-serv1536/patches/horde-webmail/1.2.0/tg Added Files: Tag: kolab_2_2_branch t_framework_HK_GW_Prefs_FileDriverHotfix.diff Log Message: Add missing hotfix for kolab/issue3555 (unable to save filter settings more than once) --- NEW FILE: t_framework_HK_GW_Prefs_FileDriverHotfix.diff --- From: Gunnar Wrobel

Subject: [PATCH] t/framework/HK/GW/Prefs/FileDriverHotfix.diff A hotfix for https://issues.kolab.org/issue3555 STATUS: Will not be merged upstream and is only a hotfix for Kolab Server 2.2.3 Signed-off-by: Gunnar Wrobel

--- diff a/horde-webmail/lib/Horde/Prefs/file.php b/horde-webmail/lib/Horde/Prefs/file.php --- a/horde-webmail/lib/Horde/Prefs/file.php +++ a/horde-webmail/lib/Horde/Prefs/file.php @@ -209,6 +209,7 @@ } $this->_file_cache[$scope][$name] = $pref; + $this->_file_cache[$scope][$name]['m'] &= ~_PREF_DIRTY; } } From cvs at kolab.org Wed Sep 23 10:59:45 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 23 Sep 2009 10:59:45 +0200 (CEST) Subject: gunnar: server/patches/horde-webmail/1.2.0 horde-webmail-1.2.0_kolab_openpkg.patch, 1.32.2.9, 1.32.2.10 Message-ID: <20090923085945.3B41560081E@lists.intevation.de> Author: gunnar Update of /kolabrepository/server/patches/horde-webmail/1.2.0 In directory doto:/tmp/cvs-serv1536/patches/horde-webmail/1.2.0 Modified Files: Tag: kolab_2_2_branch horde-webmail-1.2.0_kolab_openpkg.patch Log Message: Add missing hotfix for kolab/issue3555 (unable to save filter settings more than once) Index: horde-webmail-1.2.0_kolab_openpkg.patch =================================================================== RCS file: /kolabrepository/server/patches/horde-webmail/1.2.0/Attic/horde-webmail-1.2.0_kolab_openpkg.patch,v retrieving revision 1.32.2.9 retrieving revision 1.32.2.10 diff -u -d -r1.32.2.9 -r1.32.2.10 --- horde-webmail-1.2.0_kolab_openpkg.patch 10 Sep 2009 09:32:26 -0000 1.32.2.9 +++ horde-webmail-1.2.0_kolab_openpkg.patch 23 Sep 2009 08:59:42 -0000 1.32.2.10 @@ -20001,24 +20001,26 @@ LINK: https://www.intevation.de/roundup/kolab/issue3525 LINK: https://www.intevation.de/roundup/kolab/issue3528 From: Gunnar Wrobel

-Subject: [PATCH] t/framework/HK/GW/Prefs_FileDriverHotfix +Subject: [PATCH] t/framework/HK/GW/Prefs/FileDriverHotfix.diff -Hotfixes kolab/issue3555 (unable to save filter settings more than once) +A hotfix for https://issues.kolab.org/issue3555 + +STATUS: Will not be merged upstream and is only a hotfix for Kolab Server 2.2.3 Signed-off-by: Gunnar Wrobel

--- -diff --git a/horde-webmail/lib/Horde/Kolab/Format/XML/hprefs.php b/horde-webmail/lib/Horde/Kolab/Format/XML/hprefs.php -index e646ad6..22a94bc 100644 +diff a/horde-webmail/lib/Horde/Prefs/file.php b/horde-webmail/lib/Horde/Prefs/file.php --- a/horde-webmail/lib/Horde/Prefs/file.php -+++ b/horde-webmail/lib/Horde/Prefs/file.php -@@ -209,5 +209,6 @@ ++++ a/horde-webmail/lib/Horde/Prefs/file.php +@@ -209,6 +209,7 @@ } $this->_file_cache[$scope][$name] = $pref; + $this->_file_cache[$scope][$name]['m'] &= ~_PREF_DIRTY; } } + diff -c a/horde-webmail/lib/Horde/Kolab/Storage/Folder.php b/horde-webmail/lib/Horde/Kolab/Storage/Folder.php --- a/horde-webmail/lib/Horde/Kolab/Storage/Folder.php +++ b/horde-webmail/lib/Horde/Kolab/Storage/Folder.php From cvs at kolab.org Wed Sep 23 17:46:03 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 23 Sep 2009 17:46:03 +0200 (CEST) Subject: wilde: server/openpkg Makefile, 1.1.2.1, 1.1.2.2 kolab.patch, 1.1.2.1, 1.1.2.2 Message-ID: <20090923154603.2C085600173@lists.intevation.de> Author: wilde Update of /kolabrepository/server/openpkg In directory doto:/tmp/cvs-serv15838 Modified Files: Tag: kolab_2_2_branch Makefile kolab.patch Log Message: Fixed rpmtool to issue optimization flags an amd64 systems. This is needed to build rpm packages with optimization on all x86-64 systems, also see kolab/issue3868. Index: Makefile =================================================================== RCS file: /kolabrepository/server/openpkg/Makefile,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- Makefile 26 Mar 2009 14:40:05 -0000 1.1.2.1 +++ Makefile 23 Sep 2009 15:46:01 -0000 1.1.2.2 @@ -17,7 +17,7 @@ PACKAGE=openpkg VERSION=20071227 RELEASE=20071227 -KOLABRELEASE=$(RELEASE)_kolab1 +KOLABRELEASE=$(RELEASE)_kolab2 KOLABPKGURI2 = http://files.kolab.org/server/development-2.2/openpkg-orig-srpms/ PACKAGE2=tar Index: kolab.patch =================================================================== RCS file: /kolabrepository/server/openpkg/kolab.patch,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- kolab.patch 26 Mar 2009 14:40:05 -0000 1.1.2.1 +++ kolab.patch 23 Sep 2009 15:46:01 -0000 1.1.2.2 @@ -1,6 +1,6 @@ -diff -urN openpkg.orig/openpkg.boot openpkg/openpkg.boot ---- openpkg.orig/openpkg.boot 2007-07-18 19:47:35.000000000 +0200 -+++ openpkg/openpkg.boot 2009-03-26 14:20:04.566281335 +0100 +diff -urN openpkg/openpkg.boot openpkg-kolab/openpkg.boot +--- openpkg/openpkg.boot 2007-07-18 19:47:35.000000000 +0200 ++++ openpkg-kolab/openpkg.boot 2009-09-23 15:09:39.603405000 +0200 @@ -142,7 +142,7 @@ name="openpkg" spec="$name.spec" @@ -10,14 +10,14 @@ ## ## display headline -diff -urN openpkg.orig/openpkg.spec openpkg/openpkg.spec ---- openpkg.orig/openpkg.spec 2007-12-27 11:41:34.000000000 +0100 -+++ openpkg/openpkg.spec 2009-03-26 14:20:39.026995207 +0100 +diff -urN openpkg/openpkg.spec openpkg-kolab/openpkg.spec +--- openpkg/openpkg.spec 2007-12-27 11:41:34.000000000 +0100 ++++ openpkg-kolab/openpkg.spec 2009-09-23 15:09:39.603405000 +0200 @@ -40,6 +40,7 @@ # the package version/release %define V_openpkg 20071227 -+%define V_release 20071227_kolab1 ++%define V_release 20071227_kolab2 # the used software versions %define V_rpm 4.2.1 @@ -39,3 +39,15 @@ # list of sources Source0: ftp://alpha.gnu.org/gnu/patch/patch-%{V_patch}.tar.gz +diff -urN openpkg/rpmtool openpkg-kolab/rpmtool +--- openpkg/rpmtool 2007-10-11 22:40:43.000000000 +0200 ++++ openpkg-kolab/rpmtool 2009-09-23 15:45:25.946152864 +0200 +@@ -475,7 +475,7 @@ + # more than required. We also can assume that the C + # compiler is always GCC, either the OpenPKG one or + # the FreeBSD one. +- cflags="-fPIC" ++ cflags="-fPIC $cflags" + ;; + esac + echo "x$cflags" | sed -e 's;^x;;' From cvs at kolab.org Wed Sep 23 18:18:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 23 Sep 2009 18:18:50 +0200 (CEST) Subject: wilde: server Makefile,1.76,1.76.2.1 Message-ID: <20090923161850.7C244600173@lists.intevation.de> Author: wilde Update of /kolabrepository/server In directory doto:/tmp/cvs-serv17006 Modified Files: Tag: kolab_2_2_branch Makefile Log Message: Added db package to build process, so it can be patched. We patch the package, so that more sensible mutex code is used on amd64, this should fix kolab/issue2982 (OpenLDAP segmentation fault on 64bit) Index: Makefile =================================================================== RCS file: /kolabrepository/server/Makefile,v retrieving revision 1.76 retrieving revision 1.76.2.1 diff -u -d -r1.76 -r1.76.2.1 --- Makefile 24 Feb 2009 15:05:53 -0000 1.76 +++ Makefile 23 Sep 2009 16:18:48 -0000 1.76.2.1 @@ -17,6 +17,7 @@ imapd \ clamav \ gmp \ + db \ sqlite \ perl-ldap From cvs at kolab.org Wed Sep 23 18:18:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 23 Sep 2009 18:18:50 +0200 (CEST) Subject: wilde: server/db .cvsignore, NONE, 1.1.2.1 Makefile, NONE, 1.5.2.1 kolab.patch, NONE, 1.2.2.1 Message-ID: <20090923161850.81F7C600817@lists.intevation.de> Author: wilde Update of /kolabrepository/server/db In directory doto:/tmp/cvs-serv17006/db Added Files: Tag: kolab_2_2_branch .cvsignore Makefile kolab.patch Log Message: Added db package to build process, so it can be patched. We patch the package, so that more sensible mutex code is used on amd64, this should fix kolab/issue2982 (OpenLDAP segmentation fault on 64bit) --- NEW FILE: .cvsignore --- *.src.rpm --- NEW FILE: Makefile --- ifeq "x$(KOLABPKGURI)" "x" KOLABPKGURI = http://files.kolab.org/server/release/kolab-server-2.2.0/sources/ endif ifeq "x$(KOLABRPMSRC)" "x" KOLABRPMSRC = $(HOME)/RPM/SRC endif ifeq "x$(KOLABRPMPKG)" "x" KOLABRPMPKG = $(HOME)/RPM/PKG endif ifeq "x$(KOLABCVSDIR)" "x" KOLABCVSDIR = $(CURDIR) endif ifeq "x$(RPM)" "x" RPM = $(HOME)/bin/openpkg rpm endif PACKAGE=db VERSION=4.5.20.2 RELEASE=20070628 KOLABRELEASE=20070628_kolab1 all: $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm $(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm: $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm $(KOLABCVSDIR)/kolab.patch Makefile $(RPM) -ihv $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm cd $(KOLABRPMSRC)/$(PACKAGE) && patch < $(KOLABCVSDIR)/kolab.patch && $(RPM) -ba $(PACKAGE).spec cp -p $(KOLABRPMPKG)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm $(KOLABCVSDIR) $(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm: wget -c $(KOLABPKGURI)/$(PACKAGE)-$(VERSION)-$(RELEASE).src.rpm dist: all cp $(KOLABCVSDIR)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm ../stage/ clean: rm -f $(KOLABCVSDIR)/$(PACKAGE)-$(VERSION)-$(KOLABRELEASE).src.rpm --- NEW FILE: kolab.patch --- diff -urN db.orig/db.spec db/db.spec --- db.orig/db.spec 2007-06-28 00:03:05.000000000 +0200 +++ db/db.spec 2009-09-23 18:09:09.503979301 +0200 @@ -37,7 +37,7 @@ Group: Database License: BSD Version: %{V_version}.%{V_revision} -Release: 20070628 +Release: 20070628_kolab1 # package options %option with_compat no @@ -91,6 +91,7 @@ case "%{l_platform -p}" in ix86-* ) mutex="x86/gcc-assembly" ;; ia64-* ) mutex="ia64/gcc-assembly" ;; + amd64-* ) mutex="x86_64/gcc-assembly" ;; sparc*-* ) mutex="Sparc/gcc-assembly" ;; ppc*-* ) mutex="PPC/gcc-assembly" ;; alpha*-* ) mutex="ALPHA/gcc-assembly" ;; From cvs at kolab.org Wed Sep 23 18:29:50 2009 From: cvs at kolab.org (cvs@kolab.org) Date: Wed, 23 Sep 2009 18:29:50 +0200 (CEST) Subject: wilde: server release-notes.txt,1.398.2.54,1.398.2.55 Message-ID: <20090923162950.638D960080C@lists.intevation.de> Author: wilde Update of /kolabrepository/server In directory doto:/tmp/cvs-serv17318 Modified Files: Tag: kolab_2_2_branch release-notes.txt Log Message: Updated release notes. Index: release-notes.txt =================================================================== RCS file: /kolabrepository/server/release-notes.txt,v retrieving revision 1.398.2.54 retrieving revision 1.398.2.55 diff -u -d -r1.398.2.54 -r1.398.2.55 --- release-notes.txt 22 Sep 2009 16:28:07 -0000 1.398.2.54 +++ release-notes.txt 23 Sep 2009 16:29:48 -0000 1.398.2.55 @@ -45,6 +45,10 @@ Changes between 2.2.2 and 2.2.3: + - db-4.5.20.2-20070628_kolab1 + + kolab/issue2982 (OpenLDAP segmentation fault on 64bit) + - imapd-2.3.13-20081020_kolab3 Fix buffer size calculations for sieve actions_string (CVE-2009-2632) @@ -59,6 +63,11 @@ kolab/issue3509 (calender not displaying in horde if german holidays are selected) kolab/issue3555 (unable to save filter settings more than once) + + - openpkg-20071227-20071227_kolab2 + + Fixed cflags for amd64 systems. Related to: + kolab/issue2982 (OpenLDAP segmentation fault on 64bit) - perl-kolab-2.2.3-2009????