{"id":17635936,"url":"https://github.com/mohawk2/cpan-vcs","last_synced_at":"2026-06-30T17:32:32.418Z","repository":{"id":16610524,"uuid":"19365320","full_name":"mohawk2/cpan-vcs","owner":"mohawk2","description":null,"archived":false,"fork":false,"pushed_at":"2016-06-05T21:21:49.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-07T00:40:55.127Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mohawk2.png","metadata":{"files":{"readme":"README","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-05-02T03:50:20.000Z","updated_at":"2016-06-05T21:21:45.000Z","dependencies_parsed_at":"2022-07-13T13:51:05.161Z","dependency_job_id":null,"html_url":"https://github.com/mohawk2/cpan-vcs","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/mohawk2/cpan-vcs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohawk2%2Fcpan-vcs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohawk2%2Fcpan-vcs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohawk2%2Fcpan-vcs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohawk2%2Fcpan-vcs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mohawk2","download_url":"https://codeload.github.com/mohawk2/cpan-vcs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mohawk2%2Fcpan-vcs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34977668,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-30T02:00:05.919Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-23T02:24:42.560Z","updated_at":"2026-06-30T17:32:32.390Z","avatar_url":"https://github.com/mohawk2.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"NAME\n    VCS - Version Control System access in Perl\n\nSYNOPSIS\n        use VCS;\n        $file = VCS::File-\u003enew($ARGV[0]);\n        print $file-\u003eurl, \":\\n\";\n        for $version ($file-\u003eversions) {\n            print $version-\u003eversion,\n                  ' was checked in by ',\n                  $version-\u003eauthor,\n                  \"\\n\";\n        }\n\nDESCRIPTION\n    \"VCS\" is an API for abstracting access to all version control systems\n    from Perl code. This is achieved in a similar fashion to the \"DBI\" suite\n    of modules. There are \"container\" classes, \"VCS::Dir\", \"VCS::File\", and\n    \"VCS::Version\", and \"implementation\" classes, such as \"VCS::Cvs::Dir\",\n    \"VCS::Cvs::File\", and \"VCS::Cvs::Version\", which are subclasses of their\n    respective \"container\" classes.\n\n    The container classes are instantiated with URLs. There is a URL scheme\n    for entities under version control. The format is as follows:\n\n        vcs://localhost/VCS::Cvs/fs/path/?query=1\n\n    The \"query\" part is ignored for now. The path must be an absolute path,\n    meaningful to the given class. The class is an implementation class,\n    such as \"VCS::Cvs\".\n\n    The \"container\" classes work as follows: when the \"new\" method of a\n    container class is called, it will parse the given URL, using the\n    \"VCS-\u003eparse_url\" method. It will then call the \"new\" of the\n    implementation's appropriate container subclass, and return the result.\n    For example,\n\n        VCS::Version-\u003enew('vcs://localhost/VCS::Cvs/fs/path/file/1.2');\n\n    will return a \"VCS::Cvs::Version\".\n\n    An implementation class is recognised as follows: its name starts with\n    \"VCS::\", and \"require \"VCS/Classname.pm\"\" will load the appropriate\n    implementation classes corresponding to the container classes.\n\nVCS METHODS\n  VCS-\u003eparse_url\n    This returns a four-element list:\n\n        ($hostname, $classname, $path, $query)\n\n    For example,\n\n        VCS-\u003eparse_url('vcs://localhost/VCS::Cvs/fs/path/file/1.2');\n\n    will return\n\n        (\n            'localhost',\n            'VCS::Cvs',\n            '/fs/path/file/1.2',\n            ''\n        )\n\n    This is mostly intended for use by the container classes, and its\n    interface is subject to change.\n\n  VCS-\u003eclass_load\n    This loads its given implementation class.\n\n    This is mostly intended for use by the container classes, and its\n    interface is subject to change.\n\nVCS::* METHODS\n    Please refer to the documentation for VCS::Dir, VCS::File, and\n    VCS::Version; as well as the implementation specific documentation as in\n    VCS::Cvs, VCS::Rcs.\n\nAUTHORS\n      Greg McCarroll \u003cgreg@mccarroll.org.uk\u003e\n      Leon Brocard\n      Ed J\n\nKUDOS\n    Thanks to the following for patches,\n\n        Richard Clamp\n        Pierre Denis\n        Slaven Rezic\n\nCOPYRIGHT\n    Copyright (c) 1998-2003 Leon Brocard \u0026 Greg McCarroll. All rights\n    reserved. This program is free software; you can redistribute it and/or\n    modify it under the same terms as Perl itself.\n\nSEE ALSO\n    VCS::Cvs, VCS::Dir, VCS::File, VCS::Rcs, VCS::Version.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohawk2%2Fcpan-vcs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohawk2%2Fcpan-vcs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohawk2%2Fcpan-vcs/lists"}