> On 26 Nov 2025, at 01:33, Ian Pilcher via copr-devel 
> <[email protected]> wrote:
> 
> This is bizarre.
> 
> I just built a package in COPR:
> 
>  https://copr.fedorainfracloud.org/coprs/ipilcher/grip/
> 
> Everything seems OK in the COPR interface, but DNF refuses to install
> it.
> 
> # rpm -q python3-grip
> package python3-grip is not installed
> 
> # rpm -q --whatprovides python3-grip
> no package provides python3-grip
> 

For packages that are on PyPI I use this bash function.
```
function copr_build() {
    PACKAGE_NAME=${1:?package name}
    for ARCH in x86_64 aarch64
    do
        copr-cli buildpypi --chroot=${RPM_ROOT}-${ARCH} 
--packagename=${PACKAGE_NAME} --pythonversions=3 ${COPR_REPO}
    done
}
```

I'm sure you can figure out what the ${variables} need to be defined as.

Barry


-- 
_______________________________________________
copr-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/[email protected]
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to