diff options
author | wjv <wjv@FreeBSD.org> | 2003-01-23 20:49:00 +0800 |
---|---|---|
committer | wjv <wjv@FreeBSD.org> | 2003-01-23 20:49:00 +0800 |
commit | e21503486950aa93f1d71768936fd839830fcb86 (patch) | |
tree | 6383eeeeaba53632938ec18ab19990bff40f569c /mail/mailman/pkg-req | |
parent | ca6bbe183034add616798e7d83d770af64ac6c1a (diff) | |
download | freebsd-ports-gnome-e21503486950aa93f1d71768936fd839830fcb86.tar.gz freebsd-ports-gnome-e21503486950aa93f1d71768936fd839830fcb86.tar.zst freebsd-ports-gnome-e21503486950aa93f1d71768936fd839830fcb86.zip |
- Update author's email address in $DESCR.
- Update $PKGREQ to depend explicitly on Python >= 2.1.3, and not just >= 2.1
- Document required value of $MAIL_GID for Exim4.
- Substantial rewrite of $PKGINSTALL:
- Simplified layout.
- More extensive error checking.
- More expressive and user-friendly output.
- Substantial rewrite of $PKGDEINSTALL:
- Simplified layout.
- More expressive and user-friendly output.
- Delete %%MAILMANDIR%%/data/last_mailman_version in DEINSTALL, and restore
it in POST-DEINSTALL if the entire Mailman installation has not been
removed. This file is required by Mailman's update script (run as part
of the installation procedure) to update active mailing lists.
- Delete the errorlog if it is the only existing logfile. This will
finally allow the mailman port/package to be completely and cleanly
deinstalled when there are no active lists or updated configuration.
- Bump $PORTREVISION, with apologies to those tracking the port.
It should now finally be possible to update a Mailman installation with
active mailing lists simply by deinstalling the port/package, and
reinstalling a later version (or by using portupgrade(1)). There are still
no guarantees, though, and a backup is thorouhly recommended.
Diffstat (limited to 'mail/mailman/pkg-req')
-rw-r--r-- | mail/mailman/pkg-req | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mailman/pkg-req b/mail/mailman/pkg-req index 58b5530f3347..07db2eab1c24 100644 --- a/mail/mailman/pkg-req +++ b/mail/mailman/pkg-req @@ -4,12 +4,12 @@ PATH=$PATH:/usr/local/bin if [ "x$1" = "xINSTALL" -o "x$2" = "xINSTALL" ]; then PYTHON_GT=`python -c 'import string, sys; \ - print string.split(sys.version)[0] >= "2.1"'` + print string.split(sys.version)[0] >= "2.1.3"'` if [ "x${PYTHON_GT}" = "x1" ]; then exit 0 else echo "-----------------------------------------------------------" - echo "Mailman requires Python version 2.1 or greater -" + echo "Mailman requires Python version 2.1.3 or greater -" echo " please update your Python installation before proceeding." echo "-----------------------------------------------------------" exit 1 |