summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* WIP: Run `makedepend` in parallel by using `make`Max Maischein2021-08-111-0/+1
| | | | | | | | | | | | This moves the per-file loop body of `makedepend` into a separate file named `makedepend_file` and then uses `make` to launch the `makedepend_file` processes for each target potentially in parallel. This reduces the time for time sh ./makedepend MAKE=make cflags from 5 seconds to 2 seconds with MAKEFLAGS=-j8
* Ignore microperl if we build itMax Maischein2021-04-191-0/+5
|
* fix splittree.pl ignore to only apply to rootGraham Knop2020-11-231-1/+1
| | | | | There is a real splittree.pl in NetWare/, which may be copied to the root. Ignore the file in the root, but not the file in NetWare/.
* move ignore for re into its own dists gitignoreGraham Knop2020-11-231-3/+0
|
* move ignore for XS-APItest into dists own gitignoreGraham Knop2020-11-231-1/+0
|
* remove ignore for Test-Harness directory which no longer existsGraham Knop2020-11-231-1/+0
|
* remove ignore for dl_win32.xs, since it is a real file nowGraham Knop2020-11-231-1/+0
|
* Update Compress-Raw-Bzip2 to CPAN version 2.096Todd Rinaldo2020-09-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | Address .gitignore issue with *.patch by making it /*.patch. This seems to match the original intention of the ignore. This also corrects a mainfest failure because bzip2-src now includes a .patch file. [DELTA] 2.096 31 July 2020 * No changes 2.095 19 July 2020 * No changes 2.094 13 July 2020 * Issue with Append mode & SvOOK https://github.com/pmqs/Compress-Raw-Bzip2/issues/2 e6f1fa7d86a4c631b82b7c923a5def3e274925fa
* XS-APItest: add tests for U8TO64_LE() and other hashing macros and codeYves Orton2020-01-241-0/+1
| | | | | | | | | | | | | | | | | | Includes testing siphash24 and siphash13 properly, especially testing against the SipHash 2-4 reference test vector, see https://131002.net/siphash/siphash24.c See also #17244 where we originally discovered there were no tests for the internals of the hashing code and that because of it we let slip in a very broken patch to the code. Thanks to James E Keenan, Tony Cook and Hugo Van der Sanden for support putting this together. XS-APItest: fixup issues with # directives for some reason the indentation of the #if clauses broke things under some builds, but not all. Possibly a ccache issue.
* Remove lib/unicore/Heavy.plKarl Williamson2019-11-061-1/+0
| | | | | | | This file was for the use of utf8_heavy.pl. But now that that is incorporated into Unicode::UCD, move the definitions from Heavy.pl to lib/unicore/UCD.pl which is used by Unicode::UCD. This allows removing package names.
* Add GitHub issue templatesNicolas R2019-10-191-0/+1
| | | | | | These files should not be in the MANIFEST adjust porting/manifest.t to ignore .github files in addition to .gitignore files.
* (perl #133708) remove build-time probing for stack limits for StorableTony Cook2018-12-101-1/+0
|
* (perl #127743) re-work recursion limit handlingTony Cook2018-02-081-0/+1
| | | | | | | | | | | | | | | | | | Previously this worked by calculating the limits and then rebuilding Storable.so, this meant Storable.so was built twice meaning a new make would then rebuild its dependencies. This was also a hard limit, so if Storable's user knew the available stack space changed they would need to rebuild Storable to adapt. This also allows for successful static Storable builds. I also updated the stacksize tool to prevent popping up segfault error messages at the user on Win32. Since I was still seeing test failures in recurse.t on a variety of platforms, I made the default limit calculations even more conservative.
* add preload to .gitignoreZefram2017-12-141-0/+1
|
* .gitignore: git should also ignore *.bak filesNicolas R2017-11-101-0/+1
|
* gitignore build product from Porting/sync-with-cpanAaron Crane2016-12-301-0/+3
|
* gitignore for cscope index files.Jarkko Hietaniemi2016-03-101-0/+6
|
* Add .gitignore for ext/re/ generated header fileMatthew Horsfall2015-08-201-0/+3
|
* automatically sort the MANIFEST if necessaryYves Orton2014-12-251-0/+3
| | | | | | | | | | Instead of harrasing people to sort the manifest in our tests, we can just automatically sort the manifest when it changes. That way the tests are actually testing that the auto-sort worked, and not that our devs put the new file in the right place.
* Revert part of 8629b8cee5Steve Hay2014-11-221-2/+0
| | | | | | | | | As BinGOs noted, all the EUMM testing should be happening in File::Temp generated tempdirs under cpan/ExtUtils-MakeMaker/t/ so it handles being run in parallel. So the fact that lib/Big/(Dummy|Liar).pm are being created on Windows when building/testing with GCC (but seemingly not MSVC++) is a bug somewhere.
* Update .gitignore fileSteve Hay2014-11-211-3/+2
| | | | | ExtUtils::MakeMaker's Big/Dummy.pm (and Big/Liar.pm) now lands in lib/, and Module::Build is no more
* Add gtags and ctags files into .gitignoreJarkko Hietaniemi2014-09-091-0/+9
|
* .gitignore: Handle cross-compilation files betterBrian Fraser2014-02-051-7/+3
|
* Merge branch 'cross-compile-revamp' into bleadBrian Fraser2014-01-221-0/+11
|\ | | | | | | | | | | | | | | | | | | This branch modifies how the cross-compilation model works. The main change is that we now build a host miniperl to use locally, rather than running each call to miniperl remotely. It also removes several of the exceptions from the old model (no xlib, xconfig.h, or Cross.pm).
| * Gitignore files which are created/used while cross-compilingJess Robinson2014-01-221-0/+11
| |
* | Add Darwin shared libraries (dylib) to gitignoreBrian Fraser2014-01-221-0/+3
|/
* Added config.arch to .gitignoreBrian Fraser2014-01-171-0/+1
|
* Pod-Perldoc: add Makefile.PL from distroDavid Mitchell2014-01-071-0/+1
| | | | | | | | | | | | | | | | Since 3.21, the Makefile includes special code for copying perldoc.pod to the right location, so use that rather than an auto-generated one. See [perl #120280] 5.19.5 intermittent failure t/search50.t With this change, cpan/Pod-Perldoc/perldoc.pod is now copied to lib/perldoc.pod rather than lib/Pod/perldoc.pod (Its install location of lib/$version/pod/perldoc.pod is unaffected)
* restore XS module building for WinCEDaniel Dragan2013-08-231-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | configpm - when debugging configpm, Config.pm is already loaded, so the alternate Config.pm for CE isn't loaded, warn about the problem and delete the native Config.pm to allow the cross Config.pm to be loaded win32/Makefile.cd - better build product cleanup, copy from the win32 makefile - disable a bunch of module that dont/dont yet build on CE - debugging configpm required a shortcut to make it easier to run in isolation - fix the defines that wind up in the cross Config.pm - add -GS- to disable the MS Security Cookie feature on MSVC for ARM >=14 compilers, this stops a .lib linking error, security cookie overhead isnt needed for a very space limited device sdsdkenv.bat is the file I use to set env vars to compile for WM since starting in SmartDevices SDK, there is no equivelent of vcvarsall.bat for makefile building, there was a vcvarsall.bat equivelent in EVC4 tho MSVC for non Intel CPUs sometimes isn't named cl.exe, fix config_sh.PL to deal with it how to compile CE Perl, some steps involving celib and MS SDKs not included and 2 patches to CPAN modules, Socket and MakeMaker, are not in this commit but they are required to build CE Perl -in a Win32 x86/x64 command prompt do a "nmake all" to make a Desktop Perl -then in a WinCE build env command prompt do a "nmake -f makefile.ce all" -/xlib will have all your XS DLLs and PM files, /win32/$(MACHINE) will have perl519.dll and perl.exe Tony Cook: update MANIFEST
* Remove 3 redundant lines from .gitignoreNicholas Clark2013-07-241-3/+0
| | | | These test files are no longer generated in directories beneath lib/
* Move all the "special case" build products from lib/.gitignore to .gitignoreNicholas Clark2013-07-241-0/+22
| | | | | 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-9/+0
| | | | | | | | | | | | 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.
* add entries to various .gitignore files for Win32 buildsDaniel Dragan2013-07-091-0/+1
| | | | | win32/html and cpan/Module-Build/t/install_test* generate dozens of non-versioned files on a Win32 build which makes committing cumbersome
* ignore some files from Module-PluggableYves Orton2013-02-261-0/+5
|
* add lib/File/DosGlob.pm to .gitignoreYves Orton2012-12-151-0/+1
| | | | The master version of the file now lives in ext
* add .gdb_history to .gitignoreYves Orton2012-11-171-0/+3
|
* ignore all MYMETA files, not just .ymlDavid Golden2012-02-221-1/+1
|
* Ignore and clean the byproducts of make install.htmlNicholas Clark2012-01-191-0/+3
| | | | | | | The install.html target generates vms/README_vms.pod and files in two directories, pod/perlfunc/ and pod/perlipc/ Add all three to .gitignore files, and add rules to delete the directories when cleaning.
* config.over is generated on some platforms, .gitignore itTony Cook2012-01-171-0/+3
|
* ignore a cygwin specific generated fileTony Cook2011-12-011-0/+3
|
* add 3 test.valgrind outputs to .gitignoreJim Cromie2011-09-121-0/+5
|
* Ignore the generated mg_data.hFlorian Ragwitz2011-06-141-0/+1
|
* [perl #82650] Ignore DTrace build productDavid Leadbeater2011-01-231-0/+3
|
* Upgrade EUMM from version 6.57_01 to 6.57_05Florian Ragwitz2010-09-111-0/+1
|
* Ignore droppings from lib/h2ph.tFlorian Ragwitz2010-09-011-0/+2
|
* Ignore more editor droppingsDagfinn Ilmari Mannsåker2010-08-241-1/+3
|
* Ignore xsubpp temp filesFlorian Ragwitz2010-08-181-0/+1
|
* Ignore *.old filesFlorian Ragwitz2010-08-181-5/+1
| | | | | We already ignored a couple of them, but there's many more of them showing up every now and then, especially because of some of the porting tools.
* gitignore: Ignore gcov filesÆvar Arnfjörð Bjarmason) (via RT2010-07-261-0/+5
| | | | | | | | | | # New Ticket Created by (Ævar Arnfjörð Bjarmason) # Please include the string: [perl #76712] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=76712 > Ignore the gcov files that are generated when following "GCC gcov Profiling" in perlhack.