[Bug 208561] [NEW PORT] sysutils/datadog: Datadog Cloud-Scale Monitoring agent

2016-09-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208561

Uros  changed:

   What|Removed |Added

 Attachment #169018|0   |1
is obsolete||

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 208561] [NEW PORT] sysutils/datadog: Datadog Cloud-Scale Monitoring agent

2016-09-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208561

--- Comment #2 from Uros  ---
Created attachment 174362
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=174362&action=edit
Datadog port

Updated port with latest version, add dogstatsd rc.d script.

Portlint output

WARN: Makefile: possible use of absolute pathname "/opt/datadog-agent/e...".
WARN: Makefile: possible use of absolute pathname "/var/run/${PORTNAME}".
WARN: Makefile: possible use of absolute pathname "/var/log/${PORTNAME}".
0 fatal errors and 3 warnings found.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


ports/lang/python27 ssl

2016-09-04 Thread Julian H. Stacey
Hi pyt...@freebsd.org as MAINTAINER= of lang/python27/Makefile
Hi r...@freebsd.org as MAINTAINER= of dns/py-dnspython/Makefile

( PS please retain cc:  as I'm not a member of python@ )

I had to comment ssl out of /usr/ports/lang/python27/Makefile
USES=cpe ncurses pkgconfig readline ssl tar:xz
to force compile, else it complained it needed ssl from src/ &
recommended removing ssl from ports, but ports ssl is needed for webmail etc
Comments welcome ?


Also from starting point: cd mail/mailman; make install
ports/dns/py-dnspython fails

===>   Registering installation for py27-dnspython-1.14.0 as automatic
pkg-static: Plist error, directory listed as a file: 
lib/python2.7/site-packages/dnspython-1.14.0-py2.7.egg-info
*** Error code 74

dnspython-1.14.0-py2.7.egg-info
is not even listed so I spose it come from Mk/ or pkg ?
I reinstalled  ports/*/pkg but that did not help.

A solution welcome please.

Thanks,
Julian
-- 
Julian Stacey, BSD Linux Unix Sys Eng Consultant Munich
 Reply below, Prefix '> '. Plain text, No .doc, base64, HTML, quoted-printable.
 http://berklix.eu/brexit/#stolen_votes
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 209355] lang/python35 lang/python34: install fails if archivers/lzmalib is installed

2016-09-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209355

Fukang Chen  changed:

   What|Removed |Added

 CC||loa...@freebsd.org

--- Comment #9 from Fukang Chen  ---
It looks it tries to link the /usr/local/lib/liblzma.so instead of
/usr/lib/liblzma.so.
and liblzma.so from the port archives/lzmalib doesn't have
"lzma_properties_size".

The first "-L/usr/local/lib" in the "cc -shared" comes from Mk/readline.mk, 
it make the linker to search this directory before the default directories.

-
building '_lzma' extension
cc -fPIC -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -O -pipe
-fno-strict-aliasing -Werror=declaration-after-statement -I./Include -I.
-IInclude -I/usr/local/include
-I/usr/ports/lang/python35/work/Python-3.5.2/Include
-I/usr/ports/lang/python35/work/Python-3.5.2 -c
/usr/ports/lang/python35/work/Python-3.5.2/Modules/_lzmamodule.c -o
build/temp.freebsd-12.0-CURRENT-arm-3.5/usr/ports/lang/python35/work/Python-3.5.2/Modules/_lzmamodule.o
cc -shared -lpthread -Wl,-rpath=/usr/lib:/usr/local/lib -L/usr/local/lib
-lpthread -Wl,-rpath=/usr/lib:/usr/local/lib -L/usr/local/lib -O -pipe
-fno-strict-aliasing -I/usr/local/include -I/usr/local/include
build/temp.freebsd-12.0-CURRENT-arm-3.5/usr/ports/lang/python35/work/Python-3.5.2/Modules/_lzmamodule.o
-L. -L/usr/local/lib -llzma -lpython3.5m -o
build/lib.freebsd-12.0-CURRENT-arm-3.5/_lzma.so
*** WARNING: renaming "_lzma" since importing it failed:
build/lib.freebsd-12.0-CURRENT-arm-3.5/_lzma.so: Undefined symbol
"lzma_properties_size"

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 209355] lang/python35 lang/python34: install fails if archivers/lzmalib is installed

2016-09-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209355

--- Comment #10 from Fukang Chen  ---
Created attachment 174374
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=174374&action=edit
link liblzma.so.5

workaround 1

The port archives/lzmalibs provides /usr/local/lib/liblzma.so.1
and the base has /usr/lib/liblzma.so.5. 

If there exists a /usr/local/lib/liblzma.so.1. then pass the "-l:liblzma.so.5"
to make it link the library in the base.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 209355] lang/python35 lang/python34: install fails if archivers/lzmalib is installed

2016-09-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209355

--- Comment #11 from Fukang Chen  ---
Created attachment 174375
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=174375&action=edit
archives/py35-lzma

workaround 2

disable compiling _lzma in lang/python35 and move it to a separate port.
there would be no USES= readline in that port and no version number of 
the base liblzma.so in the patch.

Just my thoughts, not proposing these workarounds as the fix.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 209355] lang/python35 lang/python34: install fails if archivers/lzmalib is installed

2016-09-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209355

--- Comment #12 from Fukang Chen  ---
(In reply to Fukang Chen from comment #9)

s|Mk/readlink.mk|Mk/Uses/readline.mk|

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


Re: ports/lang/python27 ssl

2016-09-04 Thread Ruslan Makhmatkhanov

Hi Julian,

sadly I can't reproduce the behavior in poudriere (both mailman and 
dnspython are builds fine in 10.3 and 12.0), so it is something in your 
system environment. And as you correctly noted this is something that is 
controlled by Mk/* files, not the ports itself. Try to start the ports 
tree from scratch or just use a binary packages. You also can use 
poudriere for building personalized packages for your system.


PS. Can't say anything about ssl issue. I'm not using openssl from ports.

Julian H. Stacey wrote on 09/04/2016 17:29:

Hi pyt...@freebsd.org as MAINTAINER= of lang/python27/Makefile
Hi r...@freebsd.org as MAINTAINER= of dns/py-dnspython/Makefile

( PS please retain cc:  as I'm not a member of python@ )

I had to comment ssl out of /usr/ports/lang/python27/Makefile
USES=cpe ncurses pkgconfig readline ssl tar:xz
to force compile, else it complained it needed ssl from src/ &
recommended removing ssl from ports, but ports ssl is needed for webmail etc
Comments welcome ?


Also from starting point: cd mail/mailman; make install
ports/dns/py-dnspython fails

===>   Registering installation for py27-dnspython-1.14.0 as automatic
pkg-static: Plist error, directory listed as a file: 
lib/python2.7/site-packages/dnspython-1.14.0-py2.7.egg-info
*** Error code 74

dnspython-1.14.0-py2.7.egg-info
is not even listed so I spose it come from Mk/ or pkg ?
I reinstalled  ports/*/pkg but that did not help.

A solution welcome please.

Thanks,
Julian




--
Regards,
Ruslan

T.O.S. Of Reality
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


Problem reports for pyt...@freebsd.org that need special attention

2016-09-04 Thread bugzilla-noreply
To view an individual PR, use:
  https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id).

The following is a listing of current problems submitted by FreeBSD users,
which need special attention. These represent problem reports covering
all versions including experimental development code and obsolete releases.

Status  |Bug Id | Description
+---+---
Open|205308 | devel/py-pip and devel/py-virtualenv don't aggree 
Open|210539 | lang/python33: HTTP Header Injection in Python ur 
Open|210820 | lang/python27: _ssl.so fails to build (Undefined  
Open|211310 | x11-toolkits/py-wxPython30: wxPython.h header not 
Open|211641 | graphics/py-mayavi mayavi2 runtime error  
Open|212072 | lang/python27: Fails to create package (missing p 
Open|204982 | [NEW PORT] mail/py-alot: Terminal MUA using notmu 

7 problems total for which you should take action.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"