summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* dev-lang/erlang: remove unused patchesMichael Mair-Keimberger2020-05-262-60/+0
| | | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/15976 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/erlang: remove unused fileMichael Mair-Keimberger2020-04-181-2/+0
| | | | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/15393 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/erlang: fix lib/asn1 depend, bug #705500Sergei Trofimovich2020-01-171-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The build failure is reproducible on a 4-core CPU when using massive parallelism: ``` $ make -j21 -l4 ... GEN asn1ct_eval_ext.erl {"init terminating in do_boot", {undef,[{asn1ct_func,start_link,[],[]}, {prepare_templates,gen_asn1ct_eval,1, [{file,"prepare_templates.erl"},{line,58}]}, {init,start_it,1,[]},{init,start_em,1,[]}]}} init terminating in do_boot () Crash dump is being written to: erl_crash.dump...done make[2]: *** [Makefile:139: asn1ct_eval_ext.erl] Error 1 ``` Here `asn1ct_eval_ext.erl` attempts to load `asn1ct_func.beam` via `prepare_templates.erl` before it's compiled into `.beam` file. The change pulls in a dependency on `asn1ct_func.beam`. Reported-by: WGH Closes: https://bugs.gentoo.org/705500 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/erlang: bump up to 22.2.2Sergei Trofimovich2020-01-141-0/+45
| | | | | Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/erlang: drop -relaxed_command_check from defaultsSergei Trofimovich2019-11-221-0/+2
| | | | | | | Reported-by: Hanno Böck Bug: https://bugs.gentoo.org/700930 Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/erlang: drop old versionsPetr Vaněk2019-11-222-26/+0
| | | | | | Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Petr Vaněk <arkamar@atlas.cz> Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/erlang: version bump to 22.1.1Petr Vaněk2019-10-103-0/+36
| | | | | | | | Closes: https://bugs.gentoo.org/695770 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Petr Vaněk <arkamar@atlas.cz> Closes: https://github.com/gentoo/gentoo/pull/13141 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
* dev-lang/erlang: fix epmd conf.d default argsHans de Graaff2019-09-181-1/+1
| | | | | | | | All epmd options start with a single dash. Use -daemon instead of --daemon. Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Hans de Graaff <graaff@gentoo.org>
* dev-lang/erlang: Drop oldMichał Górny2019-09-112-153/+0
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-lang/erlang: make epmd.init need net.lo for >=openrc-0.41.2Zac Medico2019-07-172-4/+4
| | | | | Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Zac Medico <zmedico@gentoo.org>
* dev-lang/erlang: Move command_args to conf.diamdenchik2019-06-282-0/+26
| | | | | | Signed-off-by: Denis Pershin <bazukajo@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11830 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* dev-lang/erlang: Init script relicensed to Apache-2.0.Ulrich Müller2019-06-171-2/+2
| | | | | | | Acked-by: Steve Arnold <nerdboy@gentoo.org> Closes: https://bugs.gentoo.org/425928 Package-Manager: Portage-2.3.67, Repoman-2.3.14 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* dev-lang/erlang: version bump to 22.0.2Anthony G. Basile2019-06-041-0/+27
| | | | | Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11
* dev-lang/erlang: fix USE=pgo loop, bug #686786Sergei Trofimovich2019-05-261-0/+13
| | | | | | | | | | It does not completely recover PGO support but at least stops ./configure from looping indefinitely. Reported-by: Dennis Schridde Bug: https://bugs.gentoo.org/686786 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/erlang: fix lto support, bug #681778Sergei Trofimovich2019-05-261-0/+140
| | | | | | | | | | | | | re:replace/4 used libpcre2 with a stack overflow check. lto was smart enough to inline the check too much to make it useless. The changes uninlines stack prober and fixes re:replace/4. Reported-by: Fabio Coatti Closes: https://bugs.gentoo.org/681778 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* dev-lang/erlang: Old.Jeroen Roovers2018-10-221-111/+0
| | | | | Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Jeroen Roovers <jer@gentoo.org>
* dev-lang/erlang: version bump to 21.1Ștefan Talpalaru2018-09-301-0/+14
| | | | | | | | | | | | | | | | | | | | | | I removed some deprecated configure options, properly (re-)added the "wxwidgets" USE flag - without automagic dependencies, added the "pgo" flag and made some USE flags enabled by default to match upstream's defaults. Most of the ebuild was refactored, after code reviews, with the more significant change being the replacement of two shell functions copied from an upstream build script with a call to a patched version of that script. When the "pgo" USE flag is enabled, distcc and ccache are disabled, to avoid a build failure due to a version mismatch in .gcda files that cannot be explained by different GCC versions. Closes: https://bugs.gentoo.org/653700 Closes: https://bugs.gentoo.org/658656 Signed-off-by: Ștefan Talpalaru <stefantalpalaru@yahoo.com> Signed-off-by: Michał Górny <mgorny@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/9357
* dev-lang/erlang: add create pidfile patch for epmd and openrcStephen L Arnold2018-08-062-3/+100
| | | | | | | * this is supposed to be clean and minimally invasive, so follows upstream idef practices :/ Package-Manager: Portage-2.3.40, Repoman-2.3.9
* dev-lang/erlang: Version bump to 20.3.2Nick Sarnie2018-04-201-0/+42
| | | | | | | | | | | | | | This change includes a major update to the ebuild. I, with guidance from gokturk, have fixed many mistakes and cleaned up the ebuild. The build system is difficult to work with, and requires some special autoconf work to get the correct configure scripts generated. In addition, please note that the erlang.org and github releases for the same version are different, the biggest factor being that the erlang.org release includes precompiled binaries, while the github release does not. Please also note that I have dropped the "wxwidgets" USE flag, as upstream unconditionally links against it Signed-off-by: Nick Sarnie <commendsarnex@gmail.com> Package-Manager: Portage-2.3.28, Repoman-2.3.9
* dev-lang/erlang: backport libressl-2.6 suport, bug #640946Sergei Trofimovich2018-01-211-0/+111
| | | | | | | | | Backport of https://github.com/erlang/otp/commit/b5b6c7695c5377b5aa474d8620df7c3e9a1ba629 Reported-by: Toralf Förster Bug: https://bugs.erlang.org/browse/ERL-546 Closes: https://bugs.gentoo.org/640946 Package-Manager: Portage-2.3.19, Repoman-2.3.6
* dev-lang/erlang: remove unused patchMichael Mair-Keimberger2017-09-031-531/+0
|
* Drop remaining $Id$ and $Header$ from files.Ulrich Müller2017-02-281-1/+0
| | | | Bug: 611234
* dev-lang/erlang: remove unused patchesMichael Mair-Keimberger (asterix)2016-08-302-96/+0
| | | | | Acked-By: Dirkjan Ochtman <djc@gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/2161
* dev-lang/erlang: use #!/sbin/openrc-run instead of #!/sbin/runscriptAustin English2016-05-181-1/+1
|
* dev-lang/erlang: version bump to 18.2.1 (fixes bug 563240)Dirkjan Ochtman2016-01-091-0/+113
| | | | Package-Manager: portage-2.2.24
* dev-lang/erlang: Support wxGTK:3.0 (#563322)Pacho Ramos2015-10-251-0/+531
| | | | Package-Manager: portage-2.2.23
* proj/gentoo: Initial commitRobin H. Johnson2015-08-085-0/+130
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed