-
-
Notifications
You must be signed in to change notification settings - Fork 0
Fix coreutils, modularize builds, and enhance caching/site #94
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
Fix coreutils, modularize builds, and enhance caching/site #94
Conversation
…ng/site
- Fix coreutils build failure by disabling `tzalloc` in configure args.
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present.
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
- Fix coreutils build failure by disabling `tzalloc` in configure args.
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present (fixed ShellCheck SC1090).
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
- Fix coreutils build failure by disabling `tzalloc` in configure args.
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present (fixed ShellCheck SC1090).
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Fixed `ModuleNotFoundError` by importing `requests` lazily inside `check_remote_cache`.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
- Fix coreutils build failure by disabling `tzalloc` code paths in configure args (`ac_cv_type_timezone_t=no`, etc.).
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present (fixed ShellCheck SC1090).
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Fixed `ModuleNotFoundError` by importing `requests` lazily inside `check_remote_cache`.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
- **Fix:** Ensure `site_generator.py` executes `generate_html` logic in `main()` by restoring the accidentally deleted block.
- Fix coreutils build failure by forcing `#undef HAVE_TZALLOC` and `#undef HAVE_LOCALTIME_RZ` in `lib/config.h` via post-configure hook.
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present (fixed ShellCheck SC1090).
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Fixed URL construction for relative paths in `Packages` index.
- Fixed `ModuleNotFoundError` by importing `requests` lazily inside `check_remote_cache`.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
- **Fix:** Ensure `site_generator.py` executes `generate_html` logic in `main()` by restoring the accidentally deleted block.
- Fix coreutils build failure by forcing `#undef HAVE_TZALLOC` and `#undef HAVE_LOCALTIME_RZ` in `lib/config.h` via post-configure hook.
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present (fixed ShellCheck SC1090).
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Fixed URL construction for relative paths in `Packages` index.
- Fixed `ModuleNotFoundError` by importing `requests` lazily inside `check_remote_cache`.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
- **Fix:** Ensure `site_generator.py` executes `generate_html` logic in `main()` by restoring the accidentally deleted block.
- Fix coreutils build failure by forcing `#define tzalloc(z) NULL` and other stubs in `lib/config.h` via post-configure hook.
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present (fixed ShellCheck SC1090).
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Fixed URL construction for relative paths in `Packages` index.
- Fixed `ModuleNotFoundError` by importing `requests` lazily inside `check_remote_cache`.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
- **Fix:** Ensure `site_generator.py` executes `generate_html` logic in `main()` by restoring the accidentally deleted block.
- Fix coreutils build failure by forcing `#define tzalloc(z) NULL` and other stubs in `lib/config.h` via post-configure hook.
- Updated `packages/coreutils/build.sh` to use block redirection (`{ ... } >> lib/config.h`) to resolve ShellCheck SC2129 style warning.
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present (fixed ShellCheck SC1090).
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Fixed URL construction for relative paths in `Packages` index.
- Fixed `ModuleNotFoundError` by importing `requests` lazily inside `check_remote_cache`.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
- **Fix:** Ensure `site_generator.py` executes `generate_html` logic in `main()` by restoring the accidentally deleted block.
- Fix coreutils build failure by forcing `#define tzalloc(z) NULL` and other stubs in `lib/config.h` via post-configure hook.
- Updated `packages/coreutils/build.sh` to use block redirection (`{ ... } >> lib/config.h`) to resolve ShellCheck SC2129 style warning.
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present (fixed ShellCheck SC1090).
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Fixed URL construction for relative paths in `Packages` index.
- Fixed `ModuleNotFoundError` by importing `requests` lazily inside `check_remote_cache`.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
- **Fix:** Ensure `site_generator.py` executes `generate_html` logic in `main()` by restoring the accidentally deleted block.
- Fix coreutils build failure by forcing `#define tzalloc(z) NULL` and other stubs in `lib/config.h` via post-configure hook.
- Updated `packages/coreutils/build.sh` to use block redirection (`{ ... } >> lib/config.h`) to resolve ShellCheck SC2129 style warning.
- Fixed `ckd_add` bool invalid operand error in `lib/posixtm.c` by casting argument to int.
- Modularize build engine: `entry_point.sh` now sources `build.${TERMUX_ARCH}.sh` if present (fixed ShellCheck SC1090).
- Implement robust caching/promotion:
- Inject `X-RepoExe-Hash` into package control file.
- `builder.py` now checks `main` and `beta` channels for existing artifacts with matching hash and downloads them to skip rebuilds.
- Fixed URL construction for relative paths in `Packages` index.
- Fixed `ModuleNotFoundError` by importing `requests` lazily inside `check_remote_cache`.
- Improve website and install script:
- Remove Size badge.
- Update Author badge and footer branding ("By SjnExe").
- Optimize CSS Grid for desktop/mobile.
- Add branding to install script.
- **Fix:** Ensure `site_generator.py` executes `generate_html` logic in `main()` by restoring the accidentally deleted block.
This PR addresses multiple requirements:
tzallocto resolvegnulibissues on Android.main/betachannels if the build hash matches, significantly optimizing build times and handling promotion.PR created automatically by Jules for task 16908189571828167619 started by @SjnExe