Packages not in AUR: vorta

When I did an update today with yay, I got the following message:

-> Packages not in AUR: vorta

Apparently it is now only available as Flatpak. Does anyone know anything about this?

No such package exists in the AUR.
But one does in the repos - for the Unstable Branch.
Are your mirrors synced?

https://packages.manjaro.org/?query=vorta

Upon second thought - this could be a package that was adopted from the AUR into the repos.
Manjaro Stable being somewhat behind - it could present like this if you are on that branch.
The package would not exist in the AUR any longer - but does not yet exist in the repositories for Stable. In this case you may simply wish to ignore the message and wait for the package to filter into Stable Branch.

2 Likes

nice, definitely worthy of being in the repo

PKGBUILD if you need it:


# Maintainer: Bjoern Franke <bjo+aur@schafweide.org>
pkgname=vorta
pkgver=0.9.1
pkgrel=3
pkgdesc="A GUI for BorgBackup"
arch=('any')
url="https://github.com/borgbase/vorta"
license=('GPL')
depends=('borg' 'python-appdirs' 'python-pyqt6' 'python-peewee' 'python-dateutil' 'python-secretstorage' 'python-psutil' 'python-llfuse' 'python-setuptools' 'qt6-svg')
makedepends=('qt6-tools'
  'python-build'
  'python-installer'
  'python-setuptools'
  'python-wheel')
options=(!emptydirs)
source=("$pkgname-$pkgver.tar.gz::https://github.com/borgbase/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('0f627c2464bf1631711151464fe1ea59781f0c91a76cf5a081a5797a897f2929')
          
build() {
  cd "$pkgname-$pkgver"
  #make translations-to-qm
  python -m build --no-isolation --wheel --skip-dependency-check
}

package() {
  cd "$pkgname-$pkgver"
  python -m installer --destdir="${pkgdir:?}" dist/*.whl

  install -Dm644 package/icon-symbolic.svg \
    "$pkgdir/usr/share/icons/hicolor/symbolic/apps/com.borgbase.Vorta-symbolic.svg"
  install -Dm644 src/vorta/assets/icons/icon.svg \
    "$pkgdir/usr/share/icons/hicolor/scalable/apps/com.borgbase.Vorta.svg"
  install -Dm644 "src/$pkgname/assets/metadata/com.borgbase.Vorta.appdata.xml" -t \
    "$pkgdir/usr/share/metainfo"
  install -Dm644 "src/$pkgname/assets/metadata/com.borgbase.Vorta.desktop" -t \
    "$pkgdir/usr/share/applications"
}

# vim:set ts=2 sw=2 et:

Or you can download and manually install the Arch package.

1 Like

I will probably add it to MaceR then :slight_smile:

2 Likes

This is indeed what happened.

An excerpt from an email I received regarding the AUR package:

Muflone [1] added the following comment to vorta [2]:

The package was just moved in the repository
[extra](https://archlinux.org/packages/extra/any/vorta/)
2 Likes

Thanks for your answers, @NGr , @NGr and @spacecase-25 , I’ll wait now a while until it officially lands in the stable repos.

This topic was automatically closed 36 hours after the last reply. New replies are no longer allowed.