Re: ports/170920: Update to databases/py-carbon

2012-08-23 Thread edwin
Synopsis: Update to databases/py-carbon

Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python
Responsible-Changed-By: edwin
Responsible-Changed-When: Thu Aug 23 15:00:45 UTC 2012
Responsible-Changed-Why: 
freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)

http://www.freebsd.org/cgi/query-pr.cgi?pr=170920
___
freebsd-python@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


Re: ports/170921: Update to www/py-graphite-web

2012-08-23 Thread edwin
Synopsis: Update to www/py-graphite-web

Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python
Responsible-Changed-By: edwin
Responsible-Changed-When: Thu Aug 23 15:00:59 UTC 2012
Responsible-Changed-Why: 
freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)

http://www.freebsd.org/cgi/query-pr.cgi?pr=170921
___
freebsd-python@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[lini...@freebsd.org: ports/170946: [patch] mark certain ports broken on ARM]

2012-08-23 Thread Mark Linimon
FYI, I would like your approval on these (just the commit of BROKEN; I
do not expect you to try to fix them).

Thanks.

mcl

a...@freebsd.org   databases/mysql41-server
a...@freebsd.org   databases/mysql50-server
a...@freebsd.org   databases/mysql51-server
a...@freebsd.org   databases/mysql55-server
and...@freebsd.orgwww/varnish
ash...@freebsd.orgeditors/emacs
b...@fsn.humail/dovecot2
bro...@freebsd.orgdevel/llvm
c...@freebsd.orgnet/vnc
eha...@freebsd.orgnet/socat
f...@freebsd.org   net-p2p/rtorrent
ge...@freebsd.org devel/nspr
ger...@freebsd.orglang/gcc42
gn...@freebsd.org graphics/cairo
gn...@freebsd.org devel/gobject-introspection
k...@freebsd.org   devel/qt4-moc
k...@freebsd.org   devel/qt4-rcc
k...@freebsd.org   devel/qt4-uic
l...@lerctr.orgsysutils/lsof
m...@aldan.algebra.com  devel/qmake
off...@freebsd.orgdevel/icu
po...@freebsd.org lang/tcl86
po...@freebsd.org devel/pwlib
pyt...@freebsd.orgdatabases/py-sqlite3
y...@coolrat.org   mail/dovecot

- Forwarded message from Mark Linimon  -

Date: Thu, 23 Aug 2012 23:00:12 GMT
From: Mark Linimon 
To: freebsd-gnats-sub...@freebsd.org
Cc: 
Subject: ports/170946: [patch] mark certain ports broken on ARM


>Number: 170946
>Category:   ports
>Synopsis:   [patch] mark certain ports broken on ARM
>Confidential:   no
>Severity:   non-critical
>Priority:   low
>Responsible:freebsd-ports-bugs
>State:  open
>Quarter:
>Keywords:   
>Date-Required:
>Class:  change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 23 23:10:01 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator: Mark Linimon
>Release:FreeBSD 9.0-STABLE i386
>Organization:
FreeBSD
>Environment:
System: FreeBSD freefall.freebsd.org 9.0-STABLE FreeBSD 9.0-STABLE #6 r235139: 
Tue May 8 21:19:03 UTC 2012 
si...@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386
>Description:
I have recently started building packages for arm.  At the moment I am
building a very restricted subset due to how little hardware we have.

To keep from trying to build the same ports over and over, I'd like to
go ahead and mark some ports from the first few runs as BROKEN.  I will
be testing this both on arm and in combination with some other amd64
build, but I would like to give the maintainers a heads-up.  (I do not
expect the maintainers to take any action on fixing the problems; just
approval of the BROKEN line.)

Thanks.
>How-To-Repeat:
>Fix:
Index: databases/mysql41-server/Makefile
===
--- databases/mysql41-server/Makefile   (revision 303040)
+++ databases/mysql41-server/Makefile   (working copy)
@@ -62,6 +62,10 @@
 
 .include 
 
+.if ${ARCH} == "arm"
+BROKEN=Does not compile on arm
+.endif
+
 .if ${ARCH} == "i386"
 CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db
 .endif
Index: databases/mysql50-server/Makefile
===
--- databases/mysql50-server/Makefile   (revision 303040)
+++ databases/mysql50-server/Makefile   (working copy)
@@ -70,6 +70,10 @@
 
 .include 
 
+.if ${ARCH} == "arm"
+BROKEN=Does not compile on arm
+.endif
+
 .if ${ARCH} == "i386"
 CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db
 .endif
Index: databases/mysql51-server/Makefile
===
--- databases/mysql51-server/Makefile   (revision 303040)
+++ databases/mysql51-server/Makefile   (working copy)
@@ -67,6 +67,10 @@
 
 .include 
 
+.if ${ARCH} == "arm"
+BROKEN=Does not compile on arm
+.endif
+
 .if ${ARCH} == "i386"
 CONFIGURE_ARGS+=--enable-assembler
 .endif
Index: databases/mysql55-server/Makefile
===
--- databases/mysql55-server/Makefile   (revision 303040)
+++ databases/mysql55-server/Makefile   (working copy)
@@ -90,4 +90,10 @@
 post-patch:
@${REINPLACE_CMD} 's/*.1/${MAN1}/' ${WRKSRC}/man/CMakeLists.txt
 
-.include 
+.include 
+
+.if ${ARCH} == "arm"
+BROKEN=Does not compile on arm
+.endif
+
+.include 
Index: databases/py-sqlite3/Makefile
===
--- databases/py-sqlite3/Makefile   (revision 303040)
+++ databases/py-sqlite3/Makefile   (working copy)
@@ -30,6 +30,10 @@
 
 .include 
 
+.if ${ARCH} == "arm"
+BROKEN=Does not install on arm
+.endif
+
 post-extract:
 .if ${PYTHON_REL} < 300
@${CP} ${FILESDIR}/setup.py ${WRKSRC}
Index: devel/gobject-introspection/Makefile
===
--- devel/gobject-introspection/Makefile(revision 303040)
+++ devel/gobject-introspection/Makefile(working copy)
@@ -42,4 +42,10 @@
@${REINPLACE_CMD} -e "s|'cc'|'${CC:Q:C/[[:space:]]+/', '/

Re: [lini...@freebsd.org: ports/170946: [patch] mark certain ports broken on ARM]

2012-08-23 Thread Mikhail T.

On 23.08.2012 19:27, Mark Linimon wrote:

ge...@freebsd.org  devel/nspr
m...@aldan.algebra.com   devel/qmake
off...@freebsd.org devel/icu
po...@freebsd.org  lang/tcl86
I'd give a shot at repairing the above four, if I had access to an ARM system... 
None are present on the current list 
, however...


Or, if you shared the errorlogs, a simple fix might be obvious even without 
hands-on access to a build host.

+.if ${ARCH} == "arm"
+BROKEN=Does not compile on arm
+.endif

Would not the below be better?

   NOT_FOR_ARCHS=arm
   NOT_FOR_ARCHS_REASON_ARM=Does not compile on arm

The above method may spare you having to switch some of the affected ports from 
the simple bsd.port.mk to bsd.port.pre.mk.


Yours,

   -mi

___
freebsd-python@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"