-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add files for initial release, v0.5.0
- Loading branch information
0 parents
commit 9e18063
Showing
11 changed files
with
2,085 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v0.5.0, 2014-11-18 -- Initial release |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include LICENSE.txt | ||
include CHANGES.txt | ||
include examples/checkout_start | ||
include examples/pivot_branch | ||
include examples/rcs_join | ||
include examples/rename_user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
EditRCS is a library to with functions to read RCS files into Python | ||
classes Rcs and RcsDelta, and to manipulate them and write them to a new | ||
RCS file. | ||
|
||
It is intended to be used to manipulate RCS files in ways that the RCS tools | ||
don't support, but it requires some knowledge of how RCS files work rather | ||
than being a polished command-line tool. | ||
|
||
See rcsfile(5) for RCS file format definition. | ||
|
||
Example scripts in the examples directory include: | ||
|
||
checkout_start: print the earliest version of a RCS file to standard output. | ||
rcs_join: produce an RCS file with the history of one file followed by that of | ||
a second file. | ||
rename_user: replace an old user name with a new one for each revision checked | ||
in by that user. | ||
pivot_branch: given a branch head and a first-level branch head off that, swap | ||
the sub-branch and the main branch. | ||
|
||
Limitations: I'm going with the 5.9.2 version of the manpage, and ignoring | ||
the newphrase in the earlier (e.g. 5.6) specifications for now. | ||
It is written to be simple rather than optimised for speed or space. | ||
|
||
|
||
INSTALLATION | ||
------------ | ||
|
||
To install as a Python module run this as root: | ||
|
||
python setup.py install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Empty |
Oops, something went wrong.