svn commit: r358549 - head/release/packages
Kyle Evans
kevans at FreeBSD.org
Mon Mar 2 15:58:55 UTC 2020
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)
More information about the svn-src-all
mailing list