Changeset 3c2936fe


Ignore:
Timestamp:
05/03/2019 05:01:50 PM (5 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 9.0, 9.1, 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, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
535af54
Parents:
d21c6551
Message:

Update to gedit-3.32.0.
Add gspell-1.8.1 in support of gedit.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@21541 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rd21c6551 r3c2936fe  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "02">                   <!-- Always 2 digits -->
     3<!ENTITY day          "03">                   <!-- Always 2 digits -->
    44<!ENTITY month        "05">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2019">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "May 2nd, &year;">
     9<!ENTITY releasedate  "May 3rd, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • general/genlib/genlib.xml

    rd21c6551 r3c2936fe  
    6767  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="grantlee.xml"/>
    6868  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gsl.xml"/>
     69  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gspell.xml"/>
    6970  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="icu.xml"/>
    7071  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="jansson.xml"/>
  • introduction/welcome/changelog.xml

    rd21c6551 r3c2936fe  
    4242    </listitem>
    4343    -->
     44
     45    <listitem>
     46      <para>May 3rd, 2019</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[bdubbs] - Update to gedit-3.32.0. Fixes
     50          <ulink url="&blfs-ticket-root;11808">#11808</ulink>.</para>
     51        </listitem>
     52        <listitem>
     53          <para>[bdubbs] - Add gspell-1.8.1 in support of gedit.</para>
     54        </listitem>
     55      </itemizedlist>
     56    </listitem>
    4457
    4558    <listitem>
  • packages.ent

    rd21c6551 r3c2936fe  
    6666<!ENTITY ed-version                   "1.15">
    6767<!ENTITY emacs-version                "26.2">
    68 <!ENTITY gedit-version                "3.22.1">
     68<!ENTITY gedit-version                "3.32.0">
    6969<!ENTITY joe-version                  "4.6">
    7070<!ENTITY juffed-version               "0.10.r71.gc3c1a3f">
     
    107107<!ENTITY grantlee-version             "5.1.0">
    108108<!ENTITY gsl-version                  "2.5">
     109<!ENTITY gspell-version               "1.8.1">
    109110
    110111<!ENTITY icu-major                    "64">
  • postlfs/editors/gedit.xml

    rd21c6551 r3c2936fe  
    77  <!ENTITY gedit-download-http "&gnome-download-http;/gedit/&gnome-minor-22;/gedit-&gedit-version;.tar.xz">
    88  <!ENTITY gedit-download-ftp  "&gnome-download-ftp;/gedit/&gnome-minor-22;/gedit-&gedit-version;.tar.xz">
    9   <!ENTITY gedit-md5sum        "b3ee39faa2f905c83cb158a9b4d3fb44">
    10   <!ENTITY gedit-size          "2.8 MB">
    11   <!ENTITY gedit-buildsize     "71 MB">
    12   <!ENTITY gedit-time          "0.8 SBU">
     9  <!ENTITY gedit-md5sum        "c2c5ae4cf16f034113a0145101143ae0">
     10  <!ENTITY gedit-size          "14 MB">
     11  <!ENTITY gedit-buildsize     "70 MB (with tests)">
     12  <!ENTITY gedit-time          "0.4 SBU (using parallelism=4; with tests)">
    1313]>
    1414
     
    7676    <para role="required">
    7777      <xref linkend="gsettings-desktop-schemas"/>,
    78       <xref linkend="gtksourceview"/>,
     78      <xref linkend="gspell"/>,
     79      <xref linkend="gtksourceview4"/>,
    7980      <xref linkend="itstool"/>, and
    8081      <xref linkend="libpeas"/>
     
    9394    <para role="optional">
    9495      <xref linkend="gtk-doc"/>,
    95       <xref linkend="vala"/>,
    96       <ulink url="http://ftp.acc.umu.se/pub/gnome/sources/gspell/">gspell</ulink>, and
     96      <xref linkend="vala"/>, and
    9797      <ulink url="http://launchpad.net/zeitgeist">zeitgeist</ulink>
    9898    </para>
     
    111111    </para>
    112112
    113 <screen><userinput>./configure --prefix=/usr --disable-spell &amp;&amp;
    114 make</userinput></screen>
     113<screen><userinput>mkdir build &amp;&amp;
     114cd    build &amp;&amp;
     115
     116meson --prefix=/usr -Dbuildtype=release  .. &amp;&amp;
     117ninja</userinput></screen>
    115118
    116119    <para>
    117       This package does not come with a test suite.
     120      To test the results, issue: <command>ninja test</command>.
    118121    </para>
    119122
     
    122125    </para>
    123126
    124 <screen role="root"><userinput>make install</userinput></screen>
     127<screen role="root"><userinput>ninja install</userinput></screen>
    125128
    126129  </sect2>
     
    130133
    131134    <para>
    132       <parameter>--disable-spell</parameter>: Use this switch to disable
    133       spell-checking capability. It is required if
    134       <application>gspell</application> is not installed.
     135      <parameter>-Ddocumentation=true</parameter>: Use this option
     136      to build the reference manual.
    135137    </para>
    136 
    137     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    138       href="../../xincludes/gtk-doc-rebuild.xml"/>
    139138
    140139  </sect2>
     
    150149      <seglistitem>
    151150        <seg>
    152           gedit and
    153           gnome-text-editor (symlink to gedit)
     151          gedit
    154152        </seg>
    155153        <seg>
Note: See TracChangeset for help on using the changeset viewer.