diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-21 09:59:56 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-12-21 09:59:56 (EST) |
commit | 4ff14be6da04e6a5c9e09dc74d2def000837356d (patch) | |
tree | c70c260affa1ac42c499eafa65e0f5888c4ea368 | |
parent | 70731955171732c48c0bcf18a2bc02cf7154db38 (diff) |
scripts/changelog2news.sh: Remove old script
-rw-r--r-- | Makefile.am | 3 | ||||
-rwxr-xr-x | scripts/changelog2news.sh | 17 |
2 files changed, 1 insertions, 19 deletions
diff --git a/Makefile.am b/Makefile.am index 0e25202..3d90e4e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -63,8 +63,7 @@ EXTRA_DIST = \ $(locale_sources) \ $(tests) \ $(tests_data) \ - tests/common.sh \ - scripts/changelog2news.sh + tests/common.sh SUFFIXES = .sh .sm .1in .1 .3in .3 .ms diff --git a/scripts/changelog2news.sh b/scripts/changelog2news.sh deleted file mode 100755 index a3c1d67..0000000 --- a/scripts/changelog2news.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -# -# Script to convert old-style ChangeLog files into new-style NEWS files. -# -# Copyright (C) 2014 Patrick "P. J." McDermott -# -# Copying and distribution of this file, with or without modification, -# are permitted in any medium without royalty provided the copyright -# notice and this notice are preserved. This file is offered as-is, -# without any warranty. - -script='s/^\(.*\) (\(.*\))$/opkbuild version \1\n\n' -script="${script}"'Released: \2\n\nChanges in this release:/' - -sed "${script}" "${1}" | \ - sed -n '/^opkbuild /{p; s/./-/gp; n;}; /^opkbuild /!p' | \ - grep -v '^ \[' |