summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackTGZGenerator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Simplify CMake per-source license noticesBrad King2016-09-271-12/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
* CPack: include what you useDaniel Pfeifer2016-09-061-0/+3
|
* Revise C++ coding style using clang-formatKitware Robot2016-05-161-3/+1
| | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
* Remove `//------...` horizontal separator commentsBrad King2016-05-091-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | Modern editors provide plenty of ways to visually separate functions. Drop the explicit comments that previously served this purpose. Use the following command to automate the change: $ git ls-files -z -- \ "*.c" "*.cc" "*.cpp" "*.cxx" "*.h" "*.hh" "*.hpp" "*.hxx" | egrep -z -v "^Source/cmCommandArgumentLexer\." | egrep -z -v "^Source/cmCommandArgumentParser(\.y|\.cxx|Tokens\.h)" | egrep -z -v "^Source/cmDependsJavaLexer\." | egrep -z -v "^Source/cmDependsJavaParser(\.y|\.cxx|Tokens\.h)" | egrep -z -v "^Source/cmExprLexer\." | egrep -z -v "^Source/cmExprParser(\.y|\.cxx|Tokens\.h)" | egrep -z -v "^Source/cmFortranLexer\." | egrep -z -v "^Source/cmFortranParser(\.y|\.cxx|Tokens\.h)" | egrep -z -v "^Source/cmListFileLexer\." | egrep -z -v "^Source/cm_sha2" | egrep -z -v "^Source/(kwsys|CursesDialog/form)/" | egrep -z -v "^Utilities/(KW|cm).*/" | xargs -0 sed -i '/^\(\/\/---*\|\/\*---*\*\/\)$/ {d;}' This avoids modifying third-party sources and generated sources.
* cmake: Teach "-E tar" command a "--format=" optionNils Gladitz2015-04-101-1/+1
| | | | | | | Allows specifying a libarchive defined archive format currently restricted to 7zip, gnutar, pax, paxr and zip. The default is "paxr" (pax restricted).
* CPackArchiveGenerator use cmArchiveWrite wrapperEric NOULARD2010-08-241-2/+2
|
* Switch to using libarchive from libtar for cpack and cmake -E tarBill Hoffman2009-10-301-270/+2
| | | | | | This allows for a built in bzip and zip capability, so external tools will not be needed for these packagers. The cmake -E tar xf should be able to handle all compression types now as well.
* Fix more mismatched new[] / delete[] (eliminate invalid auto_ptr use) to ↵David Cole2009-10-301-5/+3
| | | | correct valgrind reported memory issues.
* Correct one of the valgrind errors from the CPackTestAllGenerators test. Do ↵David Cole2009-10-261-3/+6
| | | | not use auto_ptr on a new [] allocation because auto_ptr does not use delete [].
* Fix warnings in CMake source code. Suppress rampant warnings emanating from ↵David Cole2009-10-011-2/+2
| | | | Qt files.
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* COMP: remove warningsBill Hoffman2007-09-271-2/+3
|
* ENH: use gnu tar for cygwinBill Hoffman2007-07-311-4/+11
|
* ENH: make sure null const char* is not put into ossttringstream to avoid seg ↵Bill Hoffman2006-10-301-1/+2
| | | | faults
* ENH: Add options to build with system utility libraries. Organize inclusion ↵Brad King2006-10-191-3/+4
| | | | of third party libraries into a single header per library. This addresses bug#3653.
* COMP: Fix cast to char*Andy Cedilnik2006-05-021-1/+1
|
* ENH: Simplify TarCompress to only require compress. Use cmake's tarAndy Cedilnik2006-05-021-57/+79
|
* ENH: Support for packaging source, several cleanups and more yeehaa...Andy Cedilnik2006-04-151-0/+7
|
* STYLE: Fix some style issuesAndy Cedilnik2006-03-101-27/+27
|
* STYLE: Lots of formating to remove style problemsAndy Cedilnik2006-03-081-15/+25
|
* ENH: Fix compression on WindowsAndy Cedilnik2006-01-121-8/+6
|
* BUG: Fix memory problemAndy Cedilnik2006-01-091-1/+2
|
* ENH: remove assertBill Hoffman2006-01-041-1/+4
|
* ENH: More CPack stuff and fix zlib compressionAndy Cedilnik2006-01-041-8/+65
|
* ENH: Start working on CPack input file and cleanupsAndy Cedilnik2006-01-021-12/+0
|
* ENH: More improvements and add loggingAndy Cedilnik2006-01-021-9/+10
|
* COMP: Fix build problemsAndy Cedilnik2006-01-021-7/+33
|
* ENH: Use libtarAndy Cedilnik2006-01-021-3957/+65
|
* ENH: Merge from the cpack branchAndy Cedilnik2006-01-021-0/+4067