mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
- fix a bug in the hooks sql [1]
- temporarelly disable TMPFS optional patch Submitted by: beat@ [1]
This commit is contained in:
parent
c66377013e
commit
ec5f3deec9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=283615
@ -6,6 +6,7 @@
|
||||
|
||||
PORTNAME= tinderbox
|
||||
DISTVERSION= 3.4${SNAP}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= ports-mgmt
|
||||
MASTER_SITES= http://tinderbox.marcuscom.com/ \
|
||||
http://T32.TecNik93.com/FreeBSD/ports/${PORTNAME}/sources/
|
||||
@ -27,8 +28,8 @@ OPTIONS= PGSQL "With pgsql" Off \
|
||||
EMAILS "Support for build failure/completion emails" On \
|
||||
LSOF "For killMountProcesses() when using nullfs" On \
|
||||
LOG_COMPRESS "Support bzip'ing the logs" On \
|
||||
TMPFS "Enable TMPFS extra patch" On \
|
||||
PARALLEL "Enable PARALLEL extra patch" On
|
||||
PARALLEL "Enable PARALLEL extra patch" On \
|
||||
# TMPFS "Enable TMPFS extra patch" Off
|
||||
|
||||
NO_BUILD= yes
|
||||
WANT_PERL= yes
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- tinderd.orig 2010-01-04 21:12:37.000000000 +0100
|
||||
+++ tinderd 2010-01-04 21:14:28.000000000 +0100
|
||||
--- etc/rc.d/tinderd.orig 2010-01-04 21:12:37.000000000 +0100
|
||||
+++ etc/rc.d/tinderd 2010-01-04 21:14:28.000000000 +0100
|
||||
@@ -36,12 +36,14 @@
|
||||
MAIL=$(echo ${ENTRY} | cut -d: -f5)
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- tinderd.orig 2010-01-04 20:56:05.000000000 +0100
|
||||
+++ tinderd 2010-01-05 20:13:58.000000000 +0100
|
||||
--- etc/rc.d/tinderd.orig 2010-01-04 20:56:05.000000000 +0100
|
||||
+++ etc/rc.d/tinderd 2010-01-05 20:13:58.000000000 +0100
|
||||
@@ -28,7 +28,22 @@
|
||||
do
|
||||
trap "" 1
|
||||
|
8
ports-mgmt/tinderbox-devel/files/patch-sql__values.hooks
Normal file
8
ports-mgmt/tinderbox-devel/files/patch-sql__values.hooks
Normal file
@ -0,0 +1,8 @@
|
||||
--- ./sql/values.hooks.orig 2011-10-16 03:52:55.000000000 +0300
|
||||
+++ ./sql/values.hooks 2011-10-16 22:39:42.000000000 +0300
|
||||
@@ -15,4 +15,4 @@
|
||||
INSERT INTO hooks VALUES ('prePortBuild', NULL, 'Hook to run before building a port.\nIf this command returns a non-zero value, the port will not be built.\nThe following environment will be passed to the hook command:\n\tPACKAGE_NAME : Package name of the port\n\tBUILD : Build name for this port\n\tJAIL : Jail name for this Build\n\tPORTSTREE : PortsTree name for this Build\n\tCHROOT : Location of the Build root\n\tPORTDIR : Directory origin of this port\n\tPB : Tinderbox root\n\tTOTAL_SIZE : Estimated total size (in KB) required for this build');
|
||||
INSERT INTO hooks VALUES ('postPortBuild', NULL, 'Hook to run after building a port.\nThe following environment will be passed to the hook command:\n\tPACKAGE_NAME : Package name of the port\n\tBUILD : Build name for this port\n\tJAIL : Jail name for this Build\n\tPORTSTREE : PortsTree name for this Build\n\tCHROOT : Location of the Build root\n\tPORTDIR : Directory origin of this port\n\tPB : Tinderbox root\n\tSTATUS : Status of the port build\n\tFAIL_REASON : Reason why the port build failed (if any)\n\tTOTAL_SIZE : Total size (in KB) used for this build');
|
||||
INSERT INTO hooks VALUES ('prePortChecksum', NULL, 'Hook to run before checking a port''s distfile checksum(s).\nIf this command returns a non-zero value, the port will not be built.\nThe following environment will be passed to the hook command:\n\tPACKAGE_NAME : Package name of the port\n\tBUILD : Build name for this port\n\tJAIL : Jail name for this Build\n\tPORTSTREE : PortsTree name for this Build\n\tCHROOT : Location of the Build root\n\tPORTDIR : Directory origin of this port\n\tPB : Tinderbox root\n\tTOTAL_SIZE : Estimated total size (in KB) required for this build');
|
||||
- INSERT INTO hooks VALUES ('postPortChecksum', NULL, 'Hook to run after checking a port's distfie checksum(s).\nThe following environment will be passed to the hook command:\n\tPACKAGE_NAME : Package name of the port\n\tBUILD : Build name for this port\n\tJAIL : Jail name for this Build\n\tPORTSTREE : PortsTree name for this Build\n\tCHROOT : Location of the Build root\n\tPORTDIR : Directory origin of this port\n\tPB : Tinderbox root\n\tERROR : Error returned from the make checksum (0 means no error occurred)\n\tFAIL_REASON : Reason why the port build failed (if any)\n\tTOTAL_SIZE : Total size (in KB) used for this build'); INSERT INTO hooks VALUES ('postPortChecksum', NULL, 'Hook to run after checking a port''s distfie checksum(s).\nThe following environment will be passed to the hook command:\n\tPACKAGE_NAME : Package name of the port\n\tBUILD : Build name for this port\n\tJAIL : Jail name for this Build\n\tPORTSTREE : PortsTree name for this Build\n\tCHROOT : Location of the Build root\n\tPORTDIR : Directory origin of this port\n\tPB : Tinderbox root\n\tERROR : Error returned from the make checksum (0 means no error occurred)\n\tFAIL_REASON : Reason why the port build failed (if any)\n\tTOTAL_SIZE : Total size (in KB) used for this build');
|
||||
+INSERT INTO hooks VALUES ('postPortChecksum', NULL, 'Hook to run after checking a port''s distfie checksum(s).\nThe following environment will be passed to the hook command:\n\tPACKAGE_NAME : Package name of the port\n\tBUILD : Build name for this port\n\tJAIL : Jail name for this Build\n\tPORTSTREE : PortsTree name for this Build\n\tCHROOT : Location of the Build root\n\tPORTDIR : Directory origin of this port\n\tPB : Tinderbox root\n\tERROR : Error returned from the make checksum (0 means no error occurred)\n\tFAIL_REASON : Reason why the port build failed (if any)\n\tTOTAL_SIZE : Total size (in KB) used for this build');
|
Loading…
Reference in New Issue
Block a user