Skip to content

Commit ab4dfbb

Browse files
authored
Merge branch 'void-linux:master' into pixi
2 parents ba9304e + 5d5a577 commit ab4dfbb

File tree

1,261 files changed

+8521
-74937
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,261 files changed

+8521
-74937
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
container:
24-
image: 'ghcr.io/void-linux/void-musl-full:20250616R1'
24+
image: ghcr.io/void-linux/void-musl-full
2525
env:
2626
LICENSE_LIST: common/travis/license.lst
2727

@@ -61,7 +61,7 @@ jobs:
6161
if: "!contains(github.event.pull_request.title, '[ci skip]') && !contains(github.event.pull_request.body, '[ci skip]')"
6262

6363
container:
64-
image: ghcr.io/void-linux/void-${{ matrix.config.libc }}-full:20250616R1
64+
image: ghcr.io/void-linux/void-${{ matrix.config.libc }}-full
6565
options: --platform ${{ matrix.config.platform }} --privileged
6666
volumes:
6767
- /dev:/dev

.github/workflows/cycles.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
permissions:
1212
issues: write
1313
container:
14-
image: 'ghcr.io/void-linux/void-musl-full:20250616R1'
14+
image: ghcr.io/void-linux/void-musl-full
1515
steps:
1616
- name: Prepare container
1717
run: |

common/hooks/pre-pkg/04-generate-provides.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ generate_pkgconfig_provides() {
2727
}
2828

2929
generate_cmd_provides() {
30-
find "${PKGDESTDIR}/usr/bin" -maxdepth 1 -type f -printf "cmd:%f-${version}_${revision}\n" 2>/dev/null | sort -u
30+
find -P "${PKGDESTDIR}/usr/bin" -maxdepth 1 -xtype f -printf "cmd:%f-${version}_${revision}\n" 2>/dev/null | sort -u
3131
}
3232

3333
generate_alt_cmd_provides() {

common/hooks/pre-pkg/04-generate-runtime-deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ hook() {
6969
local _shlib_dir="${XBPS_STATEDIR}/shlib-provides"
7070
local _shlibtmp
7171

72-
local Qt_6_PRIVATE_API=6.10.0
72+
local Qt_6_PRIVATE_API=6.10.2
7373

7474
# Disable trap on ERR, xbps-uhelper cmd might return error... but not something
7575
# to be worried about because if there are broken shlibs this hook returns

common/scripts/lint-commits

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ do
4949
!subject {
5050
if (length > 50) { print "::warning title=Commit Lint::" C ": subject is a bit long" }
5151
if (!($0 ~ ":" || $0 ~ "^Take over maintainership " || $0 ~ "^Orphan ")) { print "::error title=Commit Lint::" C ": subject does not follow CONTRIBUTING.md guildelines"; exit 1 }
52+
if ($0 ~ "^fixup! ") { print "::error title=Commit Lint::" C ": fixup commit included, please squash commits"; exit 1 }
53+
if ($0 ~ "^Merge ") { print "::error title=Commit Lint::" C ": merge commit included, please rebase and remove merge commits"; exit 1 }
5254
# Below check is too noisy?
5355
# if (!($0 ~ "^New package:" || $0 ~ ".*: update to")) {
5456
# print "::warning title=Commit Lint::" C ": not new package/update/removal?"

0 commit comments

Comments
 (0)