| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=455210
|
|
|
|
|
|
|
|
|
|
| |
Changes: http://site.icu-project.org/download/60
ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/
PR: 223373
Exp-run by: antoine
Notes:
svn path=/head/; revision=453790
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Temporarily keep C++98 working in consumers for Clang's default -std=
Changes: http://site.icu-project.org/download/59
PR: 218788
Submitted by: takefu@airport.fm, dcarmich@dcarmichael.net (early version)
Exp-run by: antoine
Notes:
svn path=/head/; revision=450556
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 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, c++11-lib, c++11-lang,
c++14-lang, c++0x, c11, or gcc-c++11-lib.
PR: 219275
Notes:
svn path=/head/; revision=449591
|
|
|
|
|
|
|
|
| |
Approved by: garga (mentor)
Differential Revision: https://reviews.freebsd.org/D10648
Notes:
svn path=/head/; revision=440442
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using using Mk/bsd.octave.mk which in turn has USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
c++11-lang, c++0x, c11, or gcc-c++11-lib.
PR: 216707
Notes:
svn path=/head/; revision=437439
|
|
|
|
|
|
|
|
| |
PR: 217772
Submitted by: dbaio@bsd.com.br(maintainer)
Notes:
svn path=/head/; revision=436114
|
|
|
|
|
|
|
|
|
|
|
| |
Changelog: http://wiki.znc.in/ChangeLog/1.6.4
PR: 215238
Submitted by: dbaio@bsd.com.br (maintainer)
MFH: 2016Q4
Notes:
svn path=/head/; revision=428409
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Set permissions properly on ETCDIR
- Add an information on znc user/group to pkg-message
- Pass maintainership to dbaio
PR: 200005
Submitted by: josh+freebsd@zevlag.com, dbaio@bsd.com.br
Notes:
svn path=/head/; revision=426896
|
|
|
|
|
|
|
|
|
|
| |
Changes: http://site.icu-project.org/download/58
PR: 214384
Exp-run by: antoine
Approved by: office (bapt)
Notes:
svn path=/head/; revision=426525
|
|
|
|
|
|
|
|
|
|
|
| |
PR: 213195
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D8093
Notes:
svn path=/head/; revision=424427
|
|
|
|
| |
Notes:
svn path=/head/; revision=423687
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Clean up the Makefile.
- Follow some upstream recommendations (--with-data-packaging=archive,
--disable-renaming, -DICU_NO_USER_DATA_OVERRIDE).
- Patch makefiles to install static libraries with INSTALL_DATA so they
aren't stripped.
- Patch config/mh-bsd-gcc to sync with config/mh-linux-gcc.
- Fix endianness detection in ICU. The code wanted to use BYTE_ORDER
defined in machine/endian.h, but this isn't visible because ICU is
compiled with _XOPEN_SOURCE. Patch the code to use _BYTE_ORDER instead.
- Compile ICU with C++11 compiler to enable move constructors.
- Patch ICU to fix a problem with atomics in the case of a C++11 compiler
without C++11 header <atomic> (like Clang on FreeBSD 9).
- Bump all ports that depend on it due to library version change.
- Add USES=compiler:c++0x to some ports that pick up -std=c++0x from ICU
pkgconfig files.
- Add USES=compiler:c++11-lib to graphics/libcdr01 because it also needs
a C++11 runtime library now. Add this to all ports that depend on it
so their executables load the right libstdc++.so on FreeBSD 9.
PR: 205120
Exp-run by: antoine
Approved by: portmgr (antoine)
Notes:
svn path=/head/; revision=422711
|
|
|
|
|
|
|
| |
With hat: portmgr-secretary
Notes:
svn path=/head/; revision=422375
|
|
|
|
|
|
|
|
|
| |
- Switch to USES=ssl
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=421851
|
|
|
|
|
|
|
|
|
| |
This would still be needed with 10+ after the removal of const
on iconv(3) in src r281550, but now with the use of ICU in
1.6 it is no longer using iconv(3).
Notes:
svn path=/head/; revision=419559
|
|
|
|
|
|
|
|
|
|
|
|
| |
This time not bumping lang/php70, but devel/php70-intl which is the one
really depending on icu.
PR: 205120
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=418153
|
|
|
|
| |
Notes:
svn path=/head/; revision=418119
|
|
|
|
|
|
|
|
|
| |
PR: 209855
Submitted by: gahr
Approved by: maintainer (timeout)
Notes:
svn path=/head/; revision=417155
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=412347
|
|
|
|
| |
Notes:
svn path=/head/; revision=409820
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Cleanups:
- USE_OPENSSL
- Convert to OPTION helpers
- Remove no longer necessary patch for modperl
- Sort OPTIONs
- Correct compiler flags detection in configure script
PR: 205473
Submitted by: matthew@reztek.cz
Reviewed by: riggs
Approved by: maintainer timeout
Notes:
svn path=/head/; revision=406604
|
|
|
|
|
|
|
|
|
| |
- Add LICENSE_FILE
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=400836
|
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3694
Notes:
svn path=/head/; revision=399346
|
|
|
|
|
|
|
|
| |
PR: 202380
Approved by: maintainer timeout
Notes:
svn path=/head/; revision=395755
|
|
|
|
|
|
|
|
|
| |
- While here, add archive/ directory to MASTER_SITES as distfile may be _moved_ there
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=386041
|
|
|
|
|
|
|
|
|
| |
PR: 198060
Submitted by: Matthew Connelly <freebsd-bugs@maff.im>
Approved by: maintainer timeout
Notes:
svn path=/head/; revision=381014
|
|
|
|
|
|
|
| |
Approved by: portmgr (implicit)
Notes:
svn path=/head/; revision=371288
|
|
|
|
| |
Notes:
svn path=/head/; revision=361953
|
|
|
|
|
|
|
|
|
| |
PR: 191034
Submitted by: bradleythughes@fastmail.fm
Changes: http://wiki.znc.in/ChangeLog/1.4
Notes:
svn path=/head/; revision=358640
|
|
|
|
|
|
|
|
|
|
| |
minor COMMENT typos and surrounding whitespace fixes. Categories G-I.
CR: D201
Approved by: portmgr (bapt)
Notes:
svn path=/head/; revision=357654
|
|
|
|
|
|
|
| |
Submitted by: antoine
Notes:
svn path=/head/; revision=356141
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
and consumers of lang/python31 or lower to use Python 2.X
This is in preparation of removing lang/python31 which expired on 2014-06-01
While here apply some fixes for textproc/codespell:
- USE_XZ -> USES=tar:xz
- remove unneeded USE_PYTHON_RUN line
Approved by: python (mva)
Notes:
svn path=/head/; revision=356138
|
|
|
|
| |
Notes:
svn path=/head/; revision=345202
|
|
|
|
|
|
|
|
|
|
|
| |
- Modernise OPTIONS configuration
- Support custom LOCALBASE
- Stage support
Changes: http://wiki.znc.in/ChangeLog/1.2
Notes:
svn path=/head/; revision=343293
|
|
|
|
| |
Notes:
svn path=/head/; revision=338513
|
|
|
|
|
|
|
| |
irc)
Notes:
svn path=/head/; revision=327736
|
|
|
|
|
|
|
| |
Submitted by: az
Notes:
svn path=/head/; revision=327450
|
|
|
|
|
|
|
|
|
|
| |
- Add rc.d script
PR: ports/179190
Approved by: maintainer (timeout)
Notes:
svn path=/head/; revision=321885
|
|
|
|
|
|
|
|
|
| |
Reported by: Albert Kult (via email)
Obtained from: https://github.com/znc/znc/commit/2bd410ee5570cea127233f1133ea22f25174eb28
Security: 19751e06-c798-11e2-a373-000c29833058
Notes:
svn path=/head/; revision=319313
|
|
|
|
|
|
|
|
|
| |
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here
Reviewed by: zeising
Notes:
svn path=/head/; revision=316662
|
|
|
|
| |
Notes:
svn path=/head/; revision=316344
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Convert to new OPTIONSng
- Add UPDATING entry noting the automatic modification of configuration file
Changes: http://wiki.znc.in/ChangeLog/1.0
Feature safe: yes
Notes:
svn path=/head/; revision=307945
|
|
|
|
|
|
|
|
|
|
|
| |
- Assume maintainership [1]
Approved by: miwi [1]
Feature safe: yes
Notes:
svn path=/head/; revision=307397
|
|
|
|
|
|
|
|
| |
PR: 167008
Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
Notes:
svn path=/head/; revision=295226
|
|
|
|
|
|
|
|
| |
PR: 164424
Submitted by: Jase Thew <freebsd@beardz.net>
Notes:
svn path=/head/; revision=289951
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add LICENSE
- Change IPv6 option default to On
- Fix typo in WITH_TCLALLOWALL/WITHOUT_TCL IGNORE message
- Fix CONFIGURE_ARGS for PYTHON option
- Add check for EXTRA option to SASL option (required to build)
PR: 159952
Submitted by: Jase Thew <freebsd@beardz.net>
Notes:
svn path=/head/; revision=284184
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead
PR: 157936
Submitted by: myself
Exp-runs by: pav
Approved by: pav
Notes:
svn path=/head/; revision=282282
|
|
|
|
|
|
|
|
| |
PR: 156421
Submitted by: Jase Thew <freebsd@beardz.net>
Notes:
svn path=/head/; revision=274671
|
|
|
|
|
|
|
|
| |
PR: 152273
Submitted by: Jase Thew <freebsd@beardz.net>
Notes:
svn path=/head/; revision=266492
|