CVS: cvs.openbsd.org: ports

2015-12-29 Thread Alexandr Shadchin
CVSROOT:/cvs
Module name:ports
Changes by: shadc...@cvs.openbsd.org2015/12/29 08:55:13

Log message:
Import math/py-statistics

This module provides functions for calculating mathematical statistics
of numeric (Real-valued) data.

ok jca@

Status:

Vendor Tag: shadchin
Release Tags:   shadchin_20151229

N ports/math/py-statistics/Makefile
N ports/math/py-statistics/distinfo
N ports/math/py-statistics/pkg/PLIST
N ports/math/py-statistics/pkg/DESCR

No conflicts created by this import



Re: i3: fix usage of window size hints

2015-12-29 Thread David Coppa
On Mon, Dec 28, 2015 at 2:25 PM, Alexander Hall  wrote:
> Instead of attacking x11-ssh-askpass, I think this is a better approach.
>
> Thoughts?

Ok with me, but please consider opening a pull request on
https://github.com/i3/i3/: it will be better for this to be merged
upstream...

> /Alexander

Ciao!
David

> Index: Makefile
> ===
> RCS file: /cvs/ports/x11/i3/Makefile,v
> retrieving revision 1.100
> diff -u -p -r1.100 Makefile
> --- Makefile21 Dec 2015 09:48:10 -  1.100
> +++ Makefile28 Dec 2015 13:21:14 -
> @@ -3,7 +3,7 @@
>  COMMENT =  improved dynamic tiling window manager
>
>  DISTNAME = i3-4.11
> -REVISION = 1
> +REVISION = 2
>  CATEGORIES =   x11
>
>  EXTRACT_SUFX = .tar.bz2
> Index: patches/patch-src_manage_c
> ===
> RCS file: /cvs/ports/x11/i3/patches/patch-src_manage_c,v
> retrieving revision 1.17
> diff -u -p -r1.17 patch-src_manage_c
> --- patches/patch-src_manage_c  18 Dec 2015 15:53:09 -  1.17
> +++ patches/patch-src_manage_c  28 Dec 2015 13:21:14 -
> @@ -5,7 +5,7 @@ Suppress no_focus for first window on a
>  Fix multiple memory leaks with regular expressions.
>
>  --- src/manage.c.orig  Wed Sep 30 08:55:10 2015
> -+++ src/manage.c   Fri Dec 18 13:58:58 2015
>  src/manage.c   Mon Dec 28 14:05:47 2015
>  @@ -294,6 +294,7 @@ void manage_window(xcb_window_t window, xcb_get_window
>   if (match != NULL && match->insert_where != M_BELOW) {
>   DLOG("Removing match %p from container %p\n", match, nc);
> @@ -14,7 +14,27 @@ Fix multiple memory leaks with regular e
>   }
>   }
>
> -@@ -524,13 +525,23 @@ void manage_window(xcb_window_t window, xcb_get_window
> +@@ -431,11 +432,16 @@ void manage_window(xcb_window_t window, xcb_get_window
> +
> + /* Plasma windows set their geometry in WM_SIZE_HINTS. */
> + if ((wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_POSITION || 
> wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_POSITION) &&
> +-(wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_SIZE || 
> wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_SIZE)) {
> +-DLOG("We are setting geometry according to wm_size_hints x=%d y=%d 
> w=%d h=%d\n",
> +- wm_size_hints.x, wm_size_hints.y, wm_size_hints.width, 
> wm_size_hints.height);
> ++wm_size_hints.x != 0 && wm_size_hints.y != 0) {
> ++DLOG("We are setting geometry according to wm_size_hints x=%d 
> y=%d\n",
> ++ wm_size_hints.x, wm_size_hints.y);
> + geom->x = wm_size_hints.x;
> + geom->y = wm_size_hints.y;
> ++}
> ++if ((wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_SIZE || 
> wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_SIZE) &&
> ++wm_size_hints.width != 0 && wm_size_hints.height != 0) {
> ++DLOG("We are setting geometry according to wm_size_hints w=%d 
> h=%d\n",
> ++ wm_size_hints.width, wm_size_hints.height);
> + geom->width = wm_size_hints.width;
> + geom->height = wm_size_hints.height;
> + }
> +@@ -524,13 +530,23 @@ void manage_window(xcb_window_t window, xcb_get_window
>   /* Send an event about window creation */
>   ipc_send_window_event("new", nc);
>
>



-- 
"If you try a few times and give up, you'll never get there. But if
you keep at it... There's a lot of problems in the world which can
really be solved by applying two or three times the persistence that
other people will."
-- Stewart Nelson



Re: [new] devel/lazarus

2015-12-29 Thread Pascal Stumpf
On Tue, 29 Dec 2015 13:34:39 +0100, =?utf-8?Q?J=C3=A9r=C3=A9mie_Courr=C3=A8ges-
Anglas?= wrote:
> Pascal Stumpf  writes:
> 
> > Lazarus is a Rapid Application Development Tool for Free Pascal.
> > It comes with the LCL - Lazarus component library, which contains
> > platform independent visual components like buttons, windows,
> > checkbox, treeview and many, many more. The LCL is platform
> > independent, so you can write an application once and then compile
> > for various platforms without changing code.
> >
> > Looking for i386 tests/oks.
> 
> Builds and runs fine on i386, I haven't tested with projects at $WORK
> yet.
> 
> Nitpicking:
> - the COMMENT could mention that lazarus is an IDE, not just a set of
>   classes.  Thoughts?

How about "Delphi compatible IDE" (taken from the website)?

> - '+' doesn't need to be escaped in "find ... -exec ... +"
> 
> ok jca@ nevertheless
> 
> -- 
> jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE
> 
> 



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Alexandr Shadchin
CVSROOT:/cvs
Module name:ports
Changes by: shadc...@cvs.openbsd.org2015/12/29 08:50:58

Modified files:
devel/py-futures: Makefile distinfo 
devel/py-futures/pkg: PLIST 

Log message:
Update to py-futures 3.0.3

ok jca@



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Giovanni Bechis
CVSROOT:/cvs
Module name:ports
Changes by: giova...@cvs.openbsd.org2015/12/29 09:48:10

Modified files:
mail/py-spf: Tag: OPENBSD_5_8 Makefile distinfo 

Log message:
Update to 2.0.12, unicode fixes
Fixes py-policyd-spf
ok jasper@



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 11:14:39

Modified files:
databases/hs-resource-pool: Makefile 
databases/hs-resource-pool/pkg: PLIST 

Log message:
Looks like hs-resource-pool is buildable again.

Update plist, set MODGHC_PACKAGE_KEY and bump,
to let it package and update, too, in case we
still need it.



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Alexandr Shadchin
CVSROOT:/cvs
Module name:ports
Changes by: shadc...@cvs.openbsd.org2015/12/29 11:46:56

ports/devel/py-html5lib/patches

Update of /cvs/ports/devel/py-html5lib/patches
In directory cvs.openbsd.org:/tmp/cvs-serv4840/patches

Log Message:
Directory /cvs/ports/devel/py-html5lib/patches added to the repository



UPDATE: devel/py-html5lib 0.9999999

2015-12-29 Thread Alexandr Shadchin
Hi,

This diff updates py-html5lib to the latest release.
Tested on amd64. Add python3 flavor.

Comments ? OK ?

-- 
Alexandr Shadchin

Index: Makefile
===
RCS file: /cvs/ports/devel/py-html5lib/Makefile,v
retrieving revision 1.10
diff -u -p -r1.10 Makefile
--- Makefile29 Sep 2015 10:51:54 -  1.10
+++ Makefile29 Dec 2015 18:47:51 -
@@ -2,23 +2,31 @@
 
 COMMENT=   HTML parser/tokeniser based for HTML5
 
-MODPY_EGG_VERSION= 0.11.1
+MODPY_EGG_VERSION= 0.999
 DISTNAME=  html5lib-${MODPY_EGG_VERSION}
 PKGNAME=   py-${DISTNAME}
-REVISION = 6
 CATEGORIES=devel www textproc
-EXTRACT_SUFX=  .zip
 
-HOMEPAGE=  https://code.google.com/p/html5lib/
-MASTER_SITES=  https://html5lib.googlecode.com/files/
+HOMEPAGE=  https://github.com/html5lib/html5lib-python/
 
 # MIT
 PERMIT_PACKAGE_CDROM=  Yes
 
 PKG_ARCH=  *
 MODULES=   lang/python
+MODPY_PI = Yes
+
+RUN_DEPENDS =  devel/py-six${MODPY_FLAVOR}
+TEST_DEPENDS = ${RUN_DEPENDS} \
+   devel/py-nose${MODPY_FLAVOR} \
+   textproc/py-lxml${MODPY_FLAVOR}
+
+FLAVORS =  python3
+FLAVOR ?=
+
 MODPY_SETUPTOOLS=  Yes
 
-TEST_DEPENDS=  devel/py-simplejson
+do-test:
+   cd ${WRKSRC} && ${LOCALBASE}/bin/nosetests${MODPY_BIN_SUFFIX} 
--first-package-wins
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/devel/py-html5lib/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo18 Jan 2015 03:13:42 -  1.2
+++ distinfo29 Dec 2015 18:47:51 -
@@ -1,2 +1,2 @@
-SHA256 (html5lib-0.11.1.zip) = 5aJste2hEBhx6joRmd5HMR915ykhWD1Be0S8/2D4dG4=
-SIZE (html5lib-0.11.1.zip) = 375892
+SHA256 (html5lib-0.999.tar.gz) = 
JhKhkajVhCv6BX5BulC7udy3IkGdJAjHjP9HWNB1SGg=
+SIZE (html5lib-0.999.tar.gz) = 889312
Index: patches/patch-setup_py
===
RCS file: patches/patch-setup_py
diff -N patches/patch-setup_py
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-setup_py  29 Dec 2015 18:47:51 -
@@ -0,0 +1,9 @@
+$OpenBSD$
+--- setup.py.orig  Wed Dec 23 16:16:22 2015
 setup.py   Wed Dec 23 16:16:35 2015
+@@ -1,4 +1,4 @@
+-from distutils.core import setup
++from setuptools import setup
+ import ast
+ import os
+ import codecs
Index: pkg/PLIST
===
RCS file: /cvs/ports/devel/py-html5lib/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- pkg/PLIST   18 Jan 2009 20:03:56 -  1.1.1.1
+++ pkg/PLIST   29 Dec 2015 18:47:51 -
@@ -4,86 +4,90 @@ lib/python${MODPY_VERSION}/site-packages
 
lib/python${MODPY_VERSION}/site-packages/html5lib-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/PKG-INFO
 
lib/python${MODPY_VERSION}/site-packages/html5lib-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/SOURCES.txt
 
lib/python${MODPY_VERSION}/site-packages/html5lib-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/dependency_links.txt
+lib/python${MODPY_VERSION}/site-packages/html5lib-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/requires.txt
 
lib/python${MODPY_VERSION}/site-packages/html5lib-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt
 lib/python${MODPY_VERSION}/site-packages/html5lib/__init__.py
-lib/python${MODPY_VERSION}/site-packages/html5lib/__init__.pyc
+${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/html5lib/${MODPY_PYCACHE}/
+lib/python${MODPY_VERSION}/site-packages/html5lib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/html5lib/${MODPY_PYCACHE}constants.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/html5lib/${MODPY_PYCACHE}html5parser.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/html5lib/${MODPY_PYCACHE}ihatexml.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/html5lib/${MODPY_PYCACHE}inputstream.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/html5lib/${MODPY_PYCACHE}sanitizer.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/html5lib/${MODPY_PYCACHE}tokenizer.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/html5lib/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc
 lib/python${MODPY_VERSION}/site-packages/html5lib/constants.py
-lib/python${MODPY_VERSION}/site-packages/html5lib/constants.pyc
 lib/python${MODPY_VERSION}/site-packages/html5lib/filters/
 lib/python${MODPY_VERSION}/site-packages/html5lib/filters/__init__.py
-lib/python${MODPY_VERSION}/site-packages/html5lib/filters/__init__.pyc
+${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/html5lib/filters/${MODPY_PYCACHE}/

UPDATE: graphics/gimp

2015-12-29 Thread Giovanni Bechis
Bugfix update to latest version.
 Comments ? Ok ?
  Cheers
   Giovanni
Index: Makefile
===
RCS file: /var/cvs/ports/graphics/gimp/stable/Makefile,v
retrieving revision 1.105
diff -u -p -r1.105 Makefile
--- Makefile	30 Oct 2015 12:47:39 -	1.105
+++ Makefile	29 Dec 2015 11:23:52 -
@@ -4,8 +4,7 @@ COMMENT=	GNU Image Manipulation Program
 
 SHARED_ONLY=	Yes
 
-DISTNAME=	gimp-2.8.14
-REVISION=	3
+DISTNAME=	gimp-2.8.16
 
 SHARED_LIBS+=	gimp-2.0	272.0	# 800.0
 SHARED_LIBS+=	gimpbase-2.0	272.0	# 800.0
@@ -23,7 +22,7 @@ MAINTAINER=	Giovanni Bechis 

UPDATE: www/py-beautifulsoup4 4.4.1

2015-12-29 Thread Alexandr Shadchin
Hi,

This diff updates py-beautifulsoup4 to the latest release.
Tested on amd64. Add python3 flavor.

Comments ? OK ?

PS: need new devel/py-html5lib (on ports@)

-- 
Alexandr Shadchin

Index: Makefile
===
RCS file: /cvs/ports/www/py-beautifulsoup4/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- Makefile13 Mar 2013 08:12:10 -  1.3
+++ Makefile29 Dec 2015 18:59:44 -
@@ -2,11 +2,11 @@
 
 COMMENT =  HTML/XML parser that supports invalid markup
 
-MODPY_EGG_VERSION =4.1.3
+MODPY_EGG_VERSION =4.4.1
 DISTNAME = beautifulsoup4-${MODPY_EGG_VERSION}
 PKGNAME =  py-${DISTNAME}
 
-CATEGORIES =   www
+CATEGORIES =   www
 
 HOMEPAGE = http://www.crummy.com/software/BeautifulSoup/
 MAINTAINER =   frantisek holop 
@@ -14,11 +14,19 @@ MAINTAINER =frantisek holop 

CVS: cvs.openbsd.org: ports

2015-12-29 Thread Alexandr Shadchin
CVSROOT:/cvs
Module name:ports
Changes by: shadc...@cvs.openbsd.org2015/12/29 08:59:26

Modified files:
math   : Makefile 

Log message:
+py-statistics



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Pascal Stumpf
CVSROOT:/cvs
Module name:ports
Changes by: pas...@cvs.openbsd.org  2015/12/29 10:43:31

Log message:
Lazarus is a Rapid Application Development Tool for Free Pascal.
It comes with the LCL - Lazarus component library, which contains
platform independent visual components like buttons, windows,
checkbox, treeview and many, many more. The LCL is platform
independent, so you can write an application once and then compile
for various platforms without changing code.

comments/ok jca@

Status:

Vendor Tag: pascal
Release Tags:   pascal_20151229

N ports/devel/lazarus/Makefile
N ports/devel/lazarus/distinfo
N ports/devel/lazarus/pkg/DESCR
N ports/devel/lazarus/pkg/PLIST
N ports/devel/lazarus/patches/patch-Makefile
N ports/devel/lazarus/patches/patch-Makefile_fpc
N ports/devel/lazarus/patches/patch-install_man_Makefile

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Pascal Stumpf
CVSROOT:/cvs
Module name:ports
Changes by: pas...@cvs.openbsd.org  2015/12/29 10:44:19

Modified files:
devel  : Makefile 

Log message:
+ lazarus



Re: Firefox PDF rendering

2015-12-29 Thread Juan Francisco Cantero Hurtado
On Mon, Dec 28, 2015 at 02:50:24PM +0100, Theo Buehler wrote:
> On Mon, Dec 28, 2015 at 08:23:32AM +0100, Matthieu Herrb wrote:
> > On Sun, Dec 27, 2015 at 10:05:24PM +, Stuart Henderson wrote:
> > > On 2015/12/26 19:11, Michael McConville wrote:
> > > > Is there a reason why Firefox often has ugly typography in PDFs
> > > > generated by LaTeX and the like? Most specifically, the t's are often
> > > > very fat.
> > > > 
> > > > Here's an example:
> > > > 
> > > > http://www.sccs.swarthmore.edu/~mmcconv1/dump/firefox-pdf.png
> > > > 
> > > > IIRC, it's this way on some Linux distros too, so maybe it's
> > > > unavoidable. Is there any way around it?
> > > > 
> > > 
> > > I think this may happen if you have ghostscript-fonts installed.
> > 
> > To my eyes this screenshot looks more like a document that used the
> > old bitmapped CM fonts rather than some PDF compatible ones. It may be
> > possible that it's the firefox PDF viewer that picks them from you
> > system, but more probalby it's at the PDF generation stage that the
> > damage was done.
> > 
> > Michael, is the original PDF document available somewhere to check
> > that.
> > 
> > Hint for (La)TeX document writers : use the lmodern package with
> > pdftex/pdflatex. 
> > -- 
> > Matthieu Herrb
> 
> It doesn't seem that \uspackage{lmodern} fixes this issue:
> Consider these two examples:
> https://people.math.ethz.ch/~thbuehle/fa_i/lorem-lmodern.pdf
> https://people.math.ethz.ch/~thbuehle/fa_i/lorem-nolmodern.pdf
> both have the same fat t that Mike described.  Both were created with
> pdflatex, source code below.
> 
> As I told Mike in private, setting "pdfjs.disableFontFace" to true
> in about:config apparently fixes this issue, but I don't know if there
> are other undesirable side-effects of doing this.

The problem are the Type1 fonts commonly used in the PDFs generated by
pdflatex. Firefox tries to convert the Type1 fonts to OTF but the
conversion is very buggy.

Firefox extracts the fonts embedded within the PDF files and load them
with @font-face. If you disable @font-face, Firefox will use (i guess)
the PDF standard fonts which will break the metrics of the document.

https://wiki.mozilla.org/PDF.js/fonts

-- 
Juan Francisco Cantero Hurtado http://juanfra.info



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/12/29 12:37:55

Modified files:
audio/beets: Makefile distinfo 
audio/beets/pkg: PLIST 

Log message:
update to beets-1.3.16, lots of improvements including a nice new "edit"
plugin that allows editing tags in bulk in $EDITOR

release notes at https://github.com/sampsyo/beets/releases/tag/v1.3.16



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Nigel Taylor
CVSROOT:/cvs
Module name:ports
Changes by: ni...@cvs.openbsd.org   2015/12/29 12:37:21

Modified files:
www/erl-mochiweb: Makefile 

Log message:
Remove v from version number in PKGNAME.

Ok jasper@



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 13:27:23

Modified files:
graphics/ruby-gruff: Makefile 

Log message:
switch to rake for tests



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 13:30:43

Modified files:
graphics/p5-Color-Calc: Makefile distinfo 
graphics/p5-Color-Calc/pkg: PLIST 

Log message:
update to p5-Color-Calc-1.074



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 13:31:55

Modified files:
graphics/p5-Graphics-ColorNames-WWW: Makefile distinfo 
graphics/p5-Graphics-ColorNames-WWW/pkg: PLIST 

Log message:
update to p5-Graphics-ColorNames-WWW-1.13



Re: wip update: net/nmap

2015-12-29 Thread Jérémie Courrèges-Anglas
Giovanni Bechis  writes:

> Hi,

Hi,

> I do not use it anymore so I am dropping maintainership, anyway attached a 
> wip port to update it to latest version
> if someone wants to step over.
>  Cheers
>Giovanni

Works fine for basic usage on i386.  Note that NO_TEST should go away
(even though tests are failing right now).

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/12/29 15:54:49

Modified files:
net/irssi  : Makefile 

Log message:
tidy whitespace moving it closer to viq's openbsd-wip for 0.8.18beta1



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Robert Peichaer
CVSROOT:/cvs
Module name:ports
Changes by: r...@cvs.openbsd.org2015/12/29 16:19:33

Modified files:
security/py-crypto: Makefile 

Log message:
Ensure, that py-crypto finds gmp.h during configure.
This fixes a warning in ansible.

OK landry@, sthen@



Re: Update: zim version 0.65

2015-12-29 Thread Jérémie Courrèges-Anglas
Sebastian Benoit  writes:

> ok?

Looks fine ports-wise fwiw.  Note that there is a test suite, so
removing NO_TEST=Yes + hooking up the test suite + fixing potential
failures would be an improvement.

[...]

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/12/29 13:50:30

Modified files:
mail/rspamd: Makefile distinfo 
mail/rspamd/patches: patch-CMakeLists_txt 

Log message:
update to rspamd-1.0.11, from Brad



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/12/29 14:44:33

Modified files:
mail/mutt  : Makefile 

Log message:
Switch Mutt back to qdbm for the header cache, tb@ reported some problems
with the cache getting invalidated when messages were attached/detached
from threads, and since I wasn't 100% sure about tokyocabinet with a
non-UBC system this seems the best approach. We also tried gdbm (g not
q), which was slightly faster for me (but not much in it) but seems
much slower for tb@.



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 12:48:08

Modified files:
infrastructure/mk: bsd.port.mk 

Log message:
for ports that have GH_PROJECT and GH_TAGNAME, populate DISTNAME automatically

looks ok to sthen@



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 12:49:41

Modified files:
archivers/lz4  : Makefile 
astro/ansiweather: Makefile 
audio/glyr : Makefile 
audio/mumble   : Makefile 
audio/pithos   : Makefile 
databases/mdbtools: Makefile 
devel/jsoncpp  : Makefile 
devel/libyajl  : Makefile 
devel/lua-lgi  : Makefile 
devel/lua-penlight: Makefile 
devel/lualdoc  : Makefile 
devel/ocaml-lwt: Makefile 
devel/ocaml-ppx-tools: Makefile 
devel/ocaml-zed: Makefile 
devel/rebar: Makefile 
fonts/blockzone: Makefile 
games/hypatia  : Makefile 
games/valyriatear: Makefile 
games/xlennart : Makefile 
geo/mapproxy   : Makefile 
geo/merkaartor : Makefile 
geo/osm-gps-map: Makefile 
geo/osm2pgsql  : Makefile 
graphics/pqiv  : Makefile 
graphics/tesseract: Makefile.inc 
java/jna   : Makefile 
lang/fsharp: Makefile 
lang/ocaml-camlp4: Makefile 
misc/fasd  : Makefile 
misc/nyancat   : Makefile 
misc/portroach : Makefile 
net/icbd   : Makefile 
security/kc: Makefile 
sysutils/consolekit: Makefile 
sysutils/mcollective-plugins/nrpe-agent: Makefile 
sysutils/mcollective-plugins/package-agent: Makefile 
sysutils/mcollective-plugins/puppet-agent: Makefile 
sysutils/rofi  : Makefile 
sysutils/toad  : Makefile 
sysutils/tree  : Makefile 
textproc/pdfpc : Makefile 
textproc/wkhtmltopdf: Makefile 
www/logswan: Makefile 
www/vimb   : Makefile 

Log message:
DISTNAME is set by bsd.port.mk for these ports now



Re: irssi 0.8.17, irssi-icb

2015-12-29 Thread Robert Peichaer
On Tue, Dec 29, 2015 at 08:11:13PM +, Stuart Henderson wrote:
> Picking up viq's old irssi update, now with an update to irssi-icb
> which fixes things (the in-tree irssi-icb was fairly broken when
> I tried it with irssi 0.8.17 before).
> 
> For irssi, compared to the previous diff, it installs irssi-config
> in the include dir so that irssi-icb can find it without patching
> the autoconf files, and there are minor whitespace changes.
> 
> irssi-otr and irssi-silc seem to work (though I'm not on an active
> silc network any more so just testing locally).
> 
> Could someone test irssi-xmpp please?
> 
> OK?

I'm only using irssi/irssi-icb, but the diff looks fine and I see no
obvious problems. So FWIW, works for me, OK rpe@



Re: UPDATE: www/py-beautifulsoup4 4.4.1

2015-12-29 Thread Daniel Jakots
On Wed, 30 Dec 2015 00:04:53 +0500, Alexandr Shadchin
 wrote:

> Hi,
> 
> This diff updates py-beautifulsoup4 to the latest release.
> Tested on amd64. Add python3 flavor.
> 
> Comments ? OK ?
> 
> PS: need new devel/py-html5lib (on ports@)
> 

Tested on i386. Looks fine.



Re: UPDATE: devel/py-html5lib 0.9999999

2015-12-29 Thread Daniel Jakots
On Tue, 29 Dec 2015 23:48:57 +0500, Alexandr Shadchin
 wrote:

> Hi,
> 
> This diff updates py-html5lib to the latest release.
> Tested on amd64. Add python3 flavor.
> 
> Comments ? OK ?
> 

Tested on i386. Looks fine.



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 13:06:52

Modified files:
devel/luacopas : Makefile 
devel/luafs: Makefile 

Log message:
fix HOMEPAGE



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 13:15:25

Modified files:
graphics/indexpage: Makefile 

Log message:
add working mirror



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 13:21:07

Modified files:
graphics/ruby-rmagick: Makefile distinfo 
graphics/ruby-rmagick/pkg: PLIST 

Log message:
update to ruby-rmagick-2.15.4



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 13:21:50

Modified files:
graphics/ruby-gruff: Makefile distinfo 
graphics/ruby-gruff/pkg: PLIST 

Log message:
update to ruby-gruff-0.6.0



Re: Vulnerable packages in ports tree 29/12

2015-12-29 Thread Stuart Henderson
On 2015/12/29 04:05, Sevan / Venture37 wrote:
> graphics/giflib https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2015-7555

no upstream fix, redhat are "CLOSED WONTFIX".. fortunately it's only in the
giffix binary and not the library.

> graphics/tiff CVE-2015-7554 CVE-2015-8668

I don't think this is fixed upstream either.



Re: wip update: net/nmap

2015-12-29 Thread Stuart Henderson
On 2015/12/29 11:23, Giovanni Bechis wrote:
> Hi,
> I do not use it anymore so I am dropping maintainership, anyway attached a 
> wip port to update it to latest version
> if someone wants to step over.

Here's a smaller diff for PLIST-zenmap for this.

Index: PLIST-zenmap
===
RCS file: /cvs/ports/net/nmap/pkg/PLIST-zenmap,v
retrieving revision 1.15
diff -u -p -r1.15 PLIST-zenmap
--- PLIST-zenmap16 May 2014 15:08:54 -  1.15
+++ PLIST-zenmap29 Dec 2015 20:20:43 -
@@ -244,6 +244,9 @@ share/zenmap/locale/de/LC_MESSAGES/zenma
 share/zenmap/locale/fr/
 share/zenmap/locale/fr/LC_MESSAGES/
 share/zenmap/locale/fr/LC_MESSAGES/zenmap.mo
+share/zenmap/locale/hi/
+share/zenmap/locale/hi/LC_MESSAGES/
+share/zenmap/locale/hi/LC_MESSAGES/zenmap.mo
 share/zenmap/locale/hr/
 share/zenmap/locale/hr/LC_MESSAGES/
 share/zenmap/locale/hr/LC_MESSAGES/zenmap.mo
@@ -262,6 +265,9 @@ share/zenmap/locale/pt_BR/LC_MESSAGES/ze
 share/zenmap/locale/ru/
 share/zenmap/locale/ru/LC_MESSAGES/
 share/zenmap/locale/ru/LC_MESSAGES/zenmap.mo
+share/zenmap/locale/zh/
+share/zenmap/locale/zh/LC_MESSAGES/
+share/zenmap/locale/zh/LC_MESSAGES/zenmap.mo
 share/zenmap/misc/
 share/zenmap/misc/profile_editor.xml
 share/zenmap/pixmaps/



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 12:59:02

Modified files:
devel/luarings : Makefile distinfo 

Log message:
- update to luarings-1.3.0
- fix HOMEPAGE/MASTER_SITES



irssi 0.8.17, irssi-icb

2015-12-29 Thread Stuart Henderson
Picking up viq's old irssi update, now with an update to irssi-icb
which fixes things (the in-tree irssi-icb was fairly broken when
I tried it with irssi 0.8.17 before).

For irssi, compared to the previous diff, it installs irssi-config
in the include dir so that irssi-icb can find it without patching
the autoconf files, and there are minor whitespace changes.

irssi-otr and irssi-silc seem to work (though I'm not on an active
silc network any more so just testing locally).

Could someone test irssi-xmpp please?

OK?


Index: irssi/Makefile
===
RCS file: /cvs/ports/net/irssi/Makefile,v
retrieving revision 1.59
diff -u -p -r1.59 Makefile
--- irssi/Makefile  14 Jun 2014 10:34:45 -  1.59
+++ irssi/Makefile  29 Dec 2015 19:54:07 -
@@ -4,18 +4,20 @@ SHARED_ONLY=  Yes
 
 COMMENT=   modular IRC client with many features (ipv6,socks,proxy)
 
-DISTNAME=  irssi-0.8.16
+V= 0.8.17
+DISTNAME=  irssi-$V
+PKGSPEC=   irssi-=$V
+EXTRACT_SUFX=  .tar.bz2
 CATEGORIES=net
-REVISION=  0
 
 HOMEPAGE=  http://www.irssi.org/
 
 MAINTAINER=Wiktor Izdebski 
 
-# GPL
+# GPLv2+
 PERMIT_PACKAGE_CDROM=  Yes
 
-MASTER_SITES=   ${HOMEPAGE}files/
+MASTER_SITES=   https://github.com/irssi-import/irssi/releases/download/$V/
 
 WANTLIB=   c crypto m ncurses perl pthread ssl util \
pcre glib-2.0 gmodule-2.0
@@ -25,9 +27,9 @@ MODULES=  devel/gettext
 LIB_DEPENDS=   devel/glib2
 
 LIBTOOL_FLAGS+=--tag=disable-static
-CONFIGURE_STYLE=gnu
-MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}
-CONFIGURE_ARGS+=--with-pic \
+CONFIGURE_STYLE= gnu
+MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}
+CONFIGURE_ARGS+= --with-pic \
--with-proxy \
--with-perl=yes \
--with-perl-lib=${PREFIX}/libdata/perl5/site_perl
@@ -51,5 +53,8 @@ FAKE_FLAGS=   confdir="${PREFIX}/share/exa
 
 pre-configure:
${SUBST_CMD} ${WRKSRC}/docs/irssi.1
+
+post-install:
+   ${INSTALL_DATA} ${WRKSRC}/irssi-config ${PREFIX}/include/irssi/
 
 .include 
Index: irssi/distinfo
===
RCS file: /cvs/ports/net/irssi/distinfo,v
retrieving revision 1.19
diff -u -p -r1.19 distinfo
--- irssi/distinfo  2 Jun 2014 16:50:42 -   1.19
+++ irssi/distinfo  29 Dec 2015 19:54:07 -
@@ -1,2 +1,2 @@
-SHA256 (irssi-0.8.16.tar.gz) = aIsXYdmWYgdfGIImjJXoQxhsscLm5pbBYjsCRn8mAqU=
-SIZE (irssi-0.8.16.tar.gz) = 1359539
+SHA256 (irssi-0.8.17.tar.bz2) = PJYAytLt9Y8dAS/rwaC6hEJ0324zHAGp6TVGdwUWaAc=
+SIZE (irssi-0.8.17.tar.bz2) = 1102196
Index: irssi/patches/patch-docs_irssi_1
===
RCS file: /cvs/ports/net/irssi/patches/patch-docs_irssi_1,v
retrieving revision 1.4
diff -u -p -r1.4 patch-docs_irssi_1
--- irssi/patches/patch-docs_irssi_111 Oct 2009 15:23:51 -  1.4
+++ irssi/patches/patch-docs_irssi_129 Dec 2015 19:54:07 -
@@ -1,7 +1,7 @@
 $OpenBSD: patch-docs_irssi_1,v 1.4 2009/10/11 15:23:51 okan Exp $
 docs/irssi.1.orig  Sat Oct  6 11:38:21 2007
-+++ docs/irssi.1   Wed Dec  3 22:58:13 2008
-@@ -65,10 +65,10 @@ display brief usage message.
+--- docs/irssi.1.orig  Sat Oct 11 09:42:36 2014
 docs/irssi.1   Tue Dec 29 16:47:56 2015
+@@ -62,10 +62,10 @@ show a help message.
  .SH SEE ALSO
  .B Irssi
  has been supplied with a huge amount of documentation. Check /help or look
@@ -14,7 +14,7 @@ $OpenBSD: patch-docs_irssi_1,v 1.4 2009/
  Global configuration file
  .TP
  .I ~/.irssi/config
-@@ -83,13 +83,18 @@ Default irssi theme
+@@ -80,13 +80,18 @@ Default irssi theme
  .I ~/.irssi/away.log
  Logged messages in away status
  .TP
Index: irssi/patches/patch-src_fe-common_core_Makefile_in
===
RCS file: /cvs/ports/net/irssi/patches/patch-src_fe-common_core_Makefile_in,v
retrieving revision 1.6
diff -u -p -r1.6 patch-src_fe-common_core_Makefile_in
--- irssi/patches/patch-src_fe-common_core_Makefile_in  2 Jun 2014 16:50:42 
-   1.6
+++ irssi/patches/patch-src_fe-common_core_Makefile_in  29 Dec 2015 19:54:07 
-
@@ -1,7 +1,7 @@
 $OpenBSD: patch-src_fe-common_core_Makefile_in,v 1.6 2014/06/02 16:50:42 sthen 
Exp $
 src/fe-common/core/Makefile.in.origWed May 28 21:16:02 2014
-+++ src/fe-common/core/Makefile.in Sun Jun  1 14:45:13 2014
-@@ -365,7 +365,7 @@ INCLUDES = \
+--- src/fe-common/core/Makefile.in.origSat Oct 11 09:58:14 2014
 src/fe-common/core/Makefile.in Tue Dec 29 16:47:56 2015
+@@ -365,7 +365,7 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/src -I$(top_srcdir)/src/core/ \
$(GLIB_CFLAGS) \
-DHELPDIR=\""$(datadir)/irssi/help"\" \
Index: irssi/patches/patch-src_fe-common_core_fe-core-commands_c
===
RCS file: irssi/patches/patch-src_fe-common_core_fe-core-commands_c

Re: KDE Frameworks ports

2015-12-29 Thread Vadim Zhukov
2015-12-27 23:50 GMT+03:00 Vadim Zhukov :
> Hello all.
>
> At first, a small note for those who don't know: KDE nowadays consists
> three big collections of software:
>
> KDE Frameworks - mostly ex. kdelibs+kde-runtime.
> Plasma Workspaces - desktop components: KWin, panels, systray etc.
> KDE Applications - actual user applications and their more or less
> private components, including PIM stack, games, educational and so on.
>
> So here is a collection of ports used to build KDE Frameworks. It consists of:
>
> devel/kf5 - main stuff
> x11/kde-applications/Makefile.inc - contains additional tweaks for KF5
> x11/kde-applications/gpgmepp - optional but useful dependency
>
> If you want to play, just unpack it under /usr/ports, go to devel/kf5
> and type "make package".
>
> devel/kf5 directory in archive consists of a few additional files:
>
> * frameworks-list - list of all frameworks, including non-ported ones;
> at the present time there are exactly two non-ported frameworks,
> modemmanager-qt and networkmanager-qt, for obvious reasons.
>
> * test.pass, test.miss and test.fail - lists of frameworks currently
> passing, missing or failing their own tests, respectively.
>
> * calc_left - small script that lists sub-ports that are not packaged yet.
>
> I won't insist on comittin' those. I use them for automating my work.
>
> So the proposal is comitting files in this archive, and continuing
> work in-tree. The plan is to port Plasma, possibly adding something to
> x11/kde-applications if needed, and then start filling gaps in
> x11/kde-applications. I'm afraid that I'll be able to finish Plasma
> before lock, though.
>
> So... any okay to commit this piece of ...code?

Here is an updated port of kdelibs4support, removing conflict with
kde-runtime-4.x. To be unpacked in devel/kf5 folder.

--
  WBR,
  Vadim Zhukov


kdelibs4support.tar.gz
Description: GNU Zip compressed data


CVS: cvs.openbsd.org: ports

2015-12-29 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/12/29 15:44:37

Modified files:
net/irssi  : Makefile distinfo 
net/irssi/patches: patch-docs_irssi_1 
   patch-src_fe-common_core_Makefile_in 
   patch-src_perl_Makefile_in 
net/irssi/pkg  : PLIST 
Removed files:
net/irssi/patches: patch-src_fe-common_core_fe-core-commands_c 
   patch-src_irc_proxy_listen_c 

Log message:
update to irssi-0.8.17, diff came from maintainer some time ago, but there
were problems with irssi-icb (will be fixed in following commit). I made some
small changes from the earlier diff: add PKGSPEC so that plugins pick up the
correct version of irssi, use a better license marker, and install the
irssi-config script that irssi-icb looks for.



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/12/29 15:45:48

Modified files:
net/irssi-otr  : Makefile 
net/irssi-silc : Makefile 
net/irssi-xmpp : Makefile 

Log message:
bump irssi plugins for the update; future irssi updates should no longer
need explicit bumps due to the new PKGSPEC



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2015/12/29 15:45:05

Modified files:
net/irssi-icb  : Makefile distinfo 
net/irssi-icb/patches: patch-src_core_icb-nicklist_c 
   patch-src_core_icb-nicklist_h 
   patch-src_fe-common_module-formats_c 
Added files:
net/irssi-icb/patches: patch-src_core_Makefile_in 
Removed files:
net/irssi-icb/patches: patch-README patch-configure_in 
   patch-src_core_Makefile_am 
   patch-src_core_icb-channels_c 
   patch-src_core_icb-commands_c 
   patch-src_core_icb-protocol_c 
   patch-src_core_icb-protocol_h 
   patch-src_core_icb-servers_c 
   patch-src_core_icb-servers_h 
   patch-src_fe-common_Makefile_am 
   patch-src_fe-common_fe-icb_c 
   patch-src_fe-common_module-formats_h 

Log message:
update to irssi-icb 0.15, plus pkgsrc patches



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 13:15:51

Modified files:
graphics/p5-Image-Size: Makefile distinfo 
graphics/p5-Image-Size/pkg: PLIST 

Log message:
update to p5-Image-Size-3.300



[UPDATE] OfflineIMAP v6.6.1

2015-12-29 Thread Remi Locherer
Hi,

OfflineIMAP v6.6.1 was released. It brings two bug fixes:
http://offlineimap.org/doc/Changelog.html#offlineimap-v661-2015-12-28

Remi


Index: Makefile
===
RCS file: /cvs/ports/mail/offlineimap/Makefile,v
retrieving revision 1.30
diff -u -p -r1.30 Makefile
--- Makefile22 Dec 2015 12:54:25 -  1.30
+++ Makefile29 Dec 2015 01:21:47 -
@@ -2,7 +2,7 @@
 
 COMMENT=   powerful IMAP/Maildir synchronization and reader support
 
-MODPY_EGG_VERSION = 6.6.0
+MODPY_EGG_VERSION = 6.6.1
 GH_ACCOUNT =   OfflineIMAP
 GH_PROJECT =   offlineimap
 GH_TAGNAME =   v${MODPY_EGG_VERSION}
Index: distinfo
===
RCS file: /cvs/ports/mail/offlineimap/distinfo,v
retrieving revision 1.19
diff -u -p -r1.19 distinfo
--- distinfo22 Dec 2015 12:54:25 -  1.19
+++ distinfo29 Dec 2015 01:23:16 -
@@ -1,2 +1,2 @@
-SHA256 (offlineimap-6.6.0.tar.gz) = 
xBJY5c5TGRW7iR1M4Qs6+IttdKbuabYoKVf4UWX/Y/Q=
-SIZE (offlineimap-6.6.0.tar.gz) = 674655
+SHA256 (offlineimap-6.6.1.tar.gz) = 
rz/Ue6CHGA3A6NK2TPNYzn9v5Jcy0TtvzOgoU9AAS7A=
+SIZE (offlineimap-6.6.1.tar.gz) = 674730



Vulnerable package in ports tree 30/12

2015-12-29 Thread Sevan / Venture37
Just the one tonight
productivity/tryton/tryton -
https://security-tracker.debian.org/tracker/CVE-2015-0861


Sevan / Venture37



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/12/29 23:37:02

Modified files:
www/owncloud   : Makefile 
www/owncloud/pkg: README 

Log message:
Add sample redis configuration.



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/12/29 23:44:34

Modified files:
www/owncloud   : Makefile 
www/owncloud/pkg: README 

Log message:
Tweaks.



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/30 00:54:42

Modified files:
www/lighttpd   : Makefile 
www/lighttpd/patches: patch-src_chunk_c 

Log message:
fix use after free / double free

from Brad



net/kea: 1.0.0

2015-12-29 Thread Patrik Lundin
Hello,

The 1.0.0 version of kea was just released, but unfortunately it failed
to build if I only bumped the version number/distinfo stuff.

The error that stopped "make build":
===
/usr/bin/libtool --tag=disable-static  --tag=CXX--mode=link c++  -Wall 
-Wextra -Wnon-virtual-dtor -Wwrite-strings -Woverloaded-virtual 
-Wno-sign-compare -pthread -fPIC -O2 -pipe  -no-undefined -version-info 2:0:0 
-lpthread -o libkea-asiolink.la -rpath /usr/local/lib 
libkea_asiolink_la-interval_timer.lo  libkea_asiolink_la-io_address.lo  
libkea_asiolink_la-io_endpoint.lo  libkea_asiolink_la-io_service.lo  
libkea_asiolink_la-io_socket.lo 
../../../src/lib/exceptions/libkea-exceptions.la   
libtool: link: c++ -shared -fPIC -DPIC -o .libs/libkea-asiolink.so.0.0 -pthread 
-Wall -Wextra -Wnon-virtual-dtor -Wwrite-strings -Woverloaded-virtual 
-Wno-sign-compare -fPIC -O2 -pipe .libs/libkea_asiolink_la-interval_timer.o 
.libs/libkea_asiolink_la-io_address.o .libs/libkea_asiolink_la-io_endpoint.o 
.libs/libkea_asiolink_la-io_service.o .libs/libkea_asiolink_la-io_socket.o 
-L.libs -lpthread -lkea-exceptions
`boost::system::system_category()::system_category_const' referenced in section 
`.text' of .libs/libkea_asiolink_la-io_address.o: defined in discarded section 
`.gnu.linkonce.b._ZZN5boost6system15system_categoryEvE21system_category_const' 
of .libs/libkea_asiolink_la-io_address.o
`boost::system::generic_category()::generic_category_const' referenced in 
section `.text' of .libs/libkea_asiolink_la-io_address.o: defined in discarded 
section 
`.gnu.linkonce.b._ZZN5boost6system16generic_categoryEvE22generic_category_const'
 of .libs/libkea_asiolink_la-io_address.o
`guard variable for boost::system::generic_category()::generic_category_const' 
referenced in section `.text' of .libs/libkea_asiolink_la-io_address.o: defined 
in discarded section 
`.gnu.linkonce.b._ZGVZN5boost6system16generic_categoryEvE22generic_category_const'
 of .libs/libkea_asiolink_la-io_address.o
`guard variable for boost::system::system_category()::system_category_const' 
referenced in section `.text' of .libs/libkea_asiolink_la-io_address.o: defined 
in discarded section 
`.gnu.linkonce.b._ZGVZN5boost6system15system_categoryEvE21system_category_const'
 of .libs/libkea_asiolink_la-io_address.o
`boost::system::generic_category()::generic_category_const' referenced in 
section `.text' of .libs/libkea_asiolink_la-io_endpoint.o: defined in discarded 
section 
`.gnu.linkonce.b._ZZN5boost6system16generic_categoryEvE22generic_category_const'
 of .libs/libkea_asiolink_la-io_endpoint.o
`boost::system::system_category()::system_category_const' referenced in section 
`.text' of .libs/libkea_asiolink_la-io_endpoint.o: defined in discarded section 
`.gnu.linkonce.b._ZZN5boost6system15system_categoryEvE21system_category_const' 
of .libs/libkea_asiolink_la-io_endpoint.o
`guard variable for boost::system::generic_category()::generic_category_const' 
referenced in section `.text' of .libs/libkea_asiolink_la-io_endpoint.o: 
defined in discarded section 
`.gnu.linkonce.b._ZGVZN5boost6system16generic_categoryEvE22generic_category_const'
 of .libs/libkea_asiolink_la-io_endpoint.o
`guard variable for boost::system::system_category()::system_category_const' 
referenced in section `.text' of .libs/libkea_asiolink_la-io_endpoint.o: 
defined in discarded section 
`.gnu.linkonce.b._ZGVZN5boost6system15system_categoryEvE21system_category_const'
 of .libs/libkea_asiolink_la-io_endpoint.o
`boost::system::generic_category()::generic_category_const' referenced in 
section `.text' of .libs/libkea_asiolink_la-io_service.o: defined in discarded 
section 
`.gnu.linkonce.b._ZZN5boost6system16generic_categoryEvE22generic_category_const'
 of .libs/libkea_asiolink_la-io_service.o
`boost::system::system_category()::system_category_const' referenced in section 
`.text' of .libs/libkea_asiolink_la-io_service.o: defined in discarded section 
`.gnu.linkonce.b._ZZN5boost6system15system_categoryEvE21system_category_const' 
of .libs/libkea_asiolink_la-io_service.o
`guard variable for boost::system::generic_category()::generic_category_const' 
referenced in section `.text' of .libs/libkea_asiolink_la-io_service.o: defined 
in discarded section 
`.gnu.linkonce.b._ZGVZN5boost6system16generic_categoryEvE22generic_category_const'
 of .libs/libkea_asiolink_la-io_service.o
`guard variable for boost::system::system_category()::system_category_const' 
referenced in section `.text' of .libs/libkea_asiolink_la-io_service.o: defined 
in discarded section 
`.gnu.linkonce.b._ZGVZN5boost6system15system_categoryEvE21system_category_const'
 of .libs/libkea_asiolink_la-io_service.o
`boost::system::system_category()::system_category_const' referenced in section 
`.text' of .libs/libkea_asiolink_la-io_socket.o: defined in discarded section 
`.gnu.linkonce.b._ZZN5boost6system15system_categoryEvE21system_category_const' 
of .libs/libkea_asiolink_la-io_socket.o
`boost::system::generic_category()::generic_category_const' 

CVS: cvs.openbsd.org: ports

2015-12-29 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2015/12/29 22:56:47

Modified files:
net/netatalk3  : Makefile distinfo 
net/netatalk3/patches: patch-etc_netatalk_Makefile_in 

Log message:
Update to netatalk-3.1.8.



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/30 00:58:10

Modified files:
www/lighttpd   : Tag: OPENBSD_5_8 Makefile 
Added files:
www/lighttpd/patches: Tag: OPENBSD_5_8 patch-src_chunk_c 

Log message:
fix use after free / double free

(committing from the correct tree this time)



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Giovanni Bechis
CVSROOT:/cvs
Module name:ports
Changes by: giova...@cvs.openbsd.org2015/12/29 01:37:46

Modified files:
www/phpmyadmin : Makefile distinfo 

Log message:
Security update to 4.4.15.2
fixes CVE-2015-8669
spotted by venture73 at gmail dot com, thanks



Re: Vulnerable packages in ports tree 29/12

2015-12-29 Thread Giovanni Bechis
On 12/29/15 05:05, Sevan / Venture37 wrote:
> graphics/giflib https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2015-7555
> graphics/tiff CVE-2015-7554 CVE-2015-8668
> www/phpmyadmin https://www.phpmyadmin.net/security/PMASA-2015-6/
> 
just committed phpmyadmin update, ok for 5.8 for the same diff ?
 Cheers
  Giovanni

Index: Makefile
===
RCS file: /var/cvs/ports/www/phpmyadmin/Makefile,v
retrieving revision 1.119
diff -u -p -r1.119 Makefile
--- Makefile	10 Nov 2015 19:06:28 -	1.119
+++ Makefile	29 Dec 2015 08:30:27 -
@@ -2,7 +2,7 @@
 
 COMMENT=	tool to handle the administration of MySQL over the web
 
-V=		4.4.15.1
+V=		4.4.15.2
 
 PKGNAME=	phpMyAdmin-$V
 DISTNAME=	phpMyAdmin-$V-all-languages
Index: distinfo
===
RCS file: /var/cvs/ports/www/phpmyadmin/distinfo,v
retrieving revision 1.100
diff -u -p -r1.100 distinfo
--- distinfo	10 Nov 2015 19:06:28 -	1.100
+++ distinfo	29 Dec 2015 08:30:52 -
@@ -1,2 +1,2 @@
-SHA256 (phpMyAdmin-4.4.15.1-all-languages.tar.gz) = 8VVRimrM4NJTtDDH+tmsW0mcPanh+L46PIDOVUnFvro=
-SIZE (phpMyAdmin-4.4.15.1-all-languages.tar.gz) = 9460085
+SHA256 (phpMyAdmin-4.4.15.2-all-languages.tar.gz) = EcBI0KYmoqoyUyvXfkkYTAwzj6f7Aim5XYQqTJoiZ7I=
+SIZE (phpMyAdmin-4.4.15.2-all-languages.tar.gz) = 9468938


CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 01:54:05

Modified files:
databases/py-whisper: Makefile distinfo 

Log message:
update to py-whisper-0.9.15



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 01:58:47

Modified files:
databases/py-carbon: Makefile distinfo 
databases/py-carbon/patches: patch-lib_carbon_conf_py 
 patch-setup_py 
databases/py-carbon/pkg: PLIST 

Log message:
update to py-carbon-0.9.15



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 01:24:12

Modified files:
audio/pithos   : Makefile distinfo 

Log message:
update to pithos-1.1.2



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 01:28:32

Modified files:
audio/ruby-taglib: Makefile distinfo 
audio/ruby-taglib/pkg: PLIST 

Log message:
update to ruby-taglib-0.7.1



wip update: net/nmap

2015-12-29 Thread Giovanni Bechis
Hi,
I do not use it anymore so I am dropping maintainership, anyway attached a wip 
port to update it to latest version
if someone wants to step over.
 Cheers
   Giovanni
Index: Makefile
===
RCS file: /var/cvs/ports/net/nmap/Makefile,v
retrieving revision 1.116
diff -u -p -r1.116 Makefile
--- Makefile	8 Oct 2015 21:19:22 -	1.116
+++ Makefile	29 Dec 2015 10:20:14 -
@@ -5,8 +5,7 @@ SHARED_ONLY=	Yes
 COMMENT-main=	scan ports and fingerprint stack of network hosts
 COMMENT-zenmap=	graphical frontend for nmap
 
-MODPY_EGG_VERSION=	6.47
-REVISION-main=		1
+MODPY_EGG_VERSION=	7.01
 DISTNAME=		nmap-${MODPY_EGG_VERSION}
 PKGNAME-main=		${DISTNAME}
 PKGNAME-zenmap=		nmap-zenmap-${MODPY_EGG_VERSION}
@@ -16,8 +15,6 @@ MASTER_SITES=	http://nmap.org/dist/
 EXTRACT_SUFX=	.tgz
 
 HOMEPAGE=	http://www.nmap.org/
-
-MAINTAINER=	Giovanni Bechis 
 
 # GPL (v2 only), with additional clarifications and exceptions, see COPYING
 PERMIT_PACKAGE_CDROM=	Yes
Index: distinfo
===
RCS file: /var/cvs/ports/net/nmap/distinfo,v
retrieving revision 1.30
diff -u -p -r1.30 distinfo
--- distinfo	25 Sep 2014 17:33:15 -	1.30
+++ distinfo	29 Dec 2015 09:47:15 -
@@ -1,2 +1,2 @@
-SHA256 (nmap-6.47.tgz) = Wl/CVDVmMJ0U5Ftcg8k91dEGiiwBPeEgA2+r/BOfVWE=
-SIZE (nmap-6.47.tgz) = 9796783
+SHA256 (nmap-7.01.tgz) = jK86y+k8D6CmhcPm+zpfgM5Jk2vX1AJpoJs+rW/YXtU=
+SIZE (nmap-7.01.tgz) = 11029121
Index: patches/patch-Makefile_in
===
RCS file: /var/cvs/ports/net/nmap/patches/patch-Makefile_in,v
retrieving revision 1.15
diff -u -p -r1.15 patch-Makefile_in
--- patches/patch-Makefile_in	16 May 2014 15:08:54 -	1.15
+++ patches/patch-Makefile_in	29 Dec 2015 09:49:37 -
@@ -1,7 +1,7 @@
 $OpenBSD: patch-Makefile_in,v 1.15 2014/05/16 15:08:54 sthen Exp $
 Makefile.in.orig	Fri Feb 21 23:11:41 2014
-+++ Makefile.in	Thu May 15 20:12:32 2014
-@@ -45,7 +45,7 @@ DEFS += -D_FORTIFY_SOURCE=2
+--- Makefile.in.orig	Tue Dec  8 21:54:07 2015
 Makefile.in	Tue Dec 29 10:47:48 2015
+@@ -46,7 +46,7 @@ DEFS += -D_FORTIFY_SOURCE=2
  # Should only be enabled during debugging and not in any real release.
  # DEFS += -DMTRACE=1
  CXXFLAGS = @CXXFLAGS@ $(DBGFLAGS) $(CCOPT)
@@ -10,7 +10,7 @@ $OpenBSD: patch-Makefile_in,v 1.15 2014/
  export CFLAGS = $(CXXFLAGS)
  # CFLAGS = $(DEFS) $(INCLS)
  STATIC =
-@@ -288,8 +288,8 @@ $(NPINGDIR)/nping.h: nmap.h
+@@ -319,8 +319,8 @@ $(NPINGDIR)/nping.h: nmap.h
  	mv -f $@.tmp $@
  
  # Update the version number used by Zenmap.
Index: patches/patch-libnetutil_netutil_cc
===
RCS file: /var/cvs/ports/net/nmap/patches/patch-libnetutil_netutil_cc,v
retrieving revision 1.6
diff -u -p -r1.6 patch-libnetutil_netutil_cc
--- patches/patch-libnetutil_netutil_cc	16 Jun 2014 10:22:15 -	1.6
+++ patches/patch-libnetutil_netutil_cc	29 Dec 2015 09:49:37 -
@@ -8,9 +8,9 @@ http://marc.info/?l=nmap-dev=140179174
 
 chunks dealing with iovec: ???
 
 libnetutil/netutil.cc.orig	Thu Nov  7 19:32:33 2013
-+++ libnetutil/netutil.cc	Sun Jun 15 20:36:36 2014
-@@ -916,7 +916,7 @@ void set_ttl(int sd, int ttl) {
+--- libnetutil/netutil.cc.orig	Wed Oct 28 04:21:15 2015
 libnetutil/netutil.cc	Tue Dec 29 10:47:48 2015
+@@ -915,7 +915,7 @@ void set_ttl(int sd, int ttl) {
  /* Other than WIN32, what these systems have in common is that they use BPF for
 packet capture. (Solaris 10 and earlier used DLPI and had valid selectable
 fds.) */
@@ -19,7 +19,7 @@ chunks dealing with iovec: ???
  /* Returns whether the system supports pcap_get_selectable_fd() properly */
  int pcap_selectable_fd_valid() {
return 0;
-@@ -3140,7 +3140,6 @@ static int route_dst_netlink(const struct sockaddr_sto
+@@ -3139,7 +3139,6 @@ static int route_dst_netlink(const struct sockaddr_sto
   const struct sockaddr_storage *spoofss) {
struct sockaddr_nl snl;
struct msghdr msg;
@@ -27,7 +27,7 @@ chunks dealing with iovec: ???
struct nlmsghdr *nlmsg;
struct rtmsg *rtmsg;
struct rtattr *rtattr;
-@@ -3192,22 +3191,14 @@ static int route_dst_netlink(const struct sockaddr_sto
+@@ -3191,22 +3190,14 @@ static int route_dst_netlink(const struct sockaddr_sto
  add_rtattr_addr(nlmsg, , , RTA_SRC, spoofss, intf_index);
}
  
@@ -50,7 +50,7 @@ chunks dealing with iovec: ???
len = recvmsg(fd, , 0);
if (len <= 0)
  netutil_fatal("%s: cannot recvmsg: %s", __func__, strerror(errno));
-@@ -3838,7 +3829,6 @@ static const unsigned char *add_exthdr_ancillary(struc
+@@ -3837,7 +3828,6 @@ static const unsigned char *add_exthdr_ancillary(struc
  static int send_ipv6_ip(const struct sockaddr_in6 *dst,
const unsigned char *packet, size_t packetlen) {
struct msghdr msg;
@@ -58,7 +58,7 @@ chunks dealing with iovec: ???
  
const unsigned char 

Re: NEW: math/py-statistics 1.0.3.5

2015-12-29 Thread Jérémie Courrèges-Anglas
Alexandr Shadchin  writes:

> On Mon, Dec 28, 2015 at 06:42:24PM +0100, Jérémie Courrèges-Anglas wrote:
>> Alexandr Shadchin  writes:
>> 
>> > Hi,
>> >
>> > This new ports is a requirement for new port devel/py-test-benchmark.
>> >
>> > ok to import?
>> >
>> > Description:
>> > Port of Python 3.4 statistics module to Python 2.
>> >
>> > This module provides functions for calculating mathematical statistics
>> > of numeric (Real-valued) data.
>> 
>> Looks good, but setup.py says this module requires docutils.  Not needed?
>> 
>> -- 
>> jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE
>
> Yes, this package is not needed.
>
> I guess the author used it for documentation, but documentation is not 
> included
> in tarball. 

Ack, ok jca@ to import.

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



Re: i3: fix usage of window size hints

2015-12-29 Thread Matthieu Herrb
On Mon, Dec 28, 2015 at 02:25:27PM +0100, Alexander Hall wrote:
> Instead of attacking x11-ssh-askpass, I think this is a better approach.
> 
> Thoughts?

Hi,

I've looked a bit at the i3 code now. I like this diff better than
patching ssh-askpass.

But this diff make it look like i3 is ignoring the wm size hints when
the obsolete values in the hints are 0. I would at least add the "obsolete"
word to the DLOG calls to mitigate that.

In fact i3 will use the geometry specified by the window for
the floating ones, whether the position hint flag is set or not
(except if the flag *and* the obsolete fields are set).

I would drop using the obsolete fields completely but the comment
about "Plasma windows" seems to indicate that KDE people decided to
use them anyways.

So ok matthieu@

> 
> /Alexander
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/x11/i3/Makefile,v
> retrieving revision 1.100
> diff -u -p -r1.100 Makefile
> --- Makefile  21 Dec 2015 09:48:10 -  1.100
> +++ Makefile  28 Dec 2015 13:21:14 -
> @@ -3,7 +3,7 @@
>  COMMENT =improved dynamic tiling window manager
>  
>  DISTNAME =   i3-4.11
> -REVISION =   1
> +REVISION =   2
>  CATEGORIES = x11
>  
>  EXTRACT_SUFX =   .tar.bz2
> Index: patches/patch-src_manage_c
> ===
> RCS file: /cvs/ports/x11/i3/patches/patch-src_manage_c,v
> retrieving revision 1.17
> diff -u -p -r1.17 patch-src_manage_c
> --- patches/patch-src_manage_c18 Dec 2015 15:53:09 -  1.17
> +++ patches/patch-src_manage_c28 Dec 2015 13:21:14 -
> @@ -5,7 +5,7 @@ Suppress no_focus for first window on a 
>  Fix multiple memory leaks with regular expressions.
>  
>  --- src/manage.c.origWed Sep 30 08:55:10 2015
> -+++ src/manage.c Fri Dec 18 13:58:58 2015
>  src/manage.c Mon Dec 28 14:05:47 2015
>  @@ -294,6 +294,7 @@ void manage_window(xcb_window_t window, xcb_get_window
>   if (match != NULL && match->insert_where != M_BELOW) {
>   DLOG("Removing match %p from container %p\n", match, nc);
> @@ -14,7 +14,27 @@ Fix multiple memory leaks with regular e
>   }
>   }
>   
> -@@ -524,13 +525,23 @@ void manage_window(xcb_window_t window, xcb_get_window
> +@@ -431,11 +432,16 @@ void manage_window(xcb_window_t window, xcb_get_window
> + 
> + /* Plasma windows set their geometry in WM_SIZE_HINTS. */
> + if ((wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_POSITION || 
> wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_POSITION) &&
> +-(wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_SIZE || 
> wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_SIZE)) {
> +-DLOG("We are setting geometry according to wm_size_hints x=%d y=%d 
> w=%d h=%d\n",
> +- wm_size_hints.x, wm_size_hints.y, wm_size_hints.width, 
> wm_size_hints.height);
> ++wm_size_hints.x != 0 && wm_size_hints.y != 0) {
> ++DLOG("We are setting geometry according to wm_size_hints x=%d 
> y=%d\n",
> ++ wm_size_hints.x, wm_size_hints.y);
> + geom->x = wm_size_hints.x;
> + geom->y = wm_size_hints.y;
> ++}
> ++if ((wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_US_SIZE || 
> wm_size_hints.flags & XCB_ICCCM_SIZE_HINT_P_SIZE) &&
> ++wm_size_hints.width != 0 && wm_size_hints.height != 0) {
> ++DLOG("We are setting geometry according to wm_size_hints w=%d 
> h=%d\n",
> ++ wm_size_hints.width, wm_size_hints.height);
> + geom->width = wm_size_hints.width;
> + geom->height = wm_size_hints.height;
> + }
> +@@ -524,13 +530,23 @@ void manage_window(xcb_window_t window, xcb_get_window
>   /* Send an event about window creation */
>   ipc_send_window_event("new", nc);
>   

-- 
Matthieu Herrb


signature.asc
Description: PGP signature


Re: fix icu4c build on arm

2015-12-29 Thread Jérémie Courrèges-Anglas
Jonathan Gray  writes:

> Trying to build icu4c on on armv7 reliably fails with
>
> gmake[1]: Entering directory '/usr/ports/pobj/icu4c-56.1/build-arm/data'
> Unpacking /usr/ports/pobj/icu4c-56.1/icu/source/data/in/icudt56l.dat and 
> generating out/tmp/icudata.lst (list of data files)
> LD_LIBRARY_PATH=../lib:../stubdata:../tools/ctestfw:$LD_LIBRARY_PATH  
> ../bin/icupkg -d ./out/build/icudt56l --list -x \* 
> /usr/ports/pobj/icu4c-56.1/icu/source/data/in/icudt56l.dat -o 
> out/tmp/icudata.lst
> Makefile:487: recipe for target 'out/tmp/icudata.lst' failed
> gmake[1]: *** [out/tmp/icudata.lst] Error 1
> gmake[1]: Leaving directory '/usr/ports/pobj/icu4c-56.1/build-arm/data'
> Makefile:143: recipe for target 'all-recursive' failed
> gmake: *** [all-recursive] Error 2
>
> It doesn't seem to be segfaulting, though it builds/installs with the
> following patch.

If it builds, ship it!  ok jca@

> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/icu4c/Makefile,v
> retrieving revision 1.51
> diff -u -p -r1.51 Makefile
> --- Makefile  26 Dec 2015 09:43:11 -  1.51
> +++ Makefile  29 Dec 2015 06:36:43 -
> @@ -51,6 +51,7 @@ MAKE_FLAGS= SO_TARGET_VERSION=${SO_VERS
>  # icupkg segfaults during the build
>  .if ${MACHINE_ARCH} == "arm"
>  CFLAGS +=-O1 -fno-stack-protector
> +CXXFLAGS +=  -O1 -fno-stack-protector
>  .endif
>  
>  .include 
>

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jonathan Gray
CVSROOT:/cvs
Module name:ports
Changes by: j...@cvs.openbsd.org2015/12/29 05:38:27

Modified files:
textproc/icu4c : Makefile 

Log message:
Set CXXFLAGS as well as CFLAGS for the arm workaround to fix the build
on arm.

ok jca@ aja@



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 05:54:38

Modified files:
devel/darcs: Makefile distinfo 
devel/darcs/pkg: PLIST 
Added files:
devel/darcs/patches: patch-darcs_cabal 
 patch-src_Darcs_Util_Encoding_IConv_hsc 

Log message:
Update to darcs-2.10.2 and unbreak.

Unfortunately, it doesn't build on i386.



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 05:54:11

Modified files:
archivers/lz4  : Makefile 
astro/ansiweather: Makefile 
databases/mdbtools: Makefile 
devel/lualdoc  : Makefile 
games/hypatia  : Makefile 
games/xlennart : Makefile 
geo/osm-gps-map: Makefile 
geo/osm2pgsql  : Makefile 
lang/fsharp: Makefile 
misc/nyancat   : Makefile 
net/icbd   : Makefile 
sysutils/consolekit: Makefile 
sysutils/tree  : Makefile 
textproc/wkhtmltopdf: Makefile 
www/logswan: Makefile 
www/vimb   : Makefile 

Log message:
use GH_PROJECT to construct DISTNAME



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Sebastian Benoit
CVSROOT:/cvs
Module name:ports
Changes by: be...@cvs.openbsd.org   2015/12/29 07:53:35

Modified files:
productivity/zim: Makefile distinfo 
productivity/zim/pkg: PLIST 

Log message:
update zim to version 0.65
ok ajacoutot@



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Giovanni Bechis
CVSROOT:/cvs
Module name:ports
Changes by: giova...@cvs.openbsd.org2015/12/29 03:47:13

Modified files:
mail/py-policyd-spf: Makefile distinfo 

Log message:
Update to 1.3.2 and fix license marker



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jonathan Gray
CVSROOT:/cvs
Module name:ports
Changes by: j...@cvs.openbsd.org2015/12/29 07:44:34

Modified files:
devel/cmake: Makefile 

Log message:
set CXXFLAGS in addition to CFLAGS for an arm specific workaround here as well



Re: [NEW] net/profanity and net/libstrophe

2015-12-29 Thread Rafael Sadowski
On Sun Dec 20, 2015 at 05:00:06PM +0100, Rafael Sadowski wrote:
> Hey @ports,
> 
> my second try to push my favorite XMPP console client (with dependency
> lib). The port based on Brian Callahan work in openbsd-wip. (Okay to
> take maintainer).  All tests passed and worked well over months for me.
> 
> I rewrite some patches more generic sent upstream with good feedback
> from libstrophe (advice from Antoine Jacoutot).
> 
> 
> Best regards,
> 
> Rafael
> 
> net/profanity:
> 
> Profanity is a console based XMPP client written in C using ncurses and
> libstrophe, inspired by irssi.
> 
> Features:
> 
> * Supports XMPP chat services, including Google Talk and Facebook.
> * Command driven user interface.
> * Customizable functionality and user interface.
> * OTR (Off The Record) message encryption.
> * Chat room support.
> * Roster management.
> * Flexible resource and priority settings.
> * Desktop notifications.
> * Unicode support.
> * Integrated DuckDuckGo searching.
> * Send tiny URLs.
> 
> net/libstrophe:
> 
> libstrophe is a minimal XMPP library written in C. It has almost no
> external dependencies, only an XML parsing library (expat or libxml are
> both supported). It is designed for both POSIX and Windows systems.


fix profanity attachment. Thanks Theo B.

Rafael



profanity.tar.gz
Description: application/tar-gz


Re: [new] devel/lazarus

2015-12-29 Thread Jérémie Courrèges-Anglas
Pascal Stumpf  writes:

> Lazarus is a Rapid Application Development Tool for Free Pascal.
> It comes with the LCL - Lazarus component library, which contains
> platform independent visual components like buttons, windows,
> checkbox, treeview and many, many more. The LCL is platform
> independent, so you can write an application once and then compile
> for various platforms without changing code.
>
> Looking for i386 tests/oks.

Builds and runs fine on i386, I haven't tested with projects at $WORK
yet.

Nitpicking:
- the COMMENT could mention that lazarus is an IDE, not just a set of
  classes.  Thoughts?
- '+' doesn't need to be escaped in "find ... -exec ... +"

ok jca@ nevertheless

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 05:45:55

Log message:
Import security/hs-digest.

This package provides efficient cryptographic hash implementations
for  strict and lazy bytestrings. For now, CRC32 and Adler32 are
supported; they are implemented as FFI bindings to efficient code
from zlib.

ok sthen@

Status:

Vendor Tag: kili
Release Tags:   kili_20151229

N ports/security/hs-digest/Makefile
N ports/security/hs-digest/distinfo
N ports/security/hs-digest/pkg/DESCR
N ports/security/hs-digest/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 05:48:01

Log message:
Import devel/hs-regex-compat-tdfa.

One module layer over regex-tdfa to replace Text.Regex.  regex-compat
can't use Unicode characters correctly because of using regex-posix.
This is not good for Unicode users.

ok sthen@

Status:

Vendor Tag: kili
Release Tags:   kili_20151229

N ports/devel/hs-regex-compat-tdfa/Makefile
N ports/devel/hs-regex-compat-tdfa/distinfo
N ports/devel/hs-regex-compat-tdfa/pkg/DESCR
N ports/devel/hs-regex-compat-tdfa/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 05:52:12

Modified files:
archivers  : Makefile 
devel  : Makefile 
security   : Makefile 

Log message:
Hook new hs- ports.



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 05:46:38

Log message:
Import devel/hs-data-ordlist.

This module implements bag and set operations on ordered lists. For
the purposes of this module, a "bag" (or "multiset") is a non-decreasing
list, whereas a "set" is a strictly ascending list. Bags are sorted
lists that may contain duplicates, whereas sets are sorted lists
that do not contain duplicates.

ok sthen@

Status:

Vendor Tag: kili
Release Tags:   kili_20151229

N ports/devel/hs-data-ordlist/Makefile
N ports/devel/hs-data-ordlist/distinfo
N ports/devel/hs-data-ordlist/pkg/DESCR
N ports/devel/hs-data-ordlist/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 05:49:32

Log message:
Import devel/hs-sandi.

Reasonably fast data encoding library that handles base16, base32,
base32-hex, base64, base64-uri, base85, quoted-printable, uu-encoding,
xx-encoding and y-encoding.

ok sthen@

Status:

Vendor Tag: kili
Release Tags:   kili_20151229

N ports/devel/hs-sandi/Makefile
N ports/devel/hs-sandi/distinfo
N ports/devel/hs-sandi/pkg/DESCR
N ports/devel/hs-sandi/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 05:47:15

Log message:
Import devel/hs-regex-applicative.

regex-applicative is aimed to be an efficient and easy to use parsing
combinator library for Haskell based on regular expressions.

ok sthen@

Status:

Vendor Tag: kili
Release Tags:   kili_20151229

N ports/devel/hs-regex-applicative/Makefile
N ports/devel/hs-regex-applicative/distinfo
N ports/devel/hs-regex-applicative/pkg/DESCR
N ports/devel/hs-regex-applicative/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 05:43:19

Log message:
Import archivers/hs-zip-archive.

The zip-archive library provides functions for creating, modifying,
and extracting files from zip archives.

ok sthen@

Status:

Vendor Tag: kili
Release Tags:   kili_20151229

N ports/archivers/hs-zip-archive/Makefile
N ports/archivers/hs-zip-archive/distinfo
N ports/archivers/hs-zip-archive/pkg/DESCR
N ports/archivers/hs-zip-archive/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2015/12/29 05:45:43

Modified files:
games/valyriatear: Makefile distinfo 

Log message:
use GH_PROJECT for DISTNAME and sync distinfo



CVS: cvs.openbsd.org: ports

2015-12-29 Thread Matthias Kilian
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2015/12/29 05:48:38

Log message:
Import devel/hs-regex-tdfa.

A new all Haskell tagged DFA regex engine, inspired by libtre.

ok sthen@

Status:

Vendor Tag: kili
Release Tags:   kili_20151229

N ports/devel/hs-regex-tdfa/Makefile
N ports/devel/hs-regex-tdfa/distinfo
N ports/devel/hs-regex-tdfa/pkg/DESCR
N ports/devel/hs-regex-tdfa/pkg/PLIST

No conflicts created by this import