Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Mar 2020 15:58:50 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r358549 - head/release/packages
Message-ID:  <202003021558.022FwosY002410@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Mon Mar  2 15:58:50 2020
New Revision: 358549
URL: https://svnweb.freebsd.org/changeset/base/358549

Log:
  pkgbase: remove logic for _profile packages
  
  We don't produce these anymore as of r356797, remove the remnant in
  generate-ucl.sh that accounted for them. This isn't strictly necessary, but
  future work is needed for the various packages that can be generated on a
  lib build.
  
  Namely, we may produce -development packages for private/internal libs that
  should be installed but won't have the base FreeBSD-libfoo pkg to depend on
  because it's internal (e.g. liby, libpmcstat, libifconfig) but we want the
  headers installed. It may be a better move to just shove these into
  -runtime-development instead, but if not then we've just simplified the
  cases that need to take private/internal libs into account.

Modified:
  head/release/packages/generate-ucl.sh

Modified: head/release/packages/generate-ucl.sh
==============================================================================
--- head/release/packages/generate-ucl.sh	Mon Mar  2 15:30:52 2020	(r358548)
+++ head/release/packages/generate-ucl.sh	Mon Mar  2 15:58:50 2020	(r358549)
@@ -71,11 +71,6 @@ main() {
 			_descr="32-bit Libraries, Debugging Symbols"
 			pkgdeps="${outname}"
 			;;
-		*_lib32_profile)
-			outname="${outname%%_lib32_profile}"
-			_descr="32-bit Libraries, Profiling"
-			pkgdeps="${outname}"
-			;;
 		*_lib32)
 			outname="${outname%%_lib32}"
 			_descr="32-bit Libraries"
@@ -84,11 +79,6 @@ main() {
 		*_development)
 			outname="${outname%%_development}"
 			_descr="Development Files"
-			pkgdeps="${outname}"
-			;;
-		*_profile)
-			outname="${outname%%_profile}"
-			_descr="Profiling Libraries"
 			pkgdeps="${outname}"
 			;;
 		*_debug)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003021558.022FwosY002410>