mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
4d0da596b3
Now that we have moved to Meson, we are no longer required to use a specific name for this file, and since the rest of our documentation is in reStructuredText format and uses a matching file extension, we can give the AUTHORS file the same treatment. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
9 lines
177 B
Python
Executable File
9 lines
177 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
|
|
meson_source_root = os.environ['MESON_SOURCE_ROOT']
|
|
|
|
os.chdir(meson_source_root)
|
|
os.system('git log --pretty=format:"* %aN <%aE>" | sort -u')
|