Sha256: 6cb0f591623dd0e16442c911cb4e2075aa6d45dc2e28dc808791a61a243f616a

Contents?: true

Size: 644 Bytes

Versions: 153

Compression:

Stored size: 644 Bytes

Contents

#! /usr/bin/env ruby

require "date"

dir = ARGV[0] || raise("ERROR: arg1 must be dir")

Dir.chdir dir

files_and_times = {}
Dir["*.patch"].sort.each do |filename|
  dateline = `cat #{filename} | grep "Date:"`
  datestr = dateline.split("Date:").last.strip
  time = DateTime.parse datestr
  files_and_times[filename] = time
end

count = 0
files_and_times.sort_by {|k,v| v}.each do |filename, time|
  count += 1
  _, patch_name = filename.split("-", 2)
  new_filename = sprintf("%4.4d-%s", count, patch_name)
  printf "mv -f %s %s # %s\n", filename, new_filename, time
end

STDERR.print "\n**\n** REMEMBER TO UPDATE THE Manifest.txt FILE\n**\n"

Version data entries

153 entries across 143 versions & 14 rubygems

Version Path
tdiary-5.0.11 vendor/bundle/gems/nokogiri-1.8.5/patches/sort-patches-by-date
tdiary-5.0.11 vendor/bundle/gems/nokogiri-1.8.4/patches/sort-patches-by-date
nokogiri-1.9.0.rc1 patches/sort-patches-by-date
nokogiri-1.9.0.rc1-x86-mingw32 patches/sort-patches-by-date
nokogiri-1.9.0.rc1-x64-mingw32 patches/sort-patches-by-date
nokogiri-1.9.0.rc1-java patches/sort-patches-by-date
nokogiri-1.8.5 patches/sort-patches-by-date
nokogiri-1.8.5-x86-mingw32 patches/sort-patches-by-date
nokogiri-1.8.5-x64-mingw32 patches/sort-patches-by-date
nokogiri-1.8.5-java patches/sort-patches-by-date
daslabs-0.12.0 vendor/cache/ruby/2.5.0/gems/nokogiri-1.8.2/patches/sort-patches-by-date
daslabs-0.11.0 vendor/cache/ruby/2.5.0/gems/nokogiri-1.8.2/patches/sort-patches-by-date
nokogiri-1.8.4 patches/sort-patches-by-date
nokogiri-1.8.4-x86-mingw32 patches/sort-patches-by-date
nokogiri-1.8.4-x64-mingw32 patches/sort-patches-by-date
nokogiri-1.8.4-java patches/sort-patches-by-date
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/nokogiri-1.8.3/patches/sort-patches-by-date
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/nokogiri-1.8.3/patches/sort-patches-by-date
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/nokogiri-1.8.3/patches/sort-patches-by-date
tdiary-5.0.9 vendor/bundle/gems/nokogiri-1.8.2/patches/sort-patches-by-date