From 0eef4d5dd84a5dc662a8caeb40e7360f5acbe28a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Sat, 11 Jun 2022 13:45:01 +0200 Subject: [PATCH 1/6] New package: hatchling-1.3.1 --- srcpkgs/hatchling/template | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 srcpkgs/hatchling/template diff --git a/srcpkgs/hatchling/template b/srcpkgs/hatchling/template new file mode 100644 index 000000000000..894c15c8f719 --- /dev/null +++ b/srcpkgs/hatchling/template @@ -0,0 +1,18 @@ +# Template file for 'hatchling' +pkgname=hatchling +version=1.3.1 +revision=1 +build_style=python3-pep517 +_deps="python3-pathspec python3-tomli python3-pluggy python3-packaging" +hostmakedepends="python3-setuptools ${_deps}" +depends="${_deps}" +short_desc="Extensible, standards compliant build backend used by Hatch" +maintainer="Jan Christian Grünhage " +license="MIT" +homepage="https://hatch.pypa.io/latest/" +distfiles="${PYPI_SITE}/h/${pkgname}/${pkgname}-${version}.tar.gz" +checksum=aaa63019c9d666053d9ff318097335e766123844547c52940155c0401c3c142f + +post_install() { + vlicense LICENSE.txt +} From ed1a9130fab7f442934bda5212f4c8e82193aab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Sat, 11 Jun 2022 14:06:41 +0200 Subject: [PATCH 2/6] New package: python3-tomli-w-1.0.0 --- srcpkgs/python3-tomli-w/template | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 srcpkgs/python3-tomli-w/template diff --git a/srcpkgs/python3-tomli-w/template b/srcpkgs/python3-tomli-w/template new file mode 100644 index 000000000000..6268e501aedf --- /dev/null +++ b/srcpkgs/python3-tomli-w/template @@ -0,0 +1,20 @@ +# Template file for 'python3-tomli-w' +pkgname=python3-tomli-w +version=1.0.0 +revision=1 +wrksrc="${pkgname/python3-/}-${version}" +build_style=python3-pep517 +hostmakedepends="python3-flit_core" +depends="python3" +checkdepends="python3-pytest python3-tomli" +short_desc="Lil' python TOML writer" +maintainer="Jan Christian Grünhage " +license="MIT" +homepage="https://github.com/hukkin/tomli-w" +changelog="https://github.com/hukkin/tomli-w/raw/master/CHANGELOG.md" +distfiles="https://github.com/hukkin/tomli-w/archive/refs/tags/${version}.tar.gz" +checksum=4fe1fb4696899c01356ef4e028c975103abf62e5fa9472f31f1714100f1b065d + +post_install() { + vlicense LICENSE +} From 1e606eabc2974eafedc4cc0bd10ebc4e3ed3b551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Sat, 11 Jun 2022 14:20:44 +0200 Subject: [PATCH 3/6] New package: hatch-1.2.1 --- srcpkgs/hatch/template | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 srcpkgs/hatch/template diff --git a/srcpkgs/hatch/template b/srcpkgs/hatch/template new file mode 100644 index 000000000000..f8b068a2a713 --- /dev/null +++ b/srcpkgs/hatch/template @@ -0,0 +1,37 @@ +# Template file for 'hatch' +pkgname=hatch +version=1.2.1 +revision=1 +build_style=python3-pep517 +make_check_args="--deselect tests/backend/test_build.py::test_editable + --deselect tests/backend/builders/test_custom.py::test_default + --deselect tests/backend/builders/test_custom.py::test_explicit_path + --deselect tests/backend/builders/test_wheel.py::TestBuildStandard::test_default_auto_detection + --deselect tests/backend/builders/test_wheel.py::TestBuildStandard::test_editable_default + --deselect tests/backend/builders/test_wheel.py::TestBuildStandard::test_editable_default_extra_dependencies + --deselect tests/backend/builders/test_wheel.py::TestBuildStandard::test_editable_default_force_include + --deselect tests/backend/builders/test_wheel.py::TestBuildStandard::test_editable_exact + --deselect tests/backend/builders/test_wheel.py::TestBuildStandard::test_editable_exact_extra_dependencies + --deselect tests/backend/builders/test_wheel.py::TestBuildStandard::test_editable_exact_force_include + --deselect tests/backend/builders/test_wheel.py::TestBuildStandard::test_editable_pth + --deselect tests/cli/run/test_run.py::test_scripts_no_environment + --deselect tests/backend/dep/test_core.py::test_unknown_extra + --deselect tests/backend/dep/test_core.py::test_extra_met" +hostmakedepends="hatchling" +depends="python3-atomicwrites python3-click hatchling python3-httpx + python3-keyring python3-pexpect python3-platformdirs python3-pyperclip + python3-rich python3-tomli-w python3-tomlkit python3-userpath + python3-virtualenv" +checkdepends="${depends} python3-pytest python3-pytest-mock + python3-pytest-xdist git python3-pip" +short_desc="Modern, extensible Python project management " +maintainer="Jan Christian Grünhage " +license="MIT" +homepage="https://hatch.pypa.io/latest/" +distfiles="${PYPI_SITE}/h/${pkgname}/${pkgname}-${version}.tar.gz" +checksum=61761e1fe14474fb2be7e264555b99fc343b4e63c0ee32aa3497c651e4cdec03 +make_check_pre="env PYTHONPATH=./src" + +post_install() { + vlicense LICENSE.txt +} From 8c7e53b4e6b66270be86dc26cb6450e979657b9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Sun, 26 Jun 2022 16:45:06 +0200 Subject: [PATCH 4/6] New package: hatch-vcs-0.2.0 --- srcpkgs/hatch-vcs/template | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 srcpkgs/hatch-vcs/template diff --git a/srcpkgs/hatch-vcs/template b/srcpkgs/hatch-vcs/template new file mode 100644 index 000000000000..adac314297e0 --- /dev/null +++ b/srcpkgs/hatch-vcs/template @@ -0,0 +1,24 @@ +# Template file for 'hatch-vcs' +pkgname=hatch-vcs +version=0.2.0 +revision=1 +wrksrc="${pkgname/-/_}-${version}" +build_style=python3-pep517 +make_check_args="--deselect tests/test_build.py::test_basic + --deselect tests/test_build.py::test_write + --deselect tests/test_build.py::test_fallback" +hostmakedepends="hatchling" +depends="hatchling python3-setuptools_scm" +checkdepends="${depends} python3-pytest git" +short_desc="Hatch plugin for VCS based versioning" +maintainer="Jan Christian Grünhage " +license="MIT" +homepage="https://github.com/ofek/hatch-vcs" +changelog="https://github.com/ofek/hatch-vcs/raw/master/HISTORY.md" +distfiles="${PYPI_SITE}/h/${pkgname/-/_}/${pkgname/-/_}-${version}.tar.gz" +checksum=9913d733b34eec9bb0345d0626ca32165a4ad2de15d1ce643c36d09ca908abff +make_check_pre="env PYTHONPATH=./" + +post_install() { + vlicense LICENSE.txt +} From acd4bc76aa3c16dc8c3797fd7a9f322b68fffc8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Sun, 26 Jun 2022 16:47:17 +0200 Subject: [PATCH 5/6] python3-jsonschema: update to 4.6.0. --- srcpkgs/python3-jsonschema/template | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/srcpkgs/python3-jsonschema/template b/srcpkgs/python3-jsonschema/template index 120392ad1be3..92a65eebd9d1 100644 --- a/srcpkgs/python3-jsonschema/template +++ b/srcpkgs/python3-jsonschema/template @@ -1,20 +1,24 @@ # Template file for 'python3-jsonschema' pkgname=python3-jsonschema -version=4.4.0 +version=4.6.0 revision=1 wrksrc="jsonschema-${version}" build_style=python3-pep517 -make_check_args="--deselect jsonschema/tests/test_cli.py::TestCLIIntegration::test_license" -hostmakedepends="python3-setuptools_scm python3-wheel" +hostmakedepends="hatchling hatch-vcs" depends="python3-attrs python3-pyrsistent" -checkdepends="python3-pytest python3-Twisted $depends" short_desc="Implementation of JSON Schema for Python3" -maintainer="Orphaned " +maintainer="Jan Christian Grünhage " license="MIT" homepage="https://github.com/Julian/jsonschema" changelog="https://raw.githubusercontent.com/Julian/jsonschema/master/CHANGELOG.rst" distfiles="${PYPI_SITE}/j/jsonschema/jsonschema-${version}.tar.gz" -checksum=636694eb41b3535ed608fe04129f26542b59ed99808b4f688aa32dcf55317a83 +checksum=9d6397ba4a6c0bf0300736057f649e3e12ecbc07d3e81a0dacb72de4e9801957 +# Tests require jsonschema to be installed already. Setting PYTHONPATH doesn't seem to do trick +make_check=no + +pre_build() { + export SETUPTOOLS_SCM_PRETEND_VERSION="${version}" +} post_install() { vlicense COPYING LICENSE From a2d286d964b44e1c29cec0aa4846e28b8bb9632b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?= Date: Fri, 10 Jun 2022 17:30:55 +0200 Subject: [PATCH 6/6] python3-ansible-lint: update to 6.3.0. --- srcpkgs/python3-ansible-lint/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template index 19b1453782e9..1522a85f4826 100644 --- a/srcpkgs/python3-ansible-lint/template +++ b/srcpkgs/python3-ansible-lint/template @@ -1,6 +1,6 @@ # Template file for 'python3-ansible-lint' pkgname=python3-ansible-lint -version=6.2.2 +version=6.3.0 revision=1 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-pep517 @@ -18,7 +18,7 @@ maintainer="Jan Christian Grünhage " license="GPL-3.0-only" homepage="https://github.com/ansible-community/ansible-lint" distfiles="${PYPI_SITE}/a/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz" -checksum=b8e2956fede90bd28150e97f209a8af787c6001f584bb6613112a1ce1aea311d +checksum=f57f520ae5d810ce062157dc7d633990ad2fbec81bbbb34ccc4ce3a0c21fcd38 # Tests are currently broken for ansible on python 3.10 # See https://github.com/ansible/ansible/issues/74658 # and https://github.com/ansible/ansible/issues/74660