-
Notifications
You must be signed in to change notification settings - Fork 3.9k
shadow,tcpreplay,stress-ng: bump versions #30251
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
base: master
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -8,12 +8,12 @@ | |
| include $(TOPDIR)/rules.mk | ||
|
|
||
| PKG_NAME:=shadow | ||
| PKG_VERSION:=4.19.4 | ||
| PKG_RELEASE:=2 | ||
| PKG_VERSION:=4.20.2 | ||
| PKG_RELEASE:=1 | ||
|
|
||
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz | ||
| PKG_SOURCE_URL:=https://github.com/shadow-maint/shadow/releases/download/$(PKG_VERSION) | ||
| PKG_HASH:=ce57a313e315a0a7cb04a8f50cc20753e994e487bbe9b78a2a824ca75cb486c0 | ||
| PKG_HASH:=b89f432b75ae55a2d852b446d0365484795fdf533ab97d550e325fa15594a224 | ||
|
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. With the 4.20.2 tarball the bcrypt sed becomes a silent no-op, so the shipped In 4.19.4 (The Generated by Claude Code |
||
|
|
||
| PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com> | ||
| PKG_LICENSE:=BSD-3-Clause | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,12 +6,12 @@ | |
| include $(TOPDIR)/rules.mk | ||
|
|
||
| PKG_NAME:=stress-ng | ||
| PKG_VERSION:=0.21.03 | ||
| PKG_RELEASE:=2 | ||
| PKG_VERSION:=0.21.04 | ||
|
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. 0.21.04 adds two new library probes this package doesn't pin, which makes the resulting binary depend on what else happens to be in
Neither Either add them to the never-probe block ( (FWIW the patch drop in this commit checks out: Generated by Claude Code |
||
| PKG_RELEASE:=1 | ||
|
|
||
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | ||
| PKG_SOURCE_URL:=https://codeload.github.com/ColinIanKing/stress-ng/tar.gz/refs/tags/V$(PKG_VERSION)? | ||
| PKG_HASH:=6db7089ad9cc2c13d0aa1cf8755112adac92858f4582a46c765bb6b7e1c3e1af | ||
| PKG_HASH:=a328ba050bd3014f07a3265fb6c1aab071ae942dfad75c7459cce45a987869e1 | ||
|
|
||
| PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com> | ||
| PKG_LICENSE:=GPL-2.0-only | ||
|
|
||
This file was deleted.
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.
shadow 4.20 dropped three of the applets this package still builds, so this bump breaks the build.
src/expiry.c,src/groupmems.candsrc/logoutd.care gone from the 4.20.2 release tarball (tar tJf shadow-4.20.2.tar.xz | grep -E 'src/(expiry|groupmems|logoutd)\.c'returns nothing; they are all present in 4.19.4), andsrc/Makefile.amno longer lists them:They are still in
SHADOW_APPLETS, soGenPlugin/BuildPluginstill emitshadow-expiry,shadow-groupmemsandshadow-logoutd, and their install recipe falls through to$(CP) $(PKG_INSTALL_DIR)/usr/bin/$(1)with no such file.shadow-alldefaults toy, so this is hit in a default build. Please dropexpiry,groupmemsandlogoutdfromSHADOW_APPLETSin this commit (and mention the removed packages in the commit message).Generated by Claude Code