aboutsummaryrefslogtreecommitdiff
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Add a script for updating the author list.Gravatar Sadie Powell2021-12-101-0/+59
|
* Only emit an email address into a copyright header if one exists.Gravatar Sadie Powell2021-12-101-1/+6
|
* Remind users about the `selfsigned` option to inspircd-testssl.Gravatar Sadie Powell2021-11-231-1/+3
|
* Switch mkdescriptions from YAML::Tiny to YAML.Gravatar Sadie Powell2021-11-211-4/+4
|
* Switch mkdescriptions from Hoedown to CommonMark.Gravatar Sadie Powell2021-11-211-2/+2
|
* Update copyright headers.Gravatar InspIRCd Robot2021-08-273-1/+3
|
* Update mkdescriptions for the new YAML module documentation.Gravatar Sadie Powell2021-08-041-6/+6
|
* Hyphens are allowed in hostnames.Gravatar Matt Schatz2021-06-201-1/+1
|
* Write to STDERR on error in test-build.Gravatar Sadie Powell2021-05-281-3/+3
|
* Update references to config fields which were renamed.Gravatar Sadie Powell2021-04-141-7/+7
|
* Fix parsing the output of git-blame in mkheaders.Gravatar Sadie Powell2021-03-051-16/+13
|
* Ignore moved lines in mkheaders.Gravatar Sadie Powell2021-03-051-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2021-02-266-6/+6
|
* Always use for in Perl modules.Gravatar Sadie Powell2021-01-291-2/+2
|
* Migrate some stuff away from print_format.Gravatar Sadie Powell2021-01-273-6/+6
|
* Fix unnecessary begin blocks in Perl source files.Gravatar Sadie Powell2021-01-256-52/+15
|
* Update copyright headers.Gravatar InspIRCd Robot2020-10-301-0/+1
|
* Store generated SSL certificates in the .configure directory.Gravatar Sadie Powell2020-09-261-3/+17
| | | | Co-Authored-By: Nicole Kleinhoff <ilbelkyr@shalture.org>
* Fix mkheaders 'experimental push on scalar is now forbidden' warning.Gravatar Sadie Powell2020-07-291-4/+4
|
* Implement a tool for testing SSL connectivity.Gravatar Sadie Powell2020-06-161-0/+173
|
* Remove the DANE record hint from genssl.Gravatar Sadie Powell2020-06-021-13/+0
| | | | | This was never adopted by clients and its easy for servers to get a valid cert now so this is unnecessary.
* Rename mkversions to mkdescriptions.Gravatar Sadie Powell2020-04-152-0/+1
|
* Fix an oversight in mkversions that caused it to not update extras.Gravatar Sadie Powell2020-04-101-1/+1
|
* Add a tool for updating module descriptions based on the docs.Gravatar Sadie Powell2020-04-101-0/+87
|
* Add a tool for retrieving directives from source files.Gravatar Sadie Powell2020-04-061-0/+55
|
* Fix get_cpu_count not being evaluated as a scalar.Gravatar Sadie Powell2020-03-091-1/+1
| | | | This fixes a bug where the changes in 0c34d28447 did not work.
* Tell people to run make with the number of CPU cores plus 1.Gravatar Sadie Powell2020-02-101-1/+1
| | | | This results in faster builds as there's always one job waiting.
* Update copyright headers.Gravatar InspIRCd Robot2020-01-312-2/+2
|
* Add a function for showing a command whilst executing it.Gravatar Sadie Powell2020-01-182-6/+7
|
* Disable auto extras when TEST_BUILD_MODULES is set in test-build.Gravatar Sadie Powell2020-01-181-2/+6
|
* Migrate from Travis CI to GitHub Actions.Gravatar Sadie Powell2020-01-171-6/+0
| | | | | | This brings shiny new GitHub integrations as well as allowing us to bring back the macOS builds which were disabled because of the very broken Travis CI macOS infrastructure.
* Fix Perl tools not using the correct directory name in 'use lib'.Gravatar Sadie Powell2020-01-173-8/+10
|
* Update copyright headers.Gravatar InspIRCd Robot2020-01-112-4/+2
|
* Add a script for updating the copyright headers.Gravatar Sadie Powell2020-01-111-0/+149
|
* Update my name and email address.Gravatar Sadie Powell2019-12-312-2/+2
|
* Get rid of the platform tests in the Travis build script.Gravatar Peter Powell2019-12-061-9/+3
| | | | We only build on Xenial nowadays so this check is unnecessary.
* Omit debug symbols when doing CI builds.Gravatar Peter Powell2019-04-161-1/+2
| | | | This provides a significant build time improvement.
* Upgrade Travis CI system to Xenial.Gravatar Peter Powell2019-04-161-2/+2
|
* Replace the geoip module with geo_maxmind, geoban, and geoclass.Gravatar Peter Powell2019-04-151-2/+2
| | | | | | | | | | MaxMind have EOL'd the library that the geoip module uses and have replaced it with libmaxminddb. The geoip module has been split into geo_maxmind which provides geolocation data, geoban which provides location-based channel bans, and geoclass which is used to filter a user into a connect class based on location.
* Remove support for static modules.Gravatar Peter Powell2018-07-311-13/+3
| | | | | | | | | This has been frequently broken in the past and as far as I know is used by literally nobody. Also, even if all modules are compiled into the core any libraries linked against are and have always been linked dynamically making this unusable on platforms without dynamic libraries.
* Remove support for the Solaris IOCP socket engine.Gravatar Peter Powell2017-10-221-1/+0
| | | | | | | | | | After discussing this with Adam we have decided that there is very little point in keeping this now that Solaris has been killed. Any legacy Solaris users will have to make do with poll. This change does not affect users of Solaris forks like Illumos as they have support for epoll which will have already been selected over Solaris IOCP by configure.
* test-build: Pass the make jobs as a separate argument.Gravatar Peter Powell2017-10-151-2/+2
| | | | The old way was only necessary when we supported BSD Make.
* Add support for generating a certificate signing request to genssl.Gravatar Peter Powell2017-03-171-1/+5
|
* Make genssl use STDERR and the real binary name for error messages.Gravatar Peter Powell2016-12-021-1/+1
|
* Update build system for the removal of . from @INC.Gravatar Peter Powell2016-11-082-1/+4
|
* Merge pull request #1223 from SaberUK/master+travisGravatar Attila Molnar2016-09-162-15/+13
|\ | | | | Speed up Travis builds.
| * Speed up Travis builds.Gravatar Peter Powell2016-09-152-15/+13
| | | | | | | | | | | | - Switch Linux builds to Ubuntu 14.04 from 12.04. - Split dynamic and static builds into different jobs. - Remove OS X builds as the infrastructure is slow and unreliable.
* | Rewrite the build system directive parser.Gravatar Peter Powell2016-09-161-1/+1
|/
* Don't try to run `inspircd --version` after doing a Travis build.Gravatar Peter Powell2016-08-191-1/+0
| | | | All of the files will have already been removed by test-build.
* Merge insp20Gravatar Attila Molnar2016-08-171-0/+19
|\