pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_install/files Remove remaining parts of @...
details: https://anonhg.NetBSD.org/pkgsrc/rev/5b6170801265
branches: trunk
changeset: 391983:5b6170801265
user: joerg <joerg%pkgsrc.org@localhost>
date: Thu Apr 23 19:35:52 2009 +0000
description:
Remove remaining parts of @mtree support.
diffstat:
pkgtools/pkg_install/files/admin/check.c | 5 ++---
pkgtools/pkg_install/files/admin/main.c | 5 ++---
pkgtools/pkg_install/files/info/show.c | 6 ++----
pkgtools/pkg_install/files/lib/lib.h | 11 +++++------
pkgtools/pkg_install/files/lib/plist.c | 5 ++---
5 files changed, 13 insertions(+), 19 deletions(-)
diffs (137 lines):
diff -r 979362d4f1a7 -r 5b6170801265 pkgtools/pkg_install/files/admin/check.c
--- a/pkgtools/pkg_install/files/admin/check.c Thu Apr 23 19:34:04 2009 +0000
+++ b/pkgtools/pkg_install/files/admin/check.c Thu Apr 23 19:35:52 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: check.c,v 1.7 2009/04/23 19:34:04 joerg Exp $ */
+/* $NetBSD: check.c,v 1.8 2009/04/23 19:35:52 joerg Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -7,7 +7,7 @@
#if HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
#endif
-__RCSID("$NetBSD: check.c,v 1.7 2009/04/23 19:34:04 joerg Exp $");
+__RCSID("$NetBSD: check.c,v 1.8 2009/04/23 19:35:52 joerg Exp $");
/*-
* Copyright (c) 1999-2008 The NetBSD Foundation, Inc.
@@ -169,7 +169,6 @@
case PLIST_UNEXEC:
case PLIST_DISPLAY:
case PLIST_PKGDEP:
- case PLIST_MTREE:
case PLIST_DIR_RM:
case PLIST_OPTION:
case PLIST_PKGCFL:
diff -r 979362d4f1a7 -r 5b6170801265 pkgtools/pkg_install/files/admin/main.c
--- a/pkgtools/pkg_install/files/admin/main.c Thu Apr 23 19:34:04 2009 +0000
+++ b/pkgtools/pkg_install/files/admin/main.c Thu Apr 23 19:35:52 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.49 2009/04/23 19:34:04 joerg Exp $ */
+/* $NetBSD: main.c,v 1.50 2009/04/23 19:35:52 joerg Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -7,7 +7,7 @@
#if HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
#endif
-__RCSID("$NetBSD: main.c,v 1.49 2009/04/23 19:34:04 joerg Exp $");
+__RCSID("$NetBSD: main.c,v 1.50 2009/04/23 19:35:52 joerg Exp $");
/*-
* Copyright (c) 1999-2008 The NetBSD Foundation, Inc.
@@ -197,7 +197,6 @@
case PLIST_UNEXEC:
case PLIST_DISPLAY:
case PLIST_PKGDEP:
- case PLIST_MTREE:
case PLIST_DIR_RM:
case PLIST_OPTION:
case PLIST_PKGCFL:
diff -r 979362d4f1a7 -r 5b6170801265 pkgtools/pkg_install/files/info/show.c
--- a/pkgtools/pkg_install/files/info/show.c Thu Apr 23 19:34:04 2009 +0000
+++ b/pkgtools/pkg_install/files/info/show.c Thu Apr 23 19:35:52 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: show.c,v 1.26 2009/04/23 19:34:04 joerg Exp $ */
+/* $NetBSD: show.c,v 1.27 2009/04/23 19:35:52 joerg Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -7,7 +7,7 @@
#if HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
#endif
-__RCSID("$NetBSD: show.c,v 1.26 2009/04/23 19:34:04 joerg Exp $");
+__RCSID("$NetBSD: show.c,v 1.27 2009/04/23 19:35:52 joerg Exp $");
/*
* FreeBSD install - a package for the installation and maintainance
@@ -90,7 +90,6 @@
{PLIST_SRC, "@src: %s", "\tSRC to: %s"},
{PLIST_DISPLAY, "@display %s", "\tInstall message file: %s"},
{PLIST_PKGDEP, "@pkgdep %s", "\tPackage depends on: %s"},
- {PLIST_MTREE, "@mtree %s", "\tPackage mtree file: %s"},
{PLIST_DIR_RM, "@dirrm %s", "\tDeinstall directory remove: %s"},
{PLIST_OPTION, "@option %s", "\tPackage has option: %s"},
{PLIST_PKGCFL, "@pkgcfl %s", "\tPackage conflicts with: %s"},
@@ -189,7 +188,6 @@
case PLIST_NAME:
case PLIST_DISPLAY:
case PLIST_PKGDEP:
- case PLIST_MTREE:
case PLIST_DIR_RM:
case PLIST_OPTION:
case PLIST_PKGCFL:
diff -r 979362d4f1a7 -r 5b6170801265 pkgtools/pkg_install/files/lib/lib.h
--- a/pkgtools/pkg_install/files/lib/lib.h Thu Apr 23 19:34:04 2009 +0000
+++ b/pkgtools/pkg_install/files/lib/lib.h Thu Apr 23 19:35:52 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: lib.h,v 1.51 2009/04/23 19:34:04 joerg Exp $ */
+/* $NetBSD: lib.h,v 1.52 2009/04/23 19:35:52 joerg Exp $ */
/* from FreeBSD Id: lib.h,v 1.25 1997/10/08 07:48:03 charnier Exp */
@@ -165,11 +165,10 @@
PLIST_SRC, /* 10 */
PLIST_DISPLAY, /* 11 */
PLIST_PKGDEP, /* 12 */
- PLIST_MTREE, /* 13 */
- PLIST_DIR_RM, /* 14 */
- PLIST_OPTION, /* 15 */
- PLIST_PKGCFL, /* 16 */
- PLIST_BLDDEP /* 17 */
+ PLIST_DIR_RM, /* 13 */
+ PLIST_OPTION, /* 14 */
+ PLIST_PKGCFL, /* 15 */
+ PLIST_BLDDEP /* 16 */
} pl_ent_t;
/* Enumerated constants for build info */
diff -r 979362d4f1a7 -r 5b6170801265 pkgtools/pkg_install/files/lib/plist.c
--- a/pkgtools/pkg_install/files/lib/plist.c Thu Apr 23 19:34:04 2009 +0000
+++ b/pkgtools/pkg_install/files/lib/plist.c Thu Apr 23 19:35:52 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: plist.c,v 1.24 2009/04/23 19:34:04 joerg Exp $ */
+/* $NetBSD: plist.c,v 1.25 2009/04/23 19:35:52 joerg Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -7,7 +7,7 @@
#if HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
#endif
-__RCSID("$NetBSD: plist.c,v 1.24 2009/04/23 19:34:04 joerg Exp $");
+__RCSID("$NetBSD: plist.c,v 1.25 2009/04/23 19:35:52 joerg Exp $");
/*
* FreeBSD install - a package for the installation and maintainance
@@ -95,7 +95,6 @@
{"display", PLIST_DISPLAY, 1, 0},
{"pkgdep", PLIST_PKGDEP, 1, 0},
{"pkgcfl", PLIST_PKGCFL, 1, 0},
- {"mtree", PLIST_MTREE, 1, 0},
{"dirrm", PLIST_DIR_RM, 1, 0},
{"option", PLIST_OPTION, 1, 0},
{"blddep", PLIST_BLDDEP, 1, 0},
Home |
Main Index |
Thread Index |
Old Index