2007/1/22, Aaron Griffin <aaron@archlinux.org>:
Date: Monday, January 22, 2007 @ 04:57:21 Author: aaron Path: /home/cvs-pacman/pacman-lib/scripts
Modified: makepkg (1.30 -> 1.31)
Changelog support for makepkg - this has been in pacman itself for some time, but I don't know why I never crammed the changes for makepkg in.
* Adds a "Changelog" file next to a PKGBUILD as part of the package (viewed with pacman -Qc)
+# do we have a changelog? +have_changelog=0 +if [ -f "$startdir/Changelog" ]; then + msg "Copying package Changelog" + cp "$startdir/Changelog" "$startdir/pkg/.CHANGELOG" + have_changelog=1 fi
I think "Copying package Changelog" should be changed to "Copying package changelog". Also, there's some inconsistency in file names: PKGBUILD something.install Changelog Is there some reason why "Changelog" and not "CHANGELOG" or "changelog"? -- Roman Kyrylych (Роман Кирилич)