summaryrefslogtreecommitdiff
path: root/lib/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Move B-Deparse from dist/ to lib/ since it is non-dual-lived and pure-PerlSteve Hay2013-10-191-1/+5
|
* Generate lib/.gitignore from MANIFEST.Nicholas Clark2013-07-241-173/+47
| | | | | | | | | | It's possible to programmatically determine almost all the files and directories which will be created in lib/ by building the extensions. Hence add a new script regen/lib_cleanup.pl to do this. This saves having to manually update lib/.gitignore to reflect changes in the build products of extensions, which has become a small but reoccurring instance of scut-work.
* Move all the "special case" build products from lib/.gitignore to .gitignoreNicholas Clark2013-07-241-18/+0
| | | | | These are all the build products that we can't programmatically infer will be generated from extensions in ext, dist and cpan.
* Make .gitignore and lib/.gitignore more consistent.Nicholas Clark2013-07-241-55/+64
| | | | | | | | | | | | Move the ignore of lib/App/, lib/mro.pm, lib/TAP/, lib/Test/Harness.pm, lib/File/DosGlob.pm, lib/inc/, Win32.pm, Win32API/ and Win32Core.pm from .gitignore to lib/.gitignore, where they more logically belong. Consistently use trailing / for ignored directories. Add a leading / to the ignore of unicore/TestProp.pl (The line was added by commit 3df51b85ce4a5664 in Nov 2009, and it's not clear why it did not have a leading / from the start.) Re-sort lib/.gitignore lexically.
* Prune some .gitignore files.Nicholas Clark2013-07-241-5/+0
| | | | | | | | | | Class::ISA was removed by 3df51b85ce4a5664 in April 2010. Module::Pluggable was removed by commit 482cac4d574f8c6c in May 2013. Module/Build/ConfigData.pm was moved from lib/ to cpan/ by commit 0b93a7997e668a67 in Nov 2009. Pod::Plainer was removed by commit afbe215fcafe7a92 in April 2010. Shell was removed by commit a1e75797c204ade8 in June 2011. Switch was removed by commit 75108aefc8b50fcf in April 2010.
* ignore the build product lib/version.podTony Cook2013-07-171-0/+1
| | | | | fb7942811 moved version from lib/ to cpan/ and added most of the needed lib/.gitignore entries, missing only this one.
* Move version from lib/ to cpan/Nicholas Clark2013-07-161-0/+2
| | | | | | | | | Whilst there are still several differences between what's in core and what's in the CPAN tarball, moving the files in core to their own directory with the same layout as the CPAN distribution simplifies things. Somewhat surprisingly, none of the toolchain modules C<use version;> so there's no need to add to lib/buildcustomize.pl
* ignore lib/File/Find.pmRicardo Signes2013-07-061-0/+1
| | | | | This is a bit of cleanup in the wake of 6de85bb45a5ea25528026a26cac854ee4dcdcd45.
* ignore build products from the newly dist/ed ExporterTony Cook2013-07-051-0/+2
|
* lib/perldoc.pod is no longer generated, stop ignoring itTony Cook2013-05-251-1/+0
| | | | | This changed with cb1974ba, 4a430f72 added an ignore for the new location but didn't remove the old location.
* Add lib/Pod/perldoc.pod to lib/.gitignore.James E Keenan2013-05-251-0/+1
|
* Removed cpan/Log-MessageChris 'BinGOs' Williams2013-05-181-4/+0
|
* Removed cpan/Log-Message-SimpleChris 'BinGOs' Williams2013-05-181-1/+0
|
* Remove cpan/Object-AccessorChris 'BinGOs' Williams2013-05-181-1/+0
|
* Remove cpan/Module-PluggableChris 'BinGOs' Williams2013-05-181-2/+0
|
* Remove cpan/Pod-LaTeX and pod2latex utilityChris 'BinGOs' Williams2013-05-181-1/+0
|
* Remove cpan/Archive-ExtractChris 'BinGOs' Williams2013-05-181-1/+0
| | | | | | | Note: Porting/core-cpan-diff refactored to use Archive::Tar instead of Archive::Extract
* Remove cpan/CPANPLUS and associated utilitiesChris 'BinGOs' Williams2013-05-181-50/+0
|
* Remove cpan/CPANPLUS-Dist-BuildChris 'BinGOs' Williams2013-05-181-2/+0
|
* restore building perl5**.dll and perl.exe on WinCEDaniel Dragan2013-03-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | extension building problems remain but the 2 above files will build be built for WinCE with the following 3 commands, replace the folder name with what you selected for $(MACHINE) in makefile.ce nmake all nmake -f makefile.ce wince-x86-hpc-wce300\perl517.dll nmake -f makefile.ce wince-x86-hpc-wce300\perl.exe makefile.ce: - -debug:full and -pdb:none are obsolete compiler flags, and add -opt:ref:icf, to sync eVC makefile with modern VC's makefile - create a shortcut for easily creating preprocessed (.i) files for debugging on the command line - add new interp .c files that were added over the years - the Dynaloader build process for Win32 was drastically changed in commit 281da5eaa8 , fix to reflect this, a "nmake all" on the Win32 build will create the correct dynaloader .c files for the ce makefile to use later - nothing depended on .\xconfig.h in the ce makefile, so there was an error that it was missing, fix that - rebase the CE perl5**.dll to same as on Win32 makefile, makes debugging/diassembly much easier when the dll is not relocated at runtime - config.sh seems to be a win32 build file, while the script configpm wants a .sh file in \Cross, so change config.sh dependency to that win32/Makefile: - add a preprocess target to easily create .i files for debugging by hand makedef.pl: - read the comments in the script - config.h is Win32 file, not a WinCE file, so use xconfig.h when under WinCE lib/.gitignore - Cross.pm is made during the build process, it shouldn't ever be commited win32/.gitignore - xconfig.h is made during the build process, it shouldn't ever be commited win32/wince.c - identifier isnan is defed to _isnan somewhere, this created an infinite loop when CE perl was run
* Remove /Net from lib/.gitignoreChris 'BinGOs' Williams2013-02-261-1/+0
| | | | | Using git clean -dXf would remove all files from lib/Net including tracked files.
* Update lib/.gitignore to include Config-Perl-V generated fileChris 'BinGOs' Williams2013-01-261-0/+2
|
* Add /Module/CoreList/TieHashDelta.pm to lib/.gitignoreSteve Hay2012-08-081-0/+2
|
* Updated CPANPLUS to CPAN version 0.9130Chris 'BinGOs' Williams2012-06-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] Changes for 0.9130 Thu May 24 22:04:10 2012 ================================================ * Always re-fetch CHECKSUMS if fetchdir is set (Torsten Schoenfeld) Changes for 0.9129 Wed May 9 21:22:41 2012 ================================================ * Handle multiple makemakerargs and makeflags arguments better. * Use File::HomeDir for home directory location if it is available, thanks to kmx * Added PERL5_CPANPLUS_HOME for altering where the .cpanplus directory is located Changes for 0.9128 Sat Apr 28 21:27:06 2012 ================================================ * Fix the previous fix Changes for 0.9127 Sat Apr 28 20:34:44 2012 ================================================ * Silenced annoying warnings related to older perls and the progress indicators Changes for 0.9126 Sat Apr 28 00:49:43 2012 ================================================ * More speed enhancements to module indexing, thanks to Vincent Pit Changes for 0.9125 Wed Apr 25 14:28:34 2012 ================================================ * Speed enhancements to module indexing, thanks to Vincent Pit Changes for 0.9124 Fri Apr 6 19:24:55 2012 ================================================ * Save the history between invocations of the shell. Changes for 0.9123 Fri Mar 30 16:46:52 2012 ================================================ * Added support for adding blib/script to PATH Changes for 0.9122 Wed Mar 28 21:52:38 2012 ================================================ * Don't spawn a process to check whether perl version prereqs are satisfied
* remove Version-Requirements from core!Ricardo Signes2012-05-241-1/+0
| | | | | | | | It has been replaced by CPAN::Meta::Requirements, which is just the same code, renamed. It was renamed (and now removed) to avoid conflicts on case-sensitive filesystems between version::Internals and Version::Requirements.
* ignore new build result from splitting docs for Module::CoreListTony Cook2012-03-171-0/+1
|
* Move Pod::Functions from lib/ to ext/Nicholas Clark2012-02-181-0/+1
|
* Move typemap documentation to its own fileSteffen Mueller2012-02-011-0/+1
| | | | | | | | | | Sadly, the POD in Typemap.xs was not easily extractable into a POD file at build time, so it now lives in a separate POD file from the start. Makes keeping documentation and testing efforts in sync marginally harder, but it's probably the right trade-off. What's left to do is finding the right places in other POD files to refer to this old/new documentation.
* Moving :mmap out of core binary into a moduleLeon Timmermans2012-01-301-0/+1
|
* ignore some newer build generated filesTony Cook2011-11-121-0/+2
|
* ignore extra build product from ext/arybase/Tony Cook2011-10-241-0/+1
|
* Dual-life perlglossary.pod as part of perlfaqFlorian Ragwitz2011-09-261-0/+1
|
* move Carp to ext/Carp, preparing for dual-lifingZefram2011-09-041-0/+2
|
* Dual-life Search::DictFlorian Ragwitz2011-07-171-0/+1
|
* Dual-life Term::CompleteFlorian Ragwitz2011-07-131-5/+1
|
* Move perlxs{,tut}.pod into the ExtUtils-ParseXS distFlorian Ragwitz2011-07-121-0/+2
|
* Add a trailing 's' to the name of EU::TypemapSteffen Mueller2011-07-121-0/+2
| | | | | This is to prevent collisions on case-insensitive file systems with lib/typemap.
* Ignore new ExtUtils::ParseXS files in libSteffen Mueller2011-07-121-0/+2
|
* Dual-life perlfaqFlorian Ragwitz2011-07-081-0/+1
|
* Move perldoc.pod to the dist it belongs toFlorian Ragwitz2011-07-071-0/+1
|
* Dual-life Term::ReadLineFlorian Ragwitz2011-07-071-0/+1
|
* Dual-life Text::AbbrevFlorian Ragwitz2011-07-021-0/+1
|
* Add CPAN::Meta as a dual-life moduleDavid Golden2011-02-151-0/+2
| | | | | | | | | | | | | | CPAN::Meta version 2.110440 has been added as a dual-life module. It provides a standard library to read, interpret and write CPAN distribution metadata files (e.g. META.json and META.yml) which describes a distribution, its contents, and the requirements for building it and installing it. The latest CPAN distribution metadata specification is included as CPAN::Meta::Spec and notes on changes in the specification over time are given in CPAN::Meta::History. CPAN::Meta is required for CPAN.pm and CPANPLUS to read META.json and MYMETA.json files and is required by Module::Build and ExtUtils::MakeMaker to generate META.json and MYMETA.json files
* ignore the new lib/buildcustomize.pl build deritusTony Cook2011-02-161-0/+1
|
* Add Version::Requirements as a dual-life moduleDavid Golden2011-02-111-0/+1
| | | | | | | | | Version::Requirements version 0.101020 has been added as a dual-life module. It provides a standard library to model and manipulates module prerequisites and version constraints as defined in the CPAN::Meta::Spec. It is a prerequisite for CPAN::Meta, which will be used by the Perl CPAN Toolchain to standardize interactions with META and MYMETA files.
* Add HTTP::Tiny as a dual-life core moduleDavid Golden2011-01-161-0/+1
| | | | | | | | HTTP::Tiny 0.008 has been added as a dual-life module. It is a very small, simple HTTP/1.1 client designed for simple GET requests and file mirroring. It has has been added to enable CPAN.pm and CPANPLUS to "bootstrap" HTTP access to CPAN using pure Perl without relying on external binaries like F<curl> or F<wget>.
* Add Module::Metadata as a dual-life core moduleDavid Golden2011-01-061-0/+1
| | | | | | | | This commit adds Module::Metadata 1.000002 as a dual-life module. It gathers package and POD information from Perl module files. It is a standalone module based on Module::Build::ModuleInfo for use by other module installation toolchain components. Module::Build::ModuleInfo has been deprecated in favor of this module instead.
* Add Perl::OSType as a dual-life core moduleDavid Golden2011-01-051-0/+1
| | | | | | | | | | | This commit adds Perl::OSType 1.002 as a dual-life module. It maps Perl operating system names (e.g. 'dragonfly' or 'MSWin32') to more generic types with standardized names (e.g. "Unix" or "Windows"). It has been refactored out of Module::Build and ExtUtils::CBuilder and consolidates such mappings into a single location for easier maintenance. c.f. http://www.nntp.perl.org/group/perl.perl5.porters/2010/05/msg160280.html
* Add JSON::PP to the Perl coreDavid Golden2011-01-021-0/+2
| | | | | Per discussions with Jesse Vincent, JSON::PP has been added to the Perl core to support the new CPAN meta file specification
* Dual-life DumpvalueFlorian Ragwitz2010-12-151-0/+1
|