commit: 8878b6fa90a28a6d67cca957b5478ab9f3d0f7b9 Author: Tobias Jakobi <tjakobi <AT> math <DOT> uni-bielefeld <DOT> de> AuthorDate: Mon Jan 13 10:27:00 2025 +0000 Commit: Nowa Ammerlaan <nowa <AT> gentoo <DOT> org> CommitDate: Tue Jan 14 20:32:47 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8878b6fa
dev-python/vdf: Bump to 4.0 The original repository in the ValvePython GitHub group is abandoned and hasn't seen any commit in the master branch for three years. Solstice Game Studios has more or less taken over the maintenance of the project and is now providing a new 4.0 release. This release is crucial since the format of the .vdf files that the current stable Steam client is using has changed significantly. The old 3.4 release can no longer parse these files, i.e. the release is non-functional when using the stable Steam client. Signed-off-by: Tobias Jakobi <tjakobi <AT> math.uni-bielefeld.de> Closes: https://github.com/gentoo/gentoo/pull/40115 Signed-off-by: Nowa Ammerlaan <nowa <AT> gentoo.org> dev-python/vdf/Manifest | 1 + dev-python/vdf/vdf-4.0.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-python/vdf/Manifest b/dev-python/vdf/Manifest index 1de34608f4ed..685006ff88f2 100644 --- a/dev-python/vdf/Manifest +++ b/dev-python/vdf/Manifest @@ -1 +1,2 @@ DIST vdf-3.4_p20240630.gh.tar.gz 17415 BLAKE2B d8f108cc09e9df787fcbd9829de81d8d90fb032a38cdffb8c86690fe4aa5a980cf079ba943e0a1166f57f948fe0ead89278c2ee2b7c1924188ef8fe212aa9050 SHA512 0af688d89b35369178b49135cfb869afc3f40da6f2a606b45646ea17804ad964b28c7b3dc5e9fdf2ee5ca12bad5a7f7d3c9b04803111ead45b967f2e9c9cba98 +DIST vdf-4.0.gh.tar.gz 16808 BLAKE2B 1d4cddc7057081c8aefb1bf603eca8cac69c62926643459b88d856e49938b461e106a89d6fe09dfb3a6ee3956af6fbf9cb9e3d2fca82665eb2f1dbe1198bc5d6 SHA512 fde95258ccc63811c1eb6069333b6dc727be3c9ca29da2b9f200386903f5fcd183bfef82d22534ff6e4ce74dd9ab48ee498b6365112e050bcb354c4127aec475 diff --git a/dev-python/vdf/vdf-4.0.ebuild b/dev-python/vdf/vdf-4.0.ebuild new file mode 100644 index 000000000000..547a0e25cc80 --- /dev/null +++ b/dev-python/vdf/vdf-4.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="A module for (de)serialization to and from VDF, Valve's key-value text format" +HOMEPAGE=" + https://github.com/solsticegamestudios/vdf/ + https://pypi.org/project/vdf/ +" +SRC_URI=" + https://github.com/solsticegamestudios/vdf/archive/refs/tags/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +distutils_enable_tests pytest
