Attaching debdiff!
On Sat, Mar 20, 2021 at 04:30:04PM +0000, Debian Bug Tracking System wrote: > Thank you for filing a new Bug report with Debian. > > You can follow progress on this Bug here: 985606: > https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=985606. > > This is an automatically generated reply to let you know your message > has been received. > > Your message is being forwarded to the package maintainers and other > interested parties for their attention; they will reply in due course. > > As you requested using X-Debbugs-CC, your message was also forwarded to > ti...@debian.org > (after having been given a Bug report number, if it did not have one). > > Your message has been sent to the package maintainer(s): > Debian Release Team <debian-rele...@lists.debian.org> > > If you wish to submit further information on this problem, please > send it to 985...@bugs.debian.org. > > Please do not send mail to ow...@bugs.debian.org unless you wish > to report a problem with the Bug-tracking system. > > -- > 985606: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=985606 > Debian Bug Tracking System > Contact ow...@bugs.debian.org with problems
diff -Nru apticron-1.2.3+nmu1/apticron apticron-1.2.4/apticron --- apticron-1.2.3+nmu1/apticron 2019-10-29 14:00:18.000000000 -0400 +++ apticron-1.2.4/apticron 2021-03-20 11:35:29.000000000 -0400 @@ -4,10 +4,10 @@ # implementations in Debian. Make sure we send proper headers, and a # text/plain content type. Mailx() { - MAIL_BODY_FILE=$(tempfile) + MAIL_BODY_FILE=$(mktemp) cat > "$MAIL_BODY_FILE" if [ "x$GPG_ENCRYPT" = "x1" ] && gpg --list-public-keys "$EMAIL" > /dev/null 2>&1; then - MAIL_ENC_FILE=$(tempfile) + MAIL_ENC_FILE=$(mktemp) gpg --trust-model always --batch --armor --encrypt --recipient "$EMAIL" < "$MAIL_BODY_FILE" > "$MAIL_ENC_FILE" mv "$MAIL_ENC_FILE" "$MAIL_BODY_FILE" fi diff -Nru apticron-1.2.3+nmu1/debian/changelog apticron-1.2.4/debian/changelog --- apticron-1.2.3+nmu1/debian/changelog 2019-10-29 14:00:18.000000000 -0400 +++ apticron-1.2.4/debian/changelog 2021-03-20 11:45:39.000000000 -0400 @@ -1,3 +1,9 @@ +apticron (1.2.4) unstable; urgency=medium + + * Fix tempfile warning message. (Closes: #962921) + + -- Tiago Bortoletto Vaz <ti...@debian.org> Sat, 20 Mar 2021 11:45:39 -0400 + apticron (1.2.3+nmu1) unstable; urgency=medium * Non-maintainer upload.