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 v6.2.0 #10730

Merged
merged 1 commit into from
Mar 7, 2025

Conversation

uniget-bot
Copy link

This PR contains the following updates:

Package Update Change
pacstall/pacstall minor 6.1.1 -> 6.2.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

pacstall/pacstall (pacstall/pacstall)

v6.2.0: Picton

Compare Source

Pacstall v6.2.0 Picton Picton

This update is a quality of life update focusing on important bug fixes and adding requested features. Users can update from Pacstall 4.0.0 or higher with pacstall -U pacstall:master, or reinstall using the deb file. The prebuilt deb is also available from the Chaotic PPR, using sudo apt install pacstall.

Developers, Developers, Developers...

Features
Bug Fixes
Translations

Current translation status:

Weblate translation status

See https://github.com/pacstall/pacstall#translations for how to help.


How to use the new features
PACSTALL_TMPDIR environment variable

Normally, downloads, extractions, and builds are done in /tmp/pacstall. However, certain packages may have very large download or build sizes, and on many devices, this results in a filled up /tmp and incomplete building.

To work around this, users can now define the environment variable PACSTALL_TMPDIR to serve in place of /tmp throughout all processes. It should be defined without a trailing slash. If PACSTALL_TMPDIR is not defined, it falls back to being /tmp.

-Lu/--list-upgrades command

Before this flag, if users wanted to check what packages are marked for upgrades, they would have to run -Up, then cancel out the upgrade prompt. Now users can simply run pacstall -Lu to list upgrades without upgrading.

-M/--mark command

Previously, if a package was installed locally from a pacscript rather than from a repo, it would not be able to be picked up for upgrades. This has now been aligned with APT, and will automatically search in available repos for a locally installed package and upgrade it if it exists. In place of the old behavior, -M allows you to mark packages to be held from upgrade. Its usage is as follows:

pacstall -M foobar-bin hold # keeps foobar-bin from being checked for upgrades
pacstall -M foobar-bin unhold # lets foobar-bin upgrade again

Pacscript for this releases Deb
pkgname="pacstall"
pkgver="6.2.0"
arch=("all")
pkgdesc="An AUR-inspired package manager for Ubuntu
Pacstall is the AUR Ubuntu wishes it had. It takes the concept of the AUR
and puts a spin on it, making it easier to install and update downstream programs,
without scouring github repos and the likes."
url='https://pacstall.dev'
depends=(
  'bash'
  'curl'
  'wget'
  'git'
  'unzip'
  'zstd'
  'tar'
  'gzip'
  'sensible-utils'
  'iputils-ping'
  'lsb-release'
  'aptitude'
  'bubblewrap'
  'build-essential'
  'jq'
  'distro-info-data'
  'gettext'
)
makedepends=(
  'gettext'
  'gzip'
)
recommends=(
  'axel'
  'ninja-build'
  'meson'
  'spdx-licenses'
)
maintainer=(
  "Pacstall Team <pacstall@pm.me>"
  "Elsie19 <hwengerstickel@pm.me>"
)
backup=('usr/share/pacstall/repo/pacstallrepo' 'usr/share/pacstall/update')
source=("https://github.com/pacstall/pacstall/archive/refs/tags/${pkgver}.zip")

prepare() {
  cd "${pkgname}-${pkgver}"
  mkdir -p "${pkgdir}/usr/bin/"
  mkdir -p "${pkgdir}/usr/share/pacstall/scripts/"
  mkdir -p "${pkgdir}/usr/share/pacstall/repo/"
  mkdir -p "${pkgdir}/usr/share/man/man8/"
  mkdir -p "${pkgdir}/usr/share/man/man5/"
  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
  mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d"
  mkdir -p "${pkgdir}/var/log/pacstall/error_log/"
  mkdir -p "${pkgdir}/var/lib/pacstall/metadata/"
  mkdir -p "${pkgdir}/var/cache/pacstall/"
  mkdir -p "${pkgdir}/usr/src/pacstall/"
  mapfile -t linguas <"misc/po/LINGUAS"
  for lang in "${linguas[@&#8203;]}"; do
    mkdir -p "${pkgdir}/usr/share/locale/${lang}/LC_MESSAGES/"
  done
}

package() {
  cd "${pkgname}-${pkgver}"
  install -Dm755 pacstall "${pkgdir}/usr/bin/"
  install -Dm755 "misc/scripts"/* "${pkgdir}/usr/share/pacstall/scripts/"
  gzip -9n misc/man/pacstall.8
  gzip -9n misc/man/pacstall.5
  install "misc/man/pacstall.8.gz" "${pkgdir}/usr/share/man/man8/"
  install "misc/man/pacstall.5.gz" "${pkgdir}/usr/share/man/man5/"
  install "misc/completion/fish" "${pkgdir}/usr/share/fish/vendor_completions.d/pacstall.fish"
  install "misc/completion/bash" "${pkgdir}/usr/share/bash-completion/completions/pacstall"
  echo "https://raw.githubusercontent.com/pacstall/pacstall-programs/master" | tee "${pkgdir}/usr/share/pacstall/repo/pacstallrepo" > /dev/null
  mapfile -t linguas <"misc/po/LINGUAS"
  for lang in "${linguas[@&#8203;]}"; do
    msgfmt -o "${pkgdir}/usr/share/locale/${lang}/LC_MESSAGES/pacstall.mo" "misc/po/${lang}.po"
  done
  rm -f "${pkgdir}/usr/share/scripts/update.sh"
}

PacIceQueen

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

Copy link

@nicholasdille-bot nicholasdille-bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Auto-approved because label type/renovate is present.

Copy link

github-actions bot commented Mar 6, 2025

🔍 Vulnerabilities of ghcr.io/uniget-org/tools/pacstall:6.2.0

📦 Image Reference ghcr.io/uniget-org/tools/pacstall:6.2.0
digestsha256:98191eed2f6c70db21166ab501b31e7674114e2f4d579faef818b48125ee60e9
vulnerabilitiescritical: 0 high: 0 medium: 0 low: 0
platformlinux/amd64
size76 kB
packages0

Copy link

github-actions bot commented Mar 6, 2025

Attempting automerge. See https://github.com/uniget-org/tools/actions/runs/13710067476.

Copy link

github-actions bot commented Mar 6, 2025

PR has unknown mergeable_state (unstable) and can not be merged. See https://github.com/uniget-org/tools/actions/runs/13710067476.

@nicholasdille nicholasdille merged commit bfc066a into main Mar 7, 2025
10 of 11 checks passed
@nicholasdille nicholasdille deleted the renovate/pacstall-pacstall-6.x branch March 7, 2025 07:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants