diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2019-03-18 18:54:42 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2019-03-18 18:54:42 +0000 |
commit | 32c38901a3117b823697bdcd7adafec4607912d6 (patch) | |
tree | 23f9d3ffcaf5505c086cd4f0ca026f58b08fec38 /user/py3-certifi | |
parent | 40254b068b9389c30608184e33ffce42ee3fc74c (diff) | |
parent | 86bc7fce4c621370283feab618a2911c365d5deb (diff) | |
download | packages-32c38901a3117b823697bdcd7adafec4607912d6.tar.gz packages-32c38901a3117b823697bdcd7adafec4607912d6.tar.bz2 packages-32c38901a3117b823697bdcd7adafec4607912d6.tar.xz packages-32c38901a3117b823697bdcd7adafec4607912d6.zip |
Merge branch 'zlg.2019-03' into 'master'
zlg's package bumps for March 2019
This is a routine package upgrade. There is one thing to note, however:
* `py3-pyyaml` has a minor issue building due to a missing `ext/_yaml.c` file. It
appears that a tool is used to generate the `.c` file it needs to compile the
module. It falls back to pure-Python mode and passes all tests, however.
I hand-tested `py3-pyyaml` by using vgstash to export a game collection to yaml (everything worked fine) and received a test cert from
`certbot` to confirm the bumps didn't break anything affected on my system, since they're the two largest consumers of what was bumped.
This should be the last version bump from me until post-1.0-BETA3, barring security bumps.
See merge request !202
Diffstat (limited to 'user/py3-certifi')
-rw-r--r-- | user/py3-certifi/APKBUILD | 6 | ||||
-rw-r--r-- | user/py3-certifi/use-system-certs.patch | 10 |
2 files changed, 6 insertions, 10 deletions
diff --git a/user/py3-certifi/APKBUILD b/user/py3-certifi/APKBUILD index a67195293..26f6b81f5 100644 --- a/user/py3-certifi/APKBUILD +++ b/user/py3-certifi/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: zlg <zlg+adelie@zlg.space> pkgname=py3-certifi _pkgname=${pkgname#py3-} -pkgver=2018.11.29 +pkgver=2019.3.9 pkgrel=0 pkgdesc="Python package for providing Mozilla's CA Bundle" url="https://pypi.org/project/certifi" @@ -26,5 +26,5 @@ package() { python3 setup.py install --prefix=/usr --root="$pkgdir" } -sha512sums="6a6bf1ff98caefcdbf78a8c83e11e155368bacdd806f0ae0c6afa8f513667df6598e594b3584de61acdca3d6049f4a776937f2aa8672b602bd6db7b737f6074e certifi-2018.11.29.tar.gz -1de38c55102b41bc91870b4810de89d8b0cffd61ba14257fe6c8445173b8b44153f2736050772eb63dd0a755890afe0f2d27516bbd39f05bf4016a4e29eebb67 use-system-certs.patch" +sha512sums="d86559b0d384f8114245b169391c73d5e6df02ba411cf9706c9d4e5958eeef610b6550bcb5eb519856b8fa25f3f5eb1cea02c0df1f6df72e16da8201732b0dd9 certifi-2019.3.9.tar.gz +afa381a68bbf117fcebb4cd020d8134dcf7c641a3258231249804c4b66d1c2c59fafe2dc1e55f0ddc2e269ad5f49ab10b96fd73d243d7b1df78f15fe70f279e4 use-system-certs.patch" diff --git a/user/py3-certifi/use-system-certs.patch b/user/py3-certifi/use-system-certs.patch index bf315aa2f..231e8c94d 100644 --- a/user/py3-certifi/use-system-certs.patch +++ b/user/py3-certifi/use-system-certs.patch @@ -1,13 +1,9 @@ ---- a/certifi/core.py 2018-01-18 12:27:24.000000000 -0800 -+++ b/certifi/core.py 2018-11-20 18:08:48.230610538 -0800 -@@ -19,9 +19,7 @@ - +--- a/certifi/core.py ++++ b/certifi/core.py +@@ -12,5 +12,3 @@ def where(): - f = os.path.dirname(__file__) - - return os.path.join(f, 'cacert.pem') + return "/etc/ssl/certs/ca-certificates.crt" - - - def old_where(): |