leptris 1.9.193.0 → 1.9.193.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/Rakefile +7 -4
- data/lib/leptris/vendor/x86_64-linux-musl/libleptris.so +0 -0
- data/lib/leptris/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8979aca09e2418ae2f22b32e21af1b9299f3fbe2b396bc73e47fccd999f4a39d
|
|
4
|
+
data.tar.gz: 1d42ce1ddbf65fcb1cc57985899f4bc8366e763b12a1cd32fd54f5ab660769de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f258ab8d0f990359137b6819432f6cd75c87b72b9ac4c52debd127d399735f8ccdd46f5a55934c38d73e85f6a0475e5331bc716139eb5ccd7b461138cea97f83
|
|
7
|
+
data.tar.gz: c40707201086cfbdbd2e36d87d0659f9a1503b429a09fde5d5f7fe7a05ace634ebd267eef2b04c95e739f7b92deee4dd9d9f5ba68800002a3901880371afb012
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to Leptris will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.9.193.0] - 2026-09-17
|
|
9
|
+
|
|
10
|
+
### Changed — libleptris 1.9.192 -> 1.9.193 (lockstep)
|
|
11
|
+
|
|
12
|
+
- Engine build hygiene: explicit includes — stdint.h in arena.c,
|
|
13
|
+
unistd.h in cli/output.c (leptris/leptris#1166). Under any
|
|
14
|
+
feature-macro shift (_GNU_SOURCE on the PGO trainer) the old
|
|
15
|
+
transitive-include graph broke the build; both musl platform-gem
|
|
16
|
+
legs now compile clean. The binding additionally forces
|
|
17
|
+
-include stdint.h on the throwaway trainer build (belt and
|
|
18
|
+
suspenders).
|
|
19
|
+
- No public-symbol changes: audit 323/323. The 1.9.193.0 gem is
|
|
20
|
+
the first published release since 1.9.188.0 (the 1.9.188.x PGO
|
|
21
|
+
attempts never passed the musl legs) and carries the full
|
|
22
|
+
1.9.189-192 RNG wave plus the two-stage PGO library build.
|
|
23
|
+
|
|
8
24
|
## [1.9.192.0] - 2026-09-17
|
|
9
25
|
|
|
10
26
|
### Changed — libleptris 1.9.188 → 1.9.192 (lockstep)
|
data/Rakefile
CHANGED
|
@@ -117,10 +117,13 @@ task :compile do
|
|
|
117
117
|
# _GNU_SOURCE is MUSL-ONLY: the CLI trainer's fileno needs a POSIX
|
|
118
118
|
# feature macro under musl. On glibc the macro reshuffles the
|
|
119
119
|
# header graph and breaks arena.c's accidental (missing-stdint.h)
|
|
120
|
-
# uintptr_t.
|
|
121
|
-
#
|
|
122
|
-
#
|
|
123
|
-
|
|
120
|
+
# uintptr_t. -include stdint.h: under _GNU_SOURCE musl's header
|
|
121
|
+
# graph ALSO stops feeding stdint.h to arena.c (leptris/leptris
|
|
122
|
+
# #1166) — force the include on the throwaway trainer build;
|
|
123
|
+
# the shipped library keeps the plain flags. Single-quote: the
|
|
124
|
+
# value carries a space (an unquoted split hands cmake a bare
|
|
125
|
+
# -D_GNU_SOURCE); non-Windows branch, so sh quoting is safe.
|
|
126
|
+
gnu = RUBY_PLATFORM =~ /musl/ ? " -D_GNU_SOURCE -include stdint.h" : ""
|
|
124
127
|
pgo_cflags = "#{cflags}#{gnu}".strip
|
|
125
128
|
pgo_base =
|
|
126
129
|
if pgo_cflags == cflags
|
|
Binary file
|
data/lib/leptris/version.rb
CHANGED