• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H03-Feb-2021-1,6121,035

ci/containers/H03-Feb-2021-901833

docs/H03-May-2022-247236

osinfo/H03-Feb-2021-23,54413,287

po/H03-Feb-2021-13,98710,854

tests/H03-Feb-2021-7,9276,559

tools/H03-Feb-2021-1,7961,055

.dir-locals.elH A D03-Feb-2021136 87

.mailmapH A D03-Feb-202178 21

AUTHORSH A D03-Feb-20213.2 KiB9990

AUTHORS.inH A D03-Feb-2021555 2617

CONTRIBUTING.mdH A D03-Feb-2021993 3323

COPYINGH A D03-Feb-202117.6 KiB340281

ChangeLogH A D03-Feb-2021434.5 KiB12,0278,480

MAINTAINERSH A D03-Feb-2021319 98

NEWSH A D03-Feb-202121.2 KiB698593

READMEH A D03-Feb-20211.4 KiB6040

libosinfo.specH A D03-Feb-20212.3 KiB9476

libosinfo.spec.inH A D03-Feb-20212.3 KiB9478

meson.buildH A D03-Feb-202110.3 KiB369330

mingw-libosinfo.spec.inH A D03-Feb-20213.6 KiB132104

prepare-release.shH A D03-Feb-20212.1 KiB7558

README

1libosinfo
2=========
3
4libosinfo is a GObject based library API for managing information about
5operating systems, hypervisors and the (virtual) hardware devices they can
6support. It includes a database containing device metadata and provides APIs
7to match/identify optimal devices for deploying an operating system on a
8hypervisor. Via the magic of GObject Introspection, the API is available in all
9common programming languages with demos for javascript (GJS/Seed) and python
10(PyGObject). Vala bindings are also provided.
11
12libosinfo is Free Software and licenced under LGPLv2+.
13
14Information about the latest official releases can be found at:
15
16    https://libosinfo.org/download/
17
18Dependencies
19============
20
21- Required:
22  - meson >= 0.49.0
23  - gobject-2.0
24  - gio-2.0
25  - libxml-2.0
26  - libxslt-1.0
27
28- Optional:
29  - gobject-introspection
30  - Vala (build-time only)
31
32Patch submissions
33=================
34
35Patch submissions are welcomed from any interested contributor.
36
37The preferred way to submit patches for libosinfo is opening a
38Merge Request against:
39
40    https://gitlab.com/libosinfo/libosinfo
41
42General discussions can also happen at the mailing list:
43
44    https://www.redhat.com/mailman/listinfo/libosinfo
45
46For further information about libosinfo please consult the project
47homepage
48
49   https://libosinfo.org/
50
51Testing
52=======
53
54In order to test libosinfo, you should run:
55
56    $ meson build
57    $ ninja -C build check
58
59--End
60