summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_add
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2007-06-25 12:21:09 +0000
committerMarc Espie <espie@cvs.openbsd.org>2007-06-25 12:21:09 +0000
commit6be9637d8116988b50b70abe1e44825b681e6a4c (patch)
treed2a9ad30ce867e4e80b973fd67a3d0ac0a4d954d /usr.sbin/pkg_add
parent61b6166a33566b67dee75e8bae5a2fe953b44cca (diff)
placeholder to split off the code that handles UpdateSets, as it's
currently scattered all over the place.
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r--usr.sbin/pkg_add/Makefile3
-rw-r--r--usr.sbin/pkg_add/OpenBSD/UpdateSet.pm18
2 files changed, 20 insertions, 1 deletions
diff --git a/usr.sbin/pkg_add/Makefile b/usr.sbin/pkg_add/Makefile
index 217c4094fe3..debee60ed04 100644
--- a/usr.sbin/pkg_add/Makefile
+++ b/usr.sbin/pkg_add/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.45 2007/06/10 16:59:30 espie Exp $
+# $OpenBSD: Makefile,v 1.46 2007/06/25 12:21:08 espie Exp $
.include <bsd.own.mk>
@@ -43,6 +43,7 @@ PACKAGES= \
OpenBSD/SharedLibs.pm \
OpenBSD/Temp.pm \
OpenBSD/Update.pm \
+ OpenBSD/UpdateSet.pm \
OpenBSD/Ustar.pm \
OpenBSD/Vstat.pm \
OpenBSD/md5.pm \
diff --git a/usr.sbin/pkg_add/OpenBSD/UpdateSet.pm b/usr.sbin/pkg_add/OpenBSD/UpdateSet.pm
new file mode 100644
index 00000000000..afe23105410
--- /dev/null
+++ b/usr.sbin/pkg_add/OpenBSD/UpdateSet.pm
@@ -0,0 +1,18 @@
+# ex:ts=8 sw=4:
+# $OpenBSD: UpdateSet.pm,v 1.1 2007/06/25 12:21:08 espie Exp $
+#
+# Copyright (c) 2007 Marc Espie <espie@openbsd.org>
+#
+# Permission to use, copy, modify, and distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+1;