notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine

Bot filter coming soon

To deter bots pegging the database CPU to 100%, a bot testing filter to be added to the website. This should not affect newsfeeds etc. Anubis seems light-weight - it is already in use within the FreeBSD Project. This notice is just a heads up in case you see something odd. This notice will be updated after Anubis is installed.

non port: Mk/bsd.default-versions.mk

Number of commits found: 432 (showing only 32 on this page)

«  1 | 2 | 3 | 4 | 5 

Thursday, 23 Jul 2015
01:44 hrs search for other commits by this committer
Remove minor version numbers.

Suggested by:	mat
Original commitRevision:392705 
Monday, 20 Jul 2015
21:07 hrs search for other commits by this committer
Allow support of minor version number in GHOSTSCRIPT_DEFAULT since
there are two packages for Ghostscript 9.x, 9.06 and 9.16.
Original commitRevision:392603 
Thursday, 16 Jul 2015
20:53 kwm search for other commits by this committer
Convert code in bsd.port.mk for USE_GHOSTSCRIPT* to USES=ghostscript.

Add GHOSTSCRIPT_DEFAULT to bsd.default-versions.mk for easy version selection.
Arguments supported: <empty>, build, run, nox11 and agpl

PR:		201201 (exp-run)
Approved by:	portmgr (mat@)
Exp run by:	antione@ (previous patch)
Differential Revision:	https://reviews.freebsd.org/D2938
Original commitRevision:392322 
Wednesday, 13 May 2015
10:20 mat search for other commits by this committer
Change the default Perl to 5.20.

PR:		200134
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Original commitRevision:386205 
Sunday, 1 Mar 2015
03:04 swills search for other commits by this committer
- Switch default version of Ruby to 2.0

PR:		196632
Original commitRevision:380171 
Friday, 20 Feb 2015
13:56 ale search for other commits by this committer
Switch default PHP version to 5.6.x.

- Update PHP 5.4 to 5.4.38 release
- Update PHP 5.5 to 5.5.22 release
- Update PHP 5.6 to 5.6.6 release

PR:		195604
Approved by:	portmgr
Original commitRevision:379433 
Wednesday, 4 Feb 2015
13:45 ale search for other commits by this committer
Switch default MySQL version to 5.6.

PR:		195604
Approved by:	portmgr
Original commitRevision:378400 
Monday, 26 Jan 2015
00:03 gerald search for other commits by this committer
Move LANG_GCC_IS from bsd.gcc.mk to bsd.default-versions.mk and use
this and GCC_DEFAULT instead of hard-coding the version of GCC used
by lang/gcc in Uses/fortran.mk.

Approved by:	portmgr (antoine)
Original commitRevision:377909 
Saturday, 10 Jan 2015
23:15 demon search for other commits by this committer
Switch default python3 version from 3.3 to 3.4.
Bump PORTREVISIONs for the affected ports.

Exp-run by:	antoine
Original commitRevision:376731 
Monday, 8 Dec 2014
09:57 marino search for other commits by this committer
Change PostgreSQL default version from 9.2 to 9.3

An exp-run has been performed on this default version change, and both
pgsql and portmgr are aware of this change.  Note that PR originally
made the jump from 9.0 to 9.3, but a conservative change to 9.2 was
done in May instead.

PR:	187286
Original commitRevision:374256 
Wednesday, 26 Nov 2014
13:08 mat search for other commits by this committer
Change the way Perl modules are installed, update the default Perl to 5.18.

Before, we had:

  site_perl :           lib/perl5/site_perl/5.18
  site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
  perl_man3 :           lib/perl5/5.18/man/man3

Now we have:

  site_perl : lib/perl5/site_perl
  site_arch : lib/perl5/site_perl/mach/5.18
  perl_man3 : lib/perl5/site_perl/man/man3

Modules without any .so will be installed at the same place regardless of the
Perl version, minimizing the upgrade when the major Perl version is changed.
It uses a version dependent directory for modules with compiled bits.

As PERL_ARCH is no longer needed in plists, it has been removed from
PLIST_SUB.

The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now
always removed, as is perllocal.pod.

The old site_perl and site_perl/arch directories have been kept in the
default Perl @INC for all Perl ports, and will be phased out as these old
Perl versions expire.

PR:		194969
Differential Revision:	https://reviews.freebsd.org/D1019
Exp-run by:	antoine
Reviewed by:	perl@
Approved by:	portmgr
Original commitRevision:373448 
Thursday, 9 Oct 2014
01:08 swills search for other commits by this committer
Switch default Ruby to 2.0
Original commitRevision:370495 
Wednesday, 10 Sep 2014
19:09 gerald search for other commits by this committer
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

This entails updating the lang/gcc port as well as changing the default
in Mk/bsd.default-versions.mk, and it replaces the CONFLICT between the
lang/gcc and lang/gcc47 ports by lang/gcc48.

GCC now uses C++ as its implementation language and performs more
aggressive loop analysis which can be disabled via the
-fno-aggressive-loop-optimizations command-line option.

Compilation of extremely large functions has been signficantly improved,
as have interprocedural optimizations.

A new optimization level -Og has been introduced.  It addresses the need
for fast compilation and a superior debugging experience while providing
a reasonable level of run-time performance.  This should be better
suitable for development than the default -O0.

A new local register allocator (LRA) has been implemented, which replaces
the 26 year old reload pass and improves generated code quality. For now
it is active on the x86 and x86-64 targets.

AddressSanitizer, a fast memory error detector, has been added and can be
enabled via -fsanitize=address.

Each diagnostic emitted now includes the original source line and a caret
indicating the column.

The new option -Wpedantic is an alias for -pedantic, which is now deprecated.

The C++ frontend and associated run-time library libstdc++ have gained
support for many additional C++11 features.  As with previous releases
the Fortrand frontend has seen many improvements as well.

Support for the AArch64 has been added, and there are many improvements
to the x86/x86-64 backend and others.

See http://gcc.gnu.org/gcc-4.8/changes.html for an extense list of changes;
http://gcc.gnu.org/gcc-4.8/porting_to.html for information on how to port
to that new version.

PR:		192025
Tested by:	antoine (-exp runs)
Original commitRevision:367883 
Sunday, 13 Jul 2014
15:51 ohauer search for other commits by this committer
- set www/apache24 as the default apache version

requested by bz@ on ports@
Original commitRevision:361689 
Monday, 2 Jun 2014
18:29 antoine search for other commits by this committer
Revert r356123
This change was not exp-ran and if breaks a few ports because the python3
metaport and bsd.python.mk do not handle python34 well for now

Discussed with:	mva
With hat:	portmgr
Original commitRevision:356242 
Sunday, 1 Jun 2014
14:03 demon search for other commits by this committer
Python 3.4 is a latest version of python-3 branch, so use it.
Original commitRevision:356123 
Thursday, 29 May 2014
20:45 mat search for other commits by this committer
Change postgresql's default version to 9.2.

Requested by:	so many people
Exp-run by:	antoine
Sponsored by:	Absolight
Original commitRevision:355746 
Sunday, 11 May 2014
20:46 bapt search for other commits by this committer
Switch firebird to use DEFAULT_VERSIONS macro to set the default
While here drop support for firebird 2.0
Original commitRevision:353730 
Monday, 5 May 2014
09:45 bapt search for other commits by this committer
Convert all :U to :tu and :L to :tl

Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a
replacement for :U and :L (which has been marked as deprecated)

bmake which is the default on FreeBSD 10+ only support by default
:tu/:tl a hack has been added at the time to support :U and :L to ease
migration. This hack is now not necessary anymore

Note that this makes the ports tree incompatible with make(1) from
FreeBSD 8.3 or earlier

With hat:	portmgr
Original commitRevision:352986 
Wednesday, 26 Mar 2014
03:32 acm search for other commits by this committer
- Update to 2.6.4
Original commitRevision:349217 
Monday, 10 Mar 2014
20:41 gerald search for other commits by this committer
Update the default version of GCC used in the Ports Collection from
GCC 4.6.4 to GCC 4.7.3.  This entails updating the lang/gcc port as
well as changing the default in Mk/bsd.default-versions.mk.

This adds powerpc64 as a supported architecture (and removes ia64,
though it can be supported by manually installing lang/gcc48).

New binaries %%GNU_HOST%%-gcc-ar47, %%GNU_HOST%%-gcc-nm47, and
%%GNU_HOST%%-gcc-ranlib47 are provided to support link-time
optimization (LTO) which scales significantly better.

And it adds support for indirect functions (IFUNCS), experimental
support for transactional memory in the compiler as well as a supporting
run-time library called libitm, a new string length optimization pass,
and support for atomic operations specifying the C++11/C11 memory model.

Version 3.1 of the OpenMP specification is now supported for the C,
C++, and Fortran compilers.

GCC accepts the options -std=c11 and -std=gnu11 for the C11 revision
of the ISO C standard which inlcude support for unicode strings,
nonreturning functions (_Noreturn and <stdnoreturn.h>), alignment
support (_Alignas, _Alignof, max_align_t, <stdalign.h>), and a
__builtin_complex built-in function.

The C++ frontend now accepts the -std=c++11, -std=gnu++11, and
-Wc++11-compat options and implements many C++11 features of the
language including extended friends syntax, explicit override
control, non-static data member initializers, user-defined literals,
alias declarations, delegating constructors, atomic classes, and more.

The C++ standard library and Fortran frontend have received many
improvements.  See http://gcc.gnu.org/gcc-4.7/changes.html for an
extense list of changes; http://gcc.gnu.org/gcc-4.7/porting_to.html
for information on how to port to that new version.

PR:		182136
Supported by:	Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by:	bdrewery (two -exp runs)
Original commitRevision:347808 
Tuesday, 25 Feb 2014
00:32 gerald search for other commits by this committer
Reword the documentation at the top of this file.

Sort the FPC_DEFAULT and GCC_DEFAULT entries.
Original commitRevision:345909 
Monday, 24 Feb 2014
22:15 gerald search for other commits by this committer
Replace all uses of GCC_DEFAULT_VERSION by GCC_DEFAULT, remove the
definition of the former from Mk/bsd.gcc.mk and add the latter --
still set to 4.6 -- to Mk/bsd.default-versions.mk.

Include Mk/bsd.default-versions.mk from Mk/bsd.gcc.mk to tie the
two together.
Original commitRevision:345903 
Tuesday, 11 Feb 2014
17:12 mat search for other commits by this committer
Use default-versions.mk for Apache, PHP, MySQL And PostgreSQL.

Submitted by:	Allan Jude
Reviewed by:	bdrewery, ohauer (apache), mat
With hat:	portmgr
Original commitRevision:343784 
Sunday, 12 Jan 2014
21:16 crees search for other commits by this committer
Strip postgresql code out of bsd.database.mk, and introduce USES=pgsql.

New syntax:

# Depend on postgresql-client
USES=	pgsql

# Depend on postgresql-client at least 9.2
USES=	pgsql:9.2+

#Depend on postgresql-server at least 9.0
USES=		pgsql:9.0+
WANT_PGSQL=	server

Postgresql now supports DEFAULT_VERSIONS, and please note that the
version syntax now includes dots(!); i.e. before it was 90, now 9.0

Reviewed by:	ade, silence from pgsql@
Original commitRevision:339550 
Friday, 10 Jan 2014
08:25 bapt search for other commits by this committer
Add a USES=lua (WIP) that only supports lua 5.2
Goal is to slowly port any lua software to lua 5.2 and then remove lua 5.1 along
with bsd.lua.mk
Make version flexible and settable via DEFAULT_VERSIONS to prepare the futur
days of lua
Original commitRevision:339322 
Wednesday, 23 Oct 2013
10:26 mat search for other commits by this committer
Change default perl to lang/perl5.16

PR:		ports/182550
Submitted by:	mat
Approved by:	bdrewery (exp-run)
Original commitRevision:331361 
Saturday, 12 Oct 2013
17:17 bdrewery search for other commits by this committer
- Fix spelling in comment

Submitted by:	des
With hat:	portmgr
Original commitRevision:330151 
Thursday, 3 Oct 2013
09:25 mva search for other commits by this committer
The default versions of lang/python* have been changed to support the
new DEFAULT_VERSIONS variable.

PYTHON_DEFAULT_VERSION, PYTHON2_DEFAULT_VERSION and
PYTHON3_DEFAULT_VERSION are deprecated. If you have set them in your
make.conf, you should change them something like

DEFAULT_VERSIONS=python=2.7 python2=2.7 python3=3.3
Original commitRevision:329164 
Friday, 20 Sep 2013
13:13 sunpoet search for other commits by this committer
- Fix typo
Original commitRevision:327700 
Thursday, 19 Sep 2013
09:49 gahr search for other commits by this committer
- Implement USES+=tcl and USES+=tk
- Use bsd.default-versions.mk to specify the default Tcl/Tk version (8.6)
- Add warnings about the now deprecated use of USE_TCL, USE_TK, ...

  Notes:

  * USES+=tcl and USES+=tk take the following optional arguments

    - either a version in the form of XY or XY+, or 'wrapper' to depend on
      lang/tcl-wrapper or x11-toolkits/tk-wrapper

    - either 'build' (bring in build depend) or 'run' (bring in run depend)

  * it is an error to specify both 'tcl' and 'tk' in USES.

  * The functionality currently implemented via INVALID_TCL_VER and
    INVALID_TK_VER is not yet available.

Approved by:	bapt (portmgr)
Original commitRevision:327607 
08:16 bapt search for other commits by this committer
Introduce the one-true-way to handle multi version ports

This defines a new macros for end users!
DEFAULT_VERSIONS.
This macros is used to end-users to define what version they want to be
the default version for the whole ports tree (for ports allowing that)

Syntax is the following:
DEFAULT_VERSIONS=	perl5=5.18 ruby=2.0

Swith bsd.ruby.mk to use it[1], switch Uses/perl5.mk to use it[2]

If you are maintaining settable multi version port, please change it so
it uses DEFAULT_VERSIONS.

Reviewed by:	ruby (swills) [1], perl (az) [2]
Approved by:	ruby (swills) [1], perl (az) [2]
Original commitRevision:327602 

Number of commits found: 432 (showing only 32 on this page)

«  1 | 2 | 3 | 4 | 5