Advertisement
Guest User

Untitled

a guest
May 27th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. PAUSE
  2.  
  3. Foo-1.0.tar.gz
  4. Foo.pm: package Foo: $VERSION = "1.0"; # indexed
  5. FooInternal.pm: packge FooInternal: $VERSION = "1.0"; # indexed
  6. FooOther.pm: package FooOther: no $VERSION; (undef) # indexed
  7.  
  8. Foo-1.01.tar.gz
  9. Foo.pm: package Foo: $VERSION = "1.01"; # indexed
  10. FooInternal.pm: package FooInternal: $VERSION = "1.0"; # indexed!
  11. FooOther.pm: package FooOther: no $VERSION: (undef): # indexed
  12.  
  13. if it's stable:
  14. prefer latest
  15. then sort by version
  16. then sort by date descending (rev chron)
  17.  
  18. if it's dev:
  19. sort by version
  20. sort by date descending (reverse chronologically)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement