diff options
-rw-r--r-- | python3-wheel/.footprint | 16 | ||||
-rw-r--r-- | python3-wheel/.signature | 8 | ||||
-rw-r--r-- | python3-wheel/Pkgfile | 17 |
3 files changed, 26 insertions, 15 deletions
diff --git a/python3-wheel/.footprint b/python3-wheel/.footprint index dba8810dd..1dc7aa22a 100644 --- a/python3-wheel/.footprint +++ b/python3-wheel/.footprint @@ -4,14 +4,14 @@ drwxr-xr-x root/root usr/bin/ drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/python3.9/ drwxr-xr-x root/root usr/lib/python3.9/site-packages/ -drwxr-xr-x root/root usr/lib/python3.9/site-packages/wheel-0.36.2-py3.9.egg-info/ --rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.36.2-py3.9.egg-info/PKG-INFO --rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.36.2-py3.9.egg-info/SOURCES.txt --rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.36.2-py3.9.egg-info/dependency_links.txt --rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.36.2-py3.9.egg-info/entry_points.txt --rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.36.2-py3.9.egg-info/not-zip-safe --rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.36.2-py3.9.egg-info/requires.txt --rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.36.2-py3.9.egg-info/top_level.txt +drwxr-xr-x root/root usr/lib/python3.9/site-packages/wheel-0.37.0-py3.9.egg-info/ +-rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.37.0-py3.9.egg-info/PKG-INFO +-rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.37.0-py3.9.egg-info/SOURCES.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.37.0-py3.9.egg-info/dependency_links.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.37.0-py3.9.egg-info/entry_points.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.37.0-py3.9.egg-info/not-zip-safe +-rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.37.0-py3.9.egg-info/requires.txt +-rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel-0.37.0-py3.9.egg-info/top_level.txt drwxr-xr-x root/root usr/lib/python3.9/site-packages/wheel/ -rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel/__init__.py -rw-r--r-- root/root usr/lib/python3.9/site-packages/wheel/__main__.py diff --git a/python3-wheel/.signature b/python3-wheel/.signature index 8358cb976..ab022511d 100644 --- a/python3-wheel/.signature +++ b/python3-wheel/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF3xsyImzpbQh7ybqmvNIsmRNChytLX65EbRzPk8Gro1ROjwDF6FE1pGbvaM7b1LqIP0qguEusygPLwYiP5ggY+AY= -SHA256 (Pkgfile) = 5ae4d8aea1ab8e2ea678d5bf114f6dc1ced46d56e5fadfb03d4ecea7e73b6099 -SHA256 (.footprint) = 832ed1a9a758718621871f501cc25880bd350b13368f7447c0944fafb0449d5f -SHA256 (wheel-0.36.2.tar.gz) = 140ed102dd17e27e7cfd20c431b0b7204317ff44ab2cd382d0d8046d1db85a46 +RWSagIOpLGJF3yde59LXVGo8jDyolCjb6liS40Jux5X46UhQXaXBzKcM6XEPNgsVZ5xf6ALpwHDelAKX0xkPdJTWRbtUCuxWXQA= +SHA256 (Pkgfile) = 070bf42c23fae047509a0dd10902974314442918951a466bc56b3c5421ad1880 +SHA256 (.footprint) = 019e7489f3e28d036edbcfbb47370e0f35f724c3ba80f8cd75503723bfce929f +SHA256 (wheel-0.37.0.tar.gz) = e2ef7239991699e3355d54f8e968a21bb940a1dbf34a4d226741e64462516fad diff --git a/python3-wheel/Pkgfile b/python3-wheel/Pkgfile index 41df261f1..8256a44c2 100644 --- a/python3-wheel/Pkgfile +++ b/python3-wheel/Pkgfile @@ -4,12 +4,23 @@ # Depends on: python3-setuptools name=python3-wheel -version=0.36.2 +version=0.37.0 release=1 -source=(# https://files.pythonhosted.org/packages/source/w/wheel/${name#*-}-$version.tar.gz +source=(https://files.pythonhosted.org/packages/source/w/wheel/${name#*-}-$version.tar.gz # bsdtar: Pathname can't be converted from UTF-8 to current locale. # bsdtar: Error exit delayed from previous errors. - http://crux.ster.zone/downloads/$name/${name#*-}-$version.tar.gz) + #http://crux.ster.zone/downloads/$name/${name#*-}-$version.tar.gz) + ) +unpack_source() { + for file in ${source[@]}; do + case ${file##*/} in + ${name#*-}-$version.tar.gz) + tar xfvz $(get_filename $file) -C $SRC ;; + *) + cp $(get_filename $file) $SRC ;; + esac + done +} build() { cd ${name#*-}-$version |