1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
Commit Graph

40 Commits

Author SHA1 Message Date
Gerald Pfeifer
a9f015d155 Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
2018-12-12 01:35:33 +00:00
Gerald Pfeifer
c2a92a1aea Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
2018-03-10 17:46:04 +00:00
Mathieu Arnold
551be3c723 Convert Python ports to FLAVORS.
Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
2017-11-30 15:50:30 +00:00
Dmitry Marakasov
a1bc541388 - Fix shebangs
- Switch to options helpers
2017-04-21 14:12:30 +00:00
Raphael Kubo da Costa
131184c665 Remove MASTER_SITE that no longer exists. 2016-01-01 17:52:18 +00:00
Mathieu Arnold
88bfe4bd43 Cleanup DIST* variables.
When appropriate:
- Try to use DISTVERSION{SUF,PRE}FIX
- Replace PORTNAME-PORTVERSION by DISTNAME
- Convert MASTER_SITES to use macros
- Other light cleanup

With hat:	portmgr
Sponsored by:	Absolight
2015-05-11 18:34:57 +00:00
Dmitry Marakasov
33f366e4f2 - Drop @dirrm* from plist 2015-02-15 20:00:18 +00:00
Marcus von Appen
6d83e65a8b - Convert games/ to new USES=python
Approved by:	portmgr (implicit)
2014-10-20 17:36:02 +00:00
Gerald Pfeifer
15945f8122 Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
2014-09-10 20:50:31 +00:00
Pawel Pekala
d956828d57 - Add staging support
- Break lines around 80 characters
- Define DOCS option
- Sort pkg-plist
2014-04-12 17:14:26 +00:00
Gerald Pfeifer
1cd277bdce 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.

Part II, Bump PORTREVISIONs.

PR:		182136
Supported by:	Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by:	bdrewery (two -exp runs)
2014-03-10 20:55:20 +00:00
Gerald Pfeifer
3be3e90f93 Update to libmpc version 1.0.1 which brings the following fixes:
- Switched to automake 1.11.6, see CVE-2012-3386.
 - #14669: Fixed extraction of CC from gmp.h.
 - Fixed case of intermediate zero real or imaginary part in mpc_fma,
   found by hydra with GMP_CHECK_RANDOMIZE=1346362345.

This is on top of the following changes from version 1.0

 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no
   invariant sections) for the documentation.
 - 100% of all lines are covered by tests
 - Renamed functions
   . mpc_mul_2exp to mpc_mul_2ui
   . mpc_div_2exp to mpc_div_2ui
 - 0^0, which returned (NaN,NaN) previously, now returns (1,+0).
 - Removed compatibility with K&R compilers, which was untestable due
   to lack of such compilers.
 - New functions
   . mpc_log10
   . mpc_mul_2si, mpc_div_2si
 - Speed-ups
   . mpc_fma
 - Bug fixes
   . mpc_div and mpc_norm now return a value indicating the effective
     rounding direction, as the other functions.
   . mpc_mul, mpc_sqr and mpc_norm now return correct results even if
     there are over- or underflows during the computation.
   . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has
     infinite part and equals output variable is corrected.
   . mpc_fr_sub: Wrong return value for imaginary part is corrected.

Convert to the new LIB_DEPENDS standard and remove hard-coded
.so versions from a couple of dependent ports.

Bump PORTREVISIONS of all dependent ports.

PR:		183141
Approved by:	portmgr (bdrewery)
2013-10-26 00:52:33 +00:00
Baptiste Daroussin
c84e1cd8e6 Add NO_STAGE all over the place in preparation for the staging support (cat: games) 2013-09-20 17:36:33 +00:00
Dirk Meyer
2b74a89bc8 - update png to 1.5.10 2012-06-01 05:26:28 +00:00
Olli Hauer
b6ac748023 -remove MD5 2011-07-03 14:25:36 +00:00
Dirk Meyer
de78af3ac5 - update to 1.4.1
Reviewed by:	exp8 run on pointyhat
Supported by:	miwi
2010-03-28 06:47:48 +00:00
Sylvio Cesar Teixeira
f70d809275 - Update to 1.1.0
- Add my site in MASTER_SITES
- Removed OPTIONS because this port only run with all this OPTIONS.

Approved by:	itetcu (mentor)
Feature safe:	yes
2010-03-02 00:01:09 +00:00
Dirk Meyer
ca9c60461c - update to jpeg-8 2010-02-05 11:46:55 +00:00
Philip M. Gollucci
ea1cef69d6 SUBFILES += pkg-message
PR:             ports/142534
Submitted by:   Sevan Janiyan <venture37@geeklan.co.uk>
2010-01-10 00:36:15 +00:00
Doug Barton
2fadfa2cfb For ports maintained by ports@FreeBSD.org, remove names and/or
e-mail addresses from the pkg-descr file that could reasonably
be mistaken for maintainer contact information in order to avoid
confusion on the part of users looking for support. As a pleasant
side effect this also avoids confusion and/or frustration for people
who are no longer maintaining those ports.
2009-12-21 02:19:12 +00:00
Dirk Meyer
eca78ec61b - bump all port that indirectly depends on libjpeg and have not yet been bumped or updated
Requested by:	edwin
2009-07-31 13:57:52 +00:00
Alexander Botero-Lowry
4942ce5a7d - Make Python 2.5.1 the default Python version
- Add significantly better support in bsd.python.mk for working with
   Python Eggs and the easy_install system

Tested by:	pointyhat runs
Approved by:	pav (portmgr)
Most work by:	perky
Thanks to:	pav
2007-07-30 09:42:28 +00:00
Florent Thoumie
d4f0d0048a - Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
2007-05-19 20:36:56 +00:00
Mark Linimon
31632f816d Reset freebsd-dr@durchnull.de:
connect to durchnull.de[212.227.34.3]: Connection timed out

Hat:		portmgr
2007-03-28 09:10:45 +00:00
Tilman Keskinoz
50e523c8c1 Fix runtime issue:
"SDL_ttf render failed"

PR:		109148
Submitted by:	Hannes Frederic Sowa
Approved by:	maintainer timeout
2007-03-18 14:42:23 +00:00
Erwin Lansing
6c2493644b Remove the use of USE_GZIP. I cannot find any use of it in bsd.port.mk
and these ports build fine without it. My guess is that it was added
by someone as an opposite to USE_BZIP2 and other people copied it.
Remove it once and for all.

With hat:	portmgr
2006-06-11 21:04:35 +00:00
Edwin Groothuis
ff21f59f9f Remove USE_REINPLACE for categories starting with a G 2006-05-07 23:46:33 +00:00
Edwin Groothuis
c94783fe5c SHA256ify
Approved by:	krion@
2006-01-22 11:18:58 +00:00
Edwin Groothuis
0416031c9b Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by:    krion@
PR:             ports/88711 (related)
2006-01-22 02:20:05 +00:00
Michael Johnson
3cf9f2af29 - Fix fetch by adding more mirrors.
PR:		83827
Submitted by:	maintainer
2005-07-21 06:58:59 +00:00
Roman Bogorodskiy
083c8173df Fix plist.
Submitted by:	Rudolf Polzer (maintainer)
Reported by:	pointyhat via kris
2005-07-04 05:48:43 +00:00
Roman Bogorodskiy
d3acf5dc87 Update to 1.0.3.
PR:		82902
Submitted by:	Rudolf Polzer (maintainer)
2005-07-03 03:46:36 +00:00
Florent Thoumie
9a3def3a7e - Fix WWW: line. 2005-04-02 10:59:00 +00:00
Pav Lucistnik
6d32d5e83c - Update to 1.0.2
PR:		ports/74991
Submitted by:	Rudolf Polzer <freebsd-dr@durchnull.de> (maintainer)
2004-12-15 22:57:00 +00:00
Pav Lucistnik
ffa7984831 - Update to 1.0.1
PR:		ports/65654
Submitted by:	Rudolf Polzer <freebsd-dr@durchnull.de> (maintainer)
2004-04-17 15:34:16 +00:00
Edwin Groothuis
c9ea361463 Chase library bump of libSDL-1.1 for all ports which were depending
on sdl12-1.2.5
2004-03-16 04:23:56 +00:00
Kirill Ponomarev
66a22a2748 - Update to version 0.9.1
PR:		ports/63367
Submitted by:	maintainer
2004-02-26 15:09:25 +00:00
Joe Marcus Clarke
053fdb6a6b Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
2004-02-04 05:21:48 +00:00
Edwin Groothuis
148fceab95 Update port: games/pydance (new menu, some crashes fixed, URL change)
Some changes to the game were done by the author,
	and now the download site is directly the author's
	site.

PR:		ports/61151
Submitted by:	Rudolf Polzer <freebsd-dr@durchnull.de>
2004-01-10 04:49:01 +00:00
Tilman Keskinoz
672c5ac1f1 Add pydance, a dancing simulator
PR:		58643
Submitted by:	Rudolf Polzer <freebsd-dr@durchnull.de>
2003-11-20 15:44:13 +00:00