Received: from mail-vk1-f172.google.com (mail-vk1-f172.google.com [209.85.221.172]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id CC4E97804E2 for ; Wed, 19 Oct 2022 23:38:46 +0000 (UTC) Received: by mail-vk1-f172.google.com with SMTP id v81so9019033vkv.5 for ; Wed, 19 Oct 2022 16:38:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=64lc2sV0tijAa6yeMDwa4DGYTFM62CvJoa2Y+B7l7Ys=; b=KWEr0BRGQz6a+YP/c1JA0SyLpgx5S3rXDC8+Y1Gd9FMgOTNzqrAWaqI2V3xMV6aZ5c KxVTYv9N1651LGNn5UWU2mWVinJWlUMRJa5nB91oSyEZSp1z13wAWON2RiLHBRGMhLhA Me/0OrYHvl+dGdwx4AitkEV4/EHA5UhIdeGYRsVvOtoWB4MejDXfEb+YgA+7HgWY9xmX KBPiR9Wx/TjZG7D+aeu7yoG1y0ExRJkJKegM9QHIF66+V+F2pG9c28QaVByhJ2URTvbd RTWQEFSaG+oSJKWveAN1o3dOuJ1h5H07gHciv6yqMR8NuZ29eIRuy8ir3BAwc0jt9jlB 2Dnw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=64lc2sV0tijAa6yeMDwa4DGYTFM62CvJoa2Y+B7l7Ys=; b=uYbLvPkYJdnsroVi2qEOHBomzZNdblbw2LXJ9w1j8naXg4dJQRCxFEiEClrhABg+BT w4mNnWej/H+UvHtv2RN0ZSjq1IKuyWvgk2xAg9Bh5AkHGxQmeCL+bf8fuJ/o88CsjMdv gjDVmq9D6uZlEAqHuy3W9jh177Yq70Zvy36EhmdfCGGKaVcYhZjlVHFiZXFx+rMUHW21 b1mAqY7ecoFtvX3Zqc0DrRP29vYf6Vk3kmbFTlCVSvi0vGEVEt5yS2YiK41SCJaxBYFC x0i0JMnoslFLowRu/3+hSAEvGhmxtxO4fq0CPneNmd7sgaWsHx/n5arpmOpG1iNchCI4 MRcQ== X-Gm-Message-State: ACrzQf1xb6Qq5kjDgdc9BcFfN7DGJZP7t/yIB7YKd6cOQfd6xLqvZpeM /mRLOFiTqPKxoPzXGDJPk98qo2FaSd3WuydSE9Jvps5psQY= X-Google-Smtp-Source: AMsMyM6LQW2L8dIt3j09DgN1dPTVcP/fAPHzIG6+xYotrCB8UhyHgUEk/Qp81P4NclCp/cqY4fnbrc/LPtGgASN4/bU= X-Received: by 2002:a1f:53c1:0:b0:3ae:f8ac:517d with SMTP id h184-20020a1f53c1000000b003aef8ac517dmr5254010vkb.2.1666222725565; Wed, 19 Oct 2022 16:38:45 -0700 (PDT) MIME-Version: 1.0 References: <8bc5d4bf-3a65-1340-8751-480d31b4849d@libero.it> In-Reply-To: <8bc5d4bf-3a65-1340-8751-480d31b4849d@libero.it> From: Konstantin Kulikov Date: Thu, 20 Oct 2022 02:38:34 +0300 Message-ID: Subject: Re: getting binaries of previous packages (python 2.7) To: Riccardo Mottola Cc: alpine-user Content-Type: text/plain; charset="UTF-8" Alpine packages are tar.gz archives you can download them from any mirror, check your /etc/apk/repositories for exact urls. I'd probably install previous alpine release in a chroot though, something like this: apk add --root ~/alp-3.15 --initdb --allow-untrusted --repository https://mirror.yandex.ru/mirrors/alpine/v3.15/main alpine-base chroot ~/alp-3.15 /bin/sh You can also use tools like unshare and bwrap to install and chroot without root rights. On Thu, Oct 20, 2022 at 1:55 AM Riccardo Mottola wrote: > > Hi, > > I need to install python 2.7 on my laptop, since it is used for building > certain browsers. > > I know it still runs, since on another system which I upgraded, it is > still there and still runs, but is not available for 3.16 anymore. > > 3.15 had it: > https://pkgs.alpinelinux.org/package/v3.15/community/x86/python2 > > is there a way to e.g. download the binary and install it by hand? > > Riccardo