From owner-svn-ports-all@freebsd.org Sun Mar 26 01:04:14 2017 Return-Path: Delivered-To: svn-ports-all@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 D10D1D12DD4; Sun, 26 Mar 2017 01:04:14 +0000 (UTC) (envelope-from jbeich@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 A901415EE; Sun, 26 Mar 2017 01:04:14 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2Q14DIk084739; Sun, 26 Mar 2017 01:04:13 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2Q14D8p084733; Sun, 26 Mar 2017 01:04:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201703260104.v2Q14D8p084733@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 26 Mar 2017 01:04:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r436927 - in branches/2017Q1/audio/oss: . files X-SVN-Group: ports-branches 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.23 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: Sun, 26 Mar 2017 01:04:14 -0000 Author: jbeich Date: Sun Mar 26 01:04:13 2017 New Revision: 436927 URL: https://svnweb.freebsd.org/changeset/ports/436927 Log: MFH: r436874 audio/oss: update to 4.2.b2017 (maintenance release) - Add a note about origin to avoid users from Linux blaming FreeBSD for 4Front's bugs and vice versa - Disable SSE on amd64 to avoid kernel panic[1] Changes: http://opensound.com/forum/viewtopic.php?f=19&t=5841 PR: 212263 Submitted by: Jakub Adler [1] Approved by: ports-secteam (junovitch) Added: branches/2017Q1/audio/oss/files/patch-setup_srcconf__freebsd.inc - copied unchanged from r436874, head/audio/oss/files/patch-setup_srcconf__freebsd.inc Modified: branches/2017Q1/audio/oss/Makefile branches/2017Q1/audio/oss/distinfo branches/2017Q1/audio/oss/pkg-descr branches/2017Q1/audio/oss/pkg-plist Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/audio/oss/Makefile ============================================================================== --- branches/2017Q1/audio/oss/Makefile Sun Mar 26 00:53:55 2017 (r436926) +++ branches/2017Q1/audio/oss/Makefile Sun Mar 26 01:04:13 2017 (r436927) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= oss -DISTVERSION= 4.2-build2011 +DISTVERSION= 4.2-build2017 CATEGORIES= audio MASTER_SITES= http://www.opensound.com/developer/sources/stable/bsd/ DISTNAME= ${PORTNAME}-v${DISTVERSION}-src-bsd MAINTAINER= ports@FreeBSD.org -COMMENT= Open Sound System +COMMENT= Open Sound System from 4Front Technologies LICENSE= BSD2CLAUSE Modified: branches/2017Q1/audio/oss/distinfo ============================================================================== --- branches/2017Q1/audio/oss/distinfo Sun Mar 26 00:53:55 2017 (r436926) +++ branches/2017Q1/audio/oss/distinfo Sun Mar 26 01:04:13 2017 (r436927) @@ -1,2 +1,3 @@ -SHA256 (oss-v4.2-build2011-src-bsd.tar.bz2) = 65ba999222d7250242c23d6d13e98dc39d3157c14acc32691d8aa9678ccedbbc -SIZE (oss-v4.2-build2011-src-bsd.tar.bz2) = 1628950 +TIMESTAMP = 1486110185 +SHA256 (oss-v4.2-build2017-src-bsd.tar.bz2) = 8ef2b1b964719b4c356de234d4b28832302027dc23bf636820be1afe1b099972 +SIZE (oss-v4.2-build2017-src-bsd.tar.bz2) = 1714709 Copied: branches/2017Q1/audio/oss/files/patch-setup_srcconf__freebsd.inc (from r436874, head/audio/oss/files/patch-setup_srcconf__freebsd.inc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/audio/oss/files/patch-setup_srcconf__freebsd.inc Sun Mar 26 01:04:13 2017 (r436927, copy of r436874, head/audio/oss/files/patch-setup_srcconf__freebsd.inc) @@ -0,0 +1,10 @@ +--- setup/srcconf_freebsd.inc.orig 2014-02-14 22:59:55 UTC ++++ setup/srcconf_freebsd.inc +@@ -12,6 +12,6 @@ add_kernel_flags (FILE * f) + { + # if defined(__x86_64__) + fprintf (f, +- "CFLAGS += -O3 -fno-common -mcmodel=kernel -mno-red-zone -fno-asynchronous-unwind-tables -ffreestanding\n"); ++ "CFLAGS += -O3 -fno-common -mcmodel=kernel -mno-red-zone -fno-asynchronous-unwind-tables -ffreestanding -mno-sse\n"); + # endif + } Modified: branches/2017Q1/audio/oss/pkg-descr ============================================================================== --- branches/2017Q1/audio/oss/pkg-descr Sun Mar 26 00:53:55 2017 (r436926) +++ branches/2017Q1/audio/oss/pkg-descr Sun Mar 26 01:04:13 2017 (r436927) @@ -2,4 +2,7 @@ Open Sound System for FreeBSD is a audio a cross platform audio and MIDI API with device drivers for most consumer and professional PCI and USB audio devices. +Not to be confused with sound(4) which is a different implementation +with the same API. + WWW: http://opensound.com/ Modified: branches/2017Q1/audio/oss/pkg-plist ============================================================================== --- branches/2017Q1/audio/oss/pkg-plist Sun Mar 26 00:53:55 2017 (r436926) +++ branches/2017Q1/audio/oss/pkg-plist Sun Mar 26 01:04:13 2017 (r436927) @@ -29,6 +29,7 @@ lib/oss/conf/oss_ymf7xx.conf.sample lib/oss/conf/osscore.conf.sample lib/oss/etc/devices.list lib/oss/include/sys/soundcard.h +lib/oss/modules/lynxone.ko lib/oss/modules/oss_ali5455.ko lib/oss/modules/oss_atiaudio.ko lib/oss/modules/oss_audigyls.ko @@ -73,6 +74,7 @@ man/man1/osstest.1.gz man/man1/ossxmix.1.gz man/man1/soundoff.1.gz man/man1/soundon.1.gz +man/man7/lynxone.7.gz man/man7/oss_ali5455.7.gz man/man7/oss_atiaudio.7.gz man/man7/oss_audigyls.7.gz