Compare commits

..

4 Commits

4 changed files with 36 additions and 30 deletions

View File

@@ -1,6 +1,6 @@
name='python3-deepdiff' name='python3-deepdiff'
version='8.6.1' version='8.6.1'
release='2' release='3'
desc='Deep Difference and Search of any Python object/data. Recreate objects by adding adding deltas to each other' desc='Deep Difference and Search of any Python object/data. Recreate objects by adding adding deltas to each other'
desc_ru='Библиотека Python для глубокого сравнения и поиска любых объектов и данных' desc_ru='Библиотека Python для глубокого сравнения и поиска любых объектов и данных'
homepage='https://github.com/seperman/deepdiff' homepage='https://github.com/seperman/deepdiff'
@@ -23,23 +23,27 @@ deps_alpine=('python3')
build_deps=( build_deps=(
'python3' 'python3'
'python3-pip' 'python3-build'
'python3-flit_core' 'python3-installer'
'python3-flit-core'
) )
build_deps_alt=( build_deps_alt=(
'python3' 'python3'
'python3-module-pip' 'python3-module-build'
'python3-module-installer'
'python3-module-flit_core' 'python3-module-flit_core'
) )
build_deps_arch=( build_deps_arch=(
'python' 'python'
'python-pip' 'python-build'
'python-installer'
'python-flit_core' 'python-flit_core'
) )
build_deps_debian=( build_deps_debian=(
'python3' 'python3'
'python3-pip' 'python3-build'
'python3-installer'
'python3-flit-core' 'python3-flit-core'
) )
build_deps_fedora=("${build_deps[@]}") build_deps_fedora=("${build_deps[@]}")
@@ -48,12 +52,13 @@ build_deps_rhel=("${build_deps[@]}")
build_deps_rosa=("${build_deps[@]}") build_deps_rosa=("${build_deps[@]}")
build_deps_alpine=( build_deps_alpine=(
'python3' 'python3'
'py3-pip' 'py3-build'
'python3-flit_core' 'py3-installer'
'py3-flit-core'
) )
sources=("https://files.pythonhosted.org/packages/source/d/deepdiff/deepdiff-$version.tar.gz") sources=("https://files.pythonhosted.org/packages/source/d/deepdiff/deepdiff-$version.tar.gz")
checksums=('blake2b-256:0a0f9cd2624f7dcd755cbf1fa21fb7234541f19a1be96a56f387ec9053ebe220') checksums=('blake2b-256:197636c9aab3d5c19a94091f7c6c6e784efca50d87b124bf026c36e94719f33c')
build() { build() {
cd "$srcdir/deepdiff-${version}" cd "$srcdir/deepdiff-${version}"
@@ -62,11 +67,10 @@ build() {
package() { package() {
cd "$srcdir/deepdiff-${version}" cd "$srcdir/deepdiff-${version}"
pip install --root="${pkgdir}/" . --ignore-installed --no-deps --disable-pip-version-check python -m installer --destdir="$pkgdir" --prefix=/usr dist/*.whl
} }
files() { files() {
files-find "./usr/local/bin" files-find-bin
files-find "./usr/local/lib/python3.*/site-packages/deepdiff" files-find-lib
files-find "./usr/local/lib/python3.*/site-packages/deepdiff-*.dist-info"
} }

View File

@@ -1,6 +1,6 @@
name='python3-dotty-dict' name='python3-dotty-dict'
version='1.3.1' version='1.3.1'
release='3' release='4'
desc='Dictionary wrapper for quick access to deeply nested keys' desc='Dictionary wrapper for quick access to deeply nested keys'
desc_ru='Библиотека Python для быстрого доступа к глубоко вложенным ключам словаря' desc_ru='Библиотека Python для быстрого доступа к глубоко вложенным ключам словаря'
homepage='https://github.com/pawelzny/dotty_dict' homepage='https://github.com/pawelzny/dotty_dict'
@@ -68,11 +68,10 @@ check() {
package() { package() {
cd "dotty_dict-$version" cd "dotty_dict-$version"
python -m installer --destdir="$pkgdir" dist/*.whl python -m installer --destdir="$pkgdir" --prefix=/usr dist/*.whl
install-license ./LICENSE ./${name}/LICENSE install-license ./LICENSE ./${name}/LICENSE
} }
files() { files() {
files-find "./usr/lib/python3.*/site-packages/dotty_dict" files-find-lib
files-find "./usr/lib/python3.*/site-packages/dotty_dict-*.dist-info"
files-find-share "licenses" files-find-share "licenses"
} }

View File

@@ -1,6 +1,6 @@
name='python3-hjson' name='python3-hjson'
version='3.1.0' version='3.1.0'
release='3' release='4'
desc='JSON for Humans, allows comments and is less error prone.' desc='JSON for Humans, allows comments and is less error prone.'
desc_ru='Библиотека Python для удобного JSON с поддержкой комментариев' desc_ru='Библиотека Python для удобного JSON с поддержкой комментариев'
homepage='https://github.com/laktak/hjson-py' homepage='https://github.com/laktak/hjson-py'
@@ -54,13 +54,12 @@ build() {
package() { package() {
cd "hjson-${version}" cd "hjson-${version}"
python -m installer --destdir="$pkgdir" dist/*.whl python -m installer --destdir="$pkgdir" --prefix=/usr dist/*.whl
install-license LICENSE.txt ./${name}/LICENSE.txt install-license LICENSE.txt ./${name}/LICENSE.txt
} }
files() { files() {
files-find "./usr/lib/python3.*/site-packages/hjson" files-find-lib
files-find "./usr/lib/python3.*/site-packages/hjson-*.dist-info"
files-find-bin files-find-bin
files-find-share "licenses" files-find-share "licenses"
} }

View File

@@ -1,6 +1,6 @@
name='python3-inputs' name='python3-inputs'
version='0.5' version='0.5'
release='1' release='2'
desc='Cross-platform Python support for keyboards, mice and gamepads.' desc='Cross-platform Python support for keyboards, mice and gamepads.'
desc_ru='Библиотека Python для кроссплатформенной поддержки клавиатуры, мыши и геймпадов' desc_ru='Библиотека Python для кроссплатформенной поддержки клавиатуры, мыши и геймпадов'
homepage='https://github.com/zeth/inputs' homepage='https://github.com/zeth/inputs'
@@ -23,19 +23,23 @@ deps_alpine=('python3')
build_deps=( build_deps=(
'python3' 'python3'
'python3-pip' 'python3-build'
'python3-installer'
) )
build_deps_alt=( build_deps_alt=(
'python3' 'python3'
'python3-module-pip' 'python3-module-build'
'python3-module-installer'
) )
build_deps_arch=( build_deps_arch=(
'python' 'python'
'python-pip' 'python-build'
'python-installer'
) )
build_deps_debian=( build_deps_debian=(
'python3' 'python3'
'python3-pip' 'python3-build'
'python3-installer'
) )
build_deps_fedora=("${build_deps[@]}") build_deps_fedora=("${build_deps[@]}")
build_deps_redos=("${build_deps[@]}") build_deps_redos=("${build_deps[@]}")
@@ -43,7 +47,8 @@ build_deps_rhel=("${build_deps[@]}")
build_deps_rosa=("${build_deps[@]}") build_deps_rosa=("${build_deps[@]}")
build_deps_alpine=( build_deps_alpine=(
'python3' 'python3'
'py3-pip' 'py3-build'
'py3-installer'
) )
sources=("https://files.pythonhosted.org/packages/source/i/inputs/inputs-0.5.tar.gz") sources=("https://files.pythonhosted.org/packages/source/i/inputs/inputs-0.5.tar.gz")
@@ -56,10 +61,9 @@ build() {
package() { package() {
cd "$srcdir/inputs-${version}" cd "$srcdir/inputs-${version}"
pip install --root="${pkgdir}/" . --no-deps --ignore-installed --disable-pip-version-check python -m installer --destdir="$pkgdir" --prefix=/usr dist/*.whl
} }
files() { files() {
files-find "./usr/local/lib/python3.*/site-packages/inputs.py" files-find-lib
files-find "./usr/local/lib/python3.*/site-packages/inputs-*.dist-info"
} }