Skip to content

Commit

Permalink
Merge branch 'release-scripts'
Browse files Browse the repository at this point in the history
* release-scripts:
  Add a script to generate changelog
  Add a script to add new contributors
  Rellocate some text in CONTRIBUTORS.md
  • Loading branch information
azat committed Nov 20, 2022
2 parents 650d861 + acd4cc6 commit e28b3be
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
_If we have forgotten your name, please contact us_

## Libevent Contributors
* Samy Al Bahra
* Antony Antony
Expand Down Expand Up @@ -201,5 +203,3 @@
* Philip Prindeville
* Vis Virial
* Sayan Nandan

If we have forgotten your name, please contact us
43 changes: 43 additions & 0 deletions extra/release/changelog.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#!/usr/bin/env python3

import git
import argparse
import re

def parse_opts():
p = argparse.ArgumentParser()
p.add_argument('--git-root', default='.')
p.add_argument('--no-squash-merge-childs', action='store_true')
p.add_argument('--abbrev', default=8, type=int)
# git config pretty.le
p.add_argument('--format', default=' o %(s)s (%(h)s %(aN)s)')
p.add_argument('--revision-range')
return p.parse_args()

def main():
opts = parse_opts()
repo = git.Repo(opts.git_root)
squash = not opts.no_squash_merge_childs

ignore = []

revision_range = opts.revision_range
if not revision_range:
revision_range = repo.git.describe('--abbrev=0') + '..'

for commit in repo.iter_commits(revision_range):
if squash:
if commit.hexsha in ignore:
continue
if len(commit.parents) > 1:
for c in repo.iter_commits('{}..{}'.format(*commit.parents)):
ignore.append(c.hexsha)
print(opts.format % {
's': commit.summary,
'h': commit.hexsha[:opts.abbrev],
'aN': str(commit.author),
})


if __name__ == "__main__":
main()
24 changes: 24 additions & 0 deletions extra/release/update-contributors.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env bash

function path_in_repo()
{
echo "$(git rev-parse --show-toplevel)/$*"
}
function main()
{
local new_contributors
new_contributors="$(mktemp libevent.XXXXXX)"
trap "rm $new_contributors $new_contributors.filtered" EXIT

git log "$(git describe --abbrev=0)..HEAD" --pretty='format:%cN%n%aN' > "$new_contributors"
awk '/^ \* / { split($0, cols, " \\* "); print(cols[2]); }' "$(path_in_repo CONTRIBUTORS.md)" | {
grep -F -x -v -f "$new_contributors"
} | {
local grep_patterns=(
GitHub
)
grep -F -x -v "${grep_patterns[@]}"
} > "$new_contributors.filtered"
awk '{printf(" * %s\n", $0)}' "$new_contributors.filtered" >> "$(path_in_repo CONTRIBUTORS.md)"
}
main "$@"

0 comments on commit e28b3be

Please sign in to comment.