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) combinatio for a given watch list. This is what FreshPorts will look for.

non port: graphics/rubygem-cairo/Makefile

Number of commits found: 34

Monday, 25 Dec 2023
09:02 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/rubygem-cairo: Update to 1.17.13

- Update WWW

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
commit hash: 98355ff6838c70ec3b106d0dd8de60b1077525ff commit hash: 98355ff6838c70ec3b106d0dd8de60b1077525ff commit hash: 98355ff6838c70ec3b106d0dd8de60b1077525ff commit hash: 98355ff6838c70ec3b106d0dd8de60b1077525ff 98355ff
Sunday, 9 Jul 2023
10:31 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/rubygem-cairo: Update to 1.17.12

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
commit hash: d2abe775df6e00b51d53e1ddff66e6ed8b06cf71 commit hash: d2abe775df6e00b51d53e1ddff66e6ed8b06cf71 commit hash: d2abe775df6e00b51d53e1ddff66e6ed8b06cf71 commit hash: d2abe775df6e00b51d53e1ddff66e6ed8b06cf71 d2abe77
Sunday, 4 Jun 2023
16:21 Dimitry Andric (dim) search for other commits by this committer
graphics/rubygem-cairo: fix build with clang 16

Clang 16 has a new error about incompatible function types, which shows
up when building graphics/rubygem-cairo:

  rb_cairo_surface.c:2354:3: error: incompatible function pointer types passing
'VALUE (int, VALUE *, VALUE)' (aka 'unsigned long (int, unsigned long *,
unsigned long)') to parameter of type 'VALUE (*)(VALUE, VALUE)' (aka 'unsigned
long (*)(unsigned long, unsigned long)') [-Wincompatible-function-pointer-types]
    rb_define_method (rb_cCairo_GLSurface, "initialize",
    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:287:135: note: expanded
from macro 'rb_define_method'
  #define rb_define_method(klass, mid, func, arity)          
RBIMPL_ANYARGS_DISPATCH_rb_define_method((arity), (func))((klass), (mid),
(func), (arity))
                                                                                
                                                       ^~~~~~
  /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:276:1: note: passing
argument to parameter here
  RBIMPL_ANYARGS_DECL(rb_define_method, VALUE, const char *)
  ^
  /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:255:72: note: expanded
from macro 'RBIMPL_ANYARGS_DECL'
  RBIMPL_ANYARGS_ATTRSET(sym) static void sym ## _01(__VA_ARGS__,
VALUE(*)(VALUE, VALUE), int); \
                                                                         ^
  rb_cairo_surface.c:2368:3: error: incompatible function pointer types passing
'VALUE (int, VALUE *, VALUE)' (aka 'unsigned long (int, unsigned long *,
unsigned long)') to parameter of type 'VALUE (*)(VALUE, VALUE)' (aka 'unsigned
long (*)(unsigned long, unsigned long)') [-Wincompatible-function-pointer-types]
    rb_define_method (rb_cCairo_GLTextureSurface, "initialize",
    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:287:135: note: expanded
from macro 'rb_define_method'
  #define rb_define_method(klass, mid, func, arity)          
RBIMPL_ANYARGS_DISPATCH_rb_define_method((arity), (func))((klass), (mid),
(func), (arity))
                                                                                
                                                       ^~~~~~
  /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:276:1: note: passing
argument to parameter here
  RBIMPL_ANYARGS_DECL(rb_define_method, VALUE, const char *)
  ^
  /usr/local/include/ruby-3.1/ruby/internal/anyargs.h:255:72: note: expanded
from macro 'RBIMPL_ANYARGS_DECL'
  RBIMPL_ANYARGS_ATTRSET(sym) static void sym ## _01(__VA_ARGS__,
VALUE(*)(VALUE, VALUE), int); \
                                                                         ^

This is because rb_define_method's last argument is the 'arity' of the
method, and in case of cr_gl_surface_initialize() and
cr_gl_texture_surface_initialize() it should be -1 to indicate a
variable number of arguments.

PR:		271706
Approved by:	portmgr (buildfix blanket)
MFH:		2023Q2
commit hash: eff4307ac72a9630c67d030e0565fde34ff82d7d commit hash: eff4307ac72a9630c67d030e0565fde34ff82d7d commit hash: eff4307ac72a9630c67d030e0565fde34ff82d7d commit hash: eff4307ac72a9630c67d030e0565fde34ff82d7d eff4307
Saturday, 14 Jan 2023
23:08 Muhammad Moinur Rahman (bofh) search for other commits by this committer
Mk/**ruby.mk: Switch from USE_RUBY=yes to USES=ruby

Switch from Mk/bsd.ruby.mk to Mk/Uses/ruby.mk

Notable changes are.

- Mk/bsd.ruby.mk is moved to Mk/Uses/ruby.mk.
- USE_RUBY=yes is replaced with USES=ruby.
- USE_RUBY_EXTCONF is replaced with USES=ruby:extconf.
- USE_RUBY_RDOC is replaced with USES=ruby:rdoc.
- USE_RUBY_SETUP is replaces with USES=ruby:setup.
- RUBY_NO_BUILD_DEPENDS and RUBY_NO_RUN_DEPENDS are replaced with
  USES=ruby:{build,none,run}.
- RUBY_REQUIRE isn't used anywhere, so removed.
- USES=gem now implies USES=ruby.

This is mainly the work of yasu@ at https://reviews.freebsd.org/D27863

I have just made some cosmetic changes and ran exp-run to test that the
tree is not in a BROKEN state.

Approved by:	portmgr
Differential Revision:	https://reviews.freebsd.org/D37925
commit hash: 18c6e18276691edf5274406bf82a3b06792ff9ae commit hash: 18c6e18276691edf5274406bf82a3b06792ff9ae commit hash: 18c6e18276691edf5274406bf82a3b06792ff9ae commit hash: 18c6e18276691edf5274406bf82a3b06792ff9ae 18c6e18
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Sunday, 4 Sep 2022
03:48 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/rubygem-cairo: Update to 1.17.8

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
commit hash: 03917afc5bd3627d83215e251103568ce1dfbb72 commit hash: 03917afc5bd3627d83215e251103568ce1dfbb72 commit hash: 03917afc5bd3627d83215e251103568ce1dfbb72 commit hash: 03917afc5bd3627d83215e251103568ce1dfbb72 03917af
Saturday, 27 Aug 2022
10:26 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/rubygem-cairo: Update to 1.17.7

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
commit hash: bf8fccef80f7f6e696ddba56224cbcf45b776a62 commit hash: bf8fccef80f7f6e696ddba56224cbcf45b776a62 commit hash: bf8fccef80f7f6e696ddba56224cbcf45b776a62 commit hash: bf8fccef80f7f6e696ddba56224cbcf45b776a62 bf8fcce
Tuesday, 6 Jul 2021
15:00 Po-Chuan Hsieh (sunpoet) search for other commits by this committer
graphics/rubygem-cairo: Update to 1.17.5

- Update LICENSE
- Update WWW

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
commit hash: e79f673c502baf59817b685138ee2dd2da902b42 commit hash: e79f673c502baf59817b685138ee2dd2da902b42 commit hash: e79f673c502baf59817b685138ee2dd2da902b42 commit hash: e79f673c502baf59817b685138ee2dd2da902b42 e79f673
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Sunday, 11 Nov 2018
18:23 sunpoet search for other commits by this committer
Update to 1.16.2

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:484746 
Tuesday, 21 Aug 2018
18:24 sunpoet search for other commits by this committer
Update to 1.15.14

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:477739 
Thursday, 3 May 2018
18:41 sunpoet search for other commits by this committer
Update to 1.15.13

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:468969 
Thursday, 15 Mar 2018
17:46 sunpoet search for other commits by this committer
Update to 1.15.12

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:464611 
Thursday, 14 Dec 2017
20:44 sunpoet search for other commits by this committer
Update to 1.15.11

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:456366 
Monday, 16 Oct 2017
17:47 sunpoet search for other commits by this committer
Update to 1.15.10

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:452232 
Sunday, 4 Jun 2017
11:48 sunpoet search for other commits by this committer
Update to 1.15.9

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:442553 
Wednesday, 31 May 2017
13:10 sunpoet search for other commits by this committer
Update to 1.15.8

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:442171 
Tuesday, 2 May 2017
21:53 sunpoet search for other commits by this committer
Update to 1.15.7

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:439986 
Friday, 28 Apr 2017
20:25 sunpoet search for other commits by this committer
Update to 1.15.6

- Add USES=gnome

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:439642 
Tuesday, 7 Feb 2017
20:33 sunpoet search for other commits by this committer
Update to 1.15.5

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:433607 
Wednesday, 27 Apr 2016
21:57 swills search for other commits by this committer
Convert USES=gem:autoplist to USES=gem since autoplist is default
Original commitRevision:414136 
16:36 swills search for other commits by this committer
create USES=gem and update rubygem- ports to use it

Note that for now ports still have to have USE_RUBY=yes to use USES=gem

PR:		209041
Differential Revision:	https://reviews.freebsd.org/D6070
Original commitRevision:414118 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Tuesday, 2 Feb 2016
01:21 swills search for other commits by this committer
Remove source and intermediate build output from intalled rubygem- ports

PR:		192949
Original commitRevision:407788 
Saturday, 12 Sep 2015
17:09 sunpoet search for other commits by this committer
- Update to 1.14.3

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:396773 
Monday, 7 Sep 2015
17:52 sunpoet search for other commits by this committer
- Update to 1.14.2

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:396314 
Sunday, 3 May 2015
19:35 sunpoet search for other commits by this committer
- Update to 1.14.1

Changes:	https://github.com/rcairo/rcairo/blob/master/NEWS
Original commitRevision:385301 
Thursday, 28 Aug 2014
16:24 sunpoet search for other commits by this committer
- Add LICENSE
Original commitRevision:366419 
Monday, 25 Aug 2014
20:47 swills search for other commits by this committer
graphics/rubygem-cairo: update to 1.12.9
Original commitRevision:366149 
Saturday, 22 Feb 2014
15:36 swills search for other commits by this committer
- Update rubygem-gnome2 and associated ports to 2.1.0
Original commitRevision:345660 
Wednesday, 30 Oct 2013
02:48 swills search for other commits by this committer
- Add stage support
Original commitRevision:332044 
Friday, 20 Sep 2013
18:35 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
graphics)
Original commitRevision:327733 
Sunday, 9 Jun 2013
18:43 swills search for other commits by this committer
Ruby/Cairo is a Ruby binding for Cairo.

WWW: http://cairographics.org/

PR:		ports/173373
Submitted by:	Shin-ya Murakami <murashin@gfd-dennou.org>
Original commitRevision:320377 

Number of commits found: 34