-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2171 from blshkv/master
pymobiledevice3
- Loading branch information
Showing
8 changed files
with
47 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
DIST ipsw_parser-1.3.1.tar.gz 51596 BLAKE2B c3800d0ad6b8bc2dee87ed36b6c4c5584149a9474e2d62e21da04d4824913d974f3ac9f4906ae4682c93d76e2db61579c89508d992fa0ad6cb0a084514753919 SHA512 d3c31480ecc15eaf87282f84268297765ec4629d95adf8d9e78e580e5761b8451ab421fc9d9897c09a1ecc23300301bee36e11d705d639228f50c4c4fe9be7e4 | ||
DIST ipsw_parser-1.3.7.tar.gz 52307 BLAKE2B 6eefd39df20d7985bcdb9469fe66689ffbd6fbb7efb1f4c4172dcfbe0af89933fc3ab39ecf2457ecdf0b90d2406afd37ea4b98b53a272e4fbdaa58ea0e87593f SHA512 a8f0201eda578c57d29cf30c94d24e28b2c72b71daf4cc6a6b49e059080f2dcb38ee5f326a4e3063367c30d83211421eb78180c79a59550ba7bac8fccf87794a | ||
DIST ipsw_parser-1.3.9.tar.gz 52883 BLAKE2B c50cab5bbbd0143e84b3be6fb7ec3fe0da292caec8bb67933863a5fd992432cc95be196c3c9d9c9afef9a8532acc45e343cd7aa6ce9f3d18668d32a34a499419 SHA512 85b5778b9f87eeb5ca9ab21b352553a88cce377384a3e202b54723d031305d8df49713d48758b686191450f3a1b7f00dadca50009855cc7f0fe8d21b90b0769f |
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
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 @@ | ||
DIST remotezip2-0.0.2.tar.gz 9967 BLAKE2B 983377f791999f5c1ecdfd8146ea106b800a543b1f445dd7bf102bca11677b7a7d752a83562966eed8989e251c30625ecc8d5b4c95f6b29ce731fa63e725aa84 SHA512 1221aac7bc9a92615f3985d4debdc58f467dbf5a2fcf16a87ef5c8b4750b10ea0f65220fd8af354ab2d0876eda10857a152e892ce1fa758268ec1811d0fc73c5 |
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,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Author Unknown</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">gtsystem/python-remotezip</remote-id> | ||
<remote-id type="pypi">remotezip2</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
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,26 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{10..12} ) | ||
|
||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Access zip file content hosted remotely without downloading the full file." | ||
HOMEPAGE="https://github.com/doronz88/python-remotezip2" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 ~arm64 x86" | ||
|
||
RDEPEND=" | ||
dev-python/requests[${PYTHON_USEDEP}] | ||
dev-python/tabulate[${PYTHON_USEDEP}] | ||
!dev-python/remotezip" | ||
|
||
DEPEND="${RDEPEND}" | ||
REQUIRED_USE="${PYTHON_REQUIRED_USE}" | ||
|
||
#distutils_enable_tests pytest |