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: devel/renpy6/Makefile

Number of commits found: 10

Saturday, 2 Jun 2018
16:21 jbeich search for other commits by this committer
devel/renpy: update to 7.0.0

Changes:	https://www.renpy.org/release/7.0 (see Announcment)
Changes:	https://www.renpy.org/doc/html/changelog.html#renpy-7-0
MFH:		2018Q2 (stabilization, no in-tree consumers)
Original commitRevision:471376 
Wednesday, 16 May 2018
22:50 jbeich search for other commits by this committer
devel/renpy: unbreak with cython 0.28

PR:		228235
Obtained from:	upstream
Original commitRevision:470157 
19:35 jbeich search for other commits by this committer
devel/renpy6: mark BROKEN after r470010

Error compiling Cython file:
------------------------------------------------------------
..
IMAGEDISSOLVE = 2
PIXELLATE = 3

cdef class Render:

    def __init__(Render self, float width, float height, draw_func=None,
layer_name=None, bint opaque=None): #@DuplicatedSignature
                                                                                
                    ^
------------------------------------------------------------

/wrkdirs/usr/ports/devel/renpy6/work-py27/renpy-6.18.3-sdk/renpy/display/render.pyx:451:102:
Cannot assign None to bint
_renpy is out of date.
_renpybidi is out of date.
pysdlsound.sound is out of date.
renpy.style is out of date.
renpy.styleclass is out of date.
renpy.display.render is out of date.

Command '['cython-2.7', '-Iinclude', '-Igen', '-a',
'../renpy/display/render.pyx', '-o', 'gen/renpy.display.render.c']' returned
non-zero exit status 1

PR:		228235
Reported by:	pkg-fallout
Original commitRevision:470142 
Wednesday, 2 May 2018
15:07 jbeich search for other commits by this committer
multimedia/ffmpeg: update to 4.0

- FFSERVER support was removed upstream
- libressl now uses libtls backend instead of patching openssl one
- Clang i386 no longer uses 16-byte aligned stack

Changes:	https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.0:/Changelog
ABI:		https://abi-laboratory.pro/tracker/timeline/ffmpeg/
PR:		227726
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D15175
Original commitRevision:468844 
Saturday, 10 Mar 2018
17:46 gerald search for other commits by this committer
Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
Original commitRevision:464084 
Saturday, 21 Oct 2017
06:50 jbeich search for other commits by this committer
multimedia/ffmpeg: update to 3.4

Notable changes:
- i386/amd64 now depend on NASM per
https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39
- NETCDF is now MYSOFA but the dependency doesn't exist in ports yet
- SCHROEDINGER is gone per
https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9
- DRM, LIBRSVG2, LIBXML2 are new options
- ABI isn't completely compatible: some structs have changed

Minor cleanup:
- Don't pass --disable-{in,out}dev when it's already blocked by disabled
dependency
- Drop redundant "Enable" from option descriptions
- Switch CDIO_DESC to use Mk/bsd.options.desc.mk

Changes:	https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog
ABI:		https://abi-laboratory.pro/tracker/timeline/ffmpeg/
PR:		223057
Exp-run by:	antoine
Original commitRevision:452570 
Tuesday, 25 Apr 2017
08:20 riggs search for other commits by this committer
Chase ffmpeg 3.3 update (ABI changes)

PR:		218658
Submitted by:	riggs
Original commitRevision:439367 
Sunday, 11 Dec 2016
15:22 jbeich search for other commits by this committer
multimedia/ffmpeg: update to 3.2.2

Changes:	https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.2.2:/Changelog
PR:		207547
Submitted by:	riggs, ebirth@b0ss.net (libressl fix)
Exp-run by:	antoine (3 tries)
Original commitRevision:428352 
Thursday, 24 Nov 2016
14:23 jbeich search for other commits by this committer
devel/renpy6: bring back cython fixes lost in r421472

$ katawa-shoujo
KeyError(4294967295,)

Full traceback:
  File "renpy/common/00start.rpy", line 152, in script
    $ ui.interact(suppress_underlay=True, suppress_overlay=True)
  File "/usr/local/share/renpy/renpy/ast.py", line 785, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide,
store=self.store)
  File "/usr/local/share/renpy/renpy/python.py", line 1382, in py_exec_bytecode
    exec bytecode in globals, locals
  File "renpy/common/00start.rpy", line 152, in <module>
    $ ui.interact(suppress_underlay=True, suppress_overlay=True)
  File "/usr/local/share/renpy/renpy/ui.py", line 247, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "/usr/local/share/renpy/renpy/display/core.py", line 2149, in interact
    repeat, rv = self.interact_core(preloads=preloads, **kwargs)
  File "/usr/local/share/renpy/renpy/display/core.py", line 2478, in
interact_core
    self.draw_screen(root_widget, fullscreen_video, (not fullscreen_video) or
video_frame_drawn)
  File "/usr/local/share/renpy/renpy/display/core.py", line 1681, in draw_screen
    renpy.display.draw.draw_screen(surftree, fullscreen_video)
  File "renpy/gl/gldraw.pyx", line 676, in renpy.gl.gldraw.GLDraw.draw_screen
(gen/renpy.gl.gldraw.c:10499)
    gltexture.cleanup()
  File "renpy/gl/gltexture.pyx", line 559, in renpy.gl.gltexture.cleanup
(gen/renpy.gl.gltexture.c:7100)
    t.deallocate()
  File "renpy/gl/gltexture.pyx", line 479, in
renpy.gl.gltexture.TextureCore.deallocate (gen/renpy.gl.gltexture.c:5745)
    texture_numbers.remove(self.number)
KeyError: 4294967295
Original commitRevision:427014 
Tuesday, 6 Sep 2016
23:44 jbeich search for other commits by this committer
devel/renpy: add 6.18 slave for compatibility with games/katawa-shoujo

PKGNAMESUFFIX is based on 6.99.11 being "the latest in a series of
releases that will culminate in Ren'Py 7".
Original commitRevision:421472 

Number of commits found: 10