SHA256
1
0
forked from pool/msmtp

Accepting request 83489 from home:wrosenauer:devel

OBS-URL: https://build.opensuse.org/request/show/83489
OBS-URL: https://build.opensuse.org/package/show/server:mail/msmtp?expand=0&rev=47
This commit is contained in:
Greg Kroah-Hartman 2011-09-20 15:59:01 +00:00 committed by Git OBS Bridge
parent 9f256f3bb0
commit 05eb361de3
4 changed files with 33 additions and 36 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7aa6d8cddf7a0210eb8c69608bf3595dae28f82cabec4e03d309fe486531c74e
size 942285

3
msmtp-1.4.24.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f19f3fcc67da448420b3adbd5add09f8fe110664dd64f3c2cd693ef0cb736887
size 299358

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Sep 19 08:37:21 UTC 2011 - wr@rosenauer.org
- update to version 1.4.24
- fixes SCRAM-SHA-1 authentication via GNU SASL
- cleanup that updates the build system and removes old cruft
and unnecessary complexity, without changing the functionality
of the program
- spec cleanup
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 10 14:24:09 UTC 2011 - gber@opensuse.org Mon Jan 10 14:24:09 UTC 2011 - gber@opensuse.org

View File

@ -1,7 +1,7 @@
# #
# spec file for package msmtp (Version 1.4.22) # spec file for package msmtp
# #
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -15,18 +15,16 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via http://bugs.opensuse.org/
# #
# norootforbuild
Name: msmtp Name: msmtp
Version: 1.4.22 Version: 1.4.24
Release: 2 Release: 1
#
License: GPLv3+ License: GPLv3+
Group: Productivity/Networking/Email/Utilities Group: Productivity/Networking/Email/Utilities
# BuildRequires: libidn-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: openssl-devel
BuildRequires: libidn-devel openssl-devel BuildRequires: pkg-config
%if 0%{?suse_version} >= 1120 %if 0%{?suse_version} >= 1120
BuildRequires: libgsasl-devel BuildRequires: libgsasl-devel
%endif %endif
@ -52,25 +50,17 @@ PreReq: %install_info_prereq
Requires(post): /sbin/install-info Requires(post): /sbin/install-info
Requires(preun):/sbin/install-info Requires(preun):/sbin/install-info
%endif %endif
# #Patch0: msmtp-fix-newopenssl.patch
Summary: Lightweight SMTP Client
Url: http://msmtp.sourceforge.net/ Url: http://msmtp.sourceforge.net/
Source: http://prdownloads.sourceforge.net/msmtp/msmtp-%{version}.tar.bz2 Source: http://prdownloads.sourceforge.net/msmtp/msmtp-%{version}.tar.bz2
#Patch0: msmtp-fix-newopenssl.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build
#
Summary: Lightweight SMTP Client
%description %description
msmtp is an SMTP client that can be used as a plug-in for Mutt and msmtp is an SMTP client that can be used as a plug-in for Mutt and
other mail user agents. It forwards mail to an SMTP server that does other mail user agents. It forwards mail to an SMTP server that does
the delivery. msmtp supports multiple accounts. the delivery. msmtp supports multiple accounts.
Authors:
--------
Martin Lambers <marlam@marlam.de>
%package doc %package doc
License: GPLv3+ License: GPLv3+
Summary: Documentation for %{name} Summary: Documentation for %{name}
@ -93,23 +83,23 @@ examples and sample configuration files.
export CFLAGS="%{optflags} -fstack-protector" export CFLAGS="%{optflags} -fstack-protector"
%endif %endif
%configure --docdir="%{_docdir}/%{name}" --with-ssl=openssl %configure --docdir="%{_docdir}/%{name}" --with-ssl=openssl
%__make %{?jobs:-j%{jobs}} make %{?_smp_mflags}
%install %install
%makeinstall %makeinstall
%find_lang %{name} %find_lang %{name}
for i in README ChangeLog ; do for i in README ChangeLog ; do
%{__cp} scripts/msmtpqueue/$i ${i}.msmtpqueue cp scripts/msmtpqueue/$i ${i}.msmtpqueue
done done
%{__cp} scripts/msmtpq/README README.msmtpq cp scripts/msmtpq/README README.msmtpq
%{__cp} scripts/vim/README README.vim cp scripts/vim/README README.vim
%{__install} -m 0755 \ install -m 0755 \
scripts/msmtpqueue/*.sh \ scripts/msmtpqueue/*.sh \
scripts/msmtpq/msmtp{q,Q} \ scripts/msmtpq/msmtp{q,Q} \
scripts/set_sendmail/*.sh \ scripts/set_sendmail/*.sh \
scripts/find_alias/*.sh \ scripts/find_alias/*.sh \
%{buildroot}%{_bindir} %{buildroot}%{_bindir}
%{__install} -D -m 0644 \ install -D -m 0644 \
scripts/vim/msmtp.vim \ scripts/vim/msmtp.vim \
%{buildroot}%{_datadir}/vim/current/syntax/msmtp.vim %{buildroot}%{_datadir}/vim/current/syntax/msmtp.vim
@ -117,26 +107,23 @@ done
for f in \ for f in \
COPYING\ COPYING\
; do ; do
%__install -D -m0644 "$f" "%{buildroot}%{_docdir}/%{name}/$f" install -D -m0644 "$f" "%{buildroot}%{_docdir}/%{name}/$f"
done done
# doc files # doc files
echo -n >docfiles.lst echo -n >docfiles.lst
for f in \ for f in \
AUTHORS ChangeLog* NEWS README README.msmtpqueue README.msmtpq THANKS \ AUTHORS ChangeLog* NEWS README README.msmtpqueue README.msmtpq THANKS \
doc/msmtp.html doc/Mutt+msmtp.txt doc/*.example \ doc/Mutt+msmtp.txt doc/*.example \
scripts/set_sendmail/set_sendmail.conf \ scripts/set_sendmail/set_sendmail.conf \
; do ; do
ff="${f##*/}" ff="${f##*/}"
%__install -D -m0644 "$f" "%{buildroot}%{_docdir}/%{name}/$ff" install -D -m0644 "$f" "%{buildroot}%{_docdir}/%{name}/$ff"
echo "%doc %{_docdir}/%{name}/$ff" >>docfiles.lst echo "%doc %{_docdir}/%{name}/$ff" >>docfiles.lst
done done
# not properly ignored on Fedora 10: # not properly ignored on Fedora 10:
%__rm -f "%{buildroot}%{_infodir}/dir" rm -f "%{buildroot}%{_infodir}/dir"
%clean
%{__rm} -rf %{buildroot}
%if 0%{?suse_version} %if 0%{?suse_version}