-
Notifications
You must be signed in to change notification settings - Fork 5
Update all dependencies - abandoned #32
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
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
automated build + check-package + legal-info. Signed-off-by: Christian Stewart <christian@aperture.us>
Signed-off-by: Christian Stewart <christian@aperture.us>
Signed-off-by: Christian Stewart <christian@aperture.us>
Daemonize is a command line utility to run a program as a Unix daemon. Signed-off-by: Christian Stewart <christian@aperture.us> --- TODO: Changes requested for v2: https://patchwork.ozlabs.org/project/buildroot/patch/20210124102241.1207866-1-christian@paral.in/
Adds both host and target packages for buildah. Buildah is a tool that facilitates building OCI images. https://github.com/containers/buildah The buildah tree does not ship with a default policy.json file, and instead relies on packagers to provide one. A patch is added to create a basic barebones policy.json which is installed to /etc/containers/policy.json with a hook. Signed-off-by: Christian Stewart <christian@aperture.us> --- v1 -> v2: - add package to developers - add host runc dependency for host package - add libgpgme runtime dependency v2 -> v3: - add policy.json to target: required by some commands - example: buildah pull docker.io/library/alpine - pull: tested on raspberry pi 4 v3 -> v4: - TODO: move policy.json to package dir - https://lists.buildroot.org/pipermail/buildroot/2022-January/634936.html - bump to version v1.32.1 - https://github.com/containers/buildah/releases/tag/v1.32.1 v4 -> v5: - bump to version 1.35.x Signed-off-by: Christian Stewart <christian@aperture.us>
Add a symlink to the expected location for vpdma-1ba in the root of the firmware directory. Signed-off-by: Christian Stewart <christian@aperture.us>
Signed-off-by: Christian Stewart <christian@paral.in>
Lack of an RNG source can block boot-up on headless systems with few hardware entropy sources. This patch allows rngd to start earlier than the current "basic.target" when systemd is used. Removing the dependency on "basic.target" and by extension, "sockets.target" will allow rngd to start before, for example, docker.sock - which can take some time to become ready without entropy. This is a cherry-pick of a peer project patch: https://patchwork.openembedded.org/patch/163303/ Signed-off-by: Christian Stewart <christian@aperture.us>
Signed-off-by: Christian Stewart <christian@aperture.us>
Signed-off-by: Christian Stewart <christian@aperture.us>
Img is a standalone, daemon-less, unprivileged Dockerfile and OCI compatible container image builder. It uses the moby-buildkit solver internally. The commands/UX mirror the Docker CLI for workflow compatibility. Using the genuinetools- prefix due to the generic nature of the "img" name. Adds both host and target variants. fuse-overlayfs can be used as an unprivileged and rootless overlay filesystem backend. https://github.com/genuinetools/img Signed-off-by: Christian Stewart <christian@aperture.us> --- TODO: https://patchwork.ozlabs.org/project/buildroot/patch/20210516010521.1375959-1-christian@aperture.us/ - changes to patch to add libfuse3 as host package requested.
rEFInd is a user-friendly EFI GUI for boot selection. It can be used as an alternative to Grub with a user-friendly graphical and/or text interface for selecting a boot option. The default refind.conf interactively displays a list of boot options on startup, including detected Buildroot Linux kernel/initrd files. https://www.rodsbooks.com/refind/ Signed-off-by: Christian Stewart <christian@aperture.us>
Signed-off-by: Christian Stewart <christian@paral.in>
Some Linux kernels do not correctly generate the include/generated path when running "make all" without first running "make prepare" Since running "make prepare" is always valid on any Linux kernel, take the extra step to explicitly run "make prepare" before "make all." Signed-off-by: Christian Stewart <christian@aperture.us>
crio implements the Kubelet Container Runtime Interface (CRI) using OCI conformant runtimes like runc or podman. https://github.com/cri-o/cri-o/ Signed-off-by: Christian Stewart <christian@aperture.us>
RTKLIB is an open source program package for standard and precise positioning with GNSS. Version used here is from rtkexplorer, which is better optimized and more frequently updated than original version by Tomoji Takasu. Signed-off-by: Jan Havran <havran.jan@email.cz> --- v1: WIP: For SkiffOS: - https://patchwork.ozlabs.org/project/buildroot/patch/YhJLS73VW3szIXR+@arch-zen.localdomain/ - Changes applied from Thomas's review. - There are still Changes Requested before submitting upstream. - Updated to latest revision of the pkg. - Skip building the fortran files, need to investigate when this is necessary. Tested-by: Christian Stewart <christian@aperture.us>
Some kernels have device tree overlay files: make arch/arm64/boot/dts/amlogic/overlays/odroidn2/i2c0.dtbo Add an option to add these dtbo files to the LINUX_DTBS list. BR2_LINUX_KERNEL_INTREE_DTS_OVERLAY_NAME="amlogic/overlays/odroidn2/i2c0" Signed-off-by: Christian Stewart <christian@aperture.us>
Signed-off-by: Christian Stewart <christian@aperture.us>
Android bootimg utilities: mkbootimg and unpackbootimg. Signed-off-by: Christian Stewart <christian@paral.in> --- v1: CHANGES REQUESTED (Pending) https://patchwork.ozlabs.org/project/buildroot/patch/20220724235818.679881-1-christian@paral.in/
Signed-off-by: Christian Stewart <christian@aperture.us>
Add option to avoid build failures on older kernels. Signed-off-by: Christian Stewart <christian@aperture.us>
Fixes a build failure against some older toolchains. Signed-off-by: Christian Stewart <christian@aperture.us>
This series is currently marked "stable" on the gentoo repo. Signed-off-by: Christian Stewart <christian@aperture.us>
Some packages have CMakeLists.txt requiring CMake <3.5. Newer CMake forces at minimum version 3.5, leading to build failures: https://github.com/skiffos/SkiffOS/actions/runs/14208988354/job/39812576139#step:8:638 https://github.com/skiffos/SkiffOS/actions/runs/14211566256/job/39819600184#step:8:26664 Add the suggested build flag to force version 3.5.x and fix the error: -DCMAKE_POLICY_VERSION_MINIMUM=3.5 This is applied to all cmake packages to force 3.5 as a minimum. Signed-off-by: Christian Stewart <christian@aperture.us>
BR2_GOPROXY now configures the Go module proxy URL used to download Go modules specified in project go.mod and go.sum files. By default, it uses Google's official Go module mirror at proxy.golang.org, falling back to direct downloads if the module is not found in the mirror. This change sets the default GOPROXY value to match Go's built-in default of "https://proxy.golang.org,direct" which provides several benefits: - Avoid package breakages due to missing module sources - Better alignment with upstream Go toolchain defaults - Faster downloads via the proxy compared to direct Git clones - Maintains reproducible builds through Go's module checksum validation The default value from the toolchain can be read with "go env GOPROXY" We rely on package developers to audit their dependencies in go.mod and go.sum. The value can be configured to: - A comma-separated list of proxy URLs - "off" to disable all downloads - "direct" to download directly from source repositories For more details on Go module proxies: https://go.dev/ref/mod#module-proxy Discussion: https://lore.kernel.org/all/CADvTj4pXO2rwJ8oCzzGNY+OxLuo3uJnDT2PAxbyquw0L6dhfiA@mail.gmail.com/T/#t Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Christian Stewart <christian@aperture.us> --- v1 -> v2: - added more context and links - renamed to GOPROXY instead of GOPROXY_LIST - moved into the !BR2_PRIMARY_SITE_ONLY section
Signed-off-by: Christian Stewart <christian@aperture.us>
Force Docker Engine to use the C DNS resolver. Fixes some issues related to the Go DNS resolver. Signed-off-by: Christian Stewart <christian@aperture.us>
unzip currently fails to build with GCC 15.x. We're already fetching
from Debian, using patchlevel -27, and it turns out that Debian
patchlevel -29 has the GCC 15.x fix, and very few other fixes:
unzip (6.0-29) unstable; urgency=medium
* Ignore invalid "Total number of disks" field on Microsoft ZIP64 files.
Closes: #661956, #1064000.
* Drop conflicting declarations of gmtime() and localtime().
Should fix build with gcc-15. Closes: #1098043.
* Fix zipgrep handling of escapes. Closes: #1054628.
* Stop using update-mime. Closes: #1072396.
* Add debian/source/lintian-overrides for *.a files.
* Do not trim Debian changelog.
* Add debian/salsa-ci.yml.
* Add Vcs-Git and Vcs-Browser fields.
* Update Standards-Version.
unzip (6.0-28) unstable; urgency=medium
* Drop debian/source/lintian-overrides, obsolete since version 6.0-18.
* Update URI for Info-ZIP license in copyright file.
* Update standards version to 4.6.2.
* Run wrap-and-sort.
* Update Homepage.
So let's just bump to this patchlevel version.
Note that the .dsc file link in the .hash file was wrong, it was still
referring to patchlevel -26.
Fixes:
https://autobuild.buildroot.net/results/d81cb9d7c9e87dd233dde350d15cb03427ba2036/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
5b7192f to
909e94c
Compare
0a58f12 to
e23e5dd
Compare
7a1bb1e to
a2b6e18
Compare
See: https://github.com/raspberrypi/firmware Signed-off-by: Christian Stewart <christian@aperture.us>
938aab2 to
480b25f
Compare
Rewrap help text to comply with buildroot requirement of max 62 characters per line in help text. Signed-off-by: Christian Stewart <christian@aperture.us>
Add required Upstream field to patch header to comply with buildroot patch documentation requirements.
rpi-firmware currently refers to the following version: https://github.com/raspberrypi/firmware/tree/5476720 The "opt" directory no longer exists as rpi-firmware removed 32-bit binaries. Drop BR2_PACKAGE_RPI_FIRMWARE_INSTALL_VCDBG as vcdbg no longer exists. Drop the RPI_USERLAND conditional to install non-existent files in opt/. Fixes the build on 32-bit raspberry pi systems. Signed-off-by: Christian Stewart <christian@aperture.us>
95cb782 to
ad77cb1
Compare
480b25f to
317ac9a
Compare
Author
Autoclosing SkippedThis PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.7.1->2.0.113.7.0->3.7.33.1.1->3.7.11.3.0->1.4.23.3.7->5.3.8Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
zenorocha/clipboard.js (clipboard.js)
v2.0.11: Fixes & DX EnhancementsCompare Source
v2.0.10: Fixes and Docs UpdatesCompare Source
Event.ActionpropertyEvent.Actionpropertyv2.0.9Compare Source
.cutand.copyv2.0.8Compare Source
v2.0.7Compare Source
Fix Textarea not being removed from DOM
Related issue #732
v2.0.6Compare Source
isSupportedbehaviorv2.0.5Compare Source
v2.0.4Compare Source
v2.0.3Compare Source
v2.0.2Compare Source
v2.0.1Compare Source
v2.0.0Compare Source
new Clipboard()tonew ClipboardJS()#468There are no new features on this release. This breaking change was only introduced due to a name conflict with the new
window.Clipboardnative API.aFarkas/html5shiv (html5shiv)
v3.7.3Compare Source
v3.7.2Compare Source
v3.7.1Compare Source
jquery/jquery (jquery)
v3.7.1: jQuery 3.7.1 Released: Reliable Table Row DimensionsCompare Source
https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/
v3.7.0: jQuery 3.7.0: Staying in OrderCompare Source
https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/
v3.6.4: jQuery 3.6.4 Released: Selector ForgivenessCompare Source
https://blog.jquery.com/2023/03/08/jquery-3-6-4-released-selector-forgiveness/
v3.6.3: jQuery supports CSS.supports in jQuery 3.6.3Compare Source
https://blog.jquery.com/2022/12/20/jquery-3-6-3-released-a-quick-selector-fix/
v3.6.2: jQuery 3.6.2 :has arrived!Compare Source
https://blog.jquery.com/2022/12/13/jquery-3-6-2-released/
v3.6.1: jQuery 3.6.1 Maintenance ReleaseCompare Source
https://blog.jquery.com/2022/08/26/jquery-3-6-1-maintenance-release/
v3.6.0: jQuery 3.6.0 Released!Compare Source
https://blog.jquery.com/2021/03/02/jquery-3-6-0-released/
v3.5.1Compare Source
v3.5.0: jQuery 3.5.0 Released!Compare Source
See the blog post:
https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/
and the upgrade guide:
https://jquery.com/upgrade-guide/3.5/
NOTE: Despite being a minor release, this update includes a breaking change that we had to make to fix a security issue (
CVE-2020-11022). Please follow the blog post & the upgrade guide for more details.v3.4.1Compare Source
v3.4.0Compare Source
v3.3.1Compare Source
v3.3.0Compare Source
v3.2.1Compare Source
v3.2.0Compare Source
scottjehl/Respond (respond.js)
v1.4.2Compare Source
v1.4.1Compare Source
Fixing a potential parsing issue in IE8
v1.4.0Compare Source
Added in Grunt and fixed a few bugs/closed some PRs along the way.
twbs/bootstrap (twitter-bootstrap)
v5.3.8Compare Source
What's Changed
.bd-exampleclass by @julien-deramond in #41556color-contrast()function for WCAG 2.1 compliance by @julien-deramond in #41585<Example>is used, not just<Code>by @louismaximepiton in #41582Dependencies
New Contributors
Full Changelog: twbs/bootstrap@v5.3.7...v5.3.8
v5.3.7Compare Source
📚 Documentation
<head>content generated by the "Download examples" buttonintegrityandcrossoriginattributes in introduction pageplaceholderusage description🎨 Sass
'none'values in thebox-shadowSass mixin for cleaner output🤖 JavaScript
trigger: "hover click"configuration🤝 Contributions
v5.3.6Compare Source
Highlights
.visually-hiddenoverflowing children to become focusable.card-groupselectors to immediate children to fix some inheritance issuesChanges
npm installandnpm run distin CONTRIBUTING.md by @mdo in #41340.card-groupto immediate children to fixborder-radiusbug by @mscdex in #41298devDependenciesby @julien-deramond in #41383image-sizefrom 1.0.2 to 2.0.2 by @julien-deramond in #41384.mdand.mdxfiles. by @Jason3S in #41398filesconfiguration from.cspell.jsonby @julien-deramond in #41400// Privatecomment and method by @MohamadSalman11 in #41218New Contributors
Full Changelog: twbs/bootstrap@v5.3.5...v5.3.6
v5.3.5Compare Source
Hot fix for a regression from upstream in Autoprefixer.
What's Changed
Full Changelog: twbs/bootstrap@v5.3.4...v5.3.5
v5.3.4Compare Source
Changes
🚀 Features
util.jsin migration guide<article>element for example cards.gridwhere it shouldn't be used.order-*classes in 'Layout > Columns'.justify-content-startclass in homepage.bi-exclamation-triangle-fillclassborder-radiusrule🎨 CSS
max-widthandbackground-colorbtn-group-verticalby using same rules asbtn-groupborder-radiusrule☕️ JavaScript
📖 Docs
util.jsin migration guide<article>element for example cards.ordervalues in the migration guide.gridwhere it shouldn't be used.order-*classes in 'Layout > Columns'.justify-content-startclass in homepage$enable-css-grid→$enable-cssgridin 'Customize > Options'$enable-css-gridin options.mdaria-hidden="true"to decorative SVGsaria-hidden='true'to decorative SVGs.bi-exclamation-triangle-fillclassdata-bs-theme="light"in navbars color schemes markupimageConfigurls.JoinPathin more placesrel="noopener" target="_blank"data-bs-scroll="true"from navbarhugo.IsProduction🛠 Examples
🌎 Accessibility
<article>element for example cardsaria-hidden="true"to decorative SVGsaria-hidden='true'to decorative SVGs📦 Dependencies
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.