[csw-devel] SF.net SVN: gar:[6825] csw/mgar/pkg/cyrus_imapd/trunk

chninkel at users.sourceforge.net chninkel at users.sourceforge.net
Sun Oct 11 00:49:34 CEST 2009


Revision: 6825
          http://gar.svn.sourceforge.net/gar/?rev=6825&view=rev
Author:   chninkel
Date:     2009-10-10 22:49:33 +0000 (Sat, 10 Oct 2009)

Log Message:
-----------
cyrus_imapd: updated to 2.3.15

Modified Paths:
--------------
    csw/mgar/pkg/cyrus_imapd/trunk/Makefile
    csw/mgar/pkg/cyrus_imapd/trunk/checksums
    csw/mgar/pkg/cyrus_imapd/trunk/files/cyrus_imapd.changelog.CSW
    csw/mgar/pkg/cyrus_imapd/trunk/files/cyrus_imapd_utils.changelog.CSW
    csw/mgar/pkg/cyrus_imapd/trunk/files/pm_cyrus.changelog.CSW

Property Changed:
----------------
    csw/mgar/pkg/cyrus_imapd/trunk/


Property changes on: csw/mgar/pkg/cyrus_imapd/trunk
___________________________________________________________________
Modified: svn:externals
   - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1

   + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2


Modified: csw/mgar/pkg/cyrus_imapd/trunk/Makefile
===================================================================
--- csw/mgar/pkg/cyrus_imapd/trunk/Makefile	2009-10-10 22:42:59 UTC (rev 6824)
+++ csw/mgar/pkg/cyrus_imapd/trunk/Makefile	2009-10-10 22:49:33 UTC (rev 6825)
@@ -1,5 +1,19 @@
+#####################################################################
+# OpenCSW build recipe for Cyrus Imap
+#
+# Copyright 2009 Yann Rouillard <yann at pleiades.fr.eu.org>
+# All rights reserved.  Use is subject to license terms.
+#
+# Redistribution and/or use, with or without modification, is
+# permitted.  This software is without warranty of any kind.  The
+# author(s) shall not be liable in the event that use of the
+# software causes damage.
+#####################################################################
+
+###### Package information #######
+
 GARNAME = cyrus_imapd
-GARVERSION = 2.3.14
+GARVERSION = 2.3.15
 CATEGORIES = server
 
 DESCRIPTION = Pop and Imap server from the Cyrus mail system
@@ -15,10 +29,14 @@
   multiple SASL mechanisms, and the Sieve mail filtering language.
 endef
 
-MASTER_SITES = ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ http://email.uoa.gr/download/cyrus/cyrus-imapd-$(GARVERSION)/
 
+###### Upstream and opencsw files information #######
+
+#MASTER_SITES = ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ http://email.uoa.gr/download/cyrus/cyrus-imapd-$(GARVERSION)/
+MASTER_SITES = ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ http://email.uoa.gr/download/cyrus/cyrus-imapd-2.3.14/
+
 # We define upstream file regex so we can be notifed of new upstream software release
-UFILES_REGEX = cyrus-imapd-(\d+(?:\.\d+)*).tar.gz
+UFILES_REGEX = $(shell echo $(GARNAME) | tr '_' '-')-(\d+(?:\.\d+)*).tar.gz
 
 DISTFILES  = $(shell echo $(GARNAME) | tr '_' '-')-$(GARVERSION).tar.gz
 DISTFILES += $(call admfiles,CSWcyrusimapd,prototype preinstall depend checkinstall)
@@ -33,9 +51,6 @@
 DISTFILES += cyrus_imapd_utils.changelog.CSW
 DISTFILES += pm_cyrus.changelog.CSW
 
-# We define upstream file regex so we can be notifed of new upstream software release
-UFILES_REGEX = $(shell echo $(GARNAME) | tr '_' '-')-(\d+(?:\.\d+)*).tar.gz
-
 # compile_et is not provided by krb5lib_dev so we must provide our own version
 # taken from the krb5 source.
 DISTFILES += compile_et et_c.awk et_h.awk
@@ -48,7 +63,7 @@
 # University of Athens patchs to allow autocreation of mailboxes
 # and autocreation of sub-lolders for filter rules
 #PATCHFILES = cyrus-imapd-$(GARVERSION)-autocreate-0.10-0.diff cyrus-imapd-$(GARVERSION)-autosieve-0.6.0.diff 
-PATCHFILES = cyrus-imapd-2.3.13-autocreate-0.10-0.diff cyrus-imapd-2.3.13-autosieve-0.6.0.diff 
+PATCHFILES = cyrus-imapd-2.3.14-autocreate-0.10-0.diff cyrus-imapd-2.3.14-autosieve-0.6.0.diff 
  
 # UPDATE: not necessary anymore, integrated upstream
 # This patch adds a new option which allows cyrus to
@@ -72,6 +87,8 @@
 #GNU_CC_OPT = -g
 #GNU_LD_OPT = -g
 
+##### Build and installation information #####
+
 # files are extracted in cyrus_imapd not cyrus-imapd
 WORKSRC = $(WORKDIR)/$(shell echo $(GARNAME) | tr '_' '-')-$(GARVERSION)
 
@@ -124,7 +141,7 @@
 	find doc -type f -exec perl -pi -e 's/\/opt\/csw\/etc\/cyrus\/sasldb2/\/opt\/csw\/etc\/sasldb2/g' '{}' ';')
 	@$(MAKECOOKIE)
 
-pre-install:
+pre-merge:
 	# we must create the directory where perl libraries will be installed
 	mkdir -p $(DESTDIR)/$(prefix)/lib/perl
 	mkdir -p $(DESTDIR)/$(sbindir)
@@ -132,7 +149,7 @@
 	mkdir -p $(DESTDIR)/$(prefix)/share/doc/cyrus_imapd
 	@$(MAKECOOKIE)
 
-post-install:
+post-merge:
 	# we install binary under tools as part of the package
 	cp -r $(WORKSRC)/tools/* $(DESTDIR)$(sbindir)
 	ginstall -D $(DESTDIR)$(sbindir)/arbitronsort.pl $(DESTDIR)$(sbindir)/arbitronsort

Modified: csw/mgar/pkg/cyrus_imapd/trunk/checksums
===================================================================
--- csw/mgar/pkg/cyrus_imapd/trunk/checksums	2009-10-10 22:42:59 UTC (rev 6824)
+++ csw/mgar/pkg/cyrus_imapd/trunk/checksums	2009-10-10 22:49:33 UTC (rev 6825)
@@ -1,35 +1,35 @@
-1030d4d9d04036b2fb9830165723908e  download/cyrus-imapd-2.3.14.tar.gz
+a55d22e88ee57fa81da2ea75c6e0e3d8  download/CSWcyrusimapd.checkinstall
+248ac6089e88b4eb3365e48c897b9734  download/CSWcyrusimapd.depend
 7423d96cacb8162b7987c9983cc85171  download/CSWcyrusimapd.gspec
+5111a5573aa6d4878b852780aeae8a27  download/CSWcyrusimapd.preinstall
 a22944187eb6b75e2437aa9a4c754c07  download/CSWcyrusimapd.prototype
-5111a5573aa6d4878b852780aeae8a27  download/CSWcyrusimapd.preinstall
-248ac6089e88b4eb3365e48c897b9734  download/CSWcyrusimapd.depend
-a55d22e88ee57fa81da2ea75c6e0e3d8  download/CSWcyrusimapd.checkinstall
-19204460216d299f19b6504be90b1d79  download/cyrus_imapd.changelog.CSW
+4d5ad6d492ca45da347bd9bd48213ac4  download/CSWcyrusimapdutils.depend
+d47ff67f45001cdda175616a543d7052  download/CSWcyrusimapdutils.gspec
+7e99e825a1d6b134b91392beec1807f4  download/CSWcyrusimapdutils.prototype
+fc64965b3c22618fb6b1dff7306a78e7  download/CSWpmcyrus.depend
+fdb06983e1a6fdde58ec25834742cf5d  download/CSWpmcyrus.gspec
+404a6d2b6608c26aaef4e37095200105  download/CSWpmcyrus.prototype
 d0b97b33e75ac75f89ee6236a2d53f05  download/README.CSW
-79211aee56db01e15566ced1ba4078da  download/i.services
-149ac6b6d82ef9ef4bb1b314f1a1cac4  download/r.services
-6dfee20f7c02139350caf9f75199e587  download/services
-9b2ae27f98333b73ff2b16ed98ee896a  download/i.conf
-5d9e9fb1a5b6af82ce915f72ebc5e3b7  download/r.conf
+9cbebaeeafa6eb3320eafa594c253bc1  download/compile_et
 a5326ab0d66431d057db02c5ae9c5e4a  download/cswcyrus.init
 628c5cf5f5b01f9e173e090ee0c969aa  download/cswcyrus.xml
-d41d8cd98f00b204e9800998ecf8427e  download/svc-cswcyrus
-908dbf764d3ccd541c4de881ac81a6ae  download/imapd.conf
+95d0eb720cb67d712ab799609c619929  download/cyrus-imapd-2.3.14-autocreate-0.10-0.diff
+4f010ee86b24f737c9de9fffa0d194e4  download/cyrus-imapd-2.3.14-autosieve-0.6.0.diff
+d89cb1b55023188938f332b7ef120fae  download/cyrus-imapd-2.3.15.tar.gz
+b4c99489eacf0fb7befeef5e3098a5c1  download/cyrus-imapd-2.3.7-nobarenewlinescheck.patch
+6127a7b62ec4679a54985f6a2d915e52  download/cyrus-imapd-acceptinvalidfrom.patch
 fdb3416ec41f3a56d1594ca25a6dcd7d  download/cyrus.conf
-fdb06983e1a6fdde58ec25834742cf5d  download/CSWpmcyrus.gspec
-404a6d2b6608c26aaef4e37095200105  download/CSWpmcyrus.prototype
-fc64965b3c22618fb6b1dff7306a78e7  download/CSWpmcyrus.depend
-d47ff67f45001cdda175616a543d7052  download/CSWcyrusimapdutils.gspec
-7e99e825a1d6b134b91392beec1807f4  download/CSWcyrusimapdutils.prototype
-4d5ad6d492ca45da347bd9bd48213ac4  download/CSWcyrusimapdutils.depend
-43d004e8a98a9143db8073bd529b8f7a  download/cyrus_imapd_utils.changelog.CSW
-5f2dbde9c973e714c0a4727e25863f75  download/pm_cyrus.changelog.CSW
-9cbebaeeafa6eb3320eafa594c253bc1  download/compile_et
+81f9b346bf3c1803381c94ce33f2163e  download/cyrus_imapd.changelog.CSW
+d722bfe708263b946d7bbc7f4d0ddf46  download/cyrus_imapd_utils.changelog.CSW
 5375c25c8bc325a90553d0be87a64a04  download/et_c.awk
 d1d86e61463a1dfefccbadedb11a8604  download/et_h.awk
+9b2ae27f98333b73ff2b16ed98ee896a  download/i.conf
+79211aee56db01e15566ced1ba4078da  download/i.services
+908dbf764d3ccd541c4de881ac81a6ae  download/imapd.conf
 14bb6e8c6d6914351f80df293982e88a  download/install-upgrade
-f1957096f173dcc9ea94d0544a07e9db  download/cyrus-imapd-2.3.13-autocreate-0.10-0.diff
-cce2e7fbc847791182b8f431c59e473a  download/cyrus-imapd-2.3.13-autosieve-0.6.0.diff
-6127a7b62ec4679a54985f6a2d915e52  download/cyrus-imapd-acceptinvalidfrom.patch
-b4c99489eacf0fb7befeef5e3098a5c1  download/cyrus-imapd-2.3.7-nobarenewlinescheck.patch
+e6730668fa500fc77120ee007e535274  download/pm_cyrus.changelog.CSW
+5d9e9fb1a5b6af82ce915f72ebc5e3b7  download/r.conf
+149ac6b6d82ef9ef4bb1b314f1a1cac4  download/r.services
 dce627f9a464ae4efe8a66c8dbd358d5  download/restore_allowplaintext_default.patch
+6dfee20f7c02139350caf9f75199e587  download/services
+d41d8cd98f00b204e9800998ecf8427e  download/svc-cswcyrus

Modified: csw/mgar/pkg/cyrus_imapd/trunk/files/cyrus_imapd.changelog.CSW
===================================================================
--- csw/mgar/pkg/cyrus_imapd/trunk/files/cyrus_imapd.changelog.CSW	2009-10-10 22:42:59 UTC (rev 6824)
+++ csw/mgar/pkg/cyrus_imapd/trunk/files/cyrus_imapd.changelog.CSW	2009-10-10 22:49:33 UTC (rev 6825)
@@ -1,3 +1,9 @@
+cyrus_imapd (2.3.15,REV=2009.10.11) unstable
+
+  * New upstream version.
+
+ -- Yann Rouillard <yann at opencsw.org>  Sun, 11 Oct 2009 00:47:17 +0200
+
 cyrus_imapd (2.3.14,REV=2009.03.27) unstable
 
   * New upstream version.

Modified: csw/mgar/pkg/cyrus_imapd/trunk/files/cyrus_imapd_utils.changelog.CSW
===================================================================
--- csw/mgar/pkg/cyrus_imapd/trunk/files/cyrus_imapd_utils.changelog.CSW	2009-10-10 22:42:59 UTC (rev 6824)
+++ csw/mgar/pkg/cyrus_imapd/trunk/files/cyrus_imapd_utils.changelog.CSW	2009-10-10 22:49:33 UTC (rev 6825)
@@ -1,3 +1,9 @@
+cyrus_imapd_utils (2.3.15,REV=2009.10.11) unstable
+
+  * New upstream version.
+
+ -- Yann Rouillard <yann at opencsw.org>  Sun, 11 Oct 2009 00:47:17 +0200
+
 cyrus_imapd_utils (2.3.14,REV=2009.03.27) unstable
 
   * New upstream version.

Modified: csw/mgar/pkg/cyrus_imapd/trunk/files/pm_cyrus.changelog.CSW
===================================================================
--- csw/mgar/pkg/cyrus_imapd/trunk/files/pm_cyrus.changelog.CSW	2009-10-10 22:42:59 UTC (rev 6824)
+++ csw/mgar/pkg/cyrus_imapd/trunk/files/pm_cyrus.changelog.CSW	2009-10-10 22:49:33 UTC (rev 6825)
@@ -1,3 +1,9 @@
+pm_cyrus (2.3.15,REV=2009.10.11) unstable
+
+  * New upstream version.
+
+ -- Yann Rouillard <yann at opencsw.org>  Sun, 11 Oct 2009 00:47:17 +0200
+
 pm_cyrus (2.3.14,REV=2009.03.27) unstable
 
   * New upstream version.


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the devel mailing list