summaryrefslogtreecommitdiff
path: root/tools/rpm
Commit message (Collapse)AuthorAgeFilesLines
* src,tools: use https://nodejs.org URL when possible.XhmikosR2018-07-141-1/+1
| | | | | | | | | | | | | | PR-URL: https://github.com/nodejs/node/pull/21719 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
* tools: add --prof-process flag to node binaryMatt Loring2015-12-081-4/+0
| | | | | | | | | | | This change cleans up outstanding comments on #3032. It improves error handling when no isolate file is provided and adds the --prof-process flag to the node binary which executes the tick processor on the provided isolate file. PR-URL: https://github.com/nodejs/node/pull/4021 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Evan Lucas <evanlucas@me.com>
* installer: install the tick processorMatt Loring2015-11-251-0/+4
| | | | | | | | | | The tick processor is used to provide readable profiling information from isolate tick logs (produced by a call to node -prof). This patch installs the file at $PREFIX/share/doc/node/tick-processor. PR-URL: https://github.com/nodejs/node/pull/3032 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* node: additional cleanup for node renamecjihrig2015-08-231-1/+1
| | | | | | | Fixes: https://github.com/nodejs/node/issues/2361 PR-URL: https://github.com/nodejs/node/pull/2367 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
* node: rename from io.js to nodecjihrig2015-08-232-11/+11
| | | | | | | | | | | This commit replaces instances of io.js with Node.js, based on the recent convergence. There are some remaining instances of io.js, related to build and the installer. Fixes: https://github.com/nodejs/node/issues/2361 PR-URL: https://github.com/nodejs/node/pull/2367 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
* tools: install gdbinit from v8 to $PREFIX/shareAli Ijaz Sheikh2015-07-071-0/+4
| | | | | | | | | | | gdbinit provided by V8 can be very useful for low-level debugging of crashes in node and in binary addons. Most useful commands at 'jst' for JS stack traces and 'job' for printing a heap object. This patch installs the file at $PREFIX/share/doc/node/gdbinit. Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> PR-URL: https://github.com/nodejs/io.js/pull/2123
* build: minor changes to fix rpm buildDan Varga2015-04-131-2/+5
| | | | | PR-URL: https://github.com/iojs/io.js/pull/1408 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
* build: rename rpmbuild .spec fileBen Noordhuis2014-12-052-4/+4
| | | | | | | | | Rename the .spec file from node.spec to iojs.spec and update the build script. Done as a separate commit to not obscure the changes from the previous commit. PR-URL: https://github.com/iojs/io.js/pull/71 Reviewed-By: Rod Vagg <rod@vagg.org>
* build: update rpmbuild .spec fileBen Noordhuis2014-12-051-10/+13
| | | | | | | | | Rename the package to iojs. No Conflicts: header is necessary because the package was already marked as conflicting with the Fedora nodejs package. PR-URL: https://github.com/iojs/io.js/pull/71 Reviewed-By: Rod Vagg <rod@vagg.org>
* build: add rpmbuild .spec fileBen Noordhuis2014-11-052-0/+148
Add a .spec file and a rpmbuild(1) driver script. Useful for people on RHEL-based systems that want to compile and package from source. PR-URL: https://github.com/node-forward/node/pull/10 Reviewed-By: Rod Vagg <rod@vagg.org>