Package Details: anki-git r11208.b7cb0c0d0-1

Git Clone URL: https://aur.archlinux.org/anki-git.git (read-only, click to copy)
Package Base: anki-git
Description: Helps you remember facts (like words/phrases in a foreign language) efficiently
Upstream URL: hhttps://apps.ankiweb.net/
Keywords: anki memorise memory study
Licenses: AGPL3
Conflicts: anki, anki-official-binary-bundle, anki20
Provides: anki
Submitter: degeberg
Maintainer: None
Last Packager: 1over137
Votes: 25
Popularity: 0.000031
First Submitted: 2017-02-12 11:51 (UTC)
Last Updated: 2025-04-05 15:09 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 .. 12 Next › Last »

misc commented on 2022-02-16 10:20 (UTC)

Can't seem to build this since the changes of last week, now it instantly fails with

Error in fail: rules_python failed: (/{home}/.cache/bazel/_bazel_{…}/{hex}/external/python/python: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory

There's an outdated libxcrypt-compat in the AUR for that library, but this had never been an issue / required before. So probably not an issue with the PKGBUILD, either.

BTW, Anki moved to QT6 for active development in .50, it's mostly the same packages, just incremented.

DarkShadow44 commented on 2022-02-11 01:06 (UTC)

@greve Thanks for the notify, updated again.

greve commented on 2022-02-10 20:12 (UTC)

error in build():

==> Starting build()...
/home/nico/.cache/yay/anki-git/PKGBUILD: line 101: ./scripts/build: No such file or directory
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: anki-git

DarkShadow44 commented on 2022-02-09 22:46 (UTC)

@homocomputeris Thanks, pushed an update.

homocomputeris commented on 2022-02-06 18:13 (UTC)

Doesn't build anymore:

package()...
WARNING: Requirement 'bazel-bin/pylib/anki/anki-*.whl' looks like a filename, but the file does not exist
ERROR: anki-*.whl is not a valid wheel filename.

DarkShadow44 commented on 2021-12-13 23:56 (UTC)

@magnus-tesshu I don't know when or why it happens, I had it the last time I built it...

magnus-tesshu commented on 2021-12-13 22:38 (UTC) (edited on 2021-12-13 22:38 (UTC) by magnus-tesshu)

By the way DarkShadow, is bazel breaking the build still known to be an issue? It could almost certainly be resolved by setting one of XDG_CACHE_HOME or HOME environment variables in the PKGBUILD to /tmp/something.

If the issue doesn't happen consistently, it's best not to do that I think. It builds fine for me.

homocomputeris commented on 2021-12-12 18:53 (UTC) (edited on 2022-04-13 11:15 (UTC) by homocomputeris)

@magnus-tesshu Try this:

# Maintainer:  Fabian Maurer<dark.shadow4@web.de>
# Contributor: Martin Dünkelmann<nc-duenkekl3@netcologne.de>
# Contributor: Shaoyu Tseng<zandimna@autistici.org>
# Contributor: Daniel Egeberg <daniel.egeberg@gmail.com
# Contributor: Sławomir Kowalski <suawekk+aur@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Timm Preetz <timm@preetz.us>
# Contributor: Michael 'manveru' Fellinger <m.fellinger@gmail.com>
# Contributor: Dave Pretty <david dot pretty at gmail dot com>

pkgname=anki-git
pkgver=r9370.29c48a60e
pkgrel=1
pkgdesc="Helps you remember things (like words or phrases in a foreign language) efficiently"
url="https://apps.ankiweb.net/"
license=('AGPL3')
arch=('any')
provides=('anki')
conflicts=('anki' 'anki20' 'anki-official-binary-bundle')
depends=(
    # anki and aqt
    'python-beautifulsoup4'
    'python-requests'
    'python-wheel'

    # anki
    'python-pysocks' # requests[socks]
    'python-decorator'
    'python-protobuf'
    'python-orjson'
    'python-distro'
    'python-stringcase'

    # aqt
    'python-send2trash'
    'python-markdown'
    'python-jsonschema'
    'python-pyaudio'
    'python-pyqt6-webengine'
    'python-flask'
    'python-flask-cors'
    'python-waitress'
    'python-pyqt6'
)
makedepends=(
    'git'
    'rsync'

    'bazel'
    'clang'

    'maturin'
    'rust'

    'python-pip'
    'python-mypy-protobuf'
    'npm'
    'typescript'
    'jre11-openjdk'
)
optdepends=(
    'lame: record sound'
    'mpv: play sound (preferred)'
    'mplayer: play sound'
)
source=(
    $pkgname::git+https://github.com/dae/anki.git
)
sha512sums=('SKIP')

pkgver() {
    cd "$pkgname"
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
    cd "$pkgname"
    echo "build --action_env=PYO3_PYTHON=/usr/bin/python3" > "$srcdir/$pkgname/user.bazelrc"
}

build() {
    cd "$pkgname"

    export CC=/usr/bin/clang
    export CXX=/usr/bin/clang++
    export JAVA_HOME=/usr/lib/jvm/java-11-openjdk
    ./tools/build
}

package() {
    cd "$pkgname"
    PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" --ignore-installed --no-deps .bazel/out/dist/anki-*.whl .bazel/out/dist/aqt-*.whl

    install -Dm755 qt/runanki.py "$pkgdir"/usr/bin/anki
    install -Dm644 qt/bundle/lin/anki.desktop "$pkgdir"/usr/share/applications/anki.desktop
    install -Dm644 qt/bundle/lin/anki.png "$pkgdir"/usr/share/pixmaps/anki.png
}

magnus-tesshu commented on 2021-12-09 02:31 (UTC)

@homocomputeris how would one go about doing that?

homocomputeris commented on 2021-12-08 23:51 (UTC)

It can be successfully built with Qt6 now.