[101127] trunk/base/src/package1.0/portpkg.tcl
blair at macports.org
blair at macports.org
Fri Jan 4 14:35:50 PST 2013
Revision: 101127
https://trac.macports.org/changeset/101127
Author: blair at macports.org
Date: 2013-01-04 14:35:50 -0800 (Fri, 04 Jan 2013)
Log Message:
-----------
portpkg: when logging include the port's epoch number.
Modified Paths:
--------------
trunk/base/src/package1.0/portpkg.tcl
Modified: trunk/base/src/package1.0/portpkg.tcl
===================================================================
--- trunk/base/src/package1.0/portpkg.tcl 2013-01-04 21:59:17 UTC (rev 101126)
+++ trunk/base/src/package1.0/portpkg.tcl 2013-01-04 22:35:50 UTC (rev 101127)
@@ -97,25 +97,25 @@
}
proc portpkg::pkg_main {args} {
- global subport version revision UI_PREFIX
+ global subport epoch version revision UI_PREFIX
- ui_msg "$UI_PREFIX [format [msgcat::mc "Creating pkg for %s-%s_%s"] ${subport} ${version} ${revision}]"
+ ui_msg "$UI_PREFIX [format [msgcat::mc "Creating pkg for %s-%s_%s_%s"] ${subport} ${epoch} ${version} ${revision}]"
if {[getuid] == 0 && [geteuid] != 0} {
elevateToRoot "pkg"
}
- return [package_pkg $subport $version $revision]
+ return [package_pkg $subport $epoch $version $revision]
}
-proc portpkg::package_pkg {portname portversion portrevision} {
+proc portpkg::package_pkg {portname portepoch portversion portrevision} {
global UI_PREFIX portdbpath destpath workpath prefix description \
package.flat package.destpath portpath os.version os.major \
package.resources package.scripts portpkg::packagemaker portpkg::language
set pkgpath "${package.destpath}/${portname}-${portversion}_${portrevision}.pkg"
if {[file readable $pkgpath] && ([file mtime ${pkgpath}] >= [file mtime ${portpath}/Portfile])} {
- ui_msg "$UI_PREFIX [format [msgcat::mc "Package for %s-%s_%s is up-to-date"] ${portname} ${portversion} ${portrevision}]"
+ ui_msg "$UI_PREFIX [format [msgcat::mc "Package for %s-%s_%s_%s is up-to-date"] ${portname} ${portepoch} ${portversion} ${portrevision}]"
return 0
}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20130104/99b672af/attachment.html>
More information about the macports-changes
mailing list