forked from pool/msmtp
Accepting request 213796 from home:benoit_monin:branches:server:mail
- update to version 1.4.31 - rework the path lookup for the vim syntax file: fix fedora and redhat build OBS-URL: https://build.opensuse.org/request/show/213796 OBS-URL: https://build.opensuse.org/package/show/server:mail/msmtp?expand=0&rev=61
This commit is contained in:
parent
93f6725a30
commit
fc753b511c
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:de0e7de6e73cce4a0df57bd831677ac0e2b82f6395314b6c508c9d2d18cdc52a
|
||||
size 302778
|
3
msmtp-1.4.31.tar.bz2
Normal file
3
msmtp-1.4.31.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:247af9a95fa22f506e85109fc4268a5d91ca03af9b17eebcc1e46b7cd64c225f
|
||||
size 305770
|
@ -1,3 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 13 20:49:38 UTC 2014 - benoit.monin@gmx.fr
|
||||
|
||||
- rework the path lookup for the vim syntax file: fix fedora and
|
||||
redhat build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 29 14:13:09 UTC 2013 - benoit.monin@gmx.fr
|
||||
|
||||
- update to version 1.4.31:
|
||||
* Updated the msmtpq script.
|
||||
* Fixed building of the documentation with texinfo >= 5.0.
|
||||
- additional changes from version 1.4.30:
|
||||
* Fix a bug in msmtp_read_addresses() that was introduced in
|
||||
version 1.4.29 by fixing a problem in the wrong way.
|
||||
- additional changes from version 1.4.29:
|
||||
* Fix bugs in msmtp_read_addresses(), including a crash.
|
||||
* Removed autotools files that are automatically copied by
|
||||
'autoreconf -i' from repository.
|
||||
* Properly require an argument to --passwordeval. Fixes a crash
|
||||
when none is given.
|
||||
* Replace old service name "ssmtp" with current one: "smtps".
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 14:46:40 CET 2013 - tbehrens@suse.com
|
||||
|
||||
|
14
msmtp.spec
14
msmtp.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package msmtp
|
||||
#
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -19,7 +19,7 @@
|
||||
%bcond_with gnome_keyring
|
||||
|
||||
Name: msmtp
|
||||
Version: 1.4.28
|
||||
Version: 1.4.31
|
||||
Release: 0
|
||||
BuildRequires: libidn-devel
|
||||
BuildRequires: openssl-devel
|
||||
@ -123,8 +123,14 @@ install -m 0755 \
|
||||
scripts/find_alias/*.sh \
|
||||
%{buildroot}%{_bindir}
|
||||
|
||||
vimver=`readlink %{_datadir}/vim/current`
|
||||
install -D -m 0644 scripts/vim/msmtp.vim %{buildroot}/%{_datadir}/vim/$vimver/syntax/msmtp.vim
|
||||
# find where to install vim syntax
|
||||
# start with the "site" directory, then "current" and finally any "vim??"
|
||||
for vimsyntax in %{_datadir}/vim/{site,current,vim[0-9][0-9]}/syntax; do
|
||||
if [ -d $vimsyntax ]; then
|
||||
break
|
||||
fi
|
||||
done
|
||||
install -D -m 0644 scripts/vim/msmtp.vim %{buildroot}$vimsyntax/msmtp.vim
|
||||
|
||||
# main package doc files
|
||||
for f in \
|
||||
|
Loading…
Reference in New Issue
Block a user