Received: from mail-pj1-f45.google.com (mail-pj1-f45.google.com [209.85.216.45]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 89F44781A6A for <~alpine/apk-tools@lists.alpinelinux.org>; Fri, 14 Feb 2020 03:55:49 +0000 (UTC) Received: by mail-pj1-f45.google.com with SMTP id r67so3302639pjb.0 for <~alpine/apk-tools@lists.alpinelinux.org>; Thu, 13 Feb 2020 19:55:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chave-us.20150623.gappssmtp.com; s=20150623; h=mime-version:from:date:message-id:subject:to; bh=flr70GXNMNMjRf6k+Fldwafe1dxWprf/FiN/x/BQSj4=; b=b6l+uRsLl5C3iCyHmAZBggM2CUXnCKB166xyaboXM6Jao4iXhg1xdM2sbqIZ+bkNqU Mf+WsE3BnoMHx6GB5euXSJnWYBwvTWCDEi6oGTrPssZa6wk459Ze5F2ECbOnZGXY4dn9 H07/el+Sfv9Rkp7hHfJs2LdkLRNQj9N/poZdkjLcpgAbHy+q4m6LpGHt9j95fL02kuH+ eZDskJ4/PYaLdnk1co2F2MXHUIuUln2nwv2hfWtI1PPWqz4W7rZEOGtpl+RhRtWraISM VzcUiLOw/5+bHQvvNB77IUrFwlj5Q711Lukq5hyMLFF9x8ENTielTBl+24vjEjVb3/Wt 4kbA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=flr70GXNMNMjRf6k+Fldwafe1dxWprf/FiN/x/BQSj4=; b=t8bSfK6WMwJcyzebMrAT9SpGpgJKz3JL64kMT7d32aRvYYyKKXHSOzQ5aLidg1gJRe CelBN9axIizD4glOV/G+bwHzLP8LU7iAAve/fgq+3KwZHkCKxQKEfVwz9DNpu8HLU+/r Hpb1Dsj18Zw1l6kyzAxHdfpwAED4Zu86UGvAkrOtiX35eFE1EYWXMfW8Sk87x8zH2iTU pSzgk0lCNlcunn9uRVg4ZxwHajDFa7B+5SO4tq/N9/2tMPSyMmFd85LW6xcNcFzaS19l +E/aSNTcldm3uoI+lLFBHKKXZn06hAM7wCHxN+jHcT/+bvtzxpKdQsLRoAn4sKqOtDtf E44Q== X-Gm-Message-State: APjAAAWnggtH/74l0uHTvOXfR88ucrT/0blwG4JRLSu+/VNbh/BOnz+7 jySyNFML34Ol8AhxGYvGyLSxGfdsBjUcI13HDTFTGi4hPY8= X-Google-Smtp-Source: APXvYqxIt1Gt3ExLcPqWP2BgNCKe8E5Arpw4WBpPHo6NsdsWLhr3raEXDDjT64GKPrBoCEpb+QFtGP59gKWYWBZHCtQ= X-Received: by 2002:a17:902:aa04:: with SMTP id be4mr1334919plb.41.1581652547745; Thu, 13 Feb 2020 19:55:47 -0800 (PST) MIME-Version: 1.0 From: Carl Chave Date: Thu, 13 Feb 2020 22:55:37 -0500 Message-ID: Subject: APK Package Name Issue on armel port To: ~alpine/apk-tools@lists.alpinelinux.org Content-Type: text/plain; charset="UTF-8" I have a running armel port of an alpine base system on an old Dell/Kace M300 SBC appliance. It seems to be running very well except that I can't install any packages with apk and I'm completely out of ideas on how to fix it. I _think_ there's something going on with apk's ability to locate packages based on their short names. For example, on a working system I can do: sodco:/home/sodface# apk list file file-5.38-r0 x86_64 {file} (BSD-2-Clause) [installed] file-5.37-r1 x86_64 {file} (BSD-2-Clause) and get results. On the armel system, the same command produces no output m300-01:/home/sodface# apk list file m300-01:/home/sodface# However if I add a wildcard I get results: m300-01:/home/sodface# apk list file* file-5.37-r1 armel {file} (BSD-2-Clause) file-dev-5.37-r1 armel {file} (BSD-2-Clause) file-doc-5.37-r1 noarch {file} (BSD-2-Clause) apk update seems to be aware of all the packages: m300-01:/home/sodface# apk update OK: 317 distinct packages available I see the same sort of thing with other apk operations, like fetch and list. So when I try to apk add a package it always comes back with unsatisfiable constraints that the package is missing and displays the package short name. Any help would be very much appreciated. Carl