aboutsummaryrefslogtreecommitdiff
path: root/textproc/uncrustify
Commit message (Collapse)AuthorAgeFilesLines
* Remove useless Created by: headers mentioning meDmitry Marakasov2021-04-071-2/+0
|
* textproc/uncrustify: Add explicit Python build dependency (D29353)Tobias Kortkamp2021-04-071-1/+1
| | | | | | | | | | | | | | | | | | This unbreaks the build when using devel/samurai. It previously got it through ninja which has a run dependency on Python. CMake Error at /usr/local/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:218 (message): Could NOT find PythonInterp (missing: PYTHON_EXECUTABLE) Call Stack (most recent call first): /usr/local/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:582 (_FPHSA_FAILURE_MESSAGE) /usr/local/share/cmake/Modules/FindPythonInterp.cmake:169 (FIND_PACKAGE_HANDLE_STANDARD_ARGS) CMakeLists.txt:20 (find_package) http://package18.nyi.freebsd.org/data/122amd64-default-foo/2021-04-04_07h37m38s/logs/errors/uncrustify-0.72.0.log PR: 254678
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* - Update to 0.72.0Dmitry Marakasov2020-11-082-9/+4
| | | | Notes: svn path=/head/; revision=554571
* - Update to 0.71.0Dmitry Marakasov2020-05-253-8/+8
| | | | Notes: svn path=/head/; revision=536486
* - Update to 0.70.1Dmitry Marakasov2019-11-284-45/+19
| | | | Notes: svn path=/head/; revision=518607
* - Update to 0.70.0Dmitry Marakasov2019-11-183-6/+23
| | | | | | | | | | | | Config files are now installed both into the DATADIR (implemented upstream in this version) and ETCDIR (as always been done by the port). I'm going to discuss this with upstream ([1]) as ETCDIR surely looks more suitable, so for now this duplication is indended. [1] https://github.com/uncrustify/uncrustify/commit/ea6950086657de0ad12bc098f169a992407889ca Notes: svn path=/head/; revision=517924
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-0/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* - Update to 0.69.0Dmitry Marakasov2019-06-032-5/+4
| | | | Notes: svn path=/head/; revision=503397
* textproc/uncrustify: fix build with GCC-based architecturesPiotr Kubaj2019-05-031-5/+1
| | | | | | | | | | Adding USES=compiler:c++11-lang fixes this port on GCC architectures: cc1plus: error: unrecognized command line option "-std=gnu++0x" Approved by: mentors (implicit approval) Notes: svn path=/head/; revision=500730
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* - Fix build broken by a tag slip. Exact commit specified corresponds to ↵Dmitry Marakasov2018-11-302-3/+4
| | | | | | | original 0.68.1 tag contents Notes: svn path=/head/; revision=486260
* - Update to 0.68.1Dmitry Marakasov2018-11-272-7/+11
| | | | | | | - Try to unbreak with ancient gcc Notes: svn path=/head/; revision=486048
* - Update to 0.68Dmitry Marakasov2018-11-172-4/+4
| | | | Notes: svn path=/head/; revision=485209
* - Update to 0.67Dmitry Marakasov2018-05-182-6/+7
| | | | Notes: svn path=/head/; revision=470253
* - Update to 0.66.1Dmitry Marakasov2017-11-243-40/+5
| | | | Notes: svn path=/head/; revision=454825
* Mark some ports failing on powerpc64. These ports are either newMark Linimon2017-06-021-0/+4
| | | | | | | | | | | ports, or had been recently unblocked. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=442405
* - Update to 0.65Dmitry Marakasov2017-05-224-4/+42
| | | | Notes: svn path=/head/; revision=441462
* CMAKE_INSTALL_MANDIR is not set correctly by default, no need to override itDmitry Marakasov2016-12-251-1/+0
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=429430
* - Update to 0.64Dmitry Marakasov2016-10-183-8/+29
| | | | Notes: svn path=/head/; revision=424167
* Most commonly used build systems support silent builds, when theyDmitry Marakasov2016-09-091-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hide actual commands executed and only show short summary line (like "CC foo.c"). CMake and ninja enable this by default, some autotools using ports do as well. This is unacceptable because we need complete build logs at any time, so we now switch to verbose build logs unconditionally. Note that this change deliberately affects ALL builds and not only package builds on cluster, because we need to be sure that user experiencing failure can always provide informative build log regardless of settings and without rerunning the build. Change summary: - Always do verbose builds for cmake, ninja and GNU configure (the latter includes check if --disable-silent-rules is actually supported by the configure script; there are isolated cases when it's not true) - Remove CMAKE_VERBOSE, NINJA_VERBOSE and CONFIGURE_ARGS=--disable-silent-rules from all ports which set them for this is no longer needed - Revert hacks for --disable-silent-rules support priorly committed to biology/ncbi-blast+ and net-p2p/mldonkey - no longer needed as well Submitted by: amdmi3 Reviewed by: mat Exp-run by: antoine Approved by: portmgr (mat, antoine) Differential Revision: D7534 Notes: svn path=/head/; revision=421635
* - Update to 0.63Dmitry Marakasov2016-05-122-3/+3
| | | | Notes: svn path=/head/; revision=415082
* - Update to 0.62Dmitry Marakasov2016-02-053-6/+12
| | | | | | | | | | - Add LICENSE - Use test framework - Switch to options helpers - Fix WWW: Notes: svn path=/head/; revision=408131
* - Update to 0.61Dmitry Marakasov2014-12-292-3/+3
| | | | Notes: svn path=/head/; revision=375766
* - Use '.' instead of '*' in COPYTREE_* all over my portsDmitry Marakasov2013-12-161-1/+1
| | | | | | | Suggested by: danfe Notes: svn path=/head/; revision=336655
* - Remove DOCS, NLS and EXAMPLES from OPTIONS_DEFAULT in my ports, as ↵Dmitry Marakasov2013-12-161-1/+0
| | | | | | | suggested by Porter's Handbook Notes: svn path=/head/; revision=336650
* - Support stagingDmitry Marakasov2013-10-302-20/+6
| | | | | | | - Convert USE_GMAKE to USES Notes: svn path=/head/; revision=332113
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | textproc) Notes: svn path=/head/; revision=327773
* - Update to 0.60Dmitry Marakasov2013-03-042-3/+3
| | | | Notes: svn path=/head/; revision=313389
* - Update to 0.59 (1)Dmitry Marakasov2012-12-214-23/+12
| | | | | | | | | | | | | | - Trim header - OptionsNG - Use COPYTREE_SHARE for docs installation - Remove unneeded patch - Make build more verbose PR: 174483 (1) Submitted by: Maxim Samsonov <xors@mailup.net> (1) Notes: svn path=/head/; revision=309347
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276994
* - Update to 0.54Dmitry Marakasov2009-10-192-4/+4
| | | | | | | | PR: 139696 Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> Notes: svn path=/head/; revision=243043
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-1/+1
| | | | | | | starting with T,U,V Notes: svn path=/head/; revision=240076
* - Update to 0.53Dmitry Marakasov2009-05-182-4/+4
| | | | Notes: svn path=/head/; revision=234146
* - Update to 0.52Dmitry Marakasov2009-03-012-4/+4
| | | | Notes: svn path=/head/; revision=229290
* - Update to 0.51Dmitry Marakasov2008-11-282-4/+4
| | | | Notes: svn path=/head/; revision=223473
* - Update to 0.50Dmitry Marakasov2008-10-262-4/+4
| | | | Notes: svn path=/head/; revision=222098
* - Update to 0.49Dmitry Marakasov2008-08-232-4/+4
| | | | Notes: svn path=/head/; revision=219040
* - Update to 0.48Dmitry Marakasov2008-07-222-4/+4
| | | | | | | Approved by: miwi (mentor explicit) Notes: svn path=/head/; revision=217315
* Update my email address in 132 ports.Dmitry Marakasov2008-06-191-1/+1
| | | | | | | Approved by: miwi (mentor) Notes: svn path=/head/; revision=215297
* - Update to 0.47Martin Wilke2008-06-182-4/+6
| | | | | | | | PR: 124374 Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> (maintainer) Notes: svn path=/head/; revision=215200
* - Update to 0.46Martin Wilke2008-04-252-4/+4
| | | | | | | | PR: 123028 Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> (maintainer) Notes: svn path=/head/; revision=211968
* - Update to 0.45Martin Wilke2008-03-132-4/+4
| | | | | | | | PR: 121524 Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> (maintainer) Notes: svn path=/head/; revision=208973
* - Update to 0.44Martin Wilke2008-02-152-4/+4
| | | | | | | | PR: 120622 Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> (maintainer) Notes: svn path=/head/; revision=207240
* - Update to 119508Martin Wilke2008-01-102-4/+4
| | | | | | | | PR: 119508 Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> Notes: svn path=/head/; revision=205426
* - Update to 0.42Martin Wilke2007-12-142-4/+4
| | | | | | | | PR: 118559 Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> (maintainer) Notes: svn path=/head/; revision=203568
* - Update to 0.40Martin Wilke2007-10-172-4/+4
| | | | | | | | PR: 117197 Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru> (maintainer) Notes: svn path=/head/; revision=201598
* - Update to 0.39Thomas Abthorpe2007-10-012-4/+4
| | | | | | | | | PR: ports/116791 Submitted by: Dmitry Marakasov <amdmi3 amdmi3.ru> (maintainer) Approved by: clsung (mentor, implicit) Notes: svn path=/head/; revision=200557
* - Update to 0.38Thomas Abthorpe2007-09-072-4/+4
| | | | | | | | | PR: ports/116135 Submitted by: Dmitry Marakasov <amdmi3_AT_amdmi3.ru> (maintainer) Approved by: clsung (mentor) Notes: svn path=/head/; revision=198977
* - update to 0.37Thomas Abthorpe2007-08-302-4/+4
| | | | | | | | | PR: ports/115770 Submitted by: Dmitry Marakasov <amdmi3_AT_amdmi3.ru> (maintainer) Approved by: clsung (mentor) Notes: svn path=/head/; revision=198524