Commit 55c4856170113146229217fa0597c3bc7ec497ab

Authored by Lucas Kanashiro
1 parent 00241227
Exists in packaging_status

Draft of lib/PackagingStatus.pm

Showing 1 changed file with 27 additions and 0 deletions   Show diff stats
lib/PackagingStatus.pm 0 → 100644
... ... @@ -0,0 +1,27 @@
  1 +use warnings;
  2 +use strict;
  3 +
  4 +package PackagingStatus;
  5 +
  6 +# Data structure
  7 +
  8 +# { repo =>
  9 +# latest_packaging_ref =>
  10 +# tag =>
  11 +# value
  12 +# commit => value
  13 +# commit => value
  14 +# latest_devel_ref =>
  15 +# tag =>
  16 +# value
  17 +# commit => value
  18 +# commit => value
  19 +# }
  20 +
  21 +# Methods
  22 +
  23 +# get_last_tag($repo)
  24 +# get_last_commit($repo, $branch)
  25 +# set_package_ref($repo, $tag_value, $tag_commit, $commit)
  26 +# get_devel_ref($repo)
  27 +# update_package_ref()
... ...