1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

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.
This commit is contained in:
Kyle Evans 2020-03-02 15:58:50 +00:00
parent b05ca4290c
commit 9c5d67e942
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=358549

View File

@ -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"
@ -86,11 +81,6 @@ main() {
_descr="Development Files"
pkgdeps="${outname}"
;;
*_profile)
outname="${outname%%_profile}"
_descr="Profiling Libraries"
pkgdeps="${outname}"
;;
*_debug)
outname="${outname%%_debug}"
_descr="Debugging Symbols"