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:
parent
b05ca4290c
commit
9c5d67e942
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user