Package Details: python-custom_inherit 2.4.1-1

Git Clone URL: https://aur.archlinux.org/python-custom_inherit.git (read-only, click to copy)
Package Base: python-custom_inherit
Description: convenient, light-weight tools for inheriting docstrings
Upstream URL: https://github.com/rsokl/custom_inherit
Licenses: MIT
Submitter: pirofti
Maintainer: pirofti
Last Packager: pirofti
Votes: 1
Popularity: 0.000280
First Submitted: 2021-03-17 14:47 (UTC)
Last Updated: 2023-05-28 22:32 (UTC)

Latest Comments

micwoj92 commented on 2025-03-24 22:25 (UTC)

Simplest solution is to disregard this file and use python-versioneer instead:

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,19 +2,20 @@
 _name=custom_inherit
 pkgname="python-$_name"
 pkgver=2.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc="convenient, light-weight tools for inheriting docstrings"
 arch=('any')
 url="https://github.com/rsokl/custom_inherit"
 license=('MIT')
 depends=('python')
-makedepends=('python-setuptools')
+makedepends=('python-setuptools' 'python-versioneer')
 #source=("https://files.pythonhosted.org/packages/source/g/${_name}/${_name}-${pkgver}.tar.gz")
 source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
 sha256sums=('7052eb337bcce83551815264391cc4efc2bf70b295a3c52aba64f1ab57c3a8a2')

 build() {
   cd "$srcdir/$_name-$pkgver"
+  rm versioneer.py
   python setup.py build
 }

pirofti commented on 2025-03-24 08:59 (UTC)

Thank you for the report! I tried patching this but it leads to further errors so I opened an issue upstream: https://github.com/rsokl/custom_inherit/issues/50

micwoj92 commented on 2025-03-05 18:51 (UTC)

Build fails:

==> Starting build()...
/build/python-custom_inherit/src/custom_inherit-2.4.1/versioneer.py:421: SyntaxWarning: invalid escape sequence '\s'
  LONG_VERSION_PY['git'] = '''
Traceback (most recent call last):
  File "/build/python-custom_inherit/src/custom_inherit-2.4.1/setup.py", line 8, in <module>
    version=versioneer.get_version(),
            ~~~~~~~~~~~~~~~~~~~~~~^^
  File "/build/python-custom_inherit/src/custom_inherit-2.4.1/versioneer.py", line 1480, in get_version
    return get_versions()["version"]
           ~~~~~~~~~~~~^^
  File "/build/python-custom_inherit/src/custom_inherit-2.4.1/versioneer.py", line 1412, in get_versions
    cfg = get_config_from_root(root)
  File "/build/python-custom_inherit/src/custom_inherit-2.4.1/versioneer.py", line 342, in get_config_from_root
    parser = configparser.SafeConfigParser()
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'configparser' has no attribute 'SafeConfigParser'. Did you mean: 'RawConfigParser'?
==> ERROR: A failure occurred in build().
    Aborting...