diff options
author | flz <flz@FreeBSD.org> | 2005-03-03 16:51:59 +0800 |
---|---|---|
committer | flz <flz@FreeBSD.org> | 2005-03-03 16:51:59 +0800 |
commit | d6e6318a83fbb5487ef5aa78c26283e7e545038b (patch) | |
tree | a873dd7cf9fe88b086d458eb88d6651bad16dfc6 | |
parent | a44c5edce8aa08d8b991af02e0113e867a5cfd30 (diff) | |
download | freebsd-ports-gnome-d6e6318a83fbb5487ef5aa78c26283e7e545038b.tar.gz freebsd-ports-gnome-d6e6318a83fbb5487ef5aa78c26283e7e545038b.tar.zst freebsd-ports-gnome-d6e6318a83fbb5487ef5aa78c26283e7e545038b.zip |
- Update to 0.2.9_1.
PR: ports/78341
Submitted by: Michael C. Shultz <ringworm01@gmail.com> (maintainer)
Approved by: pav (mentor)
-rw-r--r-- | ports-mgmt/portmanager/Makefile | 2 | ||||
-rw-r--r-- | ports-mgmt/portmanager/files/patch-0.2.9_1 | 68 | ||||
-rw-r--r-- | sysutils/portmanager/Makefile | 2 | ||||
-rw-r--r-- | sysutils/portmanager/files/patch-0.2.9_1 | 68 |
4 files changed, 138 insertions, 2 deletions
diff --git a/ports-mgmt/portmanager/Makefile b/ports-mgmt/portmanager/Makefile index 7a5f4a9b0b16..3b6b9169b319 100644 --- a/ports-mgmt/portmanager/Makefile +++ b/ports-mgmt/portmanager/Makefile @@ -7,7 +7,7 @@ PORTNAME= portmanager PORTVERSION= 0.2.9 -PORTREVISION= 0 +PORTREVISION= 1 #----------------------------------------- #for local use, remove before submitting PR CATEGORIES= sysutils diff --git a/ports-mgmt/portmanager/files/patch-0.2.9_1 b/ports-mgmt/portmanager/files/patch-0.2.9_1 new file mode 100644 index 000000000000..e6864d20022c --- /dev/null +++ b/ports-mgmt/portmanager/files/patch-0.2.9_1 @@ -0,0 +1,68 @@ +diff -ruN --exclude=Makefile.in --exclude=externVars.h.in --exclude=config.h.in --exclude=config.h.in~ ./NEWS ../../0.2.9_1/portmanager/NEWS +--- ./NEWS Sun Feb 27 13:51:55 2005 ++++ ../../0.2.9_1/portmanager/NEWS Wed Mar 2 15:31:42 2005 +@@ -2,6 +2,10 @@ + + NOTE to self: Monitor from 0.2.1 to 0.2.2 item 3. + ++from 0.2.9 to 0.2.9_1 (March 2005) ++ ++ 1) Added warnings if portmanager is not run as root ++ + from 0.2.8 to 0.2.9 (February 2005) + + 1) Fixed %done reporting in xterm title bar +diff -ruN --exclude=Makefile.in --exclude=externVars.h.in --exclude=config.h.in --exclude=config.h.in~ ./libMG/src/MGdbCreate.c ../../0.2.9_1/portmanager/libMG/src/MGdbCreate.c +--- ./libMG/src/MGdbCreate.c Thu Feb 17 21:55:04 2005 ++++ ../../0.2.9_1/portmanager/libMG/src/MGdbCreate.c Wed Mar 2 15:34:11 2005 +@@ -68,7 +68,7 @@ + { + fprintf(stderr, "%s ERROR: unable to open %s\n", id, db->parent.path); + perror("error"); +- assert(0); ++ return( NULL ); + } + + /*zzzzzzzzzzzzzz*/ +diff -ruN --exclude=Makefile.in --exclude=externVars.h.in --exclude=config.h.in --exclude=config.h.in~ ./libPMGR/src/PMGRrDbCreate.c ../../0.2.9_1/portmanager/libPMGR/src/PMGRrDbCreate.c +--- ./libPMGR/src/PMGRrDbCreate.c Thu Feb 17 09:39:55 2005 ++++ ../../0.2.9_1/portmanager/libPMGR/src/PMGRrDbCreate.c Wed Mar 2 15:38:33 2005 +@@ -78,6 +78,12 @@ + NULL); + /*zzzzzzzzzzzzzz*/ + ++ if( !property->installedPortsDb ) ++ { ++ fprintf( stderr, "%s %s error: portmanager must be run as root\n", id, VERSION ); ++ exit(1); ++ } ++ + /*zzzzzzzzzzzzzz*/ + property->objIdx++; + property->dependencyPortsDb = MGdbCreate( +diff -ruN --exclude=Makefile.in --exclude=externVars.h.in --exclude=config.h.in --exclude=config.h.in~ ./libPMGR/src/PMGRrInitialize.c ../../0.2.9_1/portmanager/libPMGR/src/PMGRrInitialize.c +--- ./libPMGR/src/PMGRrInitialize.c Thu Feb 17 22:55:53 2005 ++++ ../../0.2.9_1/portmanager/libPMGR/src/PMGRrInitialize.c Wed Mar 2 15:55:57 2005 +@@ -38,6 +38,7 @@ + + int PMGRrInitialize( structProperty* property, int argc, char** argv ) + { ++ char id[] = "PMGRrInitialize"; + char* commandLineKey = NULL; + int errorCode = 0; + int idx = 0; +@@ -164,6 +165,14 @@ + */ + property->commandLineDb = MGdbCreate( property->commandLineDbFileName, property->fieldCommandLineKey, + property->fieldCommandLineValue, NULL ); ++ ++ if( !property->commandLineDb ) ++ { ++ fprintf( stderr, "%s %s error: portmanager must be run as root\n", id, VERSION ); ++ exit(1); ++ } ++ ++ + idx = 1; + while( idx < argc ) + { diff --git a/sysutils/portmanager/Makefile b/sysutils/portmanager/Makefile index 7a5f4a9b0b16..3b6b9169b319 100644 --- a/sysutils/portmanager/Makefile +++ b/sysutils/portmanager/Makefile @@ -7,7 +7,7 @@ PORTNAME= portmanager PORTVERSION= 0.2.9 -PORTREVISION= 0 +PORTREVISION= 1 #----------------------------------------- #for local use, remove before submitting PR CATEGORIES= sysutils diff --git a/sysutils/portmanager/files/patch-0.2.9_1 b/sysutils/portmanager/files/patch-0.2.9_1 new file mode 100644 index 000000000000..e6864d20022c --- /dev/null +++ b/sysutils/portmanager/files/patch-0.2.9_1 @@ -0,0 +1,68 @@ +diff -ruN --exclude=Makefile.in --exclude=externVars.h.in --exclude=config.h.in --exclude=config.h.in~ ./NEWS ../../0.2.9_1/portmanager/NEWS +--- ./NEWS Sun Feb 27 13:51:55 2005 ++++ ../../0.2.9_1/portmanager/NEWS Wed Mar 2 15:31:42 2005 +@@ -2,6 +2,10 @@ + + NOTE to self: Monitor from 0.2.1 to 0.2.2 item 3. + ++from 0.2.9 to 0.2.9_1 (March 2005) ++ ++ 1) Added warnings if portmanager is not run as root ++ + from 0.2.8 to 0.2.9 (February 2005) + + 1) Fixed %done reporting in xterm title bar +diff -ruN --exclude=Makefile.in --exclude=externVars.h.in --exclude=config.h.in --exclude=config.h.in~ ./libMG/src/MGdbCreate.c ../../0.2.9_1/portmanager/libMG/src/MGdbCreate.c +--- ./libMG/src/MGdbCreate.c Thu Feb 17 21:55:04 2005 ++++ ../../0.2.9_1/portmanager/libMG/src/MGdbCreate.c Wed Mar 2 15:34:11 2005 +@@ -68,7 +68,7 @@ + { + fprintf(stderr, "%s ERROR: unable to open %s\n", id, db->parent.path); + perror("error"); +- assert(0); ++ return( NULL ); + } + + /*zzzzzzzzzzzzzz*/ +diff -ruN --exclude=Makefile.in --exclude=externVars.h.in --exclude=config.h.in --exclude=config.h.in~ ./libPMGR/src/PMGRrDbCreate.c ../../0.2.9_1/portmanager/libPMGR/src/PMGRrDbCreate.c +--- ./libPMGR/src/PMGRrDbCreate.c Thu Feb 17 09:39:55 2005 ++++ ../../0.2.9_1/portmanager/libPMGR/src/PMGRrDbCreate.c Wed Mar 2 15:38:33 2005 +@@ -78,6 +78,12 @@ + NULL); + /*zzzzzzzzzzzzzz*/ + ++ if( !property->installedPortsDb ) ++ { ++ fprintf( stderr, "%s %s error: portmanager must be run as root\n", id, VERSION ); ++ exit(1); ++ } ++ + /*zzzzzzzzzzzzzz*/ + property->objIdx++; + property->dependencyPortsDb = MGdbCreate( +diff -ruN --exclude=Makefile.in --exclude=externVars.h.in --exclude=config.h.in --exclude=config.h.in~ ./libPMGR/src/PMGRrInitialize.c ../../0.2.9_1/portmanager/libPMGR/src/PMGRrInitialize.c +--- ./libPMGR/src/PMGRrInitialize.c Thu Feb 17 22:55:53 2005 ++++ ../../0.2.9_1/portmanager/libPMGR/src/PMGRrInitialize.c Wed Mar 2 15:55:57 2005 +@@ -38,6 +38,7 @@ + + int PMGRrInitialize( structProperty* property, int argc, char** argv ) + { ++ char id[] = "PMGRrInitialize"; + char* commandLineKey = NULL; + int errorCode = 0; + int idx = 0; +@@ -164,6 +165,14 @@ + */ + property->commandLineDb = MGdbCreate( property->commandLineDbFileName, property->fieldCommandLineKey, + property->fieldCommandLineValue, NULL ); ++ ++ if( !property->commandLineDb ) ++ { ++ fprintf( stderr, "%s %s error: portmanager must be run as root\n", id, VERSION ); ++ exit(1); ++ } ++ ++ + idx = 1; + while( idx < argc ) + { |