From: "Nicola Smaniotto" <smaniotto.nicola@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-video/trakt-scrobbler/
Date: Mon, 12 Dec 2022 09:37:12 +0000 (UTC) [thread overview]
Message-ID: <1670837818.a60b766fc95db2678e2b26e4fc88a68cc2e39393.smaniotto.nicola@gentoo> (raw)
commit: a60b766fc95db2678e2b26e4fc88a68cc2e39393
Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
AuthorDate: Mon Dec 12 09:36:46 2022 +0000
Commit: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
CommitDate: Mon Dec 12 09:36:58 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a60b766f
media-video/trakt-scrobbler: add 1.6.1_beta1
Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>
media-video/trakt-scrobbler/Manifest | 1 +
.../trakt-scrobbler-1.6.1_beta1.ebuild | 55 ++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/media-video/trakt-scrobbler/Manifest b/media-video/trakt-scrobbler/Manifest
index a60bc73cc..e8bc423bf 100644
--- a/media-video/trakt-scrobbler/Manifest
+++ b/media-video/trakt-scrobbler/Manifest
@@ -1,3 +1,4 @@
DIST trakt-scrobbler-1.4.2.tar.gz 56835 BLAKE2B 0b39ca0d88ae2e45d5907a7546e44d2d653bd8c10fc67a0389153d2c90f1064fdbbe2d8e9c88da123f0275c10044c74fab69cceddbf24baadd21a495be439cb7 SHA512 cb58b6ab8577b9850f01dd6f6ef6e1ef6fbd1432c3ca84220a3845d6dd43ef56e5abdbaa934eee80f20affdadfffd93582c860a1efcccc0b2ee0025c6c0ca5b0
DIST trakt-scrobbler-1.5.0.tar.gz 56946 BLAKE2B 155d3371a077d4617ff575a4e924ee2f6ab9814ea5eea167234e8df26e3c3286dcf4df07ff9a51f2daf2faf928c1c857cc6a9497703e810493974cdc86f0cf54 SHA512 5d98308fc09c7c569a498622cb0868a9d9d547dea36b5523a02c4d53adb7033c3441426ea388a53c624f445480b11c41ab96660e6fe453be1d1110f781de4b1a
DIST trakt-scrobbler-1.6.0.tar.gz 64001 BLAKE2B 201c4a6f48275d5bda87b37bb4ec46d63d3446a27b7093eb71648659fd5e41685751152882bdd837c9d4383d257ea5e3b131d354d9db87d79d5a26cbc4fb45de SHA512 b2f12088c4964a071bb22002ac8f8271fd993f8b55b1dd03f4e6c8707fe8d8fd7df6609a697128c44710e506b3cae57d799fd961c4373bcf52f7ff5af8a7817f
+DIST trakt-scrobbler-1.6.1_beta1.tar.gz 64939 BLAKE2B 611f09ea60515a84681ef1bb06e547e727594e306196ac6347e1ad474a59e0fa28b67be4b74b3e4bbb03000aa8edfd312c1558df2e0e566f53db004254875a35 SHA512 c36673173373fc0a16887cd61273ddbc342c774d8310abcef405feac53bd4d57792c377e67410e316e51f362c75baea18571dd6f7ebd54776a4fae1ac5803b28
diff --git a/media-video/trakt-scrobbler/trakt-scrobbler-1.6.1_beta1.ebuild b/media-video/trakt-scrobbler/trakt-scrobbler-1.6.1_beta1.ebuild
new file mode 100644
index 000000000..fdeea6ea3
--- /dev/null
+++ b/media-video/trakt-scrobbler/trakt-scrobbler-1.6.1_beta1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 optfeature
+
+MY_PV="${PV/_/-}"
+
+DESCRIPTION="Scrobbler for trakt.tv that supports VLC, Plex, MPC-HC, and MPV"
+HOMEPAGE="https://github.com/iamkroot/trakt-scrobbler"
+SRC_URI="https://github.com/iamkroot/${PN}/archive/refs/tags/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ >=dev-python/requests-2.25.1[${PYTHON_USEDEP}]
+ >=dev-python/urllib3-1.26.0[${PYTHON_USEDEP}]
+ >=dev-python/guessit-3.3.1[${PYTHON_USEDEP}]
+ >=dev-python/appdirs-1.4.4[${PYTHON_USEDEP}]
+ >=dev-python/cleo-0.8.1[${PYTHON_USEDEP}]
+ >=dev-python/confuse-2.0[${PYTHON_USEDEP}]
+ >=dev-python/urlmatch-1.0.1[${PYTHON_USEDEP}]
+ >=dev-python/pydantic-1.10.2[${PYTHON_USEDEP}]
+ dev-python/clikit[${PYTHON_USEDEP}]
+ dev-python/crashtest[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ >=dev-python/tomli-2.0.1[${PYTHON_USEDEP}]
+ ' python3_{8..10})
+ >=dev-python/desktop-notifier-3.4.0[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+distutils_enable_tests unittest
+
+python_test(){
+ eunittest tests/
+}
+
+python_install() {
+ distutils-r1_python_install
+
+ insinto "/usr/share/zsh/site-functions"
+ newins "${S}/completions/trakts.zsh" "_trakts"
+}
+
+pkg_postinst() {
+ optfeature "start at boot support (see the trakts autostart command)" sys-apps/systemd
+}
next reply other threads:[~2022-12-12 9:37 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-12 9:37 Nicola Smaniotto [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-03-25 16:52 [gentoo-commits] repo/proj/guru:master commit in: media-video/trakt-scrobbler/ Julien Roy
2024-03-25 16:43 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2023-01-15 16:29 Nicola Smaniotto
2023-01-11 18:21 Nicola Smaniotto
2022-12-12 10:31 Nicola Smaniotto
2022-11-12 15:48 Nicola Smaniotto
2022-08-02 8:00 Nicola Smaniotto
2022-05-31 7:27 Anna Vyalkova
2022-03-07 11:56 Nicola Smaniotto
2022-02-23 14:39 Nicola Smaniotto
2022-02-22 15:58 Nicola Smaniotto
2021-12-15 11:13 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-12-15 11:13 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-10-08 19:46 Nicola Smaniotto
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1670837818.a60b766fc95db2678e2b26e4fc88a68cc2e39393.smaniotto.nicola@gentoo \
--to=smaniotto.nicola@gmail.com \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox