Package Details: depix-git r55.3d6fc24-1

Git Clone URL: https://aur.archlinux.org/depix-git.git (read-only, click to copy)
Package Base: depix-git
Description: A tool for recovering passwords from pixelized screenshots
Upstream URL: https://github.com/beurtschipper/Depix
Keywords: infosec OSINT password python recovery text unhide
Licenses: CC-BY-4.0
Conflicts: depix
Provides: depix
Submitter: GI_Jack
Maintainer: None
Last Packager: GI_Jack
Votes: 1
Popularity: 0.000000
First Submitted: 2020-12-06 19:48 (UTC)
Last Updated: 2023-09-28 19:52 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

dreieck commented on 2023-05-04 15:55 (UTC) (edited on 2023-05-05 19:10 (UTC) by dreieck)

build() fails with sed: can't read depix.py: No such file or directory:

==> Starting build()...
sed: can't read depix.py: No such file or directory
==> ERROR: A failure occurred in build()

Fixed PKGBUILD &narr; here (fixes also other issues):

# Maintainer: GI Jack <GI_Jack@hackermail.com>

pkgname=depix-git # '-bzr', '-git', '-hg' or '-svn'
pkgver=r54.6dbbc29
pkgrel=1
pkgdesc="A tool for recovering passwords from pixelized screenshots"
arch=('any')
url="https://github.com/beurtschipper/Depix"
license=('custom: CC-BY-4.0')
depends=('python' 'python-pillow')
makedepends=('git' 'python-wheel' 'python-installer' 'python-build' 'python-setuptools>=46.4.0' 'python-types-setuptools' 'python-mypy_extensions' 'python-isort' 'python-black')
provides=("depix")
conflicts=("depix")
source=("${pkgname}::git+https://github.com/beurtschipper/Depix.git")
sha256sums=('SKIP')

# Please refer to the 'USING VCS SOURCES' section of the PKGBUILD man page for
# a description of each element in the source array.

pkgver() {
  cd "$srcdir/${pkgname}"
  # Git, no tags available
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd "$srcdir/${pkgname}"

  python -m build --wheel --no-isolation
}

package() {
  cd "$srcdir/${pkgname}"

  python -m installer --destdir="$pkgdir" --compile-bytecode=2 dist/*.whl
  install -D -v -m644 README.md "${pkgdir}/usr/share/doc/depix/README.md"
  cp -rv docs/* "${pkgdir}/usr/share/doc/depix"/
  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}

Thanks for maintaining!

malcolm commented on 2020-12-09 03:08 (UTC)

so fast. i really love you guys S2