Skip to content

Commit da425d1

Browse files
AUTHORS: Convert to reStructuredText
Like NEWS, this was very close to being a valid Markdown document before, and now it's a valid reStructuredText one. Signed-off-by: Andrea Bolognani <[email protected]> Reviewed-by: Erik Skultety <[email protected]> Reviewed-by: Pavel Hrdina <[email protected]>
1 parent de60df3 commit da425d1

File tree

5 files changed

+22
-21
lines changed

5 files changed

+22
-21
lines changed

AUTHORS.in

-16
This file was deleted.

AUTHORS.rst.in

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
====================
2+
libvirt-dbus Authors
3+
====================
4+
5+
The libvirt-dbus project was started by:
6+
7+
* Lars Karlitski <[email protected]>
8+
* Pavel Hrdina <[email protected]>
9+
10+
The primary maintainers of libvirt-dbus are:
11+
12+
* Katerina Koukiou <[email protected]>
13+
* Pavel Hrdina <[email protected]>
14+
15+
Patches have been received from:
16+
17+
@contributorslist@

libvirt-dbus.spec.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ getent passwd %{system_user} >/dev/null || \
5050
exit 0
5151

5252
%files
53-
%doc AUTHORS NEWS.rst
53+
%doc AUTHORS.rst NEWS.rst
5454
%license COPYING
5555
%{_sbindir}/libvirt-dbus
5656
%{_datadir}/dbus-1/services/org.libvirt.service

meson.build

+3-3
Original file line numberDiff line numberDiff line change
@@ -256,11 +256,11 @@ if git
256256
authors = run_command('tools/gen-authors.sh')
257257
configure_file(
258258
configuration: { 'contributorslist': authors.stdout() },
259-
input: 'AUTHORS.in',
260-
output: 'AUTHORS',
259+
input: 'AUTHORS.rst.in',
260+
output: 'AUTHORS.rst',
261261
)
262262

263-
foreach file : [ 'libvirt-dbus.spec', 'AUTHORS' ]
263+
foreach file : [ 'libvirt-dbus.spec', 'AUTHORS.rst' ]
264264
meson.add_dist_script('tools/dist.sh', meson.build_root(), file)
265265
endforeach
266266
endif

tools/gen-authors.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22

33
cd $MESON_SOURCE_ROOT
4-
git log --pretty=format:' %aN <%aE>' | sort -u
4+
git log --pretty=format:'* %aN <%aE>' | sort -u

0 commit comments

Comments
 (0)