Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8885895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:25:28+00:00 2026-06-14T21:25:28+00:00

In my development team we use requirements management to control the expected behavior and

  • 0

In my development team we use requirements management to control the expected behavior and functions of our products and a bug report tool to track ‘problem reports’ (PR). Any change in the requirements is done by a ‘change proposal’ (CP) which acts much like a commit on a code repository.

In order to make any commit that changes the final product one must supply on the CVS commit commentary a trace which can be either a CP (this means that the change on your code reflects a change in the product) or a PR (which means the changes in the code are being made to correct a problem). CPs and PRs are numbered so that one can link changes in code to the causing item (CP or PR).

Sample commentaries

Error correction commit commentary:

Kind: Error Correction

Trace: PR-015 Crashing upon startup

Description: Edited file foo.c in order to verify uninitialized variables.

Product change commit commentary:

Kind: Development

Trace: CP-053 New login mechanism

Description: Added login mechanism with library X and blablabla.

My problem here is that I don’t have any easy way of retrieving all the files that were changed for a specific CP or PR neither can I retrieve all the changes made to the code.

I have tried to use regexp (RE from python) in order to parse the log but it has been a little tough to cover all possible logs. My regular expressions failed to retrieve the list here and there even after adapting it some times.

So, I’ve been thinking if there isn’t any easier way or any project or product or even a CVS built-in feature that might help me here.

The objective question: How do I retrieve the list of modified files in a commit which is identifiable by a well-formed tag (the CP or PR)? Is there an easier way or should I stick to log parsing?

Environment details:

OS: Windows XP
CVS server: cvsnt
CVS client: tortoise / cvsnt

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T21:25:29+00:00Added an answer on June 14, 2026 at 9:25 pm

    Didn’t want to answer my own question but I think it may be helpful for future reference for people with the same problem.

    Well, I managed to perform a search within the ‘log messages’ (cvs term for the commit commentaries) filtering by the content of the text in the log message and group the files changed on that commit.

    As pointed out by ‘Joakim Elofsson’ here, cvsps is a good tool for grouping commit information in ‘patch sets’ which are individual commits with references to all the files changed in those commits.

    I used the version of cvsps packed for cygwin as at this moment there’s no port for windows.

    Just install the cygwin with the internet setup available here and, when choosing packages, search for cvsps and cvs, install both.

    I couldn’t manage to use the checked out files on my system (through the /cygdrive/c folder) so I checked them out from the cygwin shell.

    BEGIN Obs for tortoise users

    You’ll need to setup CVSROOT environment var to the current CVSROOT of your repository by the command:

    export CVSROOT="Your CVSROOT string here"
    

    Usually, if check the properties page of any file of your checked out code base there will be a tab named CVS. There’ll be your CVSROOT string. (if you’re using :sspi: to connect to your remote repository as I do, you may try to switch it to :pserver:, it did work for me but I don’t know exactly why).

    END Obs for tortoise users

    Well, after checking out your repository use command:

    cvsps
    

    This will create the cvsps patchset base for your requests. Then use:

    cvsps -l "Some regexp code"
    

    It will search the patch sets for log messages matching the input regexp.

    This is a sample from using cvsps -lP100-PR-FEX` on my database (changed some filenames and paths for being able to make it public…):

    PatchSet 71
    Date: 2012/10/25 11:30:44
    Author: GUARITA
    Branch: HEAD
    Tag: (none)
    Branches:
    Log:
    Kind: Error correction
    
    Trace: P100-PR-FEX145
    
    Description:
    Corrections of the TRUE and FALSE conventions used by the C++ (true:everything but 0, false:0) P100 interface to the VB6 (false:0, true:-1 or 'all bits set to 1 which is -1 in 2's complement') P100Interface ActiveX object.
    P100 Panel Version increment.
    
    Members:
            SidePanels/P100.wimp:1.2->1.3
            SidePanels/Calcs/P100Interface/private/P100Interface.cpp:1.2->1.3
    

    You may also use it to compare changes between tags (which I use to control releases) with cvsps -r <tag1> -r <tag2>.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use git to keep track of changes made by our development team and
Our development team uses Eclipse + Aptana to do their web development work. Currently,
I have been trying to setup git for our web development team unsuccessfully. Some
I am building a build script for our web development team. We will be
We are just about to implement full blown TFS 2008 across our development team
Our development team hosts many different applications both .Net and Java based. Currently, we
A few years ago, TortoiseSVN 1.4.3 was deployed to our software development team and
I am setting up our (relatively small) programming team to work with source control.
Our development team is currently looking into migrating our search system to Apache Solr,
My development team is going to build a voice chat application. Our plan is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.