diff options
author | Robert Marko <robimarko@gmail.com> | 2024-04-02 15:14:03 +0200 |
---|---|---|
committer | Tianling Shen <cnsztl@gmail.com> | 2024-04-03 13:34:33 +0800 |
commit | 639cc3d2e45bdbf427dfa892ea2d6a2894b325d0 (patch) | |
tree | 2683ca6b6eaa3c145b3ac0f47b3897db53ab6403 /net/mdio-tools | |
parent | 69a5a8000b03e756f636b1b2fce4ef1e9f04f5eb (diff) |
mdio-tools: use commit hash as the source version
In light of the recent XZ events, it seems that using the tag as the
source version reference is not ideal as it can be updated by the upstream
lets switch to using the full commit hash as the source.
This also should fix the APK semantic versioning by setting PKG_VERSION as
well updating the PKG_MIRROR_HASH which got broken by recent APK changes.
Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'net/mdio-tools')
-rw-r--r-- | net/mdio-tools/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/mdio-tools/Makefile b/net/mdio-tools/Makefile index e52c7fa5b..323cb1bd3 100644 --- a/net/mdio-tools/Makefile +++ b/net/mdio-tools/Makefile @@ -1,11 +1,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mdio-tools -PKG_RELEASE:=1 +PKG_VERSION:=1.3.1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=https://github.com/wkz/mdio-tools PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=1.3.1 +PKG_SOURCE_VERSION:=f74eaf38dbda441df4fcaeb21ca4465957953a2f PKG_MIRROR_HASH:=b7973284dc3dffef4bd2a904e3f7aa7fd3caab4aecf85ac57488f5acbf341aba PKG_FIXUP:=autoreconf |