Is there a way to do something similar to a SourceSafe label in svn? I know of the bransch/tag, but I would like to have a more lightweight way of just setting a name for a
If you don't want to use tag branches then you can use the revision number.
As SVN increments the revnum so that each checkin is unique, each revnum becomes a snapshot of the entire repo at a given time. So, if you know that you checked in 'tag 1.0' and it was assigned revnum 232, then you can reproduce that checkin (ie get all the files from that 'label') by checking out revision 232. It is as simple as that.
However, there is no facility in SVN to associate human-readable text with a revision number, so you'll have to keep track of them yourself (or find a softare package that does this for you).
Tags in Subversion are the correct way to do this. They might not "look" lightweight because they are tree copies, but because Subversion copies very lazily, it will not take up any disk space beyond that which is used to record the transaction "copied /trunk/ to /tags/whatever". The Subversion book has more information about tags.
You should be using tags for this.
I think if you create a tag from the revision number of your trunk, then you can start see the logs of the trunk.
How about changing the label position in the revision log?
Example: I created a tag named "production version" which marks file1.txt at revision 8 and few days later I want the same tag tell me that file1.txt is marked at revision 16
In VSS one is able to "move the label" in the revision log in this scenario. In SVN I would not like to create "production version1", "production version2" ...
A Tag is very lightweight, although it is made from the "copy" command.
In subversion, copies are very simple, fast, and effective. You should not have any concerns over performance or storage space.