Font-dejavu is (now) an input of fontconfig. Specifying "dejavu sans" makes generated images reproducible even when other fonts are installed (notably font-google-noto). * doc/images/bootstrap-graph.dot, doc/images/bootstrap-packages.dot, doc/images/coreutils-bag-graph.dot, doc/images/coreutils-graph.dot, doc/images/gcc-core-mesboot0-graph.dot, doc/images/service-graph.dot, doc/images/shepherd-graph.dot: Use fontname = "dejavu sans". * doc/guix.texi (Full-Source Bootstrap): Update gcc-core-mesboot0.dot recipe accordingly. Change-Id: If21d7d39d45c66de5bceafb7b825a057d540ee50
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| digraph "Service Type Dependencies" {
 | |
|   shepherd [shape = box, fontname = "dejavu sans"];
 | |
|   pam [shape = box, fontname = "dejavu sans"];
 | |
|   etc [shape = box, fontname = "dejavu sans"];
 | |
|   profile [shape = box, fontname = "dejavu sans"];
 | |
|   accounts [shape = box, fontname = "dejavu sans"];
 | |
|   activation [shape = box, fontname = "dejavu sans"];
 | |
|   boot [shape = box, fontname = "dejavu sans"];
 | |
|   system [shape = house, fontname = "dejavu sans"];
 | |
|   lshd -> shepherd;
 | |
|   lshd -> pam;
 | |
|   udev -> shepherd;
 | |
|   nscd -> shepherd [label = "extends"];
 | |
|   "nss-mdns" -> nscd;
 | |
|   "kvm-rules" -> udev;
 | |
|   colord -> udev;
 | |
|   dbus -> shepherd;
 | |
|   colord -> dbus;
 | |
|   upower -> udev;
 | |
|   upower -> dbus;
 | |
|   polkit -> dbus;
 | |
|   polkit -> pam;
 | |
|   elogind -> dbus;
 | |
|   elogind -> udev;
 | |
|   elogind -> polkit [label = "extends"];
 | |
|   shepherd -> boot;
 | |
|   colord -> accounts;
 | |
|   accounts -> activation;
 | |
|   accounts -> etc;
 | |
|   etc -> activation;
 | |
|   activation -> boot;
 | |
|   pam -> etc;
 | |
|   elogind -> pam;
 | |
|   guix -> shepherd;
 | |
|   guix -> activation;
 | |
|   guix -> accounts;
 | |
|   boot -> system;
 | |
|   etc -> system;
 | |
|   profile -> system;
 | |
| }
 |