Re: locale-related crashes [Re: misc/wordnet broken on amd64]

2017-08-07 Thread Jeremie Courreges-Anglas
On Thu, Aug 03 2017, Stuart Henderson  wrote:
> There have been a few things broken around locale handling in various
> ports, does anyone have a handle on what's going on?

This is not a locale-related problem, afaik, just a crash caused by
wordnet accessing an element past the end of the exc_fps array.  I don't
understand why patch-lib_morph_c currently resizes this array, so the
patch below fixes the problem but might not be correct.

Maybe wordnet should be removed?
http://wordnet.princeton.edu/wordnet/download/current-version/#nix
doesn't list newer source tarballs.


Index: Makefile
===
RCS file: /d/cvs/ports/misc/wordnet/Makefile,v
retrieving revision 1.13
diff -u -p -r1.13 Makefile
--- Makefile9 Apr 2016 11:42:09 -   1.13
+++ Makefile8 Aug 2017 05:33:26 -
@@ -5,7 +5,7 @@ COMMENT=browser for a large lexical da
 V= 3.0
 DISTNAME=  WordNet-$V
 PKGNAME=   wordnet-$V
-REVISION=  6
+REVISION=  7
 
 CATEGORIES=misc
 
Index: patches/patch-lib_morph_c
===
RCS file: /d/cvs/ports/misc/wordnet/patches/patch-lib_morph_c,v
retrieving revision 1.1
diff -u -p -r1.1 patch-lib_morph_c
--- patches/patch-lib_morph_c   1 Sep 2008 20:02:53 -   1.1
+++ patches/patch-lib_morph_c   8 Aug 2017 05:26:27 -
@@ -1,7 +1,8 @@
 $OpenBSD: patch-lib_morph_c,v 1.1 2008/09/01 20:02:53 sthen Exp $
 lib/morph.c.orig   Wed Jan  3 21:51:35 2007
-+++ lib/morph.cMon Sep  1 20:53:39 2008
-@@ -51,24 +51,24 @@ static struct {
+Index: lib/morph.c
+--- lib/morph.c.orig
 lib/morph.c
+@@ -51,21 +51,21 @@ static struct {
  char *str;
  int strlen;
  } prepositions[NUMPREPS] = {
@@ -37,11 +38,7 @@ $OpenBSD: patch-lib_morph_c,v 1.1 2008/0
 +{ "between", 7 }
  };
  
--static FILE *exc_fps[NUMPARTS + 1];
-+static FILE *exc_fps[NUMPARTS];
- 
- static int do_init();
- static int strend(char *, char *);
+ static FILE *exc_fps[NUMPARTS + 1];
 @@ -100,7 +100,7 @@ int re_morphinit(void)
  {
  int i;



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



Re: UPDATE: fonts/fira-fonts

2017-08-07 Thread Juan Francisco Cantero Hurtado
On Mon, Aug 07, 2017 at 11:13:48PM +0200, Rafael Sadowski wrote:
> Hi All,
> 
> After the holidays the fonts party goes on. Update Fira from 20140907 (3.111)
> to 4.202.
> 
> Release notes: https://github.com/mozilla/Fira/releases

The author has a newer version
https://carrois.com/typefaces/FiraSans/

> 
> OK? Comments?
> 
> Best regards,
> 
> Rafael Sadowski
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/fonts/fira-fonts/Makefile,v
> retrieving revision 1.6
> diff -u -p -u -p -r1.6 Makefile
> --- Makefile  9 May 2015 22:24:06 -   1.6
> +++ Makefile  7 Aug 2017 21:06:41 -
> @@ -2,32 +2,27 @@
>  
>  COMMENT =Firefox OS typeface
>  
> -# Version 3.111
> -# - Removed the technical reports. The license of the reports doesn't permit
> -#   the distribution.
> -# - Removed the medium style from the otf directory. Fontconfig often uses
> -#   the medium style by default instead of the regular style.

Did you test the font with GTK and QT?. I removed the medium file
because Fira looked too wide on some applications.

> -# - Removed the source directory.
> -DISTNAME =   fira-fonts-20140907
> -REVISION =   1
> +VERSION =4.202
> +PKGNAME =fira-fonts-${VERSION}
> +EPOCH =  0
>  
>  CATEGORIES = fonts x11
>  
> -# Alternative homepage http://www.carrois.com/fira-3-1/
> +GH_ACCOUNT = mozilla
> +GH_PROJECT = fira
> +GH_TAGNAME = ${VERSION}
> +
>  HOMEPAGE =   https://mozilla.github.io/Fira/

Change HOMEPAGE to https://carrois.com/typefaces/FiraSans/.

>  
>  # SIL OPEN FONT LICENSE Version 1.1
>  PERMIT_PACKAGE_CDROM =   Yes
>  
> -MASTER_SITES =   
> http://download.tuxfamily.org/jod/fonts/fira-fonts/ \
> - ftp://download.tuxfamily.org/jod/fonts/fira-fonts/
> -EXTRACT_SUFX =   .tar.lz
> -
>  NO_BUILD =   Yes
>  NO_TEST =Yes
>  
>  PKG_ARCH =   *
>  
> +WRKSRC = ${WRKDIR}/Fira-${VERSION}
>  DOC_DIR =${PREFIX}/share/doc/fira-fonts
>  FONTS_DIR =  ${PREFIX}/share/fonts/fira
>  WEBFONTS_DIR =   ${PREFIX}/share/fira-fonts
> Index: distinfo
> ===
> RCS file: /cvs/ports/fonts/fira-fonts/distinfo,v
> retrieving revision 1.4
> diff -u -p -u -p -r1.4 distinfo
> --- distinfo  8 Sep 2014 10:40:12 -   1.4
> +++ distinfo  7 Aug 2017 21:06:41 -
> @@ -1,2 +1,2 @@
> -SHA256 (fira-fonts-20140907.tar.lz) = 
> LduzSDxYsTt58dog+arBzGmy8plxfQQo2zoolutQ0EE=
> -SIZE (fira-fonts-20140907.tar.lz) = 7950469
> +SHA256 (fira-4.202.tar.gz) = 2GJpZXOH8UTXe6EgERJPMPQj9wZy4VdtwW+Ri7Ft3+Q=
> +SIZE (fira-4.202.tar.gz) = 94581261
> Index: pkg/PLIST
> ===
> RCS file: /cvs/ports/fonts/fira-fonts/pkg/PLIST,v
> retrieving revision 1.5
> diff -u -p -u -p -r1.5 PLIST
> --- pkg/PLIST 31 Mar 2015 09:45:10 -  1.5
> +++ pkg/PLIST 7 Aug 2017 21:06:41 -
> @@ -112,6 +112,7 @@ share/fira-fonts/webfonts/FiraSans-Ultra
>  share/fonts/
>  @fontdir share/fonts/fira/
>  share/fonts/fira/FiraMono-Bold.otf
> +share/fonts/fira/FiraMono-Medium.otf
>  share/fonts/fira/FiraMono-Regular.otf
>  share/fonts/fira/FiraSans-Bold.otf
>  share/fonts/fira/FiraSans-BoldItalic.otf
> @@ -132,6 +133,8 @@ share/fonts/fira/FiraSans-HeavyItalic.ot
>  share/fonts/fira/FiraSans-Italic.otf
>  share/fonts/fira/FiraSans-Light.otf
>  share/fonts/fira/FiraSans-LightItalic.otf
> +share/fonts/fira/FiraSans-Medium.otf
> +share/fonts/fira/FiraSans-MediumItalic.otf
>  share/fonts/fira/FiraSans-Regular.otf
>  share/fonts/fira/FiraSans-SemiBold.otf
>  share/fonts/fira/FiraSans-SemiBoldItalic.otf
> @@ -143,3 +146,35 @@ share/fonts/fira/FiraSans-Ultra.otf
>  share/fonts/fira/FiraSans-UltraItalic.otf
>  share/fonts/fira/FiraSans-UltraLight.otf
>  share/fonts/fira/FiraSans-UltraLightItalic.otf
> +share/fonts/fira/FiraSansCondensed-Bold.otf
> +share/fonts/fira/FiraSansCondensed-BoldItalic.otf
> +share/fonts/fira/FiraSansCondensed-Book.otf
> +share/fonts/fira/FiraSansCondensed-BookItalic.otf
> +share/fonts/fira/FiraSansCondensed-Eight.otf
> +share/fonts/fira/FiraSansCondensed-EightItalic.otf
> +share/fonts/fira/FiraSansCondensed-ExtraBold.otf
> +share/fonts/fira/FiraSansCondensed-ExtraLight.otf
> +share/fonts/fira/FiraSansCondensed-ExtraLightItalic.otf
> +share/fonts/fira/FiraSansCondensed-ExtraboldItalic.otf
> +share/fonts/fira/FiraSansCondensed-Four.otf
> +share/fonts/fira/FiraSansCondensed-FourItalic.otf
> +share/fonts/fira/FiraSansCondensed-Hair.otf
> +share/fonts/fira/FiraSansCondensed-HairItalic.otf
> +share/fonts/fira/FiraSansCondensed-Heavy.otf
> +share/fonts/fira/FiraSansCondensed-HeavyItalic.otf
> +share/fonts/fira/FiraSansCondensed-Italic.otf
> +share/fonts/fira/FiraSansCondensed-Light.otf
> +share/fonts/fira/FiraSansCondensed-LightItalic.otf
> 

UPDATE: games/gottcode, all games && NEW: games/gottcode/gottet

2017-08-07 Thread Brian Callahan

Hi ports --

Attached is an update to all the games/gottcode games. In addition to 
updating them, resort the WANTLIB (put ${COMPILER_LIBCXX} in the master 
WANTLIB since every game needs it) and switch to my @openbsd.org email 
address.


Also attached is a new port for games/gottcode/gottet. Gottet is a 
Tetris clone. I know we probably don't need yet another Tetris clone, 
but it was the only game missing from the collection, and I think it 
would be nice to offer the whole thing.


To be committed in order of the existing games and Makefile.inc, then 
import gottet, then update the master gottcode Makefile.


OK?

~Brian

Index: Makefile
===
RCS file: /cvs/ports/games/gottcode/Makefile,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 Makefile
--- Makefile	30 Dec 2013 11:25:22 -	1.3
+++ Makefile	8 Aug 2017 03:21:24 -
@@ -3,6 +3,7 @@
 SUBDIR =
 SUBDIR += connectagram
 SUBDIR += cutemaze
+SUBDIR += gottet
 SUBDIR += hexalate
 SUBDIR += peg-e
 SUBDIR += simsu
Index: Makefile.inc
===
RCS file: /cvs/ports/games/gottcode/Makefile.inc,v
retrieving revision 1.14
diff -u -p -u -p -r1.14 Makefile.inc
--- Makefile.inc	18 Jul 2017 04:48:46 -	1.14
+++ Makefile.inc	8 Aug 2017 03:21:24 -
@@ -7,7 +7,7 @@ EXTRACT_SUFX ?=	.tar.bz2
 HOMEPAGE ?=	http://gottcode.org/${GAME}/
 MASTER_SITES ?=	${HOMEPAGE}
 
-MAINTAINER ?=	Brian Callahan 
+MAINTAINER ?=	Brian Callahan 
 
 # GPLv3+
 PERMIT_PACKAGE_CDROM =	Yes
@@ -16,7 +16,7 @@ WRKDIST ?=	${WRKDIR}/${DISTNAME:S/-src//
 MODULES +=	devel/qmake x11/qt5
 MODGCC4_ARCHS =	i386 amd64 powerpc sparc64
 WANTLIB +=	GL Qt5Core Qt5Gui Qt5Widgets
-WANTLIB +=	c m pthread
+WANTLIB +=	c m pthread ${COMPILER_LIBCXX}
 RUN_DEPENDS +=	devel/desktop-file-utils x11/gtk+3,-guic
 
 MAKE_FLAGS +=	CXX=${CXX} \
Index: connectagram/Makefile
===
RCS file: /cvs/ports/games/gottcode/connectagram/Makefile,v
retrieving revision 1.8
diff -u -p -u -p -r1.8 Makefile
--- connectagram/Makefile	27 Jul 2017 09:55:44 -	1.8
+++ connectagram/Makefile	8 Aug 2017 03:21:24 -
@@ -2,8 +2,7 @@
 
 GAME =		connectagram
 COMMENT =	word unscrambling game
-DISTNAME =	${GAME}-1.2.4-src
-WANTLIB +=	Qt5Network ${COMPILER_LIBCXX}
-REVISION =	0
+DISTNAME =	${GAME}-1.2.5-src
+WANTLIB +=	Qt5Network
 
 .include 
Index: connectagram/distinfo
===
RCS file: /cvs/ports/games/gottcode/connectagram/distinfo,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 distinfo
--- connectagram/distinfo	11 Jun 2017 20:32:19 -	1.3
+++ connectagram/distinfo	8 Aug 2017 03:21:24 -
@@ -1,2 +1,2 @@
-SHA256 (connectagram-1.2.4-src.tar.bz2) = lEZ9Qfic0/JK+u2f4PkFpNqkXYAwiOJai7pV6kjyUQI=
-SIZE (connectagram-1.2.4-src.tar.bz2) = 1626433
+SHA256 (connectagram-1.2.5-src.tar.bz2) = pCFLVVFc6WKJRePw1GlykBzrnbfrMehMY848AkB4J0s=
+SIZE (connectagram-1.2.5-src.tar.bz2) = 1625834
Index: connectagram/pkg/PLIST
===
RCS file: /cvs/ports/games/gottcode/connectagram/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 PLIST
--- connectagram/pkg/PLIST	11 Jun 2017 20:32:19 -	1.3
+++ connectagram/pkg/PLIST	8 Aug 2017 03:21:24 -
@@ -1,7 +1,5 @@
 @comment $OpenBSD: PLIST,v 1.3 2017/06/11 20:32:19 landry Exp $
 @bin bin/connectagram
-share/appdata/
-share/appdata/connectagram.appdata.xml
 share/applications/connectagram.desktop
 share/connectagram/
 share/connectagram/data/
@@ -44,6 +42,8 @@ share/icons/hicolor/scalable/apps/connec
 share/man/
 share/man/man6/
 @man share/man/man6/connectagram.6
+share/metainfo/
+share/metainfo/connectagram.appdata.xml
 share/pixmaps/
 share/pixmaps/connectagram.xpm
 @exec %D/bin/gtk-update-icon-cache -q -t %D/share/icons/hicolor
Index: cutemaze/Makefile
===
RCS file: /cvs/ports/games/gottcode/cutemaze/Makefile,v
retrieving revision 1.5
diff -u -p -u -p -r1.5 Makefile
--- cutemaze/Makefile	27 Jul 2017 09:55:44 -	1.5
+++ cutemaze/Makefile	8 Aug 2017 03:21:24 -
@@ -2,9 +2,8 @@
 
 GAME =		cutemaze
 COMMENT =	simple maze game
-DISTNAME =	${GAME}-1.2.0-src
-WANTLIB +=	Qt5Svg ${COMPILER_LIBCXX}
-REVISION =	0
+DISTNAME =	${GAME}-1.2.1-src
+WANTLIB +=	Qt5Svg
 
 LIB_DEPENDS +=	x11/qt5/qtsvg
 
Index: cutemaze/distinfo
===
RCS file: /cvs/ports/games/gottcode/cutemaze/distinfo,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 distinfo
--- cutemaze/distinfo	11 Jun 2017 20:32:19 -	1.3
+++ cutemaze/distinfo	8 Aug 2017 03:21:24 -
@@ -1,2 +1,2 @@
-SHA256 (cutemaze-1.2.0-src.tar.bz2) = 0joNEaI39T1rjakjS1tHW7yo1nq73RJM+nwMtNpwNJs=
-SIZE (cutemaze-1.2.0-src.tar.bz2) = 800890
+SHA256 (cutemaze-1.2.1-src.tar.bz2) = 

CVS: cvs.openbsd.org: ports

2017-08-07 Thread Anthony J . Bentley
CVSROOT:/cvs
Module name:ports
Changes by: bent...@cvs.openbsd.org 2017/08/07 20:55:35

Modified files:
textproc/apertium-lex-tools: Makefile 
Added files:
textproc/apertium-lex-tools/patches: 
 patch-TaggerOutputProcessor_h 

Log message:
Cope with new apertium.

Pointed out by jeremy@



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Anthony J . Bentley
CVSROOT:/cvs
Module name:ports
Changes by: bent...@cvs.openbsd.org 2017/08/07 20:54:52

ports/textproc/apertium-lex-tools/patches

Update of /cvs/ports/textproc/apertium-lex-tools/patches
In directory cvs.openbsd.org:/tmp/cvs-serv87505/patches

Log Message:
Directory /cvs/ports/textproc/apertium-lex-tools/patches added to the repository



Re: grip 3.5.2

2017-08-07 Thread Steve Shockley

On 8/7/2017 5:36 AM, Landry Breuil wrote:

so audio/grip got a new upstream maintainer after 12 years of abandon
(http://www.solbu.net/english/tag/grip.html) - lots of patches merged
from various linux distros. I removed the patches disabling the help
menu as it seems to work just fine with yelp, im just not sure which
RUN_DEPENDS should be set now .. antoine ?

Steve, are you still using it ?


Sorry, haven't used it for quite some time.  If you need testers I'd be 
glad to reinstall it though.




UPDATE: fonts/fira-fonts

2017-08-07 Thread Rafael Sadowski
Hi All,

After the holidays the fonts party goes on. Update Fira from 20140907 (3.111)
to 4.202.

Release notes: https://github.com/mozilla/Fira/releases

OK? Comments?

Best regards,

Rafael Sadowski

Index: Makefile
===
RCS file: /cvs/ports/fonts/fira-fonts/Makefile,v
retrieving revision 1.6
diff -u -p -u -p -r1.6 Makefile
--- Makefile9 May 2015 22:24:06 -   1.6
+++ Makefile7 Aug 2017 21:06:41 -
@@ -2,32 +2,27 @@
 
 COMMENT =  Firefox OS typeface
 
-# Version 3.111
-# - Removed the technical reports. The license of the reports doesn't permit
-#   the distribution.
-# - Removed the medium style from the otf directory. Fontconfig often uses
-#   the medium style by default instead of the regular style.
-# - Removed the source directory.
-DISTNAME = fira-fonts-20140907
-REVISION = 1
+VERSION =  4.202
+PKGNAME =  fira-fonts-${VERSION}
+EPOCH =0
 
 CATEGORIES =   fonts x11
 
-# Alternative homepage http://www.carrois.com/fira-3-1/
+GH_ACCOUNT =   mozilla
+GH_PROJECT =   fira
+GH_TAGNAME =   ${VERSION}
+
 HOMEPAGE = https://mozilla.github.io/Fira/
 
 # SIL OPEN FONT LICENSE Version 1.1
 PERMIT_PACKAGE_CDROM = Yes
 
-MASTER_SITES = http://download.tuxfamily.org/jod/fonts/fira-fonts/ \
-   ftp://download.tuxfamily.org/jod/fonts/fira-fonts/
-EXTRACT_SUFX = .tar.lz
-
 NO_BUILD = Yes
 NO_TEST =  Yes
 
 PKG_ARCH = *
 
+WRKSRC =   ${WRKDIR}/Fira-${VERSION}
 DOC_DIR =  ${PREFIX}/share/doc/fira-fonts
 FONTS_DIR =${PREFIX}/share/fonts/fira
 WEBFONTS_DIR = ${PREFIX}/share/fira-fonts
Index: distinfo
===
RCS file: /cvs/ports/fonts/fira-fonts/distinfo,v
retrieving revision 1.4
diff -u -p -u -p -r1.4 distinfo
--- distinfo8 Sep 2014 10:40:12 -   1.4
+++ distinfo7 Aug 2017 21:06:41 -
@@ -1,2 +1,2 @@
-SHA256 (fira-fonts-20140907.tar.lz) = 
LduzSDxYsTt58dog+arBzGmy8plxfQQo2zoolutQ0EE=
-SIZE (fira-fonts-20140907.tar.lz) = 7950469
+SHA256 (fira-4.202.tar.gz) = 2GJpZXOH8UTXe6EgERJPMPQj9wZy4VdtwW+Ri7Ft3+Q=
+SIZE (fira-4.202.tar.gz) = 94581261
Index: pkg/PLIST
===
RCS file: /cvs/ports/fonts/fira-fonts/pkg/PLIST,v
retrieving revision 1.5
diff -u -p -u -p -r1.5 PLIST
--- pkg/PLIST   31 Mar 2015 09:45:10 -  1.5
+++ pkg/PLIST   7 Aug 2017 21:06:41 -
@@ -112,6 +112,7 @@ share/fira-fonts/webfonts/FiraSans-Ultra
 share/fonts/
 @fontdir share/fonts/fira/
 share/fonts/fira/FiraMono-Bold.otf
+share/fonts/fira/FiraMono-Medium.otf
 share/fonts/fira/FiraMono-Regular.otf
 share/fonts/fira/FiraSans-Bold.otf
 share/fonts/fira/FiraSans-BoldItalic.otf
@@ -132,6 +133,8 @@ share/fonts/fira/FiraSans-HeavyItalic.ot
 share/fonts/fira/FiraSans-Italic.otf
 share/fonts/fira/FiraSans-Light.otf
 share/fonts/fira/FiraSans-LightItalic.otf
+share/fonts/fira/FiraSans-Medium.otf
+share/fonts/fira/FiraSans-MediumItalic.otf
 share/fonts/fira/FiraSans-Regular.otf
 share/fonts/fira/FiraSans-SemiBold.otf
 share/fonts/fira/FiraSans-SemiBoldItalic.otf
@@ -143,3 +146,35 @@ share/fonts/fira/FiraSans-Ultra.otf
 share/fonts/fira/FiraSans-UltraItalic.otf
 share/fonts/fira/FiraSans-UltraLight.otf
 share/fonts/fira/FiraSans-UltraLightItalic.otf
+share/fonts/fira/FiraSansCondensed-Bold.otf
+share/fonts/fira/FiraSansCondensed-BoldItalic.otf
+share/fonts/fira/FiraSansCondensed-Book.otf
+share/fonts/fira/FiraSansCondensed-BookItalic.otf
+share/fonts/fira/FiraSansCondensed-Eight.otf
+share/fonts/fira/FiraSansCondensed-EightItalic.otf
+share/fonts/fira/FiraSansCondensed-ExtraBold.otf
+share/fonts/fira/FiraSansCondensed-ExtraLight.otf
+share/fonts/fira/FiraSansCondensed-ExtraLightItalic.otf
+share/fonts/fira/FiraSansCondensed-ExtraboldItalic.otf
+share/fonts/fira/FiraSansCondensed-Four.otf
+share/fonts/fira/FiraSansCondensed-FourItalic.otf
+share/fonts/fira/FiraSansCondensed-Hair.otf
+share/fonts/fira/FiraSansCondensed-HairItalic.otf
+share/fonts/fira/FiraSansCondensed-Heavy.otf
+share/fonts/fira/FiraSansCondensed-HeavyItalic.otf
+share/fonts/fira/FiraSansCondensed-Italic.otf
+share/fonts/fira/FiraSansCondensed-Light.otf
+share/fonts/fira/FiraSansCondensed-LightItalic.otf
+share/fonts/fira/FiraSansCondensed-Medium.otf
+share/fonts/fira/FiraSansCondensed-MediumItalic.otf
+share/fonts/fira/FiraSansCondensed-Regular.otf
+share/fonts/fira/FiraSansCondensed-SemiBold.otf
+share/fonts/fira/FiraSansCondensed-SemiboldItalic.otf
+share/fonts/fira/FiraSansCondensed-Thin.otf
+share/fonts/fira/FiraSansCondensed-ThinItalic.otf
+share/fonts/fira/FiraSansCondensed-Two.otf
+share/fonts/fira/FiraSansCondensed-TwoItalic.otf
+share/fonts/fira/FiraSansCondensed-Ultra.otf
+share/fonts/fira/FiraSansCondensed-UltraItalic.otf

CVS: cvs.openbsd.org: ports

2017-08-07 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2017/08/07 13:46:31

Modified files:
x11/xfce4/xfce4-clipman: Makefile distinfo 

Log message:
update to xfce4-clipman 1.4.2, port to gtkapplication



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2017/08/07 13:41:29

Modified files:
fonts/freefont-ttf: Makefile distinfo 

Log message:
update freefont-ttf to 20120503

license tweak and ok bentley@



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2017/08/07 13:38:42

Modified files:
fonts/ja-kanjistrokeorders-ttf: Makefile distinfo 
fonts/ja-kanjistrokeorders-ttf/pkg: PLIST 

Log message:
update ja-kanjistrokeorders-ttf to 4.001

MASTER_SITES tweak and ok  bentley@



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2017/08/07 13:35:36

Modified files:
x11/xfce4/xfce4-xkb: Makefile distinfo 
x11/xfce4/xfce4-xkb/pkg: PLIST 

Log message:
Update to xfce4-xkb 0.8.0.

Many changes, among porting to Gtk+3/xfconf, see
https://mail.xfce.org/pipermail/xfce/2017-June/035618.html - you might
have to redo your plugin config as no migration path was planned.



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2017/08/07 13:35:20

Modified files:
fonts/symbola-ttf: Makefile distinfo 

Log message:
update symbola-ttf to 9.17

- rename distfile with version number
- tabs++;

ok bentley@



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2017/08/07 12:48:22

Modified files:
security/nss   : Makefile distinfo 
security/nss/patches: patch-nss_Makefile 
  patch-nss_lib_freebl_blapi_h 

Log message:
Update to nss 3.32, will be required by upcoming gecko 56 releases.

See 
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.32_release_notes



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2017/08/07 12:47:47

Modified files:
devel/nspr : Makefile distinfo 
devel/nspr/patches: patch-nspr_configure_in 
patch-nspr_pr_src_misc_prnetdb_c 

Log message:
Update to NSPR 4.16, will be required by upcoming gecko 56 releases



Re: UPDATE: net/konversation

2017-08-07 Thread Rafael Sadowski
On Fri Jul 21, 2017 at 10:59:47PM +0200, Rafael Sadowski wrote:
> Hi All,
> 
> Konversation switch from KDE4 to KDE5  and  now depends on Qt 5.5+ and
> KDE Frameworks 5.25+. Bye bye KDE4 stuff
> 
> Looks like a whole brand new port. I ran a simple connection test to
> #openbsd@freenode on amd64.
> 
> Comments? Ok?

*ping* with new diff pre COMPILER_LIBCXX


Index: Makefile
===
RCS file: /cvs/ports/net/konversation/Makefile,v
retrieving revision 1.7
diff -u -p -u -p -r1.7 Makefile
--- Makefile11 Jul 2017 20:42:34 -  1.7
+++ Makefile7 Aug 2017 17:47:27 -
@@ -1,38 +1,63 @@
 # $OpenBSD: Makefile,v 1.7 2017/07/11 20:42:34 rsadowski Exp $
 
 CATEGORIES =   net
-COMMENT =  IRC client for KDE 4
-V =1.5
+COMMENT =  IRC client for KDE
+V =1.7.2
 DISTNAME = konversation-$V
 MAINTAINER =   KDE porting team 
-HOMEPAGE = http://konversation.kde.org/
-REVISION = 3
-
-WANTLIB =  c m pthread
-WANTLIB += lib/qt4/Qt3Support lib/qt4/QtDBus lib/qt4/QtGui
-WANTLIB += lib/qt4/QtNetwork lib/qt4/QtSql lib/qt4/QtSvg lib/qt4/QtXml
-WANTLIB += ${KDE4LIB}/kabc ${KDE4LIB}/kde3support ${KDE4LIB}/kdeui
-WANTLIB += ${KDE4LIB}/kemoticons ${KDE4LIB}/kidletime
-WANTLIB += ${KDE4LIB}/kio ${KDE4LIB}/knotifyconfig ${KDE4LIB}/kparts
-WANTLIB += ${KDE4LIB}/kresources ${KDE4LIB}/nepomuk
-WANTLIB += ${KDE4LIB}/nepomukutils ${KDE4LIB}/solid
-WANTLIB += qca soprano
+HOMEPAGE = https://konversation.kde.org/
 
 MASTER_SITES = ${MASTER_SITE_KDE:=stable/konversation/$V/src/}
 
-# GPLv2+
-PERMIT_PACKAGE_CDROM =  Yes
-
-MODULES =  x11/kde4 multimedia/phonon devel/gettext lang/python
-MODKDE4_USE =  pim
+WANTLIB += ${COMPILER_LIBCXX} KF5Archive KF5Auth KF5Bookmarks
+WANTLIB += KF5Codecs KF5Completion KF5ConfigCore KF5ConfigGui
+WANTLIB += KF5ConfigWidgets KF5CoreAddons KF5Crash KF5DBusAddons
+WANTLIB += KF5Emoticons KF5GlobalAccel KF5I18n KF5IconThemes KF5IdleTime
+WANTLIB += KF5ItemViews KF5JobWidgets KF5KIOCore KF5KIOFileWidgets
+WANTLIB += KF5KIOWidgets KF5Notifications KF5NotifyConfig KF5Parts
+WANTLIB += KF5Service KF5Solid KF5SonnetUi KF5TextWidgets KF5Wallet
+WANTLIB += KF5WidgetsAddons KF5WindowSystem KF5XmlGui Qt5Core
+WANTLIB += Qt5DBus Qt5Gui Qt5Network Qt5Widgets Qt5Xml c m qca-qt5
 
-RUN_DEPENDS =  devel/desktop-file-utils \
-   x11/gtk+3,-guic
+# GPLv2+
+PERMIT_PACKAGE_CDROM = Yes
 
-LIB_DEPENDS =  security/qca
+MODULES =  devel/kf5 \
+   multimedia/phonon \
+   lang/python
+
+BUILD_DEPENDS +=   devel/kf5/kdoctools \
+   devel/kf5/kitemmodels \
+   devel/gettext-tools
+
+RUN_DEPENDS += devel/desktop-file-utils \
+   devel/gettext \
+   x11/gtk+3,-guic
+
+LIB_DEPENDS += security/qca-qt5 \
+   devel/kf5/karchive  \
+   devel/kf5/kbookmarks \
+   devel/kf5/kconfigwidgets \
+   devel/kf5/kcoreaddons \
+   devel/kf5/kcrash \
+   devel/kf5/kemoticons \
+   devel/kf5/ki18n  \
+   devel/kf5/kidletime \
+   devel/kf5/knotifyconfig \
+   devel/kf5/kio \
+   devel/kf5/kparts \
+   devel/kf5/solid \
+   devel/kf5/kwallet \
+   devel/kf5/kwidgetsaddons \
+   devel/kf5/kglobalaccel \
+   devel/kf5/kdbusaddons \
+   devel/kf5/knotifications  \
+   devel/kf5/kwindowsystem \
+   devel/kf5/kiconthemes \
+   devel/kf5/kitemviews
 
 post-install:
${MODPY_BIN} ${MODPY_LIBDIR}/compileall.py \
-   
${PREFIX}/share/apps/konversation/scripting_support/python/konversation/
+   
${PREFIX}/share/konversation/scripting_support/python/konversation
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/net/konversation/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 distinfo
--- distinfo13 Jul 2014 09:24:16 -  1.1.1.1
+++ distinfo7 Aug 2017 17:47:27 -
@@ -1,2 +1,2 @@
-SHA256 (konversation-1.5.tar.xz) = OC3mIX7B4nwpLsM0c6MbiThj3GmceWafXvNkFScZVG8=
-SIZE (konversation-1.5.tar.xz) = 3169284
+SHA256 (konversation-1.7.2.tar.xz) = 
X/luhM7k4e78QEox13gGfqUN3dimyEiRH6xwvVKBJhg=
+SIZE (konversation-1.7.2.tar.xz) = 3736968
Index: patches/patch-src_dcc_transfer_cpp
===
RCS file: patches/patch-src_dcc_transfer_cpp
diff -N patches/patch-src_dcc_transfer_cpp
--- patches/patch-src_dcc_transfer_cpp  13 Jul 2014 09:24:16 -  1.1.1.1
+++ /dev/null   1 Jan 1970 

CVS: cvs.openbsd.org: ports

2017-08-07 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2017/08/07 08:15:23

Modified files:
games/allegro  : Makefile 
Added files:
games/allegro/patches: patch-include_allegro_platform_al386gcc_h 

Log message:
fix clang/i386 build (embedded asm problems, clue from kettenis@)
switch to correct autoconf version while there



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2017/08/07 06:34:24

Modified files:
net/mcast-proxy: Makefile 
net/mcast-proxy/pkg: PLIST 

Log message:
Move mcast-proxy to sbin/, to match the location used in the rc script.
Alternative to a diff from Paul de Weerd (maintainer) to change the script,
ok with him.



Re: FIX: net/mcast-proxy rc script

2017-08-07 Thread Paul de Weerd
On Mon, Aug 07, 2017 at 10:52:13AM +0100, Stuart Henderson wrote:
| On 2017/08/07 11:45, Paul de Weerd wrote:
| > It was pointed out to me off-list (thanks Mattieu) that I never tested
| > the rc script that comes with net/mcast-proxy with the actual port
| > itself.  Problem is that I used the rc script from my mail to tech@
| > from 3 June[1], which was for an mcast-proxy in base (with the binary
| > in /usr/sbin/).  However, the port installs into /usr/local/bin/.  
| > 
| > Two ways to fix this: install the binary in ${TRUEPREFIX}/sbin/ or fix
| > the rc script to use the binary from ${TRUEPREFIX}/bin/.  This diff
| > uses the latter approach.  Should the binary live in sbin/?  At least
| > hier(7) suggests it, but that diff is a bit more involved.
| 
| /sbin feels better to me, the diff is still pretty simple (this is
| similar to how it would work in base; see src/usr.sbin/Makefile.inc):

Agreed, that is better (and indeed quite simple).  OK me :)  Thanks
Stuart!

Paul

-- 
>[<++>-]<+++.>+++[<-->-]<.>+++[<+
+++>-]<.>++[<>-]<+.--.[-]
 http://www.weirdnet.nl/ 



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Anthony J . Bentley
CVSROOT:/cvs
Module name:ports
Changes by: bent...@cvs.openbsd.org 2017/08/07 05:02:50

Modified files:
textproc/apertium-dicts/cat: Makefile distinfo 
textproc/apertium-dicts/cat/pkg: PLIST 
Added files:
textproc/apertium-dicts/cat/patches: patch-Makefile_in 

Log message:
Update to apertium-cat-2.2.0.



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Anthony J . Bentley
CVSROOT:/cvs
Module name:ports
Changes by: bent...@cvs.openbsd.org 2017/08/07 05:01:59

ports/textproc/apertium-dicts/cat/patches

Update of /cvs/ports/textproc/apertium-dicts/cat/patches
In directory cvs.openbsd.org:/tmp/cvs-serv32771/patches

Log Message:
Directory /cvs/ports/textproc/apertium-dicts/cat/patches added to the repository



Re: FIX: net/mcast-proxy rc script

2017-08-07 Thread Stuart Henderson
On 2017/08/07 11:45, Paul de Weerd wrote:
> It was pointed out to me off-list (thanks Mattieu) that I never tested
> the rc script that comes with net/mcast-proxy with the actual port
> itself.  Problem is that I used the rc script from my mail to tech@
> from 3 June[1], which was for an mcast-proxy in base (with the binary
> in /usr/sbin/).  However, the port installs into /usr/local/bin/.  
> 
> Two ways to fix this: install the binary in ${TRUEPREFIX}/sbin/ or fix
> the rc script to use the binary from ${TRUEPREFIX}/bin/.  This diff
> uses the latter approach.  Should the binary live in sbin/?  At least
> hier(7) suggests it, but that diff is a bit more involved.

/sbin feels better to me, the diff is still pretty simple (this is
similar to how it would work in base; see src/usr.sbin/Makefile.inc):

Index: Makefile
===
RCS file: /cvs/ports/net/mcast-proxy/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- Makefile31 Jul 2017 09:38:56 -  1.3
+++ Makefile7 Aug 2017 09:50:06 -
@@ -4,7 +4,7 @@ COMMENT =   multicast proxy daemon
 
 DISTNAME = mcast-proxy-1.0
 CATEGORIES =   net
-REVISION = 1
+REVISION = 2
 
 MASTER_SITES = http://www.weirdnet.nl/openbsd/code/mcast-proxy/
 
@@ -18,6 +18,6 @@ WANTLIB = c event
 
 NO_TEST =  Yes
 
-FAKE_FLAGS =   BINDIR="${PREFIX}/bin" MANDIR="${PREFIX}/man/man"
+FAKE_FLAGS =   BINDIR="${PREFIX}/sbin" MANDIR="${PREFIX}/man/man"
 
 .include 
Index: pkg/PLIST
===
RCS file: /cvs/ports/net/mcast-proxy/pkg/PLIST,v
retrieving revision 1.2
diff -u -p -r1.2 PLIST
--- pkg/PLIST   31 Jul 2017 08:03:40 -  1.2
+++ pkg/PLIST   7 Aug 2017 09:50:06 -
@@ -1,7 +1,7 @@
 @comment $OpenBSD: PLIST,v 1.2 2017/07/31 08:03:40 ajacoutot Exp $
 @newgroup _mcastproxy:792
 @newuser _mcastproxy:792:792:daemon:Multicast Proxy:/var/empty:/sbin/nologin
-@bin bin/mcast-proxy
 @man man/man5/mcast-proxy.conf.5
 @man man/man8/mcast-proxy.8
+@bin sbin/mcast-proxy
 @rcscript ${RCDIR}/mcastproxy



FIX: net/mcast-proxy rc script

2017-08-07 Thread Paul de Weerd
It was pointed out to me off-list (thanks Mattieu) that I never tested
the rc script that comes with net/mcast-proxy with the actual port
itself.  Problem is that I used the rc script from my mail to tech@
from 3 June[1], which was for an mcast-proxy in base (with the binary
in /usr/sbin/).  However, the port installs into /usr/local/bin/.  

Two ways to fix this: install the binary in ${TRUEPREFIX}/sbin/ or fix
the rc script to use the binary from ${TRUEPREFIX}/bin/.  This diff
uses the latter approach.  Should the binary live in sbin/?  At least
hier(7) suggests it, but that diff is a bit more involved.

Comments?  OKs?

Thanks,

Paul 'WEiRD' de Weerd

PS: I'm also working on changing this port to the proper upstream, but
that's not immediately affecting the usability of the package, so I'll
leave that for a later diff.

[1]: http://marc.info/?l=openbsd-tech=149650042205168=2

Index: net/mcast-proxy/Makefile
===
RCS file: /cvs/ports/net/mcast-proxy/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- net/mcast-proxy/Makefile31 Jul 2017 09:38:56 -  1.3
+++ net/mcast-proxy/Makefile7 Aug 2017 09:27:22 -
@@ -4,7 +4,7 @@ COMMENT =   multicast proxy daemon
 
 DISTNAME = mcast-proxy-1.0
 CATEGORIES =   net
-REVISION = 1
+REVISION = 2
 
 MASTER_SITES = http://www.weirdnet.nl/openbsd/code/mcast-proxy/
 
Index: net/mcast-proxy/pkg/mcastproxy.rc
===
RCS file: /cvs/ports/net/mcast-proxy/pkg/mcastproxy.rc,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 mcastproxy.rc
--- net/mcast-proxy/pkg/mcastproxy.rc   30 Jul 2017 21:12:36 -  1.1.1.1
+++ net/mcast-proxy/pkg/mcastproxy.rc   7 Aug 2017 09:27:28 -
@@ -2,7 +2,7 @@
 #
 # $OpenBSD: mcastproxy.rc,v 1.1.1.1 2017/07/30 21:12:36 jca Exp $
 
-daemon="${TRUEPREFIX}/sbin/mcast-proxy"
+daemon="${TRUEPREFIX}/bin/mcast-proxy"
 
 . /etc/rc.d/rc.subr
 

-- 
>[<++>-]<+++.>+++[<-->-]<.>+++[<+
+++>-]<.>++[<>-]<+.--.[-]
 http://www.weirdnet.nl/ 



grip 3.5.2

2017-08-07 Thread Landry Breuil
Hi,

so audio/grip got a new upstream maintainer after 12 years of abandon
(http://www.solbu.net/english/tag/grip.html) - lots of patches merged
from various linux distros. I removed the patches disabling the help
menu as it seems to work just fine with yelp, im just not sure which
RUN_DEPENDS should be set now .. antoine ?

Steve, are you still using it ?

Landry
? patch-src_Makefile_in
Index: Makefile
===
RCS file: /cvs/ports/audio/grip/Makefile,v
retrieving revision 1.58
diff -u -r1.58 Makefile
--- Makefile26 Jul 2017 22:45:15 -  1.58
+++ Makefile7 Aug 2017 09:23:08 -
@@ -2,9 +2,8 @@
 
 COMMENT=   front-end to external cd audio rippers and mp3 encoders
 
-DISTNAME=  grip-3.3.1
+DISTNAME=  grip-3.5.2
 CATEGORIES=audio
-REVISION=  6
 
 HOMEPAGE=  http://sourceforge.net/projects/grip/
 
@@ -21,6 +20,11 @@
 WANTLIB += gnome-2 gnomecanvas-2 gnomeui-2 gnomevfs-2 gobject-2.0
 WANTLIB += gthread-2.0 gtk-x11-2.0 id3 intl m nghttp2 pango-1.0
 WANTLIB += pangocairo-1.0 pangoft2-1.0 popt pthread ssl ${COMPILER_LIBCXX} vte 
z
+WANTLIB += ORBitCosNaming-2 canberra dbus-1 dbus-glib-1 expat
+WANTLIB += ffi gailutil gcrypt gnome-keyring gpg-error graphite2
+WANTLIB += harfbuzz iconv ltdl lzma ncurses ogg pcre pixman-1
+WANTLIB += png pthread-stubs util vorbis vorbisfile xcb xcb-render
+WANTLIB += xcb-shm xml2
 
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=grip/}
 
@@ -34,12 +38,9 @@
 RUN_DEPENDS=   audio/vorbis-tools \
devel/desktop-file-utils
 
+BUILD_DEPENDS =devel/gettext-tools
 CONFIGURE_STYLE=   gnu
 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
-
-# see patch-src_grip_c
-post-install:
-   rm -rf ${PREFIX}/share/gnome
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/audio/grip/distinfo,v
retrieving revision 1.7
diff -u -r1.7 distinfo
--- distinfo17 Jan 2013 13:30:32 -  1.7
+++ distinfo7 Aug 2017 09:23:08 -
@@ -1,2 +1,2 @@
-SHA256 (grip-3.3.1.tar.gz) = 1GOUoQYu0Gb5xjOwEP0QWeY9nteRu7eoW8ZWfPD9Zv0=
-SIZE (grip-3.3.1.tar.gz) = 812562
+SHA256 (grip-3.5.2.tar.gz) = qmeTHvOoDvVzUdSHviIQsvcDCha0H/LzjSLMx21/ibc=
+SIZE (grip-3.5.2.tar.gz) = 952153
Index: patches/patch-configure
===
RCS file: /cvs/ports/audio/grip/patches/patch-configure,v
retrieving revision 1.6
diff -u -r1.6 patch-configure
--- patches/patch-configure 17 Jan 2013 13:30:32 -  1.6
+++ patches/patch-configure 7 Aug 2017 09:23:08 -
@@ -1,39 +1,13 @@
 $OpenBSD: patch-configure,v 1.6 2013/01/17 13:30:32 ajacoutot Exp $
 configure.orig Sat Jun 25 20:40:07 2005
-+++ configure  Thu Jan 17 13:44:53 2013
-@@ -4313,7 +4313,7 @@ done
- 
+Index: configure
+--- configure.orig
 configure
+@@ -4968,7 +4968,7 @@ fi
  
+ done
  
 -for ac_header in linux/soundcard.h machine/soundcard.h sys/soundcard.h 
sys/audioio.h sys/audio.io.h sun/audioio.h
 +for ac_header in soundcard.h linux/soundcard.h machine/soundcard.h 
sys/soundcard.h sys/audioio.h sys/audio.io.h sun/audioio.h
- do
- as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
- if eval "test \"\${$as_ac_Header+set}\" = set"; then
-@@ -9454,7 +9454,7 @@ echo "$as_me: error: curl libs are missing" >&2;}
- fi
- 
- 
--GETTEXT_PACKAGE=grip-2.2
-+GETTEXT_PACKAGE=grip
- 
- 
- cat >>confdefs.h <<_ACEOF
-@@ -11149,7 +11149,7 @@ fi
- rm -f conftest.err conftest.$ac_objext \
-   conftest$ac_exeext conftest.$ac_ext
- if test "$ac_cv_search_ID3Tag_Link" = no; then
--  for ac_lib in "id3 -lz -lstdc++"; do
-+  for ac_lib in "id3 -lm -lz -lstdc++"; do
- LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
- cat >conftest.$ac_ext <<_ACEOF
- /* confdefs.h.  */
-@@ -11275,7 +11275,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
-   ac_status=$?
-   echo "$as_me:$LINENO: \$? = $ac_status" >&5
-   (exit $ac_status); }; }; then
--  . conftest.id3
-+  . $srcdir/conftest.id3
-echo "${ID3LIB_MAJOR}.${ID3LIB_MINOR}.${ID3LIB_PATCH}"
- else
-   echo "$as_me: program exited with status $ac_status" >&5
+ do :
+   as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
+ ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" 
"$ac_includes_default"
Index: patches/patch-src_Makefile_in
===
RCS file: patches/patch-src_Makefile_in
diff -N patches/patch-src_Makefile_in
--- patches/patch-src_Makefile_in   17 Jan 2013 13:30:32 -  1.4
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,12 +0,0 @@
-$OpenBSD: patch-src_Makefile_in,v 1.4 2013/01/17 13:30:32 ajacoutot Exp $
 src/Makefile.in.orig   Sat Jan 29 19:34:17 2005
-+++ src/Makefile.inThu Jan 17 14:17:27 2013
-@@ -203,7 +203,7 @@ LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS
-   

CVS: cvs.openbsd.org: ports

2017-08-07 Thread Anthony J . Bentley
CVSROOT:/cvs
Module name:ports
Changes by: bent...@cvs.openbsd.org 2017/08/07 01:29:21

Modified files:
textproc/apertium-dicts/spa: Makefile distinfo 
textproc/apertium-dicts/spa/pkg: PLIST 
textproc/apertium-dicts/spa-arg: Makefile 

Log message:
Update to apertium-spa-1.0.0.



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Anthony J . Bentley
CVSROOT:/cvs
Module name:ports
Changes by: bent...@cvs.openbsd.org 2017/08/07 01:15:20

Modified files:
textproc/apertium: Makefile distinfo 
textproc/apertium/pkg: PLIST 
Removed files:
textproc/apertium/patches: patch-configure 

Log message:
Update to apertium-3.4.2.



CVS: cvs.openbsd.org: ports

2017-08-07 Thread Anthony J . Bentley
CVSROOT:/cvs
Module name:ports
Changes by: bent...@cvs.openbsd.org 2017/08/07 01:14:56

Modified files:
textproc/lttoolbox: Makefile distinfo 
textproc/lttoolbox/pkg: PLIST 

Log message:
Update to lttoolbox-3.3.3.