aboutsummaryrefslogtreecommitdiff
path: root/Keywords
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2021-03-26 22:09:12 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2021-03-26 22:09:12 +0000
commit0f9fa6dcce780546edc5811ab5e863760391db0c (patch)
tree99e4f2975803e23e9a85f47b7204e527c7f9d0f4 /Keywords
parentb5c21c056bb0b2c1beec7452775157b7f9ed7fbc (diff)
downloadports-0f9fa6dcce780546edc5811ab5e863760391db0c.tar.gz
ports-0f9fa6dcce780546edc5811ab5e863760391db0c.zip
The next version of pkg will stop hardcoding itself the @*exec keywords
Move all those definitions into the in tree keywords
Notes
Notes: svn path=/head/; revision=569272
Diffstat (limited to 'Keywords')
-rw-r--r--Keywords/exec.ucl11
-rw-r--r--Keywords/postexec.ucl7
-rw-r--r--Keywords/postunexec.ucl7
-rw-r--r--Keywords/preexec.ucl7
-rw-r--r--Keywords/preunexec.ucl7
-rw-r--r--Keywords/unexec.ucl11
6 files changed, 50 insertions, 0 deletions
diff --git a/Keywords/exec.ucl b/Keywords/exec.ucl
new file mode 100644
index 000000000000..525b6f1265fa
--- /dev/null
+++ b/Keywords/exec.ucl
@@ -0,0 +1,11 @@
+# $FreeBSD$
+#
+# MAINTAINER: portmgr@FreeBSD.org
+actions: []
+deprecated: true
+deprecation_message: <<EOM
+Use @preexec/@postexec instead
+EOM
+post-install: <<EOS
+%@
+EOS
diff --git a/Keywords/postexec.ucl b/Keywords/postexec.ucl
new file mode 100644
index 000000000000..c6a66ccbed34
--- /dev/null
+++ b/Keywords/postexec.ucl
@@ -0,0 +1,7 @@
+# $FreeBSD$
+#
+# MAINTAINER: portmgr@FreeBSD.org
+actions: []
+post-install: <<EOS
+%@
+EOS
diff --git a/Keywords/postunexec.ucl b/Keywords/postunexec.ucl
new file mode 100644
index 000000000000..038dda0697b5
--- /dev/null
+++ b/Keywords/postunexec.ucl
@@ -0,0 +1,7 @@
+# $FreeBSD$
+#
+# MAINTAINER: portmgr@FreeBSD.org
+actions: []
+post-deinstall: <<EOS
+%@
+EOS
diff --git a/Keywords/preexec.ucl b/Keywords/preexec.ucl
new file mode 100644
index 000000000000..c9a76ab54c83
--- /dev/null
+++ b/Keywords/preexec.ucl
@@ -0,0 +1,7 @@
+# $FreeBSD$
+#
+# MAINTAINER: portmgr@FreeBSD.org
+actions: []
+pre-install: <<EOS
+%@
+EOS
diff --git a/Keywords/preunexec.ucl b/Keywords/preunexec.ucl
new file mode 100644
index 000000000000..ca1bd984118e
--- /dev/null
+++ b/Keywords/preunexec.ucl
@@ -0,0 +1,7 @@
+# $FreeBSD$
+#
+# MAINTAINER: portmgr@FreeBSD.org
+actions: []
+pre-deinstall: <<EOS
+%@
+EOS
diff --git a/Keywords/unexec.ucl b/Keywords/unexec.ucl
new file mode 100644
index 000000000000..be104248cf4a
--- /dev/null
+++ b/Keywords/unexec.ucl
@@ -0,0 +1,11 @@
+# $FreeBSD$
+#
+# MAINTAINER: portmgr@FreeBSD.org
+actions: []
+deprecated: true
+deprecation_message: <<EOM
+Use @preunexec/@postunexec instead
+EOM
+pre-deinstall: <<EOS
+%@
+EOS