Package Details: pass-git-helper-git 1.2.0.r59.g9cc9f0b-1

Git Clone URL: https://aur.archlinux.org/pass-git-helper-git.git (read-only, click to copy)
Package Base: pass-git-helper-git
Description: A git credential helper interfacing with pass, the standard unix password manager
Upstream URL: https://github.com/languitar/pass-git-helper
Licenses: LGPL3
Conflicts: pass-git-helper
Provides: pass-git-helper
Submitter: languitar
Maintainer: intelfx
Last Packager: intelfx
Votes: 2
Popularity: 0.000000
First Submitted: 2015-08-25 20:29 (UTC)
Last Updated: 2022-03-19 09:25 (UTC)

Dependencies (4)

Required by (0)

Sources (1)

Latest Comments

languitar commented on 2024-04-08 16:50 (UTC)

There's actually not much value in the git package here. Every change is automatically released. I'll open a request for deletion as I don't intend continue maintaining the git package

dreieck commented on 2024-04-08 16:29 (UTC)

Please move away from calling setup.py directly but use python -m build in build() and python -m installer in package(), fitted with the appropriate options, and with the approproate makedepends.
The the Arch Linux wiki on Python package guidelines for details.

==> Starting package()...
running install
/usr/lib/python3.11/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.
!!

        ********************************************************************************
        Please avoid running ``setup.py`` directly.
        Instead, use pypa/build, pypa/installer or other
        standards-based tools.

        See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.
        ********************************************************************************

!!
  self.initialize_options()

Regards and thanks for maintaining!

m4rcelo commented on 2020-08-23 15:54 (UTC)

In case it helps, I had to install python-pyxdg in order to get it working.

chrooti commented on 2020-07-16 10:47 (UTC)

python-setuptools is required as "depends" to run the script

#!/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'pass-git-helper==1.1.0','console_scripts','pass-git-helper'
__requires__ = 'pass-git-helper==1.1.0'
import re
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
    sys.exit(
        load_entry_point('pass-git-helper==1.1.0', 'console_scripts', 'pass-git-helper')()
    )

obviously requires pkg_resources, which is contained into python-setuptools