LoginSignup
4
4

More than 5 years have passed since last update.

Subversionのリビジョンをソースに埋め込みたい

Posted at

以下、TortoiseSVNを使用していることが前提です。

ビルドするときにワーキングコピーのリビジョンを取得して
それをプログラムに埋め込みたいんです。

TortoiseSvnにsubwcrev.exeというものがあります。
これはテンプレートファイルをもとにキーワード置換したものをファイルに出力します。フツーのキーワード置換でいいじゃんって思うかもしれませんが、あれはコミットした時に展開されます。それにたいしてsubwcrev.exeはコミットしなくてもワーキングコピーのリビジョンを展開してくれます。

詳細は以下のとおり。

SubWCRev 1.8.8, Build 25755 - 64 Bit

Usage: SubWCRev WorkingCopyPath [SrcVersionFile DstVersionFile] [-nmdf]

Params:
WorkingCopyPath    :   path to a Subversion working copy.
SrcVersionFile     :   path to a template file containing keywords.
DstVersionFile     :   path to save the resulting parsed file.
-n                 :   if given, then SubWCRev will error if the working
                       copy contains local modifications.
-N                 :   if given, then SubWCRev will error if the working
                       copy contains unversioned items.
-m                 :   if given, then SubWCRev will error if the working
                       copy contains mixed revisions.
-d                 :   if given, then SubWCRev will only do its job if
                       DstVersionFile does not exist.
-q                 :   if given, then SubWCRev will perform keyword
                       substitution but will not show status on stdout.

-f                 :   if given, then SubWCRev will include the
                       last-committed revision of folders. Default is
                       to use only files to get the revision numbers.
                       this only affects $WCREV$ and $WCDATE$.
-e                 :   if given, also include dirs which are included
                       with svn:externals, but only if they're from the
                       same repository.
-E                 :   if given, same as -e, but it ignores the externals
                       with explicit revisions, when the revision range
                       inside of them is only the given explicit revision
                       in the properties. So it doesn't lead to mixed
                       revisions

-x                 :   if given, then SubWCRev will write the revisions
                       numbers in HEX instead of decimal
-X                 :   if given, then SubWCRev will write the revisions
                       numbers in HEX with '0x' before them

Switches must be given in a single argument, e.g. '-nm' not '-n -m'.

SubWCRev reads the Subversion status of all files in a working copy
excluding externals. If SrcVersionFile is specified, it is scanned
for special placeholders of the form "$WCxxx$".
SrcVersionFile is then copied to DstVersionFile but the placeholders
are replaced with information about the working copy as follows:

$WCREV$         Highest committed revision number
$WCREV&$        Highest committed revision number ANDed with the number
                after the &
$WCREV+$        Highest committed revision number added with the number
                after the &
$WCREV-$        Highest committed revision number subtracted with the
                number after the &
$WCDATE$        Date of highest committed revision
$WCDATE=$       Like $WCDATE$ with an added strftime format after the =
$WCRANGE$       Update revision range
$WCURL$         Repository URL of the working copy
$WCNOW$         Current system date & time
$WCNOW=$        Like $WCNOW$ with an added strftime format after the =
$WCLOCKDATE$    Lock date for this item
$WCLOCKDATE=$   Like $WCLOCKDATE$ with an added strftime format after the =
$WCLOCKOWNER$   Lock owner for this item
$WCLOCKCOMMENT$ Lock comment for this item


The strftime format strings for $WCxxx=$ must not be longer than 1024
characters, and must not produce output greater than 1024 characters.

Placeholders of the form "$WCxxx?TrueText:FalseText$" are replaced with
TrueText if the tested condition is true, and FalseText if false.

$WCMODS$        True if local modifications found
$WCMIXED$       True if mixed update revisions found
$WCEXTALLFIXED$ True if all externals are fixed to an explicit revision
$WCISTAGGED$    True if the repository URL contains the tags classification pattern
$WCINSVN$       True if the item is versioned
$WCNEEDSLOCK$   True if the svn:needs-lock property is set
$WCISLOCKED$    True if the item is locked

このエントリはこちらのページを参考にさせてただきました。

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4