晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /usr/share/perl5/vendor_perl/CPAN/Meta/History/ |
Upload File : |
=for :stopwords DOAP RDF =head1 NAME CPAN::Meta::History::Meta_1_0 - Version 1.0 metadata specification for META.yml =head1 PREFACE This is a historical copy of the version 1.0 specification for F<META.yml> files, copyright by Ken Williams and licensed under the same terms as Perl itself. Modifications from the original: =over =item * Conversion from the original HTML to POD format =item * Include list of valid licenses from L<Module::Build> 0.17 rather than linking to the module, with minor updates to text and links to reflect versions at the time of publication. =item * Fixed some dead links to point to active resources. =back =head1 DESCRIPTION This document describes version 1.0 of the F<META.yml> specification. The META.yml file describes important properties of contributed Perl distributions such as the ones found on L<CPAN|http://www.cpan.org>. It is typically created by tools like L<Module::Build> and L<ExtUtils::MakeMaker>. The fields in the F<META.yml> file are meant to be helpful to people maintaining module collections (like CPAN), for people writing installation tools (like L<CPAN> or L<CPANPLUS>), or just people who want to know some stuff about a distribution before downloading it and starting to install it. =head1 Format F<META.yml> files are written in the L<YAML|http://www.yaml.org/> format. The reasons we chose YAML instead of, say, XML or Data::Dumper are discussed in L<this thread|http://www.nntp.perl.org/group/perl.makemaker/2002/04/msg406.html> on the MakeMaker mailing list. The first line of a F<META.yml> file should be a valid L<YAML document header|http://yaml.org/spec/history/2002-10-31.html#syntax-document> like C<"--- #YAML:1.0"> =head1 Fields The rest of the META.yml file is one big YAML L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping>, whose keys are described here. =over 4 =item name Example: C<Module-Build> The name of the distribution. Often created by taking the "main module" in the distribution and changing "::" to "-". Sometimes it's completely different, however, as in the case of the L<libwww-perl|http://search.cpan.org/author/GAAS/libwww-perl/> distribution. =item version Example: C<0.16> The version of the distribution to which the META.yml file refers. =item license Example: C<perl> The license under which this distribution may be used and redistributed. Must be one of the following licenses: =over 4 =item perl The distribution may be copied and redistributed under the same terms as perl itself (this is by far the most common licensing option for modules on CPAN). This is a dual license, in which the user may choose between either the GPL version 1 or the Artistic version 1 license. =item gpl The distribution is distributed under the terms of the GNU General Public License version 2 (L<http://opensource.org/licenses/GPL-2.0>). =item lgpl The distribution is distributed under the terms of the GNU Lesser General Public License version 2 (L<http://opensource.org/licenses/LGPL-2.1>). =item artistic The distribution is licensed under the Artistic License version 1, as specified by the Artistic file in the standard perl distribution (L<http://opensource.org/licenses/Artistic-Perl-1.0>). =item bsd The distribution is licensed under the BSD 3-Clause License (L<http://opensource.org/licenses/BSD-3-Clause>). =item open_source The distribution is licensed under some other Open Source Initiative-approved license listed at L<http://www.opensource.org/licenses/>. =item unrestricted The distribution is licensed under a license that is B<not> approved by L<www.opensource.org|http://www.opensource.org/> but that allows distribution without restrictions. =item restrictive The distribution may not be redistributed without special permission from the author and/or copyright holder. =back =item distribution_type Example: C<module> What kind of stuff is contained in this distribution. Most things on CPAN are C<module>s (which can also mean a collection of modules), but some things are C<script>s. =item requires Example: Data::Dumper: 0 File::Find: 1.03 A YAML L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping> indicating the Perl modules this distribution requires for proper operation. The keys are the module names, and the values are version specifications as described in the L<documentation for Module::Build's "requires" parameter|Module::Build::API/requires>. I<Note: the exact nature of the fancy specifications like C<< ">= 1.2, != 1.5, < 2.0" >> is subject to change. Advance notice will be given here. The simple specifications like C<"1.2"> will not change in format.> =item recommends Example: Data::Dumper: 0 File::Find: 1.03 A YAML L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping> indicating the Perl modules this distribution recommends for enhanced operation. =item build_requires Example: Data::Dumper: 0 File::Find: 1.03 A YAML L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping> indicating the Perl modules required for building and/or testing of this distribution. These dependencies are not required after the module is installed. =item conflicts Example: Data::Dumper: 0 File::Find: 1.03 A YAML L<mapping|http://yaml.org/spec/history/2002-10-31.html#syntax-mapping> indicating the Perl modules that cannot be installed while this distribution is installed. This is a pretty uncommon situation. =item dynamic_config Example: C<0> A boolean flag indicating whether a F<Build.PL> or F<Makefile.PL> (or similar) must be executed, or whether this module can be built, tested and installed solely from consulting its metadata file. The main reason to set this to a true value if that your module performs some dynamic configuration (asking questions, sensing the environment, etc.) as part of its build/install process. Currently L<Module::Build> doesn't actually do anything with this flag - it's probably going to be up to higher-level tools like L<CPAN.pm|CPAN> to do something useful with it. It can potentially bring lots of security, packaging, and convenience improvements. =item generated_by Example: C<Module::Build version 0.16> Indicates the tool that was used to create this F<META.yml> file. It's good form to include both the name of the tool and its version, but this field is essentially opaque, at least for the moment. =back =head1 Related Projects =over 4 =item DOAP An RDF vocabulary to describe software projects. L<http://usefulinc.com/doap>. =back =head1 History =over 4 =item * B<March 14, 2003> (Pi day) - created version 1.0 of this document. =item * B<May 8, 2003> - added the "dynamic_config" field, which was missing from the initial version. =back