emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/bnf-mode 285c533 06/43: Convert change log to recognize


From: Stefan Monnier
Subject: [elpa] externals/bnf-mode 285c533 06/43: Convert change log to recognized by ELPA format
Date: Mon, 20 Jan 2020 13:38:59 -0500 (EST)

branch: externals/bnf-mode
commit 285c533a8ff4f9af6409789ac020f9f22cb38b75
Author: Serghei Iakovlev <address@hidden>
Commit: Serghei Iakovlev <address@hidden>

    Convert change log to recognized by ELPA format
    
    This will allow show changes at the package web-page.
---
 CHANGELOG.org | 64 ------------------------------------------------
 Makefile      |  5 ++--
 NEWS          | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 README.org    |  3 ++-
 bnf-mode.el   |  2 +-
 5 files changed, 84 insertions(+), 68 deletions(-)

diff --git a/CHANGELOG.org b/CHANGELOG.org
deleted file mode 100644
index ac2ecba..0000000
--- a/CHANGELOG.org
+++ /dev/null
@@ -1,64 +0,0 @@
-#+TITLE: Change Log
-#+AUTHOR: Serghei Iakovlev
-
-All notable changes to this project will be documented in this file.
-
-The format is based on [[http://keepachangelog.com][Keep a Changelog]] and 
this project adheres to [[http://semver.org][Semantic Versioning]].
-
-** [[https://github.com/sergeyklay/bnf-mode/compare/0.4.2...HEAD][Unreleased]]
-** [[https://github.com/sergeyklay/bnf-mode/compare/0.4.1...0.4.2][0.4.2]] - 
2019-05-14
-*** Added
-- Introduced ALGOL 60 comments style. Disabled by default.
-  For more see: [[https://github.com/sergeyklay/bnf-mode/pull/4][#4]] .
-
-*** Changed
-- Only setting =bnf-mode-algol-comments-style= to non-nil will allow use
-  semicolons as a regular terminal symbols. For more see: 
[[https://github.com/sergeyklay/bnf-mode/pull/4][#4]] .
-
-** [[https://github.com/sergeyklay/bnf-mode/compare/0.4.0...0.4.1][0.4.1]] - 
2019-04-21
-*** Fixes
-- Minor fix related to build & deploy BNF Mode on Travis CI.
-
-** [[https://github.com/sergeyklay/bnf-mode/compare/0.3.2...0.4.0][0.4.0]] - 
2019-04-21
-*** Added
-- Added =comment-start-skip= to help comment commands recognize comments.
-- Return back =comment-start= and =comment-end= removed in 
[[https://github.com/sergeyklay/bnf-mode/commit/83f0e0fc144e453bcce459d2d655a7b48e77953e][83f0e0f]]
 .
-- More intelligent terminal syntax recognition.
-  Added support of "=;=" character as an extra character used in terminals.
-- Provided ability to build installation package.
-  See =make help= for more.
-
-** [[https://github.com/sergeyklay/bnf-mode/compare/0.3.1...0.3.2][0.3.2]] - 
2019-03-24
-*** Changed
-- Published package on MELPA 
([[https://github.com/melpa/melpa/pull/6074][melpa/melpa#6074]]).
-
-*** Fixed
-- In the BNF there are no strings thus treat ' and " as a regular symbols.
-- Minor code cleanup: removed no longer needed =comment-*= variables.
-- In the BNF there are no grouping brackets except angle ones. Fixed.
-
-*** Removed
-- Removed the =bnf-mode-version= function. Users can easily call
-  =describe-package= or =pkg-info-package-version= interactively if they want
-  to get this information 
([[https://github.com/sergeyklay/bnf-mode/issues/1][#1]]).
-
-** [[https://github.com/sergeyklay/bnf-mode/compare/0.3.0...0.3.1][0.3.1]] - 
2019-03-17
-*** Fixed
-- Fixed BNF rule name definition to follow 
[[https://www.masswerk.at/algol60/report.htm][ALGOL 60 report]] .
-
-** [[https://github.com/sergeyklay/bnf-mode/compare/0.2.0...0.3.0][0.3.0]] - 
2019-03-17
-*** Changed
-- LHS nonterminals may be preceded by an unlimited number of spaces.
-
-** [[https://github.com/sergeyklay/bnf-mode/compare/0.1.0...0.2.0][0.2.0]] - 
2019-03-16
-*** Changed
-- Comments are no longer use syntax table. For more see =comment-use-syntax=.
-
-*** Fixed
-- Changed comment syntax from =#= to =;= to follow 
[[https://tools.ietf.org/html/rfc822#section-2.8][RFC822#2.8]] .
-
-** 0.1.0 - 2019-03-16
-*** Added
- - Initial stable release.
-
-[[https://www.gnu.org/software/emacs/][GNU Emacs]]
diff --git a/Makefile b/Makefile
index b68ef39..3ff712a 100644
--- a/Makefile
+++ b/Makefile
@@ -71,6 +71,7 @@ $(PKGDIR): Cask
        $(CASK) install
        touch $(PKGDIR)
 
+# Remove badges
 define org-clean
        cat $^ | sed -e "s/\[\[.*\.svg\]\]//g"
 endef
@@ -81,8 +82,8 @@ $(ARCHIVE_NAME).info: README.org
 README: README.org
        $(call org-clean,$^) | $(PANDOC) $(PANDOCLAGS) -t plain | sed -e 
"s/\[\]//g" > $@
 
-ChangeLog: CHANGELOG.org
-       $(call org-clean,$^) | $(PANDOC) $(PANDOCLAGS) -t plain | sed -e 
"s/\[\]//g" > $@
+ChangeLog: NEWS
+       cp $^ $@
 
 $(ARCHIVE_NAME)-pkg.el: $(ARCHIVE_NAME).el
        $(CASK) pkg-file
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..4dc7bf3
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,78 @@
+bnf-mode NEWS -- history of user-visible changes.
+
+Copyright (C) 2019 Free Software Foundation, Inc.
+See the end of the file for license conditions.
+
+This file is about changes in BNF Mode.
+
+* BNF Mode 0.4.2
+** Introduced ALGOL 60 comments style. Disabled by default.
+For more see: https://github.com/sergeyklay/bnf-mode/pull/4 .
+
+** Use semicolons as a comments.
+Only setting bnf-mode-algol-comments-style to non-nil will allow use
+semicolons as a regular terminal symbols.
+For more see: https://github.com/sergeyklay/bnf-mode/pull/4 .
+
+* BNF Mode 0.4.1
+** Minor fix related to build & deploy BNF Mode on Travis CI.
+
+* BNF Mode 0.4.0
+** Added comment-start-skip to improve recognize comments..
+** Return back comment-start and comment-end.
+** Use more intelligent terminal syntax recognition.
+Added support of ";" character as an extra character used in terminals.
+
+** Provided ability to build installation package.
+See make help for more.
+
+* BNF Mode 0.3.2
+** Published package on MELPA.
+For more see https://github.com/melpa/melpa/pull/6074 .
+
+** Treat ' and " as a regular symbols.
+** Removed no longer needed comment-* variables.
+** In the BNF there are no grouping brackets except angle ones.
+** Removed the bnf-mode-version function.
+Users can easily call describe-package or pkg-info-package-version
+interactively if they want to get this information. For more see: 
https://github.com/sergeyklay/bnf-mode/issues/1 .
+
+* BNF Mode 0.3.1
+** Fixed BNF rule name definition to follow ALGOL 60 report.
+For more see: https://www.masswerk.at/algol60/report.htm .
+
+* BNF Mode 0.3.0
+** Nonterminals may be preceded by an unlimited number of spaces.
+
+* BNF Mode 0.2.0
+** Comments are no longer use syntax table.
+** Changed comment syntax from "#" to ";" to follow RFC822#2.8 .
+For more see: https://tools.ietf.org/html/rfc822#section-2.8 .
+
+* BNF Mode 0.1.0
+** Initial stable release.
+
+
+
+----------------------------------------------------------------------
+This file is part of GNU Emacs.
+
+GNU Emacs is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+GNU Emacs is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.
+
+
+Local variables:
+coding: utf-8
+mode: outline
+paragraph-separate: "[         ]*$"
+end:
diff --git a/README.org b/README.org
index d09f5fc..832bc2e 100644
--- a/README.org
+++ b/README.org
@@ -78,7 +78,8 @@ Feel free to ask question or make suggestions in our 
[[https://github.com/sergey
 
 ** Changes
 
-To see what has changed in recent versions of BNF Mode, see the 
[[https://github.com/sergeyklay/bnf-mode/blob/master/CHANGELOG.org][CHANGELOG.org]]
 .
+To see what has changed in recent versions of BNF Mode see:
+https://github.com/sergeyklay/bnf-mode/blob/master/NEWS .
 
 ** External Links
 
diff --git a/bnf-mode.el b/bnf-mode.el
index d3a0fbe..e8a8679 100644
--- a/bnf-mode.el
+++ b/bnf-mode.el
@@ -76,7 +76,7 @@
 ;; History:
 ;;
 ;; History is tracked in the Git repository rather than in this file.
-;; (see URL `https://github.com/sergeyklay/bnf-mode/blob/master/CHANGELOG.org')
+;; (see URL `https://github.com/sergeyklay/bnf-mode/blob/master/NEWS')
 
 ;;; Code:
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]