Re: postfix pkgname versions [Re: CVS: cvs.openbsd.org: ports]

2010-03-27 Thread Jakob Schlyter
would it be an option to rename the snapshot package instead?

jakob



postfix pkgname versions [Re: CVS: cvs.openbsd.org: ports]

2010-03-27 Thread Stuart Henderson
On 2010/03/27 14:59, Jakob Schlyter wrote:
> CVSROOT:  /cvs
> Module name:  ports
> Changes by:   ja...@cvs.openbsd.org   2010/03/27 14:59:58
> 
> Modified files:
>   mail/postfix/stable: Makefile distinfo 
>   mail/postfix/stable/patches: patch-master.cf 
> 
> Log message:
> update to Postfix v2.7.0; from Brad
> 

hmm.. going from the former snapshot, postfix-2.7.20091209, to this
will be treated by pkg_add as a downgrade (even though it's older code)
so users would need to force the upgrade if they want to stay on 2.7.x.
I think to avoid this, we probably need to add v0 markers e.g.
postfix-2.7.0v0, and when moving the snapshot to 2.8 start using
numbering something like 2.8pre20100323v0 instead. (Yes it's messy
but I don't see a better way to handle it while following the
rules for versioning, however I've cc'd ports@ in case anyone else
has a better idea...)

here's a diff doing this, updating the snapshot to 2.8 (which I've
been running here for a couple of days), and making a slightly more
clear message if you try and re-run postfix-enable after you've
already run it.

Index: Makefile.inc
===
RCS file: /cvs/ports/mail/postfix/Makefile.inc,v
retrieving revision 1.70
diff -u -p -r1.70 Makefile.inc
--- Makefile.inc18 Jul 2009 20:26:18 -  1.70
+++ Makefile.inc27 Mar 2010 22:56:10 -
@@ -4,9 +4,9 @@ COMMENT=fast, secure sendmail replaceme
 
 DISTNAME?= postfix-${VERSION}
 .if defined(PATCHLEVEL)
-PKGNAME?=  postfix-${VERSION:S/-/./}p${PATCHLEVEL}
+PKGNAME?=  postfix-${VERSION:S/-/pre/}p${PATCHLEVEL}v0
 .else
-PKGNAME?=  postfix-${VERSION:S/-/./}
+PKGNAME?=  postfix-${VERSION:S/-/pre/}v0
 .endif
 CATEGORIES=mail
 
Index: snapshot/Makefile
===
RCS file: /cvs/ports/mail/postfix/snapshot/Makefile,v
retrieving revision 1.200
diff -u -p -r1.200 Makefile
--- snapshot/Makefile   12 Dec 2009 08:35:58 -  1.200
+++ snapshot/Makefile   27 Mar 2010 22:56:10 -
@@ -1,6 +1,6 @@
 # $OpenBSD: Makefile,v 1.200 2009/12/12 08:35:58 jakob Exp $
 
-VERSION=   2.7-20091209
+VERSION=   2.8-20100323
 
 MASTER_SITES=  ${MASTER_SITE_POSTFIX:=experimental/}
 
Index: snapshot/distinfo
===
RCS file: /cvs/ports/mail/postfix/snapshot/distinfo,v
retrieving revision 1.146
diff -u -p -r1.146 distinfo
--- snapshot/distinfo   12 Dec 2009 08:35:58 -  1.146
+++ snapshot/distinfo   27 Mar 2010 22:56:10 -
@@ -1,5 +1,5 @@
-MD5 (postfix/postfix-2.7-20091209.tar.gz) = WyFVZnFj9Edld7f/Cw8HQQ==
-RMD160 (postfix/postfix-2.7-20091209.tar.gz) = vgoAgXK0lznwPl79pa+HXPTOugg=
-SHA1 (postfix/postfix-2.7-20091209.tar.gz) = DAM/QBWCUUcnOk5yBmQ4c64wWQI=
-SHA256 (postfix/postfix-2.7-20091209.tar.gz) = 
1kyrksfkwIPh6+L8HRhDfzaK7Ju3zYO8v/tN4cc2P5U=
-SIZE (postfix/postfix-2.7-20091209.tar.gz) = 3385941
+MD5 (postfix/postfix-2.8-20100323.tar.gz) = W758cm9IsQlmON+vIBrmNw==
+RMD160 (postfix/postfix-2.8-20100323.tar.gz) = QZf/4z3k7lSQXOH1Z/BfGexMvoQ=
+SHA1 (postfix/postfix-2.8-20100323.tar.gz) = DZ05z9AQocH4yb/KtV512YTvfQk=
+SHA256 (postfix/postfix-2.8-20100323.tar.gz) = 
STJ/I+NuDdyu8eclPKsbluXaqW23L/GeB9qvjgnIbkY=
+SIZE (postfix/postfix-2.8-20100323.tar.gz) = 3446878
Index: snapshot/files/postfix-enable
===
RCS file: /cvs/ports/mail/postfix/snapshot/files/postfix-enable,v
retrieving revision 1.5
diff -u -p -r1.5 postfix-enable
--- snapshot/files/postfix-enable   5 Jul 2006 06:21:09 -   1.5
+++ snapshot/files/postfix-enable   27 Mar 2010 22:56:10 -
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $OpenBSD: postfix-enable,v 1.5 2006/07/05 06:21:09 jakob Exp $
+# $OpenBSD: postfix-enable,v 1.8 2008/02/01 16:37:53 jakob Exp $
 
 if [ -f /etc/mailer.conf.postfix ]; then
 if [ -f /etc/mailer.conf ]; then
@@ -19,5 +19,9 @@ if [ -f /etc/mailer.conf.postfix ]; then
 echo "NOTE: do not forget to remove the \"sendmail clientmqueue runner\""
 echo "  from root's crontab."
 else
-echo "can't find /etc/mailer.conf.postfix, postfix not enabled"
+if [ -f /etc/mailer.conf.pre-postfix ]; then
+echo "postfix appears to be already enabled, check /etc/mailer.conf"
+else
+echo "can't find /etc/mailer.conf.postfix, postfix not enabled"
+fi
 fi
Index: snapshot/files/postfix-install
===
RCS file: /cvs/ports/mail/postfix/snapshot/files/postfix-install,v
retrieving revision 1.4
diff -u -p -r1.4 postfix-install
--- snapshot/files/postfix-install  15 Mar 2009 19:38:05 -  1.4
+++ snapshot/files/postfix-install  27 Mar 2010 22:56:10 -
@@ -31,6 +31,7 @@ do_mailwrapper()
 {
 echo "-> Creating /etc/mailer.conf.postfix"
 cat 

week end di Pasqua

2010-03-27 Thread info
Questa e' la nostra proposta per Pasqua!

Sara' un soggiorno di 3 notti con l'ingresso al centro benessere.

Andremo con il Pullman al Parco Oltremare di Riccione.

Vedremo lo spettacolo dei delfini e i grandi acquari marini.

Faremo la cena della Vigilia con musica dal vivo e tanto altro.

Camera doppia euro 498,00 totali per l'intero soggiorno tutto incluso

Il programma completo e' su www.missirini.it

Auguriamo una Serena Pasqua ricca di affetti e gioie

Hotel Missirini - Terme della Fratta - Romagna - T 0543 460770

Chiediamo scusa se abbiamo infastidito e invitiamo a cancellarsi.

--
Puoi cancellarti:
http://newsletter.2mlab.it/?p=unsubscribe&uid=8be9a7f44a574dea4b6402ae8488bc97

Puoi mandare questa offerta a chi vuoi tu!
http://newsletter.2mlab.it/?p=forward&uid=8be9a7f44a574dea4b6402ae8488bc97&mid=44

Puoi leggere la promozione direttamente dal sito:
http://www.missirini.it/missirini/promozione.asp?id=56&promo=P_9 





sxwerg

2010-03-27 Thread hgf123
dear

-Why Did Allah Create Humans?


Re: NEW: geo/gmapcatcher

2010-03-27 Thread Kevin Lo
Edd Barrett wrote: 
> On Thu, Mar 25, 2010 at 01:00:11PM +0800, Kevin Lo wrote:
> > $ cat pkg/DESCR
> > GMapCatcher is an offline maps viewer. It downloads CloudMade, 
> > OpenStreetMap or Google Map tiles automatically, display them using 
> > a specific GUI. User can view the maps while offline. 
> > 
> > Comments? ok?
> > 
> > Kevin
> 
> OK, first of all... This is cool!
> 
> Whats all of this moving src/ to gmapcatcher/? Is this really necessary?

Do you think that lib/python${MODPY_VERSION}/site-packages/src is better
than lib/python${MODPY_VERSION}/site-packages/gmapcatcher?
Are you sure?

> Also why do you copy in your own setup.py?

Why not? See www/ntlmaps or net/cjc for example. 

> I'm sure there are reason for these points. I'm just curious.
> 
> PS.
> 
> To get rid of the annoying red and blue blob on the map after a search:
>  * delete what is in the search bar
>  * hit F5
> 
> I hope they change this in the next release. Its annoying.

Indeed. So dude, where's your diff?

Kevin