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>-
maintain...@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}-maintain...@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
_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
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.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to