upgpkg: python-steam-1:1.6.1-1: initial upload

This commit is contained in:
Christian Schendel 2025-12-25 18:04:54 +01:00
commit b53da11736
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
7 changed files with 129 additions and 0 deletions

21
.SRCINFO Normal file
View file

@ -0,0 +1,21 @@
pkgbase = python-steam
pkgdesc = Python package for interacting with Steam
pkgver = 1.6.1
pkgrel = 1
url = https://github.com/solsticegamestudios/steam
arch = any
license = MIT
makedepends = python-build
makedepends = python-installer
makedepends = python-setuptools
makedepends = python-wheel
depends = python
depends = python-cachetools
depends = python-pycryptodomex
depends = python-requests
depends = python-six
depends = python-vdf
source = steam-1.6.1.tar.gz::https://github.com/solsticegamestudios/steam/archive/refs/tags/v1.6.1.tar.gz
sha256sums = dcc305f11e1686a3557cd87afdc50ce177a5015ba3fdd51bef63c7302dd21b05
pkgname = python-steam

17
.gitignore vendored Normal file
View file

@ -0,0 +1,17 @@
# Ignore everything
*
# But not these files...
!.gitignore
!PKGBUILD
!.SRCINFO
!LICENSE
!chroot-build
!.nvchecker.toml
!/keys
!/keys/pgp
!/keys/pgp/*.asc
!/LICENSES
!/LICENSES/*.txt
!REUSE.toml
!*.patch

5
.nvchecker.toml Normal file
View file

@ -0,0 +1,5 @@
[python-steam]
source = "git"
git = "https://github.com/solsticegamestudios/steam.git"
prefix = "v"
exclude_regex = ".*alpha.*"

12
LICENSE Normal file
View file

@ -0,0 +1,12 @@
Copyright Arch Linux Contributors
Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

1
LICENSES/0BSD.txt Symbolic link
View file

@ -0,0 +1 @@
../LICENSE

43
PKGBUILD Normal file
View file

@ -0,0 +1,43 @@
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=python-steam
_name=${pkgname#python-}
pkgver=1.6.1
epoch=1
pkgrel=1
pkgdesc="Python package for interacting with Steam"
arch=('any')
url="https://github.com/solsticegamestudios/steam"
license=(
MIT
)
depends=(
python
python-cachetools
python-pycryptodomex
python-requests
python-six
python-vdf
)
makedepends=(
python-build
python-installer
python-setuptools
python-wheel
)
source=(
"$_name-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz"
)
b2sums=('b02fcfbab0a3fba49eedc66720f50c3c191b01a0361500c5c8bb24c685bc6a463f25185bbb128483d8bd65a63474ed40689dd3174205610438295dd7e9e0b324')
build() {
cd "$_name-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$_name-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}

30
REUSE.toml Normal file
View file

@ -0,0 +1,30 @@
version = 1
[[annotations]]
path = [
"PKGBUILD",
"README.md",
"keys/**",
".SRCINFO",
".nvchecker.toml",
".gitignore",
"*.install",
"*.sysusers",
"*.tmpfiles",
"*.logrotate",
"*.pam",
"*.service",
"*.socket",
"*.timer",
"*.desktop",
"*.hook",
]
SPDX-FileCopyrightText = "Arch Linux contributors"
SPDX-License-Identifier = "0BSD"
[[annotations]]
path = [
"*.patch",
]
SPDX-FileCopyrightText = "python-inputs contributors"
SPDX-License-Identifier = "BSD-3-Clause"