- Update to version 1.8.0

* Support for Content-MD5 header fields, MIME content cache
    functionality, and the message/partial MIME type have been
    removed.
  * Gmail OAuth2/XOAUTH support for desktop applications has been
    effectively dropped, so nmh no longer supports it.
  * nmh support for Gmail API access is experimental, please post
    to nmh-workers@nongnu.org if you'd like to help with test and
    development.
  * repl(1) -convertargs now allows editing of the composition
    draft between translation and any encoding of text content.
    Because encoding can wrap long lines, the use of a paragraph
    formatter has been removed from mhn.defaults.

OBS-URL: https://build.opensuse.org/package/show/server:mail/nmh?expand=0&rev=11
This commit is contained in:
Reinhard Max 2023-06-30 10:30:37 +00:00 committed by Git OBS Bridge
parent 8014b277a5
commit cf70a16898
7 changed files with 34 additions and 21 deletions

View File

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

Binary file not shown.

3
nmh-1.8.tar.gz Normal file
View File

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

BIN
nmh-1.8.tar.gz.sig Normal file

Binary file not shown.

View File

@ -1,3 +1,20 @@
-------------------------------------------------------------------
Fri Jun 30 10:23:07 UTC 2023 - Reinhard Max <max@suse.com>
- Update to version 1.8.0
* Support for Content-MD5 header fields, MIME content cache
functionality, and the message/partial MIME type have been
removed.
* Gmail OAuth2/XOAUTH support for desktop applications has been
effectively dropped, so nmh no longer supports it.
* nmh support for Gmail API access is experimental, please post
to nmh-workers@nongnu.org if you'd like to help with test and
development.
* repl(1) -convertargs now allows editing of the composition
draft between translation and any encoding of text content.
Because encoding can wrap long lines, the use of a paragraph
formatter has been removed from mhn.defaults.
-------------------------------------------------------------------
Mon Jul 23 09:27:26 UTC 2018 - bwiedemann@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package nmh
#
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@ -25,12 +25,12 @@ Requires: less
Requires: smtp_daemon
Provides: mh
Obsoletes: mh <= 6.8.4
Version: 1.7.1
Version: 1.8
Release: 0
Summary: Unix Mail Handler
License: BSD-3-Clause
Group: Productivity/Networking/Email/Clients
Url: https://www.nongnu.org/nmh/
URL: https://www.nongnu.org/nmh/
Source0: https://download.savannah.nongnu.org/releases/nmh/%{name}-%{version}.tar.gz
Source1: https://download.savannah.nongnu.org/releases/nmh/%{name}-%{version}.tar.gz.sig
Source2: %{name}.keyring
@ -53,7 +53,7 @@ ways.
%prep
%setup -q
%patch0 -p1
%patch0
%build
export HOSTNAME=OBS # for boo#1084909
@ -65,7 +65,7 @@ export HOSTNAME=OBS # for boo#1084909
make
%install
make DESTDIR=$RPM_BUILD_ROOT install
make DESTDIR=$RPM_BUILD_ROOT install
%files
%defattr(-,root,root)

View File

@ -10,10 +10,8 @@ and https://reproducible-builds.org/specs/source-date-epoch/
for the definition of this variable.
This date call only works with GNU date.
Index: nmh-1.7.1/config/version.sh
===================================================================
--- nmh-1.7.1.orig/config/version.sh
+++ nmh-1.7.1/config/version.sh
--- config/version.sh.orig
+++ config/version.sh
@@ -6,13 +6,13 @@
set -e
@ -30,16 +28,14 @@ Index: nmh-1.7.1/config/version.sh
cat <<E
char *version_str = "nmh-$version$git built $date on $host";
Index: nmh-1.7.1/man/mh-chart-gen.sh
===================================================================
--- nmh-1.7.1.orig/man/mh-chart-gen.sh
+++ nmh-1.7.1/man/mh-chart-gen.sh
@@ -13,7 +13,7 @@ nmhmandir=`dirname $0`
--- man/mh-chart-gen.sh.orig
+++ man/mh-chart-gen.sh
@@ -13,7 +13,7 @@ nmhmandir=$(dirname $0)
# from the local build environment when building distribution packages.
LC_TIME=C; export LC_TIME
unset LANG
-datestamp=`date +%Y-%m-%d`
-datestamp=$(date +%Y-%m-%d)
+datestamp="$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" '+%B %d, %Y')"
cat <<__HOOPY_FROOD
.TH MH-CHART %manext7% "${datestamp}" "%nmhversion%"
our_name="mh-chart"
our_desc="chart of all nmh commands and their options"