Release 0.10.7-bearhub.6

Complete M1 identity work, fix runtime URL regressions, repair the test
suite, add CI, migrate packaging/AppImage branding to Bearhub, and
document the Qt6/PySide6 migration plan.
This commit is contained in:
Sebastian Palencsar
2026-06-26 19:22:28 +02:00
parent 63698709a6
commit 4a119968bc
35 changed files with 1984 additions and 224 deletions

View File

@@ -10,3 +10,26 @@ Before publishing:
1. Generate `.SRCINFO` with `makepkg --printsrcinfo > .SRCINFO` inside each package directory.
2. Build-test locally with `makepkg -si`.
3. Push each package to its own AUR Git repository (`aur@aur.archlinux.org:bearhub.git` and `aur@aur.archlinux.org:bearhub-git.git`).
## Stable release checklist (`bearhub`)
1. Update `CHANGELOG.md` and packaging paths for the new tag (e.g. `0.10.7-bearhub.6`).
2. Commit all release changes on `main`.
3. Create and push the git tag:
```bash
git tag -a 0.10.7-bearhub.6 -m "Release 0.10.7-bearhub.6"
git push origin main
git push origin 0.10.7-bearhub.6
```
4. Refresh tarball checksum in `bearhub/PKGBUILD`:
```bash
cd packaging/aur/bearhub
makepkg -g >> PKGBUILD # or updpkgsums after source URL is reachable
makepkg --printsrcinfo > .SRCINFO
```
5. Sync to local AUR clones:
```bash
scripts/sync-aur-packaging.sh
```
6. Build-test both AUR packages, then publish AUR commits.
7. Optional: create GitHub release from tag `0.10.7-bearhub.6`.

View File

@@ -1,6 +1,6 @@
pkgname=bearhub-git
pkgver=0.10.7.r0.g0000000
pkgrel=4
pkgrel=5
pkgdesc="Arch-first package manager hub (development snapshot, fork of bauh)"
arch=('any')
url="https://github.com/spalencsar/bearhub"

View File

@@ -1,6 +1,6 @@
pkgname=bearhub
pkgver=0.10.7
pkgrel=8
pkgrel=1
pkgdesc="Arch-first package manager hub (community-maintained fork of bauh)"
arch=('any')
url="https://github.com/spalencsar/bearhub"
@@ -22,16 +22,16 @@ optdepends=(
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
provides=('bearhub' 'bauh')
conflicts=('bearhub-git' 'bauh' 'bauh-git')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/${pkgver}-bearhub.5.tar.gz")
sha256sums=('42001198cccd5ade206f93fc0570c9d3dbb7e49a1f85b790fa577c3af41aee70')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/${pkgver}-bearhub.6.tar.gz")
sha256sums=('SKIP')
build() {
cd "$srcdir/$pkgname-${pkgver}-bearhub.5"
cd "$srcdir/$pkgname-${pkgver}-bearhub.6"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/$pkgname-${pkgver}-bearhub.5"
cd "$srcdir/$pkgname-${pkgver}-bearhub.6"
sed -i 's|^Exec=/usr/bin/bearhub$|Exec=env QT_QPA_PLATFORM=xcb /usr/bin/bearhub|' "bearhub/desktop/bearhub.desktop"
sed -i 's|^Exec=/usr/bin/bearhub-tray$|Exec=env QT_QPA_PLATFORM=xcb /usr/bin/bearhub-tray|' "bearhub/desktop/bearhub_tray.desktop"