Accepting request 83953 from server:mail

(forwarded request 83489 from wrosenauer)

OBS-URL: https://build.opensuse.org/request/show/83953
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/msmtp?expand=0&rev=19
This commit is contained in:
Sascha Peilicke 2011-09-21 15:12:23 +00:00 committed by Git OBS Bridge
commit 9d6939c741
4 changed files with 30 additions and 33 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

@ -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: 1 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}