Package Details: howdy-beta-git 2.6.1.r239.gc5b1766-2

Git Clone URL: https://aur.archlinux.org/howdy-beta-git.git (read-only, click to copy)
Package Base: howdy-beta-git
Description: Windows Hello for Linux (Beta)
Upstream URL: https://github.com/boltgolt/howdy
Licenses: MIT
Conflicts: howdy
Provides: howdy
Submitter: echizenryoma
Maintainer: kastik
Last Packager: kastik
Votes: 5
Popularity: 0.065206
First Submitted: 2022-04-09 14:46 (UTC)
Last Updated: 2024-04-17 09:13 (UTC)

Latest Comments

1 2 Next › Last »

RyLoS commented on 2025-01-16 10:31 (UTC)

I confirm the latest version causes this debug message: Exception ignored in: <_io.BufferedWriter name=4> BrokenPipeError: [Errno 32] Broken pipe

gguman commented on 2024-12-25 08:43 (UTC) (edited on 2024-12-25 08:44 (UTC) by gguman)

The latest system update gave me an annoying debug message when recognizing successfully: Exception ignored in: <_io.BufferedWriter name=4> BrokenPipeError: [Errno 32] Broken pipe

Has someone a solution to solve this problem?

zyldragoon commented on 2024-09-22 14:26 (UTC)

nvm, recompile the python-dlib solve the problem

zyldragoon commented on 2024-09-22 13:07 (UTC) (edited on 2024-09-22 13:08 (UTC) by zyldragoon)

libjxl 0.11 breack howdy

manually link file and recompile works

sudo ln -s /usr/lib/libjxl_threads.so /usr/lib/libjxl_threads.so.0.10

sudo ln -s /usr/lib/libjxl.so /usr/lib/libjxl.so.0.10

colorsopy commented on 2024-06-27 06:21 (UTC) (edited on 2024-06-27 06:23 (UTC) by colorsopy)

Upgrading python-numpy to 2.0.0-1 may cause howdy's IR to be unavailable, you can ignore this update for now. Those who have already upgraded can fall back to the previous version 1.26.4-2.

xXPerditorXx commented on 2024-01-18 20:17 (UTC) (edited on 2024-01-18 20:17 (UTC) by xXPerditorXx)

Sadly, when pressing enter, it isn't prompting anymore.

sudo howdy test works just fine but unlocking or in general giving permissions not.

Blendman974 commented on 2023-09-26 07:36 (UTC)

Updated PKGBUILD. Thx vixalien

dakush commented on 2023-09-26 00:22 (UTC)

The PKGBUILD from vixallen also works for me. Thanks!

vixalien commented on 2023-09-25 13:09 (UTC)

the following PKGBUILD seems to work for me

# Maintainer: Guillaume ETHEVE <admin@guillaume-etheve.fr>
# Contributor: Caleb Fontenot <foley2431@gmail.com>


pkgname=howdy-beta-git
pkgver=2.6.1.r239.gc5b1766
pkgrel=1
pkgdesc="Windows Hello for Linux (Beta)"
arch=('x86_64')
url="https://github.com/boltgolt/howdy"
license=('MIT')
depends=(
    'opencv'
    'hdf5'
    'python'
    'python-pillow'
    'python-dlib'
    'python-face_recognition'
    'python-face_recognition_models'
    'python-click'
    'python-numpy'
    'python-opencv'
)
makedepends=(
    'cmake'
    'pkgfile'
    'meson'
    'git'
    'libevdev'
    'libinih'
    'pam'
    'gettext'
)
optdepends=(
    'python-elevate: for GUI howdy-gtk'
)
conflicts=(
    'howdy'
)
provides=(
    'howdy'
)
backup=('etc/howdy/config.ini')
source=(
    "git+https://github.com/boltgolt/howdy.git#branch=beta"
    "https://github.com/davisking/dlib-models/raw/master/dlib_face_recognition_resnet_model_v1.dat.bz2"
    "https://github.com/davisking/dlib-models/raw/master/mmod_human_face_detector.dat.bz2"
    "https://github.com/davisking/dlib-models/raw/master/shape_predictor_5_face_landmarks.dat.bz2"
)
sha256sums=('SKIP'
    'abb1f61041e434465855ce81c2bd546e830d28bcbed8d27ffbe5bb408b11553a'
    'db9e9e40f092c118d5eb3e643935b216838170793559515541c56a2b50d9fc84'
    '6e787bbebf5c9efdb793f6cd1f023230c4413306605f24f299f12869f95aa472'
)

pkgver() {
    cd "$srcdir/howdy"
    git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
    arch-meson $srcdir/howdy build -Dinstall_pam_config=true -Ddlib_data_dir="/etc/howdy/dlib-data"
    meson compile -C build
}

package() {
    meson install -C build --destdir "$pkgdir"

    install -dm755 "${pkgdir}/etc/howdy/dlib-data"
    install -Dm644 "${srcdir}/dlib_face_recognition_resnet_model_v1.dat" "${pkgdir}/etc/howdy/dlib-data"
    install -Dm644 "${srcdir}/mmod_human_face_detector.dat" "${pkgdir}/etc/howdy/dlib-data"
    install -Dm644 "${srcdir}/shape_predictor_5_face_landmarks.dat" "${pkgdir}/etc/howdy/dlib-data"
}