forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michał Górny <[email protected]>
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST Pebble-5.0.2.tar.gz 29066 BLAKE2B 551d5d02964b7d64c7892dafff51c92830d25b77335f251a8b2359e0d53932470545569155e8fd5d4f95945e337a3ca490cdd9791474a1ede4a021524de0561c SHA512 7b66f1af70f6e7a5b28dd53b73124cdc87b37014ee5afafa8d68ccade691f05b20073de7867d28f3a15bf5e8139411fb71316c8f603d8f9cbeac3818e6ab96f1 | ||
DIST Pebble-5.0.3.tar.gz 29076 BLAKE2B d140cc0abd08cb5d6031a3fb8ba6f573e273f865d23e8854e9e540e115b030cabd07d8517f94b542216294abd742960b3addda592f0e7d31662bd10b224c8d7b SHA512 324cba58905b0be76b2cd56e0ee5d3e51a36d46a7754fbccb1f9307af0747c2f02b81d137e2c4bce1c766706b70ce1a909c3b287676db147c202cab7445fc764 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright 2020-2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{8..11} ) | ||
|
||
inherit distutils-r1 | ||
|
||
MY_P=${P^} | ||
DESCRIPTION="Threading and multiprocessing eye-candy" | ||
HOMEPAGE=" | ||
https://pebble.readthedocs.io/ | ||
https://github.com/noxdafox/pebble/ | ||
https://pypi.org/project/Pebble/ | ||
" | ||
SRC_URI="mirror://pypi/${MY_P::1}/${PN^}/${MY_P}.tar.gz" | ||
S=${WORKDIR}/${P^} | ||
|
||
LICENSE="LGPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" | ||
|
||
distutils_enable_tests pytest |