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
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: lang/spidermonkey170/Makefile

Number of commits found: 28

Tuesday, 9 Apr 2019
14:04 sunpoet search for other commits by this committer
Update devel/readline to 8.0

- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://tiswww.case.edu/php/chet/readline/CHANGES
PR:		236156
Exp-run by:	antoine
Original commitRevision:498476 
Tuesday, 5 Feb 2019
15:42 tobik search for other commits by this committer
There is no *_CONFIGURE_DISABLE options helper
Original commitRevision:492251 
Saturday, 5 May 2018
08:33 amdmi3 search for other commits by this committer
- Switch to new test framework

Approved by:	portmgr blanket
Original commitRevision:469096 
Sunday, 25 Mar 2018
14:36 linimon search for other commits by this committer
Disable dtrace usdt on armvX.  It causes link failures.

Regression-tested on amd64.

PR:		224271
Submitted by:	mikael.urankar
Approved by:	kwm (maintainer timeout)
Original commitRevision:465519 
Monday, 19 Feb 2018
11:10 antoine search for other commits by this committer
Reduce dependency on the python2 metaport

PR:		225752
Submitted by:	Yasuhiro KIMURA
Original commitRevision:462307 
Thursday, 4 Jan 2018
02:18 jbeich search for other commits by this committer
lang/spidermonkey170: unbreak build with Clang 6 / GCC 7

js/src/shell/jsoptparse.cpp:246:22: error: comparison between pointer and
integer ('char *' and 'int')
        if (value[0] == '\0')
            ~~~~~~~~ ^  ~~~~

Reported by:	antoine (via bug 224669)
Obtained from:	upstream (SpiderMonkey 25.0)
Original commitRevision:458008 
Tuesday, 27 Jun 2017
13:46 sunpoet search for other commits by this committer
Update devel/readline to 7.0 patch 3

- Bump PORTREVISION for shlib change

Changes:	https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES
		https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00107.html
		https://lists.gnu.org/archive/html/bug-readline/2017-01/msg00002.html
Differential Revision:	https://reviews.freebsd.org/D11172
PR:		219947
Exp-run by:	antoine
Original commitRevision:444463 
Tuesday, 9 May 2017
18:04 kwm search for other commits by this committer
Use clang on armv6.

PR:		215516
Submitted by:	mikael.urankar@gmail.com
Original commitRevision:440509 
Saturday, 1 Apr 2017
15:23 gerald search for other commits by this committer
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
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
Original commitRevision:437439 
Friday, 13 Jan 2017
01:42 jbeich search for other commits by this committer
lang/spidermonkey170: unbreak with clang 4.0

Fix quoting failure handling in JSOP_CALLPROP and JSOP_STRING.

jsopcode.cpp:6070:45: error: ordered comparison between pointer and zero ('char
*' and 'int')
    return QuoteString(&sprinter, s, quote) >= 0;
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^  ~

PR:		215861
Regressed by:	https://github.com/llvm-mirror/clang/commit/4b6ad14285f3
Obtained from:	upstream (only the specific fix)
Approved by:	portmgr blanket
MFH:		2017Q1 (changes existing behavior)
Original commitRevision:431335 
Tuesday, 3 Jan 2017
11:01 mat search for other commits by this committer
Cleanup BROKEN/IGNORE for 10.3-

Sponsored by:	Absolight
Original commitRevision:430454 
Sunday, 20 Nov 2016
09:38 gerald search for other commits by this committer
Bump PORTREVISIONS for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler.
Original commitRevision:426566 
Friday, 28 Oct 2016
17:55 danfe search for other commits by this committer
Do not redefine DEBUG_DESC when its meaning more or less matches the default
option description.  Those ports where it meant something more specific were
left untouched.
Original commitRevision:424875 
Sunday, 9 Oct 2016
12:10 jbeich search for other commits by this committer
devel/nspr, security/nss: drop version from SONAME

No other downstream appends synthetic library version, and doing so
causes underlinking due to fragile build system (see below). Not to
mention being unable to swap out bundled libs from upstream builds.

  $ cc -lplds4 -L/usr/local/lib
  /usr/lib/crt1.o: In function `_start1':
  crt1_c.c:(.text+0xa6): undefined reference to `main'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_set_name_np'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_create'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_condattr_init'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_setschedparam'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_getschedparam'

PR:		213144
Exp-run by:	antoine
Original commitRevision:423591 
Friday, 1 Apr 2016
14:08 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412347 
Thursday, 27 Aug 2015
21:09 brd search for other commits by this committer
Fix ARM build of lang/spidermoney170 by using GCC until clang is fixed.

Approved by:	kwm (maintainer), bdrewery (mentor)
Original commitRevision:395444 
Monday, 24 Aug 2015
13:09 marino search for other commits by this committer
lang/spidermonkey170: Adjust CONFIGURE_TARGET for DragonFly

Approved by:	kwm (maintainer)
Original commitRevision:395171 
Thursday, 14 May 2015
10:15 mat search for other commits by this committer
MASTER_SITES cleanup.

- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
  of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
  no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.

While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.

Also, replace some EXTRACT_SUFX occurences with USES=tar:*.

Checked by:	make fetch-urlall-list
With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:386312 
Friday, 30 Jan 2015
10:04 kwm search for other commits by this committer
Add DTRACE option

PR:		192614
Submitted by:	jbeich@
Original commitRevision:378145 
Monday, 20 Oct 2014
17:52 mva search for other commits by this committer
- Convert ports of irc/ and lang/ to new USES=python

Approved by:	portmgr (implicit)
Original commitRevision:371288 
Thursday, 31 Jul 2014
09:27 antoine search for other commits by this committer
Fix OPTIONS and add missing USES=readline for READLINE

Detected by:	ucl manifest
Original commitRevision:363537 
Thursday, 6 Mar 2014
20:23 kwm search for other commits by this committer
Stagify, use option helper.
Strip installed files so we don't end up with a ~170M large .a file and a
~50M large .so.
Original commitRevision:347312 
Monday, 13 Jan 2014
21:00 rene search for other commits by this committer
Python cleanup:
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2
- USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes
Reviewed by:	python (mva, rm)
Approved by:	portmgr-lurkers (mat)
Original commitRevision:339634 
Friday, 20 Sep 2013
19:53 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
lang)
Original commitRevision:327741 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Sunday, 4 Aug 2013
14:56 kwm search for other commits by this committer
Convert to new perl5 framework and update to new lib_depend way.
Original commitRevision:324237 
Friday, 29 Mar 2013
10:03 kwm search for other commits by this committer
Run in quickly and fix portname.
Original commitRevision:315533 
09:57 kwm search for other commits by this committer
Add spidermonkey 17.0

This is the spidermonkey version shipped with the firefox-esr series 17.0.
Not to be confused with spidermonkey17 ports which is 1.7.
Borrow patch from firefox-esr to fix the build with clang.
Original commitRevision:315532 

Number of commits found: 28