Skip to content

Commit

Permalink
chore: Regenerate authors & packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gavv committed Jun 12, 2024
1 parent c42fab9 commit 7d71c73
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,9 @@ Copyright:
Alyssa Ross <[email protected]>
Arseniy136 <[email protected]>
Amandeep Singh <[email protected]>
Veronika <[email protected]>
Samuel Thibault <[email protected]>
James Osborn <https://github.com/JamesOsborn-SE>
LinaLinn <[email protected]>
Poussinou <[email protected]>
License: MPL-2.0
5 changes: 5 additions & 0 deletions docs/sphinx/about_project/authors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,8 @@ Contributors
* Alyssa Ross <[email protected]>
* Arseniy136 <[email protected]>
* Amandeep Singh <[email protected]>
* Veronika <[email protected]>
* Samuel Thibault <[email protected]>
* James Osborn <https://github.com/JamesOsborn-SE>
* LinaLinn <[email protected]>
* Poussinou <[email protected]>
2 changes: 1 addition & 1 deletion rpm/roc-toolkit.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%undefine _disable_source_fetch

Name: roc-toolkit
Version: 0.3.0
Version: 0.4.0
Release: 1%{?dist}
Summary: Real-time audio streaming over the network
License: MPL-2.0 AND CECILL-C AND BSD
Expand Down
6 changes: 3 additions & 3 deletions scripts/update_authors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function find_email() {
then
local github_email="$(gh api "/users/$1/events/public" \
--jq '(.[].payload.commits | select(. != null))[].author.email' \
| grep -v users.noreply.github.com \
| grep -v noreply \
| sort -u \
| head -1)"

Expand All @@ -47,7 +47,7 @@ function find_email() {
if [[ ! -z "${2:-}" ]]
then
local gitlog_email="$(git log --all --pretty=format:"%an <%ae>" | sort -u | \
grep -vF users.noreply.github.com | grep -F "$2" | sed -re 's,.*<(.*)>,\1,')"
grep -vF noreply | grep -F "$2" | sed -re 's,.*<(.*)>,\1,')"

if [[ "${gitlog_email}" != "" ]]
then
Expand Down Expand Up @@ -81,7 +81,7 @@ function update_author() {
contact_name="$(echo "${contact_name}" | sed -re 's,(\S+)\s+(\S+),\u\1 \u\2,g')"

local contact_addr=""
if [[ -z "${commit_email}" ]] || echo "${commit_email}" | grep -q users.noreply.github.com
if [[ -z "${commit_email}" ]] || echo "${commit_email}" | grep -q noreply
then
contact_addr="$(find_email "${github_login}" "${commit_name}")"
else
Expand Down

0 comments on commit 7d71c73

Please sign in to comment.