From: "Ionen Wolkens" <ionen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/pysolfc/
Date: Sun, 03 Aug 2025 07:05:09 +0000 (UTC) [thread overview]
Message-ID: <1754204662.d45e835f2438d1f2a8f82bde41d99a62f82b4174.ionen@gentoo> (raw)
commit: d45e835f2438d1f2a8f82bde41d99a62f82b4174
Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 3 06:22:29 2025 +0000
Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Aug 3 07:04:22 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d45e835f
games-board/pysolfc: drop 3.1.0
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
games-board/pysolfc/Manifest | 1 -
games-board/pysolfc/pysolfc-3.1.0.ebuild | 70 --------------------------------
2 files changed, 71 deletions(-)
diff --git a/games-board/pysolfc/Manifest b/games-board/pysolfc/Manifest
index 581e3e7dce6d..0a64223e9f6a 100644
--- a/games-board/pysolfc/Manifest
+++ b/games-board/pysolfc/Manifest
@@ -1,4 +1,3 @@
-DIST PySolFC-3.1.0.tar.xz 32697568 BLAKE2B 9c303b24b9d3bbb2f10d66146a0e848158bb1dfa155aeeacbad4169fbec18d8bfd908b086836bafae93ec52a96c2a973550577dfc46ac8510614965637a78721 SHA512 fa8ccc06a8813e9935a7d3034fca1cf8723b5457b8ee575cce202911c5cef265f2d0b297b279ceae398a142b9da56d95f5bdbf193df18cb5acb6b8f285420259
DIST PySolFC-3.2.0.tar.xz 32808092 BLAKE2B 04ca5567e67c32407135141b96d316e206093b712f0bac1761d2d46a729f8558f40794a5dc575cd420b92da8b5741eb5e7d57327ba756a997889174a31d07161 SHA512 190d20228585942ebf8be42514561a1642a2f102a4e32cf9e12d5b429f34279a447268839156d1e153be2147c152d738065bdbbc79d6494cfb9b5dcc901630d9
DIST PySolFC-Cardsets--Minimal-3.0.0.tar.xz 25188212 BLAKE2B a047a151b5c4256cfb0300c6bc75713db9aab63e4e76ba99233a59f39a9a7017406320a0e3b874b72084b3bccd14ca303f7af9666652efee85cf39803ad8c43c SHA512 9d4bacd072b450b29b9f1bec4557121a3647c2f837aeb6e249f452cb886467c5e7ca36dd36a78ea69a5c9df6f30d5245e12681d9d02fc9da2ece09c25d77e787
DIST PySolFC-Cardsets-3.0.tar.bz2 87075654 BLAKE2B 527463ba2abe22c553753f7cb8f6608867a3da01532461cd29b5cf007a49c242cbdbe82f50751283d17a46ecb15b263e324fbc1288b5c5eb3cc9bdc1cfc9b257 SHA512 4544bc8b890d0cd41d66bd513faf86c21455f4d0f154e567fd689917f2f3ca56fadf3ca9372bc80c5b1d5387aa4abfab7952e73024a3e41101112e716f80b762
diff --git a/games-board/pysolfc/pysolfc-3.1.0.ebuild b/games-board/pysolfc/pysolfc-3.1.0.ebuild
deleted file mode 100644
index 991f5d45ca17..000000000000
--- a/games-board/pysolfc/pysolfc-3.1.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-PYTHON_REQ_USE="tk"
-inherit distutils-r1 xdg
-
-MY_PN="PySolFC"
-MY_P="${MY_PN}-${PV}"
-PS_CARD_P="${MY_PN}-Cardsets-3.0"
-PS_CARD_MIN_P="${MY_PN}-Cardsets--Minimal-3.0.0"
-
-DESCRIPTION="Exciting collection of more than 1000 solitaire card games"
-HOMEPAGE="https://pysolfc.sourceforge.io/"
-SRC_URI="
- https://downloads.sourceforge.net/pysolfc/${MY_P}.tar.xz
- extra-cardsets? ( https://downloads.sourceforge.net/pysolfc/${PS_CARD_P}.tar.bz2 )
- !extra-cardsets? ( https://downloads.sourceforge.net/pysolfc/${PS_CARD_MIN_P}.tar.xz )
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="GPL-3+ GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="extra-cardsets minimal +sound"
-
-RDEPEND="
- $(python_gen_cond_dep '
- dev-python/attrs[${PYTHON_USEDEP}]
- dev-python/configobj[${PYTHON_USEDEP}]
- dev-python/pysol-cards[${PYTHON_USEDEP}]
- dev-python/random2[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]
- sound? ( dev-python/pygame[${PYTHON_USEDEP}] )
- !minimal? ( dev-python/pillow[jpeg,tk,${PYTHON_USEDEP}] )
- ')
- !minimal? ( dev-tcltk/tktable )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
- distutils-r1_src_prepare
-
- if use extra-cardsets; then
- find ../${PS_CARD_P} -type d -name .thumbnails -exec rm -r {} + || die
- fi
-}
-
-python_install_all() {
- local DOCS=( AUTHORS.md NEWS.asciidoc README.md )
- distutils-r1_python_install_all
-
- doman docs/pysol{,fc}.6
-
- insinto /usr/share/${MY_PN}
- doins -r ../$(usex extra-cardsets ${PS_CARD_P} ${PS_CARD_MIN_P})/.
-
- # html files are used at runtime, keep at default location
- dosym -r /usr/share/{${MY_PN},doc/${PF}}/html
-
- # russian translation is not currently displaying right?
- # (please if works fine for you and this should be reverted)
- # https://forums.gentoo.org/viewtopic-t-1142910.html
- rm -- "${ED}"/usr/share/locale/ru/LC_MESSAGES/pysol.mo || die
-}
next reply other threads:[~2025-08-03 7:05 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-03 7:05 Ionen Wolkens [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-19 5:47 [gentoo-commits] repo/gentoo:master commit in: games-board/pysolfc/ Ionen Wolkens
2025-09-19 5:47 Ionen Wolkens
2025-08-03 7:05 Ionen Wolkens
2025-02-22 3:07 Ionen Wolkens
2024-12-16 8:42 Ionen Wolkens
2024-11-24 11:01 Ionen Wolkens
2024-07-07 14:36 Michał Górny
2024-04-27 12:11 Ionen Wolkens
2024-04-06 21:09 Ionen Wolkens
2024-03-22 7:28 Arthur Zamarin
2023-07-11 5:25 Ionen Wolkens
2023-05-11 17:01 Ionen Wolkens
2023-04-24 3:43 Ionen Wolkens
2023-01-17 6:03 Ionen Wolkens
2022-10-20 13:34 Ionen Wolkens
2022-10-11 11:06 Ionen Wolkens
2022-05-26 6:07 Ionen Wolkens
2022-05-12 13:38 Ionen Wolkens
2022-04-29 11:23 Ionen Wolkens
2022-04-09 3:36 Ionen Wolkens
2021-12-16 19:11 Ionen Wolkens
2021-12-11 20:27 Ionen Wolkens
2021-11-14 0:45 Ionen Wolkens
2021-09-24 18:45 Ionen Wolkens
2021-09-22 22:26 Ionen Wolkens
2021-09-20 23:17 Ionen Wolkens
2021-08-30 9:04 Ionen Wolkens
2021-08-24 15:10 Ionen Wolkens
2019-07-29 22:24 James Le Cuirot
2019-01-27 12:24 Andrey Grozin
2019-01-27 12:22 Andrey Grozin
2018-09-19 17:31 Bernard Cafarelli
2018-06-21 11:27 Andrey Grozin
2016-09-06 19:17 David Seifert
2016-09-06 4:16 Austin English
2016-08-02 17:55 Austin English
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=1754204662.d45e835f2438d1f2a8f82bde41d99a62f82b4174.ionen@gentoo \
--to=ionen@gentoo.org \
--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