Skip to content
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

chore(deps): update dependency pacstall/pacstall to v5.0.1 #4599

Merged
merged 2 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion tools/pacstall/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ SHELL [ "bash", "-clo", "errexit" ]
ARG name
ARG version
RUN <<EOF
set -e -x

curl --silent --show-error --location --fail --output "${prefix}/bin/pacstall" \
"https://github.com/pacstall/pacstall/raw/${version}/pacstall"
chmod +x "${prefix}/bin/pacstall"

curl --silent --show-error --location --fail --output "${prefix}/share/man/man8/pacstall.8.gz" \
"https://github.com/pacstall/pacstall/raw/${version}/misc/pacstall.8.gz"

for script in add-repo checks dep-tree download error_log install-local query-info remove search update upgrade; do
for script in error-log add-repo search dep-tree version-constraints checks get-pacscript package fetch-sources build upgrade remove update query-info quality-assurance bwrap; do
curl --silent --show-error --location --fail --output "${prefix}/share/pacstall/scripts/${script}.sh" --create-dirs \
"https://github.com/pacstall/pacstall/raw/${version}/misc/scripts/${script}.sh"
chmod +x "${prefix}/share/pacstall/scripts/${script}.sh"
Expand Down
2 changes: 1 addition & 1 deletion tools/pacstall/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# yaml-language-server: $schema=https://tools.uniget.dev/schema.yaml
$schema: https://tools.uniget.dev/schema.yaml
name: pacstall
version: "5.0.0"
version: "5.0.1"
check: ""
platforms:
- linux/amd64
Expand Down