From owner-svn-ports-all@freebsd.org Thu Mar 8 18:55:51 2018 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 57B92F4C1F4; Thu, 8 Mar 2018 18:55:51 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 00F756AAE4; Thu, 8 Mar 2018 18:55:51 +0000 (UTC) (envelope-from yuri@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 EBE2714CC7; Thu, 8 Mar 2018 18:55:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w28Ito1v007208; Thu, 8 Mar 2018 18:55:50 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w28Itoo9007206; Thu, 8 Mar 2018 18:55:50 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803081855.w28Itoo9007206@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 8 Mar 2018 18:55:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463912 - in head/devel/libisofs: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel/libisofs: . files X-SVN-Commit-Revision: 463912 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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, 08 Mar 2018 18:55:51 -0000 Author: yuri Date: Thu Mar 8 18:55:50 2018 New Revision: 463912 URL: https://svnweb.freebsd.org/changeset/ports/463912 Log: devel/libisofs: Add the patch to fix xorriso -hfsplus option bug References: http://forums.ghostbsd.org/viewtopic.php?f=98&t=711 PR: 226318 Submitted by: ericturgeon.bsd@gmail.com Approved by: tcberner (mentor, implicit) Added: head/devel/libisofs/files/ head/devel/libisofs/files/patch-libisofs_hfsplus__classes.c (contents, props changed) Modified: head/devel/libisofs/Makefile Modified: head/devel/libisofs/Makefile ============================================================================== --- head/devel/libisofs/Makefile Thu Mar 8 18:43:41 2018 (r463911) +++ head/devel/libisofs/Makefile Thu Mar 8 18:55:50 2018 (r463912) @@ -3,6 +3,7 @@ PORTNAME= libisofs PORTVERSION= 1.4.8 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://files.libburnia-project.org/releases/ Added: head/devel/libisofs/files/patch-libisofs_hfsplus__classes.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libisofs/files/patch-libisofs_hfsplus__classes.c Thu Mar 8 18:55:50 2018 (r463912) @@ -0,0 +1,16 @@ +patch from https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226318 +It will be included in the next release. + +--- libisofs/hfsplus_classes.c.orig 2018-03-08 18:48:59 UTC ++++ libisofs/hfsplus_classes.c +@@ -422,6 +422,10 @@ static uint16_t class_page_data[] = { + 0x21, 0x230, + 0x22, 0x230, + 0x23, 0x230, ++ 0x00, ++ ++ /* End of list */ ++ 0x00 + }; + + uint16_t *hfsplus_class_pages[256];