From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Jan 26 05:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1BCD9872 for ; Sun, 26 Jan 2014 05:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ED8B9179A for ; Sun, 26 Jan 2014 05:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0Q500WP053006 for ; Sun, 26 Jan 2014 05:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0Q500b6053005; Sun, 26 Jan 2014 05:00:00 GMT (envelope-from gnats) Resent-Date: Sun, 26 Jan 2014 05:00:00 GMT Resent-Message-Id: <201401260500.s0Q500b6053005@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Nikolai Lifanov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FF4367A for ; Sun, 26 Jan 2014 04:53:12 +0000 (UTC) Received: from mail.lifanov.com (mail.lifanov.com [206.125.175.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E0C861775 for ; Sun, 26 Jan 2014 04:53:11 +0000 (UTC) Received: by mail.lifanov.com (Postfix, from userid 1001) id 1D9881A826B; Sat, 25 Jan 2014 23:53:11 -0500 (EST) Message-Id: <20140126045311.1D9881A826B@mail.lifanov.com> Date: Sat, 25 Jan 2014 23:53:11 -0500 (EST) From: Nikolai Lifanov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/186118: [patch] emulators/linux_base-c6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Nikolai Lifanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 05:00:01 -0000 >Number: 186118 >Category: ports >Synopsis: [patch] emulators/linux_base-c6 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jan 26 05:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Nikolai Lifanov >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD mail.lifanov.com 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Please add libuuid.so.1 to the CentOS 6 base package. Fedora 10 base had it, and this fixes at least www/linux-f10-flashplugin11. It's also less astonishing to people replacing the Fedora 10 base. This patch also fixes the comment to reflect the package version. >How-To-Repeat: 1) install emulators/linux_base-c6 2) install www/nspluginwrapper 3) install www/linux-f10-flashplugin11 4) run "nspluginwrapper -v -a -i" >Fix: --- patch.txt begins here --- Index: emulators/linux_base-c6/Makefile =================================================================== --- emulators/linux_base-c6/Makefile (revision 341154) +++ emulators/linux_base-c6/Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= c6 PORTVERSION= 6.4 +PORTREVISION= 1 CATEGORIES= emulators linux MASTER_SITES= http://vault.centos.org/${PORTVERSION}/os/i386/Packages/ PKGNAMEPREFIX= linux_base- @@ -11,7 +12,7 @@ EXTRACT_ONLY= ${BIN_DISTFILES} MAINTAINER= emulation@FreeBSD.org -COMMENT= Base set of packages needed in Linux mode for i386/amd64 (Linux CentOS 6.2) +COMMENT= Base set of packages needed in Linux mode for i386/amd64 (Linux CentOS 6.4) BIN_DISTFILES= basesystem-10.0-4.el6.noarch.rpm \ bash-4.1.2-14.el6.${LINUX_RPM_ARCH}.rpm \ @@ -44,6 +45,7 @@ libselinux-2.0.94-5.3.el6.${LINUX_RPM_ARCH}.rpm \ libsepol-2.0.41-4.el6.${LINUX_RPM_ARCH}.rpm \ libstdc++-4.4.7-3.el6.${LINUX_RPM_ARCH}.rpm \ + libuuid-2.17.2-12.9.el6.${LINUX_RPM_ARCH}.rpm \ ncurses-5.7-3.20090208.el6.${LINUX_RPM_ARCH}.rpm \ ncurses-libs-5.7-3.20090208.el6.${LINUX_RPM_ARCH}.rpm \ pcre-7.8-6.el6.${LINUX_RPM_ARCH}.rpm \ Index: emulators/linux_base-c6/distinfo.i686 =================================================================== --- emulators/linux_base-c6/distinfo.i686 (revision 341154) +++ emulators/linux_base-c6/distinfo.i686 (working copy) @@ -60,6 +60,8 @@ SIZE (rpm/i686/centos/6.4/libsepol-2.0.41-4.el6.i686.rpm) = 128032 SHA256 (rpm/i686/centos/6.4/libstdc++-4.4.7-3.el6.i686.rpm) = 3d492a18977be5e97e33d91ee4537d32addc546e97df88a4f80563b0685833e9 SIZE (rpm/i686/centos/6.4/libstdc++-4.4.7-3.el6.i686.rpm) = 306876 +SHA256 (rpm/i686/centos/6.4/libuuid-2.17.2-12.9.el6.i686.rpm) = f708977a942e86158e6ca6d325bb2c14cfab4deaef694fd8b66ad414c9fcbf09 +SIZE (rpm/i686/centos/6.4/libuuid-2.17.2-12.9.el6.i686.rpm) = 68684 SHA256 (rpm/i686/centos/6.4/ncurses-5.7-3.20090208.el6.i686.rpm) = 755e6f14019e1484417bb6b3220d1384f80f897ff67a0125c1799d9620469260 SIZE (rpm/i686/centos/6.4/ncurses-5.7-3.20090208.el6.i686.rpm) = 274756 SHA256 (rpm/i686/centos/6.4/ncurses-libs-5.7-3.20090208.el6.i686.rpm) = 8e8c71cf6e1b45a592bf5705714e34c167b6e2b9e9b4cf4b6c8e41f6ebd5a392 Index: emulators/linux_base-c6/pkg-plist =================================================================== --- emulators/linux_base-c6/pkg-plist (revision 341154) +++ emulators/linux_base-c6/pkg-plist (working copy) @@ -201,6 +201,8 @@ lib/libtinfo.so.5.7 lib/libutil-2.12.so lib/libutil.so.1 +lib/libuuid.so.1 +lib/libuuid.so.1.3.0 lib/libz.so.1 lib/libz.so.1.2.3 lib/rtkaio/i686/nosegneg/librt.so.1 --- patch.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: