From owner-svn-ports-all@freebsd.org Thu Jun 20 08:19:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 829C115AF0F6; Thu, 20 Jun 2019 08:19:05 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 16939704A8; Thu, 20 Jun 2019 08:19:05 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E26409404; Thu, 20 Jun 2019 08:19:04 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K8J4Be022280; Thu, 20 Jun 2019 08:19:04 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K8J46O022278; Thu, 20 Jun 2019 08:19:04 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201906200819.x5K8J46O022278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Thu, 20 Jun 2019 08:19:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504621 - in head/x11/tilda: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in head/x11/tilda: . files X-SVN-Commit-Revision: 504621 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 16939704A8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 08:19:05 -0000 Author: rodrigo Date: Thu Jun 20 08:19:04 2019 New Revision: 504621 URL: https://svnweb.freebsd.org/changeset/ports/504621 Log: use dirent.h instead of deprecated sys/dir.h tilda currently includes sys/dir.h, but this header is scheduled for removal. Its successor is dirent.h. Update this port accordingly. Poudriere build run with Freebsd 11 and 12 PR: 238695 Submitted by: rene Modified: head/x11/tilda/Makefile head/x11/tilda/files/patch-tilda.c Modified: head/x11/tilda/Makefile ============================================================================== --- head/x11/tilda/Makefile Thu Jun 20 07:56:40 2019 (r504620) +++ head/x11/tilda/Makefile Thu Jun 20 08:19:04 2019 (r504621) @@ -3,7 +3,7 @@ PORTNAME= tilda PORTVERSION= 1.4.1 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MAINTAINER= rodrigo@FreeBSD.org Modified: head/x11/tilda/files/patch-tilda.c ============================================================================== --- head/x11/tilda/files/patch-tilda.c Thu Jun 20 07:56:40 2019 (r504620) +++ head/x11/tilda/files/patch-tilda.c Thu Jun 20 08:19:04 2019 (r504621) @@ -1,5 +1,5 @@ ---- src/tilda.c.orig 2017-09-08 22:19:35.318278000 +0300 -+++ src/tilda.c 2017-09-08 22:21:22.752550000 +0300 +--- src/tilda.c.orig 2018-02-08 19:55:42 UTC ++++ src/tilda.c @@ -12,6 +12,7 @@ * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . @@ -8,7 +8,16 @@ #define _POSIX_SOURCE /* feature test macro for signal functions */ #define _XOPEN_SOURCE /* feature test macro for popen */ -@@ -230,7 +231,7 @@ +@@ -52,7 +53,7 @@ + #include + #include + #include +-#include ++#include + #include + #include + #include +@@ -230,7 +231,7 @@ nomatch: static GSList *getPids() { GSList *pids = NULL; FILE *ps_output;