From owner-svn-src-all@FreeBSD.ORG Sun Feb 23 22:27:15 2014 Return-Path: Delivered-To: svn-src-all@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 93F67A69; Sun, 23 Feb 2014 22:27:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 7DFF71C34; Sun, 23 Feb 2014 22:27:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1NMRFo8064511; Sun, 23 Feb 2014 22:27:15 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1NMRECn064508; Sun, 23 Feb 2014 22:27:14 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201402232227.s1NMRECn064508@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 23 Feb 2014 22:27:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262407 - in head: . contrib/libyaml lib lib/libyaml share/mk X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Feb 2014 22:27:15 -0000 Author: bapt Date: Sun Feb 23 22:27:14 2014 New Revision: 262407 URL: http://svnweb.freebsd.org/changeset/base/262407 Log: Remove libyaml, it has been replaced by libucl Deleted: head/contrib/libyaml/ head/lib/libyaml/ Modified: head/ObsoleteFiles.inc head/lib/Makefile head/share/mk/bsd.libnames.mk Modified: head/ObsoleteFiles.inc ============================================================================== --- head/ObsoleteFiles.inc Sun Feb 23 22:20:52 2014 (r262406) +++ head/ObsoleteFiles.inc Sun Feb 23 22:27:14 2014 (r262407) @@ -38,6 +38,11 @@ # xargs -n1 | sort | uniq -d; # done +# 20140223: Remove libyaml +OLD_FILES+=usr/lib/private/libyaml.a +OLD_FILES+=usr/lib/private/libyaml.so +OLD_FILES+=usr/lib/private/libyaml.so.1 +OLD_FILES+=usr/lib/private/libyaml_p.a # 20140216: new clang import which bumps version from 3.3 to 3.4. OLD_FILES+=usr/bin/llvm-prof OLD_FILES+=usr/bin/llvm-ranlib Modified: head/lib/Makefile ============================================================================== --- head/lib/Makefile Sun Feb 23 22:20:52 2014 (r262406) +++ head/lib/Makefile Sun Feb 23 22:27:14 2014 (r262407) @@ -130,7 +130,6 @@ SUBDIR= ${SUBDIR_ORDERED} \ ${_libvmmapi} \ libwrap \ liby \ - libyaml \ libz \ ${_atf} \ ${_clang} \ Modified: head/share/mk/bsd.libnames.mk ============================================================================== --- head/share/mk/bsd.libnames.mk Sun Feb 23 22:20:52 2014 (r262406) +++ head/share/mk/bsd.libnames.mk Sun Feb 23 22:27:14 2014 (r262407) @@ -169,7 +169,6 @@ LIBWIND?= ${DESTDIR}${LIBDIR}/libwind.a LIBWRAP?= ${DESTDIR}${LIBDIR}/libwrap.a LIBXPG4?= ${DESTDIR}${LIBDIR}/libxpg4.a LIBY?= ${DESTDIR}${LIBDIR}/liby.a -LIBYAML?= ${DESTDIR}${LIBPRIVATEDIR}/libyaml.a LIBYPCLNT?= ${DESTDIR}${LIBDIR}/libypclnt.a LIBZ?= ${DESTDIR}${LIBDIR}/libz.a LIBZFS?= ${DESTDIR}${LIBDIR}/libzfs.a