-
Notifications
You must be signed in to change notification settings - Fork 3.9k
lynx: update to 2.9.3 #30286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lynx: update to 2.9.3 #30286
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,22 +1,22 @@ | ||
| # | ||
| # This is free software, licensed under the GNU General Public License v2. | ||
| # | ||
| # Based on https://github.com/kyak/openwrt-packages/tree/master/lynx | ||
| # | ||
|
Comment on lines
-4
to
-5
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: dropping the attribution comment is unrelated to the version bump, and with an empty commit body there is nothing recording why it went. Either keep it, or say so in the commit message so the removal is intentional on the record rather than incidental to a 2.9.2 β 2.9.3 update. Generated by Claude Code |
||
|
|
||
| include $(TOPDIR)/rules.mk | ||
|
|
||
| PKG_NAME:=lynx | ||
| PKG_VERSION:=2.9.2 | ||
| PKG_VERSION:=2.9.3 | ||
| PKG_RELEASE:=1 | ||
|
|
||
| PKG_LICENSE:=GPL-2.0 | ||
| PKG_MAINTAINER:=Leonid Esman <leonid.esman@gmail.com> | ||
| PKG_CPE_ID:=cpe:/a:lynx:lynx | ||
| PKG_SOURCE:=$(PKG_NAME)$(PKG_VERSION).tar.bz2 | ||
| PKG_SOURCE_URL:=https://invisible-mirror.net/archives/lynx/tarballs/ \ | ||
| https://fossies.org/linux/www/ | ||
| PKG_HASH:=7374b89936d991669e101f4e97f2c9592036e1e8cdaa7bafc259a77ab6fb07ce | ||
| PKG_SOURCE_URL:=https://invisible-island.net/archives/lynx/tarballs/ \ | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you confirm Impact is low either way β a bad first entry just falls through to Generated by Claude Code |
||
| https://invisible-mirror.net/archives/lynx/tarballs/ \ | ||
| https://fossies.org/linux/www/ \ | ||
| https://ftp2.osuosl.org/pub/blfs/conglomeration/lynx/ | ||
| PKG_HASH:=174b7f2866a60f3247ba75f5c7dbb10b124aede4a1359312de15f3bfebd2050f | ||
| PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)$(PKG_VERSION) | ||
|
|
||
| include $(INCLUDE_DIR)/package.mk | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Optional, pre-existing rather than introduced here β but a version bump is exactly when it bites, so worth folding in while you are touching the file.
The package installs two user-editable config files into
/etc(Package/lynx/install, lines 68-69) but the Makefile has nodefine Package/lynx/conffilesblock. Unregistered, the package manager treats/etc/lynx.cfgand/etc/lynx.lssas ordinary payload, so upgrading 2.9.2 β 2.9.3 silently overwrites whatever the user changed β proxy settings and charset inlynx.cfgbeing the obvious losses.Adding the block near the install section fixes it:
Note the lack of indentation: the block is echoed verbatim into the generated conffiles list by
BuildPackVariable, so a leading tab or space ends up inside the path and the entry stops matching.Does not block the merge.
Generated by Claude Code