non port: graphics/rubygem-cairo/Makefile |
Number of commits found: 35 |
Tuesday, 31 Dec 2024
|
15:56 Po-Chuan Hsieh (sunpoet)
graphics/rubygem-cairo: Update to 1.17.14
Changes: https://github.com/rcairo/rcairo/releases
43ecb11 |
Monday, 25 Dec 2023
|
09:02 Po-Chuan Hsieh (sunpoet)
graphics/rubygem-cairo: Update to 1.17.13
- Update WWW
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
98355ff |
Sunday, 9 Jul 2023
|
10:31 Po-Chuan Hsieh (sunpoet)
graphics/rubygem-cairo: Update to 1.17.12
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
d2abe77 |
Sunday, 4 Jun 2023
|
16:21 Dimitry Andric (dim)
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
eff4307 |
Saturday, 14 Jan 2023
|
23:08 Muhammad Moinur Rahman (bofh)
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
18c6e18 |
Wednesday, 7 Sep 2022
|
21:10 Stefan Eßer (se)
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)
b7f0544 |
Sunday, 4 Sep 2022
|
03:48 Po-Chuan Hsieh (sunpoet)
graphics/rubygem-cairo: Update to 1.17.8
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
03917af |
Saturday, 27 Aug 2022
|
10:26 Po-Chuan Hsieh (sunpoet)
graphics/rubygem-cairo: Update to 1.17.7
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
bf8fcce |
Tuesday, 6 Jul 2021
|
15:00 Po-Chuan Hsieh (sunpoet)
graphics/rubygem-cairo: Update to 1.17.5
- Update LICENSE
- Update WWW
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
e79f673 |
Wednesday, 7 Apr 2021
|
08:09 Mathieu Arnold (mat)
One more small cleanup, forgotten yesterday.
Reported by: lwhsu
cf118cc |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Sunday, 11 Nov 2018
|
18:23 sunpoet
Update to 1.16.2
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Tuesday, 21 Aug 2018
|
18:24 sunpoet
Update to 1.15.14
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Thursday, 3 May 2018
|
18:41 sunpoet
Update to 1.15.13
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Thursday, 15 Mar 2018
|
17:46 sunpoet
Update to 1.15.12
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Thursday, 14 Dec 2017
|
20:44 sunpoet
Update to 1.15.11
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Monday, 16 Oct 2017
|
17:47 sunpoet
Update to 1.15.10
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Sunday, 4 Jun 2017
|
11:48 sunpoet
Update to 1.15.9
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Wednesday, 31 May 2017
|
13:10 sunpoet
Update to 1.15.8
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Tuesday, 2 May 2017
|
21:53 sunpoet
Update to 1.15.7
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Friday, 28 Apr 2017
|
20:25 sunpoet
Update to 1.15.6
- Add USES=gnome
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Tuesday, 7 Feb 2017
|
20:33 sunpoet
Update to 1.15.5
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Wednesday, 27 Apr 2016
|
21:57 swills
Convert USES=gem:autoplist to USES=gem since autoplist is default
 |
16:36 swills
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
 |
Friday, 1 Apr 2016
|
14:00 mat
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight
 |
Tuesday, 2 Feb 2016
|
01:21 swills
Remove source and intermediate build output from intalled rubygem- ports
PR: 192949
 |
Saturday, 12 Sep 2015
|
17:09 sunpoet
- Update to 1.14.3
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Monday, 7 Sep 2015
|
17:52 sunpoet
- Update to 1.14.2
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Sunday, 3 May 2015
|
19:35 sunpoet
- Update to 1.14.1
Changes: https://github.com/rcairo/rcairo/blob/master/NEWS
 |
Thursday, 28 Aug 2014
|
16:24 sunpoet
- Add LICENSE
 |
Monday, 25 Aug 2014
|
20:47 swills
graphics/rubygem-cairo: update to 1.12.9
 |
Saturday, 22 Feb 2014
|
15:36 swills
- Update rubygem-gnome2 and associated ports to 2.1.0
 |
Wednesday, 30 Oct 2013
|
02:48 swills
- Add stage support
 |
Friday, 20 Sep 2013
|
18:35 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
graphics)
 |
Sunday, 9 Jun 2013
|
18:43 swills
Ruby/Cairo is a Ruby binding for Cairo.
WWW: http://cairographics.org/
PR: ports/173373
Submitted by: Shin-ya Murakami <murashin@gfd-dennou.org>
 |
Number of commits found: 35 |