From owner-svn-ports-head@freebsd.org Tue Oct 31 10:30:05 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96F96E54878; Tue, 31 Oct 2017 10:30:05 +0000 (UTC) (envelope-from danfe@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 mx1.freebsd.org (Postfix) with ESMTPS id 647306D7A3; Tue, 31 Oct 2017 10:30:05 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9VAU4AQ006280; Tue, 31 Oct 2017 10:30:04 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9VAU4qT006277; Tue, 31 Oct 2017 10:30:04 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201710311030.v9VAU4qT006277@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Tue, 31 Oct 2017 10:30:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453225 - in head/sysutils/unetbootin: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/sysutils/unetbootin: . files X-SVN-Commit-Revision: 453225 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Oct 2017 10:30:05 -0000 Author: danfe Date: Tue Oct 31 10:30:04 2017 New Revision: 453225 URL: https://svnweb.freebsd.org/changeset/ports/453225 Log: - Update `sysutils/unetbootin' to version 657, which had added support for Ubuntu 17.10 (Artful Aardvark) [*] - Once again, reword the comment about using getvfsbyname(3) - TIMESTAMP (unetbootin-source-657.tar.gz) = 1508836950 Found out via: repology.org [*] Modified: head/sysutils/unetbootin/Makefile head/sysutils/unetbootin/distinfo head/sysutils/unetbootin/files/patch-unetbootin.cpp Modified: head/sysutils/unetbootin/Makefile ============================================================================== --- head/sysutils/unetbootin/Makefile Tue Oct 31 10:30:00 2017 (r453224) +++ head/sysutils/unetbootin/Makefile Tue Oct 31 10:30:04 2017 (r453225) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= unetbootin -PORTVERSION= 655 -PORTREVISION= 1 +PORTVERSION= 657 CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME}/UNetbootin/${PORTVERSION} DISTNAME= ${PORTNAME}-source-${PORTVERSION} Modified: head/sysutils/unetbootin/distinfo ============================================================================== --- head/sysutils/unetbootin/distinfo Tue Oct 31 10:30:00 2017 (r453224) +++ head/sysutils/unetbootin/distinfo Tue Oct 31 10:30:04 2017 (r453225) @@ -1,3 +1,3 @@ -TIMESTAMP = 1500449397 -SHA256 (unetbootin-source-655.tar.gz) = 700125b0ea45805a22f729986c59377b1ff0c0a66ea6f01b29cd3cf60bfbaa79 -SIZE (unetbootin-source-655.tar.gz) = 749246 +TIMESTAMP = 1508836950 +SHA256 (unetbootin-source-657.tar.gz) = eacf0d8e7d712a34ae41f01c9a4c03cf01dd9a36284cd67475670c0ab5787690 +SIZE (unetbootin-source-657.tar.gz) = 749244 Modified: head/sysutils/unetbootin/files/patch-unetbootin.cpp ============================================================================== --- head/sysutils/unetbootin/files/patch-unetbootin.cpp Tue Oct 31 10:30:00 2017 (r453224) +++ head/sysutils/unetbootin/files/patch-unetbootin.cpp Tue Oct 31 10:30:04 2017 (r453225) @@ -24,10 +24,10 @@ + struct statfs *fslist; + + /* -+ * Find out VFS number assigned by kernel for MSDOSFS. -+ * This helps to ensure that it is configured with the -+ * kernel. As a nice side effect, this also allows to -+ * compare a number instead of "msdosfs" string later. ++ * Make sure that MSDOSFS is configured with the kernel. ++ * As a nice side effect, this would allow to compare a ++ * number (assigned by VFS) instead of "msdosfs" string ++ * when iterating over mounted filesystems. + */ + if (getvfsbyname("msdosfs", &fsconf) == -1) + goto out;