-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
88 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env bash | ||
name='py3-certifi' | ||
release='1' | ||
version='2024.12.14' | ||
url='https://github.com/certifi/pyhon-certifi' | ||
description='(Python Distribution) A carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts.' | ||
email='[email protected]' | ||
maintainer='akarsu' | ||
license=('MIT') | ||
source=("https://github.com/certifi/python-certifi/archive/refs/tags/$version.tar.gz") | ||
depends=(python) | ||
makedepends=(py3-setuptools) | ||
sha256sums=('d9045cb5da5ee9678db7020990535a41dfb0779999adbedb375ae7dfdeb4b894') | ||
group=(dev.python) | ||
uses=() | ||
arch=('x86_64') | ||
|
||
cd "python-certifi"-$version | ||
|
||
|
||
build(){ | ||
python3 -m build | ||
} | ||
|
||
package(){ | ||
python3 -m installer --destdir ${DESTDIR} dist/*.whl | ||
} | ||
|
||
|
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,29 @@ | ||
#!/usr/bin/env bash | ||
name='py3-chardet' | ||
release='1' | ||
version='5.2.0' | ||
url='https://github.com/chardet/chardet' | ||
description='https://github.com/chardet/chardet/tags' | ||
email='[email protected]' | ||
maintainer='akarsu' | ||
license=('MIT') | ||
source=("https://github.com/chardet/chardet/archive/refs/tags/$version.tar.gz") | ||
depends=(python) | ||
makedepends=(py3-setuptools) | ||
sha256sums=('07249fb7bdf1fc669e2fb0eba58afe18fe6c5e3187ee806f22969f0e809a32dd') | ||
group=(dev.python) | ||
uses=() | ||
arch=('x86_64') | ||
|
||
cd "chardet"-$version | ||
|
||
|
||
build(){ | ||
python3 -m build | ||
} | ||
|
||
package(){ | ||
python3 -m installer --destdir ${DESTDIR} dist/*.whl | ||
} | ||
|
||
|
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,29 @@ | ||
#!/usr/bin/env bash | ||
name='py3-idna' | ||
release='1' | ||
version='3.10' | ||
url='https://github.com/kjd/idna' | ||
description=' Internationalized Domain Names for Python (IDNA 2008 and UTS #46)' | ||
email='[email protected]' | ||
maintainer='akarsu' | ||
license=('MIT') | ||
source=("https://github.com/kjd/idna/archive/refs/tags/v$version.tar.gz") | ||
depends=(python) | ||
makedepends=(py3-setuptools) | ||
sha256sums=('04f6b013c384deca20a165a4cdf36823465a81c2bb914c40b543802d39e1cb1a') | ||
group=(dev.python) | ||
uses=() | ||
arch=('x86_64') | ||
|
||
cd "idna"-$version | ||
|
||
|
||
build(){ | ||
python3 -m build | ||
} | ||
|
||
package(){ | ||
python3 -m installer --destdir ${DESTDIR} dist/*.whl | ||
} | ||
|
||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ email='[email protected]' | |
maintainer='akarsu' | ||
license=('Apache') | ||
source=("https://github.com/psf/requests/archive/refs/tags/v${version}.tar.gz") | ||
depends=() | ||
depends=(py3-certifi py3-idna py3-urllib3 python) | ||
makedepends=(py3-build py3-wheel py3-setuptools) | ||
md5sums=('fb734df6b273e30f68f9346dbf72aa34') | ||
group=(dev.python) | ||
|