Changeset 9b31ea6


Ignore:
Timestamp:
10/30/2018 01:09:48 AM (5 years ago)
Author:
Ken Moffat <ken@…>
Branches:
perl-modules
Children:
056f88e
Parents:
13a9b259
Message:

perl modules branch: Add DateTime::Format::Builder and its dependencies, also s/Date::Time/DateTime/ for the dependency name.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/perl-modules@20661 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
7 added
5 edited

Legend:

Unmodified
Added
Removed
  • general/prog/new-perl-modules.xml

    r13a9b259 r9b31ea6  
    2222  <sect2 role="package">
    2323    <title>Introduction to Perl Modules</title>
     24
     25 <!-- note for editors:
     26      When testing the dependencies for a new/updated module, it is possible
     27      to build the dependencies in a directory, then do DESTDIR installs.
     28      For packages using Module::Build, supply \-\-destdir= (lower case!)
     29      AFTER the command.  Repeat as necessary.  At any one time, ALL deps for
     30      the module being tested need to be in the same DESTDIR - it may be
     31      convenient to copy the contents, e.g.
     32 cp -av MODULEA/usr/lib/perl5/site_perl/5.xx.y/* BATCH1/usr/lib/perl5/site_perl/5.xx.y/
     33
     34      And then to use these deps (plus what is already installed),
     35      export PERL5LIB=/ab/path/to/BATCH1/usr/lib/perl5/site_perl/5.xx.y
     36
     37      Please be aware that not all non-core prerequisite deps are necessarily
     38      needed.  If 'use Foo::Bar' appears in one of the main files in lib/ or blib/
     39      it is assumed to be needed.  But if it only gets used in tests (t/) then
     40      please try without it to see if the tests can still pass. -->
    2441
    2542    <para>
     
    127144      <listitem>
    128145        <para>
     146          <xref linkend="new-perl-datetime-format-builder"/>
     147        </para>
     148      </listitem>
     149      <listitem>
     150        <para>
    129151          <xref linkend="new-perl-encode-eucjpascii"/>
    130152        </para>
     
    331353
    332354  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     355    href="perl-modules/perl-datetime-format-builder.xml"/>
     356
     357  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    333358    href="perl-modules/perl-encode-eucjpascii.xml"/>
    334359
  • general/prog/perl-deps.xml

    r13a9b259 r9b31ea6  
    9393      <listitem>
    9494        <para>
     95          <xref linkend="new-perl-class-factory-util"/>
     96        </para>
     97      </listitem>
     98      <listitem>
     99        <para>
    95100          <xref linkend="new-perl-class-inspector"/>
    96101        </para>
     
    123128      <listitem>
    124129        <para>
     130          <xref linkend="new-perl-datetime-format-strptime"/>
     131        </para>
     132      </listitem>
     133      <listitem>
     134        <para>
    125135          <xref linkend="new-perl-datetime-locale"/>
    126136        </para>
     
    283293      <listitem>
    284294        <para>
     295          <xref linkend="new-perl-package-deprecationmanager"/>
     296        </para>
     297      </listitem>
     298      <listitem>
     299        <para>
    285300          <xref linkend="new-perl-package-stash"/>
    286301        </para>
     
    288303      <listitem>
    289304        <para>
     305          <xref linkend="new-perl-params-util"/>
     306        </para>
     307      </listitem>
     308      <listitem>
     309        <para>
     310          <xref linkend="new-perl-params-validate"/>
     311        </para>
     312      </listitem>
     313      <listitem>
     314        <para>
    290315          <xref linkend="new-perl-params-validationcompiler"/>
    291316        </para>
     
    324349        <para>
    325350          <xref linkend="new-perl-sub-info"/>
     351        </para>
     352      </listitem>
     353      <listitem>
     354        <para>
     355          <xref linkend="new-perl-sub-install"/>
    326356        </para>
    327357      </listitem>
     
    500530
    501531  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     532    href="perl-deps/perl-class-factory-util.xml"/>
     533
     534  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    502535    href="perl-deps/perl-class-inspector.xml"/>
    503536
     
    518551
    519552  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     553    href="perl-deps/perl-datetime-format-strptime.xml"/>
     554
     555  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    520556    href="perl-deps/perl-datetime-locale.xml"/>
    521557
     
    614650
    615651  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     652    href="perl-deps/perl-package-deprecationmanager.xml"/>
     653
     654  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    616655    href="perl-deps/perl-package-stash.xml"/>
    617656
    618657  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     658    href="perl-deps/perl-params-util.xml"/>
     659
     660  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     661    href="perl-deps/perl-params-validate.xml"/>
     662
     663  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    619664    href="perl-deps/perl-params-validationcompiler.xml"/>
    620665
     
    641686
    642687  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     688    href="perl-deps/perl-sub-install.xml"/>
     689
     690  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    643691    href="perl-deps/perl-sub-name.xml"/>
    644692
  • general/prog/perl-deps/perl-datetime.xml

    r13a9b259 r9b31ea6  
    1010]>
    1111
    12   <!-- Begin Date::Time -->
     12  <!-- Begin DateTime -->
    1313  <sect2 id="new-perl-datetime" xreflabel="DateTime-&DateTime-version;">
    1414
    15     <title>Date::Time-&DateTime-version;</title>
     15    <title>DateTime-&DateTime-version;</title>
    1616
    1717    <indexterm zone="new-perl-datetime">
    18       <primary sortas="a-DateTime">Date::Time</primary>
     18      <primary sortas="a-DateTime">DateTime</primary>
    1919    </indexterm>
    2020
    2121    <sect3 role="package">
    22       <title>Introduction to Date::Time</title>
     22      <title>Introduction to DateTime</title>
    2323
    2424      <para>
    25         Date::Time is a date and time object for perl.
     25        DateTime is a date and time object for perl.
    2626      </para>
    2727
     
    4242      </itemizedlist>
    4343
    44       <bridgehead renderas="sect4">Date::Time Dependencies</bridgehead>
     44      <bridgehead renderas="sect4">DateTime Dependencies</bridgehead>
    4545
    4646      <bridgehead renderas="sect5">Required</bridgehead>
     
    5959
    6060    <sect3 role="installation">
    61       <title>Installation of Date::Time</title>
     61      <title>Installation of DateTime</title>
    6262
    6363      <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • packages.ent

    r13a9b259 r9b31ea6  
    419419<!ENTITY Capture-Tiny-version         "0.48">
    420420<!ENTITY Class-Data-Inheritable-version "0.08">
     421<!ENTITY Class-Factory-Util-version   "1.7">
    421422<!ENTITY Class-Inspector-version      "1.32">
    422423<!ENTITY Class-Singleton-version      "1.5">
     
    425426<!ENTITY CPAN-Meta-Check-version      "0.014">
    426427<!ENTITY DateTime-version             "1.50">
     428<!ENTITY DateTime-Format-Strptime-version "1.75">
    427429<!ENTITY DateTime-Locale-version      "1.22">
    428430<!ENTITY DateTime-TimeZone-version    "2.19">
     
    458460<!ENTITY Number-Compare-version       "0.03">
    459461<!ENTITY Package-Stash-version        "0.37">
     462<!ENTITY Params-Util-version          "1.07">
     463<!ENTITY Sub-Install-version          "0.928">
     464<!ENTITY Sub-Name-version             "0.21">
     465<!ENTITY Package-DeprecationManager-version "0.17">
     466<!ENTITY Params-Validate-version      "1.29">
    460467<!ENTITY Params-ValidationCompiler-version "0.30">
    461468<!ENTITY Path-Tiny-version            "0.108">
  • pst/typesetting/biber.xml

    r13a9b259 r9b31ea6  
    110110      <xref linkend="new-perl-data-uniqid"/>
    111111      <xref linkend="new-perl-datetime-calendar-julian"/>
    112       <xref linkend="perl-datetime-format-builder"/>
     112      <xref linkend="new-perl-datetime-format-builder"/>
    113113      <xref linkend="new-perl-encode-eucjpascii"/>
    114114      <xref linkend="new-perl-encode-hanextra"/>
Note: See TracChangeset for help on using the changeset viewer.