Package Details: viddy-bin 1.3.0-1

Git Clone URL: https://aur.archlinux.org/viddy-bin.git (read-only, click to copy)
Package Base: viddy-bin
Description: A modern watch command. Time machine and pager.
Upstream URL: https://github.com/sachaos/viddy
Keywords: watch
Licenses: MIT
Conflicts: viddy
Provides: viddy
Submitter: solnce
Maintainer: solnce (Dominiquini)
Last Packager: Dominiquini
Votes: 5
Popularity: 0.68
First Submitted: 2024-01-05 21:58 (UTC)
Last Updated: 2024-11-29 00:20 (UTC)

Latest Comments

Dominiquini commented on 2024-09-17 12:14 (UTC)

@jensb: Thanks for the report. Itś fixed now!

jensb commented on 2024-09-17 11:05 (UTC)

Thank you for providing this package - The newest PKGBUILD uses help2man but doesn't define it as a build dependency, so it fails on any system where help2man isn't already installed. See below for a diff that fixes this.

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -11,6 +11,7 @@ _urlraw="https://raw.githubusercontent.com/sachaos/${_pkgname}/v${pkgver}"
 arch=('x86_64' 'i686' 'aarch64')
 license=('MIT')
 depends=('glibc')
+makedepends=('help2man')
 conflicts=("${_pkgname}")
 provides=("${_pkgname}")
 source=("LICENSE-${pkgver}::${_urlraw}/LICENSE"

Dominiquini commented on 2024-09-11 11:56 (UTC)

@pvdp, I remove the check for the LICENSE and README.md in the last version! I hope that it works, because in my machine, everything was already working before!

pvdp commented on 2024-09-11 11:10 (UTC)

==> Making package: viddy-bin 1.1.2-2 (Wed 11 Sep 2024 21:05:57 AEST)
==> Retrieving sources...
-> Found LICENSE
-> Found README.md
-> Found viddy-v1.1.2-linux-x86_64.tar.gz
==> Validating source files with sha256sums...
LICENSE ... Passed
README.md ... FAILED
==> ERROR: One or more files did not pass the validity check!
error: failed to download sources for 'viddy-bin-1.1.2-2':
error: packages failed to build: viddy-bin-1.1.2-2

solnce commented on 2024-09-01 15:29 (UTC)

@Dominiquini has been set as co-maintainer. Orphan request should be disregarded.

solnce commented on 2024-08-23 15:45 (UTC)

Can't take care of this package for the next couple of months. Looking for another packager.

m040601 commented on 2024-08-16 08:39 (UTC)

Thanks for providing this PKGBUILD. Very nice interesting tool.

Maybe with enough votes it could one day be an official Arch package.

It would be nice if both the maintainers of "viddy" and "viddy-bin" could coordinate and share their work work for consistency and to avoid reduplicating efforts.

Be aware that are big changes coming:

Viddy was originally a program written in Go, but starting from version
1.0.0, it is being reimplemented in Rust.

There is already a prerelease:

TITLE        TYPE         TAG NAME     PUBLISHED
v1.0.0-rc.1  Pre-release  v1.0.0-rc.1  about 21 hours ago
v0.4.0       Latest       v0.4.0       about 10 months ago

And it is available for many architectures:

Assets
viddy-v1.0.0-rc.1-linux-arm64.sha256     103 B
viddy-v1.0.0-rc.1-linux-arm64.tar.gz     2.17 MiB
viddy-v1.0.0-rc.1-linux-i686.sha256      102 B
viddy-v1.0.0-rc.1-linux-i686.tar.gz      2.57 MiB
viddy-v1.0.0-rc.1-linux-x86_64.sha256    104 B
viddy-v1.0.0-rc.1-linux-x86_64.tar.gz    2.35 MiB
viddy-v1.0.0-rc.1-macos-arm64.sha256     103 B
viddy-v1.0.0-rc.1-macos-arm64.tar.gz     2.08 MiB
viddy-v1.0.0-rc.1-macos-x86_64.sha256    104 B
viddy-v1.0.0-rc.1-macos-x86_64.tar.gz    2.19 MiB
viddy-v1.0.0-rc.1-windows-x86_64.sha256  65 B
viddy-v1.0.0-rc.1-windows-x86_64.tar.gz  2.07 MiB

So, dont forget to change,

arch=('x86_64')

To something like,

arch=('x86_64' 'aarch64')

So that it can be used on Archlinux ARM (Rasperry, chromebooks etc)

Thanks in advance.