diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-13 13:58:15 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-13 13:58:15 -0500 |
| commit | 5541e60418b5c1cf44c0a0b6999589d10d20f7bd (patch) | |
| tree | 8a57f7172114d760cc685745ef0da3b1f676c5f8 | |
| parent | 997d839ca41b7a6fc46f3fba722476e6558688ab (diff) | |
| download | chime-5541e60418b5c1cf44c0a0b6999589d10d20f7bd.tar.gz chime-5541e60418b5c1cf44c0a0b6999589d10d20f7bd.zip | |
fix: scrub aux-file headers in convert-org-contacts-birthdays.el
The file was added to Eask's (files ...) list in 675fb68 but kept its standalone Version, Package-Requires, and Keywords headers. package-lint flags those as "Package-Requires outside the main file have no effect" and the lint step fails CI. Match the sibling auxiliary-file pattern (chime-debug.el, chime-org-contacts.el): keep Author + URL, add the convention note, drop the redundant metadata.
| -rw-r--r-- | convert-org-contacts-birthdays.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/convert-org-contacts-birthdays.el b/convert-org-contacts-birthdays.el index 373613a..6009135 100644 --- a/convert-org-contacts-birthdays.el +++ b/convert-org-contacts-birthdays.el @@ -3,11 +3,12 @@ ;; Copyright (C) 2025-2026 Craig Jennings ;; Author: Craig Jennings <c@cjennings.net> -;; Version: 1.0.0 -;; Package-Requires: ((emacs "27.1") (org "9.0")) -;; Keywords: calendar, org-mode ;; URL: https://github.com/cjennings/chime +;; This file is part of the chime package. Version, Package-Requires, and +;; Keywords live on the main file (chime.el); auxiliary files do not repeat +;; them per package-lint convention. + ;; This program 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 |
