rpms/dovecot/devel .cvsignore, 1.85, 1.86 dovecot.spec, 1.198, 1.199 sources, 1.89, 1.90 dovecot-2.0-betahotfix.patch, 1.7, NONE

Michal Hlavinka mhlavink at fedoraproject.org
Wed Jul 21 07:40:29 UTC 2010


Author: mhlavink

Update of /cvs/pkgs/rpms/dovecot/devel
In directory cvs01.phx2.fedoraproject.org:/tmp/cvs-serv17736

Modified Files:
	.cvsignore dovecot.spec sources 
Removed Files:
	dovecot-2.0-betahotfix.patch 
Log Message:
* Wed Jul 21 2010 Michal Hlavinka <mhlavink at redhat.com> - 1:2.0-0.19.rc3
- dovecot and pigeonhole updated
- fixed lda + sieve crash
- added mail_temp_dir setting, used by deliver and lmtp for creating
  temporary mail files. Default is /tmp.
- imap: Fixed checking if list=children namespace has children.
- mdbox: Race condition fixes related to copying and purging



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/dovecot/devel/.cvsignore,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -p -r1.85 -r1.86
--- .cvsignore	16 Jul 2010 09:02:24 -0000	1.85
+++ .cvsignore	21 Jul 2010 07:40:28 -0000	1.86
@@ -1,2 +1,2 @@
-dovecot-20100716.tar.gz
-pigeonhole-snap29ae07044ec2.tar.bz2
+dovecot-2.0.rc3.tar.gz
+pigeonhole-snap01ee63b788c9.tar.bz2


Index: dovecot.spec
===================================================================
RCS file: /cvs/pkgs/rpms/dovecot/devel/dovecot.spec,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -p -r1.198 -r1.199
--- dovecot.spec	16 Jul 2010 09:02:24 -0000	1.198
+++ dovecot.spec	21 Jul 2010 07:40:28 -0000	1.199
@@ -1,11 +1,10 @@
-%global betasuffix .rc2
-%global snapsuffix 20100716
+%global betasuffix .rc3
 
 Summary: Secure imap and pop3 server
 Name: dovecot
 Epoch: 1
 Version: 2.0
-Release: 0.18%{?betasuffix}.%{?snapsuffix}%{?dist}
+Release: 0.19%{?betasuffix}%{?dist}
 #dovecot itself is MIT, a few sources are PD, pigeonhole is LGPLv2
 License: MIT and LGPLv2
 Group: System Environment/Daemons
@@ -13,14 +12,12 @@ Group: System Environment/Daemons
 %define pigeonhole_version 20100516
 
 URL: http://www.dovecot.org/
-#Source: http://www.dovecot.org/releases/2.0/beta/%{name}-%{version}%{?betasuffix}%{?snapsuffix}.tar.gz
-#we use nightly snapshots for now: 
-Source: http://www.dovecot.org/nightly/%{name}-%{snapsuffix}.tar.gz
+Source: http://www.dovecot.org/releases/2.0/rc/%{name}-%{version}%{?betasuffix}.tar.gz
 Source1: dovecot.init
 Source2: dovecot.pam
 #Source8: http://hg.rename-it.nl/dovecot-2.0-pigeonhole/archive/tip.tar.bz2
 #we use this ^^^ repository snapshost just renamed to contain last commit in name
-%global phsnap 29ae07044ec2
+%global phsnap 01ee63b788c9
 Source8: pigeonhole-snap%{phsnap}.tar.bz2
 Source9: dovecot.sysconfig
 
@@ -32,9 +29,6 @@ Patch1: dovecot-2.0-defaultconfig.patch
 Patch2: dovecot-1.0.beta2-mkcert-permissions.patch
 Patch3: dovecot-1.0.rc7-mkcert-paths.patch
 
-#contains changes required to clean bumpy ride during beta/snap/rc releases
-Patch4: dovecot-2.0-betahotfix.patch
-
 Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires: openssl-devel, pam-devel, zlib-devel, bzip2-devel, libcap-devel
 BuildRequires: libtool, autoconf, automake, pkgconfig
@@ -47,7 +41,7 @@ BuildRequires: libcurl-devel expat-devel
 
 # gettext-devel is needed for running autoconf because of the
 # presence of AM_ICONV
-BuildRequires: gettext-devel
+#BuildRequires: gettext-devel
 
 # Explicit Runtime Requirements for executalbe
 Requires: openssl >= 0.9.7f-4
@@ -101,22 +95,12 @@ Group: Development/Libraries
 This package provides the development files for dovecot.
 
 %prep
-#%setup -q -n %{name}-%{version}%{?betasuffix} -a 8
-%setup -q -n %{name}-%{snapsuffix} -a 8
-ln -s %{name}-%{snapsuffix} ../%{name}-%{version}%{?betasuffix}
-
+%setup -q -n %{name}-%{version}%{betasuffix} -a 8
 %patch1 -p1 -b .default-settings
 %patch2 -p1 -b .mkcert-permissions
 %patch3 -p1 -b .mkcert-paths
-%patch4 -p1 -b .betahotfix
 
 %build
-#autotools hacks can be removed later, nightly does not support --docdir
-aclocal -I . --force
-libtoolize --copy --force
-autoconf --force
-autoheader --force
-automake --add-missing --copy --force-missing
 #required for fdpass.c line 125,190: dereferencing type-punned pointer will break strict-aliasing rules
 export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
 %configure                       \
@@ -252,7 +236,7 @@ fi
 %check
 make check
 cd dovecot-2-0-pigeonhole-%{phsnap}
-make test
+make check
 
 %files
 %defattr(-,root,root,-)
@@ -367,6 +351,14 @@ make test
 %{_libdir}/%{name}/dict/libdriver_pgsql.so
 
 %changelog
+* Wed Jul 21 2010 Michal Hlavinka <mhlavink at redhat.com> - 1:2.0-0.19.rc3
+- dovecot and pigeonhole updated
+- fixed lda + sieve crash
+- added mail_temp_dir setting, used by deliver and lmtp for creating
+  temporary mail files. Default is /tmp.
+- imap: Fixed checking if list=children namespace has children.
+- mdbox: Race condition fixes related to copying and purging
+
 * Fri Jul 16 2010 Michal Hlavinka <mhlavink at redhat.com> - 1:2.0-0.18.rc2.20100716
 - dovecot and pigeonhole updated
 - enabled pigeonhole's build time test suite


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/dovecot/devel/sources,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -p -r1.89 -r1.90
--- sources	16 Jul 2010 09:02:24 -0000	1.89
+++ sources	21 Jul 2010 07:40:28 -0000	1.90
@@ -1,2 +1,2 @@
-53a46940509903672252bb4f2bbcf251  dovecot-20100716.tar.gz
-36f45986c729fb64fd5f8fd6b4d1a886  pigeonhole-snap29ae07044ec2.tar.bz2
+a13c486530265aa97eef6518cee62adf  dovecot-2.0.rc3.tar.gz
+a60f905521d3356c26aa875454498214  pigeonhole-snap01ee63b788c9.tar.bz2


--- dovecot-2.0-betahotfix.patch DELETED ---



More information about the scm-commits mailing list