alphapapa / makem.sh

Makefile-like script for linting and testing Emacs Lisp packages
GNU General Public License v3.0
163 stars 13 forks source link

Accept different casing for package-requires #17

Closed DamienCassou closed 4 years ago

DamienCassou commented 4 years ago

I noticed that makem.sh only accepts "Package-Requires" and not "Package-requires". According to the Elisp info manual, you are absolutely right. However, package-lint ignores case: https://github.com/purcell/package-lint/blob/master/package-lint.el#L902. Melpa also ignores case.

I don't know what is best and you might want to just close my issue. Otherwise, you can change your code to ignore case as well :-).

alphapapa commented 4 years ago

Thanks. I'm not sure what is best either, but I guess it's better to reflect what is actually accepted by other tools.