-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/firebase-messaging: add 0.2.1
Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
5 changed files
with
44 additions
and
10 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
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
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,3 +1,5 @@ | ||
DIST firebase_messaging-0.2.0.tar.gz 30254 BLAKE2B 8d69559c9ccb78f2fad190222a582d59609e0c031caf9e0ea3cca6097551e9d232958cee1f86aa4e9e114087030ae6b91901e9f09b208989e21407d8da8ece62 SHA512 d4aa99390d7d5686d797543c0954486dd513ab2ae9d603043a49d9c4b145e5f1ead73f68e210e06b962d07de8e9b66999134384589c33d5b7511795b0c4622ca | ||
EBUILD firebase-messaging-0.2.0.ebuild 773 BLAKE2B 01fa69a1ee3a1ded3a7ec34a1f8d836fd7ebddd447a033d8435773fcdc95e9cead4c83d2de53ca335a41f19e4f98b04a6a12dcef83a89cfc2242c5aba0dec678 SHA512 7c0fea4c1555792b7991774d16ed641e55a45f8a454b5bc70ac0e19e562b2bd543f4b4aa04ec52b493b78180b686769b239384413c28d5f8b9366737228012a1 | ||
DIST firebase_messaging-0.2.1.tar.gz 37094 BLAKE2B ad01fdc6ef806cb0790d861ec130e1adc018b84c2faec02fdcd5ae5bca8a7f67475cedc6b2a997085b77c025a06d0d5fe58151696e665525cf96af0bfca155aa SHA512 b1bc23607b65125894391953cd55765ef0ba9b148e4c5c8799d3501b7467324c39225cb1020b4d236c66946d376930a71a5a102bf4c1de02776128fdf44fad52 | ||
EBUILD firebase-messaging-0.2.0.ebuild 773 BLAKE2B ff3e1394b2ecb94a439e48e8d940bb3f8bf8bde5598eff341afd340621afc403c9efbcbfacd6f09c5144fc54d1062b15ee4238f1455e795a9fae96d2552ad851 SHA512 100a338a337df3b3592fa99600d0ba532928385800e4afdbe7106fc0d6f5b1681d41dbf50a80622012e0e20c3663faea1905b84bd86117135befa5dcfd1b0c57 | ||
EBUILD firebase-messaging-0.2.1.ebuild 772 BLAKE2B 4f0bed32da10a47ae6a01cda917d6f4afd954b8eba1c73bc18fd2d5d18cc6d5ce8759cdd15bd0c0bf80c980dde5ca1466d5e9a3fa3b2a232bad389a8e4fe382b SHA512 666393227015d7c28780e3e87a3b0d0760f48bfeb6e43c41383f3345b25b9f54df6d4803e8d2c5e012af92d6adaf2903af03753f62790f0631eab6cf3e85f9d7 | ||
MISC metadata.xml 527 BLAKE2B 7054232f080da173ff6daead76ec025aa379e33a7dc6a456d3c482dcbb3191fad0b674f4eff15ed6553c977741dfd7d91134aaf31c6d75af658d961902c1ebb7 SHA512 c5d888eb9ea0e1d8944526d159d3d272186d22ea37483615a4373abb330ff402b05f72422c1b6e4f440cc6806bd190c5af64a44e79d62e13312cf2317d961109 |
4 changes: 2 additions & 2 deletions
4
dev-python/firebase-messaging/firebase-messaging-0.2.0.ebuild
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
33 changes: 33 additions & 0 deletions
33
dev-python/firebase-messaging/firebase-messaging-0.2.1.ebuild
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,33 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=poetry | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="FCM/GCM push notification client" | ||
HOMEPAGE="https://github.com/sdb9696/firebase-messaging https://pypi.org/project/firebase-messaging/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.rst" | ||
|
||
RDEPEND=" | ||
dev-python/protobuf-python[${PYTHON_USEDEP}] | ||
dev-python/aiohttp[${PYTHON_USEDEP}] | ||
dev-python/http-ece[${PYTHON_USEDEP}] | ||
dev-python/cryptography[${PYTHON_USEDEP}] | ||
" | ||
|
||
src_prepare() { | ||
remove uneccesary include | ||
sed "27,30d" -i pyproject.toml || die | ||
eapply_user | ||
} | ||
distutils_enable_tests pytest |