NetBSD source update | 1 Aug 2011 03:12
Picon

daily pkgsrc CVS update output


Updating pkgsrc tree:
? pkgsrc/INDEX
? pkgsrc/README-IPv6.html
? pkgsrc/README-all.html
P pkgsrc/chat/amsn/distinfo
P pkgsrc/chat/amsn/patches/patch-utils_TkCximage_src_CxImage_ximapng.cpp
P pkgsrc/databases/qdbm/distinfo
P pkgsrc/databases/qdbm/patches/patch-ak
P pkgsrc/devel/cmake/Makefile
P pkgsrc/devel/cmake/PLIST
P pkgsrc/devel/cmake/distinfo
P pkgsrc/devel/tig/distinfo
U pkgsrc/devel/tig/patches/patch-tig_c
U pkgsrc/devel/tig/patches/patch-tig_h
P pkgsrc/devel/xulrunner/Makefile
P pkgsrc/devel/xulrunner/PLIST
P pkgsrc/doc/CHANGES-2011
P pkgsrc/doc/TODO
P pkgsrc/doc/pkgsrc.html
P pkgsrc/doc/pkgsrc.txt
P pkgsrc/doc/guide/files/build.xml
P pkgsrc/doc/guide/files/bulk.xml
P pkgsrc/doc/guide/files/configuring.xml
P pkgsrc/doc/guide/files/faq.xml
P pkgsrc/doc/guide/files/introduction.xml
P pkgsrc/editors/scite/Makefile
P pkgsrc/emulators/qemu/PLIST
P pkgsrc/graphics/Makefile
P pkgsrc/graphics/libraw/Makefile
(Continue reading)

Manuel Bouyer | 1 Aug 2011 14:29

switching php5 to 5.3 ?

Hello,
right now the default php version is 5, which is from the 5.2 branch these
days. This means that prebuilt binary packages effectively depends to
php 5.2, and one has to rebuild them to use php 5.3.
As php 5.2 is not maintained any more, shouldn't we switch the default
to php 5.3 (either by changing the default php version to 5.3, or by making
php5 use 5.3 and use 52 for php-5.2 packages) ?

--

-- 
Manuel Bouyer <bouyer <at> antioche.eu.org>
     NetBSD: 26 ans d'experience feront toujours la difference
--

Jean-Yves Migeon | 1 Aug 2011 14:53
Picon
Favicon

Re: switching php5 to 5.3 ?

On 01.08.2011 14:29, Manuel Bouyer wrote:
> Hello,
> right now the default php version is 5, which is from the 5.2 branch these
> days. This means that prebuilt binary packages effectively depends to
> php 5.2, and one has to rebuild them to use php 5.3.
> As php 5.2 is not maintained any more, shouldn't we switch the default
> to php 5.3 (either by changing the default php version to 5.3, or by making
> php5 use 5.3 and use 52 for php-5.2 packages) ?

Seconded. IMHO, default version should be 53. I did it locally a while
back, and did not see any sort of breakage on various kind of packages
(joomla, roundcube, and davical).

--

-- 
Jean-Yves Migeon
jeanyves.migeon <at> free.fr

NetBSD source update | 2 Aug 2011 03:11
Picon

daily pkgsrc CVS update output


Updating pkgsrc tree:
? pkgsrc/INDEX
? pkgsrc/README-IPv6.html
? pkgsrc/README-all.html
P pkgsrc/archivers/bunzip/distinfo
P pkgsrc/archivers/bunzip/patches/patch-aa
P pkgsrc/audio/cmus/Makefile
U pkgsrc/audio/cmus/distinfo
P pkgsrc/audio/gimmix/Makefile
P pkgsrc/audio/gimmix/distinfo
U pkgsrc/audio/gimmix/patches/patch-src_gimmix_covers_c
U pkgsrc/audio/gimmix/patches/patch-src_gimmix_lyrics_c
P pkgsrc/audio/rosegarden/distinfo
U pkgsrc/audio/rosegarden/patches/patch-editor_src_midiout_c
P pkgsrc/benchmarks/hbench/distinfo
U pkgsrc/benchmarks/hbench/patches/patch-src_memsize_c
P pkgsrc/chat/amsn/Makefile
P pkgsrc/chat/amsn/distinfo
P pkgsrc/chat/amsn/patches/patch-utils_TkCximage_src_CxImage_ximapng.cpp
P pkgsrc/comms/minicom/Makefile
P pkgsrc/comms/minicom/PLIST
U pkgsrc/comms/minicom/distinfo
U pkgsrc/comms/minicom/patches/patch-aa
U pkgsrc/comms/minicom/patches/patch-ab
P pkgsrc/comms/minicom/patches/patch-ac
P pkgsrc/comms/minicom/patches/patch-ad
P pkgsrc/comms/minicom/patches/patch-ae
cvs update: pkgsrc/comms/minicom/patches/patch-af is no longer in the repository
U pkgsrc/comms/minicom/patches/patch-ag
(Continue reading)

Ignatios Souvatzis | 2 Aug 2011 11:41
Picon

adding a minimum ocaml compiler requirement to unison: how?

Hello,

background: a while ago, I patched the native ARM backend of lang/ocaml
so that code generated by ocamlopt would not SIGILL on thumbless CPUs.

Now, I wanted to teach net/unison to use the native compiler also 
for arm. To make sure that only a sufficiently patched compiler is
used, I wanted it to depend on ocaml>=3.12.0nb2

lang/ocaml/buildlink3.mk contains:

BUILDLINK_API_DEPENDS.ocaml+=   ocaml>=3.08.2
BUILDLINK_ABI_DEPENDS.ocaml+=   ocaml>=3.09.1nb2

I tried 

DEPENDS+=ocaml>=3.12.0nb2:../../lang/ocaml

I tried 

BUILDLINK_ABI_DEPENDS.ocaml+=   ocaml>=3.12.0nb2

and even using BUILDLINK_API_DEPENDS.ocaml.

Whatever I do, make always results in

=> Build dependency ocaml>=3.09.1nb2: found ocaml-3.12.0nb2

That is, in a tree with a compiler that's too old it would nevertheless
build.
(Continue reading)

OBATA Akio | 2 Aug 2011 12:15
Picon

Re: adding a minimum ocaml compiler requirement to unison: how?

Hi,

On Tue, 02 Aug 2011 18:41:50 +0900, Ignatios Souvatzis <is <at> netbsd.org> wrote:

> I tried
>
> DEPENDS+=ocaml>=3.12.0nb2:../../lang/ocaml

BUILD_DEPENDS should be set instead.

> I tried
>
> BUILDLINK_ABI_DEPENDS.ocaml+=   ocaml>=3.12.0nb2
>
> and even using BUILDLINK_API_DEPENDS.ocaml.

BUILDLINK_API_DEPENDS.ocaml should be used (and it is already in net/unison/Makefile).

> Whatever I do, make always results in
>
> => Build dependency ocaml>=3.09.1nb2: found ocaml-3.12.0nb2
>
> That is, in a tree with a compiler that's too old it would nevertheless
> build.
>
> So, what should I do?

Did you "make clean" after your change (or remove ${WRKDIR}/.depends{_done})?

--

-- 
(Continue reading)

Ryo ONODERA | 2 Aug 2011 12:57
Picon

Re: gir file from gobject-introspection

From: Ryo ONODERA <ryo_on <at> yk.rim.or.jp>, Date: Sun, 17 Jul 2011 16:14:02 +0900 (JST)

> Hi,
> 
> From: David Holland <dholland-pkgtech <at> netbsd.org>, Date: Sun, 17 Jul 2011 05:53:33 +0000
> 
>> On Sun, Jul 17, 2011 at 01:49:26PM +0900, Ryo ONODERA wrote:
>>  > I feel that enabling gobject-introspection is needed globally.
>>  > Can I enable gobject-introspection (adding 
>>  > .include "../../devel/gobject-introspection/buildlink3.mk"
>>  > line) to these packages?
>>  > 
>>  > Is there any opinion or objection?
>> 
>> Does that still depend on Python?
> 
> Still depends on python.
> 
>> (and if so, does it work to have one gobject-introspection package and
>> e.g. both py25-gtk2 and py26-gtk2 packages?)
> 
> I does not know py25-gtk2 and py26-gtk2, but gobject-introspection
> depends on py??-cElementTree.
> The gobject-introspection binary package that is generated with
> a certain version of python does not work with another version of
> python.
> 
> For example, If python25 is installed, gobject-introspection
> binary package that is generated with python26 cannot be
> installed.
(Continue reading)

Ignatios Souvatzis | 2 Aug 2011 15:12
Picon

Re: adding a minimum ocaml compiler requirement to unison: how?

Hi,

On Tue, Aug 02, 2011 at 07:15:07PM +0900, OBATA Akio wrote:
> On Tue, 02 Aug 2011 18:41:50 +0900, Ignatios Souvatzis <is <at> netbsd.org> wrote:
> 
> >I tried
> >
> >DEPENDS+=ocaml>=3.12.0nb2:../../lang/ocaml
> 
> BUILD_DEPENDS should be set instead.

alas, no change.

> >I tried
> >
> >BUILDLINK_ABI_DEPENDS.ocaml+=   ocaml>=3.12.0nb2
> >
> >and even using BUILDLINK_API_DEPENDS.ocaml.
> 
> BUILDLINK_API_DEPENDS.ocaml should be used (and it is already in net/unison/Makefile).
> 
> >Whatever I do, make always results in
> >
> >=> Build dependency ocaml>=3.09.1nb2: found ocaml-3.12.0nb2
> >
> >That is, in a tree with a compiler that's too old it would nevertheless
> >build.
> >
> >So, what should I do?
> 
(Continue reading)

OBATA Akio | 3 Aug 2011 02:49
Picon

Re: adding a minimum ocaml compiler requirement to unison: how?

Hi,

I cannot reproduce the issue.

I've change unison/Makefile as following:
15c15
< BUILDLINK_ABI_DEPENDS.ocaml+=   ocaml>=3.08.2
---
> BUILDLINK_ABI_DEPENDS.ocaml+=   ocaml>=3.12.0nb2

and try to `make'

=> Build dependency gmake>=3.81: found gmake-3.82nb2
=> Build dependency ocaml>=3.12.0nb2: NOT found

then start to install ocaml.

--

-- 
OBATA Akio / obache <at> NetBSD.org

NetBSD source update | 3 Aug 2011 03:05
Picon

daily pkgsrc CVS update output


Updating pkgsrc tree:
? pkgsrc/INDEX
? pkgsrc/README-IPv6.html
? pkgsrc/README-all.html
P pkgsrc/comms/spandsp/Makefile
P pkgsrc/databases/mysql5-server/Makefile
P pkgsrc/databases/mysql5-server/distinfo
P pkgsrc/databases/mysql5-server/patches/patch-ca
P pkgsrc/databases/mysql5-server/patches/patch-cb
P pkgsrc/databases/mysql5-server/patches/patch-cc
U pkgsrc/databases/mysql5-server/patches/patch-include_my__time.h
U pkgsrc/databases/mysql5-server/patches/patch-mysql-test_r_func__time.result
U pkgsrc/databases/mysql5-server/patches/patch-mysql-test_t_func__time.test
U pkgsrc/databases/mysql5-server/patches/patch-sql-common_my__time.c
U pkgsrc/databases/mysql5-server/patches/patch-sql_mysqld.cc
U pkgsrc/databases/mysql5-server/patches/patch-sql_set__var.cc
U pkgsrc/databases/mysql5-server/patches/patch-sql_sql__class.h
P pkgsrc/databases/mysql51-client/Makefile.common
P pkgsrc/databases/mysql51-client/distinfo
P pkgsrc/databases/mysql51-client/patches/patch-av
P pkgsrc/databases/mysql51-server/PLIST
P pkgsrc/databases/mysql51-server/distinfo
P pkgsrc/devel/SDL/distinfo
U pkgsrc/devel/SDL/patches/patch-ab
P pkgsrc/devel/cutter/Makefile
P pkgsrc/devel/cutter/PLIST
U pkgsrc/devel/cutter/distinfo
P pkgsrc/doc/CHANGES-2011
P pkgsrc/mail/evolution-data-server/distinfo
(Continue reading)


Gmane