notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
non port: Mk/Uses/elixir.mk
SVNWeb

Number of commits found: 21

Sun, 24 Apr 2022
[ 10:00 Tobias C. Berner (tcberner) search for other commits by this committer ]    commit hash:aa2539679084872cd84112e9df6bfee571570623  commit hash:aa2539679084872cd84112e9df6bfee571570623  commit hash:aa2539679084872cd84112e9df6bfee571570623  aa25396  (Only the first 10 of 118 ports in this commit are shown above. View all ports for this commit)
framework: cleanup conditional-indentations in Mk/

Run Tools/scripts/indent_make_if.pl on all of Mk.

These white space changes contribute greatly to the readability of those files.
As we have a version control system, finding out the reasons for the changes
prior to these white space changes is still easily possible

Differential Revision:	https://reviews.freebsd.org/D35024
Reviewed by:		portmgr (rene, bapt)
Tue, 6 Apr 2021
[ 14:27 Mathieu Arnold (mat) search for other commits by this committer ]    commit hash:5d33e045968104ac678d8b4b4ec1e8956bbf68e0  commit hash:5d33e045968104ac678d8b4b4ec1e8956bbf68e0  commit hash:5d33e045968104ac678d8b4b4ec1e8956bbf68e0  5d33e04  (Only the first 10 of 224 ports in this commit are shown above. View all ports for this commit)
framework: Remove $FreeBSD$

Where appropriate fiddle with a few other things.
Tue, 25 Apr 2017
[ 08:34 olgeni search for other commits by this committer ] Original commit   Revision:439368
Fix usage of left braces to be compatible with extended regular
expressions.

PR:		218600
Submitted by:	Kyle Evans
Wed, 18 Jan 2017
[ 13:20 tijl search for other commits by this committer ] Original commit   Revision:431796 (Only the first 10 of 120 ports in this commit are shown above. View all ports for this commit)
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user.  Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables.  LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well.  The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.

Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).

PR:		215882
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Fri, 21 Oct 2016
[ 12:51 mat search for other commits by this committer ] Original commit   Revision:424411 (Only the first 10 of 718 ports in this commit are shown above. View all ports for this commit)
${RM} already has -f.

PR:		213570
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Sun, 27 Mar 2016
[ 01:23 bapt search for other commits by this committer ] Original commit   Revision:411970 (Only the first 10 of 85 ports in this commit are shown above. View all ports for this commit)
Remove the now unneeded ${PORTSDIR} from dependency definition in
The infrastructure Makefiles

PR:		206569
Exp run by:	antoine
Differential Revision:	D5047
Sat, 23 Jan 2016
[ 16:46 olgeni search for other commits by this committer ] Original commit   Revision:407042
Do not try to depend on Erlang libraries (if any) in
ELIXIR_LIB_ROOT, because they do not exist there.

This fixes r406955 for fmake compatibility (on 9.3).
[ 06:42 antoine search for other commits by this committer ] Original commit   Revision:406960
Revert r406955, it break INDEX with fmake

With hat:	portmgr
Reported by:	beefy1, beefy2
Fri, 22 Jan 2016
[ 23:27 olgeni search for other commits by this committer ] Original commit   Revision:406955
Do not try to depend on Erlang libraries (if any) in
ELIXIR_LIB_ROOT, because they do not exist there.
Thu, 15 Oct 2015
[ 07:36 bapt search for other commits by this committer ] Original commit   Revision:399326 (Only the first 10 of 67 ports in this commit are shown above. View all ports for this commit)
Readd PORTSDIR for now we will only start removing them after 2016Q1 is branched

This gives more time for tools to get updated, available in packages etc before
bothering users
Wed, 14 Oct 2015
[ 16:49 bapt search for other commits by this committer ] Original commit   Revision:399278 (Only the first 10 of 67 ports in this commit are shown above. View all ports for this commit)
Drop the necessity to add ${PORTSDIR} to dependency line

Modify make describe to automatically prepend ${PORTSDIR} if the path for the
port is not absolute

Checked with poudriere, portmaster, portupgrade

PR:		203685
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D3866
Mon, 27 Jul 2015
[ 15:34 olgeni search for other commits by this committer ] Original commit   Revision:392987
Not all Hex package specifications start with the '~' character,
so let's just look for '"'.
Sat, 18 Jul 2015
[ 19:32 olgeni search for other commits by this committer ] Original commit   Revision:392444
Allow underscores in Elixir application names.
Thu, 16 Jul 2015
[ 09:27 olgeni search for other commits by this committer ] Original commit   Revision:392285
In MIX_REWRITE, suppress optional dependencies too.
Wed, 15 Jul 2015
[ 14:09 olgeni search for other commits by this committer ] Original commit   Revision:392142
Find more instances of ":only" dependencies in MIX_REWRITE.
Tue, 14 Jul 2015
[ 23:05 olgeni search for other commits by this committer ] Original commit   Revision:392109
In elixir.mk, add MIX_REWRITE and ELIXIR_LIB_ROOT.

ELIXIR_LIB_ROOT is the default Elixir library path in LOCALBASE.

If MIX_REWRITE is defined, all optional dependencies will be stripped
out (test, doc, etc.), while all required libs will be converted to
actual code paths in ELIXIR_LIB_ROOT.

For example, it will turn the following dependency definitions:

 defp deps do
    [
      { :inflex, "~> 1.0" },
      { :estree, "~> 2.0" },
      { :shouldi, only: :test },
(Only the first 15 lines of the commit message are shown above View all of this commit message)
[ 17:44 olgeni search for other commits by this committer ] Original commit   Revision:392037
The correct default for ELIXIR_HIDDEN is ELIXIR_APP_NAME, which
can be different from PORTNAME.
Mon, 13 Jul 2015
[ 11:23 olgeni search for other commits by this committer ] Original commit   Revision:391888
Add support for more variables in elixir.mk.

- MIX_ENV, which works like MAKE_ENV for Mix builds
- MIX_TARGET ("compile", etc.)
Tue, 7 Jul 2015
[ 23:03 olgeni search for other commits by this committer ] Original commit   Revision:391537
In elixir.mk, replace custom targets with do-build and do-install.
Sat, 4 Jul 2015
[ 08:53 olgeni search for other commits by this committer ] Original commit   Revision:391294
Change the default ELIXIR_HIDDEN regexp to match PORTNAME exactly.
Fri, 3 Jul 2015
[ 13:59 olgeni search for other commits by this committer ] Original commit   Revision:391241 (Only the first 10 of 23 ports in this commit are shown above. View all ports for this commit)
Add a new USES elixir.mk (from lang/elixir/bsd.elixir.mk) and
adjust all Elixir ports.

Number of commits found: 21