diff options
author | Paul Spooren <mail@aparcar.org> | 2024-03-17 18:43:10 +0100 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2024-03-22 22:14:22 +0100 |
commit | e8725a932e16eaf6ec51add8c084d959cbe32ff2 (patch) | |
tree | 1e6e0a3731bf9c4860b6d13fa08bea226f999a6f /package/system/ubox/Makefile | |
parent | 36acf88fe0d974a7de5c3be5d3303048c54ce6fb (diff) |
treewide: use APK compatible version schema
Different from OPKG, APK uses a deterministic version schema which chips
the version into chunks and compares them individually. This enforces a
certain schema which was previously entirely flexible.
- Releases are added at the very and end prefixed with an `r` like
`1.2.3-r3`.
- Hashes are prefixed with a `~` like `1.2.3~abc123`.
- Dates become semantic versions, like `2024.04.01`
- Extra tags are possible like `_git`, `_alpha` and more.
For full details see the APK test list:
https://gitlab.alpinelinux.org/alpine/apk-tools/-/blob/master/test/version.data
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'package/system/ubox/Makefile')
-rw-r--r-- | package/system/ubox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/ubox/Makefile b/package/system/ubox/Makefile index adfb68e55b..3d1754c5f0 100644 --- a/package/system/ubox/Makefile +++ b/package/system/ubox/Makefile @@ -7,7 +7,7 @@ PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(PROJECT_GIT)/project/ubox.git PKG_SOURCE_DATE:=2024-01-24 PKG_SOURCE_VERSION:=2c5887cb46883a28d69071c4349c3dabbbe3972c -PKG_MIRROR_HASH:=0ded95382fd3a2e9751ea5fdd16c2afb7dcc52499f6ab47951c5db9525a4faa9 +PKG_MIRROR_HASH:=3194d80bc10147a32d7e4491c54d1a4e718a53080fa0307fe68b6d11cf79e13e CMAKE_INSTALL:=1 PKG_LICENSE:=GPL-2.0 |