On Wed, Jun 28, 2023 at 6:12 AM Vitaly Zaitsev via devel <devel@lists.fedoraproject.org> wrote:
Results: 37 builds succeeded, 19 failed.

gnuradio

Issue filed upstream:
https://github.com/gnuradio/gnuradio/issues/6735

Also, not all the maintainers may review the devel list as closely. In the past when I've had a lot of affected packages I wrote a simple bash script that took the package names and output the <package>-maintainers@fedoraproject.org email so I could copy and paste it into my email client.

Not quite the way I did it but ChatGPT came up with this:
```
#!/bin/bash

# Specify the input file containing package names (one per line)
input_file="package_names.txt"

# Initialize an empty string to store the email addresses
email_addresses=""

# Read each package name from the input file
while IFS= read -r package_name; do
  # Construct the email address and append it to the string
  email_address="${package_name}-maintainers@fedoraproject.org"
  email_addresses+="${email_address};"
done < "$input_file"

# Remove the trailing semicolon, if any
email_addresses=${email_addresses%;}

# Print the final email addresses string
echo "$email_addresses"

```

Thanks,
Richard