summaryrefslogtreecommitdiff
path: root/auto
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
committerdavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
commitd2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch)
tree684a17eebf446aa1adab1097616f1882c8d51568 /auto
parentd1fc3393cca72e8e432f827f7624e38734fad6dc (diff)
added deps for qemu
Diffstat (limited to 'auto')
-rwxr-xr-xauto/port-alpine.sh2
-rwxr-xr-xauto/pypi.sh15
2 files changed, 10 insertions, 7 deletions
diff --git a/auto/port-alpine.sh b/auto/port-alpine.sh
index 9db5521..149572e 100755
--- a/auto/port-alpine.sh
+++ b/auto/port-alpine.sh
@@ -15,8 +15,8 @@ additional=$(ls $pkgbuild | grep -v ^APKBUILD$)
. $apkbuild
+name=${2:-$pkgname}
-name=$pkgname
name=$(echo $pkgname | sed 's/py3-/python-/' )
version=$pkgver
diff --git a/auto/pypi.sh b/auto/pypi.sh
index d78ba13..f468e72 100755
--- a/auto/pypi.sh
+++ b/auto/pypi.sh
@@ -17,10 +17,13 @@ if [ "$(curl -s -o /dev/null -w "%{http_code}" $json_url)" != 200 ] ; then
fi
json=$(curl -SsL $json_url)
-version=$(echo $json | jq -r '.info.version')
-desc=$(echo $json | jq -r '.info.summary')
-url=$(echo $json | jq -r '.urls[] | select((.version="1.0.3")) | .url' | grep -v "whl" | sed "s/$version/\$PKG_VER/g")
-deps=$(echo $json | jq -r '.info.requires_dist | .[]' | cut -d' ' -f1 | tr '\n' ' ')
+version=$(printf "%s" "$json" | jq -r '.info.version')
+desc=$(printf "%s" "$json" | jq -r '.info.summary')
+#url=$(printf "%s" "$json" | jq -r '.urls[] | select((.version="1.0.3")) | .url' | grep -v "whl" | sed "s/$version/\$PKG_VER/g")
+
+url="https://files.pythonhosted.org/packages/source/${name%${name#?}}/$name/$name-\$PKG_VER.tar.gz"
+
+deps=$(printf "%s" "$json" | jq -r '.info.requires_dist | .[]' | cut -d' ' -f1 | tr '\n' ' ')
if [ ${#deps} != 0 ]; then
package_deps=$(echo $deps | sed 's/\(\w*\)/python-\1/g')
echo $package_deps
@@ -31,8 +34,7 @@ echo DESC: $desc
echo SOURCE: $url
echo DEPS: $package_deps
-file=repo/python-$name.xibuild
-
+file=repo/python-$name/python-$name.xibuild
inp=templates/pypi.xibuild
if [ -f $file ]; then
inp=$file
@@ -52,6 +54,7 @@ if [ ${#deps} != 0 ]; then
sed -i "s/^DEPS=.*/DEPS=\"$package_deps\"/g" $tmp
fi
+mkdir -p repo/python-$name
mv $tmp $file
printf "${GREEN}Written to $file${RESET}\n"