Bug 227801 - In /usr/ports/UPDATING, a few date headings are missing colons
Summary: In /usr/ports/UPDATING, a few date headings are missing colons
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Ports Framework (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Only Me
Assignee: Tobias Kortkamp
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-04-27 07:27 UTC by mike
Modified: 2018-04-27 07:55 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description mike 2018-04-27 07:27:12 UTC
A small number of entries in /usr/ports/UPDATING do not have a colon after the date in the heading. This is hurting the ability of FreshPorts to ascertain where a given entry begins and ends.

To see the affected entries:

egrep '^[0-9]+$' /usr/ports/UPDATING

It can be fixed easily enough:

sed -r 's#(^[0-9]+)$#\1:#' /usr/ports/UPDATING > /usr/ports/UPDATING.new
Comment 1 commit-hook freebsd_committer freebsd_triage 2018-04-27 07:55:13 UTC
A commit references this bug:

Author: tobik
Date: Fri Apr 27 07:54:23 UTC 2018
New revision: 468404
URL: https://svnweb.freebsd.org/changeset/ports/468404

Log:
  Add missing colons after the dates of some entries in UPDATING.
  pkg-updating(8) has trouble determining where entries being or end
  otherwise.

  PR:		227801
  Submitted by:	mike@skew.org

Changes:
  head/UPDATING
Comment 2 Tobias Kortkamp freebsd_committer freebsd_triage 2018-04-27 07:55:31 UTC
Thanks!