public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/56653] New: Warning when verifying checksums from MD5SUMS file in tarballs
@ 2013-03-18 13:22 d.g.gorbachev at gmail dot com
  2013-12-27 22:38 ` [Bug other/56653] " d.g.gorbachev at gmail dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: d.g.gorbachev at gmail dot com @ 2013-03-18 13:22 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56653

             Bug #: 56653
           Summary: Warning when verifying checksums from MD5SUMS file in
                    tarballs
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: trivial
          Priority: P3
         Component: other
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: d.g.gorbachev@gmail.com


GNU md5sum (version 8.21) prints `md5sum: WARNING: 1 line is improperly
formatted'. It could be fixed by adding an extra `#' character to MD5SUMS:

*** maintainer-scripts/gcc_release
--- maintainer-scripts/gcc_release
***************
*** 214,218 ****
  # Suggested usage:
  # md5sum -c MD5SUMS | grep -v \"OK$\"
! " > MD5SUMS

    find . -type f |
--- 214,218 ----
  # Suggested usage:
  # md5sum -c MD5SUMS | grep -v \"OK$\"
! #" > MD5SUMS

    find . -type f |


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug other/56653] Warning when verifying checksums from MD5SUMS file in tarballs
  2013-03-18 13:22 [Bug other/56653] New: Warning when verifying checksums from MD5SUMS file in tarballs d.g.gorbachev at gmail dot com
@ 2013-12-27 22:38 ` d.g.gorbachev at gmail dot com
  2014-02-01 11:24 ` gerald at pfeifer dot com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: d.g.gorbachev at gmail dot com @ 2013-12-27 22:38 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56653

--- Comment #1 from Dmitry Gorbachev <d.g.gorbachev at gmail dot com> ---
Patch posted: <http://gcc.gnu.org/ml/gcc-patches/2013-12/msg01926.html>.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug other/56653] Warning when verifying checksums from MD5SUMS file in tarballs
  2013-03-18 13:22 [Bug other/56653] New: Warning when verifying checksums from MD5SUMS file in tarballs d.g.gorbachev at gmail dot com
  2013-12-27 22:38 ` [Bug other/56653] " d.g.gorbachev at gmail dot com
@ 2014-02-01 11:24 ` gerald at pfeifer dot com
  2014-02-01 12:02 ` gerald at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: gerald at pfeifer dot com @ 2014-02-01 11:24 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56653

Gerald Pfeifer <gerald at pfeifer dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2014-02-01
                 CC|                            |gerald at pfeifer dot com
     Ever confirmed|0                           |1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug other/56653] Warning when verifying checksums from MD5SUMS file in tarballs
  2013-03-18 13:22 [Bug other/56653] New: Warning when verifying checksums from MD5SUMS file in tarballs d.g.gorbachev at gmail dot com
  2013-12-27 22:38 ` [Bug other/56653] " d.g.gorbachev at gmail dot com
  2014-02-01 11:24 ` gerald at pfeifer dot com
@ 2014-02-01 12:02 ` gerald at gcc dot gnu.org
  2014-02-01 12:18 ` gerald at pfeifer dot com
  2014-02-01 12:28 ` gerald at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: gerald at gcc dot gnu.org @ 2014-02-01 12:02 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56653

--- Comment #2 from gerald at gcc dot gnu.org <gerald at gcc dot gnu.org> ---
Author: gerald
Date: Sat Feb  1 12:01:56 2014
New Revision: 207387

URL: http://gcc.gnu.org/viewcvs?rev=207387&root=gcc&view=rev
Log:
    PR other/56653
    * gcc_release: Avoid printing empty line to generated MD5SUMS files.
    Bump copyright year.

Modified:
    trunk/maintainer-scripts/ChangeLog
    trunk/maintainer-scripts/gcc_release


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug other/56653] Warning when verifying checksums from MD5SUMS file in tarballs
  2013-03-18 13:22 [Bug other/56653] New: Warning when verifying checksums from MD5SUMS file in tarballs d.g.gorbachev at gmail dot com
                   ` (2 preceding siblings ...)
  2014-02-01 12:02 ` gerald at gcc dot gnu.org
@ 2014-02-01 12:18 ` gerald at pfeifer dot com
  2014-02-01 12:28 ` gerald at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: gerald at pfeifer dot com @ 2014-02-01 12:18 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56653

Gerald Pfeifer <gerald at pfeifer dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
           Assignee|unassigned at gcc dot gnu.org      |gerald at pfeifer dot com

--- Comment #3 from Gerald Pfeifer <gerald at pfeifer dot com> ---
Fixed.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug other/56653] Warning when verifying checksums from MD5SUMS file in tarballs
  2013-03-18 13:22 [Bug other/56653] New: Warning when verifying checksums from MD5SUMS file in tarballs d.g.gorbachev at gmail dot com
                   ` (3 preceding siblings ...)
  2014-02-01 12:18 ` gerald at pfeifer dot com
@ 2014-02-01 12:28 ` gerald at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: gerald at gcc dot gnu.org @ 2014-02-01 12:28 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56653

--- Comment #4 from gerald at gcc dot gnu.org <gerald at gcc dot gnu.org> ---
Author: gerald
Date: Sat Feb  1 12:28:18 2014
New Revision: 207388

URL: http://gcc.gnu.org/viewcvs?rev=207388&root=gcc&view=rev
Log:
    PR other/56653
    * gcc_release: Avoid printing empty line to generated MD5SUMS files.
    Bump copyright year.

Modified:
    branches/gcc-4_8-branch/   (props changed)
    branches/gcc-4_8-branch/maintainer-scripts/ChangeLog
    branches/gcc-4_8-branch/maintainer-scripts/gcc_release

Propchange: branches/gcc-4_8-branch/
            ('svn:mergeinfo' modified)


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-02-01 12:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-18 13:22 [Bug other/56653] New: Warning when verifying checksums from MD5SUMS file in tarballs d.g.gorbachev at gmail dot com
2013-12-27 22:38 ` [Bug other/56653] " d.g.gorbachev at gmail dot com
2014-02-01 11:24 ` gerald at pfeifer dot com
2014-02-01 12:02 ` gerald at gcc dot gnu.org
2014-02-01 12:18 ` gerald at pfeifer dot com
2014-02-01 12:28 ` gerald at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).