[24780] branches/dp2mp-move/base/src/port1.0

source_changes at macosforge.org source_changes at macosforge.org
Thu May 3 20:15:31 PDT 2007


Revision: 24780
          http://trac.macosforge.org/projects/macports/changeset/24780
Author:   jmpp at macports.org
Date:     2007-05-03 20:15:30 -0700 (Thu, 03 May 2007)

Log Message:
-----------
Moving all (relevant) com.apple.<stage> strings to the org.macports.<stage> namespace. This commit completes this particular task, no more strings to convert (or at least as far as I can see...).

Modified Paths:
--------------
    branches/dp2mp-move/base/src/port1.0/portactivate.tcl
    branches/dp2mp-move/base/src/port1.0/portbuild.tcl
    branches/dp2mp-move/base/src/port1.0/portchecksum.tcl
    branches/dp2mp-move/base/src/port1.0/portclean.tcl
    branches/dp2mp-move/base/src/port1.0/portconfigure.tcl
    branches/dp2mp-move/base/src/port1.0/portdestroot.tcl
    branches/dp2mp-move/base/src/port1.0/portdistcheck.tcl
    branches/dp2mp-move/base/src/port1.0/portextract.tcl
    branches/dp2mp-move/base/src/port1.0/portfetch.tcl
    branches/dp2mp-move/base/src/port1.0/portinstall.tcl
    branches/dp2mp-move/base/src/port1.0/portlivecheck.tcl
    branches/dp2mp-move/base/src/port1.0/portmain.tcl
    branches/dp2mp-move/base/src/port1.0/portmirror.tcl
    branches/dp2mp-move/base/src/port1.0/portpatch.tcl
    branches/dp2mp-move/base/src/port1.0/portsubmit.tcl
    branches/dp2mp-move/base/src/port1.0/porttest.tcl
    branches/dp2mp-move/base/src/port1.0/portutil.tcl

Modified: branches/dp2mp-move/base/src/port1.0/portactivate.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portactivate.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portactivate.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -36,16 +36,16 @@
 package provide portactivate 1.0
 package require portutil 1.0
 
-set com.apple.activate [target_new com.apple.activate activate_main]
-target_runtype ${com.apple.activate} always
-target_state ${com.apple.activate} no
-target_provides ${com.apple.activate} activate
+set org.macports.activate [target_new org.macports.activate activate_main]
+target_runtype ${org.macports.activate} always
+target_state ${org.macports.activate} no
+target_provides ${org.macports.activate} activate
 if {[option portarchivemode] == "yes"} {
-	target_requires ${com.apple.activate} main unarchive fetch extract checksum patch configure build destroot archive install
+	target_requires ${org.macports.activate} main unarchive fetch extract checksum patch configure build destroot archive install
 } else {
-	target_requires ${com.apple.activate} main fetch extract checksum patch configure build destroot install
+	target_requires ${org.macports.activate} main fetch extract checksum patch configure build destroot install
 }
-target_prerun ${com.apple.activate} activate_start
+target_prerun ${org.macports.activate} activate_start
 
 set_ui_prefix
 

Modified: branches/dp2mp-move/base/src/port1.0/portbuild.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portbuild.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portbuild.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -33,10 +33,10 @@
 package provide portbuild 1.0
 package require portutil 1.0
 
-set com.apple.build [target_new com.apple.build build_main]
-target_provides ${com.apple.build} build
-target_requires ${com.apple.build} main fetch extract checksum patch configure
-target_prerun ${com.apple.build} build_start
+set org.macports.build [target_new org.macports.build build_main]
+target_provides ${org.macports.build} build
+target_requires ${org.macports.build} main fetch extract checksum patch configure
+target_prerun ${org.macports.build} build_start
 
 # define options
 options build.target

Modified: branches/dp2mp-move/base/src/port1.0/portchecksum.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portchecksum.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portchecksum.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -34,10 +34,10 @@
 package provide portchecksum 1.0
 package require portutil 1.0
 
-set com.apple.checksum [target_new com.apple.checksum checksum_main]
-target_provides ${com.apple.checksum} checksum
-target_requires ${com.apple.checksum} main fetch
-target_prerun ${com.apple.checksum} checksum_start
+set org.macports.checksum [target_new org.macports.checksum checksum_main]
+target_provides ${org.macports.checksum} checksum
+target_requires ${org.macports.checksum} main fetch
+target_prerun ${org.macports.checksum} checksum_start
 
 # Options
 options checksums checksum.skip

Modified: branches/dp2mp-move/base/src/port1.0/portclean.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portclean.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portclean.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -37,11 +37,11 @@
 package require portutil 1.0
 package require Pextlib 1.0
 
-set com.apple.clean [target_new com.apple.clean clean_main]
-target_runtype ${com.apple.clean} always
-target_provides ${com.apple.clean} clean
-target_requires ${com.apple.clean} main
-target_prerun ${com.apple.clean} clean_start
+set org.macports.clean [target_new org.macports.clean clean_main]
+target_runtype ${org.macports.clean} always
+target_provides ${org.macports.clean} clean
+target_requires ${org.macports.clean} main
+target_prerun ${org.macports.clean} clean_start
 
 set_ui_prefix
 

Modified: branches/dp2mp-move/base/src/port1.0/portconfigure.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portconfigure.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portconfigure.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -33,10 +33,10 @@
 package provide portconfigure 1.0
 package require portutil 1.0
 
-set com.apple.configure [target_new com.apple.configure configure_main]
-target_provides ${com.apple.configure} configure
-target_requires ${com.apple.configure} main fetch extract checksum patch
-target_prerun ${com.apple.configure} configure_start
+set org.macports.configure [target_new org.macports.configure configure_main]
+target_provides ${org.macports.configure} configure
+target_requires ${org.macports.configure} main fetch extract checksum patch
+target_prerun ${org.macports.configure} configure_start
 
 # define options
 commands configure automake autoconf xmkmf libtool

Modified: branches/dp2mp-move/base/src/port1.0/portdestroot.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portdestroot.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portdestroot.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -34,11 +34,11 @@
 package provide portdestroot 1.0
 package require portutil 1.0
 
-set com.apple.destroot [target_new com.apple.destroot destroot_main]
-target_provides ${com.apple.destroot} destroot
-target_requires ${com.apple.destroot} main fetch extract checksum patch configure build
-target_prerun ${com.apple.destroot} destroot_start
-target_postrun ${com.apple.destroot} destroot_finish
+set org.macports.destroot [target_new org.macports.destroot destroot_main]
+target_provides ${org.macports.destroot} destroot
+target_requires ${org.macports.destroot} main fetch extract checksum patch configure build
+target_prerun ${org.macports.destroot} destroot_start
+target_postrun ${org.macports.destroot} destroot_finish
 
 # define options
 options destroot.target destroot.destdir destroot.clean destroot.keepdirs destroot.umask

Modified: branches/dp2mp-move/base/src/port1.0/portdistcheck.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portdistcheck.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portdistcheck.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -36,11 +36,11 @@
 package require portutil 1.0
 package require portfetch 1.0
 
-set com.apple.distcheck [target_new com.apple.distcheck distcheck_main]
-target_runtype ${com.apple.distcheck} always
-target_state ${com.apple.distcheck} no
-target_provides ${com.apple.distcheck} distcheck
-target_requires ${com.apple.distcheck} main
+set org.macports.distcheck [target_new org.macports.distcheck distcheck_main]
+target_runtype ${org.macports.distcheck} always
+target_state ${org.macports.distcheck} no
+target_provides ${org.macports.distcheck} distcheck
+target_requires ${org.macports.distcheck} main
 
 # define options
 options distcheck.check

Modified: branches/dp2mp-move/base/src/port1.0/portextract.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portextract.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portextract.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -33,11 +33,11 @@
 package provide portextract 1.0
 package require portutil 1.0
 
-set com.apple.extract [target_new com.apple.extract extract_main]
-target_init ${com.apple.extract} extract_init
-target_provides ${com.apple.extract} extract
-target_requires ${com.apple.extract} fetch checksum
-target_prerun ${com.apple.extract} extract_start
+set org.macports.extract [target_new org.macports.extract extract_main]
+target_init ${org.macports.extract} extract_init
+target_provides ${org.macports.extract} extract
+target_requires ${org.macports.extract} fetch checksum
+target_prerun ${org.macports.extract} extract_start
 
 # define options
 options extract.only

Modified: branches/dp2mp-move/base/src/port1.0/portfetch.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portfetch.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portfetch.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -34,11 +34,11 @@
 package require portutil 1.0
 package require Pextlib 1.0
 
-set com.apple.fetch [target_new com.apple.fetch fetch_main]
-target_init ${com.apple.fetch} fetch_init
-target_provides ${com.apple.fetch} fetch
-target_requires ${com.apple.fetch} main
-target_prerun ${com.apple.fetch} fetch_start
+set org.macports.fetch [target_new org.macports.fetch fetch_main]
+target_init ${org.macports.fetch} fetch_init
+target_provides ${org.macports.fetch} fetch
+target_requires ${org.macports.fetch} main
+target_prerun ${org.macports.fetch} fetch_start
 
 # define options: distname master_sites
 options master_sites patch_sites extract.suffix distfiles patchfiles use_zip use_bzip2 dist_subdir \

Modified: branches/dp2mp-move/base/src/port1.0/portinstall.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portinstall.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portinstall.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -34,15 +34,15 @@
 package provide portinstall 1.0
 package require portutil 1.0
 
-set com.apple.install [target_new com.apple.install install_main]
-target_state ${com.apple.install} no
-target_provides ${com.apple.install} install
+set org.macports.install [target_new org.macports.install install_main]
+target_state ${org.macports.install} no
+target_provides ${org.macports.install} install
 if {[option portarchivemode] == "yes"} {
-	target_requires ${com.apple.install} main unarchive fetch extract checksum patch configure build destroot archive
+	target_requires ${org.macports.install} main unarchive fetch extract checksum patch configure build destroot archive
 } else {
-	target_requires ${com.apple.install} main fetch extract checksum patch configure build destroot
+	target_requires ${org.macports.install} main fetch extract checksum patch configure build destroot
 }
-target_prerun ${com.apple.install} install_start
+target_prerun ${org.macports.install} install_start
 
 set_ui_prefix
 

Modified: branches/dp2mp-move/base/src/port1.0/portlivecheck.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portlivecheck.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portlivecheck.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -36,11 +36,11 @@
 package require portutil 1.0
 package require portfetch 1.0
 
-set com.apple.livecheck [target_new com.apple.livecheck livecheck_main]
-target_runtype ${com.apple.livecheck} always
-target_state ${com.apple.livecheck} no
-target_provides ${com.apple.livecheck} livecheck
-target_requires ${com.apple.livecheck} main
+set org.macports.livecheck [target_new org.macports.livecheck livecheck_main]
+target_runtype ${org.macports.livecheck} always
+target_state ${org.macports.livecheck} no
+target_provides ${org.macports.livecheck} livecheck
+target_requires ${org.macports.livecheck} main
 
 # define options
 options livecheck.url livecheck.check livecheck.md5 livecheck.regex livecheck.name livecheck.distname livecheck.version

Modified: branches/dp2mp-move/base/src/port1.0/portmain.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portmain.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portmain.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -36,8 +36,8 @@
 package provide portmain 1.0
 package require portutil 1.0
 
-set com.apple.main [target_new com.apple.main main]
-target_provides ${com.apple.main} main
+set org.macports.main [target_new org.macports.main main]
+target_provides ${org.macports.main} main
 
 # define options
 options prefix name version revision epoch categories maintainers

Modified: branches/dp2mp-move/base/src/port1.0/portmirror.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portmirror.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portmirror.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -38,12 +38,12 @@
 package require portfetch 1.0
 package require portchecksum 1.0
 
-set com.apple.mirror [target_new com.apple.mirror mirror_main]
-target_runtype ${com.apple.mirror} always
-target_state ${com.apple.mirror} no
-target_provides ${com.apple.mirror} mirror
-target_requires ${com.apple.mirror} main
-#target_parallel ${com.apple.mirror} yes
+set org.macports.mirror [target_new org.macports.mirror mirror_main]
+target_runtype ${org.macports.mirror} always
+target_state ${org.macports.mirror} no
+target_provides ${org.macports.mirror} mirror
+target_requires ${org.macports.mirror} main
+#target_parallel ${org.macports.mirror} yes
 
 # Mirror is a target that fetches & checksums files and delete them
 # if the checksum isn't correct.

Modified: branches/dp2mp-move/base/src/port1.0/portpatch.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portpatch.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portpatch.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -33,9 +33,9 @@
 package provide portpatch 1.0
 package require portutil 1.0
 
-set com.apple.patch [target_new com.apple.patch patch_main]
-target_provides ${com.apple.patch} patch
-target_requires ${com.apple.patch} main fetch checksum extract 
+set org.macports.patch [target_new org.macports.patch patch_main]
+target_provides ${org.macports.patch} patch
+target_requires ${org.macports.patch} main fetch checksum extract 
 
 set_ui_prefix
 

Modified: branches/dp2mp-move/base/src/port1.0/portsubmit.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portsubmit.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portsubmit.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -33,10 +33,10 @@
 package provide portsubmit 1.0
 package require portutil 1.0
 
-set com.apple.submit [target_new com.apple.submit submit_main]
-target_runtype ${com.apple.submit} always
-target_provides ${com.apple.submit} submit 
-target_requires ${com.apple.submit} main
+set org.macports.submit [target_new org.macports.submit submit_main]
+target_runtype ${org.macports.submit} always
+target_provides ${org.macports.submit} submit 
+target_requires ${org.macports.submit} main
 
 set_ui_prefix
 

Modified: branches/dp2mp-move/base/src/port1.0/porttest.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/porttest.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/porttest.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -5,10 +5,10 @@
 package provide porttest 1.0
 package require portutil 1.0
 
-set com.apple.test [target_new com.apple.test test_main]
-target_provides ${com.apple.test} test
-target_requires ${com.apple.test} main fetch extract checksum patch configure build
-target_prerun ${com.apple.test} test_start
+set org.macports.test [target_new org.macports.test test_main]
+target_provides ${org.macports.test} test
+target_requires ${org.macports.test} main fetch extract checksum patch configure build
+target_prerun ${org.macports.test} test_start
 
 # define options
 options test.run test.target 

Modified: branches/dp2mp-move/base/src/port1.0/portutil.tcl
===================================================================
--- branches/dp2mp-move/base/src/port1.0/portutil.tcl	2007-05-04 02:37:25 UTC (rev 24779)
+++ branches/dp2mp-move/base/src/port1.0/portutil.tcl	2007-05-04 03:15:30 UTC (rev 24780)
@@ -1033,7 +1033,7 @@
 			# Something to close the registry entry may be called here, if it existed.
 		# 3rd case: the same port/version/revision/Variants is already active
 		# and user didn't mention -f
-		} elseif {$name == "com.apple.activate"
+		} elseif {$name == "org.macports.activate"
 			&& [registry_exists $portname $portversion $portrevision $portvariants]
 			&& !([info exists ports_force] && $ports_force == "yes")} {
 			

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20070503/99765a2a/attachment.html


More information about the macports-changes mailing list