-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #480 from citrus-it/merge
36615968 move man related code from setup.py to its own Makefile
- Loading branch information
Showing
13 changed files
with
95 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
The pkg5 components have been updated to the latest upstream solaris-ips | ||
as of: | ||
|
||
commit c7efe165236d9243c6bc6a9b0abd6042ad9c04a3 | ||
commit ea98f7c05e3fc1c8501a80f331128f3dd26ced31 | ||
Author: Jakub Kulik <[email protected]> | ||
Date: Thu May 16 02:41:50 2024 -0700 | ||
Date: Tue May 28 04:40:57 2024 -0700 | ||
|
||
36591165 clean up packaging and pkgdepend bypasses | ||
36615968 move man related code from setup.py to its own Makefile | ||
|
||
----------------------------------------------------------------------------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,5 +24,7 @@ all clean clobber install: $(SUBDIRS) | |
$(SUBDIRS): FRC | ||
@cd $@; pwd; $(MAKE) $(TARGET) | ||
|
||
check: | ||
|
||
FRC: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# | ||
# This file and its contents are supplied under the terms of the | ||
# Common Development and Distribution License ("CDDL"), version 1.0. | ||
# You may only use this file in accordance with the terms of version | ||
# 1.0 of the CDDL. | ||
# | ||
# A full copy of the text of the CDDL should have accompanied this | ||
# source. A copy of the CDDL is also available via the Internet at | ||
# http://www.illumos.org/license/CDDL. | ||
# | ||
|
||
# Copyright 2024 OmniOS Community Edition (OmniOSce) Association. | ||
|
||
include ../Makefile.com | ||
|
||
ROOTUSRSHAREMAN = $(ROOTUSRSHARE)/man | ||
MAN1DIR = $(ROOTUSRSHAREMAN)/man1 | ||
MAN7DIR = $(ROOTUSRSHAREMAN)/man7 | ||
MAN8DIR = $(ROOTUSRSHAREMAN)/man8 | ||
|
||
MAN1 = \ | ||
pkg.1 \ | ||
pkgdepend.1 \ | ||
pkgdiff.1 \ | ||
pkgfmt.1 \ | ||
pkglint.1 \ | ||
pkgmerge.1 \ | ||
pkgmogrify.1 \ | ||
pkgrecv.1 \ | ||
pkgrepo.1 \ | ||
pkgsend.1 \ | ||
pkgsign.1 \ | ||
pkgsurf.1 | ||
|
||
MAN7 = \ | ||
bhyve.7 \ | ||
emu.7 \ | ||
illumos.7 \ | ||
ipkg.7 \ | ||
kvm.7 \ | ||
lipkg.7 \ | ||
lx.7 \ | ||
pkg.7 \ | ||
pkgsrc.7 \ | ||
sparse.7 | ||
|
||
MAN8 = \ | ||
pkg.depotd.8 | ||
|
||
all: | ||
|
||
install: \ | ||
$(MAN1DIR) $(MAN7DIR) $(MAN8DIR) \ | ||
$(MAN1:%=$(MAN1DIR)/%) \ | ||
$(MAN7:%=$(MAN7DIR)/%) \ | ||
$(MAN8:%=$(MAN8DIR)/%) | ||
|
||
check: | ||
-mandoc -T lint $(MAN1) $(MAN7) $(MAN8) 2>&1 | \ | ||
egrep -v '(outdated mandoc.db|referenced manual not found)' | ||
|
||
clean clobber: | ||
|
||
$(MAN1DIR) $(MAN7DIR) $(MAN8DIR): | ||
mkdir -p $@ | ||
|
||
$(MAN1DIR)/% $(MAN7DIR)/% $(MAN8DIR)/%: % | ||
rm -f $@; $(INSTALL) -f $(@D) -m 0444 $< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters