Changeset 4e207bb
- Timestamp:
- 09/11/2022 04:22:44 PM (2 years ago)
- Branches:
- 11.3, 12.0, 12.1, 12.2, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/for-12.3, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/xf86-video-removal
- Children:
- 2eefd64f, 79f4a45
- Parents:
- 484f776
- git-author:
- Pierre Labastie <pierre.labastie@…> (09/11/2022 04:22:05 PM)
- git-committer:
- Pierre Labastie <pierre.labastie@…> (09/11/2022 04:22:44 PM)
- Files:
-
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
general/genlib/boost.xml
r484f776 r4e207bb 151 151 <!-- dev note: ./b2 - -prefix=<DESTDIR>/usr install threading=multi link=shared --> 152 152 153 <screen role="root"><userinput>./b2 install threading=multi link=shared <!-- && 154 ln -svf detail/sha1.hpp /usr/include/boost/uuid/sha1.hpp--></userinput></screen> 153 <screen role="root"><userinput>./b2 install threading=multi link=shared</userinput></screen> 155 154 156 155 </sect2> -
general/genlib/glib2.xml
r484f776 r4e207bb 227 227 <warning> 228 228 <para> 229 230 231 229 Do not run the test suite as &root; or some tests will fail 230 unexpectedly and leave some non-FHS-compliant directories in the 231 <filename class='directory'>/usr</filename> hierarchy. 232 232 </para> 233 233 </warning> -
general/genutils/highlight.xml
r484f776 r4e207bb 156 156 its value would be hardcoded into the gui executable. Note that the 157 157 trailing <quote>/</quote> is necessary. 158 158 </para> 159 159 </sect2> 160 160 -
general/graphlib/exiv2.xml
r484f776 r4e207bb 76 76 <para> 77 77 Required patch: 78 <ulink url="&patch-root;/exiv2-&exiv2-version;-security_fixes-1.patch"/> 78 <ulink url="&patch-root;/exiv2-&exiv2-version;-security_fixes-1.patch"/> 79 79 </para> 80 80 </listitem> -
general/prog/gitserver.xml
r484f776 r4e207bb 160 160 <screen role="nodump"><userinput>cat > ~/.gitconfig <<EOF 161 161 [user] 162 163 162 name = <users-name> 163 email = <users-email-address> 164 164 EOF</userinput></screen> 165 165 -
general/prog/perl-deps/perl-test-exception.xml
r484f776 r4e207bb 23 23 24 24 <para> 25 25 Test::Exception provides convenience methods for testing exception 26 26 based code. 27 27 </para> -
general/prog/perl-modules/perl-io-socket-ssl.xml
r484f776 r4e207bb 69 69 hang if you are using openssl-1.1.0 and Net::SSLeay has had the 70 70 patch for 1.1.1 applied. 71 Therefore, running them is at the moment not recommended. 71 Therefore, running them is at the moment not recommended. 72 72 If you are on the old version of openssl and did not apply the 73 73 patch, you can run 'make test' in the normal way. -
general/prog/python3.xml
r484f776 r4e207bb 113 113 <xref linkend="gdb"/> (required for some tests), 114 114 <xref linkend="valgrind"/>, and 115 115 <ulink url="https://www.bytereef.org/mpdecimal/">libmpdec</ulink> 116 116 </para> 117 117 … … 209 209 <option>--with-lto</option>: This optional switch enables thick Link 210 210 Time Optimization. Unusually, it creates a much larger <filename 211 211 class="libraryfile">/usr/lib/python&python3-majorver;/config-&python3-majorver;-<arch>-linux-gnu/libpython&python3-majorver;.a</filename> 212 212 with a small increase in the time to compile 213 213 <application>Python</application>. Run-time results do not appear to show -
general/prog/rust.xml
r484f776 r4e207bb 14 14 to measure it, or du -sm to look at the size of the build tree before and 15 15 after the tests. --> 16 16 17 17 <!ENTITY rust-buildsize "8.8 GB (472 MB installed) including 266 MB of ~/.cargo files for the user building this. Add 6.9 GB including extra 243 MB of ~/.cargo files if running the tests"> 18 18 <!ENTITY rust-time "20 SBU (including download time; add 13 SBU for tests, both on a 4-core machine)"> -
general/prog/subversion.xml
r484f776 r4e207bb 88 88 <para> 89 89 Required patch for building with <xref linkend="apr"/>: 90 90 <ulink url="&patch-root;/subversion-&subversion-version;-apr_1.7.0_fix-1.patch"/> 91 91 </para> 92 92 </listitem> -
general/prog/swig.xml
r484f776 r4e207bb 186 186 None 187 187 </seg> 188 188 <seg> 189 189 /usr/share/doc/swig-&swig-version; and 190 190 /usr/share/swig -
general/sysutils/accountsservice.xml
r484f776 r4e207bb 199 199 <para> 200 200 To start the <command>accounts-daemon</command> daemon at boot, 201 201 enable the previously installed systemd unit 202 202 by running the following command as the 203 203 <systemitem class="username">root</systemitem> user: -
git-version.sh
r484f776 r4e207bb 2 2 3 3 if [ "$1" = sysv ]; then 4 5 4 SYSV="INCLUDE" 5 SYSTEMD="IGNORE " 6 6 elif [ "$1" = systemd ]; then 7 8 7 SYSV="IGNORE " 8 SYSTEMD="INCLUDE" 9 9 else 10 11 10 echo You must provide either \"sysv\" or \"systemd\" as argument 11 exit 1 12 12 fi 13 13 … … 16 16 17 17 if ! git status > /dev/null; then 18 19 20 21 22 23 24 18 # Either it's not a git repository, or git is unavaliable. 19 # Just workaround. 20 echo "<!ENTITY year \"????\">" > version.ent 21 echo "<!ENTITY version \"unknown\">" >> version.ent 22 echo "<!ENTITY releasedate \"unknown\">" >> version.ent 23 echo "<!ENTITY pubdate \"unknown\">" >> version.ent 24 exit 0 25 25 fi 26 26 … … 37 37 38 38 case $day in 39 40 41 42 39 "1" | "21" | "31" ) suffix="st";; 40 "2" | "22" ) suffix="nd";; 41 "3" | "23" ) suffix="rd";; 42 * ) suffix="th";; 43 43 esac 44 44 … … 49 49 50 50 if [ "$(git diff HEAD | wc -l)" != "0" ]; then 51 51 version="$version+" 52 52 fi 53 53 -
gnome/applications/cheese.xml
r484f776 r4e207bb 76 76 <para> 77 77 Required patch: 78 78 <ulink url="&patch-root;/cheese-&cheese-version;-upstream_fixes-1.patch"/> 79 79 </para> 80 80 </listitem> -
gnome/platform/nautilus.xml
r484f776 r4e207bb 145 145 146 146 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 147 147 href="../../xincludes/gsettings-destdir.xml"/> 148 148 149 149 </sect2> -
multimedia/libdriv/gst10-plugins-bad.xml
r484f776 r4e207bb 112 112 <xref linkend="neon"/>, 113 113 <xref linkend="nettle"/> or <xref linkend="libgcrypt"/> 114 115 114 (for SSL support in hls plugin, if both are not installed OpenSSL will 115 be used instead), 116 116 <xref linkend="opencv"/> (with additional modules), 117 117 <xref linkend="openjpeg2"/>, -
multimedia/videoutils/ffmpeg.xml
r484f776 r4e207bb 151 151 <ulink url="https://openal.org/">OpenAL</ulink>, 152 152 <ulink url="https://sourceforge.net/projects/opencore-amr">OpenCore AMR</ulink>, 153 153 <ulink url="https://github.com/Haivision/srt">Srt</ulink>, 154 154 <ulink url="https://sourceforge.net/projects/schrodinger/">Schroedinger</ulink>, 155 155 <ulink url="http://www.twolame.org/">TwoLAME</ulink>, -
networking/netutils/network-manager-applet.xml
r484f776 r4e207bb 95 95 Since this package uses 96 96 <xref role="nodep" linkend="polkit"/> for authorization, 97 97 one <xref role="runtime" linkend="polkit-agent"/> should be 98 98 running when the functionality of this package is used. 99 99 </para> -
postlfs/config/firmware.xml
r484f776 r4e207bb 542 542 560/560X] needs Polaris11 firmware. There is a table of "Family, Chipset 543 543 name, Product name and Firmware" at the end of the Kernel sections in 544 544 <ulink url="https://wiki.gentoo.org/wiki/AMDGPU#Known_firmware_blobs"> 545 545 AMDGPU</ulink> page of the Gentoo wiki. 546 546 </para> -
postlfs/editors/bluefish.xml
r484f776 r4e207bb 133 133 updating <filename>/usr/share/icons/hicolor/icon-theme.cache</filename> 134 134 and <filename>/usr/share/applications/mimeinfo.cache</filename>. To 135 136 135 perform the update you must have <xref linkend="desktop-file-utils"/> 136 (for the desktop cache) and issue the following commands as the 137 137 <systemitem class="username">root</systemitem> user: 138 138 </para> -
postlfs/security/tripwire.xml
r484f776 r4e207bb 143 143 <para> 144 144 Of course, you should do this with dummy passwords and change them 145 145 later. 146 146 </para> 147 147 … … 348 348 <seg>siggen, tripwire, twadmin, and twprint</seg> 349 349 <seg>None</seg> 350 350 <seg>/etc/tripwire, /var/lib/tripwire, 351 351 and /usr/share/doc/tripwire-&tripwire-version;</seg> 352 352 </seglistitem> -
server/databases/upgradedb.xml
r484f776 r4e207bb 132 132 133 133 <itemizedlist> 134 134 <listitem> 135 135 <para>Create a full database backup using the old tools.</para> 136 136 -
server/mail/exim.xml
r484f776 r4e207bb 123 123 <xref linkend="sqlite"/>, 124 124 <xref linkend="x-window-system"/>, 125 125 <ulink url="https://github.com/heimdal/heimdal">Heimdal GSSAPI</ulink>, and 126 126 <ulink url="http://www.trusteddomain.org/opendmarc/">OpenDMARC</ulink> 127 127 </para> -
server/mail/postfix.xml
r484f776 r4e207bb 182 182 <!-- We reverted to Berkeley DB-5.3.28 and that is handled 183 183 <para> 184 The current version of 184 The current version of <xref linkend="db"/> is not recognised by a 185 185 hard-coded test for known versions. To build with this version use the 186 186 following sed: -
x/installing/tuning-fontconfig.xml
r484f776 r4e207bb 466 466 <application>Fontconfig</application> installs user documentation that 467 467 includes an example 'User configuration file' which among other things 468 prefers 468 prefers <xref linkend="wenquanyi-zenhei"/> (a Sans font) if a 469 469 <emphasis>Serif</emphasis> font is requested for Chinese (this part 470 470 might be anachronistic unless you have non-free Chinese fonts, because -
x/installing/x7app.xml
r484f776 r4e207bb 154 154 <listitem> 155 155 <para> 156 156 Download (HTTP): <ulink url="&x7apps-download-http;"/> 157 157 </para> 158 158 </listitem> 159 159 <listitem> 160 160 <para> 161 161 Download (FTP): <ulink url="&x7apps-download-ftp;"/> 162 162 </para> 163 163 </listitem> 164 164 <listitem> 165 165 <para> 166 166 Download size: &x7apps-size; 167 167 </para> 168 168 </listitem> 169 169 <listitem> 170 170 <para> 171 171 Estimated disk space required: &x7apps-buildsize; 172 172 </para> 173 173 </listitem> 174 174 <listitem> 175 175 <para> 176 176 Estimated build time: &x7apps-time; 177 177 </para> 178 178 </listitem> … … 359 359 <listitem> 360 360 <para> 361 361 is the ICE authority file utility 362 362 </para> 363 363 <indexterm zone="xorg7-app iceauth-x7"> … … 371 371 <listitem> 372 372 <para> 373 373 provides locale and ISO 2022 support for Unicode terminals 374 374 </para> 375 375 <indexterm zone="xorg7-app luit-x7"> … … 383 383 <listitem> 384 384 <para> 385 385 creates an index of X font files in a directory 386 386 </para> 387 387 <indexterm zone="xorg7-app mkfontdir-x7"> … … 395 395 <listitem> 396 396 <para> 397 397 creates an index of scalable font files for X 398 398 </para> 399 399 <indexterm zone="xorg7-app mkfontscale-x7"> … … 407 407 <listitem> 408 408 <para> 409 409 manages utmp/wtmp entries for non-init clients 410 410 </para> 411 411 <indexterm zone="xorg7-app sessreg-x7"> … … 419 419 <listitem> 420 420 <para> 421 421 sets the keyboard using the X Keyboard Extension 422 422 </para> 423 423 <indexterm zone="xorg7-app setxkbmap-x7"> … … 431 431 <listitem> 432 432 <para> 433 433 is the Session Manager Proxy 434 434 </para> 435 435 <indexterm zone="xorg7-app smproxy-x7"> … … 443 443 <listitem> 444 444 <para> 445 445 is an X11 server performance test program 446 446 </para> 447 447 <indexterm zone="xorg7-app x11perf-x7"> … … 455 455 <listitem> 456 456 <para> 457 457 is an X11 server performance comparison program 458 458 </para> 459 459 <indexterm zone="xorg7-app x11perfcomp-x7"> … … 467 467 <listitem> 468 468 <para> 469 469 is the X authority file utility 470 470 </para> 471 471 <indexterm zone="xorg7-app xauth-x7"> … … 479 479 <listitem> 480 480 <para> 481 481 adjusts backlight brightness using RandR extension 482 482 </para> 483 483 <indexterm zone="xorg7-app xbacklight-x7"> … … 491 491 <listitem> 492 492 <para> 493 493 is the Device Color Characterization utility for the X 494 494 Color Management System 495 495 </para> … … 504 504 <listitem> 505 505 <para> 506 506 creates an X cursor file from a collection of PNG images 507 507 </para> 508 508 <indexterm zone="xorg7-app xcursorgen-x7"> … … 516 516 <listitem> 517 517 <para> 518 518 dumps an X window directly to a printer 519 519 </para> 520 520 <indexterm zone="xorg7-app xdpr-x7"> … … 528 528 <listitem> 529 529 <para> 530 530 is a display information utility for X 531 531 </para> 532 532 <indexterm zone="xorg7-app xdpyinfo-x7"> … … 540 540 <listitem> 541 541 <para> 542 542 queries configuration information of DRI drivers 543 543 </para> 544 544 <indexterm zone="xorg7-app xdriinfo-x7"> … … 552 552 <listitem> 553 553 <para> 554 554 prints contents of X events 555 555 </para> 556 556 <indexterm zone="xorg7-app xev-x7"> … … 564 564 <listitem> 565 565 <para> 566 566 alters a monitor's gamma correction through the X server 567 567 </para> 568 568 <indexterm zone="xorg7-app xgamma-x7"> … … 576 576 <listitem> 577 577 <para> 578 578 is a server access control program for X 579 579 </para> 580 580 <indexterm zone="xorg7-app xhost-x7"> … … 588 588 <listitem> 589 589 <para> 590 590 is a utility to configure and test X input devices 591 591 </para> 592 592 <indexterm zone="xorg7-app xinput-x7"> … … 600 600 <listitem> 601 601 <para> 602 602 is an XKB utility program that raises a bell event 603 603 </para> 604 604 <indexterm zone="xorg7-app xkbbell-x7"> … … 612 612 <listitem> 613 613 <para> 614 614 compiles an XKB keyboard description 615 615 </para> 616 616 <indexterm zone="xorg7-app xkbcomp-x7"> … … 624 624 <listitem> 625 625 <para> 626 626 is the XKB event daemon 627 627 </para> 628 628 <indexterm zone="xorg7-app xkbevd-x7"> … … 636 636 <listitem> 637 637 <para> 638 638 shows the XKB status of keyboard LEDs 639 639 </para> 640 640 <indexterm zone="xorg7-app xkbvleds-x7"> … … 648 648 <listitem> 649 649 <para> 650 650 monitors modifier keys and LEDs 651 651 </para> 652 652 <indexterm zone="xorg7-app xkbwatch-x7"> … … 660 660 <listitem> 661 661 <para> 662 662 kills a client by its X resource 663 663 </para> 664 664 <indexterm zone="xorg7-app xkill-x7"> … … 672 672 <listitem> 673 673 <para> 674 674 lists interned atoms defined on the server 675 675 </para> 676 676 <indexterm zone="xorg7-app xlsatoms-x7"> … … 684 684 <listitem> 685 685 <para> 686 686 lists client applications running on a display 687 687 </para> 688 688 <indexterm zone="xorg7-app xlsclients-x7"> … … 696 696 <listitem> 697 697 <para> 698 698 displays a message or query in a window 699 699 </para> 700 700 <indexterm zone="xorg7-app xmessage-x7"> … … 708 708 <listitem> 709 709 <para> 710 710 is a utility for modifying keymaps and pointer button 711 711 mappings in X 712 712 </para> … … 721 721 <listitem> 722 722 <para> 723 723 prints an X window dump 724 724 </para> 725 725 <indexterm zone="xorg7-app xpr-x7"> … … 733 733 <listitem> 734 734 <para> 735 735 is a property displayer for X 736 736 </para> 737 737 <indexterm zone="xorg7-app xprop-x7"> … … 745 745 <listitem> 746 746 <para> 747 747 is a primitive command line interface to RandR extension 748 748 </para> 749 749 <indexterm zone="xorg7-app xrandr-x7"> … … 757 757 <listitem> 758 758 <para> 759 759 is the X server resource database utility 760 760 </para> 761 761 <indexterm zone="xorg7-app xrdb-x7"> … … 769 769 <listitem> 770 770 <para> 771 771 refreshes all or part of an X screen 772 772 </para> 773 773 <indexterm zone="xorg7-app xrefresh-x7"> … … 781 781 <listitem> 782 782 <para> 783 783 is the user preference utility for X 784 784 </para> 785 785 <indexterm zone="xorg7-app xset-x7"> … … 793 793 <listitem> 794 794 <para> 795 795 is the root window parameter setting utility for X 796 796 </para> 797 797 <indexterm zone="xorg7-app xsetroot-x7"> … … 805 805 <listitem> 806 806 <para> 807 807 prints out X-Video extension adaptor information 808 808 </para> 809 809 <indexterm zone="xorg7-app xvinfo-x7"> … … 817 817 <listitem> 818 818 <para> 819 819 dumps an image of an X window 820 820 </para> 821 821 <indexterm zone="xorg7-app xwd-x7"> … … 829 829 <listitem> 830 830 <para> 831 831 is a window information utility for X 832 832 </para> 833 833 <indexterm zone="xorg7-app xwininfo-x7"> … … 841 841 <listitem> 842 842 <para> 843 844 843 is an image displayer for X 844 </para> 845 845 <indexterm zone="xorg7-app xwud-x7"> 846 846 <primary sortas="b-xwud">xwud</primary> -
x/installing/xorg-config.xml
r484f776 r4e207bb 64 64 </keycombo> 65 65 (replace x with a VT number) to switch to another VT. 66 66 If it works, login and kill Xorg using command line in the new VT. 67 67 </para> 68 68 </warning> -
xsoft/graphweb/firefox.xml
r484f776 r4e207bb 611 611 <listitem> 612 612 <para> 613 614 613 is a <application>GTK+-3</application> internet browser that uses 614 the Mozilla Gecko rendering engine 615 615 </para> 616 616 <indexterm zone="firefox firefox-prog"> -
xsoft/other/gimp.xml
r484f776 r4e207bb 101 101 <!-- 102 102 <note> 103 103 <para> 104 104 The creation of local html files with recent versions of the necessary 105 105 packages is somewhat broken (some png images are not sourced by the
Note:
See TracChangeset
for help on using the changeset viewer.