Hello community, here is the log from the commit of package mailman for openSUSE:Factory checked in at 2012-10-03 08:04:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mailman (Old) and /work/SRC/openSUSE:Factory/.mailman.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mailman", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/mailman/mailman.changes 2012-03-05 18:00:20.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.mailman.new/mailman.changes 2012-10-03 08:04:11.000000000 +0200 @@ -1,0 +2,9 @@ +Tue Oct 2 13:10:52 UTC 2012 - [email protected] + +- removed SuSEconfig dependency + * SuSEconfig.mailman is moved to a new location, and works + pretty much the same way as before. which may or may not + be a good thing, perhaps this functionality should be + removed completely + +------------------------------------------------------------------- Old: ---- SuSEconfig.mailman New: ---- mailman-generate-sysconfig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mailman.spec ++++++ --- /var/tmp/diff_new_pack.8Lu0Ns/_old 2012-10-03 08:04:12.000000000 +0200 +++ /var/tmp/diff_new_pack.8Lu0Ns/_new 2012-10-03 08:04:12.000000000 +0200 @@ -41,7 +41,7 @@ Source1: README.SuSE Source2: mailman-2.1-manpages.tgz %if %DISTRIBUTABLE -Source4: SuSEconfig.mailman +Source4: mailman-generate-sysconfig %else Source4: SuSEconfig.mailman-SuSE %endif @@ -146,7 +146,7 @@ echo %{m_gid} > $RPM_BUILD_ROOT/%{mailman_confd}/mailman.mail-gid # SuSEconfig stuff: install -m 644 %{S:7} $RPM_BUILD_ROOT/var/adm/fillup-templates/ -install -m 755 %{S:4} $RPM_BUILD_ROOT/sbin/conf.d/SuSEconfig.mailman +install -m 755 %{S:4} $RPM_BUILD_ROOT/usr/lib/mailman/bin/ install -m 644 %{S:8} %{buildroot}/usr/lib/mailman/sgidlist # start script: ln -sf ../../etc/init.d/mailman $RPM_BUILD_ROOT/usr/sbin/rcmailman @@ -200,7 +200,7 @@ # use Mailman facilities for updating old data usr/lib/mailman/bin/update if test -z "$YAST_IS_RUNNING" ; then - echo "Please remember to run 'SuSEconfig --module mailman' to configure mailman" + echo "Please remember to run '/usr/lib/mailman/bin/mailman-generate-sysconfig' to configure mailman" fi # re-create the list aliases usr/lib/mailman/bin/genaliases > /dev/null @@ -247,7 +247,6 @@ %config(noreplace) %attr(-, mailman, mailman) /var/lib/mailman/data/aliases %ghost %attr(0664, mailman, mailman) /var/lib/mailman/data/aliases.db /var/adm/fillup-templates/* -/sbin/conf.d/* /usr/sbin/* /etc/init.d/* %dir /etc/apache2 ++++++ README.SuSE ++++++ --- /var/tmp/diff_new_pack.8Lu0Ns/_old 2012-10-03 08:04:12.000000000 +0200 +++ /var/tmp/diff_new_pack.8Lu0Ns/_new 2012-10-03 08:04:12.000000000 +0200 @@ -22,7 +22,7 @@ MAILMAN_DEFAULT_EMAIL_HOST MAILMAN_DEFAULT_URL_HOST MAILMAN_VIRTUAL_HOSTS - and run "SuSEconfig -module mailman". + and run "/usr/lib/mailman/bin/mailman-generate-sysconfig". 2) Call "/usr/lib/mailman/bin/mmsitepass" as user root to set your site master password. ++++++ mailman-generate-sysconfig ++++++ #!/bin/bash # # Copyright (c) 1995-2002 SuSE Linux AG, Nuernberg, Germany. # All rights reserved. # # Author: Vladim�r Linek <[email protected]> # Heiko Rommel <[email protected]> # # # check if we are started as root # only one of UID and USER must be set correctly # if test "$UID" != 0 -a "$USER" != root; then echo "You must be root to start $0." exit 1 fi if test ! -x /bin/hostname; then echo "You need /bin/hostname to run $0." exit 1 fi r="$ROOT" warn_user(){ tput bold echo -e "\t*** WARNING ***" echo -e $1 echo -e "\t*** WARNING ***" tput sgr0 } # # load sysconfig for mailman # mailmansysconf="$r/etc/sysconfig/mailman" test -f $mailmansysconf || { echo "ERROR - can not find $mailmansysconf!!" echo "This should not happen. Exit..." exit 1 } . $mailmansysconf # # go and replace some general site secific options # HOST=`/bin/hostname --fqdn` MM_CFG="$r/usr/lib/mailman/Mailman/mm_cfg.py" mmcfgdist="$r/usr/lib/mailman/Mailman/mm_cfg.py.dist" install -m 0644 -o root -g mailman $mmcfgdist ${MM_CFG}.SuSEconfig || { echo "ERROR - can not find $mmcfgdist!!" echo "This should not happen. Exit..." exit 1 } ( test "$MAILMAN_DEFAULT_HTTPS" = "yes" && echo "DEFAULT_URL_PATTERN = 'https://%s/mailman/'" || echo "DEFAULT_URL_PATTERN = 'http://%s/mailman/'" ) >> ${MM_CFG}.SuSEconfig ( test -z "$MAILMAN_DEFAULT_NNTP_HOST" && echo "DEFAULT_NNTP_HOST = '${HOST}'" || echo "DEFAULT_NNTP_HOST = '$MAILMAN_DEFAULT_NNTP_HOST'" ) >> ${MM_CFG}.SuSEconfig ( test -z "$MAILMAN_DEFAULT_EMAIL_HOST" && echo "DEFAULT_EMAIL_HOST = '${HOST}'" || echo "DEFAULT_EMAIL_HOST = '$MAILMAN_DEFAULT_EMAIL_HOST'" ) >> ${MM_CFG}.SuSEconfig ( test -z "$MAILMAN_DEFAULT_URL_HOST" && echo "DEFAULT_URL_HOST = '${HOST}'" || echo "DEFAULT_URL_HOST = '$MAILMAN_DEFAULT_URL_HOST'" ) >> ${MM_CFG}.SuSEconfig ( if test -z "$MAILMAN_MTA"; then echo "MTA = ''" else case "$MAILMAN_MTA" in None) echo "MTA = None" ;; *) echo "MTA = '$MAILMAN_MTA'";; esac fi ) >> ${MM_CFG}.SuSEconfig if [ "$MAILMAN_MTA" = "Postfix" ]; then if [ -x /usr/sbin/postalias ]; then echo -e "POSTFIX_ALIAS_CMD = '/usr/sbin/postalias'\nPOSTFIX_MAP_CMD = '/usr/sbin/postmap'" >> ${MM_CFG}.SuSEconfig else echo -e "WARNING: Postfix seems not to be installed, but /etc/sysconfig/mailman\n has MAILMAN_MTA=\"Postfix\". Fix this!" fi fi if [ -z "$MAILMAN_SMTPHOST" ]; then echo -e "DELIVERY_MODULE = 'Sendmail'\nSMTPHOST = ''" >> ${MM_CFG}.SuSEconfig else echo -e "DELIVERY_MODULE = 'SMTPDirect'\nSMTPHOST = '${MAILMAN_SMTPHOST}'" >> ${MM_CFG}.SuSEconfig if [ -n "$MAILMAN_SMTPPORT" ]; then echo -e "SMTPPORT = '${MAILMAN_SMTPPORT}'" >> ${MM_CFG}.SuSEconfig fi fi # must be added if DEFAULT_EMAIL_HOST or DEFAULT_URL_HOST are changed echo "add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)" >> ${MM_CFG}.SuSEconfig if [ -n "$MAILMAN_VIRTUAL_HOSTS" ]; then for host in $MAILMAN_VIRTUAL_HOSTS; do url_host=${host%,*} email_host=${host##*,} echo "add_virtualhost('$url_host', '$email_host')" done >> ${MM_CFG}.SuSEconfig fi # there's no need to copy Mailman icons to the webservers icon directory echo "IMAGE_LOGOS = '/mailmanicons/'" >> ${MM_CFG}.SuSEconfig # this used to live in SuSEconfig.mailman-SuSE and I have no idea why it was there # grep LISTINFO_USE_CATEGORIES ${MM_CFG} > /dev/null 2>&1 || echo "LISTINFO_USE_CATEGORIES = 1" >> ${MM_CFG}.SuSEconfig # # update the site config # ### XXX un-suseconfig-hack check_md5_and_move() # Usage: check_md5_and_move file_name-without.SuSEconfig { # This function checks the existence of a file (specified without the # extension .SuSEconfig and without "$r") and a corresponding md5 checksum # and tests whether the time stamp of the file has changed. # If it has, nothing further will happen. If not, the "file.SuSEconfig" # will be moved to "file". FILE=$1 if test -n "$r" ; then RELPATH=`echo $FILE | sed -e"s:^$r::"` else RELPATH=$FILE fi MD5FILE=$RELPATH.md5 NEWMD5SUM="`cat $FILE.SuSEconfig | grep -v "^#" | md5sum`" if test ! -s $FILE ; then touch $FILE rm -f $MD5FILE fi if test "$FORCE_REPLACE" = true ; then cp -p $FILE.SuSEconfig $FILE fi USERMD5SUM="`cat $FILE | grep -v "^#" | md5sum`" test -e $MD5FILE || echo "$USERMD5SUM" > $MD5FILE OLDMD5SUM="`cat $MD5FILE`" if test "$USERMD5SUM" != "$OLDMD5SUM" -a \ "$USERMD5SUM" != "$NEWMD5SUM" ; then echo echo "ATTENTION: You have modified $RELPATH. Leaving it untouched..." echo "You can find my version in $FILE.SuSEconfig..." echo else if test "$USERMD5SUM" != "$NEWMD5SUM" -o "$FORCE_REPLACE" = true ; then echo "Installing new $RELPATH" cp -p $FILE.SuSEconfig $FILE else test "$VERBOSE" = false || echo "No changes for $RELPATH" fi rm -f $FILE.SuSEconfig fi rm -f $MD5FILE echo "$NEWMD5SUM" > $MD5FILE } check_md5_and_move $MM_CFG # # tune mail-gid and cgi-gid for wrapper scripts # if [ -z "$MAILMAN_MAIL_GID" ]; then warn_user "warning: empty MAILMAN_MAIL_GID in /etc/sysconfig/mailman, ignoring..." else MAILGID_CFG="$r/etc/mailman/mailman.mail-gid" getent group $MAILMAN_MAIL_GID | cut -d: -f3 > ${MAILGID_CFG}.SuSEconfig check_md5_and_move $MAILGID_CFG fi if [ -z "$MAILMAN_CGI_GID" ]; then warn_user "warning: empty MAILMAN_CGI_GID in /etc/sysconfig/mailman, ignoring..." else CGIGID_CFG="$r/etc/mailman/mailman.cgi-gid" getent group $MAILMAN_CGI_GID | cut -d: -f3 > ${CGIGID_CFG}.SuSEconfig check_md5_and_move $CGIGID_CFG fi exit 0 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
